.test {}



.cmp-popup {
  position: fixed;
  right: 20px;
  left: 20px;
  /* transform: translateX(-50%); */
  bottom: 20px;
  z-index: 99999;
  display: none;

  max-width: 1140px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.cmp-popup.active {
  display: block;
}

@media (min-width: 576px) {
  .cmp-popup {
    /* left: unset;
    right: 40px;
    bottom: 40px; */
  }
}

.cmp-popup__body {
  max-width: 100%;
  background: white;
  padding: 10px 16px;
  /* border-radius: 10px; */
  box-shadow: 0 8px 24px 0 rgba(42, 67, 113, 0.15);
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 576px) {
  .cmp-popup__body {
    /* max-width: 400px; */
    padding: 26px 40px 27px;
    gap: 40px;
    flex-direction: row;
  }
}

.cmp-popup__text {
  /* font-size: 12px;
  line-height: 1.3; */

  font-family: 'Noto Sans';
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.5;
  color: #000000;
}

.cmp-popup__text a {
  color: var(--color-primary);
  text-decoration: none;


}

@media (min-width: 576px) {
  .cmp-popup__text {}


}

.cmp-popup__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  width: 100%;
}

@media (min-width: 576px) {
  .cmp-popup__actions {
    gap: 16px;
    width: auto;
  }
}

.cmp-popup__btn {
  font-size: 12px !important;
  padding: 8px 14px 9px !important;
  max-width: unset;
  width: auto;
  font-weight: 500;
  justify-content: center;

  /* color: inherit !important; */
}

.cmp-popup__btn .button__text {
  font-size: 12px !important;
  font-weight: 500;
}

.cmp-popup__btn.button--green-white:hover {
  color: var(--color-primary);
}

@media (min-width: 576px) {
  .cmp-popup__btn {

    padding: 10px 20px !important;
  }

  .cmp-popup__btn .button__text {
    font-size: 14px !important;
  }
}

.footer.lz-footer {
  height: auto;
}

.footer.lz-footer .footer__wrap {
  height: auto;
  position: static;
}

.footer.lz-footer .footer__social,
.footer.lz-footer .footer__copyright {
  display: flex;
  align-items: flex-end;
}

.footer.lz-footer .footer__info {
  justify-content: flex-end;
}

@media (min-width: 640px) {
  .lz-footer .footer__info {
    grid-area: social;
  }

  .lz-footer .footer__social {
    grid-area: info;
  }
}

.lz-subscribe .subscribe__form {
  position: relative;
}



.lz-subscribe .subscribe__container {
  align-items: flex-start;
}


.lz-subscribe-fields {
  display: flex;
  gap: 16px;
  flex-direction: column;
  margin-top: 30px;

}

.lz-subscribe-fields .subscribe__field {
  margin-bottom: 0;
}

@media (min-width: 640px) {
  .lz-subscribe-fields {
    position: absolute;
    top: calc(100% + 36px);
    margin-top: 0;

    flex-direction: row;
  }

  .modal--partners .modal__form-fields .field:nth-last-child(3),
  .modal--meet .modal__form-fields .field:nth-last-child(3) {
    width: 100%;
  }
}

.lz-table {
  width: 100%;
}

.lz-table tr td:not(:first-child) {
  text-align: left !important;
}

.lz-table tr td {
  border: 1px solid var(--color-primary);
  padding: 1em;
}

/* .table-container {
					display: grid;
					grid-auto-flow: column;
					overflow-x: auto;
					gap: 1px;
					-webkit-overflow-scrolling: touch;
				} */

.lz-table th {
  border-color: white;
  border: 1px solid;
  padding: 1em;
}


@media (max-width: 576px) {
  .table-container {
    width: 100%;
    overflow-x: auto;
    /* Включаем горизонтальный скролл */
    -webkit-overflow-scrolling: touch;
    /* Плавный скролл на iOS */
    margin-bottom: 1rem;
    /* Отступ снизу (опционально) */
    border: 1px solid #eee;
    /* Рамка (опционально) */
  }

  /* Стилизация скроллбара (для Chrome/Safari) */
  .table-container::-webkit-scrollbar {
    height: 6px;
    /* Толщина скроллбара */
  }

  .table-container::-webkit-scrollbar-thumb {
    background: #888;
    /* Цвет ползунка */
    border-radius: 3px;
    /* Закругление */
  }

  .table-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    /* Цвет трека */
  }

  /* Сама таблица */
  .table-container table {
    width: max-content;
    /* Растягивается по содержимому */
    min-width: 100%;
    /* Минимум на всю ширину контейнера */
    border-collapse: collapse;
    /* Убираем двойные границы */
    /* white-space: nowrap; */
    /* Текст не переносится */
  }

  .table-container td:not(:first-child) {
    max-width: 400px;
    min-width: 250px;
  }
}


.lz-hero.hero {
  min-height: 34.375rem;
  height: auto;
}

@media (max-width: 639.98px) {
  .lz-hero.hero {
    min-height: 28.125rem;
    height: auto;
  }
}