:root {
  --font: "geologica", sans-serif;
  --white: #ffffff;
  --black: #000000;
  --pink: #cb0159;
  --blue: #1e78b9;
  --invalid: #ec1d2f;
  --grey: #9d9d9d;
}

@font-face {
  font-family: "geologica";
  src: url("../fonts/geologica-regular.woff2") format("woff2"), url("../fonts/geologica-regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "geologica";
  src: url("../fonts/geologica-medium.woff2") format("woff2"), url("../fonts/geologica-medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "geologica";
  src: url("../fonts/geologica-extrabold.woff2") format("woff2"), url("../fonts/geologica-extrabold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  outline: none;
  -webkit-tap-highlight-color: transparent;
  backface-visibility: hidden;
}

*,
*:before,
*:after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

html {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  -webkit-overflow-scrolling: auto;
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  overflow-y: auto;
  font-family: var(--font);
  font-weight: 400;
  font-optical-sizing: auto;
  font-size: 14px;
  line-height: 1.2;
}

img {
  display: block;
  object-fit: cover;
  user-select: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  color: inherit;
  font-family: var(--oreo);
  font-weight: 700;
}

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

button {
  border: none;
  cursor: pointer;
  background: none;
  color: inherit;
}

ul,
menu {
  list-style: none;
}

.main {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
  flex: 1;
}

.section {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.section.section--page {
  padding-top: 54px;
}
.section.section--page .container {
  padding: 0;
}

.container {
  display: block;
  position: relative;
  width: 100%;
  max-width: 768px;
  margin: 0 auto;
  padding: 0px 20px;
}

.header {
  display: block;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 54px;
  z-index: 20;
  background: var(--pink);
  color: var(--white);
  transition: transform 0.25s ease-in-out;
  will-change: transform;
}
.header.header--hidden {
  transform: translateY(-100%);
}
.header .container {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  height: 100%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 0px 10px;
}
.header .container:before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pink);
  z-index: 2;
}
.header .header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  flex: 1;
  z-index: 2;
}
.header .logo {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
}
.header .logo img {
  width: 32px;
  height: 32px;
  pointer-events: none;
}
.header .header__center {
  display: flex;
  align-items: center;
  min-width: 0;
  flex: 1;
  position: relative;
}
.header .logo__text {
  display: block;
  min-width: 0;
  font-size: 16px;
  line-height: 1.1;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.header .header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-width: 0;
}
.header .header-search input {
  flex: 1;
  min-width: 0;
  height: 36px;
  padding: 0 12px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  border: none;
  border-radius: 18px;
  outline: none;
}
.header .header-search input::placeholder {
  color: var(--black);
  opacity: 0.6;
}
.header .header-search__close {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
}
.header .header-search__close img {
  display: block;
  filter: brightness(0) invert(1);
}
.header .header-search-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 2;
}
.header .header-search-trigger img {
  display: block;
  filter: brightness(0) invert(1);
}

