
.checkbox__text.disclamer {
  font-size: 14px;
}
.checkbox__text.disclamer a {
  text-decoration: underline;
}
.checkbox__text.disclamer.ai {
  font-size: 11px;
  color: #000;
  font-weight: normal;
  line-height: 19px;
  display: block;
}
.loader-text {
  text-align: center;
  margin-top:20px;
}

#screen-1 {
  display: none;
}
.btn-action {
  display: none;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  padding: 40px 0;
  z-index: 998;
  color: var(--color-black);
  background-color: var(--color-white);
  font-size: 14px;
  font-weight: 400;
  line-height: 25px;
  opacity: 0;
  visibility: hidden;
  box-shadow: 0 -24px 40px rgba(0, 0, 0, 0.07);
  transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.cookie-banner.cookie-not-set {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0s linear;
}
@media only screen and (min-width: 768px) and (max-width: 1022px) {
  .cookie-banner {
      padding: 30px 0;
  }
}
@media only screen and (max-width: 767px) {
  .cookie-banner {
      padding: 20px 0;
  }
}
.cookie-banner .cookie-width {
  display: grid;
  grid-template-columns: 75% 1fr;
  grid-gap: 20px;
}
@media only screen and (min-width: 1200px) {
  .cookie-banner .cookie-width {
      max-width: 1600px;
  }
}
@media only screen and (max-width: 1439px) {
  .cookie-banner .cookie-width {
      grid-template-columns: 70% 1fr;
  }
}
@media only screen and (max-width: 1199px) {
  .cookie-banner .cookie-width {
      grid-template-columns: 1fr;
      justify-items: flex-start;
  }
}
.cookie-banner__button {
  display: grid;
  grid-gap: 15px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: flex-start;
}
@media only screen and (max-width: 1199px) {
  .cookie-banner__button {
      justify-items: flex-start;
  }
}
@media only screen and (max-width: 767px) {
  .cookie-banner__button {
      grid-template-columns: 1fr;
      justify-items: initial;
      width: 100%;
  }
}

.cookie-banner .btn {
  min-width: 152px;
  min-height: 48px;
}

.cookie-banner__button {
  margin-left: 0px;
}

/* loader */
.lds-roller {
  display: none;
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  margin-top: 20%;
  opacity: 1 !important;
}
body.loading .lds-roller {
  display: block;
}
.lds-roller * {
  opacity: 1 !important;
}
.lds-roller div {
  animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  transform-origin: 40px 40px;
}
.lds-roller div:after {
  content: " ";
  display: block;
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #d6ad68;
  margin: -4px 0 0 -4px;
}
.lds-roller div:nth-child(1) {
  animation-delay: -0.036s;
}
.lds-roller div:nth-child(1):after {
  top: 63px;
  left: 63px;
}
.lds-roller div:nth-child(2) {
  animation-delay: -0.072s;
}
.lds-roller div:nth-child(2):after {
  top: 68px;
  left: 56px;
}
.lds-roller div:nth-child(3) {
  animation-delay: -0.108s;
}
.lds-roller div:nth-child(3):after {
  top: 71px;
  left: 48px;
}
.lds-roller div:nth-child(4) {
  animation-delay: -0.144s;
}
.lds-roller div:nth-child(4):after {
  top: 72px;
  left: 40px;
}
.lds-roller div:nth-child(5) {
  animation-delay: -0.18s;
}
.lds-roller div:nth-child(5):after {
  top: 71px;
  left: 32px;
}
.lds-roller div:nth-child(6) {
  animation-delay: -0.216s;
}
.lds-roller div:nth-child(6):after {
  top: 68px;
  left: 24px;
}
.lds-roller div:nth-child(7) {
  animation-delay: -0.252s;
}
.lds-roller div:nth-child(7):after {
  top: 63px;
  left: 17px;
}
.lds-roller div:nth-child(8) {
  animation-delay: -0.288s;
}
.lds-roller div:nth-child(8):after {
  top: 56px;
  left: 12px;
}
@keyframes lds-roller {
  0% {
      transform: rotate(0deg);
  }
  100% {
      transform: rotate(360deg);
  }
}


.hero-banner__table {
  font-weight: normal;
  color: #000000;
  font-size: 17px;
  line-height: 1.5em;
}

.loader-text {
  color: #004990;
  font-size: 18px;
  font-weight: 700;
}

.hero-banner__content .desktop {
  margin: 40px 0 -20px 0;
}
.hero-banner__content .mobile {
  display: none;
  margin: 40px 0 -20px 0;
  width: 100%;
}

@media only screen and (max-width: 767px) {
  .hero-banner__content .desktop {
    display: none;
  }

  .hero-banner__content .mobile {
    display: block;
  }
}