@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
  --bg-body: #f5c754;
  --light-color: #fff;
  --accent-color-1: #fec331;
  --light-grey-1: #babcbd;
  --light-grey-2: #e7ecf0;
  --links-color-1: #888888;
  --links-color-2: #003f88;
  --text-dark-color: #1e1e1e;
  --text-dark-color-2: #65511e;
  --text-dark-color-3: #bb890a;
  --text-grey-color: #81818c;
  --linear: linear-gradient(135deg, #f5c754 0%, #ffc32c 100%);
}

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

html {
  min-height: 100%;
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  max-width: 100vw;
  min-height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  background: var(--bg-body);
  color: var(--text-dark-color);
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-style: normal;
  line-height: 1.2;
  overflow-y: scroll;
}

body.modal-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  max-width: 100%;
}

a {
  color: inherit;
}

h1,
h2,
h3,
p,
ul,
ol,
dl,
dd {
  margin: 0;
}

button,
input {
  font: inherit;
}

ul {
  margin: 0;
  padding: 0;
}

ul li {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 425px;
  margin-left: auto;
  margin-right: auto;
}

.container .inner-cont {
  padding-left: 15px;
  padding-right: 15px;
}

.header {
  padding-top: 17px;
  padding-bottom: 13px;
  z-index: 6;
}

.header .header_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .header_wrapper .header_logo a {
  display: flex;
}

.header .header_wrapper .header_logo a img {
  height: 35px;
  width: auto;
}

.header .header_wrapper .header_text {
  position: relative;
  color: var(--text-dark-color);
  background: #fedc85;
  padding: 6px 10px;
  border: 1px solid #fee4a2;
  border-radius: 50px;
  font-weight: 500;
  font-size: 12px;
}

.main {
  overflow: hidden;
  padding-top: 15px;
  flex: 1;
}

.main .introWrap {
  position: relative;
}

.main .introWrap img {
  display: block;
  width: 100%;
  max-width: 425px;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
}

.main .main_title {
  font-size: 32px;
  font-weight: 600;
  color: var(--text-dark-color);
  text-align: center;
}

.main .main_timer {
  display: block;
  max-width: fit-content;
  margin: 10px auto;
  font-size: 15px;
  font-weight: 500;
  text-align: center;
  color: var(--text-dark-color);
  background: #fedc85;
  border: 1px solid #fee4a2;
  border-radius: 100px;
  padding: 6px 12px;
}

.main .main_timer span {
  color: var(--text-dark-color-3);
  margin-left: 5px;
}

.main .main_subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--text-dark-color-2);
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
}

.main .offers_wrapper {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 0;
}

.main .offers_wrapper .offer {
  width: calc(50% - 6px);
  padding: 12px 10px;
  position: relative;
  margin-top: 25px;
  box-shadow: 0 3px 12px rgb(42 85 181 / 17%);
  border-radius: 15px;
  background: #fff;
}

.main .offers_wrapper .offer > a {
  text-decoration: none;
  display: flex;
  flex-direction: column;
}

.main .offer .rating {
  text-align: center;
  margin-bottom: 5px;
}

.main .offer .rating span {
  color: var(--text-grey-color);
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 5px;
}

.main .offer .rating span.big {
  display: block;
  color: var(--accent-color-1);
  font-size: 35px;
  font-weight: 800;
}

.main .offers_wrapper .offer .label {
  font-family: Montserrat, sans-serif;
  font-size: 10px;
  font-weight: 600;
  height: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--light-color);
  position: absolute;
  left: 50%;
  width: 115px;
  text-align: center;
  transform: translateX(-50%);
  top: -12px;
  padding: 0 9px;
  border-radius: 15px;
  text-transform: uppercase;
}

.main .offers_wrapper .offer .label.one,
.main .offers_wrapper .offer .label.two {
  color: var(--light-color);
  background: #6693f5;
  border: 1px solid #7777ff;
}

.main .offers_wrapper .offer .offer-logo {
  width: 90%;
  margin: 0 auto;
  display: block;
  max-height: 70px;
  object-fit: contain;
}

