@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
::-webkit-scrollbar {
  width: 12px; /* for vertical scrollbars */
  height: 12px; /* for horizontal scrollbars */
  z-index: 200;
}

::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.1);
  z-index: 200;
}

::-webkit-scrollbar-thumb {
  background: #c42957;
  z-index: 200;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

button {
  background-color: #c42957;
  border: none;
  outline: none;
  padding: 15px 25px;
  border-radius: 30px;
  color: white;
  font-weight: 800;
  transition: all 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  font-size: clamp(1em, 2vw, 1.2em);
  font-weight: 700;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
button:hover {
  background-color: white;
  color: #c42957;
  box-shadow: inset 0 0 0 3px #c42957;
}

header {
  width: 100%;
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: #c42957;
}
header .content {
  max-width: 900px;
  margin: auto;
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}
header .content .logoContainer {
  height: 40px;
}
header .content .logoContainer:not(.mainPageLogo) {
  cursor: pointer;
}
header .content .logoContainer.mainPageLogo {
  pointer-events: none;
}
header .content .logoContainer img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .content .userRegister #userNameWrapper {
  flex-direction: column;
  color: white;
  text-align: right;
  justify-content: flex-end;
  align-items: flex-end;
  display: flex;
}
header .content .userRegister #userNameWrapper.hide {
  display: none;
}
header .content .userRegister #userNameWrapper #userName {
  width: 150px;
  font-size: 1.1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
header .content .userRegister #userNameWrapper #notyou {
  font-size: 0.5em;
  text-decoration: underline;
  cursor: pointer;
}
header .content .userRegister button {
  padding: 7px 15px;
  background-color: white;
  color: #c42957;
  font-size: 10px;
  font-weight: 800;
}
header .content .userRegister button.hide {
  display: none;
}
header .content .userRegister button:hover {
  background-color: #c42957;
  color: white;
  box-shadow: inset 0 0 0 2px white;
}
@media screen and (min-width: 420px) {
  header .content .logoContainer {
    height: 60px;
  }
  header .content .userRegister #userNameWrapper #userName {
    width: clamp(150px, 40vw, 500px);
    font-size: 1.4em;
  }
  header .content .userRegister #userNameWrapper #notyou {
    font-size: 0.7em;
  }
  header .content .userRegister button {
    font-size: 13px;
  }
}

.sublegend {
  font-weight: 900;
  font-size: 1.3em;
  color: #c42957;
  margin: auto;
  background-color: white;
  text-align: center;
  width: 100%;
  padding: 20px;
  text-align: center;
}
.sublegend span {
  white-space: nowrap;
}
@media (min-width: 768px) {
  .sublegend {
    font-size: 1.5em;
    padding-top: 0;
  }
}

