@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Poppins-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Poppins";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Poppins-Regular.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/Poppins-Bold.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/Gilroy-Medium.woff2") format("woff2");
}
@font-face {
  font-display: swap;
  font-family: "Gilroy";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/Gilroy-Regular.woff2") format("woff2");
}
:root {
  --light-color: #ffffff;
  --dark-color: #0a0f12;
  --primary-color: #9333ea;   /* purple */
  --accent-color: #f97316;    /* orange */
  --warning-color: #ef4444;   /* red */
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol,
li {
  list-style: none;
}

img {
  display: block;
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  background-color: #ebf3f7;
  line-height: 1.3;
  color: var(--dark-color);
}

body.lock {
  overflow: hidden;
}

.container {
  max-width: 1280px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}

a {
  transition: all 0.3s ease;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 32px;
  font-weight: 700;
  border: 1px solid var(--dark-color);
  width: 100%;
  transition: all 0.3s ease;
}

.error-message {
  font-size: 0.9rem;
  color: red;
  font-weight: 500;
}

/*  STRUCTURE  */
.rth-header {
  padding: 10px 0;
  box-shadow: 0 5px 5px -5px var(--accent-color);
}
.rth-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.rth-header__logo {
  max-width: 200px;
  width: 100%;
}
.rth-header__controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.rth-header__btn {
  width: 120px;
  padding: 8px 0;
  position: relative;
  overflow: hidden;
  background: var(--light-color);
  color: var(--dark-color);
  z-index: 2;
  transition: all 0.5s ease;
  border: 1px solid #1c1c1c;
}
.rth-header__btn::before {
  position: absolute;
  content: "";
  width: 300px;
  height: 100px;
  transform: translateX(-120%) skewX(-45deg);
  background-color: rgba(250, 207, 181, 0.5019607843);
  left: 0;
  transition: all 2s ease;
  z-index: -1;
}
.rth-header__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}
.rth-header__btn:hover::before {
  transform: translateX(120%) skewX(-45deg);
}

.rth-logo {
  max-width: 30px;
}
.menu__list {
  display: none;
}
@media screen and (min-width: 1200px) {
  .menu__list {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }
}
.menu__list.is-open {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  gap: 20px;
  gap: 20px;
  background-color: var(--light-color);
  z-index: 10;
}
.rth-menu__link {
  color: var(--primary-color);
}
.rth-menu__link:hover {
  color: var(--accent-color);
}

.burger {
  flex-shrink: 0;
  width: 24px;
  height: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background-color: transparent;
  border: 0;
  cursor: pointer;
  position: relative;
}
.burger:before {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  top: 0%;
  transform: translateY(0%) rotate(0deg);
  transition: all 0.5s ease;
}
.burger:after {
  position: relative;
  content: "";
  width: 100%;
  height: 2px;
  left: 0;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
  bottom: 0;
  transform: translateY(0%) rotate(0deg);
}
.burger span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark-color);
  transition: all 0.5s ease;
}
.burger.is-open {
  z-index: 11;
}
.burger.is-open::before {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.burger.is-open::after {
  bottom: 50%;
  transform: translateY(50%) rotate(-45deg);
}
.burger.is-open span {
  transform: scale(0);
}
@media screen and (min-width: 1200px) {
  .burger {
    display: none;
  }
}

.rth-hero {
  padding: 120px 0;
  position: relative;
  color: var(--light-color);
  background-image: url(../images/hero.webp);
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}
.rth-hero:before {
  position: absolute;
  content: "";
  inset: 0;
  background-image: linear-gradient(to right, rgba(29, 29, 29, 0.8), rgba(29, 29, 29, 0.6), rgba(29, 29, 29, 0));
  z-index: -1;
}
.rth-hero__title {
  font-size: 48px;
  max-width: 640px;
  margin-bottom: 16px;
}
.rth-hero__text {
  max-width: 640px;
  margin-bottom: 16px;
}
.rth-hero__btn {
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 8px 0;
  max-width: 140px;
}
.rth-hero__btn:hover {
  color: var(--light-color);
  background-color: var(--accent-color);
}

.rth-about {
  padding: 70px 0;
}
.rth-about__title {
  text-align: center;
  margin-bottom: 32px;
  font-size: 36px;
}
.rth-about__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .rth-about__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .rth-about__list {
    grid-template-columns: 1fr;
  }
}
.rth-about__item {
  min-height: 425px;
}
.rth-about__media {
  margin-bottom: 24px;
}
.rth-about__media img {
  border-radius: 8px;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 240px;
}
.rth-about__item-title {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
}
.rth-about__item-text {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}
.rth-about__btn {
  max-width: 150px;
  margin: 0 auto;
  padding: 12px 0;
}
.rth-about__btn:hover {
  background-color: var(--accent-color);
  -moz-column-rule: var(--light-color);
       column-rule: var(--light-color);
}