.main .offers_wrapper .offer .offer-info {
  display: flex;
  flex-direction: column;
  list-style: none;
  text-align: center;
  margin: 0;
  padding: 12px 0;
  border-top: 1px dashed #c3d6fe;
  border-bottom: 1px dashed #c3d6fe;
}

.main .offers_wrapper .offer .offer-info li {
  font-size: 12px;
  color: var(--text-dark-color-2);
  position: relative;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.main .offers_wrapper .offer .offer-info li:last-child {
  margin-bottom: 0;
}

.main .offers_wrapper .offer .offer-info li span {
  display: block;
  font-weight: 400;
  color: var(--text-grey-color);
  font-size: 14px;
  padding-bottom: 3px;
}

.main .offers_wrapper .offer .offer-info li span.bold {
  font-weight: 600;
  font-size: 16px;
  color: var(--text-dark-color-2);
}

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

.btn-offer-details {
  display: inline-flex;
  position: relative;
  user-select: none;
  cursor: pointer;
  color: var(--links-color-2);
  padding-right: 14px;
  margin: 10px 0 0;
  border: 0;
  background: transparent;
  font-size: 14px;
  text-align: center;
}

.triangle-down {
  display: inline-block;
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  transform: translateY(-50%) rotate(45deg);
  border: 1px solid var(--links-color-2);
  border-width: 0 1.5px 1.5px 0;
  height: 9px;
  width: 9px;
}

.main .general_button_wrapper {
  margin-top: 15px;
  text-align: center;
}

.main .general_button_wrapper .button {
  display: block;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 0;
  min-height: 0;
  background: transparent;
  border-radius: 0;
}

.main .general_button_wrapper .button .btn-main,
.main .general_button_wrapper .button a.btn-main {
  position: relative;
  background: var(--linear);
  border: none;
  border-radius: 22px;
  width: 100%;
  min-height: 52px;
  font-size: 16px;
  line-height: 17px;
  text-align: center;
  text-transform: uppercase;
  color: var(--text-dark-color);
  font-family: Montserrat, sans-serif;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  cursor: pointer;
}

.main .bottom_text {
  margin-top: 42px;
  padding-bottom: 30px;
}

.main .bottom_text p {
  font-family: Montserrat, sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 100%;
  text-align: justify;
  color: var(--text-dark-color);
  opacity: 0.8;
}

.main .bottom_text p + p {
  margin-top: 10px;
}

.main .bottom_text p.big {
  font-size: 16px;
  opacity: 1;
}

.empty-state {
  width: 100%;
  margin-top: 25px;
  padding: 24px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 3px 12px rgb(42 85 181 / 17%);
  text-align: center;
  color: var(--text-dark-color-2);
}

.footer {
  padding: 14px 0;
  position: relative;
  margin-top: 40px;
}

.footer .footer_wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.footer .footer_wrapper .copy span {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 14px;
  color: var(--text-dark-color);
  opacity: 0.8;
}

.footer .footer_wrapper .footer_logo a {
  display: flex;
}

.footer .footer_wrapper .footer_logo a img {
  height: 30px;
  width: auto;
}

.modal {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 99999;
}

.modal.is-open {
  display: block;
}

.modal-content {
  background-color: var(--light-color);
  padding: 15px 40px;
  border-radius: 10px;
  width: calc(100% - 70px);
  max-width: 400px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 25px rgb(255 255 255 / 30%);
}

.modal-content .close {
  position: absolute;
  top: 2px;
  right: 7px;
  padding: 0;
  color: #7f7f7f;
  margin: 0;
  cursor: pointer;
  font-size: 30px;
  display: inline-block;
  border: 0;
  background: transparent;
  line-height: 1;
}

.modal-details .modal-offer-details {
  border-top: 1px dashed #c3d6fe;
}

.modal-details .modal-logo {
  max-width: 150px;
  margin: 0 auto;
}

.modal-details .modal-logo img {
  width: 100%;
}

.modal-details ul.list-style-1 {
  text-align: center;
  padding-top: 15px;
}

.modal-details ul.list-style-1 li {
  position: relative;
  padding-right: 15px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark-color-2);
  display: inline-block;
}

.modal-details ul.list-style-1 li:last-child {
  padding-right: 0;
}