.section--preloader {
  display: block;
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100vh;
  min-height: 100dvh;
  background: var(--pink) url("../../images/preloader.gif") no-repeat center center/cover;
  color: var(--white);
  z-index: 9999;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.section--preloader .container {
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  height: 100%;
  padding: 0px;
}

.preloader-logo {
  display: flex;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 15px 0px;
  gap: 32px;
  flex: 1;
  text-align: center;
}
.preloader-logo img {
  width: 200px;
}
.preloader-logo p {
  font-size: 24px;
  font-weight: 500;
}

.preloader-pin {
  margin-top: auto;
  flex-shrink: 0;
  padding-bottom: 15px;
}

.loaded .section--preloader {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.video-list {
  display: flex;
  justify-content: center;
  width: 100%;
  flex-wrap: wrap;
  gap: 10px;
}
.video-list.video-list--single-short .app-card.app-card--short {
  width: 100%;
  margin: 0;
}
.video-list.video-list--single-short .app-card.app-card--short .card-video {
  aspect-ratio: 5/7;
}
.video-list.video-list--single-short .app-card.app-card--short .card-title {
  font-size: 14px;
  left: 16px;
  bottom: 16px;
  width: calc(100% - 88px);
}

.app-card {
  display: block;
  width: 100%;
  padding: 10px;
}
.app-card .card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.app-card .card-content {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 10px;
}
.app-card .card-content.card-content--short {
  position: relative;
  width: 100%;
  height: 100%;
}
.app-card .card-body {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 6px;
  padding-left: 32px;
}
.app-card .card-description {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding-left: 32px;
}
.app-card .card-description__text {
  display: -webkit-box;
  margin: 0;
  min-width: 0;
  flex: 1;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.4;
  opacity: 0.7;
}
.app-card .card-description__text--expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.app-card .card-description__toggle {
  flex-shrink: 0;
  color: var(--pink);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.4;
  padding: 0px;
  text-transform: uppercase;
}
.app-card.app-card--video {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 0;
  margin: 0;
}
.app-card.app-card--video .card-description {
  padding-top: 8px;
  padding-left: 0;
}
.app-card.app-card--video:first-child {
  margin-top: 0px;
}
.app-card.app-card--video + .app-card--video {
  border-top: none;
  margin-top: 0px;
}
.app-card.app-card--short {
  position: relative;
  width: calc(50% - 5px);
  height: auto;
  padding: 0;
  margin: 0;
  border: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.app-card.app-card--short .card__link {
  position: relative;
  width: 100%;
  height: auto;
}
.app-card.app-card--short .card-title {
  font-size: 12px;
  left: 10px;
  bottom: 10px;
  width: calc(100% - 68px);
  font-weight: 400;
  -webkit-line-clamp: 4;
  line-clamp: 4;
}
.app-card.app-card--short .card-video {
  height: auto;
  aspect-ratio: 10/17;
}
.app-card.app-card--short .card-video .card-img-top {
  height: 100% !important;
  min-height: 0px;
  max-height: none;
}
.app-card.app-card--short .card-video:before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 50%;
  left: 0px;
  bottom: 0px;
  z-index: 1;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0));
}
.app-card.app-card--short .card-description {
  padding-left: 0px;
}
.app-card.app-card--single {
  padding: 0px;
  border-bottom: none;
}
.app-card.app-card--single .card-body {
  padding-right: 10px;
  padding-left: 40px;
  margin-top: 30px;
}

.card-video {
  display: flex;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: auto;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  border-radius: 0;
  z-index: 1;
}
.card-video .card-img-top {
  display: block;
  width: 100%;
  height: 200px;
  min-height: 200px;
  max-height: 200px;
  display: block;
  object-fit: cover;
}
.card-video .no-preview {
  position: absolute;
  z-index: 0;
  background: var(--pink);
  width: 100%;
  height: 100%;
  min-height: 200px;
  color: var(--white);
  text-align: center;
  vertical-align: middle;
  line-height: 100px;
  font-weight: 500;
}
.card-video .duration {
  position: absolute;
  left: 20px;
  bottom: 20px;
  font-size: 10px;
  font-weight: 400;
  color: var(--white);
  padding: 4.5px 6px;
  padding-left: 24px;
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
}
.card-video .duration:before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  top: 3.2px;
  width: 14px;
  height: 14px;
  background: url("../../images/clock.svg") no-repeat center center/cover;
}
.card-video .card-title {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: var(--white);
  width: calc(100% - 84px);
}
.card-video .card-video-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 24px;
  z-index: 4;
  overflow: visible;
  cursor: pointer;
  touch-action: none;
  outline: none;
}
.card-video .card-video-progress:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  transition: height 0.15s ease;
}
.card-video .card-video-progress--seeking:before,
.card-video .card-video-progress:focus-visible:before {
  height: 6px;
}
.card-video .card-video-progress__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  background: var(--pink);
  height: 4px;
  transition: width 0.1s linear, height 0.15s ease;
}
.card-video .card-video-progress--seeking .card-video-progress__bar,
.card-video .card-video-progress:focus-visible .card-video-progress__bar {
  height: 6px;
}
.card-video .card-video-actions {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.card-video .card-video-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  color: var(--white);
  background: rgba(0, 0, 0, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}
.card-video .card-video-action:hover,
.card-video .card-video-action:focus-visible {
  background: rgba(0, 0, 0, 0.72);
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--white);
}
.card-video .card-video-action.is-active {
  background: var(--pink);
  border-color: var(--pink);
  color: var(--white);
}
.card-video .card-video-action:disabled {
  opacity: 0.45;
  cursor: default;
}
.card-video .card-video-action svg {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
}

.card-body:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  position: absolute;
  left: 0%;
  top: 1px;
  background: url("../../images/video.svg") no-repeat center center/cover;
  opacity: 1;
}

