/* basic */
html {
  overflow-x: hidden !important;
}

body {
  max-width: 100%;
  overflow-x: hidden !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-kerning: none;
  -webkit-text-rendering: optimizeSpeed;
  text-rendering: optimizeSpeed;
}

* {
  box-sizing: border-box;
  margin: 0px;
  padding: 0px;
  outline: none;
  border: 0px;
}

a {
  text-decoration: none;
}

img {
  aspect-ratio: attr(width) / attr(height)
}

::selection {
  background-color: var(--bittersweet);
  color: var(--white);
}

/* bootstrap grid  */
/* sm ≥576px */
@media (max-width: 576px) {
.container {
  padding-right: 24px;
  padding-left: 24px;
}
}


/* variable */
:root {
  --beauty-bush: #F6C6BC;
  --bittersweet: #F76B54;
  --bridesmaid: #FCECE9;
  --jacksons-purple: #321D95;
  --midnight-blue: #201360;
  --moody-blue: #8186F1;
  --stratos: #0A064C;
  --white: #FFFFFF;
}

/* mouse follower text */
.mf-cursor:before {
  background-color: var(--bittersweet) !important;
}

.mf-cursor-text {
  font-family: 'Satoshi' !important;
  font-style: normal !important;
  font-weight: 900 !important;
  color: var(--white) !important;
  font-size: 1rem !important;
  line-height: 1rem !important;
}

/* list */
ul {
  margin-top: 20px;
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 400;
  font-size: 1.375em;
  line-height: 1.938rem;
  color: var(--stratos);
}

/* container fix */
@media (min-width: 1700px) and (max-width: 2560px) {
  .container-xxl {
    max-width: 1440px;
  }
}

@media (min-width: 992px) and (max-width: 1440px) {
  .container-lg-fix {
    max-width: 90%;
  }
}

/* row fix */
@media (min-width: 992px) and (max-width: 1200px) {
  .row-md-fix {
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* image */
.img-fluid {
  width: 100%;
  height: auto;
}

.img-border {
  border-radius: 60px;
}

/* text color */
.txt-stratos {
  color: var(--stratos);
}

.txt-bridesmaid {
  color: var(--bridesmaid);
}

/* background */
.bg-bridesmaid {
  background-color: var(--bridesmaid);
}

.bg-midnight-blue {
  background-color: var(--midnight-blue);
}

.bg-white {
  background-color: var(--white);
}

/* margin */
.mt120 {
  margin-top: 120px;
}

.mt80 {
  margin-top: 80px;
}

.mt60 {
  margin-top: 60px;
}

.mt40 {
  margin-top: 40px;
}

.mt30 {
  margin-top: 30px;
}

.mt20 {
  margin-top: 20px;
}

@media (max-width: 992px) {
  .mt80-lg-down {
    margin-top: 80px;
  }

  .mt60-lg-down {
    margin-top: 60px;
  }
}

@media (max-width: 768px) {
  .mt80-md-down {
    margin-top: 80px;
  }
}

@media (max-width: 576px) {
  .mt30-sm-down {
    margin-top: 30px;
  }
}

/* section */
.no-hero {
  padding-top: 220px;
}

.mt-60-section {
  margin-top: -60px;
}

.pt160-section {
  padding-top: 160px;
}

.pb160-section {
  padding-bottom: 160px;
}

.pb220-section {
  padding-bottom: 220px;
}

.rt60-section {
  border-radius: 60px 60px 0 0;
}

.r60-section {
  border-radius: 60px;
}

@media (max-width: 992px) {
  .pt160-section {
    padding-top: 120px;
  }

  .pb160-section {
    padding-bottom: 120px;
  }

  .pb220-section {
    padding-bottom: 180px;
  }
}

@media (max-width: 768px) {
  .pt160-section {
    padding-top: 60px;
  }

  .pb160-section {
    padding-bottom: 60px;
  }

  .pb220-section {
    padding-bottom: 120px;
  }
}

@media (max-width: 576px) {
  .rt60-section {
    border-radius: 30px 30px 0 0;
  }

  .r60-section {
    border-radius: 30px;
  }
}

/* headlines */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Satoshi';
  margin: 0;
}

.h-hero {
  font-weight: 900;
  font-size: 4.5rem;
  line-height: 4.75rem;
}

.h-primary {
  font-weight: 900;
  font-size: 3.625rem;
  line-height: 4rem;
}

.h-secondary {
  font-weight: 900;
  font-size: 2.375rem;
  line-height: 3.125rem;
}

.h-tertiary {
  font-weight: 700;
  font-size: 1.75rem;
  line-height: 2.25rem;
}

@media (max-width: 576px) {
  .h-hero {
    font-size: 3.625rem;
    line-height: 4rem;
  }

  .h-primary {
    font-size: 2.375rem;
    line-height: 2.75rem;
  }

  .h-secondary {
    font-size: 1.75rem;
    line-height: 2.1rem;
  }

  .h-tertiary {
    font-size: 1.438rem;
    line-height: 1.625rem;
  }
}

/* paragraph */
p {
  margin: 0;
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 400;
}

.p-lg {
  font-size: 1.75rem;
  line-height: 2.375rem;
}

.p-md {
  font-size: 1.625rem;
  line-height: 2.188rem;
}

.p-sm {
  font-size: 1.375em;
  line-height: 1.938rem;
}

.p-xs {
  font-size: 1.125rem;
  line-height: 1.5rem;
}

.p-opacity {
  opacity: 0.7;
}

@media (max-width: 576px) {
  .p-lg {
    font-size: 1.625rem;
    line-height: 2.188rem;
  }

  .p-md {
    font-size: 1.375em;
    line-height: 1.9rem;
  }

  .p-sm {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
}

/* formatting */
.center {
  text-align: center;
}

/* loading */
#loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--stratos);
  z-index: 1000;
}

#loading div {
  min-height: 100%;
  height: 100vh;
}

