@charset "UTF-8";
@import "normalize.css";
@import "fontawesome.css";
@font-face {
  font-family: "Referada Font";
  src: url("/static/fonts/Raleway-Light.ttf") format("truetype");
  font-weight: 300;
}
@font-face {
  font-family: "Referada Font";
  src: url("/static/fonts/Raleway-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Referada Font";
  src: url("/static/fonts/Raleway-Medium.ttf") format("truetype");
  font-weight: 500;
}
@font-face {
  font-family: "Referada Font";
  src: url("/static/fonts/Raleway-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Referada Font";
  src: url("/static/fonts/Raleway-Heavy.ttf") format("truetype");
  font-weight: 900;
}
@font-face {
  font-family: "Referada Logo Font";
  src: url("/static/fonts/Evogria.otf") format("truetype");
  font-weight: 900;
}
html, body {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

* {
  font-family: "Referada Font", Helvetica, sans-serif;
  font-feature-settings: "lnum";
  -webkit-tap-highlight-color: transparent;
}

._cta, .gray-on-black-cta, .yellow-on-black-cta, .page-enrols-gallery .top-image .call-to-action.secondary, .cta-master {
  height: 40px;
  line-height: 40px;
  padding: 8px 16px;
  border-radius: 6px;
  margin: 4px 8px;
  display: inline-block;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
}
@media screen and (max-width: 860px) {
  ._cta, .gray-on-black-cta, .yellow-on-black-cta, .page-enrols-gallery .top-image .call-to-action.secondary, .cta-master {
    display: block;
  }
}

.cta-master {
  background: #eac800;
  color: #000;
  text-transform: uppercase;
  box-shadow: 0 0 4px #eac800;
}

a.cta-text {
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #006c70;
  display: inline-block;
}
a.cta-text:hover {
  text-decoration: underline;
}
@media screen and (max-width: 860px) {
  a.cta-text {
    background: #fff;
    color: #000;
    height: 32px;
    line-height: 32px;
    padding: 8px 16px;
    border-radius: 6px;
    margin: 4px 8px;
    width: unset;
    font-weight: 700;
    border: 2px solid #000;
    text-align: center;
    cursor: pointer;
    display: block;
  }
  a.cta-text:hover {
    text-decoration: none;
  }
}

.secondary-button {
  cursor: pointer;
  background: #fff;
  color: #000;
  height: 40px;
  line-height: 40px;
  padding: 8px 16px;
  border-radius: 6px;
  margin: 4px 8px;
  width: unset;
  font-weight: 700;
  border: 1px solid #000;
  text-align: center;
}
.secondary-button:hover {
  color: #000;
}

.yellow-on-black-cta, .page-enrols-gallery .top-image .call-to-action.secondary {
  background: transparent;
  color: #eac800;
  padding: 8px 32px;
  text-transform: uppercase;
  border: 1px solid #eac800;
  transition: all 200ms;
  margin: 24px;
}
.yellow-on-black-cta:hover, .page-enrols-gallery .top-image .call-to-action.secondary:hover {
  background: #eac800;
  box-shadow: 0 0 4px #eac800;
  color: #000;
}

.gray-on-black-cta {
  background: transparent;
  color: #dbdcde;
  padding: 8px 32px;
  text-transform: uppercase;
  border: 1px solid #dbdcde;
  transition: all 200ms;
  margin: 24px;
}
.gray-on-black-cta:hover {
  background: #dbdcde;
  box-shadow: 0 0 4px #dbdcde;
  color: #000;
}

.mobile-only {
  display: none;
}

.popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6666666667);
  z-index: 9999;
  text-align: center;
}
.popup-container .login-to-upvote {
  color: #fff;
  text-align: center;
}
.popup-container .login-to-upvote.hidden {
  display: none;
}
.popup-container.hidden {
  display: none;
}
.popup-container > div {
  background: #000;
  position: relative;
  animation: popup-entrance 500ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
@keyframes popup-entrance {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.popup-container > div .exit-button {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  background: #fff;
  color: #000;
  border-radius: 32px;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
}
.popup-container div.hidden {
  display: none;
}
.popup-container .another-session-popup, .popup-container .copyright-info-popup {
  max-width: calc(100vw - 40px);
  height: 200px !important;
  color: #000;
  top: 15vh;
  background: #eee;
}
.popup-container .another-session-popup p, .popup-container .copyright-info-popup p {
  padding-top: 24px;
}
.popup-container .another-session-popup .end-session, .popup-container .copyright-info-popup .end-session {
  position: absolute;
  right: 180px;
  bottom: 20px;
  font-size: 14px;
  cursor: pointer;
}
.popup-container .another-session-popup .use-here, .popup-container .copyright-info-popup .use-here {
  cursor: pointer;
  background: #FECA07;
  color: #000;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 4px;
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: 14px;
  width: 102px;
}
.popup-container .login-popup, .popup-container .register-popup, .popup-container .forgot-password-popup, .popup-container .password-success-popup, .popup-container .password-change-popup, .popup-container .register-success-popup, .popup-container .another-session-popup, .popup-container .copyright-info-popup {
  margin: calc(50vh - 240px) auto 0;
  width: 360px;
  padding: 0 20px;
  height: 480px;
}
.popup-container .login-popup form, .popup-container .register-popup form, .popup-container .forgot-password-popup form, .popup-container .password-success-popup form, .popup-container .password-change-popup form, .popup-container .register-success-popup form, .popup-container .another-session-popup form, .popup-container .copyright-info-popup form {
  padding-top: 40px;
}
.popup-container .login-popup form input, .popup-container .login-popup form select, .popup-container .register-popup form input, .popup-container .register-popup form select, .popup-container .forgot-password-popup form input, .popup-container .forgot-password-popup form select, .popup-container .password-success-popup form input, .popup-container .password-success-popup form select, .popup-container .password-change-popup form input, .popup-container .password-change-popup form select, .popup-container .register-success-popup form input, .popup-container .register-success-popup form select, .popup-container .another-session-popup form input, .popup-container .another-session-popup form select, .popup-container .copyright-info-popup form input, .popup-container .copyright-info-popup form select {
  -webkit-appearance: none;
  width: calc(100% - 80px);
  box-sizing: content-box;
  border: none;
  height: 40px;
  margin: 8px 20px;
  padding: 0 16px;
  border-radius: 6px;
  background: #dbdcde;
}
.popup-container .login-popup form input::placeholder, .popup-container .login-popup form select::placeholder, .popup-container .register-popup form input::placeholder, .popup-container .register-popup form select::placeholder, .popup-container .forgot-password-popup form input::placeholder, .popup-container .forgot-password-popup form select::placeholder, .popup-container .password-success-popup form input::placeholder, .popup-container .password-success-popup form select::placeholder, .popup-container .password-change-popup form input::placeholder, .popup-container .password-change-popup form select::placeholder, .popup-container .register-success-popup form input::placeholder, .popup-container .register-success-popup form select::placeholder, .popup-container .another-session-popup form input::placeholder, .popup-container .another-session-popup form select::placeholder, .popup-container .copyright-info-popup form input::placeholder, .popup-container .copyright-info-popup form select::placeholder {
  color: #555;
}
.popup-container .login-popup form button.submit, .popup-container .register-popup form button.submit, .popup-container .forgot-password-popup form button.submit, .popup-container .password-success-popup form button.submit, .popup-container .password-change-popup form button.submit, .popup-container .register-success-popup form button.submit, .popup-container .another-session-popup form button.submit, .popup-container .copyright-info-popup form button.submit {
  background: #FECA07;
  color: #000;
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
  border-radius: 6px;
  margin: 24px 8px;
  width: calc(100% - 40px);
  border: none;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 4px #FECA07;
  cursor: pointer;
}
.popup-container .login-popup form button.submit:hover, .popup-container .register-popup form button.submit:hover, .popup-container .forgot-password-popup form button.submit:hover, .popup-container .password-success-popup form button.submit:hover, .popup-container .password-change-popup form button.submit:hover, .popup-container .register-success-popup form button.submit:hover, .popup-container .another-session-popup form button.submit:hover, .popup-container .copyright-info-popup form button.submit:hover {
  color: #000;
}
.popup-container .login-popup form .social-network-login, .popup-container .register-popup form .social-network-login, .popup-container .forgot-password-popup form .social-network-login, .popup-container .password-success-popup form .social-network-login, .popup-container .password-change-popup form .social-network-login, .popup-container .register-success-popup form .social-network-login, .popup-container .another-session-popup form .social-network-login, .popup-container .copyright-info-popup form .social-network-login {
  display: inline-block;
  background: #fff;
  color: #000;
  height: 40px;
  line-height: 40px;
  border-radius: 6px;
  width: calc(100% - 64px);
  margin: 10px 32px;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 200ms;
  border: 2px solid #eac800;
}
.popup-container .login-popup form .social-network-login:hover, .popup-container .register-popup form .social-network-login:hover, .popup-container .forgot-password-popup form .social-network-login:hover, .popup-container .password-success-popup form .social-network-login:hover, .popup-container .password-change-popup form .social-network-login:hover, .popup-container .register-success-popup form .social-network-login:hover, .popup-container .another-session-popup form .social-network-login:hover, .popup-container .copyright-info-popup form .social-network-login:hover {
  background: #FECA07;
  box-shadow: 0 0 4px #FECA07;
}
.popup-container .login-popup .forgot-password, .popup-container .login-popup .register, .popup-container .register-popup .forgot-password, .popup-container .register-popup .register, .popup-container .forgot-password-popup .forgot-password, .popup-container .forgot-password-popup .register, .popup-container .password-success-popup .forgot-password, .popup-container .password-success-popup .register, .popup-container .password-change-popup .forgot-password, .popup-container .password-change-popup .register, .popup-container .register-success-popup .forgot-password, .popup-container .register-success-popup .register, .popup-container .another-session-popup .forgot-password, .popup-container .another-session-popup .register, .popup-container .copyright-info-popup .forgot-password, .popup-container .copyright-info-popup .register {
  position: absolute;
  bottom: 16px;
  color: #dbdcde;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}
.popup-container .login-popup .forgot-password, .popup-container .register-popup .forgot-password, .popup-container .forgot-password-popup .forgot-password, .popup-container .password-success-popup .forgot-password, .popup-container .password-change-popup .forgot-password, .popup-container .register-success-popup .forgot-password, .popup-container .another-session-popup .forgot-password, .popup-container .copyright-info-popup .forgot-password {
  left: 16px;
  text-align: left;
}
.popup-container .login-popup .register, .popup-container .register-popup .register, .popup-container .forgot-password-popup .register, .popup-container .password-success-popup .register, .popup-container .password-change-popup .register, .popup-container .register-success-popup .register, .popup-container .another-session-popup .register, .popup-container .copyright-info-popup .register {
  right: 16px;
  text-align: right;
}
.popup-container .login-popup .g-signin2, .popup-container .register-popup .g-signin2, .popup-container .forgot-password-popup .g-signin2, .popup-container .password-success-popup .g-signin2, .popup-container .password-change-popup .g-signin2, .popup-container .register-success-popup .g-signin2, .popup-container .another-session-popup .g-signin2, .popup-container .copyright-info-popup .g-signin2 {
  display: inline-block;
}
.popup-container .login-popup .abcRioButton, .popup-container .register-popup .abcRioButton, .popup-container .forgot-password-popup .abcRioButton, .popup-container .password-success-popup .abcRioButton, .popup-container .password-change-popup .abcRioButton, .popup-container .register-success-popup .abcRioButton, .popup-container .another-session-popup .abcRioButton, .popup-container .copyright-info-popup .abcRioButton {
  padding: 4px 7px;
  height: 40px !important;
  border-radius: 4px;
  margin: 4px 8px;
  width: 320px !important;
}
.popup-container .login-popup .abcRioButton .abcRioButtonContents > span, .popup-container .register-popup .abcRioButton .abcRioButtonContents > span, .popup-container .forgot-password-popup .abcRioButton .abcRioButtonContents > span, .popup-container .password-success-popup .abcRioButton .abcRioButtonContents > span, .popup-container .password-change-popup .abcRioButton .abcRioButtonContents > span, .popup-container .register-success-popup .abcRioButton .abcRioButtonContents > span, .popup-container .another-session-popup .abcRioButton .abcRioButtonContents > span, .popup-container .copyright-info-popup .abcRioButton .abcRioButtonContents > span {
  font-size: 16px !important;
}
.popup-container .login-popup .error-message, .popup-container .register-popup .error-message, .popup-container .forgot-password-popup .error-message, .popup-container .password-success-popup .error-message, .popup-container .password-change-popup .error-message, .popup-container .register-success-popup .error-message, .popup-container .another-session-popup .error-message, .popup-container .copyright-info-popup .error-message {
  height: 40px;
  color: transparent;
  font-size: 14px;
  font-weight: bold;
  transition: color 200ms;
  text-align: left;
  margin-left: 24px;
  margin-top: 10px;
}
.popup-container .login-popup .error-message .linkalike, .popup-container .register-popup .error-message .linkalike, .popup-container .forgot-password-popup .error-message .linkalike, .popup-container .password-success-popup .error-message .linkalike, .popup-container .password-change-popup .error-message .linkalike, .popup-container .register-success-popup .error-message .linkalike, .popup-container .another-session-popup .error-message .linkalike, .popup-container .copyright-info-popup .error-message .linkalike {
  cursor: pointer;
  color: #006c70;
}
.popup-container .login-popup .error-message.visible, .popup-container .register-popup .error-message.visible, .popup-container .forgot-password-popup .error-message.visible, .popup-container .password-success-popup .error-message.visible, .popup-container .password-change-popup .error-message.visible, .popup-container .register-success-popup .error-message.visible, .popup-container .another-session-popup .error-message.visible, .popup-container .copyright-info-popup .error-message.visible {
  color: #ed1c24;
}
.popup-container .copyright-info-popup {
  margin: calc(50vh - 320px) auto 0;
}
@media screen and (max-height: 480px) {
  .popup-container .login-popup {
    margin-top: 0;
  }
}
@media screen and (max-width: 860px) {
  .popup-container .login-popup, .popup-container .register-popup, .popup-container .forgot-password-popup, .popup-container .password-success-popup, .popup-container .password-change-popup {
    width: 100vw;
    margin-top: 0;
    padding: 0;
    height: 100vh;
  }
  .popup-container .login-popup form, .popup-container .register-popup form, .popup-container .forgot-password-popup form, .popup-container .password-success-popup form, .popup-container .password-change-popup form {
    padding-top: 40px;
  }
  .popup-container .login-popup .forgot-password, .popup-container .login-popup .register, .popup-container .register-popup .forgot-password, .popup-container .register-popup .register, .popup-container .forgot-password-popup .forgot-password, .popup-container .forgot-password-popup .register, .popup-container .password-success-popup .forgot-password, .popup-container .password-success-popup .register, .popup-container .password-change-popup .forgot-password, .popup-container .password-change-popup .register {
    margin-top: 64px;
    bottom: unset;
  }
  .popup-container .login-popup .exit-button, .popup-container .register-popup .exit-button, .popup-container .forgot-password-popup .exit-button, .popup-container .password-success-popup .exit-button, .popup-container .password-change-popup .exit-button {
    top: 4px;
    right: 4px;
  }
}

.view {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .view {
    margin-top: 56px;
  }
}

.shop-container {
  width: 100vw;
  background: linear-gradient(to top, #222, #000);
}

.center-container {
  margin: auto;
  display: inline-flex;
  flex-wrap: wrap;
  max-width: 1400px;
  width: 100vw;
  text-align: left;
}
.center-container h1 {
  margin-left: 12px;
}

.fragment-header {
  background: #000;
  width: calc(100vw - 32px);
  height: 48px;
  padding: 16px;
  text-align: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
.fragment-header .logo-text {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  margin-right: -22px;
  padding: 2px 4px 6px 96px;
  font-family: "Referada Logo Font", "Referada Font", Helvetica, sans-serif;
  cursor: pointer;
}
.fragment-header .title {
  color: #dbdcde;
  height: 48px;
  flex: 0 0 calc(100% - 800px);
  line-height: 48px;
  margin-left: 80px;
  padding-left: 16px;
  font-size: 24px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  transition: opacity 400ms, transform 400ms;
}
.fragment-header .title.hidden {
  transform: translate(8px);
  opacity: 0;
}
.fragment-header .call-to-action {
  background: #eac800;
  color: #222;
  height: 40px;
  line-height: 40px;
  padding: 0 32px;
  border-radius: 6px;
  margin: 4px 64px 4px 8px;
  width: unset;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 4px #eac800;
}
.fragment-header .call-to-action:hover {
  color: #222;
}
.fragment-header .bookmark-logo {
  position: absolute;
  width: 80px;
  cursor: pointer;
  transform: translateY(-16px);
}
.fragment-header .square-logo {
  height: 64px;
  transform: translateY(-16px);
}
.fragment-header .square-logo {
  display: none;
}
.fragment-header .logo {
  cursor: pointer;
  height: 48px;
}
.fragment-header .logo.shield {
  flex: 0 0 43px;
}
.fragment-header .logo.text {
  margin-left: 8px;
  flex: 0 0 188px;
}
.fragment-header nav {
  margin-right: 16px;
  text-align: right;
  flex: 1;
  z-index: 50;
  height: 64px;
  transition: opacity 200ms, transform 200ms, filter 200ms;
}
.fragment-header nav * {
  padding: 0 8px;
  color: #bbbdc0;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle;
}
.fragment-header nav a {
  padding: 0 16px;
  display: inline-block;
  font-size: 16px;
  line-height: 48px;
  height: 48px;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
}
.fragment-header nav a:hover, .fragment-header nav a.highlighted {
  color: #dbdcde;
  font-weight: 700;
}
.fragment-header nav a:last-child {
  padding-right: 64px;
}
@media screen and (max-width: 900px) {
  .fragment-header nav a {
    padding: 0 12px;
  }
  .fragment-header nav a:last-child {
    padding-right: 2px;
  }
}
@media screen and (max-width: 950px) {
  .fragment-header nav a:last-child {
    padding-right: 8px;
  }
}
.fragment-header nav a::after {
  display: block;
  content: attr(title);
  font-weight: bold;
  height: 1px;
  color: transparent;
  overflow: hidden;
  visibility: hidden;
}
.fragment-header nav .fa-fw {
  height: 48px;
  font-size: 32px;
  line-height: 48px;
  margin: 0 32px 0 8px;
}
.fragment-header nav .fa-fw:hover {
  color: #dbdcde;
}
.fragment-header nav .mobile-only {
  display: none;
}
.fragment-header nav.hidden {
  opacity: 0;
  transform: translateY(-4px);
}
.fragment-header .nav-toggle {
  position: absolute;
  right: 8px;
  display: none;
  padding: 0;
  color: #bbbdc0;
  cursor: pointer;
  vertical-align: middle;
  height: 48px;
  font-size: 24px;
  line-height: 40px;
  margin: 0 8px;
}
.fragment-header .nav-toggle:hover {
  color: #dbdcde;
}
.fragment-header .mobile-right {
  position: absolute;
  top: 0;
  right: 0;
  height: 56px;
  display: none;
}
.fragment-header .mobile-right img {
  margin: 8px;
  height: 40px;
}
.fragment-header .mobile-cta {
  display: none;
  transition: opacity 200ms, transform 200ms;
}
.fragment-header .mobile-cta .call-to-action {
  margin: 4px 8px;
}
@media screen and (max-width: 860px) {
  .fragment-header {
    padding: 8px 8px 8px 0;
    width: calc(100vw - 8px);
    transition: height 400ms;
    height: 40px;
  }
  .fragment-header.bigger {
    height: 48px;
  }
  .fragment-header .logo-text {
    padding-left: 16px;
  }
  .fragment-header .bookmark-logo {
    display: none;
  }
  .fragment-header .square-logo {
    display: inline-block;
  }
  .fragment-header .logo {
    height: 48px;
  }
  .fragment-header .logo.shield {
    flex: 0 0 34px;
  }
  .fragment-header .logo.text {
    flex: 0 0 142px;
  }
  .fragment-header .nav-toggle {
    display: inline-block;
  }
  .fragment-header .title {
    height: 56px;
    line-height: 40px;
    font-size: 20px;
    padding-left: 16px;
    flex: 0 0 calc(100vw - 160px);
    margin-left: 0;
  }
  .fragment-header nav {
    display: none;
  }
  .fragment-header .mobile-right {
    display: block;
  }
  .fragment-header .mobile-cta {
    display: block;
  }
  .fragment-header .center-container {
    transition: opacity 200ms, transform 200ms;
  }
  .fragment-header .center-container.mobile-hidden, .fragment-header .mobile-cta.mobile-hidden {
    opacity: 0;
    transform: translateY(-4px);
  }
  .fragment-header .center-container.mobile-gone, .fragment-header .mobile-cta.mobile-gone {
    display: none;
  }
}

.page-index {
  width: 100%;
}
.page-index h2 {
  margin-left: 40px;
  font-size: 22px;
  color: #444;
}
.page-index .call-to-action-spartanac {
  display: block;
  background: #FECA07;
  color: #222;
  padding: -2px 16px 2px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 4px #FECA07;
  text-decoration: none;
  transition: transform 200ms;
  vertical-align: top;
  position: absolute;
  bottom: 100px;
  right: 7vw;
  height: 64px;
  line-height: 64px;
  width: 300px;
  font-size: 24px;
}
.page-index .call-to-action-spartanac:hover {
  transform: scale(1.05);
}
@media (max-width: 860px) {
  .page-index .call-to-action-spartanac {
    font-size: 16px;
    height: 38px;
    line-height: 38px;
    width: calc(100% - 64px);
    left: 32px;
    bottom: 28px;
  }
}
.page-index .top-image {
  width: 100vw;
  margin-bottom: 20px;
  padding-bottom: 30vw;
  position: relative;
  text-align: center;
  background: url("/static/img/rajko_cover.jpg") 0 50% no-repeat;
  background-size: 130vw;
}
.page-index .top-image .mobile-variant {
  display: none;
}
.page-index .top-image .call-to-action {
  display: block;
  background: #FECA07;
  color: #222;
  height: 40px;
  line-height: 34px;
  width: 256px;
  padding: -2px 16px 2px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 4px #FECA07;
  text-decoration: none;
  transition: transform 200ms;
  vertical-align: top;
}
.page-index .top-image .call-to-action .fab {
  transform: translateY(-2px);
  vertical-align: middle;
  padding-left: 8px;
}
.page-index .top-image .call-to-action:hover {
  transform: scale(1.1);
}
.page-index .top-image .pretitle {
  position: absolute;
  top: 20px;
  color: #fff;
  font-size: 24px;
  width: 100%;
}
.page-index .top-image .title {
  position: absolute;
  top: 60px;
  width: 100%;
  color: #fff;
  font-size: 64px;
}
.page-index .top-image img {
  height: 140px;
}
.page-index .top-image p {
  color: #fff;
  position: absolute;
  left: 12vw;
  top: 0;
  width: 32vw;
  font-size: 20px;
  text-align: left;
}
.page-index .top-image .call-to-action {
  height: 48px;
  line-height: 48px;
  width: 320px;
}
.page-index .section {
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.page-index .section h2 {
  margin-top: 32px;
  margin-left: 48px;
  margin-right: 48px;
  cursor: pointer;
}
.page-index .section h2 .arrow {
  display: inline-block;
  transition: opacity 200ms;
  animation: rescale 500ms;
  opacity: 0;
}
.page-index .section h2:hover .arrow {
  opacity: 1;
}
.page-index .section h3 {
  cursor: pointer;
  font-size: 18px;
  line-height: 22px;
  margin: -8px 48px 16px;
  color: #555;
  font-weight: 400;
}
.page-index .section a.cta-text {
  margin: 16px 48px;
}
.page-index .section .horizontally-scrollable {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
.page-index .section .horizontally-scrollable::-webkit-scrollbar {
  display: none;
}
.page-index .section .show-all {
  position: absolute;
  top: 32px;
  right: 12px;
  font-size: 18px;
  color: #c4151c;
  font-weight: 600;
  text-decoration: none;
}
.page-index .section .prev-page-button, .page-index .section .next-page-button {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 48px;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  animation: show-page-button-anim 200ms forwards;
}
.page-index .section .prev-page-button.hidden, .page-index .section .next-page-button.hidden {
  animation: hide-page-button-anim 200ms forwards;
  opacity: 0;
}
@keyframes show-page-button-anim {
  0% {
    z-index: -5;
    opacity: 0;
  }
  1% {
    z-index: unset;
    opacity: 0;
  }
  100% {
    z-index: unset;
    opacity: 1;
  }
}
@keyframes hide-page-button-anim {
  0% {
    z-index: unset;
    opacity: 1;
  }
  99% {
    z-index: unset;
    opacity: 0;
  }
  100% {
    z-index: -5;
    opacity: 0;
  }
}
.page-index .section .prev-page-button {
  left: -32px;
}
.page-index .section .next-page-button {
  right: -32px;
}
.page-index .about-us h3 {
  margin: -12px 48px -8px;
}
.page-index .about-us .item-container {
  display: flex;
  width: 100%;
  margin: 16px 0;
  min-width: 400px;
}
.page-index .about-us .item-container .item {
  flex: 0 1 100%;
  transition: transform 400ms;
}
.page-index .about-us .item-container .item:first-of-type {
  margin-left: 48px;
}
.page-index .about-us .item-container .item:last-of-type {
  margin-right: 48px;
}
.page-index .about-us .item-container .item:hover {
  transform: scale(1.1);
}
.page-index .about-us .item-container .item img {
  width: calc(100% - 32px);
  padding: 16px;
}
.page-index .testimonials {
  position: relative;
}
.page-index .testimonials .testimonial {
  flex: 0;
  position: relative;
  display: inline-block;
  width: 200px;
  height: 355px;
  border-radius: 12px;
  margin: 3px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  cursor: pointer;
  transition: all 200ms;
}
.page-index .testimonials .testimonial:first-of-type {
  margin-left: 48px;
}
.page-index .testimonials .testimonial:last-of-type {
  margin-right: 48px;
}
.page-index .testimonials .testimonial .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9333333333));
  color: #fff;
}
.page-index .testimonials .testimonial .content .name {
  white-space: normal;
  font-weight: bold;
  font-size: 18px;
}
.page-index .testimonials .testimonial .content .subject {
  margin-bottom: 8px;
}
.page-index .testimonials .testimonial img.profile {
  top: 8px;
  left: 8px;
  position: absolute;
  margin-bottom: 16px;
  border-radius: 64px;
  width: 64px;
  max-width: 64px;
  background: #fff;
  border: 3px solid #3e3e3e;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3333333333);
}
.page-index .testimonials .testimonial.new img.profile {
  border: 3px solid #FECA07;
}
.page-index .testimonials .testimonial:hover video {
  opacity: 1;
}
.page-index .testimonials .testimonial video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  border-radius: 12px;
  transition: opacity 400ms;
}
.page-index .testimonials .testimonial .mute-button {
  top: 8px;
  right: 8px;
  position: absolute;
  margin-bottom: 16px;
  border-radius: 64px;
  width: 48px;
  font-size: 24px;
  height: 48px;
  line-height: 48px;
  max-width: 48px;
  opacity: 0;
  color: #fff;
  text-shadow: 0 0 2px #000;
  transition: opacity 400ms;
}
.page-index .testimonials .testimonial .mute-button .hidden {
  display: none;
}
.page-index .testimonials .testimonial.popped {
  animation: testimonial-pop 400ms ease-out;
}
.page-index .testimonials .horizontally-scrollable {
  transition: margin-left 200ms;
  padding: 56px 0;
  margin: -56px 0;
}
@keyframes testimonial-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.page-index .testimonials .prev-page-button, .page-index .testimonials .next-page-button {
  top: 272px;
}
.page-index .shop h1 {
  font-size: 56px;
  line-height: 64px;
  text-align: center;
  margin-bottom: 40px;
}
.page-index .shop h4 {
  margin: 48px 24px 56px;
  font-size: 20px;
  text-transform: uppercase;
  color: #ed1c24;
  text-align: center;
}
.page-index .shop .item-container {
  display: flex;
  width: 100%;
}
.page-index .shop .item-container .item {
  position: relative;
  overflow: hidden;
  margin: 4px 0 4px 12px;
  flex: 0 0 200px;
  max-width: 200px;
  min-width: 200px;
  background: #fff;
  border-radius: 6px;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 2px 4px #000;
}
.page-index .shop .item-container .item .mobile-pass-rate-label, .page-index .shop .item-container .item .mobile-pass-rate {
  display: none;
  padding: 12px 16px;
  color: #555;
  font-size: 14px;
}
.page-index .shop .item-container .item:hover {
  transform: translateY(-4px);
}
.page-index .shop .item-container .item:hover .pass-rate-bar {
  height: 16px;
  margin: 0 16px;
}
.page-index .shop .item-container .item:hover .pass-rate-bar .pass-rate {
  color: #555;
}
.page-index .shop .item-container .item:last-of-type {
  margin-right: 12px;
}
.page-index .shop .item-container .item .cover-image {
  width: 200px;
  height: 133px;
  object-fit: cover;
}
.page-index .shop .item-container .item .play-button {
  position: absolute;
  width: 60px;
  left: calc(50% - 30px);
  top: 40px;
}
.page-index .shop .item-container .item h3, .page-index .shop .item-container .item .item-card {
  height: 20px;
  margin: 16px 0 4px !important;
  padding: 0 16px;
  max-width: 240px;
  white-space: normal;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  text-align: left;
}
.page-index .shop .item-container .item .pass-rate-bar {
  transition: height 200ms, margin 200ms;
  width: calc(100% - 32px);
  height: 8px;
  background: #dbdcde;
  border-radius: 8px;
  margin: 4px 16px;
  overflow: hidden;
}
.page-index .shop .item-container .item .pass-rate-bar .pass-rate {
  background: #FECA07;
  height: 16px;
  color: transparent;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
.page-index .shop .item-container .item .reviews {
  padding: 12px 16px;
  color: #555;
  font-size: 14px;
}
.page-index .shop .item-container .item .prices {
  text-align: right;
  padding: 8px 16px 0;
}
.page-index .shop .item-container .item .prices.euro {
  padding-bottom: 8px;
}
.page-index .shop .item-container .item .prices .price-before-discount {
  text-decoration: line-through;
  margin-right: 10px;
}
.page-index .shop .item-container .item .prices .discounted-price {
  font-size: 20px;
  font-weight: 500;
}
.page-index .shop .item-container .item .prices .euro {
  margin-right: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.page-index .shop .item-container .item .prices .euro.discount {
  text-decoration: line-through;
}
.page-index .shop .item-container .item .prices .euro.last {
  margin-right: 10px;
}
.page-index .info-subjects .item-container {
  display: flex;
  width: 100%;
}
.page-index .info-subjects .item-container .item {
  text-decoration: none;
  width: 200px;
  max-width: 200px;
  min-width: 200px;
  margin: 8px;
  text-align: center;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 8px;
  overflow: hidden;
}
.page-index .info-subjects .item-container .item:first-of-type {
  margin-left: 48px;
}
.page-index .info-subjects .item-container .item:hover {
  transform: translateY(-4px);
}
.page-index .info-subjects .item-container .item .card {
  width: 100%;
  height: 120px;
  line-height: 120px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}
.page-index .info-subjects .item-container .item .title {
  height: 48px;
  text-align: left;
  padding: 16px;
  width: calc(100% - 32px);
  white-space: normal;
  font-weight: 500;
  color: #555;
}
.page-index .info-subjects .item-container .see-more {
  text-decoration: none;
  display: block;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  text-align: center;
  cursor: pointer;
  color: #000;
  margin: 8px 48px 8px 8px;
}
.page-index .info-subjects .item-container .see-more .circle {
  margin: 24px;
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 32px;
  transition: box-shadow 200ms;
}
.page-index .info-subjects .item-container .see-more .circle:hover {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6666666667);
}
.page-index .info-subjects .prev-page-button, .page-index .info-subjects .next-page-button {
  top: 180px;
}
.page-index .blog .item-container {
  display: flex;
  width: 100%;
}
.page-index .blog .item-container .item {
  overflow: hidden;
  text-decoration: none;
  margin: 4px 0 4px 12px;
  flex: 0 0 256px;
  max-width: 256px;
  min-width: 256px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 6px;
  transition: transform 200ms;
  cursor: pointer;
}
.page-index .blog .item-container .item:hover {
  transform: translateY(-4px);
}
.page-index .blog .item-container .item img {
  width: 256px;
  height: 144px;
  object-fit: cover;
}
.page-index .blog .item-container .item h3 {
  margin: 4px 0;
  padding: 8px 16px 0;
  max-width: 240px;
  white-space: normal;
  font-size: 16px;
  line-height: 20px;
  font-weight: 500;
  height: 60px;
}
.page-index .blog .item-container .item .views {
  padding: 12px 16px 12px;
  color: #555;
  font-size: 12px;
  white-space: normal;
  text-transform: uppercase;
}
.page-index .blog .item-container .item:first-of-type {
  margin-left: 48px;
}
.page-index .blog .item-container .see-more {
  text-decoration: none;
  display: block;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  margin: 8px 48px 8px 8px;
  text-align: center;
  cursor: pointer;
  color: #000;
}
.page-index .blog .item-container .see-more .circle {
  margin: 24px;
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 32px;
  transition: box-shadow 200ms;
}
.page-index .blog .item-container .see-more .circle:hover {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.6666666667);
}
.page-index .blog .prev-page-button, .page-index .blog .next-page-button {
  top: 180px;
}
@media screen and (max-width: 1440px) {
  .page-index .section .prev-page-button {
    left: 8px;
  }
  .page-index .section .next-page-button {
    right: 8px;
  }
}
@media screen and (max-width: 1260px) {
  .page-index .top-image {
    padding-bottom: 35vw;
  }
  .page-index .top-image img {
    height: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .page-index .section .mobile-horizontally-scrollable {
    overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
    width: 100%;
  }
  .page-index .section .mobile-horizontally-scrollable::-webkit-scrollbar {
    display: none;
  }
  .page-index .shop .item-container .item {
    margin: 4px 2px;
  }
  .page-index .shop .item-container .item h3 {
    margin-top: 8px !important;
    height: 40px;
    line-height: 20px !important;
  }
  .page-index .shop .item-container .item:first-of-type {
    margin-left: 24px;
  }
  .page-index .shop .item-container .item .prices {
    margin-top: 0;
    padding-top: 0;
    padding-bottom: 0;
    text-align: left;
  }
  .page-index .shop .item-container .item .prices.euro {
    padding-bottom: 8px;
  }
  .page-index .shop .item-container .item .mobile-pass-rate-label {
    display: block;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .page-index .shop .item-container .item .pass-rate-bar {
    width: calc(100% - 64px);
    margin: 4px 0 4px 12px !important;
    display: inline-block;
    height: 8px !important;
  }
  .page-index .shop .item-container .item .pass-rate-bar .pass-rate {
    color: transparent !important;
  }
  .page-index .shop .item-container .item .mobile-pass-rate {
    transform: translateY(-5px);
    font-size: 10px;
    padding: 0;
    display: inline-block;
    font-family: "Open Sans", sans-serif;
  }
  .page-index .top-image {
    padding-bottom: 45vw;
  }
  .page-index .top-image p {
    left: 12vw;
    width: 28vw;
    min-width: 200px;
  }
}
@media screen and (min-width: 1600px) {
  .page-index .top-image {
    padding-bottom: 40vw;
  }
  .page-index .top-image img {
    height: 160px;
  }
  .page-index .top-image p {
    top: calc(20vw - 320px);
    font-size: 28px;
  }
  .page-index .top-image .call-to-action {
    height: 64px;
    line-height: 64px;
    padding-bottom: 12px;
    width: 440px;
  }
  .page-index .top-image .call-to-action .fab {
    transform: translateY(0);
  }
}
@media screen and (max-width: 860px) {
  .page-index .top-image {
    background: url("/static/img/rajko_cover.jpg") 35% 80% no-repeat;
    background-size: cover;
    padding-bottom: calc(100vh - 130px);
  }
  .page-index .top-image .mobile-variant {
    display: inline-block;
  }
  .page-index .top-image .desktop-variant {
    display: none;
  }
  .page-index .top-image img {
    height: unset;
    width: 100%;
  }
  .page-index .top-image p {
    font-size: 20px;
    width: 80vw;
    left: 10vw;
  }
  .page-index .top-image .call-to-action {
    position: absolute;
    font-size: 24px;
    bottom: 32px;
    left: 5vw;
    height: 64px;
    line-height: 64px;
    width: 90vw;
    text-align: center;
  }
  .page-index .top-image .call-to-action .fab {
    transform: translateY(-2px);
  }
  .page-index .top-image .call-to-action:hover {
    transform: scale(1);
  }
  .page-index .section h2 {
    margin-left: 24px;
    margin-right: 24px;
  }
  .page-index .section h2 .arrow {
    opacity: 1;
  }
  .page-index .section h3 {
    margin: -12px 24px 16px;
    line-height: 20px !important;
  }
  .page-index .section a.cta-text {
    margin: 16px 24px;
  }
  .page-index .about-us .item-container .item {
    flex: 0 0 40vw;
  }
  .page-index .about-us .item-container .item:first-of-type {
    margin-left: 24px;
  }
  .page-index .testimonials .testimonial {
    width: 28vw;
    height: 50vw;
  }
  .page-index .testimonials .testimonial img.profile {
    width: 10vw;
    margin-bottom: 4px;
  }
  .page-index .testimonials .testimonial .content .name {
    font-size: 16px;
  }
  .page-index .testimonials .testimonial .content .subject {
    font-size: 14px;
  }
  .page-index .testimonials .testimonial:first-of-type {
    margin-left: 24px;
  }
  .page-index .section .prev-page-button, .page-index .section .next-page-button {
    display: none;
  }
  .page-index .shop h4 {
    margin-bottom: 24px;
  }
  .page-index .shop h1 {
    margin-left: 24px;
    margin-right: 24px;
    font-size: 48px;
    line-height: 56px;
  }
  .page-index .info-subjects .item-container .item:first-of-type {
    margin-left: 24px;
  }
  .page-index .blog .item-container .item:first-of-type {
    margin-left: 24px;
  }
  .page-index .blog .item-container .item:hover, .page-index .info-subjects .item-container .item:hover {
    transform: translateY(0);
  }
}
@media screen and (max-width: 640px) {
  .page-index .top-image .call-to-action {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
  }
  .page-index .top-image .call-to-action .fab {
    transform: translateY(0px);
  }
}
@media screen and (max-width: 400px) {
  .page-index .top-image p {
    font-size: 16px;
  }
}
@media screen and (min-width: 860px) {
  .page-index .testimonials .horizontally-scrollable.hover-within {
    margin-left: -32px;
    width: calc(100% + 32px);
  }
  .page-index .testimonials .testimonial:hover {
    transform: scale(1.25);
    margin: 0 32px;
  }
  .page-index .testimonials .testimonial:hover .mute-button {
    opacity: 1;
  }
}
@supports (-webkit-touch-callout: none) {
  .page-index .top-image {
    padding-bottom: calc(100vh - 200px);
  }
  .page-index .top-image .call-to-action {
    transform: translateY(-40px);
    margin-bottom: 0 !important;
  }
}
@media screen and (max-height: 500px) {
  .page-index .top-image {
    padding-bottom: 800px;
  }
}

.page-single-subject .parallax-banner {
  display: none;
}
.page-single-subject .center-container {
  display: flex;
  width: 90vw;
}
.page-single-subject .center-container .item .votes {
  -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none; /* Safari */
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* Internet Explorer/Edge */
  user-select: none;
}
.page-single-subject .center-container .item .votes .upvote, .page-single-subject .center-container .item .votes .downvote {
  padding: 2px;
}
.page-single-subject .center-container .item .votes .upvote.active, .page-single-subject .center-container .item .votes .downvote.active {
  color: #006c70;
}
.page-single-subject .main {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  background: #fff;
  border-radius: 4px;
  padding: 32px;
  flex: 1;
  margin-right: 24px;
  margin-bottom: 16px;
  min-height: 100%;
}
.page-single-subject .main .tabs {
  height: 48px;
  background: #fff;
  padding: 8px 0 0;
  display: flex;
  justify-content: space-around;
}
.page-single-subject .main .tabs .tab {
  display: block;
  margin: 0;
  padding: 16px 8px;
  flex: 1;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  border-bottom: 2px solid #dbdcde;
  transition: border-bottom-color 200ms;
  text-transform: uppercase;
}
.page-single-subject .main .tabs .tab.mobile-only {
  display: none;
}
.page-single-subject .main .tabs .tab.selected {
  font-weight: bold;
  border-bottom: 2px solid #c4151c;
}
.page-single-subject .main section {
  position: relative;
  margin-top: 4px;
  display: none;
}
.page-single-subject .main section.active {
  display: block;
}
.page-single-subject .main section.description video {
  background: black;
}
.page-single-subject .main section.downloads {
  position: relative;
  height: 100%;
  margin-top: 16px;
  padding: 0 16px;
}
.page-single-subject .main section.downloads .info-message {
  position: relative;
}
.page-single-subject .main section.downloads .info-message img {
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 32px;
  border: 2px solid #555;
}
.page-single-subject .main section.downloads .info-message .info-text {
  margin-left: 80px;
  width: calc(90% - 96px);
  font-weight: 300;
  padding: 16px;
  color: #555;
  background: #ececec;
  border-radius: 6px;
  line-height: 20px;
}
.page-single-subject .main section.downloads .login-overlay {
  position: absolute;
  width: calc(100% - 64px);
  height: calc(100% - 32px);
  z-index: 1;
  margin: 0 -32px;
  padding: 64px 40px 0;
  animation: downloads-entrance 1500ms forwards cubic-bezier(0.3, 0.7, 0.1, 0.9);
  text-align: center;
  font-size: 24px;
  color: #000;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.6666666667);
}
.page-single-subject .main section.downloads .login-overlay .smaller-text {
  font-size: 18px;
}
.page-single-subject .main section.downloads .login-overlay img {
  width: 240px;
}
.page-single-subject .main section.downloads .login-overlay .call-to-action {
  display: inline-block;
  background: #FECA07;
  color: #000;
  height: 40px;
  line-height: 40px;
  padding: 0;
  border-radius: 6px;
  margin: 4px 8px;
  max-width: 360px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.6666666667);
}
@keyframes downloads-entrance {
  0%, 30% {
    backdrop-filter: blur(0);
    -webkit-backdrop-filter: blur(0);
    opacity: 0;
  }
  100% {
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 1;
  }
}
.page-single-subject .main section.downloads .item {
  position: relative;
  height: 104px;
  width: 100%;
  cursor: pointer;
  transition: all 500ms cubic-bezier(0.1, 0.7, 0.5, 0.9);
}
.page-single-subject .main section.downloads .item .icon {
  position: absolute;
  color: #fff;
  background: #c4151c;
  border-radius: 4px;
  left: 8px;
  top: 8px;
  height: 88px;
  width: 88px;
  font-size: 40px;
  line-height: 88px;
  text-align: center;
}
.page-single-subject .main section.downloads .item .icon.animated {
  animation: download-icon-clicked 300ms ease-out;
}
@keyframes download-icon-clicked {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-10deg);
  }
  60% {
    transform: rotate(10deg);
  }
  80% {
    transform: rotate(-10deg);
  }
  100% {
    transform: rotate(0);
  }
}
.page-single-subject .main section.downloads .item .votes {
  position: absolute;
  color: #939597;
  font-size: 14px;
  top: 74px;
  left: 104px;
}
.page-single-subject .main section.downloads .item .votes .upvote, .page-single-subject .main section.downloads .item .votes .downvote {
  display: inline-block;
  padding-right: 8px;
}
.page-single-subject .main section.downloads .item .votes .upvote img, .page-single-subject .main section.downloads .item .votes .downvote img {
  vertical-align: middle;
  height: 18px;
}
.page-single-subject .main section.downloads .item .votes .upvote .active, .page-single-subject .main section.downloads .item .votes .downvote .active {
  color: #006c70;
}
.page-single-subject .main section.downloads .item .title {
  position: absolute;
  font-size: 20px;
  top: 10px;
  left: 104px;
  white-space: nowrap;
  max-lines: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 96px);
}
.page-single-subject .main section.downloads .item .description {
  position: absolute;
  font-size: 14px;
  color: #a7a9ab;
  top: 34px;
  left: 104px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 96px);
}
.page-single-subject .main section.downloads .item .subtitle {
  position: absolute;
  font-size: 14px;
  color: #a7a9ab;
  top: 54px;
  left: 104px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 96px);
}
.page-single-subject .main section.downloads .item.denied .title {
  color: #a7a9ab;
}
.page-single-subject .main section.downloads .item.denied .subtitle {
  color: #bbbdc0;
}
.page-single-subject .main section.downloads .item.denied .icon {
  background: #dbdcde;
}
.page-single-subject .main section.downloads .info-text a {
  color: #006c70;
  font-weight: 700;
  text-decoration: none;
}
.page-single-subject .main section.downloads .info-text a:hover {
  text-decoration: underline;
}
.page-single-subject .main section.comments {
  padding: 32px 16px 16px;
}
.page-single-subject .main section.comments .new-comment .a-profile {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  position: absolute;
  margin-top: 4px;
}
.page-single-subject .main section.comments .new-comment .img-new-comment {
  position: absolute;
  top: 4px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
}
.page-single-subject .main section.comments .new-comment .img-new-comment.small {
  top: 4px;
  left: 0;
}
.page-single-subject .main section.comments .new-comment .img-new-comment.anoni {
  position: relative;
  margin-top: 4px;
}
.page-single-subject .main section.comments .my-profile {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
.page-single-subject .main section.comments .write-comment {
  padding: 12px 12px;
  margin-bottom: 16px;
  font-size: 16px;
  margin-left: 16px;
  font-weight: 500;
  border: none;
  width: calc(100% - 88px);
  transition: all 600ms;
  border-radius: 4px;
  background: #eee;
}
.page-single-subject .main section.comments .write-comment::placeholder {
  color: #a7a9ab;
}
.page-single-subject .main section.comments .profile-comment {
  margin-left: 52px;
}
.page-single-subject .main section.comments .comment {
  position: relative;
  padding-left: 64px;
  border-top: 1px solid #dbdcde;
}
.page-single-subject .main section.comments .comment .toplevel {
  position: relative;
}
.page-single-subject .main section.comments .comment .toplevel .flex-input-content {
  display: flex;
}
.page-single-subject .main section.comments .comment .toplevel .flex-input-content .write-comment {
  margin-left: 16px;
}
.page-single-subject .main section.comments .comment .toplevel .flex-input-content .long-anoni {
  margin-left: 52px;
}
.page-single-subject .main section.comments .comment:first-of-type {
  border: none;
}
.page-single-subject .main section.comments .comment .exit-button {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
}
.page-single-subject .main section.comments .comment img {
  position: absolute;
  top: 14px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
}
.page-single-subject .main section.comments .comment .img-sub-comment {
  top: 4px;
}
.page-single-subject .main section.comments .comment .a-profile {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 16px;
}
.page-single-subject .main section.comments .comment .title {
  padding-top: 8px;
  font-size: 14px;
  color: #3e3e3e;
  font-weight: 500;
}
.page-single-subject .main section.comments .comment p {
  margin-top: 4px;
  font-size: 16px;
  margin-bottom: 4px;
}
.page-single-subject .main section.comments .comment .children {
  margin-left: -32px;
  animation: comment-children-entrance 500ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
.page-single-subject .main section.comments .comment .children.hidden {
  display: none;
}
@keyframes comment-children-entrance {
  0% {
    opacity: 0;
    margin-top: -8px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.page-single-subject .main section.comments .comment .show-children {
  color: #c4151c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
}
.page-single-subject .main section.comments .comment .stats {
  color: #3e3e3e;
  font-size: 14px;
  padding: 8px 0 16px;
}
.page-single-subject .main section.comments .comment .stats .stat {
  padding: 8px;
}
.page-single-subject .main section.comments .comment .stats .stat.voted {
  color: #006c70;
}
.page-single-subject .main section.comments .comment.selected {
  border: none;
  background-color: #eee;
  padding-top: 4px;
  padding-bottom: 0;
  padding-left: 72px;
  margin: -20px -16px 16px;
}
.page-single-subject .main section.comments .comment.selected .a-profile {
  left: 20px;
}
.page-single-subject .main section.comments .comment.selected img {
  left: 16px;
  width: 32px;
  height: 32px;
}
.page-single-subject .main section.comments .comment-thread {
  height: 100%;
  width: 100%;
  background: #fff;
  animation: comment-children-entrance 200ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
  margin-left: 64px;
  margin-top: 8px;
}
.page-single-subject .main section.comments .comment-thread .comment.selected {
  display: none;
}
.page-single-subject .main section.comments .comment-thread.hidden {
  display: none;
}
.page-single-subject .main section.comments .comment-thread:not(.hidden) + .toplevel {
  display: none;
}
.page-single-subject .main section.comments .comment-thread .comment:last-child {
  margin-bottom: 64px;
}
.page-single-subject .main section.comments .comment-thread .new-comment {
  position: relative;
}
.page-single-subject .main section.comments .comment-thread .new-comment .img-new-comment {
  top: 4px;
  left: 0;
}
.page-single-subject .main section.comments .comment-thread .new-comment .a-profile {
  position: absolute;
  margin-top: 4px;
}
@keyframes comment-children-entrance {
  0% {
    opacity: 0;
    margin-top: 20px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.page-single-subject .main section.comments .login-to-comment {
  color: #c4151c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
}
.page-single-subject .main section.comments h2, .page-single-subject .main section.comments h3 {
  text-align: center;
  color: #555;
  font-weight: 400;
}
.page-single-subject .main section.info .info-row {
  display: flex;
  padding: 8px 32px;
  font-size: 18px;
}
.page-single-subject .main section.info .info-row * {
  flex: 1 0 0;
}
.page-single-subject .main section.info .info-row .value {
  text-align: right;
}
.page-single-subject .main section.info .related-posts {
  display: none;
}
.page-single-subject .main section.info h3 {
  margin: 24px;
}
.page-single-subject .main section .text-content {
  margin: 0 80px;
  line-height: 24px;
}
.page-single-subject .main section .text-content h2 {
  margin-top: 64px;
}
.page-single-subject .main section .text-content p {
  margin-top: 24px;
}
.page-single-subject .main section .text-content a {
  text-decoration: none;
  color: #006c70;
  font-weight: 500;
}
.page-single-subject .sidebar {
  flex: 0 0 256px;
}
.page-single-subject .sidebar .info-box {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  margin: 0 4px 16px;
  padding: 16px;
  border-radius: 4px;
}
.page-single-subject .sidebar .info-box .title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 16px;
}
.page-single-subject .sidebar .info-box .info-row * {
  font-size: 14px;
  line-height: 22px;
  display: inline-block;
}
.page-single-subject .sidebar .info-box .info-row .key {
  width: 80px;
}
.page-single-subject .sidebar .banner {
  margin: 16px 4px;
  background: #fff;
  height: 496px;
  line-height: 400px;
  cursor: pointer;
  text-align: center;
  font-size: 12px;
  font-weight: bold;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
}
.page-single-subject .sidebar .related-posts .item {
  overflow: hidden;
  margin: 16px 4px;
  flex: 0 0 248px;
  max-width: 248px;
  min-width: 248px;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 6px;
  transition: transform 200ms;
  cursor: pointer;
}
.page-single-subject .sidebar .related-posts .item img {
  width: 256px;
  height: 144px;
  object-fit: cover;
}
.page-single-subject .sidebar .related-posts .item h3 {
  margin: 4px 0 8px;
  padding: 8px 16px 0;
  max-width: 240px;
  white-space: normal;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}
.page-single-subject .sidebar .related-posts .item .views {
  padding: 12px 16px 24px;
  color: #555;
  font-size: 14px;
  white-space: normal;
}
.page-single-subject .sidebar .related-posts .item:hover {
  transform: translateY(-4px);
}
.page-single-subject h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 400;
  color: #fff;
}
@media screen and (max-width: 1080px) {
  .page-single-subject .main section .text-content {
    margin: 0 40px;
  }
}
@media screen and (max-width: 860px) {
  .page-single-subject .parallax-banner {
    margin-top: -20px;
    height: 50vw;
    position: relative;
    overflow: hidden;
    display: block;
  }
  .page-single-subject .parallax-banner img {
    width: 100%;
    position: absolute;
    bottom: 0;
    left: 0;
  }
  .page-single-subject .center-container {
    width: 100vw;
  }
  .page-single-subject .main {
    margin-right: 0;
    padding: 16px 0 0;
    box-shadow: none;
  }
  .page-single-subject .main .tabs {
    width: 100vw;
    z-index: 4;
    transition: box-shadow 500ms;
  }
  .page-single-subject .main .tabs .tab.mobile-only {
    display: block;
  }
  .page-single-subject .main .tabs .tab {
    font-size: 16px;
  }
  .page-single-subject .main.sticky-tabs {
    padding-top: 74px;
  }
  .page-single-subject .main.sticky-tabs .tabs {
    position: fixed;
    top: 56px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.3333333333);
  }
  .page-single-subject .main.sticky-tabs .tabs .tab {
    border-bottom: 2px solid #fff;
  }
  .page-single-subject .main.sticky-tabs .tabs .tab.selected {
    border-bottom: 2px solid #ed1c24;
  }
  @supports (-webkit-touch-callout: none) {
    .page-single-subject .main.sticky-tabs {
      padding-top: 74px;
    }
  }
  .page-single-subject .main section .text-content {
    padding: 12px 24px;
    margin: 0;
  }
  .page-single-subject .main section .text-content h2 {
    margin-top: 24px;
  }
  .page-single-subject .main section.comments {
    padding: 16px 16px 64px;
  }
  .page-single-subject .main section.comments .comment-thread {
    margin-left: 0;
    margin-top: 0;
  }
  .page-single-subject .main section.comments .comment-thread .comment.selected {
    display: block;
  }
  .page-single-subject .main section.comments .comment {
    padding-left: 48px;
  }
  .page-single-subject .main section.comments .comment img {
    width: 24px;
    height: 24px;
    top: 12px;
  }
  .page-single-subject .main section.comments .comment .children {
    margin-left: -16px;
  }
  .page-single-subject .main section.comments .new-comment .img-new-comment {
    top: 6px;
    left: 0;
  }
  .page-single-subject .main section.downloads .login-overlay {
    border-radius: 0;
  }
  .page-single-subject .main section.downloads .login-overlay img {
    width: 160px;
  }
  .page-single-subject .main section.info .related-posts {
    display: block;
  }
  .page-single-subject .main section.info .related-posts .item {
    overflow: hidden;
    margin: 16px 24px;
    width: calc(100% - 48px);
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
    border-radius: 6px;
    transition: transform 200ms;
    cursor: pointer;
  }
  .page-single-subject .main section.info .related-posts .item img {
    width: 100%;
  }
  .page-single-subject .main section.info .related-posts .item h3 {
    margin: 4px 0;
    padding: 8px 16px 0;
    max-width: 240px;
    white-space: normal;
    font-size: 24px;
    line-height: 28px;
    font-weight: 500;
  }
  .page-single-subject .main section.info .related-posts .item .views {
    padding: 12px 16px 24px;
    color: #555;
    font-size: 12px;
    white-space: normal;
  }
  .page-single-subject .content {
    min-height: calc(100vh - 256px);
  }
  .page-single-subject .sidebar {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .page-single-subject .main .tabs .tab {
    font-size: 14px;
  }
}

.fr-video {
  position: relative;
  display: block;
  height: 0;
  padding-bottom: 55.25%;
  width: 100%;
}
.fr-video iframe {
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.fr-video iframe div {
  overflow-y: hidden;
}

.page-info-subjects h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 400;
  color: #fff;
}
.page-info-subjects .center-container {
  display: block;
  text-align: center;
  width: 100vw;
}
.page-info-subjects .center-container .info-subject-margin-small {
  margin-left: 42px;
}
.page-info-subjects .center-container .mobile {
  display: none;
  width: 100%;
}
.page-info-subjects .center-container .mobile h2 {
  font-weight: 500;
  font-size: 20px;
}
.page-info-subjects .center-container .mobile h3 {
  margin-top: 32px;
  margin-bottom: -64px;
  padding-bottom: 0;
}
.page-info-subjects .center-container .mobile .mobile-years {
  display: block;
}
.page-info-subjects .center-container .mobile .mobile-years .year {
  padding: 12px 32px;
  background-color: #dbdcde;
  margin: 8px 16px;
  border-radius: 4px;
  transition: background-color 200ms;
  cursor: pointer;
}
.page-info-subjects .center-container .mobile .mobile-years .year.selected {
  background-color: #FECA07;
}
.page-info-subjects .center-container .mobile .mobile-years .mbf-container {
  width: 100%;
  text-align: center;
}
.page-info-subjects .center-container .mobile .mobile-years .mobile-bonus-filter {
  display: none;
  text-align: center;
  max-width: calc(100% - 64px);
  margin-bottom: 32px;
}
.page-info-subjects .center-container .mobile .mobile-years .mobile-bonus-filter .courses {
  width: 15%;
  cursor: pointer;
  display: inline-block;
  padding: 8px 12px;
  background-color: #dbdcde;
  border-radius: 1000px;
  font-size: 12px;
  margin: 2px 0;
  min-width: 24px;
  text-align: center;
}
.page-info-subjects .center-container .mobile .mobile-years .mobile-bonus-filter .courses.selected {
  background-color: #FECA07;
}
.page-info-subjects .center-container .mobile .mobile-years .courses-all {
  display: block;
}
.page-info-subjects .center-container .mobile .mobile-years .courses-all .courses {
  cursor: pointer;
  display: inline-block;
  padding: 12px 16px;
  background-color: #dbdcde;
  border-radius: 1000px;
  margin: 4px 8px;
}
.page-info-subjects .center-container .mobile .mobile-years .courses-all .courses.selected {
  background-color: #FECA07;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects {
  text-align: left;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container {
  display: flex;
  width: 100%;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .item {
  text-decoration: none;
  width: 200px;
  max-width: 200px;
  min-width: 200px;
  margin: 8px;
  text-align: center;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 8px;
  overflow: hidden;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .item:first-of-type {
  margin-left: 48px;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .item:hover {
  transform: translateY(-4px);
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .item .card {
  width: 100%;
  height: 120px;
  line-height: 120px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .item .title {
  height: 48px;
  text-align: left;
  padding: 16px;
  width: calc(100% - 32px);
  white-space: normal;
  font-weight: 500;
  color: #555;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .see-more {
  text-decoration: none;
  display: block;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  text-align: center;
  cursor: pointer;
  color: #000;
  margin: 8px 48px 8px 8px;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .item-container .see-more .circle {
  margin: 24px;
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 32px;
}
.page-info-subjects .center-container .mobile .mobile-years .info-subjects .prev-page-button, .page-info-subjects .center-container .mobile .mobile-years .info-subjects .next-page-button {
  top: 180px;
}
.page-info-subjects .center-container .mobile .mobile-years .section {
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.page-info-subjects .center-container .mobile .mobile-years .section h2 {
  margin-top: 32px;
  margin-left: 48px;
  margin-right: 48px;
}
.page-info-subjects .center-container .mobile .mobile-years .section h3 {
  font-size: 18px;
  line-height: 22px;
  margin: -8px 48px 16px;
  color: #555;
  font-weight: 400;
}
.page-info-subjects .center-container .mobile .mobile-years .section a.cta-text {
  margin: 16px 48px;
}
.page-info-subjects .center-container .mobile .mobile-years .section .horizontally-scrollable {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
.page-info-subjects .center-container .mobile .mobile-years .section .horizontally-scrollable::-webkit-scrollbar {
  display: none;
}
.page-info-subjects .center-container .mobile .mobile-years .section .show-all {
  position: absolute;
  top: 32px;
  right: 12px;
  font-size: 18px;
  color: #c4151c;
  font-weight: 600;
  text-decoration: none;
}
.page-info-subjects .center-container .mobile .mobile-years .section .prev-page-button, .page-info-subjects .center-container .mobile .mobile-years .section .next-page-button {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 48px;
  text-align: center;
  opacity: 1;
  transition: opacity 200ms;
  cursor: pointer;
}
.page-info-subjects .center-container .mobile .mobile-years .section .prev-page-button.hidden, .page-info-subjects .center-container .mobile .mobile-years .section .next-page-button.hidden {
  opacity: 0;
}
.page-info-subjects .center-container .mobile .mobile-years .section .prev-page-button {
  left: -32px;
}
.page-info-subjects .center-container .mobile .mobile-years .section .next-page-button {
  right: -32px;
}
.page-info-subjects .center-container .desktop {
  display: block;
  width: 100%;
}
.page-info-subjects .center-container .desktop .desktop-years {
  display: block;
}
.page-info-subjects .center-container .desktop .desktop-years .year {
  display: inline-block;
  padding: 24px 32px;
  background-color: #dbdcde;
  margin: 4px 16px;
  border-radius: 4px;
  transition: background-color 200ms;
  cursor: pointer;
}
.page-info-subjects .center-container .desktop .desktop-years .year.selected {
  background-color: #FECA07;
}
.page-info-subjects .center-container .desktop .courses-container {
  text-align: center;
  width: 100%;
}
.page-info-subjects .center-container .desktop .courses-all {
  display: inline-block;
  max-width: 800px;
}
.page-info-subjects .center-container .desktop .courses-all .courses {
  cursor: pointer;
  display: inline-block;
  padding: 6px 10px;
  background-color: #dbdcde;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 1000px;
  font-size: 12px;
  margin: 4px 0;
}
.page-info-subjects .center-container .desktop .courses-all .courses.selected {
  background-color: #FECA07;
}
.page-info-subjects .center-container .desktop .info-subjects {
  text-align: left;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container {
  display: flex;
  width: 100%;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .item {
  text-decoration: none;
  width: 200px;
  max-width: 200px;
  min-width: 200px;
  margin: 8px;
  text-align: center;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 8px;
  overflow: hidden;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .item:first-of-type {
  margin-left: 48px;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .item:hover {
  transform: translateY(-4px);
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .item .card {
  width: 100%;
  height: 120px;
  line-height: 120px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .item .title {
  height: 48px;
  text-align: left;
  padding: 16px;
  width: calc(100% - 32px);
  white-space: normal;
  font-weight: 500;
  color: #555;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .see-more {
  text-decoration: none;
  display: block;
  width: 120px;
  min-width: 120px;
  max-width: 120px;
  text-align: center;
  cursor: pointer;
  color: #000;
  margin: 8px 48px 8px 8px;
}
.page-info-subjects .center-container .desktop .info-subjects .item-container .see-more .circle {
  margin: 24px;
  width: 64px;
  height: 64px;
  display: inline-block;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 32px;
}
.page-info-subjects .center-container .desktop .info-subjects .prev-page-button, .page-info-subjects .center-container .desktop .info-subjects .next-page-button {
  top: 130px;
}
.page-info-subjects .center-container .desktop .section {
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.page-info-subjects .center-container .desktop .section h2 {
  margin-top: 32px;
  margin-left: 48px;
  margin-right: 48px;
}
.page-info-subjects .center-container .desktop .section h3 {
  font-size: 18px;
  line-height: 22px;
  margin: -8px 48px 16px;
  color: #555;
  font-weight: 400;
}
.page-info-subjects .center-container .desktop .section a.cta-text {
  margin: 16px 48px;
}
.page-info-subjects .center-container .desktop .section .horizontally-scrollable {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
.page-info-subjects .center-container .desktop .section .horizontally-scrollable::-webkit-scrollbar {
  display: none;
}
.page-info-subjects .center-container .desktop .section .show-all {
  position: absolute;
  top: 32px;
  right: 12px;
  font-size: 18px;
  color: #c4151c;
  font-weight: 600;
  text-decoration: none;
}
.page-info-subjects .center-container .desktop .section .prev-page-button, .page-info-subjects .center-container .desktop .section .next-page-button {
  position: absolute;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 48px;
  text-align: center;
  opacity: 1;
  transition: opacity 200ms;
  cursor: pointer;
}
.page-info-subjects .center-container .desktop .section .prev-page-button.hidden, .page-info-subjects .center-container .desktop .section .next-page-button.hidden {
  opacity: 0;
}
.page-info-subjects .center-container .desktop .section .prev-page-button {
  left: -32px;
}
.page-info-subjects .center-container .desktop .section .next-page-button {
  right: -32px;
}
.page-info-subjects .center-container .desktop-search-results .item {
  display: inline-block;
  text-decoration: none;
  width: 200px;
  margin: 8px;
  text-align: center;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 8px;
  overflow: hidden;
  vertical-align: top;
}
.page-info-subjects .center-container .desktop-search-results .item:hover {
  transform: translateY(-4px);
}
.page-info-subjects .center-container .desktop-search-results .item .card {
  width: 100%;
  height: 120px;
  line-height: 120px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}
.page-info-subjects .center-container .desktop-search-results .item .title {
  height: 48px;
  text-align: left;
  padding: 16px;
  width: calc(100% - 32px);
  white-space: normal;
  font-weight: 500;
  color: #555;
}
.page-info-subjects .center-container .mobile-search-results {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background: #fff;
  animation: popup-entrance 400ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
@keyframes popup-entrance {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-info-subjects .center-container .mobile-search-results .input-box {
  height: 56px;
  background: #000;
}
.page-info-subjects .center-container .mobile-search-results .input-box input {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  border: none;
  width: calc(100% - 88px);
  color: #fff;
  background: #000;
  padding: 8px 24px;
}
.page-info-subjects .center-container .mobile-search-results .input-box .exit-button {
  position: absolute;
  right: 12px;
  top: 8px;
  height: 40px;
}
.page-info-subjects .center-container .mobile-search-results .results-box {
  padding-top: 8px;
}
.page-info-subjects .center-container .mobile-search-results .results-box .result {
  color: #000;
  display: block;
  text-decoration: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 18px;
}
.page-info-subjects .center-container .mobile-search-results .results-box .no-results {
  padding-top: 32px;
}
@media screen and (max-width: 860px) {
  .page-info-subjects .center-container .desktop {
    display: none;
  }
  .page-info-subjects .center-container .mobile {
    display: block;
  }
  .page-info-subjects .center-container .desktop-search-results {
    display: none;
  }
}

@media screen and (max-width: 860px) {
  .page-blog.desktop-blog-only {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .page-blog .mobile-banner-only {
    height: 600px;
    width: 100%;
    padding-bottom: 24px;
  }
}
.page-blog h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 400;
  color: #fff;
}
.page-blog .center-container {
  display: block;
  width: 80vw;
  max-width: 1080px;
}
.page-blog .center-container .posts {
  display: grid;
  grid-gap: 24px 20px;
  grid-auto-columns: 1fr;
}
.page-blog .center-container .posts .c1 {
  grid-column: 1;
}
.page-blog .center-container .posts .c2 {
  grid-column: 2;
}
.page-blog .center-container .posts .c3 {
  grid-column: 3;
}
.page-blog .center-container .posts .c12 {
  grid-column-start: 1;
  grid-column-end: 3;
}
.page-blog .center-container .posts .c23 {
  grid-column-start: 2;
  grid-column-end: 4;
}
.page-blog .center-container .posts .desktop-blog-margin {
  margin-bottom: -32px;
}
@media screen and (max-width: 860px) {
  .page-blog .center-container .posts .desktop-blog-margin {
    margin-bottom: 0;
  }
}
.page-blog .center-container .posts .post {
  color: #000;
  display: block;
  text-decoration: none;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 6px;
  padding-bottom: 32px;
  transition: transform 200ms;
  cursor: pointer;
  position: relative;
  height: calc(100% - 32px);
}
.page-blog .center-container .posts .post:hover {
  transform: translateY(-4px);
}
.page-blog .center-container .posts .post img {
  width: 100%;
}
.page-blog .center-container .posts .post h3 {
  margin: 4px 0;
  padding: 8px 16px 0;
  white-space: normal;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  height: 112px;
}
.page-blog .center-container .posts .post h3.random-blogs {
  font-size: 16px;
  line-height: 20px;
  height: 96px;
}
.page-blog .center-container .posts .post .views {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #555;
  font-size: 12px;
  white-space: normal;
}
.page-blog .center-container .posts .post.small {
  height: unset;
}
.page-blog .center-container .posts .post.small:not(:last-of-type) {
  margin-bottom: 8px;
}
.page-blog .center-container .posts .post.small h3 {
  font-size: 16px;
  line-height: 18px;
  height: 54px;
}
.page-blog .center-container .posts .banner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 6px;
  transition: transform 200ms;
  cursor: pointer;
  position: relative;
}
.page-blog .center-container .posts .banner:hover {
  transform: translateY(-4px);
}
.page-blog .center-container .posts .align-up {
  height: calc(100% - 32px);
}
@media screen and (min-width: 860px) {
  .page-blog .center-container .posts .align-down {
    margin-top: 32px;
  }
}
.page-blog .center-container .img-blog-content {
  padding-bottom: 70%;
  width: 100%;
}
.page-blog .center-container .img-blog-content.random-blogs {
  padding-bottom: 65%;
  width: 100%;
  height: unset;
}
.page-blog .center-container .desktop-search-results {
  text-align: center;
}
.page-blog .center-container .desktop-search-results .item {
  display: inline-block;
  text-decoration: none;
  width: 240px;
  height: 256px;
  margin: 8px;
  text-align: center;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  border-radius: 8px;
  overflow: hidden;
  vertical-align: top;
  position: relative;
}
.page-blog .center-container .desktop-search-results .item:hover {
  transform: translateY(-4px);
}
.page-blog .center-container .desktop-search-results .item .card {
  box-shadow: inset 0 -1px 4px rgba(0, 0, 0, 0.0666666667);
  width: 100%;
  height: 120px;
  line-height: 120px;
  font-size: 32px;
  color: #fff;
  font-weight: bold;
}
.page-blog .center-container .desktop-search-results .item .views {
  position: absolute;
  bottom: 12px;
  left: 16px;
  color: #555;
  font-size: 12px;
  white-space: normal;
}
.page-blog .center-container .desktop-search-results .item .title {
  height: 48px;
  text-align: left;
  padding: 16px;
  width: calc(100% - 32px);
  white-space: normal;
  font-weight: 500;
  color: #555;
}
.page-blog .center-container .mobile-search-results {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background: #fff;
  animation: popup-entrance 400ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
@keyframes popup-entrance {
  0% {
    opacity: 0;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.page-blog .center-container .mobile-search-results .input-box {
  height: 56px;
  background: #000;
}
.page-blog .center-container .mobile-search-results .input-box input {
  position: absolute;
  top: 0;
  left: 0;
  height: 40px;
  border: none;
  width: calc(100% - 88px);
  color: #fff;
  background: #000;
  padding: 8px 24px;
}
.page-blog .center-container .mobile-search-results .input-box .exit-button {
  position: absolute;
  right: 12px;
  top: 8px;
  height: 40px;
}
.page-blog .center-container .mobile-search-results .results-box {
  padding-top: 8px;
}
.page-blog .center-container .mobile-search-results .results-box .result {
  color: #000;
  display: block;
  text-decoration: none;
  text-align: left;
  padding: 12px 16px;
  font-size: 18px;
}
.page-blog .center-container .mobile-search-results .results-box .no-results {
  padding-top: 32px;
  text-align: center;
}
@media screen and (max-width: 860px) {
  .page-blog .center-container .posts {
    display: block;
  }
  .page-blog .center-container .posts .post {
    margin-bottom: 24px;
  }
  .page-blog .center-container .posts .post h3 {
    height: unset;
  }
  .page-blog .desktop-only {
    display: none;
  }
  .page-blog .mobile-only {
    display: block;
  }
  .page-blog .desktop-search-results {
    display: none;
  }
}

.navbar {
  text-align: center;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 64px;
  flex-direction: row;
  justify-content: space-around;
  background: #fff;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3333333333);
  z-index: 4;
  transition: opacity 500ms, bottom 500ms;
}
.navbar.hidden {
  opacity: 0;
  bottom: -64px;
}
.navbar .hidden {
  display: none;
}
.navbar > a {
  flex: 1 0 0;
  line-height: 8px;
  height: 48px;
  color: #000;
  font-size: 12px;
  text-decoration: none;
}
.navbar > a img {
  height: 28px;
  padding: 8px;
}
.navbar > a.big {
  flex: 0 0 80px;
  background: linear-gradient(to bottom, #000, #111);
  border-radius: 64px;
  margin-top: -24px;
  width: 80px;
  height: 80px;
  position: relative;
}
.navbar > a.big img {
  position: absolute;
  width: 48px;
  height: 67px;
  top: 0;
  left: 10px;
}
@media screen and (max-width: 860px) {
  .navbar {
    display: flex;
  }
}

.floating-input {
  position: fixed;
  bottom: 0;
  z-index: 20;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3333333333);
  padding: 8px 0;
  height: 44px;
  transition: opacity 500ms, bottom 500ms;
}
.floating-input.ios {
  bottom: 160px !important;
  padding-bottom: 100px;
}
.floating-input .img-new-comment {
  background: #fff;
  position: absolute;
  top: 12px;
  left: 18px;
  width: 32px;
  height: 32px;
  border-radius: 48px;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.6666666667);
}
.floating-input.hidden {
  opacity: 0;
  bottom: -64px;
}
.floating-input .my-profile {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
.floating-input .write-comment {
  padding: 12px 12px;
  margin-bottom: 16px;
  font-size: 16px;
  margin-left: 16px;
  font-weight: 500;
  border: none;
  width: calc(100% - 140px);
  transition: all 600ms;
  border-radius: 4px;
  background: #eee;
}
.floating-input .write-comment::placeholder {
  color: #a7a9ab;
}
.floating-input .write-comment.profile-comment {
  margin-left: 8px;
}
.floating-input .a-profile {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 16px;
  margin-top: 4px;
}
.floating-input .anon-switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
  transform: translate(0, -6px);
}
.floating-input .anon-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.floating-input .anon-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 64px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 600ms;
  transition: 600ms;
  border-radius: 34px;
}
.floating-input .anon-slider:before {
  background-size: contain;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3333333333);
  position: absolute;
  content: "";
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  left: 1px;
  bottom: 1px;
  -webkit-transition: transform 400ms;
  transition: transform 400ms;
  border-radius: 50%;
}
.floating-input input:not(:checked) + .anon-slider:before {
  background: #fff url(/static/img/anon.svg) center no-repeat;
  background-size: contain;
}
.floating-input input:checked + .anon-slider {
  background: #fd0;
}
.floating-input input:checked + .anon-slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}

.search-input {
  width: 400px;
  max-width: calc(100% - 64px);
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3333333333);
  background: #fff url(/static/img/ui/search.svg) calc(100% - 5px) 5px no-repeat;
  background-size: 24px;
  height: 18px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 18px;
  padding: 8px;
  margin: 4px;
  display: block;
}
@media screen and (max-width: 860px) {
  .search-input {
    display: none;
  }
}

.newsletter-form {
  padding: 40px;
  background-color: #eee;
  width: calc(100% - 80px);
  display: flex;
}
.newsletter-form .c1 {
  flex: 1;
}
.newsletter-form .c2 {
  padding-left: 32px;
  flex: 0 0 128px;
}
@media (max-width: 460px) {
  .newsletter-form .c2 {
    display: none;
  }
}
@media (max-width: 860px) {
  .newsletter-form {
    padding: 24px;
    width: calc(100% - 48px);
  }
}
.newsletter-form .newsletter-input {
  width: 240px;
  max-width: calc(100% - 64px);
  border: none;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3333333333);
  background: #fff;
  background-size: 24px;
  height: 18px;
  font-size: 14px;
  border-radius: 4px;
  line-height: 18px;
  padding: 8px;
  margin: 4px;
  display: inline-block;
}
@media (max-width: 600px) {
  .newsletter-form .newsletter-input {
    width: calc(100% - 24px);
    max-width: 100%;
  }
}
.newsletter-form .newsletter-cta {
  -webkit-appearance: none;
  border: none;
  box-sizing: content-box;
  display: inline-block;
  height: 36px;
  background: #ffdd00;
  font-weight: 700;
  padding: 0 16px;
  cursor: pointer;
}
@media (max-width: 600px) {
  .newsletter-form .newsletter-cta {
    width: calc(100% - 36px);
    max-width: 100%;
    margin-left: 2px;
  }
}

.page-single-blog {
  background-color: #f7f7f7;
}
.page-single-blog .description-editor {
  font-weight: 300;
}
.page-single-blog .description-editor * {
  font-family: "Frontend Font", Helvetica, sans-serif !important;
  font-feature-settings: "lnum" !important;
}
.page-single-blog .description-editor li {
  line-height: 20px;
  padding-bottom: 4px;
}
.page-single-blog .description-editor strong {
  font-weight: 900 !important;
}
.page-single-blog .description-editor h2 {
  font-weight: 400;
  font-size: 24px;
  color: #c4151c;
  text-transform: uppercase;
}
.page-single-blog .description-editor img {
  max-width: 100%;
  height: auto;
}
.page-single-blog .description-editor .quote-container {
  margin: auto;
  position: relative;
  background-color: #eaeaea;
  border-radius: 20px;
  width: 600px;
  max-width: 100%;
  display: block;
  padding-top: 0;
  padding-bottom: 0;
}
.page-single-blog .description-editor .quote-container .quote {
  font-size: 150px;
  color: #eac800;
  font-family: "Times New Roman", Times, serif !important;
  font-feature-settings: unset !important;
  font-weight: 900 !important;
  line-height: 1;
  display: block;
  position: absolute;
  height: 0;
  left: 16px;
  top: 0;
}
.page-single-blog .description-editor .quote-container .text {
  display: block;
  font-style: italic;
  text-align: right;
  margin: 0 32px 0;
  position: relative;
  padding-top: 100px;
  padding-bottom: 10px;
}
.page-single-blog .description-editor .quote-container .text2 {
  position: relative;
  display: block;
  text-align: right;
  margin: 0 32px;
  font-weight: 700 !important;
  padding-bottom: 10px;
  padding-top: 10px;
}
.page-single-blog .description-editor .cta-button-container {
  margin: auto;
  text-align: center;
  display: block;
}
.page-single-blog .description-editor .cta-button-container .cta-button {
  background-color: #ffdd00;
  color: black;
  padding: 10px 20px;
  text-align: center;
  margin: auto;
  font-weight: 900 !important;
  cursor: pointer;
  display: inline-block;
}
.page-single-blog .top-main-img {
  width: 100vw;
  height: 70vh;
  transition: filter 500ms ease-in-out;
}
.page-single-blog .center-container {
  margin-top: -120px;
  background-color: white;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.0666666667);
  width: 100%;
  max-width: 800px;
}
.page-single-blog .center-container .santa-container {
  width: 100%;
  height: 400px;
  position: fixed;
  max-width: 800px;
  overflow: hidden;
  top: 30vh;
  z-index: 100;
  transition: opacity 400ms;
  opacity: 0;
}
@media screen and (max-height: 480px) {
  .page-single-blog .center-container .santa-container {
    top: 10vh;
  }
}
.page-single-blog .center-container .santa-container .santa-button-red {
  text-align: center;
  background: red;
  width: 100px;
  padding: 8px;
  font-weight: 700;
  font-size: 20px;
  border-radius: 4px;
  margin: 24px auto auto;
  cursor: pointer;
  opacity: 0;
  transition: opacity 200ms ease-in-out;
}
.page-single-blog .center-container .santa-container .santa-button-red.santa-shown {
  opacity: 1;
}
.page-single-blog .center-container .santa-container.santa-shown {
  opacity: 1;
}
.page-single-blog .center-container .santa-container .santa-img {
  width: 100%;
  overflow: hidden;
  position: absolute;
  max-width: 800px;
  height: 400px;
  z-index: 1000000;
}
.page-single-blog .center-container .santa-container .santa-img img {
  position: absolute;
  width: 400px;
  right: -400px;
  transition: right 500ms ease-in-out;
}
.page-single-blog .center-container .santa-container .santa-img img.santa-shown {
  right: -175px;
}
@media screen and (max-width: 800px) {
  .page-single-blog .center-container .santa-container .santa-img img {
    width: 300px;
  }
  .page-single-blog .center-container .santa-container .santa-img img.santa-shown {
    right: -132px;
  }
}
.page-single-blog .center-container .santa-container .santa-fullscreen {
  width: 100vw;
  height: 100vh;
  z-index: 100000;
  position: fixed;
  top: 0;
  left: 0;
  transition: opacity 1000ms;
  transition-delay: 1000ms;
  opacity: 0;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.page-single-blog .center-container .santa-container .santa-fullscreen.santa-blur {
  opacity: 1;
}
.page-single-blog .center-container .santa-container .santa-image-block {
  position: fixed;
  top: 30vh;
  width: 200px;
  height: 400px;
  right: calc(50vw - 600px);
  background: #f7f7f7;
  z-index: 100;
}
@media screen and (max-width: 800px) {
  .page-single-blog .center-container .santa-container .santa-text {
    max-width: 100%;
  }
}
.page-single-blog .center-container .santa-container .santa-text {
  position: fixed;
  z-index: 10000000;
  width: 600px;
}
.page-single-blog .center-container .santa-container .santa-text .santa-inner {
  text-align: center;
  font-weight: 500;
  font-size: 44px;
  opacity: 0;
  transition: opacity 800ms ease-in-out;
  margin-left: 0;
  padding: 0 80px;
}
@media screen and (max-width: 800px) {
  .page-single-blog .center-container .santa-container .santa-text .santa-inner.left {
    text-align: center;
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .page-single-blog .center-container .santa-container .santa-text .santa-inner {
    padding: 0 24px;
  }
}
@media screen and (max-width: 320px) {
  .page-single-blog .center-container .santa-container .santa-text .santa-inner {
    font-size: 32px;
  }
}
.page-single-blog .center-container .santa-container .santa-text .santa-inner.small {
  font-size: 16px;
  font-weight: 700;
}
.page-single-blog .center-container .santa-container .santa-text .santa-inner.santa-shown {
  opacity: 1;
}
.page-single-blog .center-container .main-text {
  width: 100%;
  margin: 46px;
  transition: filter 500ms ease-in-out;
}
.page-single-blog .center-container .main-text .title {
  text-decoration: none;
  color: #c4151c;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 48px;
}
.page-single-blog .center-container .main-text .title .top {
  font-size: 20px;
}
.page-single-blog .center-container .main-text .title .middle {
  font-size: 66px;
  font-weight: 600;
}
.page-single-blog .center-container .main-text .title.big {
  font-size: 24px;
  text-align: left;
}
.page-single-blog .center-container .main-text .hr-grey {
  border-top: 1px dotted #aaaaaa;
}
.page-single-blog .center-container .main-text .widgets .list {
  display: block;
  margin-top: 22px;
  margin-bottom: 22px;
  text-align: center;
}
.page-single-blog .center-container .main-text .widgets .list .list-item {
  display: inline-block;
  width: 30%;
  min-width: 200px;
  line-height: 28px;
}
.page-single-blog .center-container .main-text .normal-list {
  position: relative;
}
.page-single-blog .center-container .main-text .comment {
  margin: auto;
  position: relative;
  max-width: 100%;
}
.page-single-blog .center-container .main-text .comment .quote {
  font-size: 150px;
  color: #eac800;
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  line-height: 1;
  display: block;
  position: absolute;
  height: 0.6em;
  left: 16px;
}
.page-single-blog .center-container .main-text .comment .text {
  font-style: italic;
  text-align: right;
  margin-left: 32px;
  margin-right: 32px;
  padding-top: 112px;
  margin-bottom: 24px;
}
.page-single-blog .center-container .main-text .comment .text2 {
  text-align: right;
  margin: 32px;
  padding-bottom: 32px;
  font-weight: 700;
}
.page-single-blog .center-container .main-text .testimonial-img {
  width: 100%;
}
.page-single-blog .center-container .main-text .text {
  color: #484848;
  font-weight: 400;
}
.page-single-blog .center-container .main-text .button {
  text-align: center;
}
.page-single-blog .center-container .main-text .button .action-green {
  background-color: #FECA07;
  color: black;
  padding: 10px;
  width: 170px;
  text-align: center;
  margin: auto;
  font-weight: 900;
  cursor: pointer;
}
.page-single-blog .center-container .main-text .author {
  display: flex;
}
.page-single-blog .center-container .main-text .author .author-profile {
  border-radius: 9999px;
  height: 100px;
  width: 100px;
}
.page-single-blog .center-container .main-text .author .author-name {
  font-weight: 900;
  color: #505050;
  font-size: 24px;
  margin-top: 42px;
  margin-left: 24px;
}
@media screen and (max-width: 800px) {
  .page-single-blog h1 {
    font-size: 18px;
  }
  .page-single-blog .top-main-img {
    height: 35vh;
  }
  .page-single-blog .center-container {
    margin-top: 0;
  }
  .page-single-blog .center-container .main-text {
    margin-top: 16px;
  }
  .page-single-blog .center-container .main-text .title {
    margin-top: 16px;
  }
  .page-single-blog .center-container .main-text .title .middle {
    font-size: 32px;
  }
}

.page-enrols-gallery .top-image {
  width: 100vw;
  margin-bottom: 20px;
  padding-bottom: 30vw;
  position: relative;
  text-align: center;
  background: url("/static/img/rajko_cover.jpg") 0 50% no-repeat;
  background-size: 130vw;
}
.page-enrols-gallery .top-image .mobile-variant {
  display: none;
}
.page-enrols-gallery .top-image .call-to-action {
  display: block;
  background: #FECA07;
  color: #222;
  height: 40px;
  line-height: 34px;
  width: 240px;
  padding: -2px 16px 2px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 4px #FECA07;
  text-decoration: none;
  transition: transform 200ms;
  vertical-align: top;
  text-align: center;
}
.page-enrols-gallery .top-image .call-to-action .fab {
  padding-left: 8px;
  transform: translateY(4px);
}
.page-enrols-gallery .top-image .call-to-action:hover {
  transform: scale(1.1);
}
.page-enrols-gallery .top-image .call-to-action.secondary {
  left: 320px;
  top: -72px;
  padding: 2px 16px 4px;
}
.page-enrols-gallery .top-image .call-to-action.secondary .fab {
  vertical-align: middle;
  padding-left: 0;
  transform: translateY(0);
}
.page-enrols-gallery .top-image .pretitle {
  position: absolute;
  top: 20px;
  color: #fff;
  font-size: 24px;
  width: 100%;
}
.page-enrols-gallery .top-image .title {
  position: absolute;
  top: 60px;
  width: 100%;
  color: #fff;
  font-size: 64px;
}
.page-enrols-gallery .top-image img {
  height: 140px;
}
.page-enrols-gallery .top-image p {
  color: #fff;
  position: absolute;
  left: 12vw;
  top: 40px;
  width: 32vw;
  font-size: 20px;
  text-align: left;
}
.page-enrols-gallery .top-image .desktop-variant {
  display: inline-flex;
}
.page-enrols-gallery .top-image .call-to-action {
  height: 48px;
  line-height: 48px;
  width: 320px;
}
.page-enrols-gallery h1 {
  text-align: center;
  width: 100%;
  color: #dbdcde;
  margin: 40px;
  font-size: 40px;
}
.page-enrols-gallery .all-enrollments {
  text-align: center;
  margin-left: 64px;
  margin-right: 64px;
}
.page-enrols-gallery .all-enrollments .item {
  position: relative;
  overflow: hidden;
  margin: 12px 6px;
  flex: 0 0 320px;
  max-width: 320px;
  min-width: 320px;
  background: #fff;
  border-radius: 6px;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 2px 4px #000;
}
.page-enrols-gallery .all-enrollments .item .mobile-pass-rate-label, .page-enrols-gallery .all-enrollments .item .mobile-pass-rate {
  display: none;
  padding: 12px 16px;
  color: #555;
  font-size: 14px;
}
.page-enrols-gallery .all-enrollments .item:hover {
  transform: translateY(-4px);
}
.page-enrols-gallery .all-enrollments .item:hover .pass-rate-bar {
  height: 16px;
  margin: 0 16px;
}
.page-enrols-gallery .all-enrollments .item:hover .pass-rate-bar .pass-rate {
  color: #555;
}
.page-enrols-gallery .all-enrollments .item:last-of-type {
  margin-right: 12px;
}
.page-enrols-gallery .all-enrollments .item .cover-image {
  width: 320px;
  height: 180px;
  object-fit: cover;
}
.page-enrols-gallery .all-enrollments .item .play-button {
  cursor: pointer;
  position: absolute;
  color: #fff;
  z-index: 1;
  top: 80px;
  width: 60px;
  left: calc(50% - 30px);
  transition: transform 200ms;
}
.page-enrols-gallery .all-enrollments .item .play-button:hover {
  transform: scale(1.1);
}
.page-enrols-gallery .all-enrollments .item h3, .page-enrols-gallery .all-enrollments .item .item-card {
  height: 20px;
  margin: 16px 0 4px !important;
  padding: 0 16px 12px;
  max-width: 320px;
  white-space: normal;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
  color: black;
  text-align: left;
}
.page-enrols-gallery .all-enrollments .item .pass-rate-bar {
  transition: height 200ms, margin 200ms;
  width: calc(100% - 32px);
  height: 8px;
  background: #dbdcde;
  border-radius: 8px;
  margin: 4px 16px;
  overflow: hidden;
}
.page-enrols-gallery .all-enrollments .item .pass-rate-bar .pass-rate {
  background: #FECA07;
  height: 16px;
  color: transparent;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
.page-enrols-gallery .all-enrollments .item .reviews {
  padding: 12px 16px;
  color: #555;
  font-size: 14px;
}
.page-enrols-gallery .all-enrollments .item .prices {
  padding: 8px 16px 16px;
  text-align: right;
}
.page-enrols-gallery .all-enrollments .item .prices .price-before-discount {
  text-decoration: line-through;
  margin-right: 10px;
}
.page-enrols-gallery .all-enrollments .item .prices .discounted-price {
  font-size: 20px;
  font-weight: 500;
}
.page-enrols-gallery .all-enrollments .item .prices .euro {
  margin-right: 0;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
}
.page-enrols-gallery .all-enrollments .item .prices .euro.discount {
  text-decoration: line-through;
}
.page-enrols-gallery .all-enrollments .item .prices .euro.last {
  margin-right: 10px;
}
.page-enrols-gallery .all-enrollments .item .details {
  padding: 8px 16px 16px;
  font-size: 14px;
  color: #939597;
}
.page-enrols-gallery .all-enrollments .item .thirds {
  display: flex;
  padding: 12px;
}
.page-enrols-gallery .all-enrollments .item .thirds .third {
  flex: 1 0 0;
  padding: 4px 12px;
}
.page-enrols-gallery .all-enrollments .item .thirds .third:not(:first-of-type) {
  border-left: 1px solid #dbdcde;
}
.page-enrols-gallery .all-enrollments .item .thirds .third .value {
  font-size: 16px;
  font-weight: 500;
  padding-top: 4px;
  color: #555;
}
.page-enrols-gallery .all-enrollments .item .thirds .third .value.running-out {
  color: #c4151c;
}
.page-enrols-gallery .all-enrollments .item .thirds .third .label {
  font-weight: 500;
  font-size: 12px;
  color: #3e3e3e;
  height: 16px;
}
.page-enrols-gallery .features {
  text-align: center;
  background: #111;
  padding: 40px 64px 64px;
  margin-bottom: 40px;
}
.page-enrols-gallery .features .center-container {
  display: flex;
}
.page-enrols-gallery .features .second {
  text-align: left;
}
.page-enrols-gallery .features .first img {
  width: 100%;
}
.page-enrols-gallery .features h2 {
  display: block;
  color: #FECA07;
  font-size: 50px;
  text-align: left;
  margin: 16px 0 24px;
}
.page-enrols-gallery .features p {
  margin: auto;
  color: #dbdcde;
  font-size: 16px;
  line-height: 24px;
  max-width: 800px;
}
.page-enrols-gallery .features li {
  line-height: 24px;
  color: #dbdcde;
}
.page-enrols-gallery .features .video-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(17, 17, 17, 0), #111);
  z-index: 1;
}
.page-enrols-gallery .features .first, .page-enrols-gallery .features .second {
  flex: 1 0 0;
  padding: 20px;
  max-width: 40vw;
  position: relative;
}
.page-enrols-gallery .why-us {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 64px;
  margin-top: 40px;
  margin-bottom: 40px;
}
.page-enrols-gallery .why-us img {
  width: 120px;
}
.page-enrols-gallery .why-us h2 {
  display: block;
  color: #FECA07;
  font-size: 50px;
  width: calc(100% - 80px);
}
.page-enrols-gallery .why-us .columns {
  margin: auto;
  color: #dbdcde;
  font-size: 16px;
  line-height: 24px;
}
.page-enrols-gallery .why-us .columns .column {
  vertical-align: top;
  text-align: left;
  display: inline-block;
  width: 256px;
  margin: 16px;
}
.page-enrols-gallery .why-us .columns .column .title {
  font-size: 18px;
  font-weight: 700;
}
.page-enrols-gallery .why-us .columns .column .content {
  color: #939597;
}
.page-enrols-gallery .why-us .columns .column .content strong {
  color: #dbdcde;
}
.page-enrols-gallery .testimonials {
  width: 100%;
  position: relative;
  margin-bottom: 32px;
}
.page-enrols-gallery .testimonials h2 {
  width: calc(100% - 48px);
  margin: 32px 24px 24px;
  cursor: pointer;
}
.page-enrols-gallery .testimonials h2 .arrow {
  display: inline-block;
  transition: opacity 200ms;
  animation: rescale 500ms;
  opacity: 0;
}
.page-enrols-gallery .testimonials h2:hover .arrow {
  opacity: 1;
}
.page-enrols-gallery .testimonials h3 {
  cursor: pointer;
  font-size: 18px;
  line-height: 22px;
  margin: -8px 48px 16px;
  color: #555;
  font-weight: 400;
}
.page-enrols-gallery .testimonials a.cta-text {
  margin: 16px 48px;
}
.page-enrols-gallery .testimonials .testimonial {
  flex: 0;
  position: relative;
  display: inline-block;
  width: 200px;
  height: 355px;
  border-radius: 12px;
  margin: 3px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  cursor: pointer;
  transition: all 200ms;
}
.page-enrols-gallery .testimonials .testimonial:first-of-type {
  margin-left: 48px;
}
.page-enrols-gallery .testimonials .testimonial:last-of-type {
  margin-right: 48px;
}
.page-enrols-gallery .testimonials .testimonial .content {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.9333333333));
  color: #fff;
}
.page-enrols-gallery .testimonials .testimonial .content .name {
  white-space: normal;
  font-weight: bold;
  font-size: 18px;
}
.page-enrols-gallery .testimonials .testimonial .content .subject {
  margin-bottom: 8px;
}
.page-enrols-gallery .testimonials .testimonial img.profile {
  top: 8px;
  left: 8px;
  position: absolute;
  margin-bottom: 16px;
  border-radius: 64px;
  width: 64px;
  max-width: 64px;
  background: #fff;
  border: 3px solid #3e3e3e;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.3333333333);
}
.page-enrols-gallery .testimonials .testimonial.new img.profile {
  border: 3px solid #FECA07;
}
.page-enrols-gallery .testimonials .testimonial:hover video {
  opacity: 1;
}
.page-enrols-gallery .testimonials .testimonial video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  opacity: 0;
  border-radius: 12px;
  transition: opacity 400ms;
}
.page-enrols-gallery .testimonials .testimonial .mute-button {
  top: 8px;
  right: 8px;
  position: absolute;
  margin-bottom: 16px;
  border-radius: 64px;
  width: 48px;
  font-size: 24px;
  height: 48px;
  line-height: 48px;
  max-width: 48px;
  opacity: 0;
  color: #fff;
  text-shadow: 0 0 2px #000;
  transition: opacity 400ms;
}
.page-enrols-gallery .testimonials .testimonial .mute-button .hidden {
  display: none;
}
.page-enrols-gallery .testimonials .testimonial.popped {
  animation: testimonial-pop 400ms ease-out;
}
.page-enrols-gallery .testimonials .horizontally-scrollable {
  transition: margin-left 200ms;
  padding: 56px 0;
  margin: -56px 0;
}
@keyframes testimonial-pop {
  0% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
.page-enrols-gallery .testimonials .horizontally-scrollable {
  overflow-x: scroll;
  overflow-y: hidden;
  white-space: nowrap;
  width: 100%;
}
.page-enrols-gallery .testimonials .horizontally-scrollable::-webkit-scrollbar {
  display: none;
}
.page-enrols-gallery .testimonials .show-all {
  position: absolute;
  top: 32px;
  right: 12px;
  font-size: 18px;
  color: #c4151c;
  font-weight: 600;
  text-decoration: none;
}
.page-enrols-gallery .testimonials .prev-page-button, .page-enrols-gallery .testimonials .next-page-button {
  position: absolute;
  top: 244px;
  width: 64px;
  height: 64px;
  background: #fff;
  border-radius: 64px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  line-height: 64px;
  font-size: 48px;
  text-align: center;
  opacity: 1;
  cursor: pointer;
  animation: show-page-button-anim 200ms forwards;
}
.page-enrols-gallery .testimonials .prev-page-button.hidden, .page-enrols-gallery .testimonials .next-page-button.hidden {
  animation: hide-page-button-anim 200ms forwards;
  opacity: 0;
}
@keyframes show-page-button-anim {
  0% {
    z-index: -5;
    opacity: 0;
  }
  1% {
    z-index: unset;
    opacity: 0;
  }
  100% {
    z-index: unset;
    opacity: 1;
  }
}
@keyframes hide-page-button-anim {
  0% {
    z-index: unset;
    opacity: 1;
  }
  99% {
    z-index: unset;
    opacity: 0;
  }
  100% {
    z-index: -5;
    opacity: 0;
  }
}
.page-enrols-gallery .testimonials .prev-page-button {
  left: -32px;
}
.page-enrols-gallery .testimonials .next-page-button {
  right: -32px;
}
.page-enrols-gallery .location .center-container {
  display: flex;
  max-width: 1200px;
}
.page-enrols-gallery .location .steps {
  margin: 24px;
  text-align: center;
  flex: 1 0 0;
  display: inline-block;
}
.page-enrols-gallery .location .steps h2 {
  width: calc(100% - 96px);
  color: #FECA07;
  text-transform: uppercase;
  font-size: 28px;
}
.page-enrols-gallery .location .steps p {
  color: #dbdcde;
  text-align: left;
  font-size: 16px;
}
.page-enrols-gallery .location #google_map {
  flex: 1 0 0;
  height: 400px;
  margin: 24px;
}
@media screen and (max-width: 1440px) {
  .page-enrols-gallery .testimonials .prev-page-button {
    left: 8px;
  }
  .page-enrols-gallery .testimonials .next-page-button {
    right: 8px;
  }
  .page-enrols-gallery .features h2 {
    font-size: 32px;
  }
}
@media screen and (max-width: 1260px) {
  .page-enrols-gallery .top-image {
    padding-bottom: 35vw;
  }
  .page-enrols-gallery .top-image img {
    height: 100px;
  }
}
@media screen and (max-width: 1100px) {
  .page-enrols-gallery .top-image {
    padding-bottom: 45vw;
  }
  .page-enrols-gallery .top-image p {
    left: 12vw;
    width: 28vw;
    min-width: 200px;
  }
}
@media screen and (max-width: 860px) {
  .page-enrols-gallery .top-image {
    background: url("/static/img/rajko_cover.jpg") 35% 80% no-repeat;
    background-size: cover;
    padding-bottom: calc(100vh - 130px);
  }
  .page-enrols-gallery .top-image .mobile-variant {
    display: inline-block;
  }
  .page-enrols-gallery .top-image .desktop-variant {
    display: none;
  }
  .page-enrols-gallery .top-image img {
    height: unset;
    width: 100%;
  }
  .page-enrols-gallery .top-image p {
    font-size: 20px;
    width: 80vw;
    left: 10vw;
    top: 0;
  }
  .page-enrols-gallery .top-image .call-to-action {
    position: absolute;
    font-size: 24px;
    bottom: 112px;
    left: 5vw;
    height: 64px;
    line-height: 64px;
    width: 90vw;
    text-align: center;
  }
  .page-enrols-gallery .top-image .call-to-action .fab {
    transform: translateY(8px);
  }
  .page-enrols-gallery .top-image .call-to-action.secondary {
    left: calc(5vw - 24px);
    bottom: 16px;
    top: unset;
    width: calc(90vw - 36px);
    padding-top: 8px;
    padding-bottom: 4px;
  }
  .page-enrols-gallery .top-image .call-to-action.secondary .fab {
    transform: translateY(-4px);
  }
  .page-enrols-gallery .top-image .call-to-action:hover {
    transform: scale(1);
  }
  .page-enrols-gallery .all-enrollments {
    margin-left: 0;
    margin-right: 0;
  }
  .page-enrols-gallery .all-enrollments .item .pass-rate-bar {
    height: 16px !important;
    margin: 0 16px !important;
  }
  .page-enrols-gallery .all-enrollments .item .pass-rate-bar .pass-rate {
    color: #555 !important;
  }
  .page-enrols-gallery .location .center-container {
    display: block;
  }
  .page-enrols-gallery .testimonials .testimonial {
    width: 28vw;
    height: 50vw;
  }
  .page-enrols-gallery .testimonials .testimonial img.profile {
    width: 10vw;
    margin-bottom: 4px;
  }
  .page-enrols-gallery .testimonials .testimonial .content .name {
    font-size: 16px;
  }
  .page-enrols-gallery .testimonials .testimonial .content .subject {
    font-size: 14px;
  }
  .page-enrols-gallery .testimonials .testimonial:first-of-type {
    margin-left: 24px;
  }
  .page-enrols-gallery .features {
    padding: 40px 24px 64px;
  }
  .page-enrols-gallery .features h2 {
    text-align: center;
  }
  .page-enrols-gallery .features .center-container {
    display: block;
    width: auto;
  }
  .page-enrols-gallery .features .first, .page-enrols-gallery .features .second {
    max-width: 100vw;
    flex: none;
    padding: 0;
  }
  .page-enrols-gallery .why-us .columns .column {
    width: auto;
    display: block;
    padding: 8px 32px;
  }
  .page-enrols-gallery .prev-page-button, .page-enrols-gallery .next-page-button {
    display: none;
  }
}
@media screen and (max-width: 640px) {
  .page-enrols-gallery .top-image .call-to-action {
    font-size: 16px;
    height: 48px;
    line-height: 48px;
  }
  .page-enrols-gallery .top-image .call-to-action .fab {
    transform: translateY(8px);
  }
}
@media screen and (max-width: 400px) {
  .page-enrols-gallery .top-image p {
    font-size: 16px;
  }
}
@media screen and (min-width: 860px) {
  .page-enrols-gallery .testimonials .horizontally-scrollable.hover-within {
    margin-left: -32px;
    width: calc(100% + 32px);
  }
  .page-enrols-gallery .testimonials .testimonial:hover {
    transform: scale(1.25);
    margin: 0 32px;
  }
  .page-enrols-gallery .testimonials .testimonial:hover .mute-button {
    opacity: 1;
  }
}
@supports (-webkit-touch-callout: none) {
  .page-enrols-gallery .top-image {
    padding-bottom: calc(100vh - 240px);
  }
  .page-enrols-gallery .top-image .call-to-action {
    transform: translateY(-32px);
    margin-bottom: 0 !important;
  }
  .page-enrols-gallery .top-image .call-to-action.first {
    margin-bottom: -48px !important;
  }
  .page-enrols-gallery .top-image .call-to-action.secondary {
    margin-bottom: -16px !important;
  }
}
@media screen and (max-height: 500px) {
  .page-enrols-gallery .top-image {
    padding-bottom: 800px;
  }
}
@media screen and (max-width: 480px) {
  .page-enrols-gallery .all-enrollments .item {
    flex: 0 0 320px;
    max-width: 320px;
    min-width: 320px;
  }
  .page-enrols-gallery .all-enrollments .item .cover-image {
    width: 320px;
    height: 213px;
  }
}
@media screen and (min-width: 860px) {
  .page-enrols-gallery .testimonials .horizontally-scrollable.hover-within {
    margin-left: -32px;
    width: calc(100% + 32px);
  }
  .page-enrols-gallery .testimonials .testimonial:hover {
    transform: scale(1.25);
    margin: 0 32px;
  }
  .page-enrols-gallery .testimonials .testimonial:hover .mute-button {
    opacity: 1;
  }
}

.page-shop-subject h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}
.page-shop-subject .hero-image-container {
  text-align: center;
  position: relative;
  overflow: visible;
}
.page-shop-subject .hero-image-container .hero-image {
  display: inline-block;
  max-width: 1200px;
  width: 100vw;
  overflow: visible;
}
.page-shop-subject .hero-image-container .hero-image img {
  margin-bottom: -12px;
  width: 100%;
}
.page-shop-subject .hero-image-container .play-button {
  cursor: pointer;
  position: absolute;
  color: #fff;
  z-index: 1;
  top: calc(19vw - 40px);
  width: 60px;
  left: calc(50% - 30px);
  transition: transform 200ms;
}
.page-shop-subject .hero-image-container .play-button:hover {
  transform: scale(1.1);
}
.page-shop-subject .hero-image-container .title {
  position: absolute;
  z-index: 1;
  top: calc(19vw + 40px);
  width: 100%;
}
.page-shop-subject .hero-image-container h1 {
  width: calc(100% - 48px);
  margin: 12px 0 0;
  padding-bottom: 16px;
  color: #fff;
  font-size: 56px;
  line-height: 64px;
  text-transform: uppercase;
  background: none;
  font-weight: 700;
}
.page-shop-subject .hero-image-container h2 {
  padding: 0 24px;
  margin-top: 0;
  color: #939597;
  font-size: 40px;
  line-height: 48px;
  text-align: center;
  font-weight: 300;
  text-transform: uppercase;
  background: none;
}
.page-shop-subject .center-container {
  display: block;
  text-align: center;
}
.page-shop-subject .thirds {
  margin-top: 0;
  width: 100%;
  max-width: 1000px;
  display: inline-flex;
  text-align: center;
}
.page-shop-subject .thirds .third {
  flex: 1 0 0;
  flex-direction: row;
  padding: 24px;
  max-width: 400px;
  color: #fff;
}
.page-shop-subject .thirds .third.double {
  flex: 2 0 0;
  max-width: 800px;
}
.page-shop-subject .thirds .third:not(:first-of-type) {
  border-left: 1px solid #555;
}
.page-shop-subject .thirds .third .icon {
  font-size: 32px;
}
.page-shop-subject .initial {
  max-width: 920px;
}
.page-shop-subject .initial.thirds .third {
  max-width: 800px;
}
.page-shop-subject .individual-link {
  color: #bbbdc0;
  text-decoration: none;
  margin-top: 16px;
  display: block;
  text-align: left;
}
.page-shop-subject .individual-link:hover {
  text-decoration: underline;
}
.page-shop-subject .features .third:not(:first-of-type) {
  border: none;
}
.page-shop-subject .features .icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 80px;
  font-size: 40px;
  color: #FECA07;
  border: 2px solid #FECA07;
  background: #000;
}
.page-shop-subject .features .title {
  color: #FECA07;
  padding: 12px 0 0;
  font-size: 22px;
  font-weight: 500;
}
.page-shop-subject .features p {
  color: #a7a9ab;
}
.page-shop-subject .included {
  margin: 24px;
}
.page-shop-subject .included .larger-text {
  font-size: 20px;
  font-weight: 700;
  padding-bottom: 8px;
}
.page-shop-subject .included .smaller-text {
  color: #939597;
  font-size: 16px;
}
.page-shop-subject .educator {
  background: #111;
}
.page-shop-subject .educator .thirds {
  margin-top: 40px;
  margin-bottom: 80px;
  max-width: 1200px;
  align-items: center;
  height: 100%;
}
.page-shop-subject .educator .thirds .third:not(:first-of-type) {
  border: none;
}
.page-shop-subject .educator .left-aligned-desktop {
  text-align: left;
}
.page-shop-subject .educator h2 {
  font-size: 45px;
  font-weight: 300;
}
.page-shop-subject .educator .educator-label {
  font-weight: 900;
  color: #bbbdc0;
  font-size: 18px;
}
.page-shop-subject .educator img {
  width: 200px;
  height: 200px;
  object-fit: cover;
  border-radius: 200px;
}
.page-shop-subject .educator .quote {
  font-size: 150px;
  color: #555;
  font-family: "Times New Roman", Times, serif;
  font-weight: 900;
  line-height: 1;
  display: block;
  height: 0.6em;
}
.page-shop-subject .educator p {
  color: #939597;
  line-height: 24px;
}
.page-shop-subject .educator .author {
  font-size: 18px;
  color: #939597;
  font-weight: 700;
}
.page-shop-subject .educator .cta-master {
  height: 32px;
  line-height: 32px;
}
.page-shop-subject .comments {
  text-align: left;
  color: #fff;
  max-width: 1200px;
  width: 80vw;
  padding: 32px 16px 16px;
  position: relative;
  display: inline-block;
}
.page-shop-subject .comments input {
  color: #fff;
}
.page-shop-subject .comments .new-comment.flex-input-content {
  display: flex;
}
.page-shop-subject .comments .new-comment.flex-input-content .write-comment {
  margin-left: 16px;
}
.page-shop-subject .comments .new-comment.flex-input-content .write-comment.long-anoni {
  margin-left: 52px;
}
.page-shop-subject .comments .new-comment .a-profile {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  position: absolute;
  margin-top: 4px;
}
.page-shop-subject .comments .new-comment .img-new-comment {
  background: #fff;
  position: absolute;
  top: 36px;
  left: 24px;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
}
.page-shop-subject .comments .new-comment .img-new-comment.small {
  top: 4px;
  left: 0;
}
.page-shop-subject .comments .new-comment .img-new-comment.no-margin-left {
  left: unset !important;
}
.page-shop-subject .comments .new-comment.mobile-v img {
  top: 6px;
  left: 0;
}
.page-shop-subject .comments .my-profile {
  display: inline-block;
  width: 32px;
  height: 32px;
  line-height: 32px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
}
.page-shop-subject .comments .write-comment {
  padding: 12px 12px;
  margin-bottom: 16px;
  font-size: 16px;
  margin-left: 16px;
  font-weight: 500;
  border: none;
  width: calc(100% - 88px);
  transition: all 600ms;
  border-radius: 4px;
  background: #222;
}
.page-shop-subject .comments .write-comment::placeholder {
  color: #a7a9ab;
}
.page-shop-subject .comments .profile-comment {
  margin-left: 52px;
}
.page-shop-subject .comments .comment {
  position: relative;
  padding-left: 64px;
  border-top: 1px solid #222;
}
.page-shop-subject .comments .comment .toplevel {
  position: relative;
}
.page-shop-subject .comments .comment:first-of-type {
  border: none;
}
.page-shop-subject .comments .comment .exit-button {
  position: absolute;
  top: 8px;
  right: 8px;
  font-size: 20px;
}
.page-shop-subject .comments .comment img {
  position: absolute;
  top: 14px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
  background: #fff;
}
.page-shop-subject .comments .comment .a-profile {
  display: inline-block;
  width: 28px;
  height: 28px;
  line-height: 28px;
  border-radius: 32px;
  text-align: center;
  color: #fff;
  font-weight: 500;
  position: absolute;
  left: 0;
  top: 16px;
}
.page-shop-subject .comments .comment .title {
  padding-top: 8px;
  font-size: 14px;
  color: #3e3e3e;
  font-weight: 500;
}
.page-shop-subject .comments .comment p {
  margin-top: 4px;
  font-size: 16px;
  margin-bottom: 4px;
}
.page-shop-subject .comments .comment .children {
  margin-left: -32px;
  animation: comment-children-entrance 500ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
.page-shop-subject .comments .comment .children.hidden {
  display: none;
}
@keyframes comment-children-entrance {
  0% {
    opacity: 0;
    margin-top: -8px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.page-shop-subject .comments .comment .show-children {
  color: #FECA07;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
}
.page-shop-subject .comments .comment .stats {
  color: #3e3e3e;
  font-size: 14px;
  padding: 8px 0 16px;
}
.page-shop-subject .comments .comment .stats .stat {
  padding: 8px;
}
.page-shop-subject .comments .comment .stats .stat.voted {
  color: #ed1c24;
}
.page-shop-subject .comments .comment.selected {
  border: none;
  background-color: #eee;
  padding-top: 4px;
  padding-bottom: 0;
  padding-left: 72px;
  margin: -20px -16px 16px;
}
.page-shop-subject .comments .comment.selected .a-profile {
  left: 20px;
}
.page-shop-subject .comments .comment.selected img {
  left: 16px;
  width: 32px;
  height: 32px;
}
.page-shop-subject .comments .comment.selected {
  background-color: #111;
  margin-top: 0;
}
.page-shop-subject .comments .comment .small {
  top: 4px;
}
.page-shop-subject .comments .comment-thread {
  overflow-y: scroll;
  height: calc(100vh - 80px);
  width: calc(100vw - 48px);
  background: #000;
  position: fixed;
  padding: 16px 24px;
  top: 60px;
  left: 0;
  z-index: 4;
  animation: comment-children-entrance 200ms forwards cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
.page-shop-subject .comments .comment-thread .comment.selected {
  display: none;
}
.page-shop-subject .comments .comment-thread.hidden {
  display: none;
}
.page-shop-subject .comments .comment-thread:not(.hidden) + .toplevel {
  display: none;
}
.page-shop-subject .comments .comment-thread .comment:last-child {
  margin-bottom: 64px;
}
.page-shop-subject .comments .comment-thread .new-comment {
  position: relative;
}
.page-shop-subject .comments .comment-thread .new-comment .img-new-comment {
  top: 4px;
  left: 0;
}
.page-shop-subject .comments .comment-thread .new-comment .img-new-comment.no-left {
  left: 0;
}
.page-shop-subject .comments .comment-thread .new-comment .a-profile {
  position: absolute;
  margin-top: 4px;
}
@keyframes comment-children-entrance {
  0% {
    opacity: 0;
    margin-top: 20px;
  }
  100% {
    opacity: 1;
    margin-top: 0;
  }
}
.page-shop-subject .comments .login-to-comment {
  color: #c4151c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
}
.page-shop-subject .options {
  background: #fff;
  color: #000;
  border-radius: 16px 16px 6px 6px;
}
.page-shop-subject .options .subtitle {
  background: #222;
  font-weight: 500;
  padding: 20px;
  font-size: 20px;
  border-radius: 6px 6px 0 0;
  margin: 0;
  color: #fff;
}
.page-shop-subject .options .option:not(:first-of-type) {
  border-top: 1px solid #dbdcde;
}
.page-shop-subject .options .option .always-visible {
  transition: color 200ms;
  cursor: pointer;
  padding: 16px;
  line-height: 24px;
  position: relative;
  display: flex;
}
.page-shop-subject .options .option .always-visible .checkbox {
  transform: translate(-4px, 2px);
  flex: 0 0 16px;
  background: transparent;
  vertical-align: middle;
  height: 16px;
  margin: 0 2px;
  display: inline-block;
  border: 1px solid #000;
  border-radius: 16px;
  transition: border-color 200ms;
}
.page-shop-subject .options .option .always-visible .title {
  flex: 1 0 0;
  text-align: left;
  font-weight: 500;
}
.page-shop-subject .options .option .always-visible .price {
  flex: 1 0 0;
  text-align: right;
}
.page-shop-subject .options .option .always-visible .price .starting {
  font-weight: 500;
  text-decoration: line-through;
  color: #3e3e3e;
}
.page-shop-subject .options .option .always-visible .price .discounted {
  font-weight: 500;
}
.page-shop-subject .options .option .always-visible .price .euro {
  position: absolute;
  top: 34px;
  right: 16px;
  font-size: 13px;
  font-weight: 500;
}
.page-shop-subject .options .option .details {
  margin: 0 32px;
  height: 150px;
  overflow: hidden;
  transition: color 350ms, height 350ms;
}
.page-shop-subject .options .option .details .normal-text {
  font-size: 14px;
  text-align: left;
  padding-bottom: 12px;
  color: #555;
  transition: color 350ms;
}
.page-shop-subject .options .option .details a, .page-shop-subject .options .option .details a span {
  text-decoration: none;
  color: rgb(36, 156, 184);
}
.page-shop-subject .options .option .details .small-text {
  text-align: left;
  font-size: 12px;
  padding-bottom: 16px;
  color: #939597;
  transition: color 350ms;
}
.page-shop-subject .options .option .details .cta-master {
  margin-top: 12px;
  line-height: 32px;
  height: 32px;
  width: calc(100% - 48px);
}
.page-shop-subject .options .option.inactive .always-visible {
  color: #3e3e3e;
}
.page-shop-subject .options .option.inactive .always-visible .checkbox {
  border: 1px solid #939597;
}
.page-shop-subject .options .option.inactive .details {
  height: 0 !important;
}
.page-shop-subject .options .option.inactive .details * {
  color: transparent !important;
}
.page-shop-subject .options .option.inactive:hover .always-visible {
  color: #000;
}
.page-shop-subject .options .option.inactive:hover .always-visible .checkbox {
  border: 1px solid #000;
}
.page-shop-subject .options .option.active .always-visible .checkbox {
  background: radial-gradient(circle at center, #000 40%, transparent 50%);
}
.page-shop-subject .disclaimer {
  color: #a7a9ab;
  font-style: italic;
  text-decoration: none;
  margin-top: 16px;
  display: block;
  text-align: left;
}
.page-shop-subject .custom-test-disclaimer {
  max-width: 600px;
  margin: auto;
  margin-top: 50px;
  padding: 16px 46px;
}
.page-shop-subject .custom-test-disclaimer li {
  text-align: left !important;
  margin-left: 40px;
}
.page-shop-subject #komentari {
  transform: translateY(-80px);
}
@media screen and (max-width: 900px) {
  .page-shop-subject .custom-test-disclaimer {
    margin-top: 100px;
  }
}
@media screen and (max-width: 500px) {
  .page-shop-subject .custom-test-disclaimer {
    margin-top: 180px;
  }
}
@media screen and (min-width: 1200px) {
  .page-shop-subject .hero-image-container .play-button {
    top: 188px;
  }
  .page-shop-subject .hero-image-container .title {
    top: 268px;
  }
}
@media screen and (max-width: 860px) {
  .page-shop-subject .hero-image-container h1 {
    font-size: 40px;
    line-height: 48px;
  }
  .page-shop-subject .hero-image-container h2 {
    font-size: 32px;
    line-height: 40px;
  }
  .page-shop-subject .educator .thirds {
    display: block;
    padding-bottom: 40px;
  }
  .page-shop-subject .educator .thirds .third {
    width: calc(100% - 48px);
    max-width: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .page-shop-subject .educator .thirds .third h2 {
    text-align: center;
    font-size: 24px;
  }
  .page-shop-subject .educator .thirds .third .educator-label {
    text-align: center;
  }
  .page-shop-subject .educator .thirds .third .quote {
    font-size: 80px;
  }
  .page-shop-subject .thirds .third:not(:first-of-type) {
    border: none;
  }
  .page-shop-subject .thirds.features {
    margin-top: 0;
    padding-bottom: 40px;
  }
  .page-shop-subject #komentari {
    transform: translateY(-64px);
  }
}
@media screen and (max-width: 800px) {
  .page-shop-subject .thirds {
    text-align: center;
    flex-flow: column;
  }
  .page-shop-subject .thirds:not(.features) {
    margin-top: 0;
    margin-bottom: 0;
  }
  .page-shop-subject .thirds .third {
    max-width: 100vw;
  }
  .page-shop-subject .thirds.initial .third:last-of-type {
    order: -1;
  }
  .page-shop-subject .comments .comment-thread .comment.selected {
    display: block;
  }
}

.video-popup {
  opacity: 0;
  width: 100vw;
  height: 100vh;
  position: fixed;
  background-color: black;
  top: 0;
  right: 0;
  z-index: -100;
}
.video-popup.active {
  transition: opacity 200ms;
  opacity: 1;
  z-index: 20;
}
.video-popup .content {
  width: 100vw;
  height: 100vh;
}
.video-popup .content video {
  top: 0;
  left: 0;
  position: absolute;
  width: 100vw;
  height: 100vh;
}
.video-popup .content .mute-button, .video-popup .content .close-button {
  width: 48px;
  height: 48px;
  border-radius: 64px;
  line-height: 48px;
  font-size: 32px;
  color: #fff;
  text-shadow: 0 0 2px #000;
  cursor: pointer;
  position: absolute;
  top: 40px;
  right: calc(50vw - 25vh);
}
.video-popup .content .mute-button .hidden, .video-popup .content .close-button .hidden {
  display: none;
}
.video-popup .content .mute-button {
  right: unset;
  left: calc(50vw - 25vh);
}
.video-popup .content .percent-watched {
  overflow: hidden;
  width: 50vh;
  height: 6px;
  border-radius: 6px;
  font-size: 32px;
  background: #444;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.6666666667);
  position: absolute;
  top: 16px;
  left: calc(50vw - 25vh);
}
.video-popup .content .percent-watched .watched {
  height: 6px;
  background: #FECA07;
}
.video-popup .content .left-arrow, .video-popup .content .right-arrow {
  width: 48px;
  height: 48px;
  text-align: center;
  border-radius: 64px;
  line-height: 48px;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  top: calc(50vh - 24px);
}
.video-popup .content .left-arrow {
  right: calc(50vw + 30vh);
}
.video-popup .content .right-arrow {
  left: calc(50vw + 30vh);
}
@media screen and (max-width: 860px) {
  .video-popup .content .mute-button, .video-popup .content .close-button {
    top: 32px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    font-size: 24px;
    text-align: center;
  }
  .video-popup .content .mute-button {
    right: calc(50vw - 25vh + 32px);
  }
  .video-popup .content .percent-watched {
    height: 4px;
  }
  .video-popup .content .percent-watched .watched {
    height: 4px;
  }
}

.checkmark-container {
  margin-top: 12px;
}
.checkmark-container .container {
  display: block;
  position: relative;
  padding-left: 24px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 12px;
  line-height: 14px;
  color: #939597;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.checkmark-container .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.checkmark-container .container input:checked ~ .checkmark {
  background-color: #FECA07;
}
.checkmark-container .container input:checked ~ .checkmark:after {
  display: block;
}
.checkmark-container .checkmark {
  border-radius: 15px;
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background: #dbdcde;
}
.checkmark-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.checkmark-container .container .checkmark:after {
  left: 6px;
  top: 3px;
  width: 3px;
  height: 7px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.purchase-form {
  text-align: left;
  margin: calc(50vh - 320px) auto 0;
  width: 800px;
  background-color: #fff;
  height: 640px;
  display: flex;
  align-items: stretch;
  position: relative;
  animation: purchase-form-opening 400ms cubic-bezier(0.1, 0.7, 0.3, 0.9);
  transition: width 300ms, height 300ms;
}
.purchase-form .success_form {
  opacity: 1;
  transition: opacity 400ms;
  width: 480px;
  height: 360px;
  position: absolute;
  margin-left: 0;
  margin-right: 0;
  transition-delay: 300ms;
}
.purchase-form .success_form a {
  color: #006c70;
}
.purchase-form .success_form .login-popup {
  text-align: center;
}
.purchase-form .success_form .exit-button {
  position: absolute;
  right: 16px;
  top: 16px;
  color: #555;
  font-size: 18px;
  cursor: pointer;
}
.purchase-form .success_form.removed {
  opacity: 0;
}

.purchase-form-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.6666666667);
  text-align: center;
  z-index: 50;
  animation: purchase-form-container-opening 400ms cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
@keyframes purchase-form-container-opening {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.purchase-form-container.hidden {
  display: none;
}
.purchase-form-container .purchase-form {
  text-align: left;
  margin: calc(50vh - 320px) auto 0;
  width: 800px;
  background-color: #fff;
  height: 640px;
  display: flex;
  align-items: stretch;
  position: relative;
  animation: purchase-form-opening 400ms cubic-bezier(0.1, 0.7, 0.3, 0.9);
  transition: width 300ms, height 300ms;
}
.purchase-form-container .purchase-form.scale_down {
  width: 480px;
  background-color: #fff;
  height: 360px;
}
@media (max-width: 860px) {
  .purchase-form-container .purchase-form.scale_down {
    width: 100%;
    height: 100%;
    display: flex;
  }
  .purchase-form-container .purchase-form .right, .purchase-form-container .purchase-form .left {
    max-width: unset !important;
  }
  .purchase-form-container .purchase-form .success_form {
    width: 100% !important;
    height: 100% !important;
  }
}
@keyframes purchase-form-opening {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.purchase-form-container .purchase-form .mobile-image {
  display: none;
  width: 100vw;
  height: 100vw;
  background: #c4151c;
}
.purchase-form-container .purchase-form .success_form {
  opacity: 1;
  transition: opacity 400ms;
  width: 480px;
  height: 360px;
  position: absolute;
  margin-left: 0;
  margin-right: 0;
  transition-delay: 300ms;
}
.purchase-form-container .purchase-form .success_form a {
  color: #006c70;
}
.purchase-form-container .purchase-form .success_form .login-popup {
  text-align: center;
}
.purchase-form-container .purchase-form .success_form .exit-button {
  position: absolute;
  right: 16px;
  top: 16px;
  color: #555;
  font-size: 18px;
  cursor: pointer;
}
.purchase-form-container .purchase-form .success_form.removed {
  opacity: 0;
}
.purchase-form-container .purchase-form .left {
  flex: 1 1 400px;
  background: #c4151c;
  transition: max-width 400ms;
  max-width: 400px;
}
.purchase-form-container .purchase-form .left.removed {
  max-width: 0 !important;
}
.purchase-form-container .purchase-form .right {
  -ms-overflow-style: none;
  scrollbar-width: none;
  flex: 1 1 400px;
  background: #fff;
  position: relative;
  overflow-x: hidden;
  opacity: 1;
  transition: opacity 350ms, max-width 400ms;
  max-width: 400px;
}
.purchase-form-container .purchase-form .right::-webkit-scrollbar {
  display: none;
}
.purchase-form-container .purchase-form .right.removed {
  opacity: 0;
  max-width: 0;
}
.purchase-form-container .purchase-form .right .exit-button {
  position: absolute;
  right: 16px;
  top: 16px;
  color: #555;
  font-size: 24px;
  cursor: pointer;
}
.purchase-form-container .purchase-form .right h2 {
  margin-top: 0;
  padding-top: 24px;
  text-align: center;
}
.purchase-form-container .purchase-form .right label {
  display: block;
  width: 100%;
}
.purchase-form-container .purchase-form .right hr {
  margin: 8px 24px;
  background: #dbdcde;
  height: 1px;
  border: none;
}
.purchase-form-container .purchase-form .right input, .purchase-form-container .purchase-form .right select, .purchase-form-container .purchase-form .right textarea {
  resize: none;
  -webkit-appearance: none;
  border-radius: 6px;
  background: #dbdcde;
  box-shadow: none;
  font-size: 14px;
  box-sizing: content-box;
  width: calc(100% - 96px);
  margin: 8px 32px;
  border: 1px solid #dbdcde;
}
.purchase-form-container .purchase-form .right input, .purchase-form-container .purchase-form .right select {
  height: 40px;
  line-height: 40px;
  padding: 0 16px;
}
.purchase-form-container .purchase-form .right textarea {
  padding: 8px 16px;
}
.purchase-form-container .purchase-form .right .cta-master {
  line-height: 24px;
  height: 24px;
  margin: 16px 32px 32px;
  transition: background-color 200ms, box-shadow 200ms;
  width: 160px;
}
.purchase-form-container .purchase-form .right .cta-master.disabled {
  background: #e4e4e4;
  box-shadow: 0 0 4px #848484;
  cursor: default;
}
@media screen and (max-height: 640px), screen and (max-width: 800px) {
  .purchase-form-container .purchase-form {
    margin-top: 0;
    height: 100vh;
  }
  .purchase-form-container .purchase-form .right {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (max-width: 800px) {
  .purchase-form-container .purchase-form {
    display: block;
    margin: 0;
    width: 100vw;
    height: 100vh;
  }
  .purchase-form-container .purchase-form .mobile-image {
    display: block;
  }
  .purchase-form-container .purchase-form .left {
    display: none;
  }
  .purchase-form-container .purchase-form .right {
    width: 100vw;
    height: 100vh;
  }
  .purchase-form-container .purchase-form .right .exit-button {
    color: #fff;
  }
}

.page-faq h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}
.page-faq .center-container {
  text-align: center;
}
.page-faq .center-container .whatsapp-help {
  display: inline-block;
  max-width: 800px;
  width: 100vw;
  margin: auto;
  text-align: left;
}
.page-faq .center-container .whatsapp-help a {
  font-size: 20px;
  color: #FECA07;
  text-decoration: none;
}
.page-faq .center-container .policy {
  max-width: 800px;
  width: 100vw;
  color: #fff;
  display: inline-block;
  margin: auto;
  line-height: 22px;
  padding: 0 24px;
  text-align: left;
}
.page-faq .center-container .policy h2 {
  line-height: 32px !important;
}
.page-faq .center-container .policy a, .page-faq .center-container .policy .linkalike {
  display: inline-block;
  cursor: pointer;
  color: #FECA07;
  text-decoration: underline;
}
.page-faq .center-container .questions {
  display: inline-block;
  max-width: 800px;
  width: 100vw;
  margin: auto;
  text-align: left;
}
.page-faq .center-container .questions .question {
  background: #111;
  margin: 24px 0;
  position: relative;
}
.page-faq .center-container .questions .question .title {
  cursor: pointer;
  padding: 24px;
  color: #dbdcde;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}
.page-faq .center-container .questions .question .answer-toggle {
  position: absolute;
  top: 24px;
  right: 16px;
  font-size: 16px;
  color: #dbdcde;
}
.page-faq .center-container .questions .question .answer-toggle .fa-angle-down {
  display: none;
}
.page-faq .center-container .questions .question .answer {
  font-size: 16px;
  line-height: 18px;
  color: #bbbdc0;
  padding: 0 24px;
  max-height: 0;
  overflow-y: hidden;
  opacity: 0;
  transition: padding 200ms, max-height 200ms, opacity 200ms;
}
.page-faq .center-container .questions .question .answer a {
  color: #FECA07;
  text-decoration: underline;
}
.page-faq .center-container .questions .question.expanded .answer-toggle .fa-angle-down {
  display: inline-block;
}
.page-faq .center-container .questions .question.expanded .answer-toggle .fa-angle-right {
  display: none;
}
.page-faq .center-container .questions .question.expanded .answer {
  max-height: 600px;
  opacity: 1;
  padding: 16px 24px;
}
@media screen and (max-width: 860px) {
  .page-faq .center-container .whatsapp-help {
    text-align: center;
  }
}

.page-about-us h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}

.page-landing .cta-master-text {
  text-align: center;
  font-size: 22px;
  opacity: 0;
  transition: opacity 200ms;
}
.page-landing .cta-master-text.active {
  opacity: 1;
}
.page-landing .cta-master {
  transition: opacity 200ms;
  opacity: 1;
}
.page-landing .cta-master.fade-elem {
  opacity: 0;
}
.page-landing .cover {
  width: 100vw;
  height: 1080px;
  position: relative;
  overflow: hidden;
}
.page-landing .signup-form {
  position: absolute;
  right: 60%;
  width: 400px;
  overflow: hidden;
  background: linear-gradient(to bottom, #c31432 0, #240b36 60%);
  padding: 0 32px 40px;
  text-align: left;
  color: #fff;
  min-width: 400px;
}
.page-landing .signup-form .cta-master {
  height: 32px;
  line-height: 32px;
  width: calc(100% - 48px);
}
.page-landing .signup-form .logo {
  font-size: 48px;
  color: #fff;
  font-family: "Referada Logo Font", "Referada Font", Helvetica, sans-serif;
}
.page-landing .signup-form .logo img {
  height: 80px;
  vertical-align: middle;
}
.page-landing .signup-form h1 {
  font-size: 40px;
}
.page-landing .signup-form p {
  line-height: 24px;
}
.page-landing .signup-form input, .page-landing .signup-form select {
  -webkit-appearance: none;
  box-sizing: content-box;
  width: calc(100% - 32px);
  margin: 8px 0;
  padding: 0 16px;
  border: none;
  height: 40px;
  border-radius: 6px;
  background: #dbdcde;
}
.page-landing .signup-form input::placeholder, .page-landing .signup-form select::placeholder {
  color: #555;
}
.page-landing .signup-form .checkmark-container .container {
  color: #fff;
}
.page-landing .contents {
  background: #fff;
}
.page-landing .contents .center-container {
  margin: auto;
  width: calc(100% - 48px);
  max-width: 1200px;
}
.page-landing .contents .center-container h2 {
  width: 100%;
  text-align: center;
  font-weight: 400;
  font-size: 48px;
  text-transform: uppercase;
}
.page-landing .contents .center-container .features {
  width: 100%;
  text-align: center;
}
.page-landing .contents .center-container .features .feature {
  width: 360px;
  display: inline-block;
  margin: 24px 0;
  text-align: left;
  line-height: 32px;
}
.page-landing .contents .center-container .features .feature .fal {
  color: #eac800;
  font-size: 32px;
  vertical-align: middle;
}
.page-landing .error {
  color: #ed1c24;
  transition: opacity 100ms;
}
.page-landing .error.hidden {
  opacity: 0;
}
@media screen and (max-width: 1200px) {
  .page-landing .signup-form {
    right: unset;
    left: 24px;
    width: 35vw;
  }
}
@media screen and (max-width: 800px) {
  .page-landing .contents .center-container .features .feature {
    width: 100%;
    text-align: center;
  }
  .page-landing .contents .center-container .features .feature .fal {
    display: inline-block;
    width: 100%;
    padding-bottom: 8px;
  }
}
@media screen and (max-width: 640px) {
  .page-landing .signup-form {
    width: calc(100vw - 112px);
    min-width: 0;
  }
  .page-landing .signup-form h1 {
    font-size: 32px;
  }
}

.my-profile-popup {
  position: fixed;
  top: 80px;
  right: calc(50vw - 660px);
  width: 320px;
  background: #000;
  text-align: left;
}
.my-profile-popup p.name {
  font-size: 20px;
  padding: 8px 24px 0;
  margin-bottom: 0;
  color: #fff;
}
.my-profile-popup p.email {
  font-size: 16px;
  padding: 8px 24px 16px;
  color: #aaa;
  border-bottom: 1px solid rgba(204, 204, 204, 0.2);
  margin-top: 0;
}
.my-profile-popup a {
  display: block;
  padding: 16px;
  color: #fff;
  text-decoration: none;
}
.my-profile-popup a:hover {
  font-weight: 700;
}
.my-profile-popup .exit-button {
  position: absolute;
  right: 16px;
  top: 16px;
  font-size: 32px;
  display: none;
}
.my-profile-popup.hidden {
  display: none;
}
@media screen and (max-width: 1400px) {
  .my-profile-popup {
    right: 40px;
  }
}
@media screen and (max-width: 860px) {
  .my-profile-popup {
    transition: top 400ms;
    right: 0;
    top: 0;
    padding-top: 8px;
    height: 100vh;
    width: 100vw;
    background: #222;
    color: #fff;
    box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.3333333333);
    text-align: left;
  }
  .my-profile-popup.upper {
    top: 64px;
  }
  .my-profile-popup p.name {
    padding: 64px 24px 0;
  }
  .my-profile-popup a {
    font-size: 20px;
    padding: 16px;
    color: #fff;
  }
  .my-profile-popup .exit-button {
    display: block;
  }
}

.page-lesson {
  background: #111;
  min-height: 100vh;
}
.page-lesson .exit-button {
  display: none;
  position: fixed;
  top: 32px;
  right: 8px;
  font-size: 32px;
  color: #fff;
  z-index: 3;
}
.page-lesson h1 {
  font-weight: 500;
  margin-left: 0;
}
.page-lesson .sidebar {
  overflow: -moz-scrollbars-none;
  -ms-overflow-style: none;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  position: fixed;
  left: 0;
  top: 0;
  width: 368px;
  height: 100vh;
  flex: 0 0 368px;
  background: #222;
  color: #fff;
}
.page-lesson .sidebar::-webkit-scrollbar {
  width: 0 !important;
}
.page-lesson .sidebar .chapter {
  position: relative;
  padding: 12px 24px 12px 56px;
}
.page-lesson .sidebar .chapter .always-visible {
  cursor: pointer;
}
.page-lesson .sidebar .chapter .always-visible:hover h2, .page-lesson .sidebar .chapter .always-visible:hover .collapse-toggle {
  color: #FECA07;
}
.page-lesson .sidebar .chapter .collapse-toggle {
  position: absolute;
  width: 32px;
  text-align: center;
  top: 32px;
  left: 24px;
  font-size: 24px;
}
.page-lesson .sidebar .chapter h2 {
  font-weight: 500;
  padding-bottom: 0;
  margin-bottom: 0;
}
.page-lesson .sidebar .chapter h3 {
  margin-top: 0;
  padding-top: 0;
  padding-bottom: 16px;
  font-size: 14px;
  font-weight: 300;
  color: #bbbdc0;
}
.page-lesson .sidebar .chapter .lessons {
  max-height: 0;
  overflow-y: hidden;
  opacity: 0;
  padding: 0;
  transition: padding 200ms, max-height 200ms, opacity 200ms;
}
.page-lesson .sidebar .chapter .lessons a.lesson {
  position: relative;
  display: block;
  margin-top: 16px;
  padding-left: 48px;
  color: #bbbdc0;
  text-decoration: none;
}
.page-lesson .sidebar .chapter .lessons a.lesson .title {
  font-weight: 400;
}
.page-lesson .sidebar .chapter .lessons a.lesson .subtitle {
  font-size: 12px;
  line-height: 20px;
  color: #939597;
}
.page-lesson .sidebar .chapter .lessons a.lesson .completed-container {
  position: absolute;
  top: 0;
  left: 16px;
  width: 20px;
  height: 20px;
  border-radius: 16px;
  background: #555;
}
.page-lesson .sidebar .chapter .lessons a.lesson .completed-container img {
  padding: 5px 4px;
  width: 12px;
  display: none;
}
.page-lesson .sidebar .chapter .lessons a.lesson .next-container {
  position: absolute;
  top: 12px;
  left: 25px;
  width: 2px;
  height: calc(100% + 10px);
  background: #555;
}
.page-lesson .sidebar .chapter .lessons a.lesson.completed .completed-container {
  background: #FECA07;
}
.page-lesson .sidebar .chapter .lessons a.lesson.completed .completed-container img {
  display: inline-block;
}
.page-lesson .sidebar .chapter .lessons a.lesson.completed .next-container {
  background: #FECA07;
}
.page-lesson .sidebar .chapter .lessons a.lesson.current .completed-container {
  border: 2px solid #FECA07;
  background: #555;
  width: 16px;
  height: 16px;
}
.page-lesson .sidebar .chapter .lessons a.lesson.current .title {
  color: #fff;
  font-weight: 500;
}
.page-lesson .sidebar .chapter .lessons a.lesson:hover .title {
  color: #fff;
}
.page-lesson .sidebar .chapter .lessons a.lesson.skipped .next-container {
  background: #FECA07;
}
.page-lesson .sidebar .chapter .fa-angle-down {
  display: none;
}
.page-lesson .sidebar .chapter.active .lessons {
  max-height: 2000px;
  opacity: 1;
}
.page-lesson .sidebar .chapter.active .fa-angle-right {
  display: none;
}
.page-lesson .sidebar .chapter.active .fa-angle-down {
  display: unset;
}
.page-lesson .sidebar .chapter.current {
  background: #333;
}
.page-lesson .sidebar .header {
  width: 100%;
  padding: 24px;
  height: 48px;
}
.page-lesson .sidebar .header .to-gallery {
  font-size: 14px;
  transition: transform 200ms;
  cursor: pointer;
  transform-origin: left;
}
.page-lesson .sidebar .header .to-gallery .fal {
  vertical-align: middle;
  font-size: 20px;
}
.page-lesson .sidebar .header .to-gallery:hover {
  transform: scale(1.05);
}
.page-lesson .content-header {
  position: fixed;
  left: 368px;
  width: 100%;
  background: #000;
  color: #dbdcde;
  padding: 24px 48px 24px;
  height: 48px;
  line-height: 48px;
  z-index: 2;
}
.page-lesson .content-header .title {
  text-transform: uppercase;
  font-size: 24px;
}
.page-lesson .content-header img {
  height: 48px;
  vertical-align: middle;
  padding-bottom: 4px;
}
.page-lesson .main {
  position: relative;
  padding: 72px 48px 48px;
  margin-left: 368px;
  flex: 1;
}
.page-lesson .main .text-content {
  color: #bbbdc0;
  margin: 0 80px;
  line-height: 24px;
}
.page-lesson .main .text-content h2 {
  margin-top: 16px;
  color: #555;
  font-size: 14px;
}
.page-lesson .main .text-content h3 {
  color: #555;
  margin-top: 48px;
  font-size: 20px;
}
.page-lesson .main .text-content p {
  padding-top: 20px;
  font-size: 24px;
  font-weight: 500;
}
.page-lesson .main .text-content a {
  text-decoration: none;
  color: #006c70;
  font-weight: 500;
}
.page-lesson .main .text-content .progress-bar {
  width: 100%;
  height: 2px;
  background: #555;
}
.page-lesson .main .text-content .progress-bar .progress {
  background: #FECA07;
  height: 2px;
}
.page-lesson .main .text-content .fr-emoticon {
  background-repeat: no-repeat;
  padding: 0 12px 0 0;
}
.page-lesson .main .text-content .fas, .page-lesson .main .text-content .far {
  font-family: "Font Awesome 5 Pro" !important;
}
.page-lesson .main .text-content .section-downloads {
  position: relative;
}
.page-lesson .main .text-content .section-downloads .download-delete-button-staff {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  z-index: 10;
  height: 32px;
  background: #fff;
  color: #000;
  border-radius: 32px;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.page-lesson .main .text-content .section-downloads .download-delete-button-staff .fas {
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 900;
}
.page-lesson .main .text-content .section-downloads .item {
  position: relative;
  height: 104px;
  width: 100%;
  cursor: pointer;
  transition: all 500ms cubic-bezier(0.1, 0.7, 0.5, 0.9);
}
.page-lesson .main .text-content .section-downloads .item .font-awesome {
  font-family: "Font Awesome 5 Pro" !important;
  text-align: center;
  font-weight: 900;
  height: 100%;
  font-size: 32px;
}
.page-lesson .main .text-content .section-downloads .item .icon {
  position: absolute;
  color: #fff;
  background: #c4151c;
  border-radius: 4px;
  left: 8px;
  top: 8px;
  height: 88px;
  width: 88px;
  font-size: 40px;
  line-height: 88px;
  text-align: center;
}
.page-lesson .main .text-content .section-downloads .item .title {
  position: absolute;
  font-size: 20px;
  top: 10px;
  left: 104px;
  white-space: nowrap;
  max-lines: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 96px);
  margin: 0;
}
.page-lesson .main .text-content .section-downloads .item .description {
  position: absolute;
  font-size: 14px;
  color: #a7a9ab;
  top: 34px;
  left: 104px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 96px);
}
.page-lesson .main .text-content .section-downloads .item .subtitle {
  position: absolute;
  font-size: 14px;
  color: #a7a9ab;
  top: 54px;
  left: 104px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 96px);
}
.page-lesson .main .text-content li {
  font-weight: 300;
  line-height: 20px;
}
.page-lesson .main .text-content li strong {
  font-weight: 600;
}
.page-lesson .main .lesson h3 {
  color: #bbbdc0;
  margin-top: 48px;
  font-size: 20px;
}
.page-lesson .main .lesson p {
  font-size: 16px;
  color: #a7a9ab;
}
.page-lesson .main .quiz .hint {
  color: #FECA07;
  font-weight: 700;
  font-size: 20px;
}
.page-lesson .main .quiz .hint .before-hinting {
  cursor: pointer;
}
.page-lesson .main .quiz .hint .after-hinting {
  transition: opacity 200ms, height 200ms;
  font-style: italic;
  color: #bbbdc0;
  font-weight: 400;
  font-size: 16px;
  height: 0;
  opacity: 0;
  overflow-y: hidden;
  margin-top: 8px;
  line-height: 16px;
}
.page-lesson .main .quiz .hint.hinted .after-hinting {
  opacity: 1;
  height: 48px;
}
.page-lesson .main .quiz .answer {
  background: #171717;
  min-height: 48px;
  border-radius: 8px;
  border: 2px solid #998200;
  padding: 8px 16px 8px 64px;
  margin: 16px 0;
  vertical-align: middle;
  cursor: pointer;
  position: relative;
}
.page-lesson .main .quiz .answer:hover {
  box-shadow: 0 0 4px #FECA07;
}
.page-lesson .main .quiz .answer.active {
  background: #222;
  border: 2px solid #FECA07;
  opacity: 1;
}
.page-lesson .main .quiz .answer.active .check {
  background: #FECA07 url(/static/img/check.png) center no-repeat;
  background-size: 12px;
}
.page-lesson .main .quiz .check {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 20px;
  height: 20px;
  border: 2px solid #FECA07;
}
.page-lesson .main .quiz .single-choice .answer .check {
  border-radius: 20px;
}
.page-lesson .main .quiz .text-input input {
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 2px solid #FECA07;
  display: block;
  color: #bbbdc0;
  line-height: 16px;
  padding: 8px 16px;
  width: calc(100% - 32px);
}
.page-lesson .main .feedback p.woohoo {
  text-align: center;
  color: #44dd00;
  font-weight: 700;
  font-size: 32px;
}
.page-lesson .main .feedback p.boohoo {
  text-align: center;
  color: #ed1c24;
  font-weight: 700;
  font-size: 32px;
}
.page-lesson .main .feedback p {
  font-size: 18px;
}
.page-lesson .main .next-container {
  text-align: right;
}
.page-lesson .main .next-container .yellow-on-black-cta, .page-lesson .main .next-container .page-enrols-gallery .top-image .call-to-action.secondary, .page-enrols-gallery .top-image .page-lesson .main .next-container .call-to-action.secondary {
  margin: 0;
  display: inline-block;
  width: 120px;
}
.page-lesson .main .next-container .yellow-on-black-cta.disabled, .page-lesson .main .next-container .page-enrols-gallery .top-image .disabled.call-to-action.secondary, .page-enrols-gallery .top-image .page-lesson .main .next-container .disabled.call-to-action.secondary {
  opacity: 0.6;
  background: #222;
  color: #939597;
  border-color: #939597;
}
@media screen and (max-width: 860px) {
  .page-lesson .content-header {
    left: 0;
    padding: 28px 24px 20px;
  }
  .page-lesson .exit-button {
    display: unset;
  }
  .page-lesson .main {
    margin-top: 64px;
    margin-left: 0;
    padding: 0 0 128px;
  }
  .page-lesson .main .text-content {
    margin: 0 40px;
  }
  .page-lesson .sidebar {
    z-index: 4;
    display: none;
    width: 100vw;
    overflow-x: hidden;
  }
  .page-lesson .sidebar.mobile-visible {
    display: block;
  }
}

.page-lessons-gallery .top-image {
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 33%;
  position: relative;
  text-align: center;
  background: url("/static/img/rajko_cover.jpg") center no-repeat;
  background-size: cover;
}
.page-lessons-gallery .top-image .call-to-action {
  position: absolute;
  top: 220px;
  left: calc(50% - 144px);
  background: #FECA07;
  color: #000;
  height: 40px;
  line-height: 40px;
  width: 256px;
  padding: 0 16px;
  border-radius: 6px;
  text-transform: uppercase;
  font-weight: 700;
  box-shadow: 0 0 4px #FECA07;
  text-decoration: none;
  transition: transform 200ms;
}
.page-lessons-gallery .top-image .call-to-action:hover {
  transform: scale(1.1);
}
.page-lessons-gallery .top-image .pretitle {
  position: absolute;
  top: 20px;
  color: #fff;
  font-size: 24px;
  width: 100%;
}
.page-lessons-gallery .top-image .title {
  position: absolute;
  top: 60px;
  width: 100%;
  color: #fff;
  font-size: 64px;
}
.page-lessons-gallery h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #000;
  font-weight: 300;
  color: #fff;
  margin-bottom: 0;
}
.page-lessons-gallery .center-container {
  text-align: center;
}
.page-lessons-gallery h2 {
  text-align: center;
  width: 100%;
  color: #dbdcde;
  margin: 40px;
  font-size: 40px;
}
.page-lessons-gallery .all-enrollments {
  width: 100%;
  text-align: center;
  margin-left: 64px;
  margin-right: 64px;
}
.page-lessons-gallery .all-enrollments .item {
  overflow: hidden;
  margin: 12px 6px;
  flex: 0 0 320px;
  max-width: 320px;
  min-width: 320px;
  background: #fff;
  border-radius: 6px;
  transition: transform 200ms;
  cursor: pointer;
  box-shadow: 0 2px 4px #000;
}
.page-lessons-gallery .all-enrollments .item:hover {
  transform: translateY(-4px);
}
.page-lessons-gallery .all-enrollments .item img {
  width: 320px;
  height: 213px;
}
.page-lessons-gallery .all-enrollments .item h3 {
  height: 20px;
  margin: 16px 0 4px !important;
  padding: 0 16px 12px;
  max-width: 320px;
  white-space: normal;
  font-size: 18px;
  line-height: 20px;
  font-weight: 500;
}
.page-lessons-gallery .all-enrollments .item .pass-rate-bar {
  transition: height 200ms, margin 200ms;
  width: calc(100% - 32px);
  height: 8px;
  background: #dbdcde;
  border-radius: 8px;
  margin: 4px 16px;
  overflow: hidden;
}
.page-lessons-gallery .all-enrollments .item .pass-rate-bar .pass-rate {
  background: #FECA07;
  height: 16px;
  color: transparent;
  font-size: 12px;
  font-weight: bold;
  line-height: 16px;
}
.page-lessons-gallery .all-enrollments .item .cta-container {
  text-align: right;
}
.page-lessons-gallery .all-enrollments .item .cta-container .cta-master {
  background: #FECA07;
  height: 24px;
  line-height: 24px;
  margin: 16px;
}
.page-lessons-gallery .all-enrollments .item .completed-text {
  margin-left: 16px;
  font-size: 12px;
  color: #555;
  font-weight: 700;
}
@media screen and (max-width: 860px) {
  .page-lessons-gallery .all-enrollments {
    margin-left: 0;
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .page-lessons-gallery .all-enrollments .item {
    flex: 0 0 320px;
    max-width: 320px;
    min-width: 320px;
  }
  .page-lessons-gallery .all-enrollments .item img {
    width: 320px;
    height: 213px;
  }
}

.video-popup-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.9333333333);
  text-align: center;
  z-index: 50;
  animation: video-popup-container-opening 400ms cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
@keyframes video-popup-container-opening {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.video-popup-container.hidden {
  display: none;
}
.video-popup-container .video-master-container {
  text-align: left;
  margin: calc(50vh - 270px) auto 0;
  width: 800px;
  height: 540px;
  animation: purchase-form-opening 400ms cubic-bezier(0.1, 0.7, 0.3, 0.9);
}
.video-popup-container .video-master-container .below-video {
  position: relative;
  margin-top: 8px;
  padding-top: 16px;
}
.video-popup-container .video-master-container .below-video .title {
  font-size: 16px;
  text-transform: uppercase;
  color: #fff;
  font-weight: 500;
}
.video-popup-container .video-master-container .below-video .subtitle {
  padding-left: 8px;
  font-size: 16px;
  color: #a7a9ab;
  font-weight: 500;
}
.video-popup-container .video-master-container .below-video .yellow-on-black-cta, .video-popup-container .video-master-container .below-video .page-enrols-gallery .top-image .call-to-action.secondary, .page-enrols-gallery .top-image .video-popup-container .video-master-container .below-video .call-to-action.secondary {
  margin: 0;
  height: 32px;
  line-height: 32px;
  position: absolute;
  right: 0;
  top: 0;
}
@keyframes purchase-form-opening {
  0% {
    transform: translateY(8px);
  }
  100% {
    transform: translateY(0);
  }
}
.video-popup-container .exit-button {
  position: absolute;
  right: 16px;
  top: 16px;
  color: #bbbdc0;
  font-size: 32px;
  cursor: pointer;
}
@media screen and (max-width: 800px) {
  .video-popup-container .video-master-container {
    display: block;
    margin-top: calc(40vh - 28vw);
    width: 100vw;
    height: 100vh;
  }
  .video-popup-container .video-master-container .below-video {
    margin: 16px 24px 0;
  }
  .video-popup-container .video-master-container .below-video .yellow-on-black-cta, .video-popup-container .video-master-container .below-video .page-enrols-gallery .top-image .call-to-action.secondary, .page-enrols-gallery .top-image .video-popup-container .video-master-container .below-video .call-to-action.secondary {
    margin-top: 24px;
    position: unset;
  }
}
@media screen and (max-height: 540px) {
  .video-popup-container .video-master-container {
    margin-top: calc(50vh - 28vw);
    height: 100vh;
  }
}

.toplevel .new-comment .anon-switch {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
  transform: translate(0, 2px);
}
.toplevel .new-comment .anon-switch .anon-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  width: 64px;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 600ms;
  transition: 600ms;
  border-radius: 34px;
}
.toplevel .new-comment .anon-switch .anon-slider:before {
  background-size: contain;
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.3333333333);
  position: absolute;
  content: "";
  text-align: center;
  line-height: 32px;
  height: 32px;
  width: 32px;
  left: 1px;
  bottom: 1px;
  -webkit-transition: transform 400ms;
  transition: transform 400ms;
  border-radius: 50%;
}
.toplevel .new-comment .anon-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.toplevel .new-comment input:not(:checked) + .anon-slider:before {
  background: #fff url(/static/img/anon.svg) center no-repeat;
  background-size: contain;
}
.toplevel .new-comment input:checked + .anon-slider:before {
  -webkit-transform: translateX(30px);
  -ms-transform: translateX(30px);
  transform: translateX(30px);
}
.toplevel .new-desktop-comment {
  display: flex;
}
.toplevel .new-desktop-comment.single-shop img.img-new-comment.anoni {
  left: 16px;
}

.page-single-subject .main section.comments .new-desktop-comment.single-subject .profile-comment {
  margin-left: 16px;
}

.page-shop-subject .center-container .toplevel .new-comment .profile-comment {
  background: #333;
  color: #fff;
}

.page-shop-subject .comments .write-comment.profile-comment {
  margin-left: 16px;
}
.page-shop-subject .comments .write-comment.profile-comment.anon {
  margin-left: 52px;
}

.page-shop-subject .comments .new-desktop-comment.single-subject .profile-comment {
  margin-left: 16px;
}

.page-shop-subject .comments .comment img.img-sub-comment {
  position: relative;
  top: 4px;
}

.page-single-subject .center-container .main .content .text-content img {
  width: 100%;
}

.page-single-blog .comments {
  width: calc(100% - 32px);
  margin: 0 8px;
}
.page-single-blog .comments h2, .page-single-blog .comments h3 {
  text-align: center;
  color: #555;
  font-weight: 400;
}
@media screen and (max-width: 860px) {
  .page-single-blog .center-container .main-text {
    margin: 0;
    width: 100%;
  }
  .page-single-blog .center-container .main-text .description-editor {
    margin: 8px;
    width: calc(100% - 16px);
  }
  .page-single-blog .center-container .main-text .title-comment h3 {
    font-weight: 700;
    border-bottom: 2px solid #dbdcde;
    font-size: 18px;
    padding: 8px;
  }
  .page-single-blog .center-container .main-text .comments {
    width: calc(100% - 32px);
    margin: 16px;
    padding-bottom: 64px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread:not(.hidden) + .toplevel {
    display: none;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment {
    border-top: 1px solid #dbdcde;
    padding-left: 48px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment .exit-button {
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 20px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment img {
    top: 12px;
    position: absolute;
    border-radius: 48px;
    border: 2px solid #dbdcde;
    left: 0;
    width: 28px;
    height: 28px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment .title {
    padding-top: 8px;
    font-size: 14px;
    color: #808284;
    font-weight: 500;
    text-align: left;
    margin-top: 0;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment p {
    margin-top: 4px;
    font-size: 16px;
    margin-bottom: 4px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment .stats {
    color: #808284;
    font-size: 14px;
    padding: 8px 0 16px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment .stats .stat {
    padding: 8px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment .show-children {
    color: #c4151c;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 16px;
    cursor: pointer;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment.selected {
    border: none;
    background-color: #eee;
    padding-bottom: 0;
    padding-left: 72px;
    margin: -20px -16px 16px;
    padding-top: 0;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .comment.selected img {
    width: 32px;
    left: 16px;
    height: 32px;
    top: 12px;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .new-comment {
    position: relative;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .new-comment .img-new-comment {
    position: absolute;
    top: 4px;
    left: 0;
    width: 28px;
    height: 28px;
    border-radius: 48px;
    border: 2px solid #dbdcde;
  }
  .page-single-blog .center-container .main-text .comments .comment-thread .new-comment input {
    padding: 12px 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    width: calc(100% - 88px);
    transition: all 600ms;
    border-radius: 4px;
    background: #eee;
    margin-left: 52px;
  }
  .page-single-blog .center-container .main-text .new-comment.mobile-v {
    position: relative;
  }
  .page-single-blog .center-container .main-text .new-comment.mobile-v .img-new-comment {
    top: 4px;
    left: 0;
  }
  .page-single-blog .center-container .main-text .new-comment.mobile-v .profile-comment {
    padding: 12px 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    width: calc(100% - 88px);
    transition: all 600ms;
    border-radius: 4px;
    background: #eee;
    margin-left: 52px;
  }
}
.page-single-blog .toplevel .new-comment .img-new-comment {
  top: 6px;
  left: 0;
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
}
.page-single-blog .toplevel .desktop-input-answer .flex-input-content {
  display: flex;
}
.page-single-blog .toplevel .desktop-input-answer .flex-input-content .k-proifle {
  width: 32px;
}
.page-single-blog .toplevel .desktop-input-answer .flex-input-content .k-proifle .img-sub-comment {
  top: 4px;
}
.page-single-blog .toplevel .desktop-input-answer .flex-input-content .write-comment {
  padding: 12px 12px;
  margin-bottom: 16px;
  font-size: 16px;
  margin-left: 16px;
  font-weight: 500;
  border: none;
  transition: all 600ms;
  border-radius: 4px;
  background: #eee;
  width: 100%;
}
.page-single-blog .toplevel .new-desktop-comment {
  display: flex;
}
.page-single-blog .toplevel .new-desktop-comment .anoni {
  top: 2px;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
  position: relative;
  margin-top: 4px;
  left: unset !important;
}
.page-single-blog .toplevel .new-desktop-comment label  {
  position: relative;
  display: inline-block;
  width: 64px;
  height: 34px;
  transform: translate(0, 2px);
}
.page-single-blog .toplevel .new-desktop-comment label  input {
  opacity: 0;
  width: 0;
  height: 0;
}
.page-single-blog .toplevel .new-desktop-comment label  span {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 600ms;
  transition: 600ms;
  border-radius: 34px;
}
.page-single-blog .toplevel .new-desktop-comment .profile-comment {
  margin-left: 16px;
  padding: 12px 12px;
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 500;
  border: none;
  width: 100%;
  transition: all 600ms;
  border-radius: 4px;
  background: #eee;
}
.page-single-blog .toplevel .new-desktop-comment .profile-comment::placeholder {
  color: #a7a9ab;
}
.page-single-blog .toplevel .comment {
  position: relative;
  padding-left: 64px;
  border-top: 1px solid #dbdcde;
}
.page-single-blog .toplevel .comment img {
  position: absolute;
  top: 14px;
  left: 0;
  width: 28px;
  height: 28px;
  border-radius: 48px;
  border: 2px solid #dbdcde;
}
.page-single-blog .toplevel .comment .title {
  padding-top: 8px;
  font-size: 14px;
  color: #808284;
  font-weight: 500;
  margin-top: 0;
  text-align: left;
}
.page-single-blog .toplevel .comment p {
  margin-top: 4px;
  font-size: 16px;
  margin-bottom: 4px;
}
.page-single-blog .toplevel .comment .stats {
  color: #808284;
  font-size: 14px;
  padding: 8px 0 16px;
}
.page-single-blog .toplevel .comment .stats .stat {
  padding: 8px;
}
.page-single-blog .toplevel .comment .show-children {
  color: #c4151c;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
  cursor: pointer;
}

.description-editor .banner_border {
  background-color: #fff;
  margin: auto;
  border: 1px solid #efefef;
}
.description-editor .fr-emoticon {
  background-repeat: no-repeat !important;
  padding: 0 12px 0 0;
}
.description-editor p {
  color: #444;
  font-weight: 300;
  line-height: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}
.description-editor p.text_left {
  text-align: left;
}
.description-editor p.text_right {
  text-align: right;
}
.description-editor p.text_middle {
  text-align: center;
}
.description-editor p strong {
  font-weight: 600;
}
.description-editor li {
  color: #444;
  font-weight: 300;
  line-height: 20px;
}
.description-editor li strong {
  font-weight: 600;
}
.description-editor img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.description-editor h3 {
  margin: 48px 0 24px;
  white-space: normal;
  font-weight: 500;
  line-height: 32px;
  font-size: 24px !important;
  color: #ed1c24;
  padding: 0 !important;
}
.description-editor a {
  color: #006c70;
  text-decoration: none;
}
.description-editor a:hover {
  text-decoration: underline;
}
.description-editor .fr-emoticon {
  background-repeat: no-repeat;
  padding: 0 12px 0 0;
}
.description-editor .fas, .description-editor .far {
  font-family: "Font Awesome 5 Pro" !important;
}
.description-editor .section-downloads {
  position: relative;
}
.description-editor .section-downloads .download-delete-button-staff {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3333333333);
  position: absolute;
  top: -8px;
  left: -8px;
  width: 32px;
  z-index: 10;
  height: 32px;
  background: #fff;
  color: #000;
  border-radius: 32px;
  text-align: center;
  line-height: 32px;
  cursor: pointer;
  opacity: 0;
  transition: opacity 300ms, transform 300ms;
}
.description-editor .section-downloads .download-delete-button-staff .fas {
  font-family: "Font Awesome 5 Pro" !important;
  font-weight: 900;
}
.description-editor .section-downloads .item {
  position: relative;
  height: 104px;
  width: 100%;
  cursor: pointer;
  transition: all 500ms cubic-bezier(0.1, 0.7, 0.5, 0.9);
}
.description-editor .section-downloads .item .font-awesome {
  font-family: "Font Awesome 5 Pro" !important;
  text-align: center;
  font-weight: 900;
  height: 100%;
  font-size: 32px;
}
.description-editor .section-downloads .item .icon {
  position: absolute;
  color: #fff;
  background: #c4151c;
  border-radius: 4px;
  left: 8px;
  top: 8px;
  height: 88px;
  width: 88px;
  font-size: 40px;
  line-height: 88px;
  text-align: center;
}
.description-editor .section-downloads .item .title {
  position: absolute;
  font-size: 20px;
  top: 10px;
  left: 104px;
  white-space: nowrap;
  max-lines: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: calc(100% - 96px);
  margin: 0;
}
.description-editor .section-downloads .item .description {
  position: absolute;
  font-size: 14px;
  color: #a7a9ab;
  top: 34px;
  left: 104px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 96px);
}
.description-editor .section-downloads .item .subtitle {
  position: absolute;
  font-size: 14px;
  color: #a7a9ab;
  top: 54px;
  left: 104px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: calc(100% - 96px);
}
.description-editor .cta-button-container {
  margin: auto;
  text-align: center;
  display: block;
}
.description-editor .cta-button-container .cta-button-action {
  position: relative;
  background-color: #ffdd00;
  color: black;
  padding: 10px 20px;
  text-align: center;
  margin: auto;
  font-weight: 900 !important;
  cursor: pointer;
  display: block;
  width: fit-content;
}
.description-editor .cta-button-container .cta-button-action.delete {
  display: none;
}
.description-editor .cta-button-container .cta-button-action.edit {
  display: none;
}
.description-editor .banner-background-img {
  background-position: center;
  width: 300px;
  height: 200px;
  margin: auto;
  background-size: cover !important;
}
.description-editor .cta-button {
  background-color: #ffdd00;
  color: black;
  padding: 10px 20px;
  text-align: center;
  margin: auto;
  font-weight: 900 !important;
  cursor: pointer;
  display: inline-block;
}
.description-editor .no-border {
  border: none !important;
}
.description-editor .fr-video {
  text-align: center;
  display: block;
  clear: both;
}

.cookie-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 400px;
  background: #111;
  color: #fff;
  padding: 16px;
  border-radius: 4px;
  z-index: 9999;
}
@keyframes desktop-dismiss-cookies {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(320px);
    opacity: 0;
  }
}
.cookie-popup.hidden {
  animation: desktop-dismiss-cookies 500ms ease-in forwards;
}
.cookie-popup p {
  font-size: 14px;
}
.cookie-popup .headline {
  font-weight: 700;
  margin-top: 0;
  color: #FECA07;
  font-size: 18px;
}
.cookie-popup .buttons {
  text-align: right;
}
.cookie-popup .buttons a {
  color: #FECA07;
  padding: 8px 16px;
}
.cookie-popup .buttons .ok {
  cursor: pointer;
  background: #FECA07;
  color: #000;
  padding: 8px 24px;
  display: inline-block;
  border-radius: 4px;
}

.page-error h1 {
  padding: 40px 24px 64px;
  font-size: 28px;
  line-height: 32px;
  background: #fff;
  font-weight: 300;
  color: #000;
  margin-bottom: 0;
}
.page-error .center-container {
  text-align: center;
}
.page-error .center-container .container {
  color: #000;
  max-width: 800px;
  width: 100vw;
  display: inline-block;
  margin: auto;
  line-height: 22px;
  padding: 0 24px;
  text-align: center;
}
.page-error .center-container .container img {
  width: 200px;
}
.page-error .center-container .container a, .page-error .center-container .container .linkalike {
  display: inline-block;
  cursor: pointer;
  color: #006c70;
  text-decoration: none;
  font-weight: 700;
}

.footer {
  background: #111;
  color: #bbb;
  margin: 0;
  padding: 16px;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
}
.footer .center-container > div {
  display: inline-block;
  padding: 40px;
  padding-right: 80px;
}
.footer a {
  color: #bbb;
  text-decoration: none;
}
.footer a:hover {
  text-decoration: underline;
}
.footer a.yellow {
  color: #FECA07;
}
.footer a.social-link {
  font-size: 24px;
}
.footer a.social-link:hover {
  color: #FECA07;
}

@media screen and (max-width: 860px) {
  .description-editor {
    box-sizing: border-box;
    padding: 16px;
  }
  .description-editor .fr-video iframe {
    width: calc(100vw - 32px) !important;
    height: auto !important;
  }
  .center-container .toplevel .new-comment {
    display: flex;
    position: relative;
  }
  .center-container .toplevel .new-comment .profile-comment {
    padding: 12px 12px;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    border: none;
    width: calc(100% - 88px);
    transition: all 600ms;
    border-radius: 4px;
    background: #eee;
    margin-left: 16px !important;
  }
  .center-container .toplevel .new-comment .profile-comment.anon {
    margin-left: 52px !important;
  }
  .floating-input .write-comment.profile-comment {
    width: calc(100% - 95px);
    margin-right: 16px;
    padding-right: 0;
    margin-left: 64px;
  }
  .comment-overlay {
    position: fixed;
    display: none;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: transparent;
    cursor: pointer;
    z-index: -1;
    transition: color 200ms, z-index 200ms;
  }
  .comment-overlay.shown {
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.5);
    display: block;
  }
  .cookie-popup {
    right: 0;
    left: 0;
    top: 0;
    bottom: unset;
    width: unset;
    border-radius: 0;
  }
  @keyframes mobile-dismiss-cookies {
    0% {
      transform: translateY(0);
      opacity: 1;
    }
    100% {
      transform: translateY(-80px);
      opacity: 0;
    }
  }
  .cookie-popup.hidden {
    animation: mobile-dismiss-cookies 500ms ease-in forwards;
  }
  .footer {
    padding-bottom: 80px;
  }
  .footer .hide-mobile {
    display: none !important;
  }
}
.page-contact .info-message {
  position: relative;
}
.page-contact .info-message img {
  position: absolute;
  left: 16px;
  bottom: 0;
  width: 48px;
  height: 48px;
  border-radius: 32px;
  border: 2px solid #555;
}
.page-contact .info-message .info-text {
  margin-left: 80px;
  width: calc(90% - 96px);
  font-weight: 300;
  padding: 16px;
  color: #555;
  background: #ececec;
  border-radius: 6px;
  line-height: 20px;
}

.instagram-posts {
  max-width: 960px;
  margin: 120px auto;
  display: flex;
  flex-wrap: wrap;
  justify-items: stretch;
  flex-flow: row wrap;
}
.instagram-posts .img {
  flex: 1 0 30%;
  height: auto;
  box-sizing: border-box;
  cursor: pointer;
  margin: 5px;
}
.instagram-posts .img.large {
  flex: 1 0 calc(100% - 10px);
}
.instagram-posts .img:before {
  content: "";
  float: left;
  padding-top: 100%;
}
.instagram-posts .img-padding {
  flex: 1 0 30%;
  height: 1px;
  box-sizing: border-box;
  cursor: pointer;
  margin: 5px;
}

@media screen and (max-width: 1280px) {
  .instagram-posts {
    margin: 64px auto;
  }
}
@media screen and (max-width: 640px) {
  .instagram-posts .img, .instagram-posts .img-padding {
    flex: 1 0 40%;
  }
}
#email_input_r, #subject_select_input_r, #purchase_term_select_r {
  transition: border 200ms;
}

#email_input_r.error, #subject_select_input_r.error, #purchase_term_select_r.error {
  border: 1px solid red;
}

/*# sourceMappingURL=public.css.map */
