:root {
  --color--background: #fff;
  --color-primary: #206fff;
  --color-black: #1b1b1b;
  --color-stroke: #e3e3e3;
  --color-white: #fff;
  --color-accent: #0047cc;
  --color-secondary: #669cff;
  --color-grey: #6a6a6a;
  --color-grey-light: #e3e3e3;
  --color-grey-background: #f9f9f9;
  --color-background-2: #f5f6ff;
  --color-secondary-500: rgba(102, 156, 255, 0.5);
  --color-white-2: rgba(255, 255, 255, 0.15);
  --color-red: #f00;
  --color-blue-light: #e0ebff;
  --color-orange: #ff6b35;
  --color-green: #00bb45;
  --color-green-150: rgba(34, 197, 94, 0.1);
  --color-primary-100: rgba(32, 111, 255, 0.1);
  --color-orange-100: rgba(255, 107, 53, 0.1);
  --color-red-100: rgba(255, 0, 0, 0.1);
  --color-secondary-100: rgba(102, 156, 255, 0.1);
  --color-secondary-50: rgba(102, 156, 255, 0.05);
  --font-family: "Montserrat", sans-serif;
  --second-family: "Inter", sans-serif;
  --third-family: "Gilroy", sans-serif;
}

/* Dark theme variables */
[data-theme="dark"] {
  --color--background: #1a1a1a;
  --color-primary: #4a9eff;
  --color-black: #ffffff;
  --color-stroke: #404040;
  --color-white: #1a1a1a;
  --color-accent: #6bb6ff;
  --color-secondary: #7bb3ff;
  --color-grey: #b0b0b0;
  --color-grey-light: #404040;
  --color-grey-background: #2a2a2a;
  --color-background-2: #1f1f1f;
  --color-secondary-500: rgba(123, 179, 255, 0.5);
  --color-white-2: rgba(255, 255, 255, 0.15);
  --color-red: #ff4444;
  --color-blue-light: #2a3441;
  --color-orange: #ff8c5a;
  --color-green: #4ade80;
  --color-green-150: rgba(74, 222, 128, 0.1);
  --color-primary-100: rgba(74, 158, 255, 0.1);
  --color-orange-100: rgba(255, 140, 90, 0.1);
  --color-red-100: rgba(255, 68, 68, 0.1);
  --color-secondary-100: rgba(123, 179, 255, 0.1);
  --color-secondary-50: rgba(123, 179, 255, 0.05);
}