.rth-service {
  padding: 70px 0;
  background-color: #1c1c1c;
  color: var(--light-color);
}
.rth-service__title {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}
.rth-service__subtitle {
  text-align: center;
  margin-bottom: 32px;
  font-size: 20px;
}
.rth-service__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 1200px) {
  .rth-service__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .rth-service__list {
    grid-template-columns: 1fr;
  }
}
.rth-service__item {
  padding: 32px;
  border: 1px solid #4f4f4f;
  border-radius: 8px;
  background-color: #333333;
}
.rth-service__item svg {
  color: var(--accent-color);
}
.rth-service__item-title {
  margin-block: 16px;
  font-size: 24px;
}
.rth-service__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.rth-service__info h2 {
  margin-bottom: 16px;
  font-size: 36px;
  font-weight: 700;
  max-width: 380px;
}
.rth-service__info h2 span {
  display: block;
}
.rth-service__info p {
  max-width: 420px;
}

.rth-help {
  padding: 70px 0;
}
.rth-help__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.rth-help__subtitle {
  margin-bottom: 32px;
  font-size: 20px;
  text-align: center;
}
.rth-help__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}
.rth-help__list :nth-child(1) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .rth-help__list :nth-child(1) {
    grid-column: span 2;
  }
}
.rth-help__list :nth-child(2) {
  grid-column: span 3;
}
@media screen and (max-width: 1200px) {
  .rth-help__list :nth-child(2) {
    grid-column: span 2;
  }
}
@media screen and (max-width: 1200px) {
  .rth-help__list {
    grid-template-columns: 1fr;
  }
}
.rth-help__item {
  grid-column: span 2;
  padding: 24px;
  border-radius: 8px;
  background-color: var(--dark-color);
  color: var(--light-color);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.rth-help__item-btn {
  display: flex;
  align-items: center;
  line-height: 24px;
  gap: 8px;
}
.rth-help__item-btn svg {
  position: relative;
  transform: translateX(0px) rotate(-90deg);
  max-width: 160px;
  transition: all 0.3s ease;
}
.rth-help__item-btn:hover {
  color: var(--dark-color);
}
.rth-help__item-btn:hover svg {
  transform: translateX(5px) rotate(-90deg);
}
.rth-help__btn {
  margin: 0 auto;
  max-width: 160px;
  background-color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 12px 0;
  gap: 8px;
}
.rth-help__btn:hover {
  background-color: var(--light-color);
}

.rth-join {
  padding: 30px 0;
  border-radius: 32px;
}
.rth-join__title {
  text-align: center;
  font-size: 36px;
  margin-bottom: 16px;
}
.rth-join__subtitle {
  max-width: 800px;
  margin: 0 auto;
  font-size: 20px;
  text-align: center;
  margin-bottom: 32px;
}
.join__form {
  background-color: #fff;
  border-radius: 8px;
  max-width: 550px;
  padding: 24px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.form__group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form__input {
  padding: 8px 16px;
  height: 50px;
  border: 2px solid #07010f;
  border-radius: 4px;
}
.form__textarea {
  padding: 8px 16px;
  border: 2px solid #07010f;
  border-radius: 4px;
}
.rth-form__btn {
  max-width: 180px;
  margin: 0 auto;
  padding: 12px 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.rth-form__btn:hover {
  background-color: var(--accent-color);
}
.rth-form__disclaimer {
  margin-top: -12px;
  margin-bottom: 6px;
}
.rth-form__disclaimer a {
  color: var(--accent-color);
}
.rth-form__disclaimer a:hover {
  color: var(--primary-color);
}

.rth-service-page, .service-page {
  padding: 70px 0;
}
.rth-service-page__title, .service-page__title {
  font-size: 32px;
  margin-bottom: 32px;
  text-align: center;
}
.rth-service-page__content p, .service-page__content p {
  margin-bottom: 16px;
}
.rth-service-page__content h2, .service-page__content h2 {
  margin-bottom: 12px;
}
.rth-service-page__content a, .service-page__content a {
  color: var(--accent-color);
}
.rth-service-page__content a:hover, .service-page__content a:hover {
  color: var(--primary-color);
}
.rth-service-page__content ul, .service-page__content ul {
  margin-bottom: 12px;
}
.rth-service-page__btn, .service-page__btn {
  max-width: 180px;
  width: 100%;
  margin: 32px auto 0;
  padding: 12px 0;
}
.rth-service-page__btn:hover, .service-page__btn:hover {
  background-color: var(--accent-color);
}

.docomentation__inner {
  padding: 32px;
    border: 1px solid #4f4f4f;
    border-radius: 8px;
    background-color: #333333;
}
.documentation__link {
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .5s ease;
  position: relative;
  height: 40px;
  font-weight: 700;
  border-radius: 9999px;
  border: 1px solid var(--accent-color);
  padding: 8px 16px;
}
@media (max-width: 993px) {
  .documentation__link {
    display: flex;
    max-width: 220px;
    justify-content: center;
    margin: 0 auto;
  }
}

.documentation__link:hover {
  color: #000;
}


.documentation__text {
  color: var(--light-color);
  margin-bottom: 1.5rem;
}

.rth-footer {
  padding: 35px 0;
  background-color: #dadada;
}

#accept-cookies, #reject-cookies{
  padding: 5px;
  border-radius: 5px;
}

.rth-footer__info-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 24px;
}
.rth-footer__info-list :nth-child(1) {
  margin-right: auto;
  width: 70px;
}
@media screen and (max-width: 768px) {
  .rth-footer__info-list {
    flex-wrap: wrap;
  }
  .rth-footer__info-list :nth-child(1) {
    flex: 0 1 100%;
    margin: 0 auto;
  }
}
.rth-footer__info-link {
  color: var(--accent-color);
}
.rth-footer__info-link:hover {
  color: var(--primary-color);
}
.rth-footer__disclaimer {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.rth-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}
@media screen and (max-width: 1200px) {
  .rth-footer__inner {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 1200px) {
  .rth-footer__copy {
    order: 2;
    text-align: center;
    margin: 0 auto;
  }
}
.rth-footer__list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1200px) {
  .rth-footer__list {
    flex: 0 1 100%;
  }
}
@media screen and (max-width: 480px) {
  .rth-footer__list {
    flex-direction: column;
  }
}
.rth-footer__link {
  transition: color 0.3s ease;
  color: var(--accent-color);
}
.rth-footer__link:hover {
  color: var(--primary-color);
}

/*  STRUCTURE  */
/*  COMPONENTS  */
.notify {
  background-color: var(--dark-color);
}
.notify__text {
  color: var(--light-color);
  padding: 8px 0;
  font-size: 16px;
  font-weight: 300;
}

.rating {
  background-color: var(--light-color);
  padding: 30px 0;
  max-width: 960px;
  border-radius: 30px;
  margin: -36px auto 0;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .rating {
    margin-top: 0;
  }
}
.rating__cards {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .rating__cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    justify-content: center;
    justify-self: center;
  }
}
@media screen and (max-width: 1200px) {
  .rating__card {
    width: 100%;
    max-width: 170px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}
.rating__card:nth-child(2) img, .rating__card:nth-child(3) img {
  max-width: 24px;
  width: 100%;
}
.rating__card:nth-child(1) svg {
  color: #2962FF;
}
.rating__card:nth-child(4) svg {
  color: #01B57A;
}
.rating__head {
  display: flex;
  gap: 8px;
  margin-bottom: 8px;
}
.rating__head img {
  height: 26px;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 1200px) {
  .rating__head span {
    font-size: 14px;
  }
}
.rating__content {
  display: flex;
  align-items: center;
  gap: 3px;
}
.rating__content span {
  margin-right: 8px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 1200px) {
  .rating__content span {
    font-size: 18px;
  }
}
.rating__content svg {
  color: #FF9F29;
}
@media screen and (max-width: 1200px) {
  .rating__content svg {
    width: 16px;
  }
}

.card {
  position: fixed;
  z-index: 20;
  bottom: 20px;
  right: 20px;
  width: 300px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px 30px;
  gap: 13px;
  overflow: hidden;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.062);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0px 0px 18px #06a18f;
}
@media screen and (max-width: 480px) {
  .card {
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

#cookieSvg {
  width: 50px;
}

#cookieSvg g path {
  fill: rgb(227, 110, 110);
}