.card-title {
  display: -webkit-box;
  position: relative;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  width: 100%;
  font-size: 20px;
  line-height: 1.1;
  font-weight: 700;
  padding-top: 2px;
  z-index: 2;
}

.card-text {
  display: -webkit-box;
  position: relative;
  -webkit-box-orient: vertical;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 12px;
  line-height: 1.3;
  opacity: 0.5;
  margin-bottom: 10px !important;
  z-index: 2;
}

#yandexMap {
  background: var(--white);
}

.lead {
  font-size: 14px;
  font-weight: 400;
}

.go-back {
  display: flex;
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 5;
  left: 20px;
  top: 28px;
  border-left: 4px solid var(--pink);
  border-top: 4px solid var(--pink);
  transform: translate(0px, 0px) rotate(-45deg);
}

.card-single {
  display: block;
  width: 100%;
  position: relative;
}
.card-single video {
  display: block;
  width: 100%;
  background: linear-gradient(var(--pink), var(--black));
  border: none !important;
  outline: none !important;
}

.card-single-body {
  display: flex;
  position: relative;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  gap: 10px;
  padding: 24px 30px 24px 50px;
}
.card-single-body .duration strong {
  font-size: 14px;
  font-weight: 700;
}
.card-single-body .title,
.card-single-body .subtitle {
  margin: 0 !important;
}
.card-single-body .app-card {
  width: 100%;
  padding: 0;
  border: none;
}
.card-single-body .app-card video {
  max-height: 400px !important;
}

.title {
  font-size: 24px;
  line-height: 1.1;
  font-weight: 700;
}
.title.title--smaller {
  font-size: 18px;
}

.subtitle {
  font-size: 14px;
  line-height: 1.4;
  opacity: 0.5;
}

.likes {
  margin-top: 20px;
}

.likes-content {
  display: inline-flex;
  width: auto;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
}
.likes-content > span {
  display: flex;
  position: relative;
  justify-content: center;
  align-items: center;
  align-content: center;
  font-size: 18px;
  font-weight: 700;
  padding: 0px 14px;
  min-width: 40px;
  height: 40px;
  border-radius: 10px 0px 0px 10px;
  background: rgba(0, 0, 0, 0.1);
}
.likes-content > button {
  display: inline-flex;
  width: auto;
  height: 40px;
  border-radius: 0px 10px 10px 0px;
  color: var(--white);
  position: relative;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  gap: 8px;
  padding: 0px 20px 0px 12px;
  background: var(--pink);
  outline: none;
}
.likes-content > button span {
  font-size: 14px;
  font-weight: 700;
}

.footer {
  position: fixed;
  width: 100%;
  height: 76px;
  left: 0px;
  bottom: 0px;
  z-index: 1050;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.footer-drag-area {
  display: flex;
  position: absolute;
  width: 100%;
  left: 0px;
  top: 0px;
  flex-direction: column;
  align-items: center;
  border-top: 1px solid rgba(0, 0, 0, 0.25) !important;
  cursor: ns-resize;
  user-select: none;
  min-height: 20px;
  z-index: 20;
}
.footer-drag-area:before {
  content: "";
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -25px;
  top: 7px;
  width: 50px;
  height: 3px;
  background: var(--black);
}

.footer-drag-area__inner {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.footer-content {
  display: flex;
  position: relative;
  width: 100%;
  max-width: 100%;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  padding: 8.5px 8px;
  margin-bottom: auto;
  margin-top: 14px;
}

.bus {
  display: inline-flex;
  position: relative;
  justify-content: flex-start;
  align-items: center;
  align-content: center;
  flex-shrink: 0;
  flex: 1;
}

.badge {
  display: inline-flex;
  position: relative;
  gap: 5px;
  background: var(--blue);
  color: var(--white);
  border-radius: 20px;
  padding: 6px 10px;
  font-size: 14px;
  font-weight: 500;
  margin-right: 24px;
}
.badge:after {
  content: "";
  width: 24px;
  height: 24px;
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -12px;
  background: url("../../images/arrow-right.svg") no-repeat center center/cover;
}

.text-truncate {
  display: inline-block;
  position: relative;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  max-width: calc(100vw - 230px);
}

.footer-menu {
  display: flex;
  gap: 4px;
  padding: 0 !important;
  margin: 0 !important;
}
.footer-menu img {
  display: block;
}
.footer-menu li {
  display: block;
  width: 34px !important;
  height: 34px !important;
  border-radius: 34px;
  border: 2px solid var(--blue) !important;
  background-color: var(--blue) !important;
}
.footer-menu a,
.footer-menu span {
  display: block;
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  height: 100% !important;
  border-radius: 34px;
  border: none !important;
  flex-shrink: 0;
}

.bottom-bar {
  display: block;
  position: fixed;
  left: 0;
  bottom: 0;
  transform: none;
  width: 100%;
  max-width: none;
  z-index: 1040;
  padding: 8px 10px calc(10px + env(safe-area-inset-bottom, 0px));
  border-radius: 0;
  background: var(--pink);
  backdrop-filter: blur(16px);
  border: none;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.12);
}

.bottom-bar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  max-width: 375px;
  margin: 0 auto;
}

