:root {
  --color-pink: #D43D5A;
  --color-pink-hover: #c32e4a;
  --color-pink-light: #ea4f6d;
  --color-white: #fff;
  --color-font: #000;
  --color-gray: #F2F1F4;
  --color-secondary-font: #4B4B4B;
  --color-experience-tags: #888383;
  --color-third-font: #282828;
  --color-secondary-gray: #9C9C9C;
}
html,
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  line-height: 1.2;
}
* {
  box-sizing: border-box;
}
p,
h1,
h2 {
  margin: 0;
}
.img {
  display: block;
  max-width: 100%;
}
.button {
  font-size: 16px;
  line-height: 1;
  border-width: 1px;
  border-style: solid;
  text-align: center;
  padding: 15px 28px;
  font-weight: 700;
  border-radius: 24px;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}
@media (max-width: 767px) {
  .button.header-button {
    font-size: 14px;
    padding: 10px 14px;
    border-radius: 18px;
  }
}
.button.red {
  color: var(--color-white);
  background: var(--color-pink);
  border-color: var(--color-pink);
}
.button.red:hover {
  background: var(--color-pink-hover);
  border-color: var(--color-pink-hover);
}
.button.transparent {
  color: var(--color-white);
  border-color: var(--color-white);
  background: var(--color-pink);
}
.button.transparent:hover {
  background: var(--color-pink-hover);
}
.button.white {
  color: var(--color-pink);
  background: var(--color-white);
  border-color: var(--color-white);
}
.button.white:hover {
  color: var(--color-pink-hover);
}
.button.header-button-registration {
  margin-left: 8px;
}
.header {
  padding: 24px 15px;
  background-color: var(--color-pink);
}
.header .header-row {
  display: flex;
  align-items: center;
  gap: 30px;
}
.header .logo-col {
  flex: 1 0 0;
}
.header .buttons-col {
  flex: 0 0 auto;
}
.hero {
  text-align: center;
  background: image-set(url(/assets/images/hero.avif) type('image/avif'), url(/assets/images/hero.jpg) type('image/jpeg')) no-repeat 94%;
  background-size: cover;
}
.hero .hero-bg-wrapper {
  height: 695px;
  padding-top: 40px;
  background: linear-gradient(143.21deg, rgba(255, 255, 255, 0.6) 70.47%, rgba(255, 255, 255, 0.6) 82.57%, rgba(255, 255, 255, 0) 97.1%);
}
@media (min-width: 768px) {
  .hero .hero-bg-wrapper {
    padding-top: 60px;
    background: linear-gradient(94.21deg, rgba(255, 255, 255, 0.1) 44.98%, rgba(255, 255, 255, 0.2) 80.39%, rgba(255, 255, 255, 0) 99.28%);
  }
}
.hero .hero-wrapper {
  max-width: 370px;
  margin: 0 auto;
  padding: 0 15px;
}
@media (min-width: 768px) {
  .hero .hero-wrapper {
    max-width: 800px;
  }
}
@media (min-width: 1300px) {
  .hero .hero-wrapper {
    max-width: 1010px;
  }
}
.hero .tags {
  display: flex;
  justify-content: space-between;
  width: 290px;
  margin: 0 auto 20px auto;
}
@media (min-width: 768px) {
  .hero .tags {
    margin-bottom: 25px;
    width: 340px;
  }
}
@media (min-width: 1300px) {
  .hero .tags {
    width: 420px;
  }
}
.hero .tag {
  flex: 0 0 auto;
  color: var(--color-pink);
  text-transform: uppercase;
}
@media (min-width: 768px) {
  .hero .tag {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .hero .tag {
    font-size: 24px;
  }
}
.hero .title {
  font-size: 48px;
  margin-bottom: 30px;
  font-weight: 400;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .hero .title {
    font-size: 60px;
    margin-bottom: 40px;
  }
}
@media (min-width: 1300px) {
  .hero .title {
    font-size: 80px;
    margin-bottom: 45px;
  }
}
.hero .title .highlight {
  font-style: italic;
  color: var(--color-pink);
}
.hero .hero-content,
.hero .hero-content2 {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .hero .hero-content,
  .hero .hero-content2 {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .hero .hero-content,
  .hero .hero-content2 {
    font-size: 24px;
  }
}
.hero .hero-content {
  font-weight: 300;
}
.hero .hero-content2 {
  font-weight: 700;
  margin: 20px 0 40px;
}
@media (min-width: 1300px) {
  .hero .hero-content2 {
    margin: 35px 0 50px;
  }
}
.hero .hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
}
@media (min-width: 768px) {
  .hero .hero-buttons {
    gap: 30px;
    justify-content: center;
  }
}
@media (min-width: 1300px) {
  .hero .hero-buttons {
    gap: 55px;
  }
}
.hero .button-col {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .hero .button-col {
    flex: 0 0 auto;
  }
}
.hero .button {
  width: 100%;
}
.experiences-wrapper {
  padding: 30px 0;
  background: var(--color-gray);
  color: var(--color-secondary-font);
}
@media (min-width: 768px) {
  .experiences-wrapper {
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .experiences-wrapper {
    padding: 80px 0;
  }
}
.experiences-wrapper swiper-slide {
  width: 266px;
}
@media (min-width: 768px) {
  .experiences-wrapper swiper-slide {
    width: 417px;
  }
}
.experiences-wrapper .experience {
  padding: 0 8px;
}
@media (min-width: 768px) {
  .experiences-wrapper .experience {
    padding: 0 12px;
  }
}
.experiences-wrapper .experience-wrapper {
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
}
.experiences-wrapper .experience-image {
  position: relative;
  padding-top: 96%;
  background-position: center;
  background-size: cover;
}
@media (min-width: 768px) {
  .experiences-wrapper .experience-image {
    padding-top: 62.849%;
  }
}
.experiences-wrapper .experience-image-1 {
  background-image: image-set(url('/assets/images/experience-1.avif') type('image/avif'), url('/assets/images/experience-1.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-2 {
  background-image: image-set(url('/assets/images/experience-2.avif') type('image/avif'), url('/assets/images/experience-2.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-3 {
  background-image: image-set(url('/assets/images/experience-3.avif') type('image/avif'), url('/assets/images/experience-3.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-4 {
  background-image: image-set(url('/assets/images/experience-4.avif') type('image/avif'), url('/assets/images/experience-4.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-5 {
  background-image: image-set(url('/assets/images/experience-5.avif') type('image/avif'), url('/assets/images/experience-5.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-6 {
  background-image: image-set(url('/assets/images/experience-6.avif') type('image/avif'), url('/assets/images/experience-6.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-7 {
  background-image: image-set(url('/assets/images/experience-7.avif') type('image/avif'), url('/assets/images/experience-7.jpg') type('image/jpg'));
}
.experiences-wrapper .experience-image-8 {
  background-image: image-set(url('/assets/images/experience-8.avif') type('image/avif'), url('/assets/images/experience-8.jpg') type('image/jpg'));
}
.experiences-wrapper .country-name {
  position: absolute;
  top: 8px;
  left: 8px;
  line-height: 1;
  padding: 10px 12px;
  border-radius: 10px;
  background: var(--color-white);
}
.experiences-wrapper .experience-data {
  padding: 25px;
  background: var(--color-white);
}
.experiences-wrapper .user-data {
  display: flex;
  gap: 12px;
}
.experiences-wrapper .user-image-col {
  flex: 0 0 48px;
}
.experiences-wrapper .user-image {
  border-radius: 10px;
  width: 48px;
  height: 48px;
  background-size: cover;
}
.experiences-wrapper .user-image-1 {
  background-image: image-set(url('/assets/images/user-1.avif') type('image/avif'), url('/assets/images/user-1.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-2 {
  background-image: image-set(url('/assets/images/user-2.avif') type('image/avif'), url('/assets/images/user-2.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-3 {
  background-image: image-set(url('/assets/images/user-3.avif') type('image/avif'), url('/assets/images/user-3.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-4 {
  background-image: image-set(url('/assets/images/user-4.avif') type('image/avif'), url('/assets/images/user-4.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-5 {
  background-image: image-set(url('/assets/images/user-5.avif') type('image/avif'), url('/assets/images/user-5.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-6 {
  background-image: image-set(url('/assets/images/user-6.avif') type('image/avif'), url('/assets/images/user-6.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-7 {
  background-image: image-set(url('/assets/images/user-7.avif') type('image/avif'), url('/assets/images/user-7.jpg') type('image/jpg'));
}
.experiences-wrapper .user-image-8 {
  background-image: image-set(url('/assets/images/user-8.avif') type('image/avif'), url('/assets/images/user-8.jpg') type('image/jpg'));
}
.experiences-wrapper .user-name {
  font-size: 21px;
  margin-bottom: 5px;
}
.experiences-wrapper .user-location {
  font-size: 16px;
  font-weight: 700;
}
.experiences-wrapper .experience-details {
  margin-top: 20px;
}
.experiences-wrapper .experience-title {
  margin-bottom: 10px;
  font-size: 21px;
}
@media (min-width: 768px) {
  .experiences-wrapper .experience-title {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
}
.experiences-wrapper .experience-tags {
  margin-top: 3px;
  color: var(--color-experience-tags);
}
.how-it-works {
  font-family: "Playfair Display", serif;
  padding: 30px 0;
}
@media (min-width: 768px) {
  .how-it-works {
    padding: 50px 0;
  }
}
@media (min-width: 1300px) {
  .how-it-works {
    padding: 70px 0;
  }
}
.how-it-works .how-it-works-title {
  font-size: 32px;
  font-weight: 400;
  margin-bottom: 15px;
  text-align: center;
}
@media (min-width: 768px) {
  .how-it-works .how-it-works-title {
    font-size: 40px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1300px) {
  .how-it-works .how-it-works-title {
    font-size: 48px;
    margin-bottom: 50px;
  }
}
@media (min-width: 1300px) {
  .how-it-works .works-items {
    max-width: 1400px;
    margin: 0 auto;
  }
}
.how-it-works swiper-slide {
  width: 250px;
}
@media (min-width: 768px) {
  .how-it-works swiper-slide {
    width: 350px;
  }
}
.how-it-works .works-item {
  padding: 10px 13px;
}
@media (min-width: 768px) {
  .how-it-works .works-item {
    padding: 10px 30px;
  }
}
.how-it-works .works-item-content {
  box-shadow: 0 0 5px 0 #00000040;
  padding: 0 10px 20px 10px;
  text-align: center;
  color: var(--color-third-font);
}
@media (min-width: 768px) {
  .how-it-works .works-item-content {
    padding: 0 25px 30px 25px;
  }
}
.how-it-works .works-number {
  text-align: left;
  font-size: 100px;
  font-weight: 400;
  line-height: 1;
}
.how-it-works .works-title {
  margin: 30px 0 20px;
  font-size: 20px;
  text-transform: uppercase;
  font-weight: 600;
}
.how-it-works .works-content {
  font-family: "Roboto", sanf-serif;
}
.ending {
  max-width: 340px;
  margin: 0 auto;
  text-align: center;
  padding: 30px 0 100px;
}
@media (min-width: 768px) {
  .ending {
    max-width: 700px;
  }
}
@media (min-width: 1300px) {
  .ending {
    max-width: 980px;
  }
}
.ending .ending-title {
  font-size: 32px;
  font-weight: 700;
  font-family: "Playfair Display", serif;
}
@media (min-width: 768px) {
  .ending .ending-title {
    font-size: 44px;
  }
}
@media (min-width: 1300px) {
  .ending .ending-title {
    font-size: 60px;
  }
}
.ending .ending-content {
  margin: 25px 0;
}
@media (min-width: 768px) {
  .ending .ending-content {
    font-size: 20px;
  }
}
@media (min-width: 1300px) {
  .ending .ending-content {
    font-size: 24px;
  }
}
.ending .button {
  width: 100%;
}
@media (min-width: 768px) {
  .ending .button {
    width: auto;
  }
}
.layer {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.25);
  z-index: 9999;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
  text-align: center;
  opacity: 0;
}
.layer.show {
  opacity: 1;
}
.layer.active {
  display: flex;
}
.layer .layer-wrapper {
  max-height: 100%;
  overflow-y: auto;
  padding: 40px 0;
  width: 100%;
}
.layer .layer-container {
  background: #fff;
  border-radius: 10px;
  max-width: 90%;
  width: 340px;
  box-shadow: 0 0 10px 0 #555;
  position: relative;
  margin: 0 auto;
  padding: 30px 0 0 0;
  overflow: hidden;
}
.layer .close {
  position: absolute;
  right: 20px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .info-layer .layer-wrapper {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .info-layer .layer-container {
    width: 650px;
    padding-top: 30px;
  }
}
@media (min-width: 1300px) {
  .info-layer .layer-container {
    width: 850px;
    padding-top: 50px;
  }
}
.info-layer .innerWrapper {
  padding: 0 15px;
}
@media (min-width: 768px) {
  .info-layer .innerWrapper {
    padding: 0 25px;
  }
}
@media (min-width: 1300px) {
  .info-layer .innerWrapper {
    padding: 0 60px;
  }
}
.info-layer .layerTitle {
  font-size: 22px;
  margin-bottom: 20px;
  text-transform: uppercase;
  color: var(--color-pink);
  font-weight: 400;
}
@media (min-width: 768px) {
  .info-layer .layerTitle {
    font-size: 28px;
    margin-bottom: 30px;
  }
}
@media (min-width: 1300px) {
  .info-layer .layerTitle {
    font-size: 34px;
    margin-bottom: 50px;
  }
}
.info-layer .paragraph {
  line-height: 1.4;
}
.info-layer .paragraph.bold {
  font-weight: 700;
}
@media (min-width: 1300px) {
  .info-layer .paragraph {
    font-size: 18px;
  }
}
.info-layer .locations {
  padding: 20px 0;
  margin: 0 -5px;
}
@media (min-width: 768px) {
  .info-layer .locations {
    padding: 30px 0;
  }
}
@media (min-width: 1300px) {
  .info-layer .locations {
    padding: 40px 0;
  }
}
.info-layer .locationItem {
  padding: 0 5px;
}
.info-layer .locationItem .contentWrapper {
  border-radius: 10px;
  overflow: hidden;
}
.info-layer .locationItem .textWrapper {
  min-height: 80px;
  display: flex;
  align-items: center;
  color: var(--color-white);
  font-weight: 500;
  background: var(--color-pink);
}
.info-layer .locationItem .textContent {
  text-align: center;
  padding: 0 15px;
  font-size: 16px;
  line-height: 1.4;
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .info-layer .locationItem .textContent {
    padding: 0 25px;
  }
}
.info-layer .slider {
  background: var(--color-pink);
  margin-top: 20px;
  padding: 20px 0 15px 0;
  color: var(--color-white);
  text-align: center;
}
@media (min-width: 768px) {
  .info-layer .slider {
    margin-top: 40px;
    padding: 30px 0 20px 0;
  }
}
.info-layer .slider swiper-slide {
  width: 220px;
}
.info-layer .sliderTitle {
  font-size: 22px;
  margin-bottom: 15px;
}
@media (min-width: 768px) {
  .info-layer .sliderTitle {
    font-size: 28px;
  }
}
.info-layer .sliderParagraph {
  margin-bottom: 30px;
}
.info-layer .slideItem {
  padding: 0 3px;
}
.info-layer .slideItem .contentWrapper {
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.info-layer .slideItem .textWrapper {
  min-height: 44px;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--color-font);
  font-size: 12px;
  display: flex;
  align-items: center;
}
.info-layer .slideItem .textContent {
  flex: 0 0 100%;
  text-align: center;
  padding: 0 10px;
}
.experience-layer .layer-container {
  padding-top: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .experience-layer .layer-container {
    width: 450px;
  }
}
.experience-layer .close {
  color: var(--color-white);
  z-index: 1;
}
.experience-layer .contentWrapper {
  padding: 15px 20px;
}
.experience-layer .imgCol {
  height: 140px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
@media (min-width: 768px) {
  .experience-layer .imgCol {
    height: 220px;
  }
}
.experience-layer .imgCol .countryName {
  position: absolute;
  left: 10px;
  top: 10px;
  font-size: 20px;
  line-height: 23px;
  text-align: center;
  padding: 10px;
  background: var(--color-white);
  border-radius: 10px;
}
.experience-layer .contentCol {
  padding: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .experience-layer .contentCol {
    display: flex;
    flex-wrap: wrap;
  }
}
.experience-layer .user {
  margin-bottom: 20px;
}
.experience-layer .user .userWrapper {
  display: flex;
  cursor: pointer;
  color: var(--color-font);
  text-decoration: none;
}
.experience-layer .user .userWrapper .userImgCol {
  margin-right: 10px;
  flex: 0 0 60px;
}
@media (min-width: 768px) {
  .experience-layer .user .userWrapper .userImgCol {
    flex: 0 0 80px;
  }
}
.experience-layer .user .userWrapper .userImgCol .avatarImg {
  width: 100%;
  padding-top: 100%;
  border-radius: 5px;
  background-size: cover;
}
@media (min-width: 768px) {
  .experience-layer .user .userWrapper .userImgCol .avatarImg {
    border-radius: 10px;
  }
}
.experience-layer .user .userWrapper .userContentCol {
  flex: 1 0 0;
}
.experience-layer .user .userWrapper .userContentCol .nick {
  font-size: 18px;
  line-height: 21px;
}
@media (min-width: 768px) {
  .experience-layer .user .userWrapper .userContentCol .nick {
    font-size: 24px;
    line-height: 30px;
  }
}
.experience-layer .user .userWrapper .userContentCol .location {
  font-size: 14px;
  line-height: 16px;
  color: var(--color-secondary-gray);
}
@media (min-width: 768px) {
  .experience-layer .user .userWrapper .userContentCol .location {
    font-size: 18px;
    line-height: 21px;
  }
}
.experience-layer .detailsTitle {
  margin-bottom: 10px;
  font-weight: 500;
  font-size: 18px;
}
.experience-layer .info {
  color: var(--color-font);
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .experience-layer .info {
    font-size: 18px;
    line-height: 24px;
  }
}
.experience-layer .info .value {
  color: var(--color-font-main);
}
.experience-layer .labels {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 7px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .experience-layer .labels {
    flex: 0 0 100%;
  }
}
.experience-layer .labels .labelItem {
  font-size: 16px;
  line-height: 20px;
  padding: 0 10px;
  border-radius: 18px;
  border: 1px solid var(--color-font);
}
@media (min-width: 768px) {
  .experience-layer .labels .labelItem {
    font-size: 18px;
    line-height: 21px;
    padding: 4px 15px;
  }
}
.experience-layer .experienceTitle {
  margin-bottom: 20px;
  font-weight: 500;
  font-size: 18px;
}
.experience-layer .description {
  font-size: 16px;
  line-height: 22px;
  text-align: left;
  margin-bottom: 15px;
  color: var(--color-font);
  word-break: break-word;
}
@media (min-width: 768px) {
  .experience-layer .description {
    flex: 0 0 100%;
  }
}
.switchContainer {
  display: inline-block;
  vertical-align: top;
}
.switchContainer .switchHolder {
  width: 40px;
  float: left;
  height: 14px;
  background: #bababa;
  margin: 2px 20px 0 0;
  position: relative;
  border-radius: 50px;
}
.switchContainer .switchHolder input[type=checkbox] {
  float: left;
  visibility: hidden;
}
.switchContainer .switchHolder label {
  position: relative;
  display: block;
  width: 40px;
  height: 20px;
  cursor: pointer;
}
.switchContainer .switchHolder label:before {
  content: '';
  position: absolute;
  display: block;
  width: 20px;
  height: 20px;
  top: -3px;
  left: -1px;
  background-color: #545350;
  border-radius: 50px;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.35);
  transition: 0.3s;
  cursor: pointer;
}
.switchContainer .switchHolder input[type=checkbox]:checked + label {
  background-color: var(--color-pink-light);
  height: 14px;
  border-radius: 50px;
}
.switchContainer .switchHolder input[type=checkbox]:checked + label:before {
  left: 21px;
  background-color: var(--color-pink);
}
.switchContainer .switchHolder input[type=checkbox]:disabled:checked + label {
  background-color: var(--color-pink-light);
}
.switchContainer .switchHolder input[type=checkbox]:disabled:checked + label:before {
  background-color: var(--color-pink-light);
}
.switchContainer .labelOn {
  position: relative;
  float: left;
  display: inline-block;
  top: 2px;
  max-width: 490px;
  color: #484848;
  font-size: 12px;
  vertical-align: middle;
}
.switchContainer.gray .switchHolder input[type=checkbox] + label:before {
  background-color: #7f7f7f;
}
.cookiePolicy {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  opacity: 0;
  transition: opacity 600ms ease;
  z-index: 100;
}
.cookiePolicy.active {
  display: block;
  opacity: 1;
}
.cookiePolicyModal {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 14px 28px;
  background: #fff;
}
@media (min-width: 1024px) {
  .cookiePolicyModal {
    display: flex;
    align-items: center;
  }
}
.cookiePolicyModal .info {
  text-align: center;
  font-size: 14px;
  color: #000;
}
@media (min-width: 1024px) {
  .cookiePolicyModal .info {
    flex: 1 0 0;
    text-align: left;
  }
}
.cookiePolicyModal .info a {
  color: var(--color-pink);
}
.cookiePolicyModal .buttonContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 1024px) {
  .cookiePolicyModal .buttonContainer {
    flex: 0 0 auto;
    padding-left: 50px;
  }
}
.cookiePolicyModal .buttonContainer .button {
  margin-top: 15px;
  flex: 0 0 100%;
}
@media (min-width: 400px) {
  .cookiePolicyModal .buttonContainer .button {
    flex: 0 0 auto;
    margin: 15px 10px 0 10px;
  }
}
@media (min-width: 1024px) {
  .cookiePolicyModal .buttonContainer .button {
    margin: 0;
  }
}
@media (min-width: 1024px) {
  .cookiePolicyModal .buttonContainer .button.options {
    margin-right: 15px;
  }
}
.cookiePolicyOptions {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.8);
  display: none;
  opacity: 0;
  transition: opacity 600ms ease;
  z-index: 101;
}
.cookiePolicyOptions.active {
  display: block;
  opacity: 1;
}
.cookiePolicyOptionsModal {
  margin: 75px auto 0 auto;
  position: relative;
  padding: 25px 25px 20px 25px;
  width: 320px;
  background: var(--color-white);
  color: var(--color-font);
}
@media (min-width: 500px) {
  .cookiePolicyOptionsModal {
    width: 480px;
  }
}
.cookiePolicyOptionsModal .close {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 20px;
  cursor: pointer;
}
.cookiePolicyOptionsModal .policyTitle {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}
.cookiePolicyOptionsModal .info {
  margin-bottom: 15px;
}
.cookiePolicyOptionsModal .info a {
  color: var(--color-pink);
  text-decoration: none;
}
.cookiePolicyOptionsModal .option {
  padding: 6px 0;
  text-align: left;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.cookiePolicyOptionsModal .option.disabled {
  color: #6f6f6f;
}
.cookiePolicyOptionsModal .option .label {
  flex: 1 0 0;
  padding-right: 20px;
}
.cookiePolicyOptionsModal .option .switchHolder {
  flex: 0 0 auto;
}
.cookiePolicyOptionsModal .buttonContainer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media (min-width: 500px) {
  .cookiePolicyOptionsModal .buttonContainer {
    margin-top: 15px;
  }
}
.cookiePolicyOptionsModal .buttonContainer .button {
  margin-top: 15px;
  flex: 0 0 100%;
}
@media (min-width: 500px) {
  .cookiePolicyOptionsModal .buttonContainer .button {
    flex: 0 0 auto;
    margin: 0;
  }
}
@media (min-width: 500px) {
  .cookiePolicyOptionsModal .buttonContainer .button.save {
    margin-right: 15px;
  }
}
/*# sourceMappingURL=index.css.map */