#loading div #signet {
  opacity: 0;
}

/* Prevent scrolling while loading animation is playing */
body.loading-active {
  height: 90vh !important;
  overflow: hidden;
}

/* navigation */
#logo {
  margin-top: 4px;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
}

nav .nav-link {
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 700;
  font-size: 1.25rem;
  line-height: 1.25rem;
  color: var(--stratos);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

nav .nav-link:hover {
  color: var(--bittersweet);
}

nav .nav-link.active {
  color: var(--bittersweet);
}

.nav-menu {
  display: flex;
  gap: 1.5rem;
}

@media (max-width: 1200px) {
  .nav-menu {
    display: flex;
    gap: 1.3rem;
  }
}

@media (max-width: 992px) {
  .nav-menu {
    flex-direction: column;
    z-index: -1;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: var(--bridesmaid);
    width: 100%;
    height: 100%;
    text-align: center;
    align-items: center;
    -webkit-transition: all 1s cubic-bezier(1, 0, 0, 1);
    transition: all 1s cubic-bezier(1, 0, 0, 1);
    padding: 30% 0 30% 0;
    gap: 1.5rem;
    justify-content: center;
  }

  .nav-menu.active {
    top: 0;
    left: 0;
  }

  .nav-link {
    font-size: 2.25rem !important;
    line-height: 2.25rem !important;
    font-weight: 900 !important;
  }
}

/* burger menu */
.hamburger {
  display: none;
}

@media (max-width: 992px) {
  .hamburger-alignment {
    display: flex;
    justify-content: end;
    align-items: center;
  }

  button {
    background: none !important;
  }

  .hamburger {
    display: flex;
    position: fixed;
    cursor: pointer;
    height: 50px;
    width: 24px;
    z-index: 1;
  }

  .hamburger span {
    position: absolute;
    width: 24px;
    height: 2px;
    left: 50%;
    background: var(--stratos);
    border-radius: 2px;
    overflow: hidden;
    transition: all 0.3s linear;
    top: 50%;
  }

  .hamburger span:nth-child(1) {
    animation: span-first-off 0.5s ease-in-out;
    animation-fill-mode: forwards;
  }

  .hamburger span:nth-child(2) {
    display: none;
  }

  .hamburger span:nth-child(3) {
    animation: span-third-off 0.5s ease-in-out;
    animation-fill-mode: forwards;
  }

  .hamburger.active:hover span::before {
    width: 100%;
    transition: all 0.3s linear;
  }

  .hamburger.active span:nth-child(1) {
    animation: span-first-on 0.5s ease-in-out;
    animation-fill-mode: forwards;
  }

  .hamburger.active span:nth-child(2) {
    animation: span-second-on 0.5s ease-in-out;
    animation-fill-mode: forwards;
  }

  .hamburger.active span:nth-child(3) {
    animation: span-third-on 0.5s ease-in-out;
    animation-fill-mode: forwards;
  }

  @keyframes span-first-on {
    0% {
      transform: translate(-50%, -300%);
    }

    30% {
      transform: translate(-50%, -50%);
    }

    100% {
      transform: translate(-50%, -50%) rotate(-45deg);
    }
  }

  @keyframes span-first-off {
    0% {
      transform: translate(-50%, -50%) rotate(-45deg);
    }

    30% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, -300%);
    }
  }

  @keyframes span-second-on {
    0% {
      transform: translate(-50%, -50%);
    }

    25% {
      background: var(--stratos);
    }

    50% {
      transform: translate(-50%, -50%) scale(1);
    }

    100% {
      transform: translate(-150%, -50%) scale(0);
    }
  }

  @keyframes span-second-off {
    0% {
      transform: translate(-150%, -50%) scale(0);
    }

    25% {
      background: var(--stratos);
    }

    50% {
      transform: translate(-50%, -50%) scale(1);
    }

    100% {
      transform: translate(-50%, -50%);
    }
  }

  @keyframes span-third-on {
    0% {
      transform: translate(-50%, 200%);
    }

    30% {
      transform: translate(-50%, -50%);
    }

    100% {
      transform: translate(-50%, -50%) rotate(45deg);
    }
  }

  @keyframes span-third-off {
    0% {
      transform: translate(-50%, -50%) rotate(45deg);
    }

    30% {
      transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
      transform: translate(-50%, 200%);
    }
  }
}