[data-theme="dark"] {
    --color--background: #0f1729;
    --color-primary: #4a9eff;
    --color-black: #ffffff;
    --color-stroke: #404040;
    --color-white: #0f1729;
    --color-accent: #9757fb;
    --color-secondary: #7bb3ff;
    --color-grey: #b0b0b0;
    --color-grey-light: #404040;
    --color-grey-background: #1d283a;
    --color-background-2: #1f1f1f;
    --color-secondary-500: rgba(123, 179, 255, 0.5);
    --color-white-2: rgba(255, 255, 255, 0.15);
    --color-red: #ff4444;
    --color-blue-light: #2a3441;
    --color-orange: #ff8c5a;
    --color-green: #4ade80;
    --color-green-150: rgba(74, 222, 128, 0.1);
    --color-primary-100: rgba(74, 158, 255, 0.1);
    --color-orange-100: rgba(255, 140, 90, 0.1);
    --color-red-100: rgba(255, 68, 68, 0.1);
    --color-secondary-100: rgba(123, 179, 255, 0.1);
    --color-secondary-50: rgba(123, 179, 255, 0.05);
}
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a {
  transition: 0.3s;
}
img {
  max-width: 100%;
  max-height: 100%;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container {
  width: 1310px;
  padding: 0 14px;
  margin: auto;
}
body,
input,
textarea,
button {
  font-family: 'Montserrat', sans-serif;
}
.modal {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal .close-modal-times {
  color: rgba(213, 213, 213, 0.78);
  font-size: 50px;
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-modal-times:hover {
  color: #ffffff;
}
.modal .modal-block {
  max-width: calc(100% - 24px);
  display: none;
  animation: scall 0.7s;
}
.open-modal {
  cursor: pointer;
}
.menu_mob {
  width: 28px;
  height: 18px;
  display: none;
  position: relative;
}
.menu_mob span {
  width: 28px;
  height: 2px;
  border-radius: 10px;
  display: block;
  background-color: var(--color-grey);
  position: absolute;
  top: 0;
  transition: 0.5s;
}
.menu_mob span:nth-child(2) {
  width: 20px;
  top: 8px;
}
.menu_mob span:nth-child(3) {
  top: 16px;
}
.active_drop_men.menu_mob span {
  width: 20px;
  top: 10px;
  background: #969696;
}
.active_drop_men span:nth-child(1) {
  transform: rotate(225deg);
}
.active_drop_men span:nth-child(2) {
  transform: rotate(135deg);
}
.active_drop_men span:nth-child(3) {
  transform: rotate(225deg);
}
.overflow-wrap {
  overflow-x: auto;
  padding-bottom: 10px;
}
.overflow-wrap::-webkit-scrollbar-track {
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar {
  height: 5px;
  background-color: #efebe0;
}
.overflow-wrap::-webkit-scrollbar-thumb {
  background-color: #0e987f;
  border-radius: 5px;
}
.scroll-top {
  position: fixed;
  bottom: 12px;
  right: 15px;
  width: 34px;
  height: 34px;
  display: block;
  background-color: var(--color-primary);
  border: 1px solid #fff;
  background-image: url(../img/up-arrow.svg);
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateX(150%);
  z-index: 10;
  border-radius: 7px;
}
.scroll-top:hover {
  background-color: #0047cc;
}
.scroll-top.active {
  opacity: 1;
  transform: none;
}
@keyframes scall {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.center {
  text-align: center;
}
.btn {
  max-width: 100%;
  height: 54px;
  display: inline-flex;
  text-align: center;
  justify-content: center;
  align-items: center;
  border: none;
  border-radius: 8px;
  outline: none;
  font-family: var(--font-family);
  font-size: 16px;
  padding: 0 24px;
  cursor: pointer;
}
.btn.full {
  width: 100%;
}
.btn.small {
  height: 44px;
  font-size: 14px;
}
.btn.tiny {
  height: 28px;
  border-radius: 4px;
  font-size: 12px;
  padding: 10px 12px;
}
.btn.big {
  height: 60px;
  font-size: 18px;
}
.btn.add-icon {
  gap: 8px;
}
.btn.lightning-btn {
  background-image: url(../img/lightning-btn-icon.svg);
  background-repeat: no-repeat;
  background-position: 15px center;
  padding: 0 16px 0 35px;
}
.btn.telegram-icon,
.btn.support-icon,
.btn.copy-link-icon {
  background-position: 12px center;
  padding-left: 38px;
  background-repeat: no-repeat;
}
.btn.telegram-icon {
  background-image: url(../img/telegram-white-icon.svg);
}
.btn.support-icon {
  background-image: url(../img/support-icon-white-icon.svg);
}
.btn.copy-link-icon {
  background-image: url(../img/copy-link-icon.svg);
}
.btn-border {
  border: 1px solid var(--color-primary);
  background-color: var(--color-white);
  color: var(--color-black);
}
.btn-border:hover {
  background-color: #f4f4f4;
}
.btn-gray {
  background-color: var(--color-white-2);
  color: var(--color-white);
}
.btn-gray:hover {
  background-color: #333131;
}
.header {
  padding: 14px 0;
  box-shadow: 0 1px 6px 0 rgba(0, 26, 73, 0.05), 0 1px 4px 0 rgba(2, 15, 38, 0.05);
}
.header-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-menu {
  width: calc(100% - 270px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header-logo img {
  display: block;
}
.header-logo:hover {
  opacity: 0.7;
}
.header-right {
  display: flex;
  align-items: center;
  gap: 24px;
}
.login-button {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.login-button:hover {
  color: var(--color-primary);
}
.register-btn {
  width: 150px;
  height: 44px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: var(--color-primary);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-white);
  border-radius: 8px;
  padding-left: 23px;
  background-image: url(../img/register-icon.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
}
.register-btn:hover {
  background-color: #1e63e2;
}
.select-language {
  width: 62px;
  height: 38px;
  border: 1px solid var(--color-secondary);
  border-radius: 8px;
  padding: 0 10px;
  outline: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  background-image: url(../img/select-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-language::-ms-expand {
  display: none;
}
.header-menu-list {
  display: flex;
  gap: 16px;
    align-items: center;
}
.header-menu-list > li a {
  display: flex;
  align-items: center;
  gap: 5px;
}
.header-menu-list > li a span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.header-menu-list > li a.active {
  pointer-events: none;
  position: relative;
}
.header-menu-list > li a.active:before {
  content: '';
  width: 100%;
  height: 1px;
  background-color: var(--color-accent);
  position: absolute;
  bottom: -3px;
  left: 0;
}
.header-menu-list > li a.active span {
  color: var(--color-accent);
}
.header-menu-list > li a:hover {
  opacity: 0.7;
}
.header-mobile-box {
  display: flex;
  align-items: center;
  gap: 12px;
}
.register-mobile-btn {
  width: 28px;
  height: 28px;
  background-color: var(--color-primary);
  border-radius: 8px;
  padding-left: 23px;
  background-image: url(../img/register-icon.svg);
  background-repeat: no-repeat;
  background-position: 12px center;
  background-size: 15px;
  background-position: 7px center;
  display: none;
}
.banner {
  padding: 40px 0 65px;
}
.banner-box {
  background-image: url(../img/banner-bg.png);
  background-repeat: no-repeat;
  background-position-y: center;
  background-position-x: calc(100% - 25px);
  background-color: var(--color-primary);
  border-radius: 12px;
  padding: 54px;
}
.banner-content {
  max-width: 680px;
}
.banner-content h1 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 40px;
  line-height: 140%;
  letter-spacing: 0.01em;
  color: var(--color-white);
}
.banner-content p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-white);
  margin: 24px 0 48px;
}
.banner-btns {
  display: flex;
  gap: 30px;
}
.btn-white {
  color: var(--color-black);
  border: 1px solid var(--color-white);
  background-color: var(--color-white);
}
.btn-white:hover {
  background-color: #f0f0f0;
}
.btn-blue {
  border: 1px solid var(--color-white);
  background-color: var(--color-primary);
  color: var(--color-white);
}
.btn-blue:hover {
  background-color: #1b65ed;
}
.section {
  padding: 65px 0;
}
.banner-info {
  display: flex;
  justify-content: space-between;
  margin-top: 12px;
}
.banner-info-icon {
  width: 48px;
}
.banner-info-content {
  width: calc(100% - 62px);
  padding-top: 8px;
}
.banner-info-content h5 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-primary);
}
.banner-info-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.banner-info-content p span {
  font-weight: 700;
}
.steps-wrap {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
}
.step-block {
  width: 33.333%;
}
.step-block:not(:last-child) {
  border-right: 1px solid var(--color-grey-light);
}
.step-content {
  padding: 26px 24px;
}
.step-title {
  display: flex;
  align-items: center;
  gap: 16px;
  border-bottom: 1px solid var(--color-grey-light);
  padding: 12px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.step-title span {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: var(--color-white);
}
.radio-icon {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  padding: 12px;
  gap: 14px;
  cursor: pointer;
}
.radio-icon:hover span {
  opacity: 0.75;
}
.radio-icon input {
  display: none;
}
.radio-icon span {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-black);
  transition: 0.3s;
}
.radio-icon input[type=radio]:checked + span {
  color: var(--color-primary);
  opacity: 1;
}
.radio-icon:not(:last-child) {
  margin-bottom: 12px;
}
.step-info-box {
  margin-bottom: 22px;
}
.step-info-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 12px;
}
.step-premium-wrap {
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  padding: 0 12px;
  position: relative;
}
/*.step-premium-wrap:before {*/
/*  content: '';*/
/*  background-image: url(../img/dropdown-Icon.svg);*/
/*  width: 24px;*/
/*  height: 24px;*/
/*  position: absolute;*/
/*  top: 12px;*/
/*  right: 12px;*/
/*  transition: 0.3s;*/
/*}*/
.step-premium-wrap.open:before {
  transform: rotate(180deg);
}
.step-premium-box {
  padding: 12px 0;
  cursor: pointer;
}
.step-premium-box h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  padding-right: 22px;
  margin-bottom: 8px;
}
.step-premium-box:not(:first-child) {
  border-top: 1px solid var(--color-grey-light);
}
.step-info-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-bottom: 3px;
}
.step-info-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.step-info-list li:not(:last-child) {
  position: relative;
}
.step-info-list li:not(:last-child):before {
  content: '/';
  position: absolute;
  top: 1px;
  right: -10px;
  color: var(--color-grey-light);
}
.step-info-list li span {
  color: var(--color-secondary);
}
.step-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.step-top-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.step-top-title .step-info-title {
  margin-bottom: 0;
}
.more-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--color-primary);
  cursor: pointer;
}
.more-btn:hover {
  color: #0047cc;
}
.service-description-box {
  background: var(--color-grey-background);
  border-radius: 8px;
  padding: 12px;
}
.time-info {
  background-image: url(../img/time-icon.svg);
  background-repeat: no-repeat;
  background-position-y: 3px;
  padding-left: 19px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 15px;
}
.input {
  width: 100%;
  height: 44px;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  padding: 12px 16px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
  outline: none;
}
.input.grey {
  background: var(--color-blue-light);
  color: var(--color-grey);
  border: none;
}
.input.border-blue {
  border: 1px solid var(--color-secondary-500);
}
.counnting-item {
  width: 175px;
  height: 40px;
  display: flex;
  border: 1px solid var(--color-grey-background);
  border-radius: 8px;
  font-size: 14px;
}
.counnting-item span {
  width: 40px;
  height: 100%;
  background-color: var(--color-grey-background);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-black);
  outline: none;
  cursor: pointer;
  transition: 0.3s;
}
.counnting-item span:first-child {
  border-radius: 8px 0 0 8px;
}
.counnting-item span:last-child {
  border-radius: 0 8px 8px 0;
}
.counnting-item span:hover {
  background-color: #efebe0;
}
.counnting-item input {
  width: calc(100% - 80px);
  background: #ffffff;
  text-align: center;
  color: var(--color-black);
  border: none;
}
.counnting-item.full {
  width: 100%;
}
.counnting-box {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 5px;
}
.counnting-cost {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-primary);
}
.limit-text {
  margin-bottom: 20px;
}
.checkbox span {
  display: inline-block;
  background-repeat: no-repeat;
  background-size: 18px;
  padding: 1px 5px 1px 28px;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
}
.checkbox span b {
  font-size: 14px;
  color: var(--color-black);
  font-weight: 600;
  display: block;
  margin-bottom: 5px;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + span {
  background-image: url(../img/chechbox.svg);
}
.checkbox input[type=checkbox]:checked + span {
  background-image: url(../img/chechbox-active.svg);
}
.advantages-box {
  padding: 60px 54px;
  background-color: var(--color-background-2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 120%;
  color: var(--color-black);
}
.title.white {
  color: var(--color-white);
}
.title.medium-title {
  font-size: 28px;
}
.title.premium {
  position: relative;
  padding-right: 100px;
}
.title.premium:after {
  content: 'PREMIUM';
  width: 86px;
  height: 24px;
  background: var(--color-secondary);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--color-white);
  position: absolute;
  top: 3px;
  right: 0;
}
.advantages-content {
  width: 44%;
}
.advantages-content .list-info {
  margin: 45px 0 100px;
}
.advantages-photo {
  width: 56%;
}
.list-info li {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-black);
  position: relative;
  padding-left: 18px;
}
.list-info li:before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
  position: absolute;
  top: 8.5px;
  left: 0;
}
.list-info li:not(:last-child) {
  margin-bottom: 12px;
}
.small-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 24px;
}
.swiper-reviews {
  max-width: 400px;
  margin: 0;
  padding-bottom: 35px;
}
.reviews-box {
  border-radius: 8px;
  padding: 12px;
  background: var(--color--background);
}
.reviews-top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
}
.reviews-user {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviews-photo img {
  width: 40px;
  height: 40px;
  display: block;
  border-radius: 50px;
}
.reviews-name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 5px;
}
.reviews-date {
  font-family: var(--third-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
}
.reviews-star {
  display: flex;
  gap: 2px;
}
.reviews-star li {
  width: 16px;
  height: 16px;
  background-image: url(../img/star-gray.svg);
  background-repeat: no-repeat;
  background-position: center center;
}
.reviews-star li.star-gold {
  background-image: url(../img/star-gold.svg);
}
.reviews-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 20px;
}
.swiper-pagination.pagination-reviews {
  text-align: left;
}
.swiper-pagination.pagination-reviews .swiper-pagination-bullet {
  width: 6px;
  height: 6px;
}
.swiper-pagination.pagination-reviews .swiper-pagination-bullet {
  margin: 0 2.5px;
}
.swiper-pagination.pagination-reviews .swiper-pagination-bullet-active {
  background: var(--color-secondary);
}
.sub-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--color-grey);
}
.sub-text.white {
  color: var(--color-white);
}
.sub-text.left {
  text-align: left;
}
.honestly .sub-text {
  margin: 12px 0 45px;
}
.honestly-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.honestly-block {
  width: calc(33.333% - 16px);
}
.honestly-box {
  border: 1px solid var(--color-secondary-500);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
}
.honestly-box:not(:last-child) {
  margin-bottom: 24px;
}
.honestly-icon {
  width: 44px;
  height: 44px;
  background: var(--color-primary);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.honestly-content {
  width: calc(100% - 56px);
  font-family: var(--font-family);
}
.honestly-content h4 {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  margin-bottom: 8px;
}
.honestly-content p {
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.honestly-social-box {
  border-radius: 24px;
  padding: 48px;
  background: var(--color-background-2);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 32px;
}
.honestly-social-item {
  width: 75px;
  text-align: center;
}
.honestly-social-name {
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--color-black);
  margin-top: 7px;
}
.social-join-text {
  font-family: var(--font-family);
  font-size: 12px;
  text-align: center;
  color: var(--color-grey);
  margin-top: 10px;
}
.faq-box {
  padding: 48px;
  background: var(--color-grey-background);
}
.faq-sub {
  margin: 8px 0 17px;
}
.faq .faq-wrap {
  margin-top: 32px;
}
.faq-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.faq-item {
  width: calc(50% - 10px);
}
.faq-block {
  border-radius: 8px;
  background: var(--color-white);
}
.faq-block.active .faq-title:before,
.faq-block.active .faq-title:after {
  transform: rotate(180deg);
}
.faq-block:not(:last-child) {
  margin-bottom: 20px;
}
.faq-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  padding: 21px 48px 21px 24px;
  cursor: pointer;
  position: relative;
}
.faq-title:before,
.faq-title:after {
  content: '';
  width: 14px;
  height: 2px;
  border-radius: 100px;
  background: var(--color-black);
  position: absolute;
  top: calc(50% - 1px);
  right: 24px;
  transition: 0.3s;
}
.faq-title:after {
  transform: rotate(90deg);
}
.faq-info {
  padding: 0 24px 20px;
  display: none;
}
.faq-info p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.support-box {
  background-image: url(../img/support-bg.jpg);
  background-size: cover;
  background-position: center center;
  border-radius: 12px;
  padding: 60px 100px;
  text-align: center;
}
.support-box .title {
  margin: 28px 0 20px;
}
.support-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 30px 0;
}
.chat-icon {
  background-image: url(../img/chat-icon.svg);
  background-repeat: no-repeat;
  background-position: 23px center;
  padding-left: 50px;
}
.list-support-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}
.list-support-info li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--color-white);
}
.footer {
  padding: 60px 0 20px;
  background: var(--color-black);
  margin-top: 65px;
}
.footer-box {
  display: flex;
  justify-content: space-between;
  padding-right: 60px;
}
.footer-left {
  width: 269px;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-left-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-white);
  margin: 27px 0;
}
.links-list li a {
  display: flex;
  align-items: center;
  gap: 8px;
}
.links-list li a span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-white);
}
.links-list li a:hover {
  opacity: 0.7;
}
.links-list li:not(:last-child) {
  margin-bottom: 12px;
}
.title-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 156%;
  color: var(--color-white);
  margin-bottom: 15px;
}
.list-payment {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-payment {
  width: 280px;
}
.footer-payment-box {
  border-radius: 8px;
  padding: 12px;
  background: var(--color-white-2);
}
.footer-payment-box h5 {
  display: flex;
  align-content: center;
  gap: 8px;
}
.footer-payment-box h5 span {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 143%;
  color: var(--color-white);
}
.footer-payment-box h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-white);
  margin: 10px 0 6px;
}
.footer-payment-box p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-white);
}
.footer-contacts-list {
  margin: 20px 0 28px;
}
.footer-contacts-list li a {
  display: flex;
  align-items: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-white);
  gap: 10px;
}
.footer-contacts-list li a:hover {
  opacity: 0.8;
}
.footer-contacts-list li:not(:last-child) {
  margin-bottom: 12px;
}
.address-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #898989;
}
.address-link:hover {
  color: var(--color-white);
}
.footer-bottom {
  text-align: center;
  padding-top: 10px;
  border-top: 1px solid var(--color-white-2);
  margin-top: 30px;
}
.footer-bottom p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: #898989;
}
.form-box {
  max-width: 634px;
  box-shadow: 0 4px 24px 0 rgba(0, 26, 73, 0.06);
  padding: 32px;
  border-radius: 12px;
  margin: auto;
}
.form-box .btn {
  margin: 22px 0;
}
.form-box .sub-text a {
  margin-left: 7px;
}
.sub-form {
  margin: 7px 0 24px;
}
.label-item {
  display: block;
  margin-bottom: 20px;
}
.label-name {
  display: block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
  margin-bottom: 5px;
}
.double-title-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}
.double-title-top .label-name {
  margin-bottom: 0;
}
.login-social-list {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 24px 0;
}
.login-social-list li a {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-stroke);
  border-radius: 8px;
  padding: 12px;
}
.login-social-list li a:hover {
  background-color: #f6f6f6;
}
.input-password-box {
  position: relative;
}
.password-change-type {
  width: 20px;
  height: 20px;
  background-image: url(../img/password-change-type.svg);
  background-size: cover;
  position: absolute;
  top: 0px;
  right: 15px;
  cursor: pointer;
  opacity: 0.3;
  transition: 0.3s;
}
.password-change-type:hover {
  opacity: 0.6;
}
.double-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.double-label .label-item {
  width: calc(50% - 12px);
}
.navigation-list {
  display: flex;
  gap: 18px;
  margin-bottom: 33px;
}
.navigation-list li a {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-secondary);
}
.navigation-list li:not(:last-child) {
  position: relative;
}
.navigation-list li:not(:last-child):before {
  content: '/';
  position: absolute;
  top: 5px;
  right: -11px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 11px;
  line-height: 140%;
  color: var(--color-grey);
}
.navigation-list li:last-child a {
  color: var(--color-grey);
  text-decoration: none;
}
.panel-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.panel-left {
  width: 305px;
}
.panel-right {
  width: calc(100% - 327px);
}
.panel-right .faq-wrap {
  display: block;
}
.panel-right .faq-wrap .faq-block {
  background: var(--color-grey-background);
}
.panel-menu {
  border: 1px solid var(--color-grey-light);
  border-radius: 12px;
  padding: 24px;
}
.service-accordion-block.active .service-accordion-item:before {
  transform: rotate(180deg);
}
.service-accordion-block:not(last-child) {
  margin-bottom: 12px;
}
.service-accordion-item {
  display: flex;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.service-accordion-item:hover {
  background-color: #f8f8f8;
}
.service-accordion-item:before {
  content: '';
  width: 10px;
  height: 7px;
  background-image: url(../img/arrow-bottom.svg);
  background-position: center center;
  position: absolute;
  top: calc(50% - 4px);
  right: 15px;
  transition: 0.3s;
}
.service-accordion-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--color-black);
}
.service-list {
  padding: 10px 14px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 14px;
}
.service-list li span {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--color-black);
}
.service-list li:not(last-child) {
  margin-bottom: 12px;
}
.service-accordion-info {
  display: none;
}
.telegram-box {
  background: var(--color-background-2);
  border: 1px solid var(--color-background-2);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  margin-top: 22px;
}
.telegram-box p {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin: 6px 0 12px;
}
.sub-faq {
  margin: 12px 0 24px;
}
.menu-panel-btn {
  display: none;
  background-color: var(--color-grey-background);
  background-image: url(../img/menu-icon.svg);
  background-repeat: no-repeat;
  background-position: 8px center;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  padding: 8px 8px 8px 34px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 143%;
  color: var(--color-grey);
  margin-bottom: 23px;
}
.service-wrap {
  margin-top: 24px;
}
.service-box {
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  padding: 24px;
  background: var(--color-secondary-50);
}
.service-box:not(last-child) {
  margin-bottom: 40px;
}
.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--color-secondary-500);
  padding-bottom: 24px;
  margin-bottom: 24px;
}
.service-top-title {
  display: flex;
  align-items: center;
  gap: 16px;
}
.service-top-title div {
  font-family: var(--font-family);
  color: var(--color-black);
}
.service-top-title div h5 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 3px;
}
.service-top-title div p {
  font-size: 14px;
}
.service-top-info {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-grey);
  text-align: right;
}
.service-top-info p {
  margin-bottom: 5px;
}
.service-top-info span {
  font-weight: 500;
}
.block-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 10px;
}
.block-title.blue {
  color: var(--color-primary);
}
.text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.service-content-block:not(last-child) {
  margin-bottom: 30px;
}
.advantages-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
  padding-left: 17px;
  position: relative;
}
.advantages-list li span {
  color: var(--color-secondary);
}
.advantages-list li span.black {
  font-weight: 500;
  color: var(--color-black);
}
.advantages-list li b {
  font-weight: 700;
}
.advantages-list li:before {
  content: '';
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background-color: var(--color-secondary);
  position: absolute;
  top: 8px;
  left: 5px;
}
.advantages-list li:not(last-child) {
  margin-bottom: 5px;
}
.advantages-list.grey-dot li:before {
  background-color: var(--color-grey);
}
.table {
  line-height: 140%;
  font-family: var(--font-family);
  font-size: 14px;
}
.table th {
  font-weight: 500;
  color: var(--color-grey);
  text-align: left;
  padding-right: 25px;
}
.table td {
  font-weight: 400;
  color: var(--color-secondary);
}
.service-content-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.show-description-btn {
  cursor: pointer;
  position: relative;
  padding-right: 21px;
  transition: 0.3s;
}
.show-description-btn.active:before {
  content: 'Скрыть описание';
}
.show-description-btn.active:after {
  transform: rotate(180deg);
}
.show-description-btn:before {
  content: 'Показать описание';
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  text-align: center;
  color: var(--color-primary);
}
.show-description-btn:after {
  content: '';
  width: 10px;
  height: 7px;
  background-image: url(../img/arrow-blue.svg);
  background-position: center center;
  position: absolute;
  top: 8px;
  right: 0;
  transition: 0.3s;
}
.show-description-btn:hover {
  opacity: 0.7;
}
.service-description {
  display: none;
}
.premium-list-info {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.premium-list-info li {
  width: calc(25% - 8px);
  min-height: 82px;
  background: var(--color-secondary-50);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 12px;
  padding: 10px 12px;
  font-family: var(--font-family);
  line-height: 140%;
  text-align: center;
}
.premium-list-info li h6 {
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  margin-bottom: 2px;
}
.premium-list-info li p {
  font-size: 12px;
  color: var(--color-grey);
}
.info-box {
  background: var(--color-secondary-50);
  border-radius: 12px;
  padding: 24px;
  margin-top: 12px;
}
.info-box .payment-methods .payment-label {
  width: calc(33.33% - 8px);
}
.info-box .payment-label input:checked ~ .payment-methods-block {
  background: var(--color-background-2);
}
.info-box .payment-methods-block {
  background-color: #ffffff;
}
.premium-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 16px;
}
.premium-bottom .step-info-box {
  width: calc(50% - 12px);
  margin: 0;
}
.premium-bottom .limit-text {
  margin: 0;
}
.premium-bottom .btn {
  margin-top: 35px;
}
.auto-sub {
  margin: 8px 0 40px;
}
.specification-service-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.specification-service-block {
  width: calc(33.333% - 16px);
  border: 1px solid var(--color-secondary-500);
  border-radius: 8px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.specification-service-icon {
  width: 44px;
}
.specification-service-content {
  width: calc(100% - 56px);
  font-family: var(--font-family);
}
.specification-service-content h5 {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  margin-bottom: 6px;
}
.specification-service-content p {
  font-size: 14px;
  color: var(--color-grey);
}
.double-info-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.double-info-box .info-box {
  width: calc(50% - 6px);
}
.border-box {
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}
.specify-quantity-wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.specify-quantity-block {
  width: calc(50% - 12px);
}
.specify-quantity-bottom {
  background: var(--color-grey-background);
  border-radius: 4px;
  text-align: center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-grey);
  padding: 8px 10px;
  margin-top: 8px;
}
.specify-quantity-bottom span {
  font-weight: 700;
  color: #4083fd;
  padding-right: 10px;
}
.specify-quantity-bottom.left {
  text-align: left;
}
.radio-time-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.radio-time-label {
  width: calc(20% - 10px);
  background: var(--color-secondary-50);
  border-radius: 12px;
  padding: 25px 10px 16px;
  cursor: pointer;
  position: relative;
  transition: 0.3s;
}
.radio-time-label:hover {
  background: #ebf0fa;
}
.radio-time-label input {
  display: none;
}
.radio-time-label input ~ .radio-time-checkbox {
  content: '';
  background-image: url(../img/chechbox-grey.svg);
  background-size: 100% 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 12px;
  right: 10px;
}
.radio-time-label input[type=radio]:checked ~ .radio-time-checkbox {
  background-image: url(../img/chechbox-active.svg);
}
.radio-time-cotenent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.radio-time-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  margin: 9px 0 6px;
}
.radio-time-description {
  font-family: var(--font-family);
  font-size: 12px;
  color: #979797;
}
.time-setting {
  display: flex;
  justify-content: space-between;
}
.time-setting .counnting-item,
.time-setting .select-info {
  width: calc(50% - 6px);
}
.select-info {
  width: 100%;
  height: 38px;
  border: none;
  border-radius: 8px;
  background-color: var(--color-grey-light);
  padding: 0 10px;
  outline: none;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  cursor: pointer;
  background-image: url(../img/select-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-info.pagination-select {
  width: 55px;
  background-color: var(--color-grey-background);
}
.select-info::-ms-expand {
  display: none;
}
.checkbox-time-settings {
  display: block;
  background: var(--color-secondary-50);
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  padding: 12px;
  margin: 12px 0;
}
.setting-time-count .time-value {
  padding: 0 1px 0 3px;
}
.promo-code-box {
  margin-top: 24px;
}
.promo-code-wrap {
  display: flex;
  justify-content: space-between;
}
.promo-code-wrap .input {
  width: calc(100% - 155px);
}
.cabinet .panel-menu {
  border: none;
  padding: 0;
}
.cabinet .title.medium-title {
  font-size: 26px;
}
.user-info {
  width: 124px;
  display: flex;
  align-items: center;
  gap: 15px;
    cursor: pointer;
}
.user-icon {
  width: 30px;
  height: 30px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
}
.user-info-content {
  width: calc(100% - 45px);
}
.user-info-content p {
  font-family: var(--font-family);
  font-weight: 400;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.user-name {
  font-size: 14px;
  color: var(--color-black);
}
.user-title {
  font-size: 12px;
  color: var(--color-grey);
}
.amount-box {
  border: 1px solid var(--color-secondary-500);
  border-radius: 8px;
  padding: 7px 12px;
  background: var(--color-blue-light);
    cursor: pointer;
}
.amount-money {
  background-image: url(../img/amount-icon.svg);
  background-repeat: no-repeat;
  padding-left: 28px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 175%;
  color: var(--color-black);
}
.amount-money:after {
  content: ' $';
}
.notification {
  position: relative;
}
.notification-btn {
  width: 38px;
  height: 38px;
  background-image: url(../img/notification-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
}
.notification-btn:hover {
  background-color: #f6f6f6;
}
.notification-count {
  width: 18px;
  height: 18px;
  background: var(--color-primary);
  border-radius: 100px;
  font-family: var(--font-family);
  font-weight: 600;
  font-size: 10px;
  line-height: 140%;
  text-align: center;
  color: var(--color-white);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -3px;
  right: -2px;
}
.notification-container {
  width: 280px;
  padding: 17px 20px;
  background-color: #ffffff;
  border-radius: 5px;
  box-shadow: 0 0 8px 4px rgba(27, 27, 27, 0.1);
  position: absolute;
  top: 40px;
  right: 0px;
  z-index: 10;
  display: none;
}
.notification-container h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
}
.notification-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5e7eb;
  padding-bottom: 12px;
  margin-bottom: 12px;
}
.notification-close-btn {
  color: #898989;
  font-size: 22px;
  transition: 0.3s;
  cursor: pointer;
}
.notification-close-btn:hover {
  color: #1b1b1b;
}
.notification-text {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-grey);
  text-align: center;
}
.cabinet-header .header-right {
  gap: 12px;
}
.balance-account {
  background: var(--color-blue-light);
  border-radius: 12px;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.balance-account-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--color-secondary-500);
}
.balance-account-content {
  width: calc(100% - 56px);
}
.balance-account-title {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
  margin-bottom: 6px;
}
.balance-account-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.balance-account-sum {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
}
.green-plus-btn {
  width: 20px;
  height: 20px;
  background-image: url(../img/green-plus-icon.svg);
  background-size: cover;
}
.green-plus-btn:hover {
  opacity: 0.8;
}
.balance-btns {
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  padding: 12px;
  margin: 24px 0 12px;
}
.balance-btns a:not(:last-child) {
  margin-bottom: 12px;
}
.cabinet-navagation {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-grey-light);
}
.cabinet-navagation li a {
  min-height: 44px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px;
}
.cabinet-navagation li a:hover {
  background-color: #f6f6f6;
}
.cabinet-navagation li .navagation-name {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-grey);
}
.cabinet-navagation li .navagation-icon {
  filter: brightness(0) saturate(100%) invert(60%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(90%) contrast(100%);
}
.cabinet-navagation li.active a {
  background: var(--color-blue-light);
}
.cabinet-navagation li.active .navagation-icon {
  filter: none;
}
.cabinet-navagation li.active .navagation-name {
  color: var(--color-primary);
}
.cabinet-navagation li:not(:last-child) {
  margin-bottom: 6px;
}
.cabinet-navagation:last-of-type {
  border-bottom: none;
}
.subscription-bonus-box {
  margin-top: 24px;
  background: var(--color-background-2);
  border: 1px solid var(--color-background-2);
  border-radius: 12px;
  padding: 12px;
}
.subscription-bonus-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: url(../img/bonus-plus-icon.svg);
  background-repeat: no-repeat;
  padding-left: 27px;
  min-height: 20px;
}
.subscription-bonus-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
}
.subscription-bonus-item {
  border-radius: 4px;
  padding: 4px 7px;
  background: var(--color-orange);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  color: var(--color-white);
}
.subscription-bonus-text {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
  margin: 12px 0 24px;
}
.cabinet-top {
  border-radius: 12px;
  padding: 12px 24px;
  background: var(--color-grey-background);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}