.sectionHero {
  width: 100%;
  position: relative;
}
.sectionHero .sectionBackground {
  background-color: white;
  background-image: url("../img/Header_background_mobile.webp");
  background-position: center bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.sectionHero .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 20px 20px 0px 20px;
  text-align: center;
  margin: auto;
  max-width: 500px;
}
.sectionHero .content .heroContent {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.sectionHero .content .heroContent h1 {
  color: white;
  font-size: clamp(2em, 10vw, 3em);
  font-weight: 700;
}
.sectionHero .content .heroContent .legend {
  color: white;
  font-size: 1em;
  font-weight: 400;
  padding: 0 30px;
}
.sectionHero .content img {
  max-width: clamp(300px, 45vw, 450px);
  width: 100%;
  padding: 0px 30px 0px 30px;
  animation: floating 10s ease-in-out infinite alternate;
}
@keyframes floating {
  from {
    translate: 0 -5px;
  }
  to {
    translate: 0 5px;
  }
}
@media screen and (min-width: 768px) {
  .sectionHero .sectionBackground {
    background-image: url("../img/Header_background_desktop.webp");
  }
  .sectionHero .content {
    padding: 50px 20px;
    max-width: 900px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    min-height: 500px;
  }
  .sectionHero .content .heroContent {
    max-width: 400px;
    text-align: left;
  }
  .sectionHero .content .heroContent h1 {
    font-size: clamp(2.8em, 5vw, 3.5em);
  }
  .sectionHero .content .heroContent .legend {
    font-size: 1.2em;
    line-height: 1.5;
    padding: 0;
  }
  .sectionHero .content .heroContent button {
    margin: inherit;
  }
  .sectionHero .content img {
    width: auto;
    height: 100%;
    max-height: 300px;
    padding: 0;
  }
}

.sectionSlider {
  background-color: white;
  padding: 20px clamp(5px, 5vw, 20px);
}
.sectionSlider .content {
  margin: auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.sectionSlider .content .sliderWrapper {
  width: 100%;
  display: flex;
  margin: auto;
  position: relative;
  height: 40vw;
  max-height: 250px;
  padding: 20px clamp(5px, 5vw, 20px);
}
.sectionSlider .content .sliderWrapper:hover button {
  opacity: 1;
}
.sectionSlider .content .sliderWrapper button {
  opacity: 1;
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  z-index: 4;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sectionSlider .content .sliderWrapper button:hover span {
  border-bottom: 20px solid #c42957;
}
.sectionSlider .content .sliderWrapper button:last-of-type {
  left: auto;
  right: 0;
}
.sectionSlider .content .sliderWrapper button:last-of-type span:last-of-type {
  transform: rotate(90deg);
  margin-left: 5px;
}
.sectionSlider .content .sliderWrapper button span {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 15px solid white;
  transform: rotate(-90deg);
  margin-left: -5px;
}
.sectionSlider .content .sliderWrapper .card {
  height: 100%;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 10px;
}
.sectionSlider .content .sliderWrapper .card img {
  border-radius: 10px 10px 0 0;
  height: calc(100% - 25px);
  width: 100%;
  margin-bottom: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  z-index: -1;
}
.sectionSlider .content .sliderWrapper .card video {
  border-radius: 10px 10px 0 0;
  display: none;
  height: 100%;
  width: 100%;
  margin-bottom: 25px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left bottom;
     object-position: left bottom;
}
@media (max-width: 420px) {
  .sectionSlider .content .sliderWrapper .card.showVideo:not(.commingsoon) video {
    display: block;
  }
  .sectionSlider .content .sliderWrapper .card.showVideo:not(.commingsoon) img {
    display: none;
  }
}
.sectionSlider .content .sliderWrapper .card .cardLegend {
  position: absolute;
  bottom: 0;
  display: flex;
  height: 25px;
  width: 100%;
  background-color: #c42957;
  justify-content: space-between;
  align-items: center;
  color: white;
  font-weight: 700;
  padding: 20px;
  font-size: clamp(0.7em, 2vw, 1em);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}
.sectionSlider .content .sliderWrapper .card .cardLegend.comingsoon {
  background-color: rgb(65, 65, 66);
  cursor: default;
}
.sectionSlider .content .sliderWrapper .card .cardLegend:not(.comingsoon) span:last-child {
  width: 10px;
  background-image: url("../img/arrow.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.sectionSlider .content .sliderWrapper .card[data-card="1"] {
  display: flex;
  scale: 0.9;
  position: absolute;
  top: 50%;
  left: 25%;
  z-index: 0;
  translate: -50% -50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5), inset 0 0 5px 0 black;
  transition: z-index 0.2s ease, left 0.2s ease, scale 0.2s ease;
}
.sectionSlider .content .sliderWrapper .card[data-card="2"] {
  scale: 1.1;
  display: flex;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.5), inset 0 0 5px 0 black;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  translate: -50% -50%;
  transition: z-index 0.2s ease, left 0.2s ease, scale 0.2s ease, box-shadow 0.3s ease;
}
.sectionSlider .content .sliderWrapper .card[data-card="3"] {
  display: flex;
  scale: 0.9;
  position: absolute;
  top: 50%;
  left: 75%;
  z-index: 0;
  translate: -50% -50%;
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5), inset 0 0 5px 0 black;
  transition: z-index 0.2s ease, left 0.2s ease, scale 0.2s ease;
}
.sectionSlider .content .sliderWrapper .card:hover {
  cursor: pointer;
}
.sectionSlider .content .sliderWrapper .card:hover:not(.commingsoon) video {
  display: block;
}
@media (min-width: 768px) {
  .sectionSlider .content .sliderWrapper {
    width: 100%;
    gap: 10px;
    justify-content: center;
    display: flex;
    margin: auto;
  }
  .sectionSlider .content .sliderWrapper button {
    opacity: 0;
  }
  .sectionSlider .content .sliderWrapper .card[data-card="1"] {
    display: flex;
    scale: 0.9;
    z-index: 1;
    left: 20%;
  }
  .sectionSlider .content .sliderWrapper .card[data-card="2"] {
    display: flex;
    scale: 1.1;
    z-index: 2;
  }
  .sectionSlider .content .sliderWrapper .card[data-card="3"] {
    display: flex;
    scale: 0.9;
    z-index: 1;
    left: 80%;
  }
}

.sectionHeroGirl {
  position: relative;
  margin-top: 20px;
}
.sectionHeroGirl .sectionBackground {
  background-color: white;
  background-image: url("../img/Hero_Girl_Image_Mobile.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}
.sectionHeroGirl .content {
  padding-top: 80px;
  padding-bottom: 20px;
  margin: auto;
}
.sectionHeroGirl .content .footerContent {
  max-width: 480px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  margin: auto;
  text-align: center;
  padding: 20px;
}
.sectionHeroGirl .content .footerContent h1 {
  font-size: 2em;
  color: white;
}
.sectionHeroGirl .content .footerContent img {
  max-height: 300px;
}
.sectionHeroGirl .content .footerContent ul {
  list-style: none;
  text-align: left;
  width: 100%;
}
.sectionHeroGirl .content .footerContent ul li {
  font-size: 1.3em;
  color: white;
  line-height: 1.4;
}
.sectionHeroGirl .content .footerContent ul li span {
  color: #c42957;
  font-size: 0.7em;
}
.sectionHeroGirl .content .footerContent button {
  margin: inherit;
  margin-top: 20px;
}
.sectionHeroGirl .content .footerImage {
  display: none;
}
@media (min-width: 768px) {
  .sectionHeroGirl {
    margin-top: 0px;
  }
  .sectionHeroGirl .sectionBackground {
    background-image: url("../img/Hero_Girl_Image_Desktop_V2.webp");
  }
  .sectionHeroGirl .content {
    max-width: 900px;
    display: flex;
    align-items: center;
    padding-right: 20px;
  }
  .sectionHeroGirl .content .footerContent {
    text-align: left;
    margin: initial;
    align-items: start;
    gap: 20px;
    padding-bottom: 0;
  }
  .sectionHeroGirl .content .footerContent h1 {
    font-size: 2.5em;
  }
  .sectionHeroGirl .content .footerContent img {
    display: none;
  }
  .sectionHeroGirl .content .footerContent button {
    margin-top: 0px;
  }
  .sectionHeroGirl .content .footerImage {
    display: block;
    height: clamp(300px, 50vw, 500px);
    position: relative;
    overflow: hidden;
    --distance-x: 10px;
    animation: animateSparks 20s linear infinite;
  }
  .sectionHeroGirl .content .footerImage::before {
    content: "";
    z-index: 1;
    width: 2px;
    height: 2px;
    background-color: transparent;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: calc(50% - var(--distance-x));
    translate: -50% -50%;
    box-shadow: calc(var(--distance-x) * 2) 0 5px 2px white, calc(var(--distance-x) * 2) 0 0 rgba(255, 255, 255, 0.75), var(--distance-x) calc(var(--distance-x) * 1.5) 5px 2px white, var(--distance-x) calc(var(--distance-x) * 1.5) 0 rgba(255, 255, 255, 0.75), var(--distance-x) calc(var(--distance-x) * 5) 5px 2px white, calc(var(--distance-x) * 2) calc(var(--distance-x) * -1.5) 5px 2px white, calc(var(--distance-x) * 2) calc(var(--distance-x) * -1.5) 0 rgba(255, 255, 255, 0.75), calc(var(--distance-x) * -2) calc(var(--distance-x) * -1.5) 5px 2px white, calc(var(--distance-x) * -2) calc(var(--distance-x) * -1.5) 0 rgba(255, 255, 255, 0.75), calc(var(--distance-x) * 2) calc(var(--distance-x) * 1.5) 5px 2px white, calc(var(--distance-x) * 2) calc(var(--distance-x) * 1.5) 0 rgba(255, 255, 255, 0.75), calc(var(--distance-x) * -2) calc(var(--distance-x) * 1.5) 5px 2px white, calc(var(--distance-x) * -2) calc(var(--distance-x) * 1.5) 0 rgba(255, 255, 255, 0.75);
    transform-origin: 50px;
    animation: rotateSparks 200s ease infinite alternate;
    transition: all 10s linear;
  }
  @keyframes rotateSparks {
    from {
      rotate: 0deg;
    }
    to {
      rotate: 180deg;
    }
  }
  @keyframes animateSparks {
    from {
      --distance-x: 90px;
    }
    to {
      --distance-x: 110px;
    }
  }
  .sectionHeroGirl .content .footerImage img {
    position: relative;
    height: 100%;
  }
}

footer {
  width: 100%;
  position: sticky;
  z-index: 100;
  top: 0;
  background-color: #c42957;
}
footer .logoContainer .content {
  max-width: 900px;
  margin: auto;
  display: flex;
  padding: 0 20px;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  height: 40px;
}
footer .logoContainer .content img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .footerLegend {
  margin: auto;
  font-size: 0.7em;
  padding: 10px;
  text-align: center;
  background-color: white;
  width: 100%;
}
@media screen and (min-width: 420px) {
  footer .logoContainer .content {
    height: 60px;
  }
}
@media (min-width: 768px) {
  footer .footerLegend {
    text-align: left;
    font-size: 0.8em;
  }
  footer .footerLegend p {
    max-width: 900px;
    margin: auto;
    padding: 0 20px;
  }
}

.popupBackground {
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: all 0.2s ease 0.4s;
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 20px;
}
.popupBackground.active {
  transition: all 0.2s ease;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: inherit;
}
.popupBackground .popupBox {
  position: absolute;
  top: -100%;
  left: 50%;
  translate: -50% -50%;
  width: calc(100% - 30px);
  max-width: 400px;
  min-height: 300px;
  background-color: rgb(24, 204, 204);
  padding: 20px;
  padding-top: 60px;
  padding-bottom: 40px;
  text-align: center;
  color: white;
  transition: all 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.popupBackground .popupBox.active {
  transition: all 0.4s cubic-bezier(0.63, 0.85, 0.78, 1.12) 0.2s;
  top: 50%;
}
.popupBackground .popupBox h2 {
  font-size: 1.5em;
}
.popupBackground .popupBox .disclaimer {
  font-size: 0.8em;
  max-width: 300px;
  margin: auto;
}
.popupBackground .popupBox .disclaimer span {
  text-decoration: underline;
  cursor: pointer;
}
.popupBackground .popupBox .buttonsWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}
.popupBackground .popupBox .buttonsWrapper .loginButton {
  background-color: red;
  width: 100%;
  max-width: 300px;
  height: 40px;
  border-radius: 5px;
  margin: auto;
  cursor: pointer;
  position: relative;
  display: flex;
  gap: 15px;
  justify-content: flex-start;
  align-items: center;
  padding-left: 20px;
  font-weight: 600;
}
.popupBackground .popupBox .buttonsWrapper .loginButton .loginLogoPos {
  height: 25px;
}
.popupBackground .popupBox .buttonsWrapper .loginButton .loginLogoNeg {
  height: 25px;
  display: none;
}
.popupBackground .popupBox .buttonsWrapper .loginButton.googleBtn {
  background-color: #de5246;
}
.popupBackground .popupBox .buttonsWrapper .loginButton.googleBtn iframe {
  cursor: pointer;
}
.popupBackground .popupBox .buttonsWrapper .loginButton.googleBtn .wrapper {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
}
.popupBackground .popupBox .buttonsWrapper .loginButton.facebookBtn {
  background-color: #1877f2;
}
.popupBackground .popupBox .buttonsWrapper .loginButton.twitterBtn {
  background-color: #292f33;
  color: white;
}
.popupBackground .popupBox .buttonsWrapper .loginButton.yahooBtn {
  background-color: #7e1fff;
  color: white;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover {
  background-color: white;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover .loginLogoPos {
  display: none;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover .loginLogoNeg {
  display: block;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover.googleBtn {
  color: #de5246;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover.facebookBtn {
  color: #1877f2;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover.twitterBtn {
  color: #292f33;
}
.popupBackground .popupBox .buttonsWrapper .loginButton:hover.yahooBtn {
  background-color: white;
  color: #7e1fff;
}
.popupBackground .popupBox .closeBtn {
  position: absolute;
  top: 15px;
  right: 15px;
  padding: 0;
  width: 25px;
  height: 25px;
  font-size: 1em;
  line-height: 1.6;
  font-weight: 700;
  cursor: pointer;
}

.sectionTerms {
  background-color: white;
  padding: 20px;
  padding-top: 30px;
}
.sectionTerms .content {
  margin: auto;
  max-width: 900px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.sectionTerms .content .homePageBtn {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 35px;
  aspect-ratio: 1;
  translate: 0 calc(-100% - 15px);
  background-color: rgba(128, 128, 128, 0.2);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
}
.sectionTerms .content h1 {
  margin-bottom: 15px;
  text-decoration: underline;
}
.sectionTerms .content .term {
  max-width: 700px;
  background-color: rgba(128, 128, 128, 0.2);
  padding: 20px;
  width: 100%;
  position: relative;
}
.sectionTerms .content .term h4 {
  margin-bottom: 10px;
}
.sectionTerms .content .term p {
  font-size: 14px;
}
.sectionTerms .content .term p span {
  margin-top: 15px;
  font-weight: bold;
}
.sectionTerms .content .term ul,
.sectionTerms .content .term ol {
  padding: 0 20px;
  font-size: 14px;
}
.sectionTerms .content .term ul li,
.sectionTerms .content .term ol li {
  margin-bottom: 5px;
}

.sectionUnsubscribe .unsubscribeMessage {
  width: 100%;
  height: 100%;
  min-height: calc(100vh - 145px);
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
.sectionUnsubscribe .unsubscribeMessage h1 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.sectionUnsubscribe .unsubscribeMessage p {
  font-size: 1.4rem;
}

.sectionWip .wipMessage {
  width: 100%;
  min-height: calc(100vh - 155px);
  max-width: 600px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  padding: 10px;
}
.sectionWip .wipMessage h1 {
  margin-bottom: 10px;
  font-size: 1.6rem;
}

.section404 {
  background-color: #23323c;
}
.section404 .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding: 50px;
  min-height: calc(100vh - 155px);
}
.section404 .container p {
  color: white;
  text-align: center;
}
.section404 .container img {
  max-width: 300px;
  width: 100%;
  margin-top: 20px;
  animation: hoverAnim 5s ease-in-out infinite alternate;
}
@keyframes hoverAnim {
  0% {
    translate: 0 10px;
  }
  50% {
    translate: 0 0px;
  }
  100% {
    translate: 0 10px;
  }
}
.section404 .container a {
  color: white;
  text-align: center;
  padding: 10px 50px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-family: "Barlow Semi Condensed", sans-serif;
  border-radius: 50px;
  border: 1px solid white;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  cursor: pointer;
}

.acceptCookiesBackground {
  position: fixed;
  inset: 0;
  z-index: 100;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0);
  pointer-events: none;
  transition: all 0.2s ease 0.4s;
}
.acceptCookiesBackground.active {
  transition: all 0.2s ease;
  background-color: rgba(0, 0, 0, 0.4);
  pointer-events: inherit;
}
.acceptCookiesBackground .acceptCookiesPanel {
  position: absolute;
  bottom: -100%;
  left: 50%;
  translate: -50% 50%;
  width: calc(100% - 30px);
  max-width: 400px;
  min-height: 300px;
  background-color: rgb(24, 204, 204);
  padding: 30px;
  padding-top: 60px;
  padding-bottom: 40px;
  color: white;
  transition: all 0.6s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.acceptCookiesBackground .acceptCookiesPanel.active {
  transition: all 0.4s cubic-bezier(0.63, 0.85, 0.78, 1.12) 0.2s;
  bottom: 50%;
}
.acceptCookiesBackground .acceptCookiesPanel .buttonsWrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}
.acceptCookiesBackground .acceptCookiesPanel .buttonsWrapper button {
  width: 100%;
  font-size: clamp(0.9em, 0.5vw + 0.5vmin + 0.5vmax, 1.2em);
}
.acceptCookiesBackground .acceptCookiesPanel .buttonsWrapper button:last-child {
  font-size: clamp(0.8em, 0.4vw + 0.4vmin + 0.4vmax, 1.1em);
  box-shadow: inset 0 0 0 3px #c42957;
  background-color: rgb(24, 204, 204);
  color: #c42957;
}
.acceptCookiesBackground .acceptCookiesPanel .buttonsWrapper button:last-child:hover {
  background-color: white;
  color: #c42957;
  box-shadow: inset 0 0 0 3px #c42957;
}

html,
body,
*,
*::after,
*::before:not(i) {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Monserrat", sans-serif;
}