/* nav shrink */
.shrink {
  margin: 70px 0 0 0;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.nav-shrink {
  margin: 10px 0 0 0;
  padding: 20px;
  background-color: var(--beauty-bush);
  border-radius: 16px;
}

@media (max-width: 1200px) {
  .shrink {
    margin: 40px 0 0 0;
  }

  .nav-shrink {
    margin: 10px 0 0 0;
  }
}

/* hero */
#hero {
  background-color: var(--beauty-bush);
  height: 96vh;
  margin: 20px;
  border-radius: 60px;
}

#hero .container {
  height: inherit;
}

#hero .icon-heart {
  position: absolute;
  left: 4%;
  top: 24%;
  transform: rotate(-10deg);
  width: 88px;
  height: 88px;
}

#hero .icon-map {
  position: absolute;
  right: 0%;
  bottom: 18%;
  transform: rotate(10deg);
  width: 88px;
  height: 88px;
}

#hero .icon-moon {
  position: absolute;
  left: 20%;
  bottom: 0%;
  width: 68px;
  height: 68px;
  transform: rotate(10deg);
}

@media (max-width: 1200px) {
  #hero {
    height: 100vh;
    margin: 0;
    border-radius: 0 0 60px 60px;
  }
}

@media (max-width: 992px) {
  #hero {
    height: auto;
    margin: 0;
    padding: 120px 0 120px 0;
  }
}

@media (max-width: 576px) {
  #hero {
    border-radius: 0 0 30px 30px;
    padding: 120px 0 60px 0;
  }

  #hero .icon-heart {
    width: 62px;
    height: 62px;
  }

  #hero .icon-map {
    right: 4%;
    width: 62px;
    height: 62px;
  }

  #hero .icon-moon {
    width: 62px;
    height: 62px;
  }
}

@media (min-width: 992px) {
  #hero .row {
    height: 96vh;
  }
}

/* animation */
#animation .card {
  background-color: var(--bridesmaid);
  width: 100%;
  height: 340px;
}

#animation .graphic-line {
  position: absolute;
  top: 29%;
  left: 16%;
  z-index: 10;
}

#animation .graphic-dots {
  position: absolute;
  top: 29%;
  left: 16%;
  z-index: 9;
}

#animation .icon-start {
  position: absolute;
  z-index: 11;
  left: 9%;
  bottom: 16%;
  transform: rotate(-10deg);
}

#animation .icon-scent-one {
  position: absolute;
  z-index: 12;
  left: 35.5%;
  top: 22%;
}

#animation .icon-scent-two {
  position: absolute;
  z-index: 13;
  right: 34%;
  bottom: 38%;
}

@media (max-width: 1200px) and (min-width: 1050px) {
  #animation .icon-scent-two {
    bottom: 34%;
  }
}

@media (max-width: 1050px) and (min-width: 992px) {
  #animation .icon-scent-two {
    bottom: 46%;
  }
}

#animation .icon-home {
  position: absolute;
  z-index: 14;
  right: 8%;
  top: 20%;
  height: 88px;
  width: 88px;
  transform: rotate(10deg);
}

@media (max-width: 1200px) {
  #animation .container {
    max-width: 100%;
    padding: 0;
  }
}

@media (max-width: 992px) {
  #animation .card {
    display: none;
  }
}

@media (min-width: 992px) {
  #animation .graphic-animation {
    display: none;
  }
}

@media (max-width: 576px) {
  #animation .graphic-animation {
    display: none;
  }
}