.cabinet-top .text {
  margin-top: 7px;
}
.cabinet-top-search {
  width: 400px;
  max-width: 100%;
  height: 40px;
  display: flex;
  border: 1px solid var(--color-secondary-500);
  border-radius: 8px;
}
.select-search-type {
  width: 72px;
  height: 100%;
  padding: 0 10px;
  outline: none;
  cursor: pointer;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  border: none;
  border-radius: 8px 0 0 8px;
  border-right: 1px solid var(--color-secondary-500);
  background-color: var(--color-background-2);
  background-image: url(../img/select-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-search-typee::-ms-expand {
  display: none;
}
.input-search {
  width: calc(100% - 72px);
  height: 100%;
  background-image: url(../img/search-icon.svg);
  background-position-y: center;
  background-position-x: calc(100% - 15px);
  background-repeat: no-repeat;
  padding: 0 12px;
  border: none;
  outline: none;
  background-color: var(--color--background);
  border-radius: 0 8px 8px 0;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.order-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.order-filter {
  display: flex;
  align-items: center;
  gap: 6px;
}
.order-filter p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: #7a7a7a;
}
.select {
  width: 162px;
  height: 40px;
  border: 1px solid var(--color-secondary-500);
  border-radius: 8px;
  padding: 10px 12px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
  outline: none;
  background-image: url(../img/select-arrow.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  background-color: var(--color-background-2);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select.full {
  width: 100%;
}
.select.white {
  background-image: url(../img/arrow-gray.svg);
  background-color: var(--color--background);
}
.select::-ms-expand {
  display: none;
}
.order-status-list {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.status-completed {
  background-color: var(--color-green-150);
  color: var(--color-green);
}
.status-processing {
  background-color: var(--color-primary-100);
  color: var(--color-primary);
}
.status-partial {
  background-color: var(--color-orange-100);
  color: var(--color-orange);
}
.status-pending {
  background-color: var(--color-secondary-100);
  color: var(--color-secondary);
}
.status-canceled {
  background-color: var(--color-red-100);
  color: var(--color-red);
}
.status-pause {
  background-color: var(--color-orange-100);
  color: var(--color-orange);
}
.order-block {
  display: flex;
  justify-content: space-between;
  border-radius: 12px;
  padding: 24px;
  background: var(--color-grey-background);
  gap: 10px;
  margin-top: 24px;
}
.order-block a,
.order-block b,
.order-block p {
  display: inherit;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: left;
}
.cabinet .status-order,
.title-box .status-order,
.history-order-wrap .status-order {
  border-radius: 50px;
  padding: 4.5px 12.5px;
  display: flex;
  justify-content: center;
  text-align: center;
  gap: 3px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  overflow: inherit;
  position: relative;
}
.cabinet .status-order.big,
.title-box .status-order.big,
.history-order-wrap .status-order.big {
  width: 153px;
  height: 34px;
  padding: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
}
.info-icon {
  width: 14px;
  height: 14px;
  position: absolute;
  top: -2px;
  right: -2px;
  background-image: url(../img/info-icon.svg);
  background-size: cover;
}
.order-id {
  width: 110px;
  display: flex;
  gap: 5px;
}
.order-id-column {
  width: 20px;
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.order-id-content b {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}
.order-id-content p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
  margin-top: 2px;
}
.order-content {
  width: 310px;
}
.order-name {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.order-count,
.order-cost {
  width: 120px;
}
.order-count p,
.order-cost p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.order-count p b,
.order-cost p b {
  font-weight: 500;
}
.order-count p b span,
.order-cost p b span {
  font-weight: 400;
}
.interval-order .order-count,
.interval-order .order-cost {
  width: 70px;
  text-align: center;
}
.order-progress {
  width: 176px;
}
.progress-line {
  display: flex;
  justify-content: space-between;
}
.progress-line li {
  width: calc(20% - 2px);
  height: 7px;
  background-color: var(--color-grey-light);
  border-radius: 32px;
}
.progress-line li.progress-process,
.progress-process {
  background-color: var(--color-primary);
}
.progress-line li.progress-completed,
.progress-completed {
  background-color: var(--color-green);
}
.progress-line li.progress-partial,
.progress-partial {
  background-color: var(--color-orange);
}
.progress-line li.progress-canceled,
.progress-canceled {
  background-color: var(--color-red);
}
.progress-info-wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 3px;
}
.progress-info-block p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
}
.progress-info-name {
  color: var(--color-grey);
}
.progress-info-count {
  color: var(--color-secondary);
}
.progress-info-count span {
  font-weight: 700;
}
.status-block {
  width: 100px;
}
.status-block .status-order {
  width: 100%;
}
.order-list-btns {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 6px;
}

.order-list-btns li,
.order-list-btns a {
  position: relative;
  display: inline-block;
}
.order-btn {
  width: 15px;
  height: 15px;
  background-size: cover;
  cursor: pointer;
  transition: 0.3s;
}
.order-btn:hover {
  opacity: 0.7;
}
.order-btn.order-pause {
  background-image: url(../img/pause-icon.svg);
}
.order-btn.order-cancel {
  background-image: url(../img/order-cancel-icon.svg);
}
.order-btn.order-help {
  background-image: url(../img/order-help-icon.svg);
}
.order-btn.order-refresh {
  background-image: url(../img/order-refresh.svg);
}
.order-btn.order-continue {
  background-image: url(../img/order-continue.svg);
}
.order-pagination {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}
.pagination-btn {
  display: flex;
  align-items: center;
  gap: 4px;
}
.pagination-btn span {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--color-grey);
}
.pagination-btn:hover {
  opacity: 0.7;
}
.pagination-info {
  display: flex;
  align-items: center;
  gap: 10px;
}
.pagination-info p {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--color-grey);
}
b.inline {
  display: inline-block;
}
.not-order-box {
  border-radius: 12px;
  padding: 40px;
  background: var(--color-grey-background);
  margin-top: 24px;
  text-align: center;
}
.not-order-box .title {
  margin: 24px 0 16px;
}
.not-order-box .text {
  margin-bottom: 30px;
}
.replenishment-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.replenishment-block {
  width: 66.7%;
  border: 1px solid var(--color-grey-light);
  border-radius: 12px;
  padding: 24px;
}
.replenishment-bar {
  width: calc(33.333% - 24px);
}
.replenishment-bar-box {
  border: 1px solid var(--color-grey-light);
  border-radius: 12px;
  padding: 12px;
}
.replenishment-sum-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.caption-section {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-black);
}
.replenishment-sum-right p {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  text-align: right;
  color: var(--color-grey);
  margin-bottom: 12px;
}
.replenishment-valute {
  display: flex;
  gap: 12px;
}
.label-valute input {
  display: none;
}
.label-valute input:checked ~ span {
  background: var(--color-secondary);
  border: none;
  color: var(--color-white);
}
.label-valute span {
  width: 48px;
  height: 28px;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-grey-light);
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
  cursor: pointer;
  transition: 0.3s;
}
.label-valute span:hover {
  background-color: #f3f3f3;
}
.replenishment-input {
  position: relative;
  margin: 12px 0;
}
.replenishment-input input {
  border: 1px solid var(--color-secondary);
}
.valute-text {
  position: absolute;
  top: 9px;
  right: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-black);
}
.replenishment-sum-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.replenishment-sum-label {
  width: calc(25% - 10.5px);
}
.replenishment-sum-label input {
  display: none;
}
.replenishment-sum-label input:checked ~ span {
  background: var(--color-secondary);
  border: none;
  color: var(--color-white);
}
.replenishment-sum-label span {
  width: 100%;
  height: 45px;
  background: var(--color--background);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--color-grey-light);
  border-radius: 8px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--color-grey);
  cursor: pointer;
  transition: 0.3s;
}
.replenishment-sum-label span:hover {
  background-color: #f3f3f3;
}
.payment-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 32px 0 30px;
}
.star-text {
  background-image: url(../img/star-icon.png);
  background-repeat: no-repeat;
  background-position: right center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
  padding-right: 17px;
}
.payment-methods {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.payment-label {
  width: calc(50% - 6px);
}
.payment-label input {
  display: none;
}
.payment-label input:checked ~ .payment-methods-block:before {
  background-image: url(../img/radio-icon-active.svg);
}
.payment-methods-block {
  width: 100%;
  min-height: 100px;
  border: 1px solid var(--color-grey-light);
  border-radius: 12px;
  padding: 12px 10px 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.payment-methods-block:before {
  content: '';
  width: 16px;
  height: 16px;
  position: absolute;
  top: 14px;
  right: 12px;
  background-image: url(../img/radio-icon.svg);
  background-size: cover;
}
.payment-methods-block:hover {
  background-color: #f3f3f3;
}
.payment-methods-icon {
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.payment-methods-content {
  width: calc(100% - 56px);
}
.payment-methods-title {
  display: block;
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 12px;
}
.payment-methods-text {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-grey);
}
.payment-best .payment-methods-block:after {
  content: '';
  width: 30px;
  height: 30px;
  background-image: url(../img/payment-best-icon.svg);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 6px;
  left: 6px;
}
.operations-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.operations-block {
  background: var(--color-grey-background);
  border-radius: 12px;
  padding: 12px;
}
.operations-block:not(:last-child) {
  margin-bottom: 12px;
}
.operations-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4px;
}
.operations-title h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}
.operation-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.operation-name {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 10px;
  line-height: 140%;
  color: var(--color-grey);
}
.operation-status {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.operations-box {
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background: var(--color-secondary-50);
  border: 1px solid var(--color-primary);
}
.operations-box.operations-blue-box {
  background: var(--color-primary);
  margin: 24px 0;
}
.operations-box.operations-blue-box .operations-content h4,
.operations-box.operations-blue-box .operations-content p,
.operations-box.operations-blue-box .operations-content li {
  color: var(--color--background);
}
.operations-icon {
  width: 24px;
}
.operations-content {
  width: calc(100% - 39px);
}
.operations-content h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 150%;
  color: var(--color-black);
  margin-bottom: 3px;
}
.operations-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
}
.operations-content ul {
  list-style-type: disc;
  padding-left: 15px;
}
.operations-content ul li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
}
.settings-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.settings-wrap .label-block {
  width: 100%;
}
.settings-block {
  width: calc(50% - 12px);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid var(--color-grey-light);
}
.settings-block .caption-section {
  margin-bottom: 20px;
}
.settings-block.gray-box {
  background: var(--color-grey-background);
  border: none;
}
.settings-block .btn-blue {
  margin-top: 8px;
}
.label-block {
  display: block;
  margin-bottom: 16px;
}
.label-block .select {
  width: 100%;
}
.settings-telegram-box {
  display: flex;
  justify-content: space-between;
}
.settings-telegram-box .input {
  width: calc(100% - 148px);
}
.double-input {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.double-input .label-block {
  width: calc(50% - 6px);
}
.api-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4px;
}
.api-box .input-password-box {
  width: calc(100% - 28px);
}
.api-box .password-change-type {
  top: 10px;
}
.copy-btn {
  width: 24px;
  height: 24px;
  background-image: url(../img/copy-icon.svg);
  background-size: cover;
  cursor: pointer;
  transition: 0.3s;
}
.copy-btn:hover {
  background-image: url(../img/copy-icon-hover.svg);
}
.notification-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--color-grey-background);
  border-radius: 8px;
  padding: 12px;
  margin-bottom: 12px;
}
.notification-box p {
  width: calc(100% - 74px);
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.switch {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 28px;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: 0.4s;
  border-radius: 34px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch input:checked + .slider {
  background-color: #4f99ff;
}
.switch input:checked + .slider:before {
  transform: translateX(22px);
}
.security-title {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
}
.security-title p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  color: var(--color-grey);
}
.security-title b {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}
.authentication-box {
  background: var(--color-secondary-100);
  border-radius: 4px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 24px 0;
}
.authentication-box .authentication-content {
  width: calc(100% - 120px);
}
.authentication-box .authentication-content h6 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 3px;
}
.authentication-box .authentication-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
}
.tiny-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 5px;
}
.session-block {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-grey-light);
}
.session-block .more-btn {
  font-size: 12px;
}
.session-block h6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-black);
  margin-bottom: 4px;
}
.session-block .session-list {
  width: calc(100% - 80px);
}
.session-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.session-list {
  display: flex;
  flex-wrap: wrap;
}
.session-list li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.session-list li span {
  color: var(--color-secondary);
}
.session-list li:not(:last-child) {
  position: relative;
  margin-right: 13px;
}
.session-list li:not(:last-child):before {
  content: '/';
  position: absolute;
  top: 0;
  right: -8px;
  color: var(--color-grey-light);
}
.premium-box {
  background: var(--color-secondary-100);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.premium-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.premium-content h6 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 3px;
}
.premium-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.premium-info {
  text-align: right;
}
.premium-info h6 {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--color-black);
  margin-bottom: 4px;
}
.premium-info p {
  font-family: var(--font-family);
  font-size: 10px;
  color: var(--color-grey);
}
.advantages-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 12px 0 24px;
}
.advantages-block {
  width: calc(50% - 6px);
  background: var(--color-secondary-50);
  border-radius: 12px;
  padding: 24px;
  text-align: center;
}
.advantages-block h5 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-black);
  margin-bottom: 4px;
}
.advantages-block img {
  display: inline-block;
  margin: 10px 0 7px;
}
.advantages-block p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
}
.function-list li {
  background-image: url(../img/check-icon.svg);
  background-repeat: no-repeat;
  background-position: left center;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
  padding-left: 20px;
  margin-top: 7px;
}
.order-filter-wrap {
  display: flex;
  gap: 26px;
}
.ordder-problem h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
  margin-bottom: 4px;
}
.ordder-problem p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
}
.order-date h6 {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-black);
  margin-bottom: 2px;
}
.order-date p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-grey);
}
.order-status,
.order-link,
.order-status-text {
  display: flex;
  align-items: center;
}
.order-status-icon {
  width: 12px;
  height: 12px;
  border-radius: 50%;
}
.support .order-block {
  margin-top: 12px;
}
.online-box {
  border: 1px solid var(--color-green);
  border-radius: 50px;
  padding: 4px 12px 4px 28px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  text-align: center;
  color: var(--color-green);
  background: var(--color-green-150);
  position: relative;
}
.online-box:before {
  content: '';
  background: var(--color-green);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  position: absolute;
  top: calc(50% - 3px);
  left: 13px;
}
.support-telegram {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}
.chat-box {
  height: 600px;
  padding: 40px 24px;
  overflow: auto;
  background: var(--color-secondary-50);
  margin-bottom: 24px;
}
.char-block {
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
}
.char-block:not(:last-child) {
  margin-bottom: 18px;
}
.chat-photo {
  padding-bottom: 10px;
}
.chat-photo img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: block;
  object-fit: cover;
  object-position: center;
}
.chat-content {
  width: calc(100% - 56px);
  margin-left: 16px;
}
.chat-message {
  max-width: 605px;
  background: var(--color--background);
  border-radius: 12px;
  padding: 12px 16px;
}
.chat-message:last-child {
  border-radius: 0 12px 12px 12px;
}
.chat-message:not(:last-child) {
  margin-bottom: 4px;
}
.message-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
  margin: 3px 0 0 60px;
}
.char-user {
  justify-content: end;
}
.char-user .chat-content {
  order: -1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  margin: 0 16px 0 0;
}
.char-user .chat-message {
  background: var(--color-secondary-100);
}
.char-user .chat-message:last-child {
  border-radius: 12px 12px 0 12px;
}
.char-user .message-date {
  margin: 3px 60px 0 0;
}
.chat-textarea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.chat-textarea .session-list {
  margin-top: 6px;
}
.textarea {
  width: calc(100% - 68px);
  height: 60px;
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  resize: none;
  padding: 12px;
  outline: none;
}
.chat-btn {
  width: 44px;
  height: 44px;
  background-image: url(../img/telegram-btn-icon.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-color: var(--color-primary);
  border-radius: 8px;
  padding: 12px;
  cursor: pointer;
  border: none;
  transition: 0.3s;
}
.chat-btn:hover {
  background-color: #1b65ed;
}
.title-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-grey-light);
  margin-bottom: 24px;
}
.title-box .title {
  margin: 0;
}
.order-info-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  overflow: hidden;
}
.order-info-block h6,
.order-info-block p {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
}
.order-info-block h6 {
  font-weight: 700;
  color: var(--color-grey);
  text-align: left;
  padding-bottom: 2px;
}
.order-info-block p {
  font-family: var(--font-family);
  font-weight: 400;
  color: var(--color-black);
}
.order-description-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px;
}
.order-description-title img {
  width: 20px;
}
.order-description-title h6 {
  width: calc(100% - 36px);
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
}
.description-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 25px;
  margin: 33px 0 25px;
}
.description-block {
  width: calc(33.333% - 17px);
}
.description-block p {
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.m-b-30 {
  margin-bottom: 30px;
}
.m-b-0 {
  margin-bottom: 0;
}
.notificaciones-box {
  display: inline-block;
  background-color: var(--color-green-150);
  background-image: url(../img/notificaciones-icon.svg);
  background-position: 12px center;
  background-repeat: no-repeat;
  border-radius: 8px;
  padding: 10px 12px 10px 46px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
  margin-top: 16px;
}
.contact-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 22px;
  margin-bottom: 40px;
}
.contact-block {
  width: calc(33.333% - 15px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--color-secondary-500);
  border-radius: 8px;
  padding: 24px;
}
a.contact-block {
  background-color: var(--color-background-2);
}
a.contact-block:hover {
  background-color: #ebecfc;
}
.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--color-secondary);
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-content {
  width: calc(100% - 56px);
}
.contact-content h6,
.contact-content p {
  font-family: var(--font-family);
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.contact-content h6 {
  font-weight: 700;
}
.contact-content p {
  font-weight: 400;
}
.nead-help-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 50px;
  position: relative;
}
.nead-help-box .text {
  margin-bottom: 20px;
}
.nead-help-content {
  width: 490px;
}
.support-photo {
  max-width: calc(100% - 490px);
  position: absolute;
  bottom: 0;
  right: 10px;
}
.support-photo img {
  max-height: calc(100% + 50px);
  display: block;
}
.articles-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 24px 0 48px;
}
.articles-block {
  width: calc(33.333% - 16px);
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  padding: 12px;
  position: relative;
  background: var(--color-secondary-50);
}
.articles-photo {
  width: 100%;
  height: 201px;
  margin-bottom: 20px;
}
.articles-photo img {
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
    width: 100%;
}
.articles-social-title {
  background: var(--color-background-2);
  position: absolute;
  top: 36px;
  left: 12px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-black);
  border-radius: 0 50px 50px 0;
  padding: 6px 10px;
}
.articles-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.articles-user-name {
  background-image: url(../img/calendar-icon.svg);
  background-repeat: no-repeat;
  background-position: 6px center;
  background-color: var(--color--background);
  border: 1px solid var(--color-secondary-500);
  border-radius: 4px;
  padding: 4px 6px 4px 30px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.articles-user-date {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.articles-text {
  height: 40px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin: 17px 0;
}
.API .caption-section {
  margin-bottom: 22px;
}
.settigs-box {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.settigs-box.double .label-block {
  width: calc(50% - 6px);
}
.settigs-box:not(:last-child) {
  margin-bottom: 24px;
}
.settigs-box .label-block {
  width: calc(33.333% - 8px);
}
.settigs-box .label-block.full {
  width: 100%;
}
.textarea-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 6px;
}
.textarea-block {
  width: 100%;
  position: relative;
}
.textarea-block .textarea {
  width: 100%;
}
.textarea-block .copy-btn {
  position: absolute;
  top: 37px;
  right: 12px;
}
.m-t-35 {
  margin-top: 35px;
}
.m-b-15 {
  margin-bottom: 15px;
}
.m-b-24 {
  margin-bottom: 24px;
}
.f-w-500 {
  font-weight: 500;
}
.rule-publication {
  width: 267px;
  background-color: var(--color--background);
  border: 1px solid var(--color-secondary-500);
  border-radius: 12px;
  padding: 12px;
  margin-top: 15px;
}
.rule-publication .advantages-list {
  padding-left: 20px;
  margin-top: 6px;
}
.rule-publication .advantages-list li {
  color: var(--color-black);
  font-size: 12px;
}
.rule-publication .advantages-list li:not(last-child) {
  margin-bottom: 2px;
}
.rule-title {
  background-image: url(../img/rule-title-icon.svg);
  background-repeat: no-repeat;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
  padding-left: 24px;
}
.reviews-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 32px;
}
.reviews-block {
  width: 54%;
}
.reviews-block .reviews-text {
  margin-bottom: 0;
}
.reviews-write {
  width: calc(46% - 22px);
  background-color: var(--color-grey-background);
  border-radius: 12px;
  padding: 24px;
}
.reviews-write .textarea {
  width: 100%;
  height: 70px;
  border: 1px solid var(--color-stroke);
}
.rating-wrapper {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.rating-wrapper p {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--color-grey);
}
.rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: start;
  gap: 5px;
}
.rating input {
  display: none;
}
.rating label {
  width: 24px;
  height: 24px;
  background-image: url(../img/star-gray.svg);
  background-size: cover;
  background-repeat: no-repeat;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.rating label:hover,
.rating label:hover ~ label {
  background-image: url(../img/star-gold.svg);
  transform: scale(1.1);
}
.rating input:checked ~ label {
  background-image: url(../img/star-gray.svg);
}
.rating input:checked + label,
.rating input:checked + label ~ label {
  background-image: url(../img/star-gold.svg);
}
.article-photo {
  margin-bottom: 30px;
}
.article-photo img {
  width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  object-position: center;
}
.article-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-top p {
  font-family: var(--font-family);
  font-size: 14px;
  color: var(--color-grey);
}
.article-share {
  display: flex;
  align-items: center;
  gap: 8px;
}
.article-share p {
  font-weight: 500;
}
.share-list {
  display: flex;
  gap: 8px;
}
.share-list li a img {
  display: block;
}
.share-list li a:hover {
  opacity: 0.7;
}
.article-content {
  margin: 30px 0;
}
.article-content .small-title {
  margin-bottom: 15px;
}
.article-content p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.article-content p b {
  font-weight: 700;
}
.article-content p a {
  font-weight: 700;
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: var(--color-primary);
}
.article-content p a:hover {
  color: #0047cc;
}
.article-content p:not(:last-child) {
  margin-bottom: 17px;
}
.article-info-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  line-height: 140%;
  color: var(--color-black);
  margin-bottom: 15px;
}
.article-info-list {
  margin-bottom: 30px;
}
.article-info-list li {
  font-size: 14px;
  padding-left: 15px;
}
.article-info-list li:before {
  width: 4px;
  height: 4px;
  top: 7px;
}
.article-info-list li:not(:last-child) {
  margin-bottom: 3px;
}
.decimal {
  list-style-type: decimal;
  padding-left: 15px;
}
.decimal li {
  padding-left: 3px;
}
.decimal li:before {
  display: none;
}
.quote-box {
  background-color: var(--color-secondary-100);
  background-image: url(../img/quote-icon.svg);
  background-repeat: no-repeat;
  background-position: 24px center;
  border-radius: 12px;
  padding: 24px 24px 24px 94px;
}
.quote-box p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.referal-info-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}
.referal-info-box {
  width: calc(33.333% - 16px);
  background-color: var(--color-secondary-50);
  border-radius: 12px;
  padding: 36px 24px;
  text-align: center;
}
.referal-info-box.active {
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary-100);
}
.referal-info-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 26px;
  color: var(--color-black);
  margin-bottom: 5px;
}
.referal-info-text {
  font-family: var(--font-family);
  font-size: 12px;
  color: var(--color-grey);
}
.referal-link-box {
  background-color: var(--color-blue-light);
}
.referal-link-box h6 {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  color: var(--color-black);
  margin-bottom: 6px;
}
.referal-link-block {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.referal-link-block .input {
  width: calc(100% - 33px);
}
.tab-block {
  display: none;
}
.tab-block.active {
  display: block;
}
.tab-navigation {
  border-bottom: 1px solid var(--color-background-2);
  display: flex;
  margin: 32px 0;
}
.tab-navigation li {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  padding: 15px 16px;
  color: var(--color-grey);
  cursor: pointer;
}
.tab-navigation li.active {
  color: var(--color-primary);
  font-weight: 500;
  position: relative;
}
.tab-navigation li.active:before {
  content: '';
  width: 100%;
  height: 2px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: 0;
  left: 0;
}
.referal-top {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 24px;
}
.referal-top h4 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: #000;
}
.referal-top .btn.tiny {
  border-radius: 8px;
}
.referal-block {
  border-radius: 12px;
  padding: 12px 16px;
  background-color: var(--color-secondary-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.referal-block:not(:last-child) {
  margin-bottom: 8px;
}
.referal-person {
  width: 275px;
  display: flex;
  align-items: center;
  gap: 13px;
}
.referal-person-icon img {
  width: 30px;
  height: 30px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
}
.referal-person-name {
  font-family: var(--font-family);
  font-weight: 500;
  line-height: 140%;
  font-size: 14px;
  color: var(--color-black);
}
.referal-person-mail {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  color: var(--color-primary);
}
.referal-date {
  min-width: 120px;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-grey);
}
.referal-sum {
  min-width: 75px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.referal-status {
  min-width: 105px;
  display: flex;
}
.referal-method {
  min-width: 130px;
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.modal-payment {
  width: 443px;
  border-radius: 12px;
  padding: 40px 24px 24px;
  background: var(--color--background);
}
.modal-payment .referal-info-box {
  width: 100%;
  padding: 22px 15px 18px;
  margin-bottom: 24px;
}
.modal-payment .referal-info-box .referal-info-title span {
  font-size: 14px;
}
.modal-payment .referal-info-box .referal-info-text b {
  color: var(--color-black);
}
.modal-title {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 20px;
  color: var(--color-black);
  background: var(--color-grey-background);
  border-radius: 12px 12px 0 0;
  padding: 20px 24px;
  margin-bottom: 24px;
}
.modal-payment-detail {
  border-radius: 12px;
  padding: 24px;
  background: var(--color-grey-background);
}
.payment-detail {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-black);
  margin-bottom: 24px;
}
.referal-empty-box {
  border-radius: 12px;
  padding: 40px 20px;
  background: var(--color-grey-background);
  text-align: center;
}
.referal-empty-box .btn {
  margin-top: 30px;
}
.referal-empty-title {
  font-family: var(--font-family);
  font-weight: 500;
  font-size: 18px;
  line-height: 140%;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 16px;
}
.referal-empty-text {
  max-width: 539px;
  margin: auto;
}
.referal-empty-text p {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--color-grey);
}
.referal-empty-text p:not(:last-child) {
  margin-bottom: 15px;
}
.history-order {
  margin-top: 25px;
}
.history-order-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 12px;
}
.history-order-top h6 {
  font-family: var(--font-family);
  font-weight: 700;
  font-size: 14px;
  line-height: 140%;
  color: var(--color-black);
}
.history-order-block {
  background: var(--color-secondary-50);
  border-radius: 12px;
  padding: 12px;
  overflow: hidden;
}
.history-order-block .status-completed {
  font-size: 10px;
}
.history-order-block:not(:last-child) {
  margin-bottom: 8px;
}
.history-order-status {
  display: flex;
  justify-content: flex-end;
}
.history-order-info {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-grey);
}
.history-order-info b,
.history-order-info span {
  color: var(--color-black);
  margin-left: 3px;
}
.history-order-info b {
  font-weight: 700;
}
.history-order-info span {
  font-weight: 500;
}
.link-btn {
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 12px;
  line-height: 140%;
  color: var(--color-primary);
  white-space: nowrap;
}
.link-btn:hover {
  color: #0047cc;
}
.operations-additional {
  display: none;
  margin-top: 12px;
}
.add-new-link {
  display: inline-block;
  font-family: var(--font-family);
  font-weight: 400;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  color: var(--color-primary);
  cursor: pointer;
  margin-top: 8px;
}
.add-new-link:hover {
  color: #0047cc;
}
.links-box {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cabinet .status-order, .title-box .status-order, .history-order-wrap .status-order {
    border-radius: 50px;
    padding: 4.5px 12.5px;
    display: flex;
    justify-content: center;
    text-align: center;
    gap: 3px;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 12px;
    overflow: inherit;
    position: relative;
}

.features-section {

}

.features-grid {
    display: flex;
    gap: 1.5rem;
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    flex: 1;
    border: 1px solid rgba(102, 156, 255, 0.5);
}

.icon-wrapper {
    flex-shrink: 0;
}

.icon-container {
    width: 3.5rem;
    height: 3.5rem;
    background-color: #206fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
}

.feature-title {
    color: #1b1b1b;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    margin: 0;
}

.feature-description {
    color: #6a6a6a;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}
@media (max-width: 991px) {
    .header-menu-list > li {
    width: 100%;
    }
    .features-container {
        flex-direction: column;
    }

    .features-grid {
        flex-direction: column;
    }
}
.service-selector-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    width: 100%;
    background-color: #f8f9fa;
    font-family: Montserrat, sans-serif;
}

.service-selector-wrapper {
    width: 100%;
    max-width: 960px;
    padding: 1.5rem;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
}

@media (max-width: 991px) {
    .service-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .service-grid {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.service-button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    border-radius: 6px;
    border: 1.5px solid #e3e3e3;
    background-color: white;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-align: center;
}

.service-button:hover {
    border-color: #4083FD;
    background-color: #f0f7ff;
}

.service-button.active {
    border-color: #4083FD;
    background-color: #f0f7ff;
}

.service-label {
    font-size: 14px;
    font-weight: 500;
    line-height: 17px;
    color: #1b1b1b;
    transition: color 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-label.active {
    color: #4083FD;
}

.service-button:hover .service-label {
    color: #4083FD;
}



.expandable-article {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    width: 100%;
    font-family: Montserrat, sans-serif;
    padding: 1rem;
    margin: 0 auto;
}

@media (max-width: 640px) {
    .expandable-article {
        padding: 0.75rem;
    }
}

.article-title {
    width: 100%;
    color: #1b1b1b;
    font-weight: 700;
    font-size: 20px;
    line-height: 140%;
}

@media (max-width: 640px) {
    .article-title {
        font-size: 18px;
    }
}

.content-container {
    width: 100%;
    position: relative;
}

.article-content {
    color: #333333;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    .article-content {
        font-size: 13px;
    }
}

.highlight-text {
    font-weight: 700;
    color: #1b1b1b;
}

.link-text {
    font-weight: 700;
    color: #206fff;
    text-decoration: underline;
}

.fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px;
    pointer-events: none;
    box-shadow: 0 -10px 20px rgba(0,0,0,0.05);
}

.show-more-container {
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.toggle-button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    color: #666666;
    font-weight: 500;
    font-size: 13px;
    text-decoration: underline;
    transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

@media (max-width: 640px) {
    .toggle-button {
        font-size: 12px;
    }
}

.toggle-button:hover {
    color: #333333;
}

.button-icon {
    width: 0.75rem;
    height: 0.75rem;
    transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 640px) {
    .button-icon {
        width: 0.5rem;
        height: 0.5rem;
    }
}

.hide-button-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 1.5rem;
}

@media (max-width: 640px) {
    .hide-button-container {
        margin-top: 1rem;
    }
}

.rotated-icon {
    transform: rotate(180deg);
}

/* State-based styles */
.content-collapsed {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    max-height: 84px;
}

.content-expanded {
    display: block;
    max-height: none;
}

.hidden {
    display: none !important;
}
/* Services Showcase Styles */
.services-showcase {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: Montserrat, sans-serif;
    min-height: 100vh;
    width: 100vw;
    background-color: #fff;
    padding: 76px 0;
}

.showcase-container {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

@media (max-width: 991px) {
    .showcase-container {
        width: 90%;
    }
}

/* Header Styles */
.showcase-header {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 0px;
}

.main-title {
    width: 100%;
    color: #1b1b1b;
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    line-height: 140%;
    margin: 0;
}

@media (max-width: 991px) {
    .main-title {
        font-size: 28px;
    }
}

@media (max-width: 640px) {
    .main-title {
        font-size: 24px;
    }
}

.main-subtitle {
    width: 100%;
    color: #6a6a6a;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

/* Content Layout */
.showcase-content {
    display: flex;
    height: 680px;
    align-items: center;
    gap: 24px;
    width: 100%;
    max-width: 1292px;
    padding: 0 24px;
}

@media (max-width: 991px) {
    .showcase-content {
        height: auto;
        flex-direction: column;
        padding: 0 16px;
    }
}

/* Services Column */
.services-column {
    display: flex;
    width: 415px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 991px) {
    .services-column {
        width: 100%;
    }
}

.service-card {
    display: flex;
    width: 100%;
    padding: 24px;
    align-items: flex-start;
    gap: 12px;
    border-radius: 8px;
    background-color: #fff;
    border: 1px solid rgba(102, 156, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 156, 255, 0.2);
}

.service-content {
    display: flex;
    width: 306px;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}

@media (max-width: 991px) {
    .service-content {
        width: 100%;
    }
}

.service-content .service-title {
    width: 100%;
    color: #1b1b1b;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.service-description {
    width: 100%;
    color: #6a6a6a;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

/* Platforms Column */
.platforms-column {
    display: flex;
    width: 414px;
    height: 637px;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
}

@media (max-width: 991px) {
    .platforms-column {
        width: 100%;
        height: auto;
    }
}

.platforms-container {
    display: flex;
    height:650px;
    padding: 48px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 48px;
    width: 100%;
    border-radius: 24px;
    background-color: #f5f6ff;
}

@media (max-width: 991px) {
    .platforms-container {
        height: auto;
    }
}

@media (max-width: 640px) {
    .platforms-container {
        padding: 24px;
        gap: 32px;
    }
}

.platforms-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    width: 100%;
}

.platform-row {
    display: flex;
    align-items: flex-start;
    gap: 48px;
    width: 100%;
}

@media (max-width: 640px) {
    .platform-row {
        gap: 24px;
    }
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    flex: 1;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.platform-icon {
    display: flex;
    width: 60px;
    height: 60px;
    justify-content: center;
    align-items: center;
    border-radius: 9999px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.platform-name {
    width: 78px;
    color: #1b1b1b;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    line-height: 140%;
}

.soundcloud-platform .platform-name {
    font-size: 12px;
}

/* CTA Section */
.cta-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.cta-button {
    display: flex;
    padding: 16px 32px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;
    border-radius: 8px;
    background-color: #206fff;
    cursor: pointer;
    border: 1px solid #fff;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1a5ce6;
}

.cta-text {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 28px;
}

.cta-subtitle {
    width: 100%;
    color: #6a6a6a;
    text-align: center;
    font-size: 12px;
    font-weight: 400;
    line-height: 140%;
    margin: 0;
}

/* Additional Services Column */
.additional-services-column {
    display: flex;
    width: 410px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
}

@media (max-width: 991px) {
    .additional-services-column {
        width: 100%;
    }
}

/* Reset default button and article styles */
button {
    font-family: inherit;
}

article {
    margin: 0;
}

/* Accessibility improvements */
.platform-item:focus,
.service-card:focus,
.cta-button:focus {
    outline: 2px solid #206fff;
    outline-offset: 2px;
}

.platform-item:focus-visible,
.service-card:focus-visible,
.cta-button:focus-visible {
    outline: 2px solid #206fff;
    outline-offset: 2px;
}
.service-content .service-description {
    display: flex;
}
.platform-item .platform-icon {
    transition: transform 0.2s ease-in-out;
}
.platform-item:hover .platform-icon {
    transform: scale(1.1);
}

/* Убираем обводку по фокусу/клику */
.platform-item:focus {
    outline: none;
}
.platform-item::-moz-focus-inner {
    border: 0;
}
.step-info-box input {
    color: var(--color-black)!important;
}
.active-service-wrapper {
    max-width: 1280px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 auto;
}
.active-service-card {
    width: 100%;
    background-color: #ffffff;
    border-radius: 8px;
    padding: 2rem;
    transition: all 300ms cubic-bezier(0.4,0,0.2,1);
    border: 1px solid rgba(102,156,255,0.2);
    box-shadow: 0 8px 24px rgba(102,156,255,0.08);
}
.active-service-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}
.active-service-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.active-service-icon-wrapper {
    position: relative;
    width: 4rem;
    height: 4rem;
    min-width: 64px;
}
.active-service-icon-background {
    position: absolute;
    top: 2px; right: 2px; bottom: 2px; left: 2px;
    background: linear-gradient(135deg,#7BA8FF,#5B94FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.active-service-title {
    font-size: 20px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
}
.active-service-meta {
    display: flex;
    align-items: center;
    margin-top: 5px;
    gap: 1rem;
}
.active-service-id {
    font-size: 14px;
    color: #6a6a6a;
    font-weight: 400;
}
.active-service-badges {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}
.active-service-badge {
    font-size: 12px;
    font-weight: 500;
    border-radius: 4px;
    padding: 0.25rem 0.75rem;
}
.active-service-price-info {
    text-align: right;
    min-width: max-content;
}
.active-service-price-label {
    font-size: 14px;
    color: #6a6a6a;
    font-weight: 400;
    margin-bottom: 0.25rem;
}
.active-service-price {
    font-size: 24px;
    font-weight: 700;
    color: #669CFF;
}
.active-service-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 1rem;
}
.active-service-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.active-service-feature {
    background-color: rgba(102,156,255,0.05);
    border-radius: 6px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border: 1px solid rgba(102,156,255,0.1);
}
.active-service-feature-icon {
    font-size: 24px;
}
.active-service-order-container {
    display: flex;
    align-items: center;
}
.active-service-order-button {
    width: 100%;
    background-color: #206FFF;
    color: #ffffff;
    font-weight: 500;
    font-size: 16px;
    border-radius: 6px;
    transition: all 200ms cubic-bezier(0.4,0,0.2,1);
    box-shadow: 0 4px 16px rgba(32,111,255,0.3);
    padding: 1rem 1.5rem;
    border: none;
    cursor: pointer;
    text-align: center;
}
.active-service-toggle-container {
    display: flex;
    justify-content: center;
}
.active-service-toggle-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    color: #6a6a6a;
    transition: all 200ms cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}
.active-service-toggle-icon {
    width: 1rem;
    height: 1rem;
    transition: transform 200ms cubic-bezier(0.4,0,0.2,1);
}
.active-service-descriptions {
    overflow: hidden;
    transition: all 500ms cubic-bezier(0.4,0,0.2,1);
    border-top: 1px solid rgba(102,156,255,0.1);
    padding-top: 1.5rem;
    margin-top: 1rem;
    max-height: 0;
    opacity: 0;
}
.active-service-description-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b1b;
    margin-bottom: 1rem;
}
.active-service-description-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    font-size: 14px;
    color: #6a6a6a;
    line-height: 1.6;
}

/* Main container */
.widget-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
    padding: 1rem;
}