.bottom-bar__link {
  display: flex;
  flex: 1;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 8px 6px;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  transition: background 0.2s ease-in-out, color 0.2s ease-in-out;
}
.bottom-bar__link--active {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}
.bottom-bar__link--active .bottom-bar__icon {
  opacity: 1;
}

.bottom-bar__icon {
  display: block;
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1);
  opacity: 0.6;
}

.bottom-bar__label {
  display: block;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  white-space: nowrap;
}

.video-list-page {
  min-height: 100svh;
}

.video-list-page__section {
  min-height: 100svh;
}

.video-list-page__scroll {
  width: 100%;
  height: 100svh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: contain;
  padding-top: 54px;
  padding-bottom: var(--bottom-bar-offset, 0px);
  scrollbar-gutter: stable;
}

.video-list-page__scroll .container {
  min-height: 100%;
  padding: 0;
}

.map-page {
  min-height: 100svh;
}

.map-page__section {
  padding-top: 54px;
  padding-bottom: var(--bottom-bar-offset, 0px);
  min-height: 100svh;
}

.map-page__content {
  width: 100%;
  height: calc(100svh - 54px - var(--bottom-bar-offset, 0px));
}

.yandex-map-container {
  width: 100%;
  height: 100%;
  background: var(--white);
}

.settings-page {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 0px var(--bottom-bar-offset, 24px);
}

.body.locked {
  overflow-x: hidden;
  overflow-y: hidden;
}

.backdrop {
  transform: translateZ(0);
  will-change: opacity;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  display: grid;
  place-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  z-index: 1000;
  overflow-x: hidden;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  padding: 0px;
  backdrop-filter: blur(8px);
  transition: opacity 0.5s ease-in-out 0s, visibility 0.5s ease-in-out 0s;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
.backdrop.active {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.backdrop:before {
  content: "";
  position: absolute;
  pointer-events: none;
  left: 0px;
  right: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  background: var(--pink);
  opacity: 0.8;
  grid-area: 1/1/2/2;
}
@supports (-webkit-touch-callout: none) and (-webkit-overflow-scrolling: touch) {
  .backdrop:before {
    content: none;
  }
}
@media (min-width: 1280px) {
  .backdrop {
    padding: 80px 10px 40px 10px;
  }
  .backdrop:before {
    top: -80px;
    height: calc(100% + 120px);
  }
}

.popup {
  position: relative;
  transition: 0.5s;
  transform: translate(0px, 50px);
  opacity: 0;
  z-index: 1;
  user-select: none;
  width: 100%;
  pointer-events: none;
  margin-top: auto;
}
.popup.visible {
  opacity: 1;
  transform: translate(0px, 0px);
}

.popup-close {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center;
  position: absolute;
  right: 14px;
  top: 14px;
  width: 34px;
  height: 34px;
  z-index: 2;
  background: url("../../images/close.svg") no-repeat center center/cover;
  transition: transform 0.3s;
  transform: rotate(0deg);
}
.popup-close:hover {
  transform: rotate(90deg);
}

.popup-content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: center;
  text-align: left;
  gap: 10px;
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 768px;
  pointer-events: all;
  user-select: none;
  background: var(--white);
  border-radius: 30px 30px 0px 0px;
  padding: 24px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.4);
}
.popup-content img {
  display: block;
  margin: 0 auto;
  margin-top: 4px;
  max-width: 100%;
}

.popup-title {
  font-weight: 700;
  font-size: 32px;
}

.popup-subtitle {
  font-weight: 400;
  font-size: 16px;
  opacity: 0.5;
  margin: 0;
}
