.modal-age {
  display: flex;
  background: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
.modal-age:not(.active) {
  display: none;
}
.modal-age__inner {
  background: var(--color__top-layout-bg);
  padding: 15px;
  margin: auto;
  max-width: 600px;
  width: 100%;
  min-height: 100svh;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  max-height: calc(100dvh - 30px);
  overflow: hidden;
  font-style: normal;
}
.modal-age__inner a {
  color: #fff;
  -webkit-text-decoration: underline;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.modal-age__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 15px;
  order: -2;
}
.modal-age__logo {
  width: 160px;
  height: 24px;
}
.modal-age__logo img {
  height: 100%;
  width: 100%;
  object-fit: contain;
  object-position: left center;
  display: flex;
}
.modal-age__icon {
  background: #dc2626;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  border-radius: 50%;
  padding: 8px;
}
.modal-age__icon svg {
  display: flex;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.modal-age__info {
  display: grid;
  grid-gap: 15px;
  gap: 15px;
  align-items: start;
  align-content: start;
  line-height: 140%;
  margin-bottom: 10px;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
}
.modal-age__info p {
  margin: 5px 0;
}
.modal-age__info ul {
  padding-left: 20px;
}
.modal-age__info ul li {
  list-style-type: disc;
  margin: 5px 0;
}
.modal-age__info ul li::marker {
  font-size: 10px;
}
.modal-age__title {
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
}
.modal-age__subtitle {
  margin-bottom: 10px;
}
.modal-age__button {
  background: #16a34a;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  padding: 10px 20px;
  width: 100%;
  margin-bottom: 15px;
  transition: background-color 0.3s;
  order: -1;
  border-radius: 4px;
  font-style: normal;
}
.modal-age__button:hover {
  background: #0b983e;
}
.modal-age__button span {
  display: block;
}
.modal-age__button span:first-of-type {
  font-weight: 600;
  font-size: 18px;
}
.modal-age__button span:last-of-type {
  font-weight: 900;
  font-size: 20px;
}

@media screen and (min-width: 640px) {
  .modal-age {
    padding: 15px;
  }
  .modal-age__inner {
    padding: 25px;
    min-height: 0;
    min-height: initial;
  }
  .modal-age__logo {
    width: 220px;
    height: 33px;
  }
}
@media screen and (min-width: 960px) {
  .modal-age__inner {
    padding: 30px 40px;
  }
  .modal-age__button {
    order: 0;
  }
  .modal-age__logo {
    width: 326px;
    height: 49px;
  }
}