/* Balance section */
.balance-section {
    position: relative;
}

/* Success notification */
.success-notification {
    position: absolute;
    top: -56px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #10b981, #059669);
    color: #ffffff;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 16px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
    white-space: nowrap;
    opacity: 0;
    transform: translateX(-50%) translateY(-8px) scale(0.95);
    pointer-events: none;
}

.success-notification.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0px) scale(1);
}

.success-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

.success-icon {
    width: 14px;
    height: 14px;
}

/* Balance card */
.balance-card {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 5px;
    transition: all 300ms cubic-bezier(0, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.balance-card.elevated {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

/* Balance info */
.balance-info {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-right: -4px;
}

.wallet-icon-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    border-radius: 12px;
    background: linear-gradient(to bottom right, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
}

.wallet-icon {
    width: 22px;
    height: 22px;
}

.balance-details {
    display: flex;
    flex-direction: column;
}

.balance-label {
    font-size: 12px;
    font-weight: 500;
    color: #64748b;
    margin-bottom: 4px;
}

.balance-amount {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.amount-value {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
}

.currency-label {
    font-size: 14px;
    font-weight: 600;
    color: #64748b;
}

/* Divider */
.divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, #e2e8f0, transparent);
}

/* Add funds section */
.add-funds-section {
    position: relative;
}

.add-funds-button {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 12px;
    border: none;
    background: transparent;
    cursor: pointer;
    transition: all 200ms cubic-bezier(0, 0, 0.2, 1);
}

.add-funds-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.add-funds-button.hovered:not(:disabled) {
    background: #f1f5f9;
    transform: scale(1.05);
}

/* Button content states */
.button-content-normal {
    position: relative;
}

.button-content-loading {
    display: none;
}

.button-content-loading.visible {
    display: block;
}

.button-content-normal.hidden {
    display: none;
}

/* Animations */
.ping-animation {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border-radius: 12px;
    background-color: #669cff;
    opacity: 0.2;
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}


.plus-icon {
    position: relative;
    width: 20px;
    height: 20px;
    color: #669cff;
}

.loading-spinner {
    width: 20px;
    height: 20px;
    color: #64748b;
    animation: spin 1s linear infinite;
}


.button-glow.visible {
    opacity: 0.3;
}

/* Content sections */
.content-section {
    margin-top: 40px;
    text-align: center;
    max-width: 450px;
}

.main-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 16px;
}

.main-description {
    font-size: 15px;
    color: #64748b;
    line-height: 22px;
}

.actions-section {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* Animations keyframes */
@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Mobile responsive styles */
@media (max-width: 640px) {
    .success-notification {
        top: -48px;
        font-size: 11px;
        padding: 0 12px;
    }

    .balance-card {
        gap: 16px;
        padding: 16px 20px;
    }

    .wallet-icon-container {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .wallet-icon {
        width: 20px;
        height: 20px;
    }

    .balance-label {
        font-size: 11px;
    }

    .amount-value {
        font-size: 18px;
    }

    .currency-label {
        font-size: 12px;
    }

    .divider {
        height: 28px;
    }

    .add-funds-button {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }

    .ping-animation,
    .pulse-animation {
        border-radius: 10px;
    }

    .plus-icon {
        width: 18px;
        height: 18px;
    }

    .loading-spinner {
        width: 18px;
        height: 18px;
    }

    .button-glow {
        top: -4px;
        right: -4px;
        bottom: -4px;
        left: -4px;
        border-radius: 14px;
    }

    .content-section {
        margin-top: 32px;
    }

    .main-title {
        font-size: 22px;
    }

    .main-description {
        font-size: 13px;
    }

    .actions-section {
        margin-top: 24px;
        gap: 12px;
    }
}


.service-options { display: none; }
.service-options.open { display: block; } /* или grid/flex — как у вас в дизайне */

.dropdown-arrow { transition: transform .2s ease; }
.dropdown-arrow.expanded { transform: rotate(180deg); }

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.page-container {
    min-height: 100vh;
    width: 100%;
    background-color: #f8fafc;
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
}

.main-wrapper {
    max-width: 768px;
    background-color: #ffffff;
    min-height: 100vh;
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    margin: 0 auto;
}

.content-container {
    padding: 1.5rem;
}

@media (max-width: 640px) {
    .content-container {
        padding: 1rem;
    }
}

.page-header {
    text-align: center;
    margin-bottom: 2rem;
}

.main-title {
    font-size: 32px;
    font-weight: 800;
    color: #1a202c;
    margin: 0 0 0.5rem 0;
}

@media (max-width: 640px) {
    .main-title {
        font-size: 28px;
    }
}

.subtitle {
    font-size: 16px;
    color: #718096;
    font-weight: 500;
    margin: 0;
}

.services-section {
    margin-bottom: 1.5rem;
}

.search-container {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-input {
    width: 100%;
    background-color: #f7fafc;
    border-radius: 0.75rem;
    font-size: 14px;
    font-weight: 500;
    color: #2d3748;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.75rem 1rem 0.75rem 3rem;
    border: 1px solid #e2e8f0;
    box-sizing: border-box;
}

.search-input:focus {
    outline: none;
    ring: 2px;
    ring-color: #3b82f6;
}

.search-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
}

/* CSS Tooltips for Order Buttons */
.tooltip {
    position: relative;
    display: inline-block;
}

.tooltip .tooltiptext {
    visibility: hidden;
    min-width: 160px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 6px 8px;
    position: absolute;
    z-index: 1000;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 11px;
    font-weight: 500;
    line-height: 1.3;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    white-space: nowrap;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #333 transparent transparent transparent;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* Order button tooltips styling */
.order-list-btns .tooltip {
    display: inline-block;
}

.platform-selector {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.25rem;
    border: 1px solid #e2e8f0;
}

.platform-button {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
}

.platform-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.platform-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-icon:hover {
    transform: scale(1.1) rotate(3deg);
}

.instagram-icon {
    background-color: #e4405f;
}

.telegram-icon {
    background-color: #0088cc;
}

.youtube-icon {
    background-color: #ff0000;
}

.tiktok-icon {
    background-color: #000000;
}

.twitter-icon {
    background-color: #1da1f2;
}

.facebook-icon {
    background-color: #1877f2;
}

.icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #ffffff;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.platform-name {
    font-size: 16px;
    font-weight: 600;
    color: #2d3748;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}

.dropdown-arrow {
    width: 1.25rem;
    height: 1.25rem;
    color: #a0aec0;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-arrow.expanded {
    transform: rotate(180deg);
}

.dropdown-arrow:hover {
    transform: scale(1.1);
}

.service-options {
    margin-bottom: 1.25rem;
}

.service-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8eaed;
    cursor: pointer;
}

.service-card.active-service {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: 1px solid #3b82f6;
}

.service-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
}

.service-icon-container {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 20px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card.active-service .service-icon-container {
    background-color: #3b82f6;
    color: #ffffff;
}

.emoji-icon {
    background-color: #f3f4f6;
}

.service-icon-container:hover {
    transform: scale(1.1);
}

.service-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #ffffff;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.emoji {
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

.service-label {
    flex: 1;
}

.service-name {
    font-size: 14px;
    font-weight: 600;
    color: #2d3748;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0;
}


.platform-selector {
    background-color: #f8f9fa;
    border-radius: 0.75rem;
    box-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 1.25rem;
    border: 1px solid #e2e8f0;
}
.platform-button {
    width: 100%;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    background: #fff;
    border-radius: 0.75rem;
}

.service-options.open {
    display: block;
    padding: 10px;
}
.service-options {
    margin-bottom: 0;
}
.service-card.active-service {
    box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    border: 1px solid #3b82f66e;
}
.service-card {
    background-color: #ffffff;
    border-radius: 0.5rem;
    padding: 0.75rem;
    display: flex
;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 5px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e8eaed;
    cursor: pointer;
}
.service-card.active-service .service-icon-container {
    background-color: #7aacff36;
    color: #ffffff;
}

.menu--dropdown {
    position: absolute;
    left: 0;
    margin-top: 0.5rem; /* mt-2 */
    width: 14rem; /* w-56 */
    border-radius: 0.375rem; /* rounded-md */
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
    0 4px 6px -2px rgba(0,0,0,0.05); /* shadow-lg */
    background-color: #fff; /* bg-white */
    z-index: 10; /* z-10 */
    display: none; /* hidden */
}
.group:hover .menu--dropdown {
    display: block; /* group-hover:block */
}
.menu--list {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem; /* py-1 */
}
.menu--item {
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem; /* px-4 py-2 */
    font-size: 0.875rem; /* text-sm */
    color: #374151; /* text-gray-700 */
    text-decoration: none;
}
.menu--item:hover {
    background-color: #f3f4f6; /* hover:bg-gray-100 */
    color: #111827; /* hover:text-gray-900 */
}
.menu--icon {
    margin-right: 0.75rem; /* mr-3 */
}
.menu--dropdown {
    position: absolute;
    left: 0;
    top: 65%;
    min-width: 20rem;
    border-radius: 0.375rem;
    box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1),
    0 4px 6px -2px rgba(0,0,0,0.05);
    background-color: #fff;
    z-index: 10;
    display: none;
}

li:hover > .menu--dropdown {
    display: block;
}

.menu--list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* 2 столбца */
    gap: 0.25rem; /* расстояние между элементами */
    padding: 0.5rem;
}

.menu--item {
    display: flex;
    align-items: center;
    padding: 0.5rem;
    font-size: 0.875rem;
    color: #374151;
    text-decoration: none;
    border-radius: 0.25rem;
}

.menu--item img {
    height: 24px;
    width: 24px;
    margin-right: 0.5rem;
}

.menu--item:hover {
    background-color: #f3f4f6;
    color: #111827;
}
.user-info {
    position: relative;
}
.user-info:hover > .menu--dropdown {
    display: block;
}
.serviceMap_group__e7UHS {
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
.serviceMap_title__tAlxF {
    display: flex
;
    align-items: center;
    padding: 6px 0;
    margin-bottom: 12px;
    transition: color .3s ease;
    cursor: pointer;
}
.serviceMap_subTitle__B68Iu {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 400;
    color: rgba(51, 51, 51, .5);
    text-transform: uppercase;
}

.serviceMap_list__N4NU4 {
    margin-bottom: 16px;
    display: flex
;
    flex-direction: column;
    align-items: flex-start;
}
.serviceMap_list__N4NU4:last-child {
     margin-bottom: 0;
 }

.serviceMap_activeBtn__RW4zb, .serviceMap_btn__nvE9h {
    margin-bottom: 8px;
    font-size: 17px;
    font-weight: 400;
    text-align: left;
    transition: color .3s ease;
    color: #333;
    text-decoration: none;
}

@media (min-width: 1024px) {
    .serviceMap_activeBtn__RW4zb, .serviceMap_btn__nvE9h {
        padding-right: 8px;
        font-size: 13px;
        line-height: 18px;
    }
}
.serviceMap_mainTitle__Uhb6F {
    font-weight: 400;
    font-size: 16px;
    color: inherit;
    text-decoration: none;
}
.styles_block__hUNaK{display:block;width:187px;padding:16px;border-radius:12px;background-color:#f4f4f4;font-size:14px;font-weight:400;color:#999;text-decoration:none;border:1px solid transparent;transition:all .3s ease;}
.styles_block__hUNaK:hover{box-shadow:0 1.2px 2.5px 0 rgba(0,0,0,.02),0 2.9px 5.9px 0 rgba(0,0,0,.02),0 5.4px 11.1px 0 rgba(0,0,0,.03),0 9.6px 19.9px 0 rgba(0,0,0,.04),0 18px 37.2px 0 rgba(0,0,0,.04),0 43px 89px 0 rgba(0,0,0,.06);border-color:#efefef;}
@media (max-width:599px){
    .styles_block__hUNaK{width:100%;}
}
.styles_text__zRQik{flex-basis:100%;font-size:14px;line-height:1.4;color:rgba(51,51,51,.7);}
.styles_icon__TSyp4{height:40px;width:40px;margin-bottom:12px;}
.styles_title__kOTEg{font-size:14px;line-height:1.4;color:#000;margin-bottom:5px;}
.serviceMap_dropdownContent__c7kGR{display:grid;max-width:1440px;margin:0 auto;grid-gap:30px 0;gap:30px 0;grid-template-columns:repeat(8,1fr);}
@media (max-width:1023px){
    .serviceMap_dropdownContent__c7kGR{display:block;padding:0;}
}
.serviceMap_dropdownContent__c7kGR{padding:0 30px;}
@media (max-width:1023px){
    .serviceMap_dropdownContent__c7kGR .serviceMap_btn__nvE9h{margin-bottom:0;}
    .serviceMap_dropdownContent__c7kGR .serviceMap_mainTitle__Uhb6F{font-size:18px;}
    .serviceMap_dropdownContent__c7kGR .serviceMap_subTitle__B68Iu{margin-bottom:2px;}
    .serviceMap_dropdownContent__c7kGR .serviceMap_list__N4NU4{line-height:24px;margin-bottom:16px;}
    .serviceMap_dropdownContent__c7kGR .serviceMap_group__e7UHS{margin:26px 0;}
    .serviceMap_dropdownContent__c7kGR .serviceMap_group__e7UHS:first-child{margin-top:18px;}
}
.serviceMap_group__e7UHS{display:flex;flex-direction:column;align-items:flex-start;}
@media (max-width:1023px){
    .serviceMap_group__e7UHS{margin:32px 0;}
}
.serviceMap_title__tAlxF{display:flex;align-items:center;padding:6px 0;margin-bottom:12px;transition:color .3s ease;cursor:pointer;}
.serviceMap_title__tAlxF:hover{color:#0076ff;text-decoration:none;}
@media (max-width:1023px){
    .serviceMap_title__tAlxF{margin-bottom:10px;}
}
.serviceMap_titleIcon__PNmfF{width:18px;height:18px;margin-right:6px;}
.serviceMap_btn__nvE9h{margin-bottom:8px;font-size:17px;font-weight:400;text-align:left;transition:color .3s ease;color:#333;text-decoration:none;}
@media (min-width:1024px){
    .serviceMap_btn__nvE9h{padding-right:8px;font-size:13px;line-height:18px;}
}
@media (max-width:1023px){
    .serviceMap_btn__nvE9h{display:inline-block;font-size:14px;margin-right:16px;}
}
.serviceMap_btn__nvE9h:hover{text-decoration:none;color:#0076ff;}
.serviceMap_btn__nvE9h:last-child{margin-bottom:0;}
.serviceMap_btn__nvE9h{font-weight: bold;}
.serviceMap_mainTitle__Uhb6F{font-weight:400;font-size:16px;color:inherit;text-decoration:none;}
.serviceMap_mainTitle__Uhb6F:hover{text-decoration:none;}
.serviceMap_list__N4NU4{margin-bottom:16px;display:flex;flex-direction:column;align-items:flex-start;}
.serviceMap_list__N4NU4:last-child{margin-bottom:0;}
@media (max-width:1023px){
    .serviceMap_list__N4NU4{display:block;}
}
.serviceMap_subTitle__B68Iu{margin-bottom:8px;font-size:11px;font-weight:400;color:rgba(51,51,51,.5);text-transform:uppercase;}
@media (max-width:1023px){
    .serviceMap_subTitle__B68Iu{margin-bottom:10px;}
}
.drop-down_openDropdown__AWuWj{display:none;}
@media (min-width:1024px){
    .drop-down_openDropdown__AWuWj{position:absolute;top:50px;padding-top:30px;width:100%;left:0;right:0;box-shadow:0 10px 12px 0 rgba(0,0,0,.12);}
}
.drop-down_openDropdown__AWuWj{display:block;z-index:11;cursor:default;}
.drop-down_wrapper__Ia60o{background-color:#fff;padding-top:20px;padding-bottom:60px;}
@media (min-width:1024px){
    .drop-down_wrapper__Ia60o{max-height:calc(100vh - 140px);overflow:auto;}
}
@media (max-width:1023px){
    .drop-down_wrapper__Ia60o{margin-top:12px;border-top:1px solid rgba(51,51,51,.12);padding-top:0;padding-bottom:0;}
}
.header{z-index: 122343}
.execution-time-section {z-index: 1!important; position: relative;}
.active-service-icon-background {background: unset}

/* Custom CSS Tooltips */
.tooltip {
  position: relative;
  display: inline-block;
}



.tooltip:hover::before,
.tooltip:hover::after {
  opacity: 1;
  visibility: visible;
}

/* Tooltip positioning for order buttons */
.order-list-btns .tooltip::before {
  top: 130%;
  font-size: 11px;
  padding: 6px 10px;
}

.order-list-btns .tooltip::after {
  top: 120%;
}

/* Special styles for tooltips on links containing order buttons */
.order-list-btns a.tooltip {
  display: inline-block;
  position: relative;
}

.order-list-btns a.tooltip::before {
  top: 130%;
  font-size: 11px;
  padding: 6px 10px;
  z-index: 1001;
}

.order-list-btns a.tooltip::after {
  top: 120%;
  z-index: 1001;
}

/* Ensure tooltips work on all order button elements */
.order-list-btns .tooltip::before {
  z-index: 1001;
}

.order-list-btns .tooltip::after {
  z-index: 1001;
}

@media (max-width: 992px) {
    .cabinet-navagation {
        margin-bottom: 0!important;
    }
    .header-menu-user > .hb-menu-list {
        display: none!important;
    }
}
.cabinet-navagation-mob {
    display: none;
}
@media (max-width: 991px) {
    .cabinet-navagation-mob {
        display: block!important;
    }
    .header-menu {
        padding: 0px 10px 20px!important;
    }
    .select-language {
        position: inherit!important;
        top: 25px;
        left: 15px;
    }
    .panel-menu{
        display: none;
    }
    .header-right {
        display: flex;
        flex-direction: column;
    }
}
@media (max-width: 1320px) {
    .user-info {
        width: 176px!important;
        gap: 6px;
    }
}
.tooltip .tooltiptext {
    left: -150%!important;
}
.tooltip .tooltiptext::after {
    left: 69%!important;
}
.user-info {
    width: 160px;
}
.active-service-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b1b1b;
    line-height: 1;
}
.step-block .selected {

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.payment-methods-icon {
    width: 44px;
    height: 44px;
    background: unset!important;
    border-radius: 8px;
    display: flex
;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Search button styles */
.search-btn {
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-family: var(--font-family);
    font-weight: 500;
    font-size: 14px;
    line-height: 140%;
}

/* Theme Toggle Styles */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: var(--color-grey);
    position: relative;
}

.theme-toggle:hover {
    background: var(--color-grey-background);
    color: var(--color-primary);
}

.theme-toggle-desktop {
    list-style: none;
}

.theme-toggle-desktop .theme-toggle {
    width: 100%;
    justify-content: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-black);
}

.theme-toggle-desktop .theme-toggle:hover {
    background: var(--color-grey-background);
    color: var(--color-primary);
}

.theme-icon {
    transition: all 0.3s ease;
    opacity: 1;
}

.theme-icon-sun {
    position: absolute;
}

.theme-icon-moon {
    opacity: 0;
}

[data-theme="dark"] .theme-icon-sun {
    opacity: 0;
}

[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
}

/* Dark theme specific styles */
[data-theme="dark"] body {
    background-color: var(--color--background);
    color: var(--color-black);
}

[data-theme="dark"] .header {
    background-color: var(--color-white);
    border-bottom: 1px solid var(--color-stroke);
}

[data-theme="dark"] .header-menu-list li a {
    color: var(--color-black);
}

[data-theme="dark"] .header-menu-list li a:hover {
    color: var(--color-primary);
}

[data-theme="dark"] .theme-toggle-desktop .theme-toggle {
    color: var(--color-black);
}

[data-theme="dark"] .theme-toggle-desktop .theme-toggle:hover {
    color: var(--color-primary);
}

/* Additional dark theme styles for common elements */
[data-theme="dark"] .container {
    background-color: var(--color--background);
}

[data-theme="dark"] .modal {
    background-color: rgba(0, 0, 0, 0.8);
}

[data-theme="dark"] .modal .modal-block {
    background-color: var(--color-white);
    color: var(--color-black);
}

[data-theme="dark"] .modal .close-modal-times {
    color: var(--color-grey);
}

[data-theme="dark"] .modal .close-modal-times:hover {
    color: var(--color-black);
}

/* Dark theme for forms and inputs */
[data-theme="dark"] input,
[data-theme="dark"] textarea,
[data-theme="dark"] select {
    background-color: var(--color-grey-background);
    color: var(--color-black);
    border-color: var(--color-stroke);
}

[data-theme="dark"] input:focus,
[data-theme="dark"] textarea:focus,
[data-theme="dark"] select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 2px var(--color-primary-100);
}

/* Dark theme for buttons */
[data-theme="dark"] .btn {
    background-color: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

[data-theme="dark"] .btn:hover {
    background-color: var(--color-accent);
    border-color: var(--color-accent);
}

[data-theme="dark"] .btn-secondary {
    background-color: var(--color-grey-background);
    color: var(--color-black);
    border-color: var(--color-stroke);
}

[data-theme="dark"] .btn-secondary:hover {
    background-color: var(--color-grey-light);
    color: var(--color-black);
}

/* Dark theme for cards and containers */
[data-theme="dark"] .card,
[data-theme="dark"] .panel,
[data-theme="dark"] .box {
    background-color: var(--color-white);
    color: var(--color-black);
    border-color: var(--color-stroke);
}

/* Dark theme for links */
[data-theme="dark"] a {
    color: var(--color-primary);
}

[data-theme="dark"] a:hover {
    color: var(--color-accent);
}

/* Dark theme for text */
[data-theme="dark"] h1,
[data-theme="dark"] h2,
[data-theme="dark"] h3,
[data-theme="dark"] h4,
[data-theme="dark"] h5,
[data-theme="dark"] h6 {
    color: var(--color-black);
}

[data-theme="dark"] p,
[data-theme="dark"] span,
[data-theme="dark"] div {
    color: var(--color-black);
}

/* Dark theme for tables */
[data-theme="dark"] table {
    background-color: var(--color-white);
    color: var(--color-black);
}

[data-theme="dark"] th,
[data-theme="dark"] td {
    border-color: var(--color-stroke);
    color: var(--color-black);
}

[data-theme="dark"] tr:nth-child(even) {
    background-color: var(--color-grey-background);
}

/* Dark theme for dropdowns and menus */
[data-theme="dark"] .dropdown-menu,
[data-theme="dark"] .menu--dropdown {
    background-color: var(--color-white);
    border-color: var(--color-stroke);
}

[data-theme="dark"] .dropdown-item {
    color: var(--color-black);
}

[data-theme="dark"] .dropdown-item:hover {
    background-color: var(--color-grey-background);
    color: var(--color-black);
}

/* Dark theme for notifications and alerts */
[data-theme="dark"] .alert {
    background-color: var(--color-grey-background);
    color: var(--color-black);
    border-color: var(--color-stroke);
}

[data-theme="dark"] .alert-success {
    background-color: var(--color-green-150);
    color: var(--color-green);
    border-color: var(--color-green);
}

[data-theme="dark"] .alert-danger {
    background-color: var(--color-red-100);
    color: var(--color-red);
    border-color: var(--color-red);
}

[data-theme="dark"] .alert-warning {
    background-color: var(--color-orange-100);
    color: var(--color-orange);
    border-color: var(--color-orange);
}

[data-theme="dark"] .alert-info {
    background-color: var(--color-primary-100);
    color: var(--color-primary);
    border-color: var(--color-primary);
}

/* Global dark theme styles */
[data-theme="dark"] {
    color-scheme: dark;
}

[data-theme="dark"] * {
    border-color: var(--color-stroke);
}

[data-theme="dark"] .container {
    background-color: var(--color--background);
}

[data-theme="dark"] .row {
    background-color: transparent;
}

[data-theme="dark"] .col,
[data-theme="dark"] .col-* {
    background-color: transparent;
}

/* Dark theme for common layout elements */
[data-theme="dark"] .page-wrapper,
[data-theme="dark"] .content-area {
    background-color: var(--color--background);
    color: var(--color-black);
}

[data-theme="dark"] .sidebar-wrapper {
    background-color: var(--color-white);
    border-right: 1px solid var(--color-stroke);
}

[data-theme="dark"] .main-wrapper {
    background-color: var(--color--background);
}

/* Dark theme for common utility classes */
[data-theme="dark"] .text-dark {
    color: var(--color-black) !important;
}

[data-theme="dark"] .text-light {
    color: var(--color-grey) !important;
}

[data-theme="dark"] .bg-dark {
    background-color: var(--color-black) !important;
}

[data-theme="dark"] .bg-light {
    background-color: var(--color-grey-background) !important;
}

/* Dark theme for service menu dropdown - override inline styles */
[data-theme="dark"] .menu--dropdown .menu--list {
    background-color: var(--color-white) !important;
    border-top-color: var(--color-stroke) !important;
}

[data-theme="dark"] .menu--dropdown .serviceMap_group__e7UHS {
    color: var(--color-black);
}

[data-theme="dark"] .menu--dropdown .serviceMap_title__tAlxF {
    color: var(--color-black);
}

[data-theme="dark"] .menu--dropdown .serviceMap_mainTitle__Uhb6F {
    color: var(--color-black);
}

[data-theme="dark"] .menu--dropdown .serviceMap_mainTitle__Uhb6F:hover {
    color: var(--color-primary);
}

[data-theme="dark"] .menu--dropdown .serviceMap_btn__nvE9h {
    color: var(--color-black);
}

[data-theme="dark"] .menu--dropdown .serviceMap_btn__nvE9h:hover {
    color: var(--color-primary);
    background-color: var(--color-grey-background);
}
    cursor: pointer;
    transition: all 0.3s ease;
    margin-left: 8px;
    min-width: 80px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(32, 111, 255, 0.3);
}

.search-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(32, 111, 255, 0.2);
}

/* Update cabinet-top-search to accommodate button */
.cabinet-top-search {
    width: 500px;
    max-width: 100%;
    height: 40px;
    display: flex;
    border: 1px solid var(--color-secondary-500);
    border-radius: 8px;
    align-items: center;
}

/* Update input-search width to account for button */
.input-search {
    width: calc(100% - 72px - 88px); /* Subtract select width and button width */
    height: 100%;
    background-image: url(../img/search-icon.svg);
    background-position-y: center;
    background-position-x: calc(100% - 15px);
    background-repeat: no-repeat;
    padding: 0 12px;
    border: none;
    outline: none;
    background-color: var(--color--background);
    border-radius: 0;
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}
 [data-theme="dark"] .banner-box {

     background-color: #1d283a;
}
[data-theme="dark"] .btn , [data-theme="dark"] .register-btn, [data-theme="dark"] .cta-button, [data-theme="dark"] .active-service-order-button {
    background-color: #9757fb;
    color: #ffffff;
    border-color: #494949;
}
[data-theme="dark"] .btn:hover, [data-theme="dark"] .register-btn:hover, [data-theme="dark"] .cta-button:hover, [data-theme="dark"] .active-service-order-button:hover {
    background-color: #6b23db;
    border-color: #6036a1;
    color: white;
}
[data-theme="dark"] .feature-card {
    background-color: #1f3d61;
}

[data-theme="dark"] .platforms-container {
    background-color: #1f3d61;
}


[data-theme="dark"] .service-content .service-title {
    width: 100%;
    color: #ffffff;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    line-height: 140%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

[data-theme="dark"] .service-card, [data-theme="dark"] .order-card, [data-theme="dark"] .cabinet-card {
    background-color: #1f1f1f!important;
}
[data-theme="dark"]  .faq-box {

    background: #1d283a;
}

[data-theme="dark"] .links-list li a span {
    color: #ffffff;
}

[data-theme="dark"] .service-button {
    background-color: #1c477b;
    color: #ffffff;
}

[data-theme="dark"] .service-button:hover {
    background-color: #044da5;
}
[data-theme="dark"] .form-box, [data-theme="dark"] .active-service-card, [data-theme="dark"] .active-service-header {

    background-color: #1d283a;
}
[data-theme="dark"] .balance-card{
    background: #1f1f1f00;
}
[data-theme="dark"] footer {
    background-color: #0f1729 !important;
}
[data-theme="dark"] .advantages-box {
    background: #1d283a;
}
[data-theme="dark"] .service-card, [data-theme="dark"] .order-card, [data-theme="dark"] .cabinet-card {

    background-color: #1d283a !important;
}
[data-theme="dark"] .platform-selector {
    background-color: unset;
}

[data-theme="dark"] .platform-button {
    background-color: #243a5f;
}

[data-theme="dark"] .active-service {
    background-color: #1c477b !important;
}
.description-badge{
    font-size:12px;color:#6a6a6a;font-weight:500;margin-bottom:0.25rem;
}
@media (max-width: 991px) {
    .showcase-container {
        width: 100%;
    }
}

@media (max-width: 991px) {
    [data-theme="dark"]  .header-menu {

        background: #313131;
    }
}

[data-theme="dark"] .radio-icon {
    display: flex
;
    align-items: center;
    border: 1px solid var(--color-grey-light);
    border-radius: 8px;
    padding: 12px;
    gap: 14px;
    cursor: pointer;
    background: #d9c1ff17;
}
[data-theme="dark"] .step-block {

    background: #1d283a;
}

[data-theme="dark"] .active-in {
    color: white !important;
    border: 1px solid var(--color-accent);
    background: #9757fb;
}
[data-theme="dark"] .radio-icon input[type=radio]:checked + span {
    color: #ffffff;
    opacity: 1;
}

[data-theme="dark"] .feature-card {
    background-color: #1d283a;
    border-color: var(--color-stroke);
}
[data-theme="dark"] .support-box {
    background: #1d283a;
}
[data-theme="dark"]  .white {
    color:white;
}
[data-theme="dark"]  .white {
    color:white;
}


.telegram-icon {
    background-color: #039be5;
}
.facebook-icon {
    background-color: #0866ff;
}
[data-theme="dark"] .service-button {
    background-color: #9757fb;
    color: #ffffff;
}
[data-theme="dark"] .service-button:hover {
    background-color: #6b23db;
    border-color: #6036a1;
}
[data-theme="dark"] .service-button.active {
    border-color: #733fc5;
    background-color: #6b23db !important;
}

[data-theme="dark"] .active-service {
    background-color: #6b23db !important;
}

[data-theme="dark"] .platform-button {
    background-color: #1d283a;
}
[data-theme="dark"] .service-card:hover, [data-theme="dark"] .order-card:hover, [data-theme="dark"] .cabinet-card:hover {
    border-color: #6b23db!important;
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.15);
}
[data-theme="dark"]  .breadcrumbs [aria-current="page"] {
    color: #b4bbc5;
    font-weight: 500;
}
@media (max-width: 991px) {
    [data-theme="dark"] .header-menu {
        background: #0f1729;
    }
}


[data-theme="dark"]  .dropdown-button {
    background-color: #1d283a;
    border: 1px solid #404040;
}
[data-theme="dark"]  .tickets-list>.ticket-item {
    background: #1d283a;
    border: 1px solid #404040;
}
[data-theme="dark"] .info-panel {
    border-left: 4px solid #9757fb;
    background: #1d283a;
}

[data-theme="dark"] .support-status {
    background: linear-gradient(135deg, #1d283a 0%, #0d439b 100%);
}
[data-theme="dark"] .chip-open {
    background: #9757fb;
    border-color: #494949;
}
[data-theme="dark"] h4, .footer-payment-box h5 span {
    color: #ffffff!important;
}
.replenishment-sum-right p {
    margin-bottom: 5px;
}
[data-theme="dark"] .payment-methods-block:hover {

    background-color: unset;
    border: 1px solid #9757fb;
}

[data-theme="dark"] .info-box .payment-methods-block {

    background-color: unset;
    border-color: var(--color-stroke);
}

[data-theme="dark"] .info-box .payment-methods-block:hover {

    background-color: unset;
    border: 1px solid #9757fb;
}

[data-theme="dark"] .info-box .payment-label input:checked ~ .payment-methods-block {
    border: 1px solid #9757fb;

    background-color: unset;
}

[data-theme="dark"] .order-success-page {
    background-color: unset;
}


[data-theme="dark"] .order-details-card {

    background-color: #1d283a;
}

[data-theme="dark"] .order-info-card {

    background-color: #1d283a;
}

[data-theme="dark"] .order-detail-value, [data-theme="dark"] .order-title-section h2, [data-theme="dark"] .order-action-button   {

    color: #fff;
}
[data-theme="dark"] .order-paid-badge {

    background-color: #216538;
}

[data-theme="dark"] .order-secondary-button-orders {

    background-color: #9757fb;
}
[data-theme="dark"] .active-service-header {
 border: unset;
}

.active-service-id {
    min-width: 50px;
}
.order-refund-text{

    font-size: 11px!important;
}
