/*--------------------------------------------------------------
# Font Face Declarations
--------------------------------------------------------------*/

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Regular-Web.woff2") format("woff2"),
    url("../fonts/Graphik-Regular-Web.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Medium-Web.woff2") format("woff2"),
    url("../fonts/Graphik-Medium-Web.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Graphik";
  src: url("../fonts/Graphik-Bold-Web.woff2") format("woff2"),
    url("../fonts/Graphik-Bold-Web.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/*--------------------------------------------------------------
# Variables
--------------------------------------------------------------*/

:root {
  /* Body variables */

  --body-font-family: "Graphik", sans-serif;
  --body-font-size: 18px;
  --body-font-size-small: 14px;
  --body-font-weight: 400;
  --body-line-height: 140%;

  --body-color: #1a1a2c;
  --body-color-rgb: 26, 26, 44;

  --body-bg: #ebebeb;

  --body-transition: 0.15s;

  /* Colors */

  --primary-color: #ff3300;
  --secondary-color: #007fa3;
}

@media (max-width: 430px) {
  :root {
    --body-font-size: 16px;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

@media (prefers-reduced-motion: no-preference) {
  :root {
    scroll-behavior: smooth;
  }
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
.preloader {
  background: rgba(235, 235, 235, 0.7);
  backdrop-filter: blur(50px);

  z-index: 9999;

  opacity: 1;

  transition: opacity 0.5s ease-in-out;
}

.preloader.hide {
  opacity: 0;

  pointer-events: none;
}

.preloader-content {
  position: relative;

  padding: 24px;

  background: radial-gradient(
    100% 258.34% at 0% 0%,
    rgba(250, 250, 250, 0.36) 0%,
    rgba(250, 250, 250, 0.6) 35.03%,
    rgba(250, 250, 250, 0.42) 100%
  );

  max-width: 335px;

  border-radius: 4px;
}

.preloader-line {
  position: relative;

  z-index: 0;

  background-color: #ffffff;

  height: 16px;

  border-radius: 2px;
}

.preloader-line-status {
  z-index: 1;

  height: 16px;
  width: 0;

  border-radius: 2px;

  background-color: var(--secondary-color);

  transition: width 0.3s ease-out;
}

/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
body.loading {
  overflow: hidden;
}

body {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;

  color: var(--body-color);
  background-color: var(--body-bg);

  margin: 0;

  overflow: hidden;
}

main {
  position: relative;

  width: 100%;

  overflow: hidden;
}

section {
  position: relative;

  z-index: 1;
}

/* Titles */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;

  font-weight: 700;
}

h1 {
  font-size: 48px;
  line-height: 116%;
  font-weight: 700;

  margin-bottom: 32px;
}

h2 {
  font-size: 32px;
  line-height: 116%;

  margin-bottom: 16px;
}

h3,
.h3-like {
  font-size: 24px;
  font-weight: 500;
  line-height: 140%;
}

h4,
.h4-like {
  font-size: 18px;
  line-height: 140%;
  font-weight: 500;
}

@media (max-width: 430px) {
  h1 {
    font-size: 30px;
    line-height: 116%;
  }

  h2 {
    font-size: 22px;
    line-height: 116%;
  }

  h3,
  .h3-like {
    font-size: 18px;
  }

  h4,
  .h4-like {
    font-size: 16px;
    line-height: 140%;
  }
}

/* Text, links */

p {
  margin: 0;
}

small {
  font-size: 14px;
}

ul {
  list-style: none;

  margin: 0;

  padding: 0;
}

/* Buttons */

button,
.btn {
  display: block;

  font-family: var(--body-font-family);
  font-weight: 700;
  font-size: var(--body-font-size);
  line-height: var(--body-line-height);
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;

  border: 0px;
  border-radius: 12px;

  padding: 9.5px 16px 8.5px 16px;

  min-width: 108px;

  cursor: pointer;
}

.btn-icon {
  min-height: 40px;
  height: 40px;
  min-width: 40px;
  width: 40px;

  background: radial-gradient(
    109.18% 100% at 0% 0%,
    rgba(26, 26, 44, 0.1) 0%,
    rgba(26, 26, 44, 0.1) 48.57%,
    rgba(26, 26, 44, 0.1) 100%
  );

  font-weight: 500;

  border-radius: 2px;

  color: var(--body-color);
}

.btn-icon:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-icon:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-primary {
  background-color: var(--primary-color);
  color: #ffffff;
}

.btn-primary.loading span:first-child {
  display: none;
}

.btn-primary span:last-child {
  display: none;

  height: 25.2px;
}

.btn-primary.loading span:last-child {
  display: flex;

  height: 25.2px;
}

.btn-primary .btn-primary-loader {
  width: 20px;
  height: 20px;

  border-radius: 50%;

  background: conic-gradient(from 0deg, rgba(255, 255, 255, 0), white);
}

.btn-primary.loading .btn-primary-loader {
  animation-name: spin;
  animation-duration: 1000ms;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn-primary:disabled {
  background: radial-gradient(
    109.18% 100% at 0% 0%,
    rgba(26, 26, 44, 0.1) 0%,
    rgba(26, 26, 44, 0.1) 48.57%,
    rgba(26, 26, 44, 0.1) 100%
  );
}

.btn-secondary {
  background-color: var(--secondary-color);

  color: #ffffff;
}

.btn-light {
  background-color: #ebebeb;

  font-weight: 500;
}

.btn-white {
  background-color: #fafafa;

  color: #959595;

  font-weight: 500;
}

.btn-small {
  padding: 9.5px 0 8.5px 0;

  min-width: 112px;
  width: 112px;

  font-size: 16px;
  line-height: 140%;
}

.btn-back {
  text-decoration: underline;

  cursor: pointer;
}

input {
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);

  border: 0;
  border-radius: 0;
  outline: none;

  padding: 0;
}

.input-number {
  height: 40px;
  width: 48px;

  background-color: #fafafa;
}

.input-number::-webkit-inner-spin-button,
.input-number::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.input-number[type="number"] {
  -moz-appearance: textfield;
}

input[type="button"] {
  cursor: pointer;
}

a {
  color: var(--body-color);
}

/* Containers */

.container {
  position: relative;

  width: 100%;
  max-width: 1440px;

  margin: 0 auto;

  padding: 0 64px;
}

.container.medium {
  max-width: 744px;
}

.container.tight {
  max-width: 648px;

  padding: 0 20px;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .container.medium {
    max-width: 656px;
  }

  .container.tight {
    max-width: 100%;
  }
}

/* Columns */

.col-50 {
  width: 50%;
}

/* Display */

.d-flex {
  display: flex;
}

.d-block {
  display: block;
}

@media (max-width: 1024px) {
  .d-md-none {
    display: none;
  }
}

@media (max-width: 430px) {
  .d-sm-none {
    display: none;
  }
}

/* Flex */
.flex-wrap {
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  .flex-wrap-md {
    flex-wrap: wrap;
  }
}

@media (max-width: 430px) {
  .flex-wrap-sm {
    flex-wrap: wrap;
  }
}

/* Positions */

.p-absolute {
  position: absolute;
}

.p-relative {
  position: relative;
}

.p-fixed {
  position: fixed;
}

/* Padding */

.p-0 {
  padding: 0;
}

/* Margin */

.ml-auto {
  margin-left: auto;
}

/* Parallax */

.parallax {
  will-change: transform;
  transform: translate3d(
    calc(var(--parallax-x, 0) * 1px),
    calc(var(--parallax-y, 0) * 1px),
    0
  );
  transition: transform 0.2s cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* Centering */

.align-items-center {
  align-items: center;
}

.justify-content-center {
  justify-content: center;
}

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

.absolute-center {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.horizontal-center {
  left: 50%;
  transform: translateX(-50%);
}

.parallax.horizontal-center {
  left: 50%;
  transform: translate3d(
    calc(-50% + (var(--parallax-x, 0) * 1px)),
    calc(var(--parallax-y, 0) * 1px),
    0
  );
}

.margin-horizontal-center {
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .horizontal-center-md {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* Space between */

.justify-content-space-between {
  justify-content: space-between;
}

/* Top */

.top-left {
  top: 0;
  left: 0;
}

.top-right {
  top: 0;
  right: 0;
}

.align-self-start {
  align-self: flex-start;
}

/* Left */

.left-0 {
  left: 0;
}

.justify-content-start {
  justify-content: flex-start;
}

@media (max-width: 430px) {
  .justify-content-start-sm {
    justify-content: flex-start;
  }
}

/* Right */

.justify-content-end {
  justify-content: flex-end;
}

.text-align-right {
  text-align: right;
}

.right-0 {
  right: 0;
}

/* Bottom */

.align-items-flex-end {
  align-items: flex-end;
}

.align-self-end {
  align-self: flex-end;
}

/* Width */

.w-100 {
  width: 100%;
}

.max-w-100 {
  max-width: 100%;
}

.w-auto {
  width: auto;
}

.w-fit {
  width: fit-content;
}

/* Height */

.h-100 {
  height: 100%;
}

.h-auto {
  height: auto;
}

/* Border */

.border-gradient {
  background-clip: padding-box;

  border: solid 1px transparent;
}

.border-gradient::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: -1;

  margin: -1px;

  border-radius: inherit;

  background: linear-gradient(
      268.18deg,
      rgba(255, 255, 255, 0.6) -17.36%,
      rgba(239, 239, 239, 0) 15.78%
    ),
    linear-gradient(
      117.99deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 33.89%
    );
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/

header {
  height: 56px;

  background: radial-gradient(
    100% 1732.25% at 0% 50%,
    rgba(238, 238, 238, 0.7) 0%,
    rgba(254, 254, 254, 0.7) 50.28%,
    rgba(235, 235, 235, 0.7) 100%
  );

  backdrop-filter: blur(20px);

  border-bottom: 0.5px solid;

  border-image-source: radial-gradient(
    100% 1732.25% at 0% 50%,
    #ebebeb 0%,
    #f4f4f4 50.28%,
    #ebebeb 100%
  );

  z-index: 9999;
}

header .logo {
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--body-color);

  padding: 20px 0 16px 0;
}

@media (max-width: 430px) {
  header {
    height: 48px;
  }

  header .logo {
    font-size: 18px;

    padding: 17px 0 13px 0;
  }
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
footer {
  position: relative;

  padding: 32px 0 64px 0;

  z-index: 1;
}

footer nav ul {
  gap: 32px;
}

footer nav ul li a {
  color: var(--body-color);

  text-decoration: none;
}

@media (max-width: 1024px) {
  footer .logo {
    margin: 0 auto 16px auto;
  }

  footer nav {
    width: 100%;
  }
}

@media (max-width: 573px) {
  footer nav ul {
    gap: 16px;
  }

  footer nav ul li:first-child {
    width: 100%;
  }
}

/*--------------------------------------------------------------
# Hero
--------------------------------------------------------------*/
.hero {
  height: 775px;

  margin-top: 56px;
}

.hero-bg {
  min-width: 1440px;
}

.hero-bg .hero-bg-left {
  height: calc(100% - 37.5px);
}

.hero-bg .hero-bg-book,
.hero-bg .hero-bg-left,
.hero-bg .hero-bg-right {
  object-fit: cover;
}

.hero .btn-primary {
  bottom: 96px;
}

@media (max-width: 744px) {
  .hero-bg {
    min-width: 100%;
  }

  .hero-bg .hero-bg-left,
  .hero-bg .hero-bg-right {
    display: none;
  }
}

@media (max-width: 430px) {
  .hero {
    height: 550px;

    margin-top: 48px;
  }

  .hero .btn-primary {
    bottom: 64px;
  }
}

/*--------------------------------------------------------------
# About
--------------------------------------------------------------*/

.about {
  padding: 0 0 64px 0;
}

.about .about-swiper {
  padding: 0 64px 48px 64px;
}

.about .about-swiper .about-swiper-item {
  width: 532px;
}

.about .about-swiper .about-swiper-item .about-swiper-card {
  overflow: hidden;

  border-radius: 16px;

  margin-bottom: 32px;
}

.about .about-swiper .about-swiper-item .about-swiper-card h2 {
  top: 32px;
  left: 32px;

  width: calc(100% - 64px);
}

.about .about-swiper .about-swiper-item p {
  max-width: 480px;
}

.about .about-swiper .swiper-pagination {
  margin-top: 32px;

  gap: 16px;

  transition: var(--body-transition);
}

.about .about-swiper .swiper-horizontal > .swiper-pagination-bullets,
.about .about-swiper .swiper-pagination-bullets.swiper-pagination-horizontal,
.about .about-swiper .swiper-pagination-custom,
.about .about-swiper .swiper-pagination-fraction {
  width: fit-content;
}

.about
  .about-swiper
  .swiper-horizontal
  > .swiper-pagination-bullets
  .swiper-pagination-bullet,
.about
  .about-swiper
  .swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0;
}

.about .about-swiper .swiper-pagination-bullet {
  transition: var(--body-transition);

  width: 16px;
  height: 16px;

  background-color: #ffffff;

  opacity: 1;
}

.about .about-swiper .swiper-pagination-bullet-active {
  background-color: var(--secondary-color);

  width: 48px;

  border-radius: 8px;
}

@media (max-width: 1024px) {
  .about .about-swiper {
    padding: 0 20px 48px 20px;
  }
}

@media (max-width: 572px) {
  .about .about-swiper .about-swiper-item {
    width: 288px;
  }

  .about .about-swiper .about-swiper-item .about-swiper-card {
    margin-bottom: 24px;
  }

  .about .about-swiper .about-swiper-item .about-swiper-card h2 {
    font-size: 22px;
    line-height: 116%;

    top: 20px;
    left: 20px;

    width: calc(100% - 40px);
  }

  .about .about-swiper .about-swiper-item p {
    font-size: 16px;
    line-height: var(--body-line-height);

    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# FAQ
--------------------------------------------------------------*/

.faq {
  padding: 32px 0 64px 0;
}

.faq .container {
  gap: 48px;
}

.faq .faq-wrapper {
  width: calc(50% - 24px);
}

.faq .faq-item {
  position: relative;

  margin-bottom: 12px;

  background: radial-gradient(
    100% 258.34% at 0% 0%,
    rgba(250, 250, 250, 0.36) 0%,
    rgba(250, 250, 250, 0.6) 35.03%,
    rgba(250, 250, 250, 0.42) 100%
  );

  backdrop-filter: blur(25px);

  border-radius: 4px;

  overflow: hidden;

  background-clip: padding-box;

  border: solid 1px transparent;
}

.faq .faq-item .faq-question {
  gap: 24px;

  padding: 11px 20px 11px 20px;

  cursor: pointer;

  user-select: none;
}

.faq .faq-item .faq-question svg {
  transition: rotate var(--body-transition);
  width: 24px;
  min-width: 24px;
  height: 24px;
  min-height: 24px;
}

.faq .faq-item.active .faq-question svg {
  rotate: -180deg;
}

.faq .faq-item .faq-answer {
  transition: max-height var(--body-transition) ease;
}

.faq .faq-item .faq-answer p {
  padding: 20px 30px 32px 30px;
}

@media (max-width: 1024px) {
  .faq .container {
    gap: 0;
  }

  .faq .faq-wrapper {
    width: 100%;
  }
}

@media (max-width: 430px) {
  .faq .faq-item .faq-answer p {
    padding: 20px 20px 32px 20px;
  }
}

/*--------------------------------------------------------------
# Cart
--------------------------------------------------------------*/

.cart {
  padding: 112px 0 64px 0;

  font-weight: 500;
}

.cart .cart-content {
  position: relative;

  padding: 32px 24px 64px 24px;

  background: radial-gradient(
    100% 258.34% at 0% 0%,
    rgba(250, 250, 250, 0.36) 0%,
    rgba(250, 250, 250, 0.6) 35.03%,
    rgba(250, 250, 250, 0.42) 100%
  );

  backdrop-filter: blur(25px);

  border-radius: 16px;
}

.cart .cart-content .cart-item:first-child {
  margin-bottom: 32px;
}

.cart .cart-content .cart-item {
  margin-bottom: 0;
}

.cart-item-info {
  font-weight: 500;

  font-size: 22px;
  line-height: var(--body-line-height);

  max-width: 315px;
}

.cart-item-info .cart-item-title {
  margin-top: 4px;
}

.cart-item-info .cart-item-type {
  color: #007fa3;
}

.cart-item-price {
  min-width: 109px;
  width: 109px;

  font-size: 22px;
  line-height: var(--body-line-height);
}

.cart-item-price span {
  min-height: 40px;
}

.cart-item-price-compare {
  text-decoration: line-through;

  color: var(--primary-color);
}

.quantity-decrease:disabled,
.quantity-increase:disabled,
.quantity-input:disabled {
  cursor: not-allowed;
}

.cart-summary {
  font-weight: 700;
  font-size: 22px;
  line-height: 116%;

  margin-top: 16px;

  min-height: 40px;
}

.cart-summary.cart-summary-empty {
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--primary-color);
}

.cart-notice {
  margin: 32px 0 32px 0;

  font-weight: 400;
}

.cart-actions {
  gap: 16px;
}

@media (max-width: 1024px) {
  .cart {
    padding: 104px 0 64px 0;
  }
}

@media (max-width: 648px) {
  .cart {
    padding: 96px 0 48px 0;
  }

  .cart-item-info {
    min-width: 100%;

    margin-bottom: 20px;
  }

  .cart-item-info .cart-item-title {
    max-width: 287px;

    margin: 0 auto;
  }

  .cart-item-details {
    width: 100%;
    max-width: 287px;

    justify-content: space-between;

    margin: 0 auto;
  }

  .cart-summary {
    margin-top: 32px;
  }

  .cart-summary .cart-summary-title,
  .cart-summary .cart-summary-price {
    width: 100%;

    min-height: 40px;

    display: flex;

    text-align: center;

    align-items: center;

    justify-content: center;
  }
}

@media (max-width: 430px) {
  .cart {
    padding: 104px 0 48px 0;
  }
}

/*--------------------------------------------------------------
# Minicart
--------------------------------------------------------------*/

.cart.minicart {
  bottom: 40px;
  right: 64px;

  z-index: 9999;

  padding: 0;

  background: radial-gradient(
    100% 258.34% at 0% 0%,
    rgba(250, 250, 250, 0.36) 0%,
    rgba(250, 250, 250, 0.6) 35.03%,
    rgba(250, 250, 250, 0.42) 100%
  );
  backdrop-filter: blur(25px);

  border-radius: 12px;

  transition: max-width var(--body-transition), max-height 0.5s,
    bottom var(--body-transition);

  filter: drop-shadow(0px 4px 100px rgba(0, 0, 0, 0.07));
}

.btn-minicart-open {
  background-color: var(--primary-color);

  height: 48px;
  width: 48px;

  cursor: pointer;

  border-radius: 12px;

  padding: 12.5px 10px 11.5px 14px;
}

.btn-minicart-open .minicart-count {
  height: 32px;
  width: 32px;

  overflow: hidden;

  top: -16px;
  left: -16px;

  background-color: #fafafa;

  border: 2px var(--body-color) solid;
  border-radius: 50%;
}

.minicart-content {
  padding: 24px 24px 64px 24px;

  opacity: 0;
  visibility: hidden;

  transition: opacity 1s;
}

.minicart.expanded .minicart-content {
  opacity: 1;
  visibility: visible;
}

.minicart-title {
  font-size: 30px;
  font-weight: 600;
  line-height: 116%;

  margin-bottom: 16px;
}

.minicart-title svg {
  cursor: pointer;
}

.cart.minicart .cart-content {
  position: relative;

  padding: 0;

  background: transparent;

  backdrop-filter: none;

  border-radius: 0;
}

.cart.minicart .cart-notice {
  margin: 16px 0 16px 0;
}

@media (max-width: 729px) {
  .cart.minicart {
    width: calc(100% - 40px);

    bottom: 24px;
    right: 20px;
  }

  .cart.minicart.expanded {
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
  }

  .cart.minicart .cart-item-info {
    min-width: 100%;

    margin-bottom: 20px;
  }

  .cart.minicart .cart-item-info .cart-item-title {
    max-width: 100%;

    margin: 0;
  }

  .cart.minicart .cart-item-details {
    width: 100%;
    max-width: 100%;

    justify-content: space-between;

    margin: 0;
  }

  .cart.minicart .cart-summary {
    margin-top: 16px;
  }

  .cart.minicart .cart-summary .cart-summary-title,
  .cart.minicart .cart-summary .cart-summary-price {
    width: 100%;

    min-height: 40px;

    display: flex;

    text-align: center;

    align-items: center;

    justify-content: center;
  }
}

/*--------------------------------------------------------------
# 404
--------------------------------------------------------------*/

.not-found {
  height: 100dvh;

  padding: 104px 0 48px 0;
}

.not-found h1 {
  font-weight: 700;
  font-size: 144px;
  line-height: 100%;

  margin-bottom: 29px;
}

.not-found p {
  margin-bottom: 32px;
}

.not-found .btn-primary {
  margin-bottom: 32px;
}

@media (max-width: 430px) {
  .not-found {
    padding: 104px 0 48px 0;
  }
}

/*--------------------------------------------------------------
# Text page
--------------------------------------------------------------*/
.text {
  padding-bottom: 80px;
}

.text-intro {
  padding: 112px 0 64px 0;
}

@media (max-width: 430px) {
  .text {
    padding-bottom: 32px;
  }

  .text-intro {
    padding: 104px 0 64px 0;
  }
}

.text-content h2 {
  margin-top: 32px;
}

.text-content h2:first-child {
  margin-top: 0px;
}

.text-content p {
  margin-bottom: 16px;
}

.text-content ul {
  margin-bottom: 16px;
}

.text-content a {
  word-wrap: break-word;
  overflow-wrap: break-word;
  word-break: break-word;
}

/*--------------------------------------------------------------
# Cookies
--------------------------------------------------------------*/

.cookies-notice {
  display: none;

  opacity: 0;
  visibility: hidden;

  transition: opacity var(--body-transition);

  display: flex;

  bottom: 0;

  z-index: 9999;

  background: radial-gradient(
    100% 258.34% at 0% 0%,
    rgba(250, 250, 250, 0.36) 0%,
    rgba(250, 250, 250, 0.6) 35.03%,
    rgba(250, 250, 250, 0.42) 100%
  );

  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);

  backdrop-filter: blur(20px);

  border-radius: 2px;

  background-clip: padding-box;

  border: solid 1px transparent;

  width: 100%;

  padding: 8px 20px 8px 20px;

  gap: 16px;
}

.cookies-notice.show {
  display: flex;

  opacity: 1;
  visibility: visible;
}

.cookies-notice::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  z-index: -1;

  margin: -1px;

  border-radius: inherit;

  background: linear-gradient(
      268.18deg,
      rgba(255, 255, 255, 0.6) -17.36%,
      rgba(239, 239, 239, 0) 15.78%
    ),
    linear-gradient(
      117.99deg,
      rgba(255, 255, 255, 0.5) 0%,
      rgba(255, 255, 255, 0) 33.89%
    );
}

.cookies-notice p {
  font-size: 12px;
  line-height: 140%;
}

/*--------------------------------------------------------------
# Coming Soon Modal
--------------------------------------------------------------*/

.coming-soon {
  position: fixed;

  top: 0;
  left: 0;

  width: 100%;
  min-height: 100%;

  background: rgba(235, 235, 235, 0.7);

  backdrop-filter: blur(50px);

  z-index: 9998;

  padding: 72px 16px;

  overflow: auto;

  display: flex;
  align-items: center;
}

@media (max-width: 430px) {
  .coming-soon {
    padding: 60px 16px;
  }
}

.coming-soon .coming-soon-content {
  width: 100%;
  max-width: 532px;

  margin: 0 auto;
  padding: 0 20px;

  text-align: center;
}
