:export {
  largeDesktop: 1440px;
  desktop: 1370px;
  tablet: 1180px;
  smallTablet: 768px;
  phone: 576px;
  smallPhone: 375px;
}
.PageTitle {
  display: grid;
  grid-template-columns: 28px 1fr 28px;
  grid-template-rows: 28px;
  gap: 16px;
  align-items: center;
  padding: 8px 0;
}
@media (max-width: 1180px) {
  .PageTitle {
    gap: 8px;
    width: 100%;
  }
}
.PageTitle.onlyTitle {
  grid-template-columns: 1fr;
}
.PageTitle.withBackText {
  grid-template-columns: 128px 1fr 28px;
}
@media (max-width: 1180px) {
  .PageTitle.withBackText {
    grid-template-columns: 28px 1fr 28px;
  }
}
@media (max-width: 1180px) {
  .PageTitle.withBackText.withoutClose {
    grid-template-columns: 28px 1fr;
  }
}
.PageTitle__back,
.PageTitle__close {
  width: 28px;
  height: 28px;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 12;
}
.PageTitle__back svg,
.PageTitle__back path,
.PageTitle__close svg,
.PageTitle__close path {
  fill: var(--textPrimary);
}
.PageTitle__back.onlyTitle {
  display: none;
}
.PageTitle__title {
  font-size: 24px;
  line-height: 120%;
  font-weight: 600;
  color: var(--textPrimary);
  white-space: unset;
}
.PageTitle__title.onlyTitle {
  justify-self: start;
}
@media (max-width: 1180px) {
  .PageTitle__title.onlyTitle {
    justify-self: inherit;
  }
}
@media (max-width: 1180px) {
  .PageTitle__title {
    font-size: 18px;
    line-height: 120%;
    font-weight: 600;
    text-align: center;
  }
}
.PageTitle__back {
  display: grid;
  grid-template-columns: 28px 100px;
  align-items: center;
  cursor: pointer;
}
@media (max-width: 1180px) {
  .PageTitle__back {
    display: block;
  }
}
.PageTitle__back_text {
  font-size: 16px;
  line-height: 130%;
  font-weight: 400;
  text-align: left;
  color: var(--textSecondary);
}
@media (max-width: 1180px) {
  .PageTitle__back_text {
    display: none;
  }
}
:export {
  chatwootIndex: 9995;
  chatwootIndexHide: 999;
}
.BottomSheet {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  width: 100vw;
  height: 100%;
  z-index: 9995;
  background: #00000080;
}
.BottomSheet__swipe {
  position: absolute;
  top: -12px;
  width: 40px;
  height: 4px;
  border-radius: 8px;
  background: var(--primary);
  left: 50%;
  transform: translate(-50%);
  pointer-events: none;
}
.BottomSheet__header {
  margin-top: 16px;
  padding: 0 16px;
}
.BottomSheet__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 1001;
  background: var(--bg);
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  touch-action: none;
}
.BottomSheet__content_primary {
  background: var(--bg);
}
.BottomSheet__content_banger-gradient {
  background: var(--winAviatorGradient);
}
.BottomSheet__children {
  padding: 0 16px;
  margin-top: 8px;
  overflow: auto;
  height: calc(100% - 76px);
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-y: none;
}