.modal-details ul.list-style-1 li:first-child::before {
  content: "";
  position: absolute;
  right: 5px;
  width: 1px;
  height: 90%;
  background: var(--light-grey-1);
}

.modal-details ul.list-style-1 li span,
.modal-details ul.list-style-2 li span {
  font-weight: 700;
  color: var(--accent-color-1);
}

.modal-details .modal-heading {
  text-align: center;
  font-size: 14px;
  margin-bottom: 5px;
}

.modal-details ul.list-style-2 {
  text-align: center;
}

.modal-details ul.list-style-2 li {
  position: relative;
  text-align: center;
  padding: 0 4px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark-color-2);
  display: inline-block;
  margin-bottom: 2px;
}

.modal-details .modal-offer-links {
  text-align: center;
  margin-top: 8px;
}

.modal-details .modal-offer-links a {
  display: inline-block;
  margin-top: 12px;
  font-size: 13px;
  text-decoration: none;
  color: var(--links-color-1);
}

.modal-details .modal-button {
  margin-top: 25px;
}

.modal-details .modal-button .btn-main {
  position: relative;
  background: var(--linear);
  border: 3px solid #ffd8a0;
  border-radius: 16px;
  width: 100%;
  min-height: 50px;
  font-size: 14px;
  color: var(--text-dark-color);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  text-transform: uppercase;
}

.icon {
  display: inline-block;
  vertical-align: middle;
  width: 15px;
  height: 15px;
  background-size: 100%;
  background-repeat: no-repeat;
}

.icon.icon-info {
  background-image: url("../images/ico-i.svg");
  margin-top: -3px;
  margin-right: 4px;
}

.icon.icon-link-arrow {
  width: 12px;
  height: 12px;
  background-image: url("../images/ico-link-arrow.svg");
  margin-top: -2px;
  margin-left: 5px;
}

.site-header {
  padding: 17px 0 13px;
  z-index: 6;
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.site-logo img {
  height: 35px;
  width: auto;
}

a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border-radius: 22px;
  border: 0;
  background: var(--linear);
  color: var(--text-dark-color);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
}

.policy-page {
  background: var(--bg-body);
  flex: 1;
}

.policy-hero,
.policy-content {
  padding: 24px 15px;
}

.policy-hero__card,
.policy-card {
  padding: 24px;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 3px 12px rgb(42 85 181 / 17%);
}

.policy-hero__card h1 {
  font-size: clamp(24px, 4vw, 32px);
  line-height: 1.05;
  color: var(--text-dark-color);
}

.policy-hero__subtitle,
.policy-card p {
  margin-top: 12px;
  color: var(--text-dark-color-2);
  font-size: 15px;
  line-height: 1.45;
}

.section-head__label {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--text-grey-color);
  font-size: 13px;
}

.section-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark-color);
  margin-bottom: 8px;
}

.policy-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}

.site-footer {
  margin-top: 40px;
  padding: 14px 0;
}

.site-footer .container {
  padding: 0 15px;
}

.site-footer__top,
.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer__nav,
.site-footer__contacts,
.site-footer__bottom-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
}

.site-footer__text {
  margin: 18px 0;
  color: var(--text-dark-color-2);
  font-size: 12px;
  line-height: 1.35;
}

.site-footer__nav a,
.site-footer__contacts a,
.site-footer__bottom a {
  color: var(--links-color-2);
  text-decoration: none;
}

@media (max-width: 767px) {
  .modal-content {
    width: calc(100% - 30px);
    padding: 15px 20px;
  }
}

@media (max-width: 375px) {
  .container .inner-cont {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header .header_wrapper .header_logo a img {
    height: 30px;
  }

  .header .header_wrapper .header_text,
  .main .general_button_wrapper .button .btn-main,
  .main .offers_wrapper .offer .offer-info li span {
    font-size: 12px;
  }

  .main .offers_wrapper .offer .offer-info li span.bold {
    font-size: 15px;
  }
}

@media (max-width: 350px) {
  .modal-content {
    padding: 15px;
  }

  .main .offers_wrapper .offer .offer-info li span.bold {
    font-size: 16px;
  }
}
