@charset "UTF-8";

/**
 *
 * Template: Partners Portal
 *
 */

/* Utils */

/**
 *
 * Variables
 *
 */

:root {
  --color-dark: #1F2130;
  --color-darkblue: #0E1E75;
  --color-lightblue: #12289F;
  --color-green: #02FFCA;
  --color-darkgreen: #0AE2B5;
  --color-lightgreen: #EFF9FC;
  --color-cyan: #128FAA;
  --color-lightgrey: #EFF3FC;
  --color-darkgrey: #D1D5E6;
  --font-inter: 'Inter', sans-serif;
  --font-ubuntu: 'Ubuntu', sans-serif;
}

/**
 *
 * Sections general styling
 *
 */

.sections {
  --text-color: var(--color-dark);
}

.sections__title {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 42px;
  line-height: 1.21;
  letter-spacing: -0.04em;
  color: var(--color-darkblue);
}

.sections__subtitle {
  margin-top: 0;
  margin-bottom: 0;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.21;
  letter-spacing: -0.04em;
  color: var(--color-darkblue);
}

.sections__text,
.sections__textSmall {
  word-break: break-word;
}

.sections__text p,
.sections__textSmall p {
  margin-top: 0;
  margin-bottom: 0;
}

.sections__text p:not(:last-child),
.sections__textSmall p:not(:last-child) {
  margin-bottom: 20px;
}

.sections__text a,
.sections__textSmall a {
  color: var(--color-cyan);
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
     -moz-text-decoration-color: transparent;
          text-decoration-color: transparent;
}

.sections__text a:hover,
.sections__textSmall a:hover {
  -webkit-text-decoration-color: var(--color-cyan);
     -moz-text-decoration-color: var(--color-cyan);
          text-decoration-color: var(--color-cyan);
}

.sections__text ol,
.sections__textSmall ol {
  padding-left: 1.5em;
}

.sections__text ul,
.sections__textSmall ul {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.sections__text ul li,
.sections__textSmall ul li {
  padding-left: 27px;
  position: relative;
}

.sections__text ul li:before,
.sections__textSmall ul li:before {
  content: '•';
  position: absolute;
  top: 0;
  left: 10px;
}

.sections__text,
.sections__textSmall,
.sections__text p,
.sections__textSmall p,
.sections__text li,
.sections__textSmall li {
  font-family: "Ubuntu", sans-serif;
  font-weight: normal;
  font-size: 18px;
  line-height: 1.56;
  color: var(--text-color);
}

.sections__text li:not(:last-child),
.sections__textSmall li:not(:last-child) {
  margin-bottom: 8px;
}

.sections__textSmall p {
  font-size: 14px;
  line-height: 1.72;
}

.partnersPortal-loggedInOnly {
  display: none;
}

.partnersPortal-login {
  padding: 15px;
  max-width: 600px;
  margin: 50px auto;
}

.partnersPortal-login .form-block__field:not(:last-child) {
  margin-bottom: 25px;
}

.partnersPortal-login__title {
  text-align: center;
  margin-top: 0;
}

.partnersPortal-login__form {
  position: relative;
}

.partnersPortal-login__form:before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  background-color: rgba(255, 255, 255, 0.5);
  z-index: 1;
  -webkit-transition: .25s;
  -o-transition: .25s;
  -moz-transition: .25s;
  transition: .25s;
  opacity: 0;
  pointer-events: none;
}

.partnersPortal-login__form:after {
  content: '';
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-top: -25px;
  margin-left: -25px;
  width: 50px;
  height: 50px;
  -webkit-animation: spin 1s linear infinite;
     -moz-animation: spin 1s linear infinite;
          animation: spin 1s linear infinite;
  background-image: url(../images/templates/partnersPortal/loader.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  z-index: 2;
  -webkit-transition: .25s;
  -o-transition: .25s;
  -moz-transition: .25s;
  transition: .25s;
  opacity: 0;
  pointer-events: none;
}

.partnersPortal-login__form.is-loading:before {
  opacity: 1;
  pointer-events: auto;
}

.partnersPortal-login__form.is-loading:after {
  opacity: 1;
  pointer-events: auto;
}

.partnersPortal-login__error {
  display: none;
  color: #dc3232;
  margin-top: 10px;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-moz-keyframes spin {
  0% {
    -moz-transform: rotate(0deg);
         transform: rotate(0deg);
  }

  100% {
    -moz-transform: rotate(360deg);
         transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
       -moz-transform: rotate(0deg);
            transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
       -moz-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@media (max-width: 991px) {
  .sections__title {
    font-size: 36px;
  }
}

@media (max-width: 767px) {
  .sections__title {
    font-size: 32px;
  }

  .partnersPortal-login {
    margin: 30px auto;
  }
}