.rth-cookieHeading {
  font-size: 1.2em;
  font-weight: 800;
  text-align: center;
}

.rth-cookieDescription {
  text-align: center;
  font-size: 0.7em;
  font-weight: 600;
}

.rth-buttonContainer {
  display: flex;
  gap: 20px;
  flex-direction: row;
}

.rth-acceptButton {
  width: 80px;
  height: 30px;
  background-color: #7b57ff;
  transition-duration: 0.2s;
  border: none;
  color: rgb(241, 241, 241);
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.rth-declineButton {
  width: 110px;
  height: 30px;
  background-color: rgb(218, 218, 218);
  transition-duration: 0.2s;
  color: rgb(46, 46, 46);
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 20px;
}

.rth-declineButton:hover {
  background-color: var(--warning-color);
  transition-duration: 0.2s;
}

.rth-acceptButton:hover {
  background-color: #9173ff;
  transition-duration: 0.2s;
}

/*  COMPONENTS  */

/* Modern Thank you page */
.thankyou__hero { text-align: center; max-width: 800px; margin: 0 auto 48px; }
.thankyou__success-animation { margin-bottom: 32px; }
.thankyou__circle { width: 120px; height: 120px; margin: 0 auto; position: relative; }
.thankyou__checkmark { width: 100%; height: 100%; }
.thankyou__circle-bg { stroke: rgba(147, 51, 234, 0.1); stroke-width: 2; }
.thankyou__circle-progress { stroke: var(--accent-color); stroke-width: 2; stroke-dasharray: 157; stroke-dashoffset: 157; transform: rotate(-90deg); transform-origin: 50% 50%; transition: stroke-dashoffset 1s ease-in-out; }
.thankyou__check { stroke: var(--accent-color); stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; stroke-dasharray: 30; stroke-dashoffset: 30; transition: stroke-dashoffset 0.5s ease-in-out 0.5s; }
.thankyou__success-animation.animate .thankyou__circle-progress { stroke-dashoffset: 0; }
.thankyou__success-animation.animate .thankyou__check { stroke-dashoffset: 0; }
.thankyou__title { font-size: 2.5rem; font-weight: 700; margin-bottom: 16px; color: var(--dark-color); }
.thankyou__subtitle { font-size: 1.125rem; color: #666; line-height: 1.6; }
.thankyou__content { max-width: 1000px; margin: 0 auto 48px; }
.thankyou__section-title { font-size: 1.75rem; font-weight: 600; margin-bottom: 32px; text-align: center; color: var(--dark-color); }
.thankyou__timeline { margin-bottom: 48px; }
.thankyou__steps { display: grid; gap: 24px; }
.thankyou__step { display: flex; align-items: flex-start; gap: 20px; padding: 24px; background: #f8fafc; border-radius: 16px; border: 1px solid #e2e8f0; transition: all 0.3s ease; }
.thankyou__step:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.1); }
.thankyou__step-icon { flex-shrink: 0; width: 48px; height: 48px; background: var(--accent-color); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
.thankyou__step-icon svg { width: 24px; height: 24px; }
.thankyou__step-content h3 { font-size: 1.25rem; font-weight: 600; margin-bottom: 8px; color: var(--dark-color); }
.thankyou__step-content p { color: #666; line-height: 1.6; }
.thankyou__details { background: #f8fafc; border-radius: 16px; padding: 32px; border: 1px solid #e2e8f0; }
.thankyou__details-grid { display: grid; gap: 20px; }
.thankyou__detail-item { display: flex; align-items: flex-start; gap: 16px; padding: 20px; background: white; border-radius: 12px; border: 1px solid #e2e8f0; }
.thankyou__detail-icon { flex-shrink: 0; width: 40px; height: 40px; background: var(--primary-color); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; }
.thankyou__detail-icon svg { width: 20px; height: 20px; }
.thankyou__detail-content h4 { font-size: 0.875rem; font-weight: 600; color: #666; margin-bottom: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
.thankyou__detail-content p { color: var(--dark-color); line-height: 1.5; }
.thankyou__actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.thankyou__btn { display: flex; align-items: center; gap: 8px; padding: 12px 24px; border-radius: 12px; font-weight: 600; text-decoration: none; transition: all 0.3s ease; min-width: 160px; justify-content: center; }
.thankyou__btn svg { width: 18px; height: 18px; }
.thankyou__btn--primary { background: var(--accent-color); color: white; border: 1px solid var(--accent-color); }
.thankyou__btn--primary:hover { background: var(--primary-color); border-color: var(--primary-color); transform: translateY(-2px); }
.thankyou__btn--secondary { background: transparent; color: var(--dark-color); border: 1px solid #d1d5db; }
.thankyou__btn--secondary:hover { background: #f3f4f6; border-color: #9ca3af; transform: translateY(-2px); }
@media screen and (max-width: 768px) { 
  .thankyou__title { font-size: 2rem; }
  .thankyou__step { flex-direction: column; text-align: center; }
  .thankyou__actions { flex-direction: column; align-items: center; }
  .thankyou__btn { width: 100%; max-width: 280px; }
}

/* License modal */
.license-modal {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 100;
}
.license-modal.is-open { display: flex; }
.license-modal__dialog {
  max-height: 90vh;
  background: #eaeaea;
  color: var(--dark-color);
  border-radius: 16px;
  width: 100%;
  max-width: 1160px;
  padding: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  overflow: hidden;
}
.license-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.license-modal__title {
  font-size: 18px;
  font-weight: 700;
}
.license-modal__close {
  background: transparent;
  border: 0;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  color: var(--dark-color);
}
.license-modal__content {
  background: #e6e6e6;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.license-modal__content img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: contain;
}
@media (max-width: 640px) {
  .license-modal__content { grid-template-columns: 1fr;     overflow-y: scroll;     max-height: 80vh; }
}

/*# sourceMappingURL=main.css.map */