/* checklist */
#checklist {
  margin-top: -170px;
  padding-top: 320px;
}

#checklist .remark img {
  margin-right: 20px;
}

#checklist .checkbox-card {
  background-color: var(--jacksons-purple);
  border-radius: 13px;
  margin-top: 10px;
  padding: 10px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#checklist .checkbox-card.active,
#checklist .checkbox-card:hover {
  background-color: var(--stratos);
}

#checklist .checklist-name {
  width: 75%;
}

#checklist .checklist-checkbox {
  width: 25%;
}

#checklist .checkbox-card p {
  font-weight: 700;
  margin-left: 20px;
  line-height: 1.875rem;
  width: 74%;
}

@media (max-width: 576px) {
  #checklist {
    margin-top: 0;
    padding-top: 60px;
  }

  #checklist .checkbox-card p {
    font-size: 1.438rem;
    line-height: 1.625rem;
    width: 74%;
  }
}

/* checkbox */
input[type='checkbox'] {
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 100px;
  background-color: var(--moody-blue);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.checkbox-card.active input[type='checkbox'] {
  background-image: url("/src/img/icon-checkbox.svg");
  background-size: 68px 68px;
  background-position: center center;
  background-repeat: no-repeat;
  animation: 400ms linear checkbox-pop;
}

@keyframes checkbox-pop {
  0% {
    transform: scale(1);
  }

  33% {
    transform: scale(0.9);
  }

  66% {
    transform: scale(1.1);
  }

  100% {
    transform: scale(1);
  }
}

/* note */
.note {
  background-color: var(--moody-blue);
  border-radius: 16px;
  padding: 20px 28px;
}

/* button */
.btn {
  position: relative;
  display: inline-block;
  font-family: 'Satoshi';
  font-size: 1.125rem;
  line-height: 1.125rem;
  font-weight: 900;
  background: none;
  padding: 0;
  border-radius: 16px;
}

.btn::before,
.btn::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.btn .btn-bg {
  top: 0;
  left: 0;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
}

.btn:hover .btn-bg {
  transform: scale3d(1, 1, 1);
}

.btn .btn-bg::before,
.btn .btn-bg::after {
  content: '';
  position: absolute;
}

.btn .btn-bg::before {
  width: 110%;
  height: 0;
  padding-bottom: 110%;
  top: 50%;
  left: 50%;
  border-radius: 200px;
  transform: translate3d(-50%, -50%, 0) scale3d(0, 0, 1);
}

.btn:hover .btn-bg::before {
  transition: transform 0.4s cubic-bezier(0.1, 0, 0.3, 1);
  transform: translate3d(-50%, -50%, 0) scale3d(1, 1, 1);
}

.btn .btn-bg::after {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s;
}

.btn:hover .btn-bg::after {
  opacity: 1;
  transition-duration: 0.01s;
  transition-delay: 0.3s;
}

.btn span {
  display: block;
  position: relative;
  padding: 25px 40px;
}

/* button primary */
.btn-primary {
  background: var(--bittersweet);
}

.btn-primary .btn-bg {
  background: var(--bittersweet);
}

.btn-primary span {
  color: var(--stratos);
}

.btn-primary:hover span {
  color: var(--white);
}

.btn-primary .btn-bg::before,
.btn-primary .btn-bg::after {
  background: var(--stratos);
}

/* button secondary */
.btn-secondary {
  background: rgba(0, 0, 0, 0);
  border: 2px solid var(--bridesmaid);
}

.btn-secondary:hover {
  border: 2px solid var(--bittersweet);
}

.btn-secondary .btn-bg {
  background: rgba(0, 0, 0, 0) !important;
}

.btn-secondary span {
  color: var(--bridesmaid);
}

.btn-secondary:hover span {
  color: var(--bridesmaid);
}

.btn-secondary .btn-bg::before,
.btn-secondary .btn-bg::after {
  background: var(--bittersweet);
}

/* quicklink */
.quicklink {
  margin: 0;
  padding: 0;
  font-family: 'Satoshi';
  font-style: normal;
  font-weight: 700;
  display: block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.quicklink:hover {
  color: var(--bittersweet);
}

/* card */
.card {
  border-radius: 60px;
}

@media (max-width: 576px) {
  .card {
    border-radius: 30px;
  }
}

/* horizontal scroll */
.horizontal-scoll-wrapper {
  height: 525px;
  overflow: hidden;
}

.horizontal {
  display: flex;
  height: 100%;
}

.horizontal>div {
  display: flex;
  flex-shrink: 0;
  padding: 0 5px;
}

.horizontal>div:first-child {
  padding: 0 5px 0 15px;
}

.horizontal>div:last-child {
  padding: 0 15px 0 5px;
}

.horizontal .card {
  padding: 50px 40px;
  align-items: stretch;
  width: 540px;
}

.horizontal .card img:first-of-type {
  margin-right: 10px;
}

@media (min-width: 1700px) {
  .horizontal .card {
    width: 700px;
  }
}

@media (max-width: 992px) {
  .horizontal-scoll-wrapper {
    height: auto;
  }

  .horizontal {
    display: block;
    height: auto;
  }

  .horizontal .card {
    width: 100%;
  }

  .horizontal>div {
    padding: 10px 15px;
  }

  .horizontal>div:first-child {
    padding: 10px 15px;
  }

  .horizontal>div:last-child {
    padding: 10px 15px;
  }
}

@media (max-width: 576px) {
  .horizontal .card {
    padding: 40px 25px;
  }
}

/* procedure */
#procedure {
  position: relative;
}

#procedure .procedure-icon-shoe {
  position: absolute;
  top: 8%;
  right: 20%;
  transform: rotate(-10deg);
  width: 88px;
  height: 88px;
}

