/* #wpadminbar{
  display: none;
} */
@media (prefers-color-scheme: dark) {
  .iti {
    --iti-border-color: #5b5b5b;
    --iti-dropdown-bg: #0d1117;
    --iti-icon-color: #aaaaaa;
    --iti-hover-color: #30363d;
  }
}
html {
  margin-top: 0 !important;
}
html,
body {
  overflow-x: hidden;
}
* {
  padding: 0;
  margin: 0;
  border: none;
}
*,
*::after,
*::before {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
a,
a:link,
a:visited {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
aside,
footer,
header,
main,
nav,
section {
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6,
p {
  font-size: inherit;
  font-weight: inherit;
}
ul,
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
img,
svg {
  max-width: 100%;
  height: auto;
}
address {
  font-style: normal;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: rgba(0, 0, 0, 0);
}
input::-ms-clear {
  display: none;
}
button,
input[type="submit"] {
  display: inline-block;
  box-shadow: none;
  background-color: rgba(0, 0, 0, 0);
  background: 0 0;
  cursor: pointer;
}
button:active,
button:focus,
input:active,
input:focus {
  outline: 0;
}
button::-moz-focus-inner {
  padding: 0;
  border: 0;
}
label {
  cursor: pointer;
}
legend {
  display: block;
}
:root {
  --black-color: #000000;
  --white-color: #ffffff;
  --orange-color: #ff9900;
  --orange-hover-color: #ffa92a;
  --grey-color: #cccccc;
  --black2-color: #1b1b1b;
  --dark-grey-color: #666666;
  --red-linear: linear-gradient(90deg, #cc0033 0%, #ff0000 100%);
  --blue-linear: linear-gradient(90deg, #0066ff 0%, #003399 100%);
  --orange-linear: linear-gradient(90deg, #ff9900 0%, #ffcc00 100%);
  --purple-linear: linear-gradient(90deg, #9966ff 0%, #6600cc 100%);
}
body,
html {
  height: 100%;
  font-family: Inter, sans-serif;
  font-weight: 500;
}
html {
  background-color: var(--black-color);
}
* {
  color: var(--white-color);
}
.wrapper {
  height: 100vh;
  display: flex;
  flex-direction: column;
}
.wrapper-container {
  flex: 1 1 auto;
}
[class*="__container"] {
  max-width: 1286px;
  width: 100%;
  margin: 0 auto;
}
.swiper-button-prev {
  left: 0;
}
.swiper-button-next {
  right: 0;
}
.questionnaire__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.questionnaire__top * {
  color: var(--grey-color);
}
.questionnaire__top a {
  transition: color 0.1s ease-in-out;
}
.questionnaire__top a:hover {
  color: var(--orange-color);
}
.search-dropdown__item {
  width: 100%;
}
.search-dropdown__item:hover {
  color: var(--orange-color);
}
.search-dropdown__item a {
  display: flex;
  width: 100% !important;
  transition: color 0.1s ease-in-out;
}
.search-dropdown__item a:hover {
  color: var(--orange-color);
}
.no-scroll {
  overflow: hidden;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Medium.woff2) format("woff2");
  font-weight: 500;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-SemiBold.woff2) format("woff2");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Regular.woff2) format("woff2");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: Inter;
  font-display: swap;
  src: url(../fonts/Inter-Bold.woff2) format("woff2");
  font-weight: 700;
  font-style: normal;
}
.header {
  padding: 20px 0;
}
.header__blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background-color: var(--black-color);
}
.header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  z-index: 9;
}
.header__below.show-mobile {
  display: none;
}
.header .burger-icon {
  line-height: 0;
  display: none;
}
.header__left {
  display: flex;
  align-items: center;
  gap: 32px;
}
.header .menu__list {
  display: flex;
  align-items: center;
  gap: 22px;
}
.header .menu__list a {
  font-weight: 400;
  transition: color 0.1s ease-in-out;
}
.header .menu__list a:hover {
  color: var(--orange-color);
}
.header .menu__item a.active {
  color: var(--orange-color);
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header .languages__item {
  display: flex;
  align-items: center;
  gap: 6px;
  position: relative;
  cursor: pointer;
}
.header .languages__item.open .languages__dropdown {
  pointer-events: auto;
  max-height: 200px;
}
.header .languages__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 16px;
  background: #333;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease-in-out;
  width: 62px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  pointer-events: none;
  z-index: 10;
  text-align: center;
  border-radius: 6px;
}
.header .languages__dropdown a.active {
  color: #f90;
}
.header .languages__dropdown-pad {
  padding: 10px 14px;
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 10px;
}
.header .languages__dropdown * {
  color: var(--white-color);
  transition: color 0.1s ease-in-out;
}
.header .languages__dropdown *:hover {
  color: var(--orange-color);
}
.header .languages-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.header .languages-icon use {
  color: var(--orange-color) !important;
}
.header .burger-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1b1b1b;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  transition: -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, -webkit-transform 0.5s ease-in-out;
  z-index: 8;
}
.header .burger-menu.active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.header .burger-menu.active .burger-icon.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 15px;
  height: 15px;
  background-color: red;
}
.header .burger-menu__blocks {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0 16px;
  height: 98%;
}
.header .burger-menu__below {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 5px;
  padding-top: 16px;
  border-top: 1px solid #333;
}
.header .burger-menu__below .languages {
  padding: 10px 14px;
  margin-top: 0 !important;
}
.header .burger-menu .menu {
  margin-top: 65px;
  padding-top: 22px;
  border-top: 1px solid #333;
}
.header .burger-menu .menu__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}
.header .burger-menu .menu__list a {
  font-weight: 500;
  font-size: 20px;
  line-height: 110%;
}
.header .burger-menu .languages {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
}
.header .burger-menu .languages .languages__item.active {
  color: var(--orange-color);
  font-weight: 700;
}
.header .burger-menu .languages .languages__separator {
  opacity: 0.5;
}
.header .burger-icon {
  cursor: pointer;
  position: relative;
  z-index: 1000;
  width: 24px;
  height: 24px;
}
.header .burger-icon img {
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease;
}
.header .burger-icon.active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  font-weight: 700;
  -webkit-transform: translate(-50%, -50%) rotate(0);
  transform: translate(-50%, -50%) rotate(0);
  background-image: url(../img/svg/close-circle.svg);
}
.header .burger-icon.active img {
  opacity: 0;
}
.header .account-settings .search-dropdown__item {
  min-width: 160px;
}
.header .account-settings .search-dropdown__item button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: #000;
}
.header .account-settings .search-dropdown__item button * {
  color: var(--white-color) !important;
}
.header .account-settings.show-mobile {
  display: none;
}
.header2 .header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  width: 100%;
  z-index: 999999;
}
.header2 .account-settings {
  width: 160px;
}
.header2 .account-settings .search-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 160px;
  gap: 10px;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.header2 .account-settings .account-form__input:focus {
  background-color: #333;
  border: none;
  outline: 0;
}
.header2 .account-settings .search-dropdown__item {
  position: relative;
}
.header2 .account-settings .search-dropdown__inner {
  position: absolute !important;
}
.header2 .account-settings .search-dropdown__list {
  position: absolute !important;
  width: 100%;
}
.header2 .account-settings .search-dropdown__item button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background-color: rgba(0, 0, 0, 0);
}
.btn {
  padding: 10px 14px;
  border-radius: 6px;
  transition: background-color 0.2s ease-in-out;
}
.log-in {
  background-color: #333;
}
.log-in:hover {
  background-color: var(--dark-grey-color);
}
.filter,
.register {
  background-color: var(--orange-color);
  color: var(--black-color);
}
.filter:hover,
.register:hover {
  background-color: #d37f00;
}
.account-btn {
  display: flex;
  align-items: center;
  padding: 7px 14px;
  gap: 6px;
  border-radius: 6px;
  background: none;
  border: none;
  cursor: pointer;
  color: inherit;
}
.account-btn:hover span,
.account-btn:hover use {
  color: var(--orange-color);
}
.account-btn span {
  font-weight: 400;
  font-size: 16px;
}
.account-dropdown {
  position: relative;
}
.account-dropdown__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 180px;
  background: var(--black2-color, #1a1a1a);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 999;
}
.account-dropdown.is-open .account-dropdown__menu {
  display: block;
}
.account-dropdown__item {
  display: block;
  padding: 11px 16px;
  font-size: 15px;
  color: #fff;
  transition: background 0.2s;
}
.account-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.07);
  color: var(--orange-color);
}
.account-dropdown__item--logout {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}
.footer {
  background-color: var(--black2-color);
  padding: 24px 0;
  margin-top: 40px;
}
.footer__blocks {
  padding-bottom: 18px;
}
.footer__left-top {
  display: flex;
  align-items: start;
  gap: 80px;
  padding-bottom: 12px;
}
.footer__top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}
.footer__right-top {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__right-top .buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer .social-info {
  display: flex;
  flex-direction: column;
  align-items: end;
  gap: 8px;
}
.footer .social-info a {
  transition: color 0.1s ease-in-out;
}
.footer .social-info a:hover {
  color: var(--orange-color);
}
.footer .social-info .mail {
  font-weight: 600;
  font-size: 18px;
}
.footer .social-info .help {
  color: var(--grey-color);
}
.footer-menu {
  padding-top: 7px;
}
.footer-menu__blocks {
  display: flex;
  gap: 82px;
}
.footer-menu__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer-menu__title {
  font-weight: 600;
  font-size: 18px;
}
.footer-menu__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-menu__item a {
  font-weight: 600;
  transition: color 0.1s ease-in-out;
}
.footer-menu__item a:hover {
  color: var(--orange-color);
}
.footer__below {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
}
.footer .register {
  white-space: nowrap;
}
.footer__languages {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer__languages__item {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
.footer__languages-icon {
  width: 16px;
  min-width: 16px;
  height: 16px;
}
.footer__languages-icon use {
  color: var(--orange-color) !important;
}
.footer__languages__item.active {
  color: var(--orange-color);
}
.footer__languages .up {
  background-color: #333;
}
.footer__languages .up:hover {
  background-color: var(--dark-grey-color);
}
.footer .register {
  font-weight: 600;
}
.footer__copyright {
  border-top: 1px solid #333;
  padding-top: 18px;
}
.footer__copyright * {
  font-weight: 400;
  font-size: 14px;
  line-height: 130%;
  color: var(--grey-color);
}
.footer__copyright .data__descript {
  display: none;
}
.footer__copyright .toggle-text {
  font-weight: 400;
  text-decoration: underline;
  color: #ccc;
  transition: color 0.1s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.footer__copyright .toggle-text:hover {
  color: var(--orange-color);
}
.footer .footer-mobile {
  display: none;
  padding-bottom: 24px;
}
.footer .footer-mobile__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}
.footer .footer-mobile__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}
.footer .footer-mobile__top .logo {
  min-width: 125px;
  width: 125px;
  height: 32px;
}
.footer .footer-mobile .social-info {
  align-items: start;
}
.footer .footer-mobile .copyright {
  color: #ccc;
}
.footer .footer-mobile .footer__right-top {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: left;
}
.faq {
  padding: 40px 0;
}
.faq__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.faq__title {
  font-weight: 600;
  font-size: 42px;
  text-align: center;
  line-height: 110%;
}
.faq__list {
  background-color: var(--black2-color);
  padding: 44px 44px 54px 44px;
  border-radius: 6px;
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.faq__item {
  width: 100%;
}
.faq__item.active .faq__arrow {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.faq__item.active .faq__arrow use {
  color: var(--orange-color) !important;
}
.faq__item .faq__arrow {
  transition: fill 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, fill 0.3s ease;
  transition: transform 0.3s ease, fill 0.3s ease, -webkit-transform 0.3s ease;
}
.faq__item .faq__arrow use {
  color: var(--white-color) !important;
}
.faq__item-pad {
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: start;
  border-bottom: 1px solid #333;
}
.faq__question {
  display: flex;
  align-items: center;
  width: 100%;
  justify-content: space-between;
  gap: 10px;
}
.faq__question span {
  font-weight: 500;
  font-size: 24px;
  text-align: left;
}
.faq__question svg {
  color: var(--white-color) !important;
  min-width: 14px;
  width: 14px;
  height: 8px;
}
.faq__question svg use {
  color: var(--orange-color) !important;
}
.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq__answer p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  padding-top: 12px;
  color: var(--grey-color);
}
.modal-login {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  z-index: 999999;
}
.modal-login .account-form__btn {
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
}
.modal-login .account-form__btn:hover {
  background-color: var(--orange-hover-color);
}
.modal-login .account-form__body {
  gap: 16px;
}
.modal-login textarea {
  height: 130px;
  resize: none;
}
.modal-login .account-form__group {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
}
.modal-login .account-form__group h2 {
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}
.modal-login .account-form__group a {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  transition: color 0.1s ease-in-out;
}
.modal-login .account-form__group a:hover {
  color: var(--orange-color);
}
.modal-login .account-form__group2 {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.modal-login .account-form__group2 .register-girl {
  background-color: #333;
  color: #fff;
  transition: all 0.1s ease-in-out;
  font-weight: 500;
}
.modal-login .account-form__group2 .register-girl:hover {
  background-color: #666;
}
.modal-login .check {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
}
.modal-login .check input[type="checkbox"] {
  display: none;
}
.modal-login .check label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.modal-login .check .check-icon__border {
  border: 1px solid #666;
  transition: all 0.2s ease;
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-login .check .check-icon__border .check-icon {
  position: absolute;
  display: none;
  width: 15px;
  transition: all 0.3s ease;
  height: 15px;
}
.modal-login .check input[type="checkbox"]:checked + label img.check-icon {
  display: flex;
}
.modal-login .check input[type="checkbox"]:checked + label img.check-icon use {
  color: var(--orange-color) !important;
}
.modal-login.active {
  opacity: 1;
  visibility: visible;
}
.modal-login__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 999;
}
.modal-login.active .modal-login__overlay {
  opacity: 1;
}
.modal-login__content {
  border-radius: 6px;
  padding: 32px;
  opacity: 0;
  background-color: #181818;
  -webkit-transform: translateY(-40px);
  transform: translateY(-40px);
  transition: opacity 0.4s ease, -webkit-transform 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
  z-index: 1001;
  margin: 15px;
  max-width: 304px;
  width: 100%;
}
.modal-login.active .modal-login__content {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}
.registration-message {
  position: fixed;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.registration-message.active {
  opacity: 1;
  pointer-events: all;
}
.registration-message__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 999;
  pointer-events: none;
}
.registration-message__overlay.active {
  opacity: 1;
  pointer-events: all;
}
.registration-message__blocks {
  padding: 42px 32px;
  border-radius: 6px;
  background-color: #1b1b1b;
  max-width: 360px;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 42px;
  z-index: 1001;
  opacity: 0;
  -webkit-transform: scale(0.95);
  transform: scale(0.95);
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition: opacity 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
}
.active .registration-message__blocks {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}
.registration-message__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.registration-message__top h3 {
  font-weight: 600;
  font-size: 28px;
  line-height: 110%;
}
.registration-message__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 500;
  font-size: 16px;
  line-height: 120%;
  margin-left: 20px;
}
.registration-message__close {
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
  background: 0 0;
  border: none;
}
.registration-message__btn {
  padding: 10px;
  border-radius: 6px;
  background-color: #f90;
  font-weight: 600;
  font-size: 16px;
  color: var(--black-color);
  transition: background-color 0.1s ease-in-out;
}
.registration-message__btn:hover {
  background-color: var(--orange-hover-color);
}
.faq {
  padding: 40px 0;
}
.search {
  margin-top: 20px;
}
.search__wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 20px;
  position: relative;
  border-bottom: 1px solid #333;
}
.search__wrapper .show-mobile {
  display: none;
}
.search__wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.search__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search__title {
  font-weight: 600;
  font-size: 46px;
}
.search .check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.search .check input[type="checkbox"] {
  display: none;
}
.search .check label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.search .check .check-icon__border {
  border: 1px solid #666;
  transition: all 0.2s ease;
  width: 24px;
  height: 24px;
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search .check .check-icon__border .check-icon {
  position: absolute;
  display: none;
  width: 15px;
  transition: all 0.3s ease;
  height: 15px;
}
.search .check input[type="checkbox"]:checked + label img.check-icon {
  display: flex;
}
.search .check input[type="checkbox"]:checked + label img.check-icon use {
  color: var(--orange-color) !important;
}
.search .show-mobile.parameters {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%;
}
.search .parameters__search {
  transition: all 0.3s ease;
}
.search .parameters__item {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  background-color: #333;
  padding: 10px 14px;
  border-radius: 6px;
  height: 41.2px;
  font-weight: 600;
}
.search .parameters__item.active {
  /* background-color: var(--orange-color); */

  border-radius: 6px 6px 0 0;
}
.search .parameters__item.active * {
  color: var(--orange-color);
}
.search .parameters__item .body-icon {
  width: 14px;
  height: 18px;
}
.search .parameters .parameters__dropdown {
  position: absolute;
  top: 68%;
  left: 0;
  background: #1b1b1b;
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2509803922);
  border-radius: 0;
  padding: 32px;
  width: 100%;
  display: none;
  z-index: 999;
}
.search .parameters .parameters__dropdown__blocks {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  padding-bottom: 20px;
  /* border-bottom: 1px solid #333; */
  /* margin-bottom: 16px; */
}
.search .parameters .parameters__dropdown .choose-categories__top h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  /* margin-bottom: 12px; */
}
.search .parameters .parameters__dropdown .choose-categories__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.search .parameters .parameters__dropdown .custom-toggle-block__item {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 6px 8px;
  background-color: #333;
  border-radius: 3px;
  border: 1px solid transparent;
  width: auto;
  text-align: center;
  justify-content: center;
  cursor: pointer;
}
.search .parameters .parameters__dropdown .custom-toggle-block__item p {
  color: #fff;
}
.search .parameters .parameters__dropdown .custom-toggle-block__item.active {
  background-color: #333;
  border-color: var(--orange-color);
}
.search .parameters .parameters__dropdown .custom-toggle-block__item.active * {
  color: var(--orange-color);
}
.search .parameters .parameters__dropdown .custom-toggle-block__item img {
  width: 14px;
  height: 11px;
}
.search .parameters .parameters__dropdown .custom-toggle-block__item span {
  font-weight: 500;
  font-size: 14px;
  text-transform: lowercase;
}
.search .parameters .parameters__dropdown__below {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
}
.search .parameters .parameters__dropdown__below .filter {
  /* width: 186px; */
  text-align: center;
}
.search .parameters .parameters__dropdown .beat-filter {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: transparent;
  padding: 10px 14px;
  height: 41.2px;
  font-weight: 600;
  padding-top: 11px;

  background: #333;
  transition: opacity 0.2s ease-in-out;
}
.search .parameters .parameters__dropdown .beat-filter:hover {
  opacity: 0.75;
}
.search .parameters .parameters__dropdown .beat-filter span {
  font-weight: 500;
  font-size: 16px;
}
.search .parameters .parameters__dropdown.active {
  display: block;
}

.search .parameters .parameters__dropdown select.account-form__input {
  width: 100%;
  background: #333;
  border: 1px solid transparent;
  border-radius: 3px;
  color: var(--white-color);
  padding: 6px 30px 6px 8px;
  font-size: 14px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
}
.filter-multiselect {
  position: relative;
  width: 100%;
}
.filter-multiselect__toggle {
  height: 41.2px;
  width: 100%;
  background: #333;
  border: none;
  border-radius: 6px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
  text-align: left;
  transition: background 0.15s, border-radius 0.15s;
}
.filter-multiselect.is-open .filter-multiselect__toggle {
  background: #333;
  border-radius: 6px 6px 0 0;
}
.filter-multiselect__label {
  flex: 1;
  color: #ccc;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.1;
}
.filter-multiselect__arrow {
  flex-shrink: 0;
  transition: transform 0.15s;
}
.filter-multiselect.is-open .filter-multiselect__arrow {
  transform: rotate(180deg);
}
.filter-multiselect__dropdown {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #333;
  border-radius: 0 0 6px 6px;
  padding: 0 8px 10px;
  flex-direction: column;
  gap: 10px;
  z-index: 200;
  max-height: 111px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff9900 #333;
}
.filter-multiselect__dropdown::-webkit-scrollbar {
  width: 3px;
}
.filter-multiselect__dropdown::-webkit-scrollbar-track {
  background: #333;
  border-radius: 10px;
}
.filter-multiselect__dropdown::-webkit-scrollbar-thumb {
  background: #ff9900;
  border-radius: 10px;
}
.filter-multiselect.is-open .filter-multiselect__dropdown {
  display: flex;
}
.filter-multiselect__dropdown::before {
  content: "";
  display: block;
  height: 1px;
  background: #333;
  width: 100%;
  margin-bottom: 0;
  flex-shrink: 0;
}
.filter-multiselect__item {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  line-height: 1.1;
  padding: 2px 0;
}
.filter-multiselect__item span {
  font-size: 14px;
  font-weight: 500;
  color: #ccc;
  line-height: 1.1;
  white-space: nowrap;
}

.filter-multiselect__item.is-checked span,
.filter-multiselect__item:hover span {
  color: #ff9900;
}
.filter-multiselect__check {
  flex-shrink: 0;
  opacity: 0;
}
.filter-multiselect__item.is-checked .filter-multiselect__check {
  opacity: 1;
}
.search-badge {
  margin-top: 16px;
  overflow: hidden;
}
.search-badge__slider {
  position: relative;
}
.search-badge__slide {
  background-color: var(--black2-color);
  padding: 6px 8px;
  border-radius: 3px;
  font-weight: 500;
  font-size: 14px;
  text-transform: lowercase;
  width: auto;
  white-space: nowrap;
  color: #ccc;
}
.search-badge__slide.active {
  background-color: var(--orange-color);
  font-weight: 500;
  color: var(--black2-color);
}
.search-badge .search-badge__next,
.search-badge .search-badge__prev {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  min-width: 30px;
  width: 30px;
  height: 27px;
  box-shadow: -2px 0 10px 0 rgba(0, 0, 0, 0.2509803922);
  background-color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  color: #fff;
  border-radius: 3px;
  transition: background-color 0.2s ease-in-out;
}
.search-badge .search-badge__next:hover,
.search-badge .search-badge__prev:hover {
  background-color: var(--dark-grey-color);
}
.search-badge .search-badge__next img,
.search-badge .search-badge__prev img {
  -o-object-fit: contain;
  object-fit: contain;
}
.search-badge .search-badge__prev {
  border-radius: 3px;
  left: 0;
  top: 0;
  height: 100%;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}
.search-badge .search-badge__next {
  right: -1px;
  top: 0;
  border-radius: 3px;
  min-width: 30px;
  width: 30px;
  height: 100%;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
.search-badge .search-badge__next::after,
.search-badge .search-badge__prev::after {
  font-size: 16px;
  font-weight: 600;
}
.search-badge .swiper-button-disabled {
  display: none !important;
}
.search-dropdown__blocks {
  display: flex;
  align-items: center;
  /* flex-wrap: wrap; */
  gap: 12px;
}
.search-dropdown__item {
  position: relative;
}
.search-dropdown__item span {
  font-weight: 500;
}
.search-dropdown__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 120px;
  gap: 10px;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.search-dropdown__toggle:hover {
  background-color: var(--dark-grey-color);
}
.search-dropdown__toggle img {
  transition: -webkit-transform 0.25s ease;
  transition: transform 0.25s ease;
  transition: transform 0.25s ease, -webkit-transform 0.25s ease;
}
.search-dropdown__toggle.open img {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.search-dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  height: 0;
  pointer-events: none;
  transition: height 0.25s ease;
  z-index: 999;
  width: 155px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-radius: 6px;
}
.search-dropdown__list * {
  color: var(--white-color);
  font-weight: 400;
}
.search-dropdown__inner {
  padding: 8px 12px;
  display: flex;
  border: 1px solid rgba(0, 0, 0, 0.1019607843);
  flex-direction: column;
  gap: 10px;
  background: var(--white-color);
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.2509803922);
  background-color: #333 !important;
  border-radius: 6px;
  margin-top: 5px;
}
.search-dropdown__item.open .search-dropdown__list {
  pointer-events: auto;
}
.girls-padding {
  padding-top: 40px;
}
.girls__blocks {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 20px;
}
.girls .see-more {
  width: 238px;
  display: flex;
  margin: 0 auto;
  padding: 10px;
  margin-top: 50px;
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
}
.girls .see-more:hover {
  background-color: var(--orange-hover-color);
}
.girl-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.girl-item .mobile-show {
  display: none;
}
.girl-item__below,
.girl-item__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.girl-item__below .mobile-show {
  display: none !important;
}
.girl-item__below * {
  /* color: #ccc; */
}
.girl-item__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.girl-item__info .number {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #fff;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 6px;
  white-space: nowrap;
  transition: all 0.2s ease-in-out;
}
.girl-item__info .number * {
  color: #fff;
}
.girl-item__info .number p {
  font-size: 16px;
  color: #fff;
}
.girl-item__info .number:hover {
  border: 1px solid #f90;
}
.girl-item__info .name {
  font-weight: 600;
  font-size: 20px;
  flex: 0 0 55%;
}
.girl-item__info * {
  font-weight: 400;
  font-size: 15px;
  gap: 5px;
}
.photo {
  width: 100%;
  position: relative;
  /* min-height: 425px; */
  /* height: 425px; */
  width: 100%;
  height: auto;
  aspect-ratio: 217 / 289;
  border-radius: 6px;
  overflow: hidden;
  height: 100%;
}
.photo .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}
.photo .photo-info {
  position: relative;
  z-index: 7;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.photo .photo-info * {
  /* font-weight: 700; */
  font-size: 12px;
}
.photo .photo-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.photo .photo-info__left {
  display: flex;
  gap: 4px;
  width: 100%;
}
.photo .photo-info .verified {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 6px;
  border-radius: 5px;
  width: 85px;
  justify-content: center;
  position: absolute;
  bottom: 8px;
}
.photo .photo-info .new,
.photo .photo-info .video {
  border-radius: 5px;
  text-transform: uppercase;
  padding: 2px 6px;
}
.photo .photo-info .new {
  background: linear-gradient(100.56deg, #c03 0, #f5134c 100%);
}
.photo .photo-info .video {
  background: linear-gradient(105.57deg, #6687ff 0, #4a4afb 100%);
}
.photo .photo-info .vip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  gap: 2px;
  padding: 4px 8px;
  background: linear-gradient(101.17deg, #d9b54a 0, #d9a91b 100%);
  border-radius: 5px;
  text-transform: uppercase;
}
.progress {
  margin: 44px 0;
}
.progress__blocks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 44px 32px;
  border-radius: 6px;
  background-color: var(--black2-color);
}
.progress__item {
  max-width: 283px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.progress__number {
  font-weight: 600;
  font-size: 38px;
  line-height: 110%;
}
.progress__info {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
}
.girls-second {
  width: 100%;
}
.girls-second .see-more {
  width: 238px;
  display: flex;
  margin: 0 auto;
  padding: 10px;
  margin-top: 50px;
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  border-radius: 6px;
  text-align: center;
  justify-content: center;
  align-items: center;
  color: var(--black-color);
}
.girls-second .see-more:hover {
  background-color: var(--orange-hover-color);
}
.home-page .faq {
  padding: 82px 0 40px 0;
}
.home-page .search-dropdown__item {
  width: 100%;
}
.home-page .search-dropdown__toggle {
  min-width: 120px;
  gap: 10px;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.addition-pad .show-mobile2,
.parameters .show-mobile2 {
  display: none;
}
.category .new-models {
  padding-top: 30px;
}
.category .new-models__blocks {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* padding: 0 28px; */
}
.category .new-models__top {
  display: none;
}
.category .new-models__top h2 {
  font-weight: 600;
  font-size: 38px;
  display: flex;
  margin: 0 auto;
}
.category .new-models__wrap {
  display: flex;
  align-items: center;
  gap: 15px;
  width: 100%;
  margin: 0 auto;
}
.category .new-models__wrap .swiper-slide {
  width: 155px;
}
.category .new-models__wrap .photo {
  /* min-height: 275px;
  height: 275px; */
}
.category .new-models__wrap .swiper-button-next,
.category .new-models__wrap .swiper-button-prev {
  position: absolute;
  font-weight: 600;
  /* border: 2px solid #fff; */
  padding: 15px 20px;
  /* background: rgba(0, 0, 0, 0.4); */
  border-radius: 100px;
  margin-top: -45px;
  transition: background-color 0.2s ease-in-out;
}
.category .new-models__wrap .swiper-button-next:hover,
.category .new-models__wrap .swiper-button-prev:hover {
  /* background: #fff; */
}
.category .new-models__wrap .swiper-button-next:hover::after,
.category .new-models__wrap .swiper-button-next:hover::after,
.category .new-models__wrap .swiper-button-prev:hover::after,
.category .new-models__wrap .swiper-button-prev:hover::after {
  /* color: var(--black-color); */
}
.category .new-models__wrap .swiper-button-prev {
  left: 64px;
}
.category .new-models__wrap .swiper-button-next {
  right: 64px;
}

.category .new-models__wrap .swiper-button-next::after,
.category .new-models__wrap .swiper-button-prev::after {
  color: var(--white-color);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
}
.category .new-models__wrap .new-models-pagination {
  margin-top: 32px;
}
.category .new-models .photo-info {
  padding: 4px;
}
.category .new-models .photo-info * {
  font-size: 10px;
}
.category .new-models .photo-info .verified {
  padding: 5px 6px;
  margin: 0 auto;
}
.category .new-models .girl-item__info * {
  font-size: 14px;
}
.category .new-models .girl-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.category .new-models .girl-item__info {
  display: flex;
  flex-direction: column;
  /* gap: 8px; */
}
.category .new-models .number {
  width: 100%;
  justify-content: center;
}
.category .new-models .number p {
  color: var(--white-color);
}
.category .new-models .girl-item__below {
  display: flex;
  /* flex-direction: column; */
  gap: 8px;
}
.category .new-models .swiper-slide.is-faded {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.3;
  transition: opacity 0.3s, background 0.3s;
}
.category .search-dropdown__item {
  width: 100%;
}
.category .search-dropdown__toggle {
  min-width: 120px;
  gap: 10px;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.category .girls {
  margin: 40px 0;
  margin-top: 0;
}
.pagination-style {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
.pagination-style .swiper-pagination-bullet {
  width: 17px;
  height: 6px;
  background: #333;
  opacity: 1;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.pagination-style .swiper-pagination-bullet-active {
  background: var(--white-color);
  width: 30px;
  border-radius: 2px;
}
.model .questionnaire {
  margin: 40px 0 40px 0;
}
.model .questionnaire__blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.model .questionnaire__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.model .questionnaire__top * {
  color: var(--grey-color);
}
.model .questionnaire__top a {
  transition: color 0.1s ease-in-out;
}
.model .questionnaire__top a:hover {
  color: var(--orange-color);
}
.model .questionnaire-girl__blocks {
  display: flex;
  align-items: start;
  gap: 32px;
}
.model .questionnaire-girl__carousel {
  max-width: 350px;
  width: 100%;
}
.model .questionnaire-girl__carousel img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.model .questionnaire-girl .girl-info__top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.model .questionnaire-girl .girl-info__block-top2 {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.model .questionnaire-girl .girl-info__block-top2 img {
  width: 40px;
  height: 40px;
}
.model .questionnaire-girl .girl-info__block-top2 p {
  font-weight: 600;
  font-size: 24px;
}
.model .questionnaire-girl .girl-info ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.model .questionnaire-girl .girl-info ul li {
  font-weight: 400;
}
.model .questionnaire-girl .girl-info .verified-photo {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 6px 8px;
  background: rgba(0, 0, 0, 0.2);
  border: 1px solid #fff;
  border-radius: 5px;
}
.model .questionnaire-girl .girl-info .verified-photo p {
  font-size: 14px;
}
.model .questionnaire-girl .girl-info .data {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.model .questionnaire-girl .girl-info .data__name {
  display: flex;
  align-items: end;
  gap: 8px;
}
.model .questionnaire-girl .girl-info .data__name h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
}
.model .questionnaire-girl .girl-info .data__name p {
  font-weight: 600;
  font-size: 20px;
}
.model .questionnaire-girl .girl-info .data__descript * {
  font-weight: 400;
  line-height: 130%;
  color: var(--grey-color);
}
.model .questionnaire-girl .girl-info .data__descript .hidden-text {
  display: flex;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.model .questionnaire-girl .girl-info .data__descript .hidden-text.active {
  opacity: 1;
}
.model .questionnaire-girl .girl-info .data .show-mobile {
  display: none;
}
.model .questionnaire-girl .girl-info .data .toggle-text {
  font-weight: 400;
  text-decoration: underline;
  color: var(--white-color);
  transition: color 0.1s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.model .questionnaire-girl .girl-info .data .toggle-text:hover {
  color: var(--orange-color);
}
.model .questionnaire-girl .girl-info__below {
  display: flex;
  justify-content: space-between;
  gap: 23px;
  margin-top: 34px;
}
.model .questionnaire-girl .girl-info__block {
  background-color: var(--black2-color);
  padding: 28px 22px;
  border-radius: 6px;
  min-height: 470px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.model .questionnaire-girl .girl-info__block-top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.model .questionnaire-girl .girl-info__block-below {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.model .questionnaire-girl .girl-info__block-below span {
  font-weight: 600;
}
.model .questionnaire-girl .girl-info__block-below .adress {
  color: var(--orange-color);
}
.model .model-slider {
  border-radius: 6px;
  margin-bottom: 10px;
}
.model .model-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.model .thumbs-slider .swiper-slide img {
  border-radius: 6px;
  /* height: 110px; */

  aspect-ratio: 217 / 289;
}
.model .swiper-button-next,
.model .swiper-button-prev {
  position: absolute;
  font-weight: 600;
  border: 2px solid #fff;
  padding: 15px 20px;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 100px;
  transition: background-color 0.2s ease-in-out;
}
.model .swiper-button-next:hover,
.model .swiper-button-prev:hover {
  background: #fff;
}
.model .swiper-button-next:hover::after,
.model .swiper-button-next:hover::after,
.model .swiper-button-prev:hover::after,
.model .swiper-button-prev:hover::after {
  color: var(--black-color);
}
.model .swiper-button-prev {
  left: 8px;
}
.model .swiper-button-next {
  right: 8px;
}
.model .swiper-button-next::after,
.model .swiper-button-prev::after {
  color: var(--white-color);
  font-weight: 600;
  transition: all 0.2s ease-in-out;
  font-size: 16px;
}
.model .photo {
  position: relative;
  /* min-height: 628px; */
  /* height: 628px; */
  z-index: 0;
}
.model .photo .bg {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  -o-object-fit: cover;
  object-fit: cover;
}
.model .photo .photo-info {
  position: relative;
  z-index: 99;
  padding: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  width: 100%;
}
.model .photo .photo-info * {
  font-weight: 700;
  font-size: 12px;
}
.model .photo .photo-info__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.model .photo .photo-info__left {
  display: flex;
  gap: 4px;
  width: 100%;
}
.model .photo .photo-info .verified {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 700;
  font-size: 12px;
  border: 1px solid #fff;
  background: rgba(0, 0, 0, 0.2);
  padding: 4px 6px;
  border-radius: 5px;
  width: 85px;
  position: absolute;
  -webkit-transform: translateX(0);
  transform: translateX(0);
  left: 8px;
  bottom: 8px;
}
.model .photo .photo-info .new,
.model .photo .photo-info .video {
  border-radius: 5px;
  text-transform: uppercase;
  padding: 4px 6px;
}
.model .photo .photo-info .new {
  background: linear-gradient(100.56deg, #c03 0, #f5134c 100%);
}
.model .photo .photo-info .video {
  background: linear-gradient(105.57deg, #6687ff 0, #4a4afb 100%);
}
.model .photo .photo-info .vip {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 auto;
  gap: 2px;
  padding: 4px 8px;
  background: linear-gradient(101.17deg, #d9b54a 0, #d9a91b 100%);
  border-radius: 5px;
  text-transform: uppercase;
}
.model .thumbs-slider .swiper-slide.is-faded {
  background: rgba(0, 0, 0, 0.2);
  opacity: 0.4;
  transition: opacity 0.3s, background 0.3s;
}
.model .opening-hours {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.model .opening-hours__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.model .opening-hours__item * {
  font-weight: 400;
  font-size: 16px;
}
.model .opening-hours {
  padding: 0 0;
}
.social__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social__list a {
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.1s ease-in-out;
}
.social__list a:hover {
  text-decoration: underline;
}
.social__list .tel {
  transition: all 0.1s ease-in-out;
}
.social__list .tel:hover {
  text-decoration: none;
}
.social__list .tel {
  background-color: var(--orange-color);
  padding: 10px 14px;
  border-radius: 6px;
  transition: background-color 0.1s ease-in-out;
}
.social__list .tel:hover {
  background-color: var(--orange-hover-color);
}
.social__list .tel p {
  color: var(--black-color);
  font-size: 18px;
  font-weight: 600;
}
.social__addition {
  display: flex;
  align-items: center;
  gap: 20px;
}
.social__addition a:hover p {
  text-decoration: underline;
}
.contact {
  padding-bottom: 40px;
}
.contact__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid #333;
}
.contact__top h2 {
  font-weight: 600;
  font-size: 24px;
}
.contact__top .social {
  /* width: 100%; */
  /* display: flex; */
  /* justify-content: end; */
}
.contact__top .social__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact .swiper-button-disabled {
  display: none !important;
}
.swiper-button-next::after,
.swiper-button-prev::after {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}
.podniky-page .questionnaire {
  margin-bottom: 10px;
}
.podniky-page .search-dropdown__item {
  width: 100%;
}
.podniky-page .search-dropdown__toggle {
  min-width: 120px;
  gap: 10px;
  background-color: #333;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.podniky-page .podniky {
  padding: 0px 0 42px 0;
}
.podniky-page .podniky__blocks {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.podniky-page .podniky__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 44px;
  -webkit-column-gap: 18px;
  -moz-column-gap: 18px;
  column-gap: 18px;
}
.podniky-page .podniky__item {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: var(--black2-color);
  border-radius: 6px;
  padding: 22px;
}
.podniky-page .podniky__item .photo {
  min-height: 259px;
  height: 259px;
}
.podniky-page .podniky__item .swiper-slide {
  width: 135px;
}
.podniky-page .podniky__item .see-all {
  padding: 10px;
  background-color: #333;
  border-radius: 6px;
  text-align: center;
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  font-size: 16px;
}
.podniky-page .podniky__item .see-all:hover {
  background-color: var(--orange-color);
  color: var(--black-color);
}
.podniky-page .podniky__item .name {
  font-weight: 500 !important;
}
.podniky-page .podniky__item .photo-info {
  padding: 4px;
}
.podniky-page .podniky__item .verified {
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 80px;
  justify-content: center;
  align-items: center;
}
.podniky-page .podniky__top {
  display: flex;
  align-items: center;
  gap: 25px;
}
.podniky-page .podniky__img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
}
.podniky-page .podniky__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.podniky-page .podniky__info {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
}
.podniky-page .podniky__info-name {
  display: flex;
  align-items: end;
  gap: 8px;
}
.podniky-page .podniky__info-name h2 {
  font-weight: 500;
  font-size: 24px;
  line-height: 100%;
}
.podniky-page .podniky__info-name p {
  font-weight: 500;
  font-size: 16px;
  color: #ccc;
}
.podniky-page .podniky__info-social__list {
  display: flex;
  align-items: center;
  gap: 20px;
}
.podniky-page .podniky__info-social__list li a {
  display: flex;
  align-items: center;
  gap: 6px;
}
.podniky-page .podniky__info-social__list li a:hover {
  text-decoration: underline;
}
.podniky-page .podniky__info-social__list li a img {
  width: 24px;
  height: 24px;
}
.podniky-page .podniky__info-social__addition {
  display: flex;
  gap: 16px;
}
.podniky-page .podniky .number {
  display: flex;
  align-items: center;
  gap: 4px;
  border: 1px solid #fff;
  padding: 5px 10px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.2s ease-in-out;
}
.podniky-page .podniky .number:hover {
  text-decoration: none;
}
.podniky-page .podniky .number img {
  height: 14px;
  width: 10px;
}
.podniky-page .podniky .number:hover {
  border: 1px solid #f90;
}
.podniky-page .podniky .podniky-slider {
  width: 100%;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.podniky-page .podniky .podniky-slider .photo-info * {
  font-size: 10px;
}
.podniky-page .podniky .podniky-slider .girl-item {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.podniky-page .podniky .podniky-slider .girl-item * {
  font-size: 14px;
}
.podniky-page .podniky .podniky-slider .photo {
  width: 100%;
  /* min-height: 235px;
  height: 235px; */
  -o-object-fit: cover;
  object-fit: cover;
}
.podniky-page .podniky .podniky-slider .photo * {
  font-size: 10px;
}
.podniky-page .podniky .podniky-slider .photo-info__top {
  align-items: start;
}
.podniky-page .podniky .see-more {
  background-color: var(--orange-color);
  color: var(--black-color);
  font-weight: 600;
  transition: background-color 0.1s ease-in-out;
  margin: 0 auto;
  display: flex;
  max-width: 238px;
  width: 100%;
  text-align: center;
  justify-content: center;
  margin-top: 44px;
}
.podniky-page .podniky .see-more:hover {
  background-color: var(--orange-hover-color);
}
.podniky-page .podniky .photo-info__left {
  display: flex;
  flex-direction: column;
  width: auto;
  gap: 4px;
}
.podniky-page .podniky .photo-info__left .new {
  width: 36px;
  text-align: center;
}
.register-model1-page .search-dropdown__inner,
.register-page .search-dropdown__inner {
  min-height: 100px;
  overflow-y: auto;
  overflow-x: hidden;
}
.registration-options__blocks {
  display: flex;
  justify-content: space-between;
  gap: 32px;
}
.registration-options__block {
  padding: 44px 35px;
  width: 100%;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  background-color: var(--black2-color);
}
.page-template-register-agency-step-1 .registration-options__block {
  padding: 0;
}
.registration-options__block ul {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 14px;
}
.registration-options__block ul li {
  display: flex;
  align-items: center;
  gap: 4px;
}
.registration-options__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}
.registration-options__top h2 {
  font-weight: 600;
  font-size: 40px;
}
.registration-options__top ul {
  align-items: center;
}
.registration-options__note {
  max-width: 368px;
  width: 100%;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
  text-align: center;
}
.registration-options__below {
  display: flex;
  margin: 0 auto;
}
.technical-support {
  margin-top: 40px;
  margin-bottom: 40px;
}
.technical-support__blocks {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background-color: var(--black2-color);
  padding: 35px;
  border-radius: 6px;
}
.technical-support__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.technical-support__left h3 {
  font-weight: 600;
  font-size: 24px;
}
.technical-support__left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.technical-support__right {
  display: flex;
  flex-direction: column;
  text-align: right;
  gap: 16px;
}
.technical-support__addition {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.technical-support__addition a {
  font-weight: 600;
  font-size: 24px;
  text-align: right;
  transition: color 0.1s ease-in-out;
}
.technical-support__addition a:hover {
  color: var(--orange-color);
}
.technical-support .social {
  display: flex;
  align-items: end;
  justify-content: end;
}
.register-model1-page .technical-support {
  margin-top: 80px;
}
.title-block {
  padding: 20px 0 24px 0;
}
.title-block__blocks {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 12px;
}
.title-block__blocks a {
  transition: color 0.1s ease-in-out;
  color: var(--grey-color);
}
.title-block__blocks a:hover {
  color: var(--orange-color);
}
.title-block__blocks h1 {
  font-weight: 600;
  font-size: 46px;
}
.title-block .to-step1 {
  display: none;
}
.register-model-page .technical-support {
  margin-top: 24px;
  margin-bottom: 44px;
}
.register-person__blocks {
  padding: 44px 34px;
  border-radius: 6px;
  background-color: var(--black2-color);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  text-align: center;
}
.register-person__blocks h2 {
  font-weight: 600;
  font-size: 40px;
}
.register-person__top {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 12px;
}
.register-person__top img {
  width: 50px;
  height: 50px;
  margin: 0 auto;
}
.register-person__form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 300px;
  width: 100%;
}
.register-person__form .title {
  font-weight: 600;
  font-size: 24px;
  margin-bottom: 14px;
}
.register-person__form .form-btn {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.register-person__form .form-btn .btn {
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  color: var(--black-color);
}
.register-person__form .form-btn .btn:hover {
  background-color: var(--orange-hover-color);
}
.register-person__form .form-btn p {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}
.register-person__form .form-btn p span {
  color: var(--orange-color);
}
.register-person__form .form-message {
  margin-top: 15px;
  background: #1b1b1b;
  color: rgba(255, 255, 255, 0.8588235294);
  border: 1px solid #f90;
  border-radius: 6px;
  padding: 12px 5px;
  font-size: 13px;
  line-height: 1.4;
  transition: opacity 0.4s ease;
}
.register-person__item {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.register-person .register {
  font-weight: 600;
}
.account-form__wrap {
  border-bottom: 1px solid #333;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.account-form__wrapper {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: start;
}
.account-form__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.account-form__blocks .step-02 {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.account-form .choose-categories,
.account-form .search-parameters,
.account-form .working-hours,
.account-form__block {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding: 44px 34px;
  background-color: var(--black2-color);
  border-radius: 6px;
}
.account-form__subtitle {
  font-weight: 600;
  font-size: 40px;
}
.account-form__progress {
  font-size: 24px;
}
.account-form__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 640px;
  width: 100%;
}
.account-form__step {
  display: flex;
  flex-direction: column;
  gap: 44px;
}
.account-form__header {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.account-form__group {
  display: flex;
  flex-direction: column;
  gap: 15px;
  position: relative;
}
.account-form__group .btn,
.account-form__group .search-dropdown__item,
.account-form__group .search-dropdown__toggle {
  width: 100%;
  max-width: 100%;
}
.account-form .search-dropdown__list {
  width: 100%;
}
.account-form__label {
  font-weight: 600;
  font-size: 24px;
}
.account-form__label.--small {
  font-size: 16px;
  margin-bottom: 5px;
  font-weight: 400;
  display: block;
}
.account-form__input,
.account-form__textarea {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #666;
  background-color: #333;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.password-wrap {
  position: relative;
  width: 100%;
}
.password-wrap .account-form__input {
  padding-right: 42px;
}
.password-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
.password-toggle:hover {
  opacity: 1;
}
.password-toggle img {
  width: 20px;
  height: auto;
}
.account-form__input::-webkit-input-placeholder,
.account-form__textarea::-webkit-input-placeholder {
  color: #ccc;
}
.account-form__input:-ms-input-placeholder,
.account-form__textarea:-ms-input-placeholder {
  color: #ccc;
}
.account-form__input::-ms-input-placeholder,
.account-form__textarea::-ms-input-placeholder {
  color: #ccc;
}
.account-form__input::placeholder,
.account-form__textarea::placeholder {
  color: #ccc;
}
.account-form__input p,
.account-form__textarea p {
  color: #ccc;
}
.account-form__input:focus,
.account-form__textarea:focus {
  border-color: var(--orange-color);
  outline: 0;
}
.account-form__input::-webkit-input-placeholder,
.account-form__textarea::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input:-ms-input-placeholder,
.account-form__textarea:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input::-ms-input-placeholder,
.account-form__textarea::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input::placeholder,
.account-form__textarea::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid #666;
  background-color: #333;
  border-radius: 6px;
  padding: 10px 12px;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  width: 100%;
  transition: border-color 0.2s ease;
}
.account-form__input2:hover {
  background-color: #333;
}
.account-form__input2::-webkit-input-placeholder {
  color: #ccc;
}
.account-form__input2:-ms-input-placeholder {
  color: #ccc;
}
.account-form__input2::-ms-input-placeholder {
  color: #ccc;
}
.account-form__input2::placeholder {
  color: #ccc;
}
.account-form__input2:focus {
  outline: 0;
}
.account-form__input2 p {
  color: #ccc;
}
.account-form__input2::-webkit-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input2:-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input2::-ms-input-placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__input2::placeholder {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.account-form__textarea {
  resize: none;
  height: 115px;
  margin-top: 10px;
}
.account-form__contacts {
  display: flex;
  gap: 14px;
}
.account-form .input-name {
  max-width: 415px;
  width: 100%;
}
.account-form__btns {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}
.account-form__btns a {
  font-size: 18px;
}
.account-form__btns p {
  color: var(--white-color);
}
.account-form__btns p span {
  color: var(--orange-color);
}
.account-form__btns .create-profil,
.account-form__btns .create-profile,
.account-form__btns .save-btn {
  display: flex;
  gap: 4px;
  text-align: center;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  color: var(--black-color);
}
.account-form__btns .create-profil:hover,
.account-form__btns .create-profile:hover,
.account-form__btns .save-btn:hover {
  background-color: var(--orange-hover-color);
}
.account-form__btns .create-profil {
  display: none;
}
.account-form__btns p {
  font-weight: 500;
  color: var(--white-color);
}
.account-form__btns p a {
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}
.account-form__btns p a:hover {
  color: var(--orange-color);
}
.account-form .show-mobile {
  display: none;
}
.custom-toggle-block {
  display: flex;
  align-items: center;
  gap: 12px;
}
.custom-toggle-block__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}
.custom-toggle-block__item {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 10px;
  background-color: #333;
  border-radius: 6px;
  width: 70px;
  text-align: center;
  justify-content: center;
}
.custom-toggle-block__item p {
  color: #fff;
}
.custom-toggle-block__item.active {
  color: var(--orange-color);
}
.custom-toggle-block__item.active .check {
  display: block;
}
.custom-toggle-block__item.active p {
  color: var(--orange-color);
}
.custom-toggle-block__item .check {
  display: none;
}
.category-select {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.category-select__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.category-select__top h2 {
  font-weight: 600;
  font-size: 24px;
}
.category-select__top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
}
.photo-verification__blocks {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: start;
}
.photo-verification__img {
  display: flex;
  align-items: center;
  padding: 6px 8px;
  border-radius: 3px;
  background-color: #333;
  gap: 4px;
}
.photo-verification__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.photo-verification__content h2 {
  font-weight: 600;
  font-size: 24px;
}
.photo-verification__content p {
  max-width: 850px;
  width: 100%;
  font-weight: 400;
  color: #ccc;
}
.photo-verification__content a {
  color: var(--white-color);
  font-weight: 400;
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}
.photo-verification__content a:hover {
  color: var(--orange-color);
}
.explanation {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2px;
  max-width: 510px;
  width: 100%;
  margin-top: 147px;
  padding-bottom: 16px;
}
.explanation::after {
  position: absolute;
  bottom: 0;
  height: 1px;
  width: 100%;
  content: "";
  border-bottom: 1px solid #666;
}
.explanation p {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
}
.register-model01 .registration-options__top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px !important;
}
.register-model01 .registration-options__blocks {
  gap: 24px;
}
.register-model01 .registration-options__block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.register-model01 .registration-options__block2 .registration-options__descript p {
  display: block;
}
.register-model01 .registration-options__descript {
  display: flex;
  flex-direction: column;
  gap: 12px;
  /* max-width: 470px; */
  width: 100%;
}
.register-model01 .registration-options__descript h2 {
  font-weight: 600;
  font-size: 24px;
}
.register-model01 .registration-options__descript p {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
}
.register-model01 .registration-options__descript p a {
  color: var(--white-color);
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}
.register-model01 .registration-options__descript p a:hover {
  color: var(--orange-color);
}
.working-hours__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}
.working-hours__blocks h2 {
  font-weight: 600;
  font-size: 24px;
}
.working-hours .search-dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  margin-top: 10px;
  height: 0;
  pointer-events: none;
  transition: height 0.25s ease;
  z-index: 999;
  width: 160px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.working-hours .search-dropdown__list * {
  color: var(--white-color);
  font-weight: 400;
}
.working-hours .search-dropdown__toggle {
  min-width: 160px;
  padding: 10px 12px;
  color: #ccc;
  border: 1px solid #666;
  background-color: #333 !important;
  background: 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.working-hours .search-dropdown__toggle span {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.working-hours .search-dropdown__toggle img {
  width: 14px;
  height: auto;
}
.working-hours__days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 16px;
}
.working-hours__day {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.working-hours .search-dropdown__list {
  margin-top: 0;
}
.working-hours .search-dropdown__inner {
  margin-top: 10px;
}
.search-dropdown__inner::-webkit-scrollbar {
  width: 6px;
}
.search-dropdown__inner::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 3px;
}
.search-dropdown__inner::-webkit-scrollbar-track {
  background-color: #f0f0f0;
}
.search-parameters__blocks {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 24px;
}
.search-parameters__blocks h2 {
  font-weight: 600;
  font-size: 24px;
}
.search-parameters__blocks p {
  max-width: 335px;
  width: 100%;
  color: #ccc;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.search-parameters__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.search-parameters__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: start;
  row-gap: 16px;
  column-gap: 16px;
}
.search-parameters .search-dropdown__inner {
  margin-top: 0 !important;
  margin-bottom: 10px;
}
.search-parameters .search-dropdown__list {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  margin-top: 10px;
  height: 0;
  pointer-events: none;
  transition: height 0.25s ease;
  z-index: 999;
  min-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.search-parameters .search-dropdown__list * {
  color: var(--white-color);
  font-weight: 400;
}
.search-parameters .search-dropdown__toggle {
  max-width: 230px;
  width: 100%;
  padding: 10px 12px;
  color: #ccc;
  border: 1px solid #666;
  background-color: #333 !important;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  cursor: pointer;
}
.search-parameters .search-dropdown__toggle span {
  font-weight: 400;
  font-size: 16px;
  color: #ccc;
}
.search-parameters .search-dropdown__toggle img {
  width: 14px;
  height: auto;
}
.your-offers__blocks {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
}
.your-offers__blocks .descript {
  color: #ccc;
  font-weight: 500;
  font-size: 16px;
}
.your-offers__block {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
.your-offers__block h2 {
  font-weight: 600;
  font-size: 24px !important;
}
.offer-addition {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 14px;
}
.offer-addition * {
  font-weight: 500 !important;
  font-size: 16px !important;
}
.offer-addition img {
  display: none;
}
.offer-addition .choose-categories__list {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.offer-addition .custom-toggle-block__item.active {
  background-color: #333 !important;
  border: none;
}
.offer-addition .custom-toggle-block__item.active img {
  display: flex;
}
.offer-addition .custom-toggle-block__item.active * {
  font-weight: 500 !important;
  font-size: 16px !important;
  color: var(--orange-color) !important;
}
.choose-categories__blocks {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
}
.choose-categories__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.choose-categories__top h2 {
  font-weight: 600;
  font-size: 24px;
}
.choose-categories__top p {
  font-weight: 400;
  line-height: 130%;
  color: #ccc;
}
.choose-categories__list {
  display: flex;
  gap: 12px;
}
.choose-categories__list .custom-toggle-block__item {
  width: auto;
  padding: 10px 12px;
}
.choose-categories__list .custom-toggle-block__item * {
  font-weight: 500;
  font-size: 18px;
}
.choose-categories__list .custom-toggle-block__item.active {
  background-color: var(--orange-color);
}
.choose-categories__list .custom-toggle-block__item.active * {
  color: var(--black-color);
  font-weight: 500;
  font-size: 18px;
}
.register-agent-page .technical-support,
.register-page .technical-support {
  margin-top: 24px !important;
}
.register-agent1-page .technical-support {
  margin-top: 80px;
}
.agency-questionnaire .girl-info__top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 16px;
}
.agency-questionnaire .girl-info__top .data {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.agency-questionnaire .girl-info__top .data__name {
  display: flex;
  align-items: end;
  gap: 8px;
}
.agency-questionnaire .girl-info__top .data__name h1 {
  font-weight: 600;
  font-size: 40px;
  line-height: 100%;
}
.agency-questionnaire .girl-info__top .data__name p {
  font-weight: 600;
  font-size: 20px;
}
.agency-questionnaire .girl-info__top .data__descript * {
  font-weight: 400;
  line-height: 130%;
  color: var(--grey-color);
}
.agency-questionnaire .girl-info__top .data__descript .hidden-text {
  display: flex;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.agency-questionnaire .girl-info__top .data__descript .hidden-text.active {
  opacity: 1;
}
.agency-questionnaire .girl-info__top .data__descript .toggle-btn {
  font-weight: 400;
  text-decoration: underline;
  color: var(--white-color);
  transition: color 0.1s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.agency-questionnaire .girl-info__top .data__descript .toggle-btn:hover {
  color: var(--orange-color);
}
.agency-questionnaire .girl-info__top .data .show-mobile {
  display: none;
}
.agency-questionnaire .social__list {
  display: flex;
  align-items: center;
  gap: 0;
  gap: 16px;
}
.agency-questionnaire__blocks {
  margin-top: 20px;
  margin-bottom: 44px;
}
.agency-questionnaire__top {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.agency-questionnaire__info {
  display: flex;
  align-items: start;
  gap: 22px;
}
.agency-questionnaire__avatar {
  max-width: 175px;
  min-width: 175px;
  height: 175px;
  border-radius: 50%;
  border: 1px solid #333;
  overflow: hidden;
}
.agency-questionnaire__avatar img {
  width: 100%;
  height: 100%;
  -o-object-position: top;
  object-position: top;
  -o-object-fit: cover;
  object-fit: cover;
}
.agency-questionnaire .new-models {
  padding: 30px 0 40px 0;
}
.agency-questionnaire .new-models__blocks {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.agency-questionnaire .new-models__top {
  display: flex;
}
.agency-questionnaire .new-models__top h2 {
  font-weight: 600;
  font-size: 38px;
  display: flex;
  margin: 0 auto;
}
.agency-questionnaire .new-models__wrap {
  display: flex;
  align-items: center;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  margin-top: 32px;
}
.agency-questionnaire .new-models__wrap .swiper-slide {
  width: 238px;
}
.agency-questionnaire .new-models__wrap .photo {
  /* min-height: 424px;
  height: 424px; */
}
.agency-questionnaire .new-models__wrap .swiper-button-prev {
  margin-right: 15px;
}
.agency-questionnaire .new-models__wrap .swiper-button-next {
  margin-left: 15px;
}
.agency-questionnaire .new-models__wrap .swiper-button-next,
.agency-questionnaire .new-models__wrap .swiper-button-prev {
  position: relative;
  font-weight: 600;
  margin-top: -80px;
}
.agency-questionnaire .new-models__wrap .swiper-button-next::after,
.agency-questionnaire .new-models__wrap .swiper-button-prev::after {
  color: var(--white-color);
  font-weight: 600;
  font-size: 20px;
}
.agency-questionnaire .new-models__wrap .new-models-pagination {
  margin-top: 32px;
}
.agency-questionnaire .data__descript * {
  font-weight: 400;
  line-height: 130%;
  color: var(--grey-color);
}
.agency-questionnaire .data__descript .hidden-text {
  display: flex;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s ease, opacity 0.6s ease;
}
.agency-questionnaire .data__descript .hidden-text.active {
  opacity: 1;
}
.agency-questionnaire .data__descript .toggle-text {
  font-weight: 400;
  text-decoration: underline;
  color: var(--white-color);
  transition: color 0.1s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.agency-questionnaire .data__descript .toggle-text:hover {
  color: var(--orange-color);
}
.opening-hours {
  padding: 44px 0;
}
.opening-hours__blocks {
  padding: 28px 22px;
  border-radius: 6px;
  background-color: var(--black2-color);
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.opening-hours__top {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 10px;
}
.opening-hours__top .title {
  display: flex;
  gap: 12px;
  align-items: center;
  font-weight: 600;
  font-size: 24px;
}
.opening-hours__content {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
}
.opening-hours__day {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}
.opening-hours__label {
  font-weight: 500;
  font-size: 16px;
}
.opening-hours__time {
  font-weight: 600;
  font-size: 16px;
}
.opening-hours__address {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 5px;
}
.opening-hours__label {
  font-weight: 500;
  font-size: 16px;
}
.opening-hours__link {
  font-weight: 600;
  font-size: 16px;
  text-decoration: underline;
  color: var(--orange-color);
}
.opening-hours .adress {
  display: flex;
  align-items: center;
  gap: 6px;
}
.opening-hours .adress p {
  font-weight: 500;
  font-size: 16px;
  text-decoration: underline;
}
.opening-hours .show-mobile {
  display: none;
}
.agency-questionnaire-page .girls__blocks {
  max-width: 1024px;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0 auto;
}
.agency-questionnaire-page .contact {
  margin-top: 44px;
}
.agency-questionnaire-page .contact .contact__blocks {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}
.blog-page .btn {
  text-align: center;
  max-width: 238px;
  width: 100%;
  margin: 0 auto;
  font-weight: 600;
}
.blog-page .questionnaire__top a {
  color: var(--grey-color);
  transition: color 0.1s ease-in-out;
}
.blog-page .questionnaire__top a:hover {
  color: var(--orange-color);
}
.blog-content__blocks {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 34px 22px;
  background-color: #1b1b1b;
  border-radius: 6px;
  width: 400px;
}
.blog-content__blocks h3 {
  font-weight: 600;
  font-size: 24px;
}
.blog-content__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.blog-content__list h4 {
  font-weight: 500;
  font-size: 16px;
}
.blog-content__list p {
  font-weight: 400;
  color: #ccc;
  font-size: 12px;
}
.blog-content__item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog {
  margin-top: 44px;
  margin-bottom: 40px;
}
.blog__blocks {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 62px;
}
.blog__list {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 32px;
}
.blog__item {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog .data__descript {
  display: none;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.blog .data__descript * {
  color: #ccc;
}
.blog .toggle-text {
  font-weight: 400;
  text-decoration: underline;
  color: var(--white-color);
  transition: color 0.1s ease-in-out;
  cursor: pointer;
  white-space: nowrap;
}
.blog .toggle-text:hover {
  color: var(--orange-color);
}
.blog__top {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.blog__top h2 {
  font-weight: 600;
  font-size: 38px;
}
.blog__top .autor {
  font-weight: 500;
  font-size: 12px;
  color: #ccc;
}
.blog__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.blog__info .descript {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
}
.blog-single {
  padding-top: 24px;
  padding-bottom: 40px;
}
.blog-single__blocks {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 62px;
}
.blog-single__blocks .autor {
  font-weight: 500;
  font-size: 12px;
  color: #ccc;
}
.blog-single .questionnaire__top a {
  color: var(--grey-color);
  transition: color 0.1s ease-in-out;
}
.blog-single .questionnaire__top a:hover {
  color: var(--orange-color);
}
.blog-single li,
.blog-single p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ccc;
  margin: 1.5em 0;
}
.blog-single ul {
  margin-left: 8px;
}
.blog-single ol {
  padding-left: 20px;
}
.blog-single ul li {
  position: relative;
  padding-left: 15px;
  list-style: none;
}
.blog-single .line {
  width: 100%;
  height: 1px;
  background-color: #333;
  margin-top: 10px;
  margin-bottom: 10px;
}
.blog-single ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #ccc;
  border-radius: 50%;
}
.blog-single ul li a {
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
  display: inline-block;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: break-word;
}
.blog-single ul li a:hover {
  color: var(--orange-color);
}
.blog-single .search__top {
  gap: 14px;
}
.blog-single .bg {
  width: 100%;
}
.blog-single .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.blog-single__content {
  /* display: flex; */
  /* flex-direction: column; */
  /* gap: 32px */
}
.blog-single__content h2 {
  margin-top: 42px;
  font-weight: 500;
  font-size: 24px;
  line-height: 110%;
  color: #fff;
}
.blog-single__content h3 {
  margin-top: 32px;
  font-weight: 500;
  font-size: 18px;
  line-height: 110%;
  color: #fff;
}
.blog-single .read-also {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.blog-single .read-also__item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.blog-single .read-also a {
  font-weight: 500;
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
  text-wrap: wrap;
}
.blog-single .read-also a:hover {
  color: var(--orange-color);
}
.blog-single .read-also span {
  font-weight: 400;
  font-size: 12px;
  color: #ccc;
}
.contacts-page {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contacts-page .technical-support {
  margin-top: 0;
  margin-bottom: 0;
}
.contacts-page .contacts-form__blocks {
  background-color: #1b1b1b;
  border-radius: 6px;
  padding: 34px;
}
.contacts-page .contacts-form__blocks h2 {
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 24px;
  line-height: 130%;
}
.contacts-page .contacts-form__blocks p {
  margin-top: 12px;
  font-weight: 500;
  font-size: 16px;
}
.contacts-page .contacts-form__blocks p a {
  color: var(--orange-color);
}
.contacts-page .contacts-form .hide-mobile {
  display: flex;
  gap: 3px;
}
.contacts-page .contacts-form__form {
  display: flex;
  gap: 14px;
}
.contacts-page .contacts-form__form .show-mobile {
  display: none;
}
.contacts-page .contacts-form__form button {
  padding: 10px 58px;
  font-weight: 600;
  font-size: 16px;
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  color: var(--black-color);
  border-radius: 6px;
}
.contacts-page .contacts-form__form button:hover {
  background-color: var(--orange-hover-color);
}
.contacts-page .contacts-form input::-webkit-input-placeholder {
  color: var(--white-color);
}
.contacts-page .contacts-form input:-ms-input-placeholder {
  color: var(--white-color);
}
.contacts-page .contacts-form input::-ms-input-placeholder {
  color: var(--white-color);
}
.contacts-page .contacts-form input::placeholder {
  color: var(--white-color);
}
.contacts-page .contacts-form .input-email,
.contacts-page .contacts-form .input-name {
  width: 70%;
}
.contacts-page .progress {
  margin: 58px 0 40px 0;
}
.policy .blog-single__blocks {
  width: 70%;
  margin: 44px 0;
}
.policy li,
.policy p {
  font-weight: 400;
  font-size: 16px;
  line-height: 140%;
  color: #ccc;
}
.policy div p {
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
}
.policy ul {
  margin-left: 8px;
}
.policy ul li {
  position: relative;
  padding-left: 15px;
  list-style: none;
}
.policy ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  background-color: #ccc;
  border-radius: 50%;
}
.policy ul li a {
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
  display: inline-block;
  white-space: normal;
  word-break: break-all;
  overflow-wrap: break-word;
}
.policy ul li a:hover {
  color: var(--orange-color);
}
.office-profile {
  margin-top: 22px;
  margin-bottom: 40px;
}
.office-profile__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.office-profile__top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
  border-bottom: 1px solid #333;
}
.office-profile__title {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.office-profile__title .title {
  font-weight: 600;
  font-size: 46px;
  line-height: 110%;
}
.office-profile__title .descript {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  color: var(--orange-color);
}
.office-profile__wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}
.office-profile .tab-btns__blocks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.office-profile .tab-btns__blocks .tab-btn {
  padding: 10px 14px;
  background: rgba(0, 0, 0, 0);
  cursor: pointer;
  border-radius: 6px;
  transition: 0.1s ease-in-out;
  font-weight: 500;
  font-size: 16px;
  background: #333;
  color: #fff;
}
.office-profile .tab-btns__blocks .tab-btn.active {
  background: #fff;
  color: #000;
}
.office-profile .tab-btns__blocks .tab-btn:hover {
  background: #fff;
  color: #000;
}
.office-profile .tab-content {
  display: none;
  font-size: 16px;
  color: #ddd;
}
.office-profile .tab-content.active {
  display: block;
}
.office-profile .tab-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
}
.office-profile .tab-wrapper .credits {
  font-weight: 600;
  font-size: 24px;
}
.office-profile .tab-wrapper .credits span {
  color: var(--orange-color);
}
.office-profile .my-profile {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.office-profile .my-profile__blocks {
  padding: 32px 22px;
  background-color: #1b1b1b;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 22px;
}
.office-profile .my-profile__img {
  min-width: 165px;
  width: 165px;
  height: 165px;
  border: 1px solid #333;
  overflow: hidden;
  border-radius: 100%;
  position: relative;
}
.office-profile .my-profile__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
}
.office-profile .my-profile__img .pause-effect {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  z-index: 2;
}
.office-profile .my-profile__img .pause-effect p {
  font-size: 18px;
  color: #fff;
  z-index: 3;
  position: relative;
}
.office-profile .my-profile__img .pause-effect svg {
  z-index: 3;
  position: relative;
  fill: #fff;
}
.office-profile .my-profile__img .pause-effect::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}
.office-profile .my-profile .custom-toggle-block {
  display: flex;
  align-items: start;
  gap: 12px;
}
.office-profile .my-profile__info {
  display: flex;
  flex-direction: column;
  gap: 19px;
}
.office-profile .my-profile__info-top {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 8px;
}
.office-profile .my-profile__info-top span {
  font-size: 16px;
}
.office-profile .my-profile__info-top .name {
  font-weight: 600;
  font-size: 32px;
}
.office-profile .my-profile__list {
  display: flex;
  gap: 10px;
}
.office-profile .my-profile__list li a {
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
}
.office-profile .my-profile__list .custom-toggle-block__item {
  width: auto;
  transition: none;
}
.office-profile .my-profile__list .custom-toggle-block__item p {
  font-size: 18px;
}
.office-profile .my-profile__list .custom-toggle-block__item.active {
  background-color: var(--orange-color);
}
.office-profile .my-profile__list .custom-toggle-block__item.active svg use {
  color: var(--black-color) !important;
}
.office-profile .my-profile__list .custom-toggle-block__item.active p {
  color: #000;
  font-weight: 600;
}
.office-profile .my-profile__list .btn {
  background-color: #333;
  border-radius: 6px;
}
.office-profile .my-profile__below {
  background: linear-gradient(90deg, #333 0, #4a4a4a 100%);
  padding: 6px;
  font-size: 14px;
  text-align: center;
  border-radius: 0 0 6px 6px;
  line-height: 130%;
  display: flex;
  align-items: center;
  gap: 4px;
  justify-content: center;
}
.office-profile .my-profile__below img {
  width: 18px;
  height: 18px;
}
.office-profile .my-profile__below span {
  color: var(--orange-color);
}
.office-profile .my-profile .block-empty {
  border: 1px solid #666;
  min-height: 200px;
  border-width: 2px;
  border-radius: 6px;
  gap: 10px;
  border-style: dashed;
  padding: 14px;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}
.office-profile .my-profile .block-empty:hover {
  background-color: rgba(219, 219, 219, 0.1803921569);
}
.office-profile .my-profile .block-empty__blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
  min-height: 200px;
}
.office-profile .my-profile .block-empty__blocks svg {
  width: 30px;
  height: 30px;
}
.office-profile .my-profile .block-empty__blocks p {
  font-weight: 600;
  font-size: 16px;
  color: var(--orange-color);
}
.office-profile .sidebar {
  max-width: 400px;
  width: 100%;
}
.office-profile .sidebar__blocks {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.office-profile .sidebar .photo-verification__blocks {
  background-color: #1b1b1b;
  padding: 34px 22px;
  border-radius: 6px;
}
.office-profile .sidebar .photo-verification__img {
  padding: 6.5px 8px;
}
.office-profile .sidebar .photo-verification .check {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}
.office-profile .sidebar .photo-verification .check input[type="checkbox"] {
  display: none;
}
.office-profile .sidebar .photo-verification .check label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.office-profile .sidebar .photo-verification .check .check-icon__border {
  border: 1px solid #666;
  transition: all 0.2s ease;
  min-width: 30px;
  height: 30px;
  position: relative;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.office-profile .sidebar .photo-verification .check .check-icon__border .check-icon {
  position: absolute;
  display: none;
  width: 15px;
  transition: all 0.3s ease;
  height: 15px;
}
.office-profile .sidebar .photo-verification .check input[type="checkbox"]:checked + label .check-icon__border {
  background-color: rgba(0, 0, 0, 0);
}
.office-profile .sidebar .photo-verification .check input[type="checkbox"]:checked + label img.check-icon {
  display: flex;
}
.office-profile .sidebar .photo-verification .check input[type="checkbox"]:checked + label img.check-icon use {
  color: var(--orange-color) !important;
}
.office-profile .sidebar .technical-support {
  margin-top: 0;
  margin-bottom: 0;
}
.office-profile .sidebar .technical-support__blocks {
  display: flex;
  align-items: center;
  background-color: var(--black2-color);
  border-radius: 6px;
  padding: 32px 22px;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  width: 100%;
}
.office-profile .sidebar .technical-support__left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.office-profile .sidebar .technical-support__left h3 {
  font-weight: 600;
  font-size: 24px;
}
.office-profile .sidebar .technical-support__left p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.office-profile .sidebar .technical-support__right {
  text-align: left;
  align-items: start;
  justify-content: start;
  gap: 32px;
}
.office-profile .sidebar .technical-support__addition {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
  align-items: start;
  justify-content: start;
}
.office-profile .sidebar .technical-support__addition a {
  font-weight: 600;
  font-size: 24px;
  text-align: right;
  transition: color 0.1s ease-in-out;
}
.office-profile .sidebar .technical-support__addition a:hover {
  color: var(--orange-color);
}
.office-profile .sidebar .technical-support .social {
  display: flex;
  align-items: end;
  justify-content: end;
}
.title-block__blocks-2 {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.title-block__blocks-2 p {
  font-size: 16px;
  color: var(--orange-color);
}
.model-edit-page {
  margin-bottom: 40px;
}
.answers-to-questions-page .faq {
  margin: 0;
  padding: 0;
  width: 100%;
}
.answers-to-questions-page .faq__blocks {
  width: 100%;
}
.answers-to-questions-page .faq__list {
  max-width: 100%;
  width: 100%;
  margin: 0;
}
.what-happened {
  width: 100%;
}
.what-happened__blocks {
  padding: 34px 22px;
  border-radius: 6px;
  background-color: #1b1b1b;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 24px;
  width: 100%;
}
.what-happened .account-form__group {
  display: flex;
  align-items: start;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 0;
}
.what-happened .account-form__contacts {
  width: 85%;
}
.what-happened .account-form__input,
.what-happened .search-dropdown__item,
.what-happened .search-dropdown__toggle {
  min-width: auto;
  width: 100%;
}
.what-happened .search-dropdown__list {
  width: 100%;
}
.what-happened .record-hotograph {
  border: 1px solid #f90;
  font-weight: 500;
  font-size: 14px;
  max-width: 145px;
  width: 100%;
  transition: all 0.1s ease-in-out;
}
.what-happened .record-hotograph:hover {
  background-color: var(--orange-color);
  color: var(--black-color);
}
.what-happened .account-form__textarea {
  margin-top: 0;
}
.what-happened__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.what-happened__top h2 {
  font-weight: 600;
  font-size: 24px;
}
.what-happened__top p {
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
  max-width: 600px;
  width: 100%;
}
.what-happened__below {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding-top: 18px;
  border-top: 1px solid #333;
}
.what-happened__below p {
  font-weight: 500;
  font-size: 16px;
}
.what-happened__below p span {
  color: var(--orange-color);
}
.what-happened .send {
  background-color: var(--orange-color);
  transition: background-color 0.1s ease-in-out;
  font-weight: 600;
  color: var(--black-color);
  max-width: 130px;
  width: 100%;
  text-align: center;
}
.what-happened .send:hover {
  background-color: var(--orange-hover-color);
}
.comments {
  width: 100%;
}
.comments__blocks {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comments__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.comments__top .add-note {
  font-size: 16px;
  font-weight: 500;
  padding: 10px 14px;
  color: var(--black-color);
  background-color: var(--orange-color);
  border-radius: 6px;
  text-align: center;
}
.comments__top .search-box {
  border: 1px solid #666;
  padding: 10px 14px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  max-width: 320px;
  width: 100%;
}
.comments__top .search-box input {
  width: 100%;
}
.comments__top .search-box input::-webkit-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.comments__top .search-box input:-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.comments__top .search-box input::-ms-input-placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.comments__top .search-box input::placeholder {
  font-weight: 500;
  font-size: 16px;
  color: #fff;
}
.comments__top .search-box button {
  display: flex;
  align-items: center;
  justify-content: center;
}
.comments__wrap {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
.comments__block {
  padding: 34px 22px;
  background-color: #1b1b1b;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 18px;
}
.comments__block-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.comments__block-top h2 {
  font-weight: 600;
  font-size: 24px;
}
.comments__block-top .data {
  font-size: 16px;
}
.comments__block-number {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.comments__block-number .number {
  font-weight: 500;
  font-size: 16px;
  line-height: 130%;
}
.comments__block-number a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 24px;
}
.comments__block-number a span {
  transition: color 0.1s ease-in-out;
}
.comments__block-number a:hover span {
  color: var(--orange-color);
}
.comments__block .descript {
  max-width: 600px;
  width: 100%;
  color: #ccc;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
}
.comments__block .show-mobile {
  display: none;
}
.comments .photo-item::after {
  display: none;
}
.model-edit-page .registration-options__top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
  width: 100%;
}
.model-edit-page .registration-options__descript {
  max-width: 480px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.model-edit-page .registration-options__descript h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
}
.model-edit-page .registration-options__descript p {
  font-weight: 400px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #ccc;
}
.model-edit-page .registration-options__descript p a {
  color: var(--white-color);
  text-decoration: underline;
  transition: color 0.1s ease-in-out;
}
.model-edit-page .registration-options__descript p a:hover {
  color: var(--orange-color);
}
.model-edit-page .registration-options__blocks {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.photo-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.photo-list .photo-item {
  min-width: 61px;
  width: 61px;
  max-width: 61px;
  height: 109px;
  min-height: 109px;
  max-height: 109px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
}
.photo-list .photo-item::after {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 9px;
  height: 9px;
  content: "";
  background-image: url(../img/svg/close-orange.svg);
  background-repeat: no-repeat;
  background-size: contain;
  cursor: pointer;
}
.photo-list .photo-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.agent-edit-page .registration-options__descript {
  max-width: 760px;
  width: 100%;
}
.agent-edit-page .registration-options__descript h2 {
  font-weight: 600;
  font-size: 24px;
  line-height: 110%;
}
.agent-edit-page .registration-options__descript p {
  font-weight: 400px;
  line-height: 130%;
}
.agent-edit-page .photo-list .photo-item {
  min-width: 95px;
  width: 95px;
  max-width: 95px;
  height: 95px;
  min-height: 95px;
  max-height: 95px;
  position: relative;
}
.agent-edit-page .photo-list .photo-item::after {
  top: 0;
  right: 1px;
}
.agent-edit-page .photo-list .photo-item img {
  border: 1px solid #333;
  border-radius: 100%;
}
.agent-edit-page .registration-options__top {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 18px;
  width: 100%;
}
.agent-edit-page .account-form .input-name {
  max-width: 420px;
  width: 100%;
}
.my-girls__wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.my-girls__blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.my-girls .bin-btn {
  position: absolute;
  top: 10px;
  right: 11px;
  transition: 0.1s ease-in-out;
}
.my-girls .bin-btn:hover use {
  color: var(--orange-color);
}
.my-girls .bin-btn svg {
  width: 20px;
  height: 20px;
}
.my-girls__block {
  position: relative;
  background-color: #1b1b1b;
  border-radius: 6px;
  padding: 32px 22px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.my-girls__block-top {
  display: flex;
  flex-direction: column;
  gap: 14px;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.my-girls__block-top .avatar {
  min-width: 175px;
  width: 175px;
  max-width: 175px;
  height: 175px;
  border: 1px solid #333;
  overflow: hidden;
  border-radius: 100%;
}
.my-girls__block-top .avatar img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.my-girls__block-top .name {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.my-girls__block-top .name h2 {
  font-weight: 600;
  font-size: 28px;
  line-height: 110%;
  text-align: center;
}
.my-girls__block-top .name p {
  font-weight: 500;
  font-size: 16px;
  line-height: 110%;
  text-align: center;
}
.my-girls__block-below {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 14px;
}
.my-girls__block-below .my-profile__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.my-girls__block-below .my-profile__list .custom-toggle-block__item {
  width: 100%;
}
.my-girls__block-below .my-profile__list .custom-toggle-block__item .verified {
  width: 16px;
  height: 16px;
}
.my-girls__block-below .my-profile__list .custom-toggle-block__item .verified use {
  color: #0095ff;
}
.my-girls__block-below .addition-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 130%;
  text-align: center;
}
.my-girls__block-below .addition-text span {
  color: var(--orange-color);
}
.my-girls .block-empty {
  display: flex;
  border: 1px solid #666;
  padding: 14px;
  border-width: 2px;
  border-radius: 6px;
  gap: 10px;
  border-style: dashed;
  cursor: pointer;
  transition: background-color 0.1s ease-in-out;
}
.my-girls .block-empty:hover {
  background-color: rgba(219, 219, 219, 0.1803921569);
}
.my-girls .block-empty__blocks {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 10px;
}
.my-girls .block-empty__blocks p {
  font-weight: 600;
  font-size: 16px;
  color: var(--orange-color);
}
.my-girls .show-mobile {
  display: none;
}
.my-girls-page .office-profile__wrapper {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
}
@media (max-width: 1500px) {
  .girls__blocks {
    grid-template-columns: repeat(4, minmax(0, 1fr));

    column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 1480px) {
  .working-hours__days {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
@media (max-width: 1400px) {
  .model .questionnaire-girl__blocks {
    flex-direction: column;
    gap: 20px;
  }
  .model .questionnaire-girl__carousel {
    justify-content: center;
    width: 100%;
    align-items: center;
    margin: 0 auto;
  }
}
@media (max-width: 1320px) {
  [class*="__container"] {
    padding: 0 16px;
  }
}
@media (max-width: 1240px) {
  .footer__left-top {
    gap: 40px;
  }
  .footer-menu__blocks {
    gap: 40px;
  }
  .podniky-page .podniky__top {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 14px;
  }
  .podniky-page .podniky__img {
    width: 80px;
    height: 80px;
  }
  .podniky-page .podniky__info {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .podniky-page .podniky__info-name {
    flex-direction: column;
    gap: 6px;
    align-items: center;
  }
  .podniky-page .podniky__info-name h2 {
    font-size: 20px;
  }
  .podniky-page .podniky__info-social__list {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }
  .podniky-page .podniky .podniky-slider {
    grid-template-columns: repeat(2, 1fr);
  }
  .podniky-page .podniky .see-more {
    margin-top: 20px;
  }
  .my-girls__wrapper {
    gap: 18px;
  }
  .my-girls__blocks {
    gap: 18px;
  }
  .my-girls__block {
    padding: 22px 8px;
  }
  .my-girls__block-top .avatar {
    min-width: 100px;
    width: 100px;
    max-width: 100px;
    height: 100px;
  }
  .my-girls__block-top .name {
    gap: 4px;
  }
  .my-girls__block-top .name h2 {
    font-size: 18px;
  }
  .my-girls__block-top .name p {
    font-size: 14px;
  }
  .my-girls__block-below {
    gap: 16px;
  }
  .my-girls__block-below .my-profile__list {
    gap: 11px;
  }
  .my-girls__block-below .my-profile__list .custom-toggle-block__item p {
    font-size: 14px;
  }
  .my-girls__block-below .my-profile__list .custom-toggle-block__item svg {
    width: 15px;
    height: 15px;
  }
  .my-girls__block-below .addition-text {
    font-size: 12px;
    padding: 0 12px;
  }
  .my-girls-page .office-profile__wrapper {
    flex-direction: column;
  }
  .my-girls-page .sidebar {
    width: 100%;
    max-width: 100%;
  }
}
@media (max-width: 1200px) {
  .header {
    padding: 9px 0 0 0;
  }
  .header .logo {
    width: 125px;
    height: 30px;
  }
  .faq__blocks {
    gap: 20px;
  }
  .faq__title {
    font-size: 30px;
  }
  .faq__list {
    gap: 22px;
    padding: 32px 22px;
  }
  .faq__item-pad {
    padding-bottom: 15px;
  }
  .faq__question span {
    font-size: 22px;
  }
  .modal-login .account-form__btn {
    margin-top: 20px;
  }
  .modal-login .account-form__btn {
    margin-top: 0;
  }
  .faq {
    padding-bottom: 20px;
  }
  .search {
    margin-top: 44px;
  }
  .search__top {
    gap: 16px;
  }
  .search__title {
    font-size: 30px;
  }
  .girls-padding {
    padding-top: 20px;
  }
  .girls__blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .girls .see-more {
    margin-top: 20px;
  }
  .photo {
    /* min-height: 295px;
    height: 295px; */
  }
  .girls-second .see-more {
    margin-top: 20px;
  }
  .home-page .faq {
    padding-top: 62px;
    padding-bottom: 20px;
  }
  .category .new-models {
    padding-top: 20px;
  }
  .category .new-models__blocks {
    padding: 0;
  }
  .category .new-models__container {
    padding: 0;
  }
  .category .new-models__top h2 {
    font-size: 30px;
  }
  .category .new-models__wrap .swiper-button-prev {
    left: 20px;
  }
  .category .new-models__wrap .swiper-button-next {
    right: 20px;
  }
  .category .girls {
    margin-bottom: 20px;
  }
  .model .contact {
    padding-bottom: 20px;
  }
  .contact {
    padding-bottom: 0;
  }
  .podniky-page .podniky {
    padding: 20px 0 20px 0;
  }
  .podniky-page .podniky__list {
    gap: 20px;
  }
  .podniky-page .podniky__item {
    gap: 20px;
  }
  .registration-options__blocks {
    gap: 24px;
  }
  .registration-options__block {
    gap: 22px;
    padding: 32px 22px;
  }
  .registration-options__top h2 {
    font-size: 28px;
  }
  .technical-support {
    margin-top: 50px;
    margin-bottom: 20px;
  }
  .technical-support__blocks {
    padding: 32px 22px;
  }
  .register-model1-page .technical-support {
    margin-top: 62px;
  }
  .title-block {
    padding-top: 44px;
  }
  .title-block__blocks {
    gap: 8px;
  }
  .title-block__blocks h1 {
    font-size: 30px;
  }
  .register-model-page .technical-support {
    margin-bottom: 20px;
  }
  .register-person__blocks {
    padding: 32px 22px;
    gap: 24px;
  }
  .register-person__blocks h2 {
    font-size: 24px;
  }
  .register-person__form .title {
    margin-bottom: 12px;
    font-weight: 500;
    font-size: 18px;
    line-height: 130%;
    text-align: left;
  }
  .account-form__wrap {
    gap: 28px;
  }
  .account-form .choose-categories,
  .account-form .search-parameters,
  .account-form .working-hours,
  .account-form__block {
    padding: 32px 22px;
  }
  .account-form__subtitle {
    font-size: 24px;
  }
  .account-form__progress {
    font-size: 16px;
  }
  .account-form .hide-mobile {
    display: none;
  }
  .account-form .show-mobile {
    display: flex;
  }
  .explanation {
    margin-top: 0;
  }
  .working-hours__blocks {
    gap: 32px;
  }
  .your-offers__block h2 {
    font-size: 18px !important;
  }
  .your-offers__block .custom-toggle-block__item {
    padding: 7px 14px !important;
  }
  .choose-categories__blocks {
    gap: 22px;
  }
  .register-agent1-page .technical-support {
    margin-top: 60px;
  }
  .agency-questionnaire .girl-info__top .data__name {
    gap: 6px;
  }
  .agency-questionnaire .girl-info__top .data__name h1 {
    font-size: 30px;
  }
  .agency-questionnaire .girl-info__top .data__name p {
    font-size: 16px;
  }
  .agency-questionnaire__blocks {
    margin-bottom: 20px;
    margin-top: 20px;
  }
  .agency-questionnaire-page .contact {
    margin-bottom: 20px;
  }
  .blog-page .search__top {
    gap: 8px;
  }
  .blog {
    margin-bottom: 0;
    margin-top: 20px;
  }
  .blog__blocks {
    gap: 30px;
  }
  .blog__top h2 {
    font-size: 30px;
  }
  .blog-single {
    padding-top: 44px;
    padding-bottom: 20px;
  }
  .blog-single__blocks {
    gap: 30px;
  }
  .blog-single .questionnaire__top {
    margin-bottom: -8px;
  }
  .blog-single .line {
    margin-top: 0;
    margin-bottom: 0;
  }
  .blog-single__content {
    /* gap: 42px */
  }
  .contacts-page .search__top {
    gap: 8px;
  }
  .contacts-page .contacts-form__blocks {
    padding: 32px 22px;
  }
  .contacts-page .progress {
    margin: 38px 0 20px 0;
  }
  .policy .blog-single__blocks {
    width: 100%;
    margin-bottom: 20px;
  }
  .policy .search__top {
    gap: 8px;
  }
  .office-profile {
    margin-bottom: 20px;
    margin-top: 44px;
  }
  .office-profile__top {
    gap: 14px;
  }
  .office-profile__title {
    gap: 8px;
  }
  .office-profile__title .title {
    font-size: 30px;
  }
  .office-profile__title .descript {
    font-size: 14px;
  }
  .office-profile .tab-btns__blocks {
    gap: 10px;
  }
  .office-profile .tab-btns__blocks .tab-btn {
    padding: 7px 14px;
  }
  .office-profile .tab-wrapper .credits {
    font-size: 18px;
  }
  .office-profile .sidebar .technical-support {
    margin-top: 0;
    margin-bottom: 0;
  }
  .model-edit-page {
    margin-bottom: 0;
  }
  .what-happened .account-form__group {
    gap: 16px;
  }
  .model-edit-page {
    margin-bottom: 20px;
  }
  .my-girls .bin-btn {
    top: 8px;
    right: 8px;
  }
}
@media (max-width: 1024px) {
  .footer__left-top {
    gap: 20px;
    flex-direction: column;
    padding-bottom: 25px;
  }
  .contacts-page .contacts-form__blocks h2 {
    margin-bottom: 18px;
  }
  .contacts-page .contacts-form .hide-mobile {
    display: none;
  }
  .contacts-page .contacts-form__form {
    flex-direction: column;
    gap: 18px;
  }
  .contacts-page .contacts-form__form .show-mobile {
    gap: 3px;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
    margin-top: 0;
  }
  .contacts-page .contacts-form .input-email,
  .contacts-page .contacts-form .input-name {
    width: 100%;
  }
}
@media (max-width: 992px) {
  .header__below.show-mobile {
    display: flex;
  }
  .header__below.show-mobile .menu {
    overflow-x: auto;
    width: 100%;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .header__below.show-mobile .menu::-webkit-scrollbar {
    display: none;
  }
  .header__below.show-mobile .menu__list {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
  }
  .header__below.show-mobile .menu__list a {
    font-weight: 600;
    transition: color 0.1s ease-in-out;
  }
  .header__below.show-mobile .menu__list a:hover {
    color: var(--orange-color);
  }
  .header .burger-icon {
    display: flex;
  }
  .header .menu.hide-mobile {
    display: none;
  }
  .header .languages.hide-mobile {
    display: none;
  }
  .header .btn.register.hide-mobile {
    display: none;
  }
  .search__wrapper {
    align-items: start;
    width: 100%;
    gap: 16px;
    flex-direction: column;
  }
  .search__wrapper .show-mobile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
    width: 100%;
  }
  .search__wrap {
    flex-direction: column;
    width: 100%;
  }
  .search .parameters__item {
    width: 100%;
  }
  .search .parameters .parameters__dropdown {
    top: 92%;
  }
  .search .parameters .parameters__dropdown__blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .search .hide-mobile {
    display: none;
  }
  .search .filter {
    width: 100%;
    text-align: center;
  }
  .search-dropdown {
    width: 100%;
  }
  .search-dropdown__blocks {
    width: 100%;
  }
  .search-dropdown__item {
    width: 100%;
  }
  .search-dropdown__item a {
    width: 130px;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .search-dropdown__toggle {
    width: 100%;
  }
  .search-dropdown__list {
    width: 100%;
  }
  .progress__blocks {
    gap: 28px;
    grid-template-columns: repeat(2, 1fr);
    padding: 32px 22px;
  }
  .model .questionnaire {
    margin: 16px 0 20px 0;
  }
  .model .questionnaire__top {
    display: none;
  }
  .model .questionnaire-girl .girl-info__top {
    align-items: center;
    justify-content: center;
    display: flex;
    margin: 0 auto;
    gap: 12px;
    text-align: center;
  }
  .model .questionnaire-girl .girl-info__block-top2 {
    flex-direction: row-reverse;
    align-items: center;
    justify-content: space-between;
    gap: 4px;
    width: 100%;
  }
  .model .questionnaire-girl .girl-info__block-top2 img {
    width: 45px;
    height: 45px;
  }
  .model .questionnaire-girl .girl-info .data__name {
    align-items: center;
    gap: 6px;
    flex-direction: column;
  }
  .model .questionnaire-girl .girl-info .data__name h1 {
    font-size: 30px;
  }
  .model .questionnaire-girl .girl-info .data__name p {
    font-size: 16px;
  }
  .model .questionnaire-girl .girl-info .data .hide-mobile {
    display: none;
  }
  .model .questionnaire-girl .girl-info .data .show-mobile {
    display: flex;
  }
  .model .questionnaire-girl .girl-info__below {
    margin-top: 20px;
    gap: 14px;
    flex-direction: column;
  }
  .model .questionnaire-girl .girl-info__block {
    min-height: auto;
    padding: 22px 18px;
  }
  .model .questionnaire-girl .girl-info__block-below {
    margin-top: 18px;
  }
  .model .model-slider {
    margin-bottom: 12px;
  }
  .model .swiper-button-prev {
    left: 16px;
  }
  .model .swiper-button-next {
    right: 16px;
  }
  .model .photo {
    /* min-height: 480px;
    height: 480px; */
  }
  .model .photo .photo-info {
    padding: 12px 16px;
  }
  .model .photo .photo-info__left * {
    font-size: 10px;
  }
  .model .photo .photo-info .verified {
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    gap: 3px;
    bottom: 12px;
  }
  .model .photo .photo-info .verified img {
    width: 14px;
  }
  .model .photo .photo-info .verified p {
    margin-bottom: -1px;
  }
  .model .photo .photo-info .verified * {
    font-size: 10px;
  }
  .model .photo .photo-info .vip * {
    font-size: 10px;
  }
  .social {
    margin-top: 0;
  }
  .social__list {
    flex-direction: column;
    gap: 12px;
  }
  .social__addition {
    gap: 20px;
  }
  .contact__top {
    padding-bottom: 16px;
  }
  .contact__top h2 {
    display: none;
  }
  .contact__top .social__list {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    width: 100%;
  }
  .contact .search-badge {
    margin-top: 16px;
  }
  .model-edit-page .registration-options__top img {
    width: 60px;
    height: 60px;
  }
  .register-model01 .registration-options__top img {
    width: 60px;
    height: 60px;
  }
  .register-agent-page .title-block__blocks a,
  .register-model-page .title-block__blocks a {
    display: none;
  }
  .register-agent-page .title-block__blocks h1,
  .register-model-page .title-block__blocks h1 {
    text-align: center;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
  }
  .agency-questionnaire .girl-info__top {
    align-items: center;
    gap: 16px;
  }
  .agency-questionnaire .girl-info__top .data__name {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
  .agency-questionnaire .girl-info__top .data .hide-mobile {
    display: none;
  }
  .agency-questionnaire .girl-info__top .data .show-mobile {
    display: block;
    text-align: center;
  }
  .agency-questionnaire .questionnaire__top {
    display: none;
  }
  .agency-questionnaire__info {
    flex-direction: column;
    align-items: center;
  }
  .opening-hours__content {
    grid-template-columns: repeat(3, 1fr);
  }
  .opening-hours .adress p {
    font-size: 14px;
  }
  .opening-hours .show-mobile {
    display: flex;
  }
  .opening-hours .hide-mobile {
    display: none;
  }
  .agency-questionnaire-page .girls__blocks {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .blog-content {
    display: none;
  }
  .office-profile__wrapper {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
  .office-profile .sidebar {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    width: 100%;
  }
  .model-edit-page .registration-options__top .registration-options__icon {
    width: 60px;
    height: 60px;
  }
}
@media (max-width: 992px) and (max-width: 992px) {
  .header__below.show-mobile .menu__list {
    gap: 14px;
    row-gap: 6px;
  }
  .header__below.show-mobile .menu__list a {
    font-size: 15px;
  }
}
@media (max-width: 992px) and (max-width: 395px) {
  .header__below.show-mobile .menu__list {
    gap: 14px;
    row-gap: 6px;
  }
  .header__below.show-mobile .menu__list a {
    font-size: 14px;
  }
}
@media (max-width: 992px) and (max-width: 370px) {
  .header__below.show-mobile .menu__list {
    gap: 10px;
  }
  .header__below.show-mobile .menu__list a {
    font-size: 13px;
  }
}
@media (max-width: 992px) and (max-width: 335px) {
  .header__below.show-mobile .menu__list {
    gap: 8px;
  }
  .header__below.show-mobile .menu__list a {
    font-size: 12px;
  }
}
@media (max-width: 840px) {
  .search-parameters__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 768px) {
  .footer__blocks {
    display: none;
  }
  .footer .footer-mobile {
    display: flex;
  }
  .girls__blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .girl-item .mobile-show {
    display: flex !important;
  }
  .girl-item .mobile-hide {
    display: none !important;
  }
  .girl-item .city {
    /* margin: 0 auto; */
  }
  .girl-item__below {
    display: flex;
    /* flex-direction: column; */
    gap: 8px;
    margin: 0 auto;
    /* justify-content: center; */
  }
  .girl-item__below .mobile-show {
    display: flex !important;
  }
  .girl-item__below * .number p {
    color: var(--white-color);
  }
  .photo .photo-info .verified {
    align-self: auto;
    justify-content: center;
    margin: 0 auto;
  }
  .category .new-models .swiper-slide.is-faded {
    display: none;
  }
  .model .photo .photo-info .verified {
    align-self: auto;
    justify-content: center;
    margin: 0 auto;
  }
  .model .thumbs-slider {
    width: 310px;
  }
  .model .thumbs-slider .swiper-slide {
    width: 50px;
    height: 88px;
  }
  .model .thumbs-slider .swiper-slide img {
    width: 50px;
    height: 88px;
  }
  .registration-options__blocks {
    flex-direction: column;
  }
  .technical-support__blocks {
    flex-direction: column;
    align-items: start;
    gap: 24px;
  }
  .technical-support__right {
    text-align: left;
    align-items: start;
    justify-content: start;
    gap: 32px;
  }
  .technical-support__addition {
    text-align: left;
    align-items: start;
    justify-content: start;
  }
  .register-person {
    padding-bottom: 0;
  }
  .account-form .choose-categories,
  .account-form .search-parameters,
  .account-form .working-hours,
  .account-form__block {
    gap: 32px;
  }
  .account-form__body {
    max-width: 100%;
    gap: 24px;
  }
  .account-form__step {
    gap: 32px;
  }
  .account-form__header {
    flex-direction: column-reverse;
    gap: 12px;
  }
  .account-form__group {
    gap: 12px;
  }
  .account-form .search-dropdown__list {
    position: sticky;
  }
  .account-form__label {
    font-size: 18px;
  }
  .account-form__textarea {
    margin-top: 4px;
  }
  .account-form__contacts {
    flex-direction: column;
    gap: 16px;
  }
  .account-form .input-name {
    max-width: 100%;
    width: 100%;
  }
  .account-form .search-dropdown__list .search-dropdown__inner {
    margin-top: 10px;
    border-radius: 6px;
  }
  .custom-toggle-block {
    flex-direction: column;
    align-items: start;
  }
  .working-hours .search-dropdown__list {
    position: sticky;
  }
  .working-hours__days {
    grid-template-columns: repeat(2, 1fr);
    -webkit-column-gap: 14px;
    -moz-column-gap: 14px;
    column-gap: 14px;
    row-gap: 22px;
  }
  .working-hours__day .search-dropdown__item,
  .working-hours__day .search-dropdown__toggle {
    min-width: 150px !important;
    width: 150px !important;
  }
  .search-parameters .search-dropdown__list {
    position: sticky;
  }
  .blog .descript {
    /* display: none */
  }
  .blog .data__descript {
    /* display: flex */
  }
  .office-profile .tab-wrapper {
    align-items: start;
    flex-direction: column;
  }
  .what-happened .account-form__contacts {
    width: 100%;
  }
  .agent-edit-page .account-form .input-name {
    max-width: 100%;
  }
}
@media (max-width: 668px) {
  .podniky-page .podniky__container {
    padding: 0;
  }
  .podniky-page .podniky__list {
    grid-template-columns: repeat(1, 1fr);
  }
  .podniky-page .podniky__item {
    border-radius: 0;
    padding: 20px 16px;
  }
  .podniky-page .podniky__item .photo {
    min-height: 298px !important;
    height: 298px !important;
  }
}
@media (max-width: 640px) {
  .search .parameters .parameters__dropdown {
    padding: 32px 22px;
  }
  .search-dropdown__item.--kraj,
  .search-dropdown__item.--mesto,
  .search-dropdown__item.--subcategory {
    /* min-width: 180px; */
    width: 100% !important;
    flex: 0 0 auto !important;
  }
  .search-dropdown__blocks {
    flex-direction: column;
  }
}
@media (max-width: 620px) {
  .my-girls__blocks {
    grid-template-columns: repeat(2, 1fr);
  }
  .my-girls .block-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .my-girls .block-empty__blocks {
    display: flex;
    flex-direction: column;
  }
  .my-girls .block-empty__blocks p {
    width: 100px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
  }
  .my-girls .show-mobile {
    display: flex;
  }
  .my-girls .hide-mobile {
    display: none;
  }
}
@media (max-width: 576px) {
  .header .account-settings .search-dropdown__item .search-dropdown__list {
    position: relative;
    margin-top: 0;
    top: 10px;
  }
  .header .account-settings .search-dropdown__item .search-dropdown__inner {
    position: relative;
  }
  .header .account-settings.hide-mobile {
    display: none;
  }
  .header .account-settings.show-mobile {
    display: flex;
  }
  .header2 .account-settings .search-dropdown__list {
    position: absolute;
    top: 100% !important;
    left: 0;
    overflow: hidden;
    height: 0;
    pointer-events: none;
    transition: height 0.25s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 6px;
  }
  .footer__copyright .hide-mobile {
    display: none;
  }
  .footer__copyright .data__descript {
    display: flex;
  }
  .footer .footer-mobile .footer-menu__blocks {
    display: flex;
    flex-direction: column;
    gap: 28px;
  }
  .search .parameters .parameters__dropdown__blocks {
    gap: 24px;
    grid-template-columns: repeat(1, 1fr);
  }
  .search-dropdown {
    position: relative;
  }
  .search-dropdown__blocks {
    align-items: start;
  }
  .search-dropdown__item {
    position: static;
  }
  .search-dropdown__toggle {
    gap: 5px;
  }
  .search-dropdown__list {
    width: 100% !important;
    position: absolute;
    top: 100%;
  }
  .search-dropdown__inner {
    width: 100%;
  }
  .category .new-models__wrap .swiper-button-next,
  .category .new-models__wrap .swiper-button-prev {
    display: none;
  }
  .register-model-page .title-block {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .account-form__btns a {
    font-size: 16px;
  }
  .account-form__btns p {
    display: flex;
    flex-direction: column;
    font-size: 14px;
  }
  .opening-hours__top {
    display: flex;
    flex-direction: column;
    align-items: start;
  }
  .opening-hours .adress {
    justify-content: end;
    align-items: end;
    width: 100%;
  }
  .opening-hours .adress img {
    width: 12px;
  }
  .contacts-page .contacts-form__form .show-mobile {
    gap: 0;
    display: flex;
    flex-wrap: wrap;
    padding-top: 0;
    margin-top: 0;
  }
  .office-profile .my-profile__blocks {
    flex-direction: column;
    text-align: center;
    justify-content: center;
    gap: 14px;
    align-items: center;
  }
  .office-profile .my-profile__img {
    min-width: 175px;
    width: 175px;
    height: 175px;
  }
  .office-profile .my-profile__info {
    gap: 22px !important;
    width: 100%;
  }
  .office-profile .my-profile__info-top {
    align-items: center;
    gap: 6px;
    justify-content: center;
    margin: 0 auto;
  }
  .office-profile .my-profile__info-top .name {
    font-size: 28px;
  }
  .office-profile .my-profile__list {
    flex-direction: column;
    gap: 14px;
    max-width: 229px !important;
    width: 100%;
    margin: 0 auto;
  }
  .office-profile .my-profile__list .custom-toggle-block__item {
    max-width: 229px !important;
    width: 100%;
  }
  .office-profile .my-profile__list .custom-toggle-block__item p {
    font-size: 16px;
  }
  .office-profile .my-profile .block-empty {
    min-height: 415px;
  }
  .office-profile .my-profile .block-empty__blocks {
    min-height: 415px;
  }
  .what-happened .search-dropdown__list {
    position: sticky;
  }
  .what-happened .search-dropdown__list .search-dropdown__inner {
    margin-top: 10px;
    margin-bottom: 0;
  }
  .what-happened .record-hotograph {
    padding: 8px 12px;
  }
  .what-happened__below {
    flex-direction: column-reverse;
    padding-top: 22px;
  }
  .what-happened__below p {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    text-align: center;
    line-height: 130%;
  }
  .comments__blocks {
    gap: 24px;
  }
  .comments__top {
    flex-direction: column;
    width: 100%;
  }
  .comments__top .add-note {
    width: 100%;
  }
  .comments__top .search-box {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 540px) {
  .search-parameters__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
    width: 100%;
  }
  .search-parameters .search-dropdown__item:nth-child(4n) {
    margin-bottom: 32px;
  }
  .search-parameters .search-dropdown__toggle {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .agency-questionnaire-page .girls__blocks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 480px) {
  .girl-item {
    gap: 10px;
  }
  .girl-item__below {
    width: 100%;
    display: flex;
    align-items: center;
  }
  .girl-item__info {
    gap: 8px;
  }
  .girl-item__info .number {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .girl-item__info .name {
    font-size: 16px;
  }
  .photo .photo-info {
    padding: 6px;
  }
  .photo .photo-info * {
    font-size: 10px;
  }
  .photo .photo-info .verified {
    bottom: 6px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .photo .photo-info .verified img {
    width: 13px;
  }
  .progress__blocks {
    grid-template-columns: repeat(1, 1fr);
  }
  .model .questionnaire__container {
    padding: 0;
  }
  .model .questionnaire-girl__carousel {
    max-width: 100%;
    width: 100%;
    padding: 0 32px;
  }
  .model .questionnaire-girl .girl-info {
    padding: 0 16px;
  }
  .model .model-slider {
    width: 100%;
    border-radius: 0;
  }
  .model .model-slider .swiper-slide {
    width: 100%;
  }
  .model .photo {
    width: 100%;
    border-radius: 0;
  }
  .model .photo .bg {
    border-radius: 0;
  }
  .model .photo .bg img {
    border-radius: 0;
  }
  .opening-hours__content {
    grid-template-columns: repeat(2, 1fr);
  }
  .search-dropdown__blocks {
    flex-direction: column;
  }
}
@media (max-width: 440px) {
  .comments__block {
    gap: 16px;
  }
  .comments__block-top {
    flex-direction: column-reverse;
    align-items: start;
  }
  .comments__block-number a {
    font-size: 18px;
  }
  .comments__block-number a img {
    width: 20px;
    height: 20px;
  }
  .comments__block .hide-mobile {
    display: none;
  }
  .comments__block .show-mobile {
    display: flex;
  }
}
@media (max-width: 420px) {
  .registration-message__blocks {
    padding: 42px 22px;
    margin: 10px;
  }
  .registration-message__top h3 {
    font-size: 24px;
  }
  .registration-message__list {
    margin-left: 17px;
  }
  .search .parameters .parameters__dropdown__below {
    flex-direction: column-reverse;
    width: 100%;
    gap: 12px;
  }
  .search .parameters .parameters__dropdown__below .filter {
    width: 100%;
  }
  .search .parameters .parameters__dropdown .beat-filter {
    width: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
  }
  .girls .see-more {
    width: 100%;
    max-width: 100%;
  }
  .girls-second .see-more {
    width: 100%;
    max-width: 100%;
  }
  .home-page .search-dropdown__toggle {
    padding: 10px 10px;
    min-width: 90px;
  }
  .category .search-dropdown__toggle {
    padding: 10px 10px;
    min-width: 90px;
  }
  .podniky-page .search-dropdown__toggle {
    padding: 10px 10px;
    min-width: 90px;
  }
  .podniky-page .podniky__item .photo-info {
    padding: 6px;
  }
  .account-form__btns .btn {
    width: 100%;
  }
  .agency-questionnaire .new-models__wrap .photo .photo-info {
    width: 167px !important;
    height: 298px !important;
    min-height: 298px !important;
  }
  .what-happened .send {
    max-width: 100%;
    width: 100%;
  }
}
@media (max-width: 395px) {
  .search__wrapper .show-mobile {
    gap: 10px;
  }
  .search .parameters {
    justify-content: center;
    align-items: center;
  }
  .search .parameters__item {
    text-align: center;
    justify-content: center;
    width: 100%;
  }
  .addition-pad .show-mobile2,
  .parameters .show-mobile2 {
    display: flex;
  }
  .addition-pad .hide-mobile2,
  .parameters .hide-mobile2 {
    display: none;
  }
  .podniky-page .parameters .parameters__blocks p {
    text-align: center;
  }
  .podniky-page .search__wrapper .show-mobile {
    display: flex;
    align-items: center;
    flex-direction: column-reverse;
    gap: 5px;
    width: 100%;
    padding: 4px 0;
  }
  .podniky-page .search__wrapper .show-mobile .check {
    display: none;
  }
  .working-hours .search-dropdown__toggle {
    padding: 10px 8px;
  }
  .working-hours__day .search-dropdown__item,
  .working-hours__day .search-dropdown__toggle {
    min-width: 135px !important;
    width: 135px !important;
  }
}
@media (max-width: 390px) {
  .my-girls__blocks {
    gap: 10px;
  }
}
@media (max-width: 380px) {
  .my-girls__block {
    padding: 22px 5px;
  }
}
@media (max-width: 375px) {
  .header2 .account-settings {
    width: 145px;
  }
  .header2 .account-settings .search-dropdown__toggle {
    width: 145px;
  }
  .header2 .account-settings .search-dropdown__toggle p {
    font-size: 14px;
  }
  .header2 .account-settings .search-dropdown__item {
    width: 145px;
  }
  .header2 .account-settings .search-dropdown__inner {
    width: 145px;
  }
}
@media (max-width: 370px) {
  .search .parameters .parameters__dropdown {
    top: 93%;
  }
  .search-dropdown__blocks {
    flex-direction: column;
  }
  .search-dropdown__item {
    position: sticky;
  }
  .search-dropdown__list {
    position: relative;
    top: 0;
    margin-top: 0;
  }
  .search-dropdown__inner {
    margin-bottom: 0;
  }
  .girls__blocks {
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
  }
  .girl-item__below {
    margin: 0;
  }
  .girl-item__info .number {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  .girl-item__info .number p {
    font-size: 16px;
    color: #fff;
  }
  .photo .photo-info__top {
    align-items: start;
  }
  .model .photo .photo-info__top {
    align-items: start;
  }
  .model .photo .photo-info__left {
    flex-direction: row;
    width: 55px;
    text-align: center;
  }
  .technical-support__left p br {
    display: none;
  }
  .technical-support__addition a {
    font-size: 20px;
  }
  .office-profile .sidebar .technical-support__left p br {
    display: none;
  }
  .office-profile .sidebar .technical-support__addition a {
    font-size: 20px;
  }
  .my-girls__blocks {
    grid-template-columns: repeat(1, 1fr);
    gap: 18px;
  }
}
@media (max-width: 360px) {
  .header2 .account-settings {
    width: 135px;
  }
  .header2 .account-settings .search-dropdown__toggle {
    width: 135px;
  }
  .header2 .account-settings .search-dropdown__toggle p {
    font-size: 12px;
  }
  .header2 .account-settings .search-dropdown__toggle img {
    width: 12px;
    height: 8px;
  }
  .header2 .account-settings .search-dropdown__item {
    width: 135px;
  }
  .header2 .account-settings .search-dropdown__inner {
    width: 150px;
  }
  .header2 .account-settings .account-form__input {
    padding: 10px 6px;
  }
  .explanation p {
    font-size: 14px;
  }
  .working-hours .search-dropdown__toggle span {
    font-size: 14px;
  }
  .working-hours .search-dropdown__toggle img {
    width: 12px;
  }
  .working-hours__days {
    -webkit-column-gap: 12px;
    -moz-column-gap: 12px;
    column-gap: 12px;
    row-gap: 22px;
  }
  .working-hours__day .search-dropdown__item,
  .working-hours__day .search-dropdown__toggle {
    min-width: 120px !important;
    gap: 5px;
    width: 120px !important;
  }
}
@media (max-width: 340px) {
  .header2 .logo {
    width: 110px;
  }
  .search__wrapper .show-mobile {
    gap: 5px;
  }
  .parameters .parameters__item-mob {
    font-size: 15px;
  }
  .addition-pad .show-mobile2,
  .parameters .show-mobile2 {
    font-size: 15px;
  }
}
.ab-item img {
  display: none !important;
}
.girl-info {
  width: 100%;
}

.--loading {
  position: relative;
}
.--loading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(24, 24, 24, 0.78);
  z-index: 2;
}

.--loading:after {
  z-index: 3;
  content: "";
  position: absolute;
  top: calc(50% - 12px);
  left: calc(50% - 12px);
  width: 24px;
  height: 24px;
  border: 4px solid var(--orange-color);
  border-top: 4px solid transparent;
  border-radius: 50%;
  animation: spin 0.6s cubic-bezier(0.68, 0, 0.35, 0.99) infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.form-errors,
.field-error {
  color: red;
}
.iti__tel-input + .field-error {
  position: absolute;
  bottom: -20px;
}
.field-error {
  margin-top: 4px;
  font-size: 12px;
}
.form-errors.success {
  color: green;
}
.choose-subcategory {
  margin-top: 32px;
}
.choose-subcategory__title {
  margin-bottom: 8px;
  font-size: 20px !important;
  font-weight: 600 !important;
}

/* Error popup */
.reg-error-popup__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 9998;
}
.reg-error-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 32px 36px;
  min-width: 320px;
  max-width: 358px;
  width: 90%;
  color: #fff;
}
.reg-error-popup h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  color: #ff4d4d;
}
.reg-error-popup ul {
  list-style: disc;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.reg-error-popup ul li {
  font-size: 14px;
  color: #e0e0e0;
}
.reg-error-popup__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  padding: 0;
}
.reg-error-popup__close:hover {
  color: #fff;
}
.reg-error-popup--success h3,
.reg-error-popup--success p {
  color: #4caf50;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}
.reg-error-popup h4 {
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 30.8px */
}

.--disabled {
  opacity: 0.6;
  pointer-events: none;
}

/* Photo uploader previews */
.photo-previews {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.photo-preview__item {
  position: relative;
  width: 90px;
  height: auto;
  aspect-ratio: 9 / 16;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}
.photo-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.photo-preview__delete {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.65);
  border: none;
  color: #fff;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.photo-preview__delete:hover {
  background: rgba(255, 60, 60, 0.85);
}

.terms-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
}
.terms-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}
.terms-checkbox__mark {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 2px solid #aaa;
  border-radius: 4px;
  background: transparent;
  transition: background 0.2s, border-color 0.2s;
  position: relative;
  margin-top: 1px;
}
.terms-checkbox input[type="checkbox"]:checked + .terms-checkbox__mark {
  background: var(--orange-color);
  border-color: var(--orange-color);
}
.terms-checkbox input[type="checkbox"]:checked + .terms-checkbox__mark::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 1px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}
.terms-checkbox__text {
  font-size: 16px;
  line-height: 1.5;
  color: #ccc;
}
.terms-checkbox__text a {
  color: var(--orange-color);
  text-decoration: underline;
}
.terms-checkbox__text a:hover {
  color: #fff;
}

.filter-no-results {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 60px 20px;
  width: 100%;
}
.filter-no-results svg {
  width: 64px;
  height: 64px;
  opacity: 0.85;
}
.filter-no-results p {
  font-size: 22px;
  font-weight: 600;
  color: var(--white-color);
  margin: 0;
}
.filter-no-results p span {
  color: var(--orange-color);
}
.filter-no-results__hint {
  font-size: 14px;
  color: var(--dark-grey-color);
}
.worktime-toggle {
  width: auto;
}
.worktime-toggle img {
  filter: invert(1);
}

/* Range selects */
.range-select {
  width: 100%;
  display: flex;
  gap: 4px;
  background: #333;
  border-radius: 6px;
  padding: 4px;
  box-sizing: border-box;
}
.range-select__select {
  flex: 1;
  min-width: 0;
  background: #333;
  border: none;
  border-radius: 6px;
  padding: 6px 28px 6px 8px;
  color: #ccc;
  font-size: 16px;
  font-weight: 500;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 8px center;
  cursor: pointer;
  line-height: 1.1;
}
.range-select__select option {
  background: #333;
  color: #ccc;
}
.filter-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter-select {
  height: 38px;
  border-radius: 6px;
  border: 1px solid #666;
  background: #333;
  padding: 10px 12px;
  width: 100%;
}
.parameters__dropdown__blocks .choose-categories__top {
  width: 100%;
}

/* =====================
   Select2 Custom Theme
   ===================== */
.select2-container {
  width: 100% !important;
}
.select2-container--default .select2-selection--single {
  background-color: #333;
  border: 1px solid #333;
  border-radius: 6px;
  height: auto;
  padding: 10px 14px;
  display: flex;
  align-items: center;
}
.select2-container--default.select2-container--open .select2-selection--single {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  border-bottom-color: #333;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  color: #ccc;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  padding-right: 20px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #ccc;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 100%;
  top: 0;
  right: 12px;
  width: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
  border: none;
  width: 13px;
  height: 13px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='13' height='13' viewBox='0 0 13 13'%3E%3Cpath d='M2 4.5l4.5 4.5 4.5-4.5' stroke='%23cccccc' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 13px 13px;
  margin: 0;
  transform: rotate(0deg);

  top: calc(50% - 6px);
  transition: transform 0.2s ease;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  transform: rotate(180deg);
}
.select2-container--default .select2-dropdown {
  background-color: #333;
  border: 1px solid #333;
  border-top: none;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  overflow: hidden;
}
.select2-container--default .select2-results {
  border-top: 1px solid #333;
  max-height: 180px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ff9900 #333;
}
.select2-container--default .select2-results::-webkit-scrollbar {
  width: 3px;
  border-radius: 10px;
}
.select2-container--default .select2-results::-webkit-scrollbar-track {
  background: #333;
  border-radius: 10px;
}
.select2-container--default .select2-results::-webkit-scrollbar-thumb {
  background: #ff9900;
  border-radius: 10px;
}
.select2-container--default .select2-results__options {
  max-height: none !important;
  overflow: visible !important;
  padding: 0;
}
/* Nested options list inside optgroups — no separate scroll */
.select2-container--default .select2-results__options--nested {
  max-height: none !important;
  overflow: visible !important;
}
.select2-container--default .select2-results__option {
  color: #ccc;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.1;
  padding: 8px 8px;
  background-color: transparent;
  transition: color 0.15s ease;
}
.select2-container--default .select2-results__option--highlighted[aria-selected],
.select2-container--default .select2-results__option--highlighted {
  background-color: transparent;
  color: #ff9900;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
  background-color: transparent;
  color: #ff9900;
}
.select2-container--default .select2-results__option[aria-selected="true"]:hover,
.select2-container--default .select2-results__option[aria-selected="true"].select2-results__option--highlighted {
  color: #ff9900;
}
/* Optgroup label */
.select2-container--default .select2-results__group {
  color: #888;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 8px 4px;
  border-top: 1px solid #333;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: default;
}
.select2-container--default .select2-results__option[role="group"]:first-child .select2-results__group {
  border-top: none;
}
/* Indent options inside optgroup */
.select2-container--default .select2-results__options .select2-results__option[role="treeitem"] {
  padding-left: 16px;
}
/* Hide search since minimumResultsForSearch: Infinity */
.select2-container--default .select2-search--dropdown {
  display: none;
}
/* Drop-above variant */
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
  border-top-color: #333;
  border-bottom-color: #666;
}
.select2-container--default .select2-dropdown--above {
  border: 1px solid #666;
  border-bottom: none;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.select2-container--default .select2-dropdown--above .select2-results {
  border-top: none;
  border-bottom: 1px solid #333;
}
.existing-photos {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.dropdown-arrow {
  transition: transform 0.2s ease;
}
.account-dropdown.is-open .dropdown-arrow {
  transform: rotate(-180deg);
}
.tab-btn.--disabled {
  display: none;
}
body.blog {
  margin: 0 !important;
}
.register-page {
  padding-bottom: 10px;
}

/* intl-tel-input dark mode overrides */
.iti {
  width: 100%;
}
.iti__selected-dial-code {
  color: #fff;
}
.iti__arrow {
  border-top-color: #999;
}
.iti__arrow--up {
  border-bottom-color: #999;
}
.iti__country-list {
  background-color: #333;
  border-color: #666;
  color: #fff;
}
.iti__country-list .iti__country:hover,
.iti__country-list .iti__country--highlight {
  background-color: #444;
}
.iti__country-list .iti__divider {
  border-bottom-color: #555;
}
.iti__dial-code {
  color: #ccc;
}
.iti__search-input {
  background-color: #333;
  color: #fff;
  border-color: #666;
}
.iti__search-input::placeholder {
  color: #999;
}

#photoCount {
  color: var(--black-color);
}

.search-dropdown__item.--kraj,
.search-dropdown__item.--mesto,
.search-dropdown__item.--subcategory,
.podniky-filter .search-dropdown__item:has(.do-select2) {
  /* min-width: 180px; */
  width: 180px;
  flex: 0 0 180px;
}
.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #333;
}

.success-reg-popup-message p {
  color: #fff;
  margin: 16px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 120%; /* 19.2px */
  text-align: left;
}

.agency-logo-preview .photo-preview__item {
  border-radius: 50%;
  aspect-ratio: 1/1;
}
.agency-logo-preview {
  margin-top: 16px;
}

.podniky__list:has(.filter-no-results) {
  grid-template-columns: 1fr;
}
.office-profile {
  min-height: 50vh;
}
.my-girls__blocks .block-empty {
  min-height: 576px;
}

.my-girls,
.block-empty__blocks {
  width: 100%;
}

.box {
  padding: 44px 34px;
  background: #1b1b1b;
  border-radius: 6px;
}
@media screen and (max-width: 768px) {
  .box {
    padding: 32px 22px;
  }
}

.new-models-slider {
  width: 100%;
}
.header__below.show-mobile .menu__item:last-child {
  display: none;
}
.photo__view {
  position: absolute;
  bottom: 8px;
  display: flex;
  right: 8px;
  z-index: 9999;
}

.girl-item.--v2.--vip .photo {
  border: 3px solid #f5134c;
  border-radius: 9px;
}
.girl-item.--v2 .photo .photo-info .vip {
  background: #f5134c;

  position: absolute;
  top: 4px;
  right: -17px;
  transform: rotate(45deg);
  width: 65px;
  justify-content: center;
  text-align: center;
  border-radius: 0;
}
.single-girl-photo .vip {

    background: #f5134c;
    position: absolute;
    right: -111px;
    top: 9px;
    padding: 4px 108px;
    transform: rotate(45deg);
    display: flex;
    align-items: center;
    gap: 4px;
    
}
.single-girl-photo .vip img {
  width: 20px;
  display: block;
}
.single-girl-photo.--vip .photo{
  border: 3px solid #f5134c;
  border-radius: 9px;
}
.girl-item.--v2 .photo .photo-info .new,
.single-girl-photo .new {
  font-weight: 600;
  font-size: 10px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(90deg, #07b749 0%, #81d118 100%);
  width: 100%;
  top: 0;
  position: absolute;
  left: 0;
  text-align: center;
}
.single-girl-photo .new {
  font-size: 12px;
  padding: 4px;
}
.girl-item.--v2 .photo .photo-info .verified {
  position: unset;
  display: flex;
  gap: 2px;
  justify-content: center;
  transform: none !important;

  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 110%; /* 11px */
  border: none;
  padding: 0;
  width: 100%;
  background: none;
  margin-bottom: 6px;
}
.girl-item.--v2 .name {
  display: block;
  color: #fff;
  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 16.5px */
  text-align: center;
}
.girl-item.--v2 .photo .photo-info .verified img {
  display: none;
}
.girl-item.--v2 .girl-item__top {
  display: flex;
  justify-content: center;
}
.girl-item.--v2 .photo .photo-info {
  padding: 10px 6px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.4), transparent);
}
.girl-item.--v2 .girl-item__info .number {
  border-radius: 6px;
  background: #1b1b1b;
  padding: 6px 6px;
  border: none;
  width: 100%;
  justify-content: center;
}
.girl-item.--v2 .girl-item__info .number:hover {
  background: #333333;
}

.girl-item.--v2 .girl-item__info .number p {
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%; /* 15.4px */
}
.girl-item.--v2 .girl-item__below {
  color: #fff;

  font-size: 15px;
  font-style: normal;
  font-weight: 500;
  line-height: 110%; /* 16.5px */
}
.girl-item.--v2 {
}
.girl-item.--v2 {
}
.girl-item.--v2 {
}
.girl-item.--v2 {
}
@media screen and (max-width: 560px) {
  .account-btn .name {
    /* add text overflow dots */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 84%;
  }
  .account-dropdown {
    max-width: 73%;
  }
  .account-btn svg:first-child {
    display: none;
  }
  .header__below.show-mobile .menu__list {
    width: 100%;
    justify-content: space-between;
  }
  .search__title {
    text-align: center;
  }
  .search .parameters {
    align-self: center;
  }
  .category .new-models {
    padding-top: 16px;
  }
  .search .filter,
  .parameters__item {
    font-weight: 600;
  }
  .new-models__wrap .swiper-slide:not(.swiper-slide-active) {
    /* opacity: 0.5; */
  }
  .category .new-models__wrap .swiper-slide {
    width: 205px;
  }
}
.girl-item__info .number img {
  height: 17px;
}

.new-models__wrap .girl-item__info .number img {
  display: none;
}
@media screen and (min-width: 1024px) {
  .category .new-models__wrap .new-models-pagination {
    display: none;
  }
}

.new-models__container {
  margin-bottom: 20px;
  padding-bottom: 30px;
  border-bottom: 1px solid #333;
}
.filter {
  height: 41.2px;
  font-weight: 600;
  padding-top: 11px;
}

.call-text {
  margin-top: 10px;
  color: var(--orange-color);
}
.photo-preview__item:first-child {
  border: 3px solid var(--orange-color);
}
.photo-preview__item:first-child:after {
  content: "Hlavní fotografie";
  font-size: 12px;
  display: block;
  z-index: 9999;
  position: relative;
  opacity: 1;
  color: var(--orange-color);
  background: #1b1b1b;
  position: absolute;
  bottom: 0;
  text-align: center;
  padding: 2px 0;
}

.search-parameters__list {
  width: 100%;
}
.agency-verif-count {
  color: #000;
}
.agency-verif-new-previews {
  margin-bottom: 10px;
}

/* =====================
   Age verification popup
   ===================== */
.age-popup-fancybox .fancybox-bg {
  background: rgba(0, 0, 0, 0.92);
}
.age-popup-fancybox .fancybox-content {
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
}
.age-popup {
  max-width: 780px;
  width: 100%;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  color: #fff;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
}
/* Header: icon + lang tabs */
.age-popup__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 28px 16px;
  border-bottom: 1px solid #2a2a2a;
  flex-shrink: 0;
}
.age-popup__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 3px solid var(--orange-color);
  font-size: 16px;
  font-weight: 700;
  color: var(--orange-color);
  flex-shrink: 0;
}
/* Scrollable content area */
.age-popup__body {
  overflow-y: auto;
  padding: 24px 28px;
  flex: 1 1 auto;
  scrollbar-width: thin;
  scrollbar-color: #3a3a3a #1a1a1a;
}
.age-popup__body::-webkit-scrollbar {
  width: 5px;
}
.age-popup__body::-webkit-scrollbar-track {
  background: #1a1a1a;
}
.age-popup__body::-webkit-scrollbar-thumb {
  background: #3a3a3a;
  border-radius: 4px;
}
.age-popup__body p {
  font-size: 13px;
  line-height: 1.65;
  color: #aaa;
  margin-bottom: 14px;
}
.age-popup__body ul {
  margin: 0 0 14px 0;
  padding-left: 20px;
}
.age-popup__body ul li {
  font-size: 13px;
  line-height: 1.65;
  color: #aaa;
  margin-bottom: 5px;
}
.age-popup__section-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px !important;
}
.age-popup__agreement {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #fff !important;
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
  padding: 12px 0;
  margin: 16px 0 !important;
}
.age-popup__disclaimer {
  font-size: 12px !important;
  color: #666 !important;
  line-height: 1.6;
}
/* Footer buttons */
.age-popup__footer {
  display: flex;
  gap: 12px;
  padding: 16px 28px 22px;
  border-top: 1px solid #2a2a2a;
  flex-shrink: 0;
}
.age-popup__confirm {
  flex: 1;
  background: var(--orange-color);
  color: #111;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  letter-spacing: 0.04em;
}
.age-popup__confirm:hover {
  opacity: 0.85;
}
.age-popup__deny {
  flex: 1;
  background: transparent;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 8px;
  border: 1px solid #444;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
  letter-spacing: 0.04em;
}
.age-popup__deny:hover {
  color: #ccc;
  border-color: #666;
}
@media (max-width: 600px) {
  .age-popup__header {
    padding: 16px 18px 14px;
  }
  .age-popup__body {
    padding: 18px 18px;
  }
  .age-popup__footer {
    flex-direction: column;
    padding: 14px 18px 18px;
  }
  .age-popup__confirm,
  .age-popup__deny {
    width: 100%;
  }
}

/* Full-screen denial overlay */
.age-denied {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999999;
  background: #0d0d0d;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
}
.age-denied.active {
  display: flex;
}
.age-denied__content {
  max-width: 480px;
}
.age-denied__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  border: 4px solid #e53935;
  font-size: 28px;
  font-weight: 700;
  color: #e53935;
  margin-bottom: 28px;
}
.age-denied__title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.age-denied__text {
  font-size: 15px;
  color: #888;
  line-height: 1.6;
}
#age-popup {
  background: none;
  padding: 0;
}

/* Model invite (self-registration for admin-created profiles) */
.nag-invite .register-person__container {
  padding: 0 15px;
}
.nag-invite .register-person__blocks {
  max-width: 420px;
  margin: 40px auto;
}
.nag-invite__note {
  font-weight: 400;
  font-size: 15px;
  line-height: 1.5;
  color: var(--grey-color);
}
.nag-invite__form .nag-invite__code-row .title {
  margin-bottom: 14px;
}
.nag-invite__hint {
  margin-top: 10px;
  font-size: 13px;
  color: var(--grey-color);
  text-align: left;
}
.nag-invite__resend {
  color: var(--orange-color);
  text-decoration: underline;
}
.nag-invite__resend:hover {
  color: var(--orange-hover-color);
}
.nag-invite .input-error {
  border-color: red;
}
.nag-invite .form-errors {
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
}

/* -------------------------------------------------------------------------
   Promotions — buy buttons, active status chips, confirm modal (dark)
   ---------------------------------------------------------------------- */
.promo-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 14px;
}
.promo-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.promo-buy {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  background-color: var(--orange-color);
  color: var(--black-color);
  transition: background-color 0.2s ease-in-out;
}
.promo-buy * {
  color: var(--black-color);
}
.promo-buy:hover {
  background-color: #d37f00;
}
.promo-buy--extend {
  background-color: transparent;
  color: var(--orange-color);
  border: 1px solid var(--orange-color);
}
.promo-buy--extend,
.promo-buy--extend * {
  color: var(--orange-color);
}
.promo-buy--extend:hover {
  background-color: rgba(255, 153, 0, 0.12);
}

.promo-status {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.promo-status__item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #bdbdbd;
  background-color: #151515;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 8px 12px;
}
.promo-status__item * {
  color: inherit;
}
.promo-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex: 0 0 auto;
  background-color: #666;
}
.promo-status__item--top .promo-status__dot {
  background-color: var(--orange-color);
}
.promo-status__item--vip .promo-status__dot {
  background-color: #c07bff;
}
.promo-status__item strong {
  color: #ffffff;
  font-weight: 600;
}
.promo-status__until {
  color: #6ee89a;
}

/* Confirm modal */
.promo-modal {
  position: fixed;
  inset: 0;
  z-index: 100000;
}
.promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}
.promo-modal__dialog {
  position: relative;
  max-width: 420px;
  width: 90%;
  margin: 14vh auto 0;
  background: #1a1a1a;
  border: 1px solid #333;
  border-radius: 12px;
  padding: 28px 32px;
  color: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.promo-modal__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #aaa;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}
.promo-modal__close:hover {
  color: #fff;
}
.promo-modal__title {
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 14px;
  color: #fff;
}
.promo-modal__text {
  font-size: 15px;
  line-height: 1.5;
  margin: 0 0 8px;
  color: #e0e0e0;
}
.promo-modal__balance {
  font-size: 13px;
  margin: 0 0 20px;
  color: #9a9a9a;
}
.promo-modal__error {
  display: none;
  font-size: 14px;
  margin-bottom: 12px;
  color: #ff4d4d;
}
.promo-modal__actions {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}
.promo-modal__cancel,
.promo-modal__confirm {
  padding: 10px 18px;
  border-radius: 8px;
  border: 0;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
}
.promo-modal__cancel {
  background: #333;
  color: #fff;
}
.promo-modal__cancel:hover {
  background: #444;
}
.promo-modal__confirm {
  background: var(--orange-color);
  color: var(--black-color);
}
.promo-modal__confirm:hover {
  background: #d37f00;
}