#procedure .procedure-icon-moon {
  position: absolute;
  top: 48%;
  right: 0%;
  transform: rotate(-10deg);
  width: 68px;
  height: 68px;
}

#procedure .procedure-icon-map {
  position: absolute;
  top: 66%;
  left: 40%;
  transform: rotate(10deg);
  width: 68px;
  height: 68px;
}

@media (max-width: 992px) {
  #procedure .procedure-icons {
    height: 130px;
  }

  #procedure .procedure-icon-shoe {
    top: 0;
    right: calc(50% - 44px);
  }

  #procedure .procedure-icon-moon {
    top: 30%;
    right: 30%;
  }

  #procedure .procedure-icon-map {
    top: 60%;
    left: 31%;
  }
}

@media (max-width: 574px) {
  #procedure .procedure-icon-moon {
    top: 45%;
    right: 25%;
  }

  #procedure .procedure-icon-map {
    top: 60%;
    left: 28%;
  }
}

.step {
  margin: 10px 15px;
}

.step img {
  border-radius: 40px;
}

@media (min-width: 992px) {
  .step {
    background-color: var(--midnight-blue);
    border-radius: 60px;
    padding: 50px 40px;
    margin: 10px 20px;
  }
}

@media (max-width: 992px) {
  .step .row {
    background-color: var(--midnight-blue);
    border-radius: 60px;
    padding: 50px 40px 80px 40px;
  }
}

@media (max-width: 576px) {
  .step .row {
    padding: 30px 15px 50px 15px;
    border-radius: 30px;
  }

  .step img {
    border-radius: 20px;
  }
}

/* about */
#about .portrait-torvi {
  transform: rotate(3deg);
}

#about .icn {
  width: 48px;
  height: 48px;
  transform: rotate(-10deg);
  display: block;
}

#about .icn:nth-child(2n) {
  transform: rotate(10deg);
}

#about .icn-left .icn:nth-child(1) {
  margin: 0 0 0 68px
}

#about .icn-left .icn:nth-child(2) {
  margin: 10px 0 0 0;
}

#about .icn-left .icn:nth-child(3) {
  margin: 68px 0 0 40px;
}

#about .icn-left .icn:nth-child(4) {
  margin: 60px 0 0 0
}

#about .icn-left .icn:nth-child(5) {
  margin: 40px 0 0 78px;
}

#about .icn-right .icn:nth-child(1) {
  margin: 0 0 0 30px;
}

#about .icn-right .icn:nth-child(2) {
  margin: 52px 0 0 68px;
}

#about .icn-right .icn:nth-child(3) {
  margin: 54px 0 0 32px;
}

#about .icn-right .icn:nth-child(4) {
  margin: 43px 0 0 58px;
}

#about .icn-right .icn:nth-child(5) {
  margin: 34px 0 0 0;
}

#about .logo path {
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

#about .logo:hover path {
  fill: var(--bittersweet);
}

/* footer reveal */
.footer-reveal {
  background-color: var(--beauty-bush);
}

.reveal-index {
  position: relative;
  z-index: 8;
}

/* footer */
footer {
  padding: 80px 0 40px 0;
  position: relative;
  z-index: 7;
}

@media (max-width: 768px) {
  footer p {
    text-align: center;
  }

  footer .quicklink {
    text-align: center;
  }
}

/* cookiebot fix */
#CybotCookiebotDialogBodyLevelButtonLevelOptinAllowAll {
  background-color: #1032CF !important;
}