html {
  overflow-x: hidden;
}

body {
  font-family: "Roboto", sans-serif;
  padding: 0;
  position: relative;
  margin: 0;
  width: 100%;
  overflow-x: hidden;
  background: #050366;
}

* {
  outline: none !important;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

:root {
  --gutter: 20px;
}

.hidden {
  display: none;
}

.header {
  position: relative;
  z-index: 9;
  padding-bottom: 20px;
}

.header.heade-lk {
  border-radius: 0px 0px 12px 12px;
}

.header__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  max-width: 1180px;
  margin: 0 auto;
  padding-top: 30px;
  padding-bottom: 15px;
}

.header__left {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
}

.header__message {
  position: relative;
  margin-right: 20px;
  display: block;
}

.header__message span {
  background: #4e6aff;
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  right: -2px;
  top: -6px;
  text-align: center;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  font-family: "Wix Madefor Text", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__message[data-has-unread="true"]:hover::after {
  content: attr(data-tooltip);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 12px;
  white-space: nowrap;
  z-index: 10;
}

.header__logout {
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: 10px;
}

.header__logout a {
  border: none;
  background: transparent;
  cursor: pointer;
  margin-left: 10px;
  display: block;
}

.top__menu ul {
  display: flex;
  flex-direction: row;
  padding-left: 0px;
  margin-left: 10px;
}

.top__menu ul li {
  list-style: none;
}

.top__menu ul li a {
  text-decoration: none;
  color: #fff;
  margin: 0px 11px;
  font-size: 16px;
  line-height: 135%;
  font-weight: 400;
}

.top__menu ul li a:hover {
  color: #c0e3ff;
}

.btn_proxi {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid #67d1ff;
  border-radius: 8px;
  padding: 0px 16px;
  width: 180px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  color: #fff;
  margin-left: 15px;
  position: relative;
  cursor: pointer;
}

.btn_proxi:hover {
  background: rgba(255, 255, 255, 0.33);
}

.btn_proxi::before {
  content: "";
  position: absolute;
  background: url("../img/pdrop.svg");
  background-repeat: no-repeat;
  background-size: cover;
  width: 10px;
  height: 6px;
  right: 20px;
  top: 17px;
  z-index: 9;
}

.backdrop {
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(12, 12, 12, 0.4);
  z-index: 9;
  display: none;
  transition: display 1s ease-in;
}

.is--active {
  display: flex;
  flex-direction: column;
}

.activeBtn {
  background: rgba(255, 255, 255, 0.33);
}

.activeBtn::before {
  content: "";
  position: absolute;
  background: url("../img/pdrop.svg");
  background-repeat: no-repeat;
  background-size: cover;
  transform: rotate(180deg);
  width: 10px;
  height: 6px;
  right: 20px;
  top: 17px;
  z-index: 9;
}

.header__menu {
  background: rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.header__menu ul {
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
}

.header__menu ul li {
  list-style: none;
}

.header__menu ul li a {
  color: #fff;
  padding: 12px 25px;
  text-decoration: none;
  font-size: 16px;
  line-height: 135%;
  font-weight: 300;
  display: block;
  letter-spacing: 0.2px;
}

.header__menu ul li a:hover {
  background: rgba(255, 255, 255, 0.13);
}

.header__right {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.header__auth a {
  background: #4e6aff;
  border-radius: 8px;
  padding: 10px 0px;
  width: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  text-decoration: none;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
}

.header__auth a:hover {
  background: #637bfc;
}

.header__burger {
  background: transparent;
  border: none;
  cursor: pointer;
  display: none;
}

.header__mobile {
  display: none;
}

.header__lang {
  position: relative;
  margin-left: 20px;
}

.btn__lang {
  background: transparent;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
}

.btn__lang .lang-flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

.btn__lang .lang-arrow {
  transition: transform 0.2s ease;
}

.header__lang:hover .btn__lang .lang-arrow,
.header__lang.open .btn__lang .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  padding-top: 8px;
  right: 0;
  background: #1a2744;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 4px 0;
  min-width: 150px;
  z-index: 1000;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
}

.header__lang:hover .lang-dropdown,
.header__lang.open .lang-dropdown {
  display: block;
}

.lang-dropdown__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  transition: background 0.15s ease;
  white-space: nowrap;
}

.lang-dropdown__item:hover {
  background: rgba(255, 255, 255, 0.1);
}

.lang-dropdown__item.active {
  opacity: 0.5;
  pointer-events: none;
}

.lang-dropdown__item .lang-flag {
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
}

.section {
  position: relative;
  z-index: 2;
}

.main {
  position: relative;
  margin-top: -165px;
  background: #0c1633;
  background-image:
    radial-gradient(ellipse 1400px 1000px at 15% 35%, rgba(108, 99, 255, 0.25) 0%, rgba(108, 99, 255, 0.15) 30%, transparent 65%),
    radial-gradient(ellipse 1200px 1400px at 85% 55%, rgba(64, 193, 254, 0.18) 0%, rgba(64, 193, 254, 0.1) 35%, transparent 70%),
    radial-gradient(circle 600px at 50% 20%, rgba(120, 110, 255, 0.12) 0%, transparent 60%);
  background-repeat: no-repeat;
  background-size: cover;
  height: 745px;
  width: 100%;
  overflow: hidden;
}

.main__container {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 235px;
}

.planet {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(225px, -267px);
  overflow: hidden;
}

.planet picture {
  display: block;
}

.planet picture img {
  display: block;
  max-width: none;
}

.ellipse_left {
  position: absolute;
  top: -150px;
  left: -235px;
}

.planet__anim {
  position: absolute;
  top: 41%;
  right: 26%;
  width: 33%;
  height: auto;
  z-index: 2;
}

object.planet__anim {
  position: absolute;
  top: 41%;
  right: 26%;
  width: 33%;
  height: auto;
  z-index: 2;
  pointer-events: none;
}

.planet__canvas {
  aspect-ratio: 1;
  position: absolute;
  width: 34%;
  top: 39%;
  right: 24%;
  z-index: 10;
}

.planet-lines {
  rotate: 234deg;
}

object.planet-lines {
  rotate: 234deg;
}

.planet-lines__line {
  stroke-dasharray: 80;
  stroke-dashoffset: 0;
  animation: drawLine 19s linear infinite;
  stroke-opacity: 1;
  stroke-width: 1;
  stroke: #eff2ff;
  opacity: 0.2;
}

.planet-lines__circle-shadow {
  animation: pulse 1s linear infinite alternate;
  opacity: 0;
  transform: scale(1);
  transform-box: fill-box;
  transform-origin: center center;
}

.planet-lines__circle-shadow path {
  fill: #eff2ff;
}

.main__content {
  width: 45%;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}

.main__content h1 {
  font-size: 60px;
  color: #fff;
  font-family: "Geologica", sans-serif;
  line-height: 120%;
  font-weight: 500;
  margin: 0;
  margin-bottom: 12px;
}

.main__content p {
  line-height: 135%;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 1.5;
}

.main__image img {
  max-width: 100%;
}

.main__bottom {
  display: flex;
  flex-direction: row;
  padding-bottom: 60px;
  padding-top: 100px;
  position: absolute;
  bottom: 0;
  width: 100%;
  max-width: 1180px;
}

.tooltip__container {
  width: 100%;
  height: 100%;
  padding-top: 100px;
  display: none;
}

.tooltip__container.desktop_show .swiper-wrapper {
  justify-content: space-between;
}

.tooltip__container.mobile_show {
  overflow: hidden;
}

.main__bottom-list {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
}

.main__b-item {
  line-height: 135%;
  font-weight: 500;
  color: #fff;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  padding: 0px 0px;
  position: relative;
  text-align: center;
  cursor: pointer;
}

.main__b-item:after {
  content: "";
  display: block;
  height: 27px;
  width: 1px;
  position: absolute;
  background: #40c1fe;
  top: -2px;
  right: -50px;
}

.main__b-item:last-child:after {
  display: none;
}

#range {
  background: transparent !important;
}

input[type="range"] {
  background: transparent !important;
}

.main__b-item span {
  line-height: 135%;
  font-weight: 400;
  color: #fff;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  position: relative;
  text-align: left;
  display: block;
}

.main__b-item .tooltip {
  background: #fff;
  bottom: 100%;
  display: block;
  left: 0px;
  margin-bottom: 30px;
  line-height: 1.4;
  border-radius: 12px;
  opacity: 0;
  padding: 7px 18px 9px 18px;
  font-size: 12px;
  color: #142974;
  pointer-events: none;
  position: absolute;
  width: 215px;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -ms-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
  -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
  text-align: left;
}

.main__b-item .tooltip:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.main__b-item .tooltip:after {
  border-left: solid transparent 0px;
  border-right: solid transparent 10px;
  border-top: solid #fff 7px;
  bottom: -7px;
  content: " ";
  height: 0;
  left: 0;
  margin-left: 13px;
  position: absolute;
  width: 0;
}

.main__b-item:hover .tooltip {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(10px);
  -moz-transform: translateY(10px);
  -ms-transform: translateY(10px);
  -o-transform: translateY(10px);
  transform: translateY(10px);
}

.lte8 .wrapper .tooltip {
  display: none;
}

.lte8 .wrapper:hover .tooltip {
  display: block;
}

.main__b-item:first-child {
  padding-left: 0px;
}

.main__b-item:last-child {
  padding-right: 0px;
  border-right: 0px solid #40c1fe;
}

.proxi_index {
  background: #eff2ff;
  padding-top: 50px;
  padding-bottom: 62px;
}

.proxi__pagesection {
  position: relative;
  margin-top: -170px;
  background: url("../img/byu-a.webp");
  background-repeat: no-repeat;
  height: auto;
  width: 100%;
  background-size: cover;
}

.proxi__pagesection::after {
  position: absolute;
  content: "";
  background: url("../img/byu-a.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 300px;
  z-index: -1;
}

.proxi__pagesection-c {
  position: relative;
  padding-top: 160px;
  z-index: 2;
}

.proxi__pagesection .page__title h1 {
  font-size: 48px;
  font-weight: 500;
  margin-bottom: 20px;
}

.proxi__title {
  text-align: center;
  line-height: 135%;
  font-weight: 500;
  color: #081c62;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
}

.proxi-info {
  background: #eff2ff;
  margin-top: -75px;
  padding-top: 115px;
  position: relative;
}

.tabs__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 20px;
  padding-left: 0; /* zero out UA-default ul padding so flex centering aligns with container, not 40px right */
  list-style: none;
}

.tabs__btn {
  border: 1px solid #3d65ff;
  border-radius: 12px;
  padding: 9px 24px;
  width: auto;
  height: 40px;
  background: #fff;
  text-align: center;
  color: #142974;
  font-size: 16px;
  font-weight: 550;
  margin: 0px 4.5px;
  font-family: "Wix Madefor Text", sans-serif;
  cursor: pointer;
  white-space: nowrap;
}

.tabs__btn:hover {
  background: linear-gradient(135deg, #4627ff 0%, #0c1430 100%);
  color: #fff;
}

.tabs__btn--active {
  background: linear-gradient(135deg, #4627ff 0%, #0c1430 100%);
  color: #fff;
}

.tabs__content {
  display: none;
}

.tabs__content--active {
  display: block;
}

.plit__big-form {
  padding: 36px 56px;
  background: linear-gradient(135deg, #1a2280 0%, #0f1b5c 100%);
  border-radius: 12px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
  display: block;
  width: 65%;
}

/* Atmospheric radial glows replace the old SVG decorations (Figma slider design). */
@media (min-width: 768px) {
  .plit__big-form::before {
    content: "";
    position: absolute;
    left: -120px;
    top: 20px;
    width: 460px;
    height: 320px;
    background: radial-gradient(ellipse at center, rgba(113, 195, 255, 0.35), transparent 65%);
    pointer-events: none;
    z-index: 0;
  }

  .plit__big-form::after {
    content: "";
    position: absolute;
    right: -100px;
    top: -80px;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle at center, rgba(70, 39, 255, 0.45), transparent 60%);
    pointer-events: none;
    z-index: 0;
  }
}
.country-ssr-preview {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  line-height: 1;
}
.country-ssr-preview + .country-select:not(.select2-hidden-accessible) {
  display: none;
}
.form__group:has(.country-select.select2-hidden-accessible) .country-ssr-preview {
  display: none;
}

.form__proxi {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 8;
}

.form__row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.form__row-range {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 10px 0;
}

.form__proxi .form__group .select-dropdown__list {
  width: 100%;
}

.form__group {
  display: flex;
  width: 48%;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 12px;
  position: relative;
}

.form__group label {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Wix Madefor Text", sans-serif;
  margin-bottom: 8px;
  position: relative;
}

.form__group select {
  border: none;
  background: #e9eeff;
  border-radius: 8px;
  padding: 0px 9px;
  width: auto;
  height: 40px;
  color: #142974;
  font-size: 16px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
  outline: none;
}

.form__control {
  border: none;
  background: #e9eeff;
  border-radius: 8px;
  padding: 0px 9px;
  width: auto;
  height: 40px;
  color: #142974;
  font-size: 16px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
  outline: none;
}

.popup-modal .popup_forms .form__group .field-icon {
  float: right;
  top: 11px;
  right: 15px;
  position: absolute;
  z-index: 99;
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* Inline popups aren't pannable/swipeable content — keep a normal cursor
   instead of the grab cursor fancybox adds to swipeable slides
   (.fancybox-can-swipe .fancybox-content). !important to beat the CDN rule
   regardless of stylesheet order. */
.popup-modal.fancybox-content {
  cursor: auto !important;
}

.popup-modal.add_comments_pop {
  min-width: 450px;
  padding: 30px 40px;
}

.popup-modal.add_comments_pop > div {
  line-height: 1.4;
}

.popup-modal.add_comments_pop .error_content {
  text-align: center;
}

.modal_buttons_block {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
}

.modal_buttons_block .button_pr_p {
  max-width: 180px;
}

.comment-cell {
  color: rgba(0, 0, 0, 0.5);
}

.comment .inner-cell {
  width: 13ch;
  white-space: normal;
  word-break: break-all;
}

textarea {
  resize: none;
  border: 0;
  border-radius: 12px;
  width: 100%;
  padding: 18px 20px;
  min-height: 120px;
  margin-bottom: 16px;
}

td.null_comment {
  color: rgba(0, 0, 0, 0.3);
}

.popup-modal .popup_forms p {
  font-size: 14px;
  font-weight: 500;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
}

.form__control::placeholder {
  color: #142974;
  font-size: 16px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
}

.form__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 38px;
  align-items: flex-end;
}

.form__all {
  width: 48%;
}

.form__all span {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-family: "Wix Madefor Text", sans-serif;
  margin-top: 15px;
  margin-bottom: 5px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.form__all span img {
  cursor: pointer;
}

.form__all p {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-family: "Wix Madefor Text", sans-serif;
}

.form__all p u {
  text-decoration: none;
}

.noUi-connect {
  background: linear-gradient(90deg, #86c5ff, #2749ff);
}

.noUi-target {
  background: rgba(233, 238, 255, 0.18);
  height: 6px;
  border: none;
  border-radius: 999px;
  box-shadow: none;
}

.noUi-handle::after,
.noUi-handle::before {
  display: none;
}

.noUi-handle {
  box-shadow: 0 2px 8px rgba(39, 73, 255, 0.45);
  border: 4px solid #2749ff;
  background: #fff;
  border-radius: 50%;
}

.noUi-horizontal .noUi-handle {
  width: 20px;
  height: 20px;
  top: -7px;
}

.noUi-horizontal .noUi-handle-upper {
  right: 0;
}

[hidden] {
  display: none;
  visibility: hidden;
}

.form__btn {
  width: 48%;
}

button {
  box-shadow: none !important;
  outline: none !important;
}

.form__btn button {
  width: 100%;
  height: 40px;
  background: linear-gradient(91deg, #86c5ff 0%, #2749ff 100%);
  border-radius: 8px;
  border: none;
  cursor: pointer;
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
  transition: background 0.3s ease;
}

.form__btn button:hover {
  background: linear-gradient(91deg, #68a5ff 0%, #2039ff 100%);
}

.blue__index {
  padding: 0px 0px 0px 0px;
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  margin-bottom: -120px;
  background: #050366;
}

.bottom_shadow {
  position: absolute;
  bottom: -20px;
  left: 0;
  background: url(../img/main/shadow_bottom.webp);
  width: 100%;
  height: 764px;
  background-size: cover !important;
  z-index: 0;
}

.task {
  padding: 80px 0px 25px;
  margin-bottom: 140px;
}

.task .container {
  position: relative;
  z-index: 1;
}

.task .section__title {
  text-align: center;
  line-height: 135%;
  font-weight: 500;
  color: #fff;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
  margin-bottom: 12px;
  margin: 0 auto;
}

.task__container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  margin-top: 32px;
}

.task__item {
  display: flex;
  flex-direction: column;
  width: 23%;
}

.task__item-title {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  line-height: 135%;
  height: 50px;
  font-family: "Geologica", sans-serif;
  padding-bottom: 20px;
  border-bottom: 2px solid #40a3ff;
}

.task__item-text {
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 1.4;
  margin-right: 12px;
}

.programm {
  padding: 42px 0px;
}

.programm .section__title {
  text-align: center;
  line-height: 135%;
  font-weight: 500;
  color: #fff;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
  margin-bottom: 12px;
}

.programm .section__text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Wix Madefor Text", sans-serif;
  margin: 0 auto;
  padding-bottom: 62px;
}

.blue__index .programm .section__text {
  text-align: center;
  color: #fff;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Wix Madefor Text", sans-serif;
  margin: 0 auto;
  padding-bottom: 32px;
}

.programm__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.programm__item-new {
  width: 280px;
  height: 295px;
  background: linear-gradient(to bottom right, #6360ff 0%, #f9f9ff 100%);
  border-radius: 12px;
  position: relative;
}

.programm__item-new--bg {
  width: calc(100% - 2px);
  height: calc(100% - 2px);
  background: #050366;
  border-radius: 12px;
  top: 1px;
  position: absolute;
  left: 1px;
}

.programm__item-new--bg-shadow {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  top: -6px;
  position: absolute;
  left: -6px;
}

.programm__item-new--content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.programm__item {
  border-radius: 12px;
  width: 23%;
  justify-content: center;
  display: flex;
  padding: 2px;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.07);
  position: relative;
  border: 2px solid linear-gradient(135deg, #8987ff 35%, #2925e9 100%);
  z-index: 3;
  backdrop-filter: blur(9px);
  border: 2px solid rgba(255, 255, 255, 0.07);
}

.programm__item-icon {
  display: block;
  margin: 0 auto;
  height: 178px;
}

.programm__item-icon img {
  max-width: 100%;
}

.programm__item-title {
  text-align: center;
  color: #fff;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 16px;
  height: 70px;
  padding: 7px 15px 0 15px;
  line-height: 1.4;
}

.review {
  padding-top: 45px;
  padding-bottom: 85px;
  background: url(../img/bg-review.webp);
  background-repeat: no-repeat;
  position: relative;
  background-size: cover;
}

.review__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.review__title {
  width: 18%;
  text-align: left;
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
}

.review__sliders-block {
  width: 75%;
  position: relative;
}

.review__sliders {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.review-nav {
  position: absolute;
  bottom: -18px;
  right: 30px;
  width: 50px;
}

.review-nav .swiper-button-prevR::after {
  font-size: 0px;
  display: none;
}

.review-nav .swiper-button-prevR {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../img/pn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0px;
  opacity: 1;
  left: 0%;
  cursor: pointer;
}

.review-nav .swiper-button-nextR::after {
  font-size: 0px;
  display: none;
}

.review-nav .swiper-button-nextR {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background: url("../img/rn.svg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0px;
  opacity: 1;
  left: 94%;
  cursor: pointer;
}

.review-nav .swiper-button-prevR:hover,
.review-nav .swiper-button-nextR:hover {
  opacity: 0.8;
}

.review-slide__content {
  background: #4262ff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 180px;
  position: relative;
  cursor: grab;
  cursor: -moz-grab;
  cursor: -webkit-grab;
}

.review-slide__content:before {
  bottom: -20px;
  content: " ";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  width: 100%;
}

.review-slide__content:active {
  cursor: grabbing;
  cursor: -moz-grabbing;
  cursor: -webkit-grabbing;
}

.review-slide__content:after {
  border-left: solid transparent 0px;
  border-right: solid transparent 15px;
  border-top: solid #5771ff 10px;
  bottom: -10px;
  content: " ";
  height: 0;
  left: 4%;
  margin-left: 13px;
  position: absolute;
  width: 0;
}

.review-slide__fio {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  padding-top: 20px;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
}

.review-slide__text {
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  padding: 16px 16px;
  line-height: 1.4;
  font-family: "Wix Madefor Text", sans-serif;
}

.review-slide__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 16px 16px;
}

.review-slide__date {
  color: #fafafa;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Wix Madefor Text", sans-serif;
  margin-right: 16px;
  position: relative;
  top: 2px;
}

.review-slide__link a {
  color: #fafafa;
  text-decoration: none;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4;
  font-family: "Wix Madefor Text", sans-serif;
}

.article {
  border-radius: 0px 0px 12px 12px;
  position: relative;
  margin-top: -160px;
}

.article::before {
  position: absolute;
  content: "";
  background: url("../img/article-before.webp");
  background-color: #050366;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 700px;
  z-index: -1;
}

.article-top__block {
  padding: 42px 0px 12px 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  z-index: 2;
}

.pagination__counts {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 12px;
  color: #081c62;
  font-weight: 400;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
  justify-content: center;
}

.pagination__counts ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 10px;
}

.pagination__counts ul li {
  list-style: none;
}

.pagination__counts ul li a {
  list-style: none;
  font-size: 12px;
  color: #081c62;
  font-weight: 400;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
  text-decoration: none;
  margin: 0px 3px;
  padding: 0 2px;
  display: block;
  text-underline-offset: 4px;
}

.pagination__counts ul li a:hover {
  color: #4e6aff;
  cursor: pointer;
}

.pagination__counts ul li a.active-counts {
  text-decoration: underline;
}

.pagination__counts ul li a.active-counts {
  color: #b8c8ff;
}

.page-link:hover {
  cursor: pointer;
}

.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  margin: 0px 12px;
}

.breadcrums__list-dark {
  display: flex;
  flex-direction: row;
  padding-left: 0px;
  padding-top: 0px;
  margin: 0;
}

.breadcrums__list-dark li {
  list-style: none;
  color: #081c62;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
  margin-right: 14px;
  position: relative;
}

.breadcrums__list-dark li:last-child {
  margin-right: 0px;
}

.breadcrums__list-dark li::before {
  content: "/";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 1px;
  color: #081c62;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
  right: -10px;
}

.breadcrums__list-dark li:last-child::before {
  display: none;
}

.breadcrums__list-dark li a {
  color: #081c62;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
}

.breadcrums__list {
  display: flex;
  flex-direction: row;
  padding-left: 0px;
  padding-top: 62px;
  margin: 0;
}

.breadcrums__list li {
  list-style: none;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
  margin-right: 14px;
  position: relative;
}

.breadcrums__list li:last-child {
  margin-right: 0px;
}

.breadcrums__list li::before {
  content: "/";
  position: absolute;
  background-repeat: no-repeat;
  background-size: cover;
  top: 1px;
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
  right: -10px;
}

.breadcrums__list li:last-child::before {
  display: none;
}

.breadcrums__list li a {
  color: #fff;
  font-size: 12px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
}

.blogs {
  background: #eff2ff;
  padding-top: 42px;
  padding-bottom: 42px;
  position: relative;
}

.blogs__sliders .swiper-pagination-bullet {
  background: #96a6de;
  opacity: 1;
}

.blogs__sliders .swiper-pagination-bullet-active {
  background: #4e6aff;
  opacity: 1;
}

.f-all.active {
  border: 1px solid #3d65ff;
  border-radius: 8px;
  padding: 10px 45px;
  background: #fff;
  margin-right: 8px;
}

.f-all {
  background: #4e6aff;
  border-radius: 8px;
  padding: 10px 45px;
  border: none;
  margin-right: 8px;
}

.filter-button {
  border: 1px solid #3d65ff;
  border-radius: 8px;
  padding: 10px 45px;
  background: #fff;
  margin-right: 8px;
  cursor: pointer;
}

.blog-pagination ul {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.blog-pagination ul li {
  list-style: none;
}

.blog-pagination ul li span {
  text-decoration: none;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  display: flex;
  color: #191919;
  letter-spacing: 0.04em;
  font-size: 16px;
  font-weight: 400;
}

.blog-pagination ul li a {
  text-decoration: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  letter-spacing: 0.04em;
  display: flex;
  color: #081c62;
  font-size: 16px;
  font-weight: 400;
}

.blog-pagination ul li.active a {
  border: 1px solid #081c62;
  color: #fff;
  background: #081c62;
  border-radius: 4px;
  margin: 0px 3px;
  width: 32px;
  height: 32px;
}

.blog-pagination ul li:hover a {
  border: 1px solid #081c62;
  color: #fff;
  background: #081c62;
  border-radius: 4px;
  width: 32px;
  height: 32px;
}

.blog-pagination ul li:hover a svg path {
  border: 1px solid #081c62;
  fill: #fff;
  background: #081c62;
  border-radius: 4px;
  width: 32px;
  height: 32px;
}

.blogs__item {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  grid-column: 2 span;
}

.blogs__item:hover {
  box-shadow: -4px 8px 24px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.blogs__item__image {
  margin: 32px 32px 12px 32px;
  display: block;
  height: 193px;
  overflow: hidden;
  border-radius: 10px;
}

.blogs__item__image a img {
  max-width: 100%;
  display: block;
  transition: 0.3s;
  transform: scale(1);
}

.blogs-slide:hover .blogs-slide__image a img {
  transform: scale(1.1);
  transition: 0.3s;
}

.instrukcii a {
  background: #269697;
}

.nastroyki a {
  background: #8566fe;
}

.obschie-stati a {
  background: #0400b3;
}

.blogs__title-top {
  display: flex;
  position: relative;
  justify-content: center;
}

.blogs__title {
  text-align: center;
  line-height: 135%;
  font-weight: 500;
  color: #081c62;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
  margin-bottom: 24px;
}

.blogs__all-link a {
  text-decoration: none;
  color: #142974;
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  position: absolute;
  bottom: 24px;
  right: 0;
}

.blogs__sliders {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  padding-bottom: 80px;
}

.blogs-slide {
  display: flex;
  height: auto;
  flex-direction: column;
  background: #fff;
  border-radius: 12px;
  transition: 0.3s;
}

.blogs-slide:hover {
  box-shadow: -4px 8px 24px 0 rgba(0, 0, 0, 0.15);
  transition: 0.3s;
}

.blogs-slide__image {
  margin: 32px 32px 12px 32px;
  display: block;
  height: 193px;
  overflow: hidden;
  background-size: cover !important;
  border-radius: 10px;
  position: relative;
}

.blogs-slide__image a {
  position: absolute;
  width: 100%;
  height: 100%;
}

.blogs-slide__image a img {
  max-width: 100%;
  display: block;
  transition: 0.3s;
  transform: scale(1);
}

.blogs-slide:hover .blogs-slide__image a img {
  transform: scale(1.1);
  transition: 0.3s;
}

.blogs-slide-top {
  display: flex;
  flex-direction: row;
}

.blogs-slide-top {
  padding: 0px 32px;
}

.blogs-slide__year {
  color: #081c62;
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  font-family: "Geologica", sans-serif;
  margin-right: 12px;
}

.blogs-slide__time {
  color: #7896ff;
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  font-family: "Geologica", sans-serif;
  position: relative;
  margin-left: 20px;
}

.blogs-slide__time::after {
  content: "";
  position: absolute;
  background: url("../img/time-black.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  left: -20px;
  top: 0px;
}

.blogs-slide__tags a {
  font-size: 8px;
  color: #fff;
  font-weight: 600;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
  text-decoration: none;
  border-radius: 4px;
  padding: 2px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  margin-left: 12px;
}

.blogs-slide__title {
  padding: 0px 32px 32px 32px;
  margin-top: 8px;
}

.blogs-slide__title a {
  color: #081c62;
  font-size: 16px;
  font-family: "Geologica", sans-serif;
  line-height: 135%;
  font-weight: 500;
  text-decoration: none;
  display: block;
}

.blogs-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0px;
  left: auto;
  right: auto;
  margin: 0px auto 0px auto;
  z-index: 999;
}

.blogs-nav .swiper-button-prevB::after {
  font-size: 0px;
  display: none;
}

.blogs-nav .swiper-button-prevB {
  content: "";
  position: absolute;
  width: 15px;
  height: 11px;
  background: url("../img/prev.svg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0px;
  opacity: 1;
  left: 36%;
  cursor: pointer;
}

.blogs-nav .swiper-button-nextB::after {
  font-size: 0px;
  display: none;
}

.blogs-nav .swiper-button-nextB {
  content: "";
  position: absolute;
  width: 15px;
  height: 11px;
  background: url("../img/next.svg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0px;
  opacity: 1;
  left: 63%;
  cursor: pointer;
}

.blogs-nav .swiper-horizontal > .swiper-pagination-bullets,
.blogs-nav .swiper-pagination-bullets.swiper-pagination-horizontal,
.blogs-nav .swiper-pagination-custom,
.blogs-nav .swiper-pagination-fraction {
  bottom: -40px;
  text-align: center;
  margin-bottom: 5px;
  margin-right: 5px;
  margin-left: 5px;
}

.swiper-pagination {
  text-align: center;
}

.preim {
  background: #eff2ff;
  padding-top: 42px;
  padding-bottom: 18px;
  position: relative;
  z-index: 2;
}

.preim__list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 15px;
}

.preim__list > div {
  justify-content: center;
}

.preim__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: auto;
}

.preim__item-icon {
  margin-bottom: 14px;
  height: 52px;
}

.preim__item-icon img {
  max-width: 100%;
}

.preim__item-text {
  text-align: center;
  color: #081c62;
  font-size: 16px;
  white-space: nowrap;
  font-family: "Wix Madefor Text", sans-serif;
}

.preim__item:not(:nth-child(5)) {
  margin: 0 -13px;
}

.pinfo {
  background: #eff2ff;
  padding-top: 42px;
  padding-bottom: 62px;
}

.pinfo__container {
  display: flex;
  flex-direction: row;
  margin: 0 auto;
  max-width: 780px;
}

.pinfo__item {
  display: flex;
  flex-direction: column;
}

.pinfo__item-img img {
  max-width: 100%;
  border-radius: 12px;
  display: block;
}

.pinfo__item-text {
  color: #081c62;
  font-size: 16px;
  font-weight: 400;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
  margin-top: 24px;
}

.plit {
  background: #eff2ff;
  padding-top: 42px;
  padding-bottom: 62px;
}

.plit__container {
  display: flex;
  flex-direction: row;
}

.plit__left {
  display: flex;
  flex-direction: column;
}

.plit__big {
  background: #050366;
  padding: 50px 130px 50px 100px;
  border-radius: 12px;
  margin-right: 20px;
  position: relative;
  overflow: hidden;
  display: block;
}

.plit__big::after {
  content: "";
  position: absolute;
  background: url("../img/b-a.svg");
  background-repeat: no-repeat;
  background-size: cover;
  left: 0;
  bottom: 0;
  width: 500px;
  height: 500px;
}

.plit__big::before {
  content: "";
  position: absolute;
  background: url("../img/b-b.svg");
  background-repeat: no-repeat;
  background-size: cover;
  right: 0;
  top: 0;
  width: 300px;
  height: 300px;
}

.plit__big-title {
  color: #fff;
  font-size: 48px;
  line-height: 135%;
  font-family: "Geologica", sans-serif;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.plit__big-text {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 135%;
  position: relative;
  z-index: 1;
}

.plit__item-index {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  width: 314px;
  height: auto;
  background: #4e6aff;
  margin-bottom: 20px;
  padding: 24px 32px;
}

.plit__item-index:last-child {
  background: #8566fe;
  margin-bottom: 0px;
}

.plit__item {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  width: 314px;
  height: 160px;
  background: #4e6aff;
  margin-bottom: 20px;
  padding: 34px 34px;
}

.plit__item:last-child {
  margin-bottom: 0px;
}

.plit__item:first-child {
  background: #8566fe;
}

.plit__item-num {
  font-size: 18px;
  font-weight: 500;
  line-height: 135%;
  color: #fff;
  font-family: "Geologica", sans-serif;
}

.plit__item-text {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 135%;
}

.plit__item-text p:first-child {
  margin-bottom: 18px;
  margin-top: 4px;
}

.plit__item-text p:last-child {
  margin-bottom: 0px;
}

.plit__item-text ul {
  display: flex;
  flex-wrap: wrap;
  padding-left: 0;
  justify-content: space-between;
  gap: 2px;
}

.plit__item-text ul li {
  list-style: none;
  width: 45%;
  font-size: 12px;
  position: relative;
  padding-left: 10px;
}

.plit__item-text ul li:nth-child(2n + 0) {
  left: 20px;
}

.plit__item-text ul li:after {
  content: "";
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  left: -5px;
  top: 8px;
}

.dark {
  background: url("../img/bg_ref.png");
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  display: block;
  background-position: right;
  padding: 62px 0px;
}

.dark__title {
  line-height: 135%;
  font-weight: 500;
  color: #ffffff;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
  padding-left: 100px;
  padding-right: 100px;
  position: relative;
  z-index: 2;
}

.dark__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 0px 100px;
  position: relative;
  z-index: 2;
  margin-top: 10px;
}

.dark__item {
  width: 48%;
}

.dark__item p {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 135%;
  position: relative;
}

.dark__item .ic {
  position: relative;
}

.dark__item .ic::after {
  content: "";
  position: absolute;
  background: url("../img/ic.svg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 20px;
  height: 20px;
  top: 0;
  left: -25px;
}

.part {
  position: relative;
}

.part::after {
  content: "";
  position: absolute;
  background: url("../img/partner_bg.webp");
  width: 100%;
  height: 700px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  top: -240px;
  left: 0;
  right: 0;
  z-index: 1;
}

.proxi {
  position: relative;
}

.proxi::after {
  content: "";
  position: absolute;
  background: url("../img/p-after.png");
  width: 100%;
  background-position: center;
  height: calc(100% + 460px);
  background-repeat: no-repeat;
  top: -260px;
  left: 0;
  z-index: 1;
  background-size: cover;
}

.section__wtitle {
  text-align: center;
  line-height: 135%;
  font-weight: 500;
  color: #081c62;
  font-size: 48px;
  font-family: "Geologica", sans-serif;
  margin-bottom: 35px;
}

.open-accordeon {
  border-radius: 12px;
  background: #e9eeff;
  transition: 0.3s;
  transition: 0.5s ease-in-out;
  box-shadow: 8px 8px 20px 0px rgba(0, 0, 0, 0.05),
    -8px -8px 20px 0px rgba(0, 0, 0, 0.05);
}

.block__content-jobs {
  margin-bottom: 15px;
  padding: 5px 24px 10px 24px;
}

.blue__block {
  height: 98px;
  background: #4e6aff;
  border-radius: 12px;
  padding: 40px 100px;
  display: flex;
  flex-direction: column;
  margin-bottom: 62px;
}

.blue__block-title {
  font-size: 24px;
  font-weight: 500;
  color: #fff;
  line-height: 135%;
  font-family: "Geologica", sans-serif;
}

.blue__block-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 16px;
}

.blue__block-item {
  width: 20%;
  color: #fff;
  font-size: 16px;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
}

.blue__block-item a {
  color: #fff;
  font-size: 16px;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
}

.blue__block-item p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 135%;
  font-family: "Wix Madefor Text", sans-serif;
}

.blue__block-item:first-child {
  width: 30%;
}

.profile {
  background: #eff2ff;
  padding: 40px 0px;
}

.proxi__tab .proxi__title {
  color: #081c62;
  box-sizing: border-box;
  font-size: 32px;
  font-weight: 500;
  line-height: 135%;
  font-family: "Geologica", sans-serif;
  text-align: left;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 24px;
}

.proxi__tab .proxi__title svg path {
  fill: #081c62;
}

.proxi__tab .proxi__title svg {
  transform: rotate(180deg);
  transition: 0.3s all;
}

.proxi__tab .proxi__title.proxi__titleActive svg {
  transform: rotate(0deg);
}

.button_pr_p {
  border: 1px solid #3d65ff;
  border-radius: 12px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  justify-content: center;
  transition: 0.3s all;
  width: 100%;
  transition: 0.2s all;
}

.button_pr_p:hover {
  background: #3d65ff;
  color: #fff;
}

.select2-container {
  min-width: 178px;
}

.change_type_select .select2-container {
  min-width: 160px;
}

.table-proxi th:nth-of-type(9) {
  display: none;
}

.select-dropdown__list-item:nth-of-type(1):hover {
  background: #eff2ff;
  padding: 10px 24px;
}

.select-dropdown__list-item:nth-of-type(3):hover {
  background: #eff2ff;
  padding: 10px 24px;
}

.select-dropdown__list-item:hover {
  background: #eff2ff;
  padding: 10px 24px;
}

.form__group-switch {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: center;
  margin-top: 15px;
  background: #fff;
}

.form__group-switch .switch-btn {
  width: 34px;
  margin-right: 20px;
}

.form__group-switch p {
  width: 80%;
  font-size: 16px;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  margin: 0;
}

.switch-btn {
  display: inline-block;
  width: 34px;

  height: 16px;

  background: #e9eeff;

  z-index: 0;
  margin: 0;
  padding: 0;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  position: relative;
  transition-duration: 300ms;
}

.switch-btn::after {
  content: "";
  width: 16px;
  height: 16px;
  border-radius: 100px;
  background: #b8c8ff;

  top: 0px;

  left: 3px;

  transition-duration: 300ms;

  position: absolute;
  z-index: 1;
}

.switch-on {
  background: #4e6aff;
  border-radius: 100px;
}

.switch-on::after {
  left: 17px;
}

.notification__block {
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  background: #fff;
  border-radius: 12px;
  padding: 50px 50px;
  margin-top: 20px;
}

.notification-top {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.block__top-title {
  color: #081c62;
  font-size: 32px;
  font-weight: 500;
  line-height: 135%;
  font-family: "Geologica", sans-serif;
}

.btn-setting {
  border: none;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}

.btn-setting:hover svg path {
  fill: #081c62;
}

.top__profile {
  display: flex;
  flex-direction: row;
}

.referal-info__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-top: 20px;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  background: #fff;
  border-radius: 12px;
  padding: 24px 24px;
}

.referals__drop-dates {
  position: absolute;
  padding: 20px 20px;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  left: 0;
  top: 113%;
  z-index: 2;
  background: #fff;
  width: 316px;
  height: 446px;
  border-radius: 12px;
  display: none;
}

.referals__drop-top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.referals__drop-group {
  width: 48%;
  display: flex;
  flex-direction: column;
}

.referals__drop-group label {
  color: #4e6aff;
  font-size: 12px;
  font: 600px;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 135%;
  margin-bottom: 5px;
}

.referals__drop-group input {
  border: 1px solid #4e6aff;
  border-radius: 6px;
  width: 122px;
  padding: 8px 16px;
  box-shadow: 0 0 0 3px #e9edff, 0 2px 2px -1px rgba(0, 0, 0, 0.12);
  background: #fff;
}

.anychart-credits {
  display: none;
}

.tabs-graph {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: #e9edff;
  padding: 4px 4px;
  border-radius: 4px;
  gap: 4px;
}

.tabs-graph li {
  list-style: none;
}

.tabs-graph li a {
  border: none;
  border-radius: 4px;
  width: 110px;
  height: 28px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
  color: #081c62;
  font-size: 12px;
  text-align: center;
  font-family: "Wix Madefor Text", sans-serif;
}

.tabs-graph .active a {
  background: #fff;
  cursor: pointer;
  text-decoration: none;
  color: #081c62;
}

.copied {
  width: 100px;
  opacity: 0;
  position: fixed;
  bottom: 20px;
  left: 0;
  right: 0;
  margin: auto;
  color: #000;
  padding: 15px 15px;
  background-color: #fff;
  border-radius: 5px;
  transition: 0.4s opacity;
}

.button_pr_p.button_blue {
  background: #07133e;
  border: 1px solid;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s all;
}

.button_pr_p.button_blue:hover {
  background: #1c2955;
}

.button_pr_p.button_red {
  background: #e14d4d;
  border: 1px solid;
  color: #fff;
  padding: 10px 20px;
  transition: 0.3s all;
}

.button_pr_p.button_red:hover {
  background: #c53b3b;
}

.more_time_value {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
}

.additional_block {
  height: auto;
  overflow: hidden;
}

.additional_container {
  display: flex;
  width: 100%;
  gap: 10px;
  padding-top: 10px;
}

.show_more {
  font-size: 13px;
  padding: 10px 0 3px 0;
  border-bottom: 1px dashed;
  display: table;
  cursor: pointer;
}

.cancel__transaction-price {
  color: #ff8f8f;
}

.table {
  width: 100%;
  border-spacing: 0;
  margin-top: -12px;
  text-align: left;
}

.table th {
  font-weight: 500;
  font-size: 14px;
  font-family: "Wix Madefor Text", sans-serif;
  color: #fff;
  line-height: 135%;
  padding: 16px 20px;
}

.table th:nth-of-type(1) {
  width: 80px;
}

.table th:nth-of-type(2) {
  width: 100px;
}

.table th:nth-of-type(3) {
  width: 300px;
}

.table th:nth-of-type(4) {
  width: 15%;
}

.table th:nth-of-type(5) {
  width: 13%;
}

.table td:nth-of-type(1) {
  width: 80px;
}

.table td:nth-of-type(2) {
  width: 100px;
}

.table td:nth-of-type(3) {
  width: 300px;
}

.table td:nth-of-type(4) {
  width: 100px;
}

.table td:nth-of-type(5) {
  width: 100px;
}

.table thead tr {
  background: #a6afd9;
  font-size: 14px;
  line-height: 18px;
  color: #fff;
  border-radius: 8px;
  display: inline-block;
  width: 880px;
}

.table tbody tr {
  height: 75px;
}

.table td p {
  margin: 0;
  margin-top: 8px;
  color: #96a6de;
  line-height: 135%;
  font-size: 12px;
  font-weight: 600;
  font-family: "Wix Madefor Text", sans-serif;
}

.table td {
  padding: 20px 20px 20px 20px;
  font-weight: 500;
  line-height: 135%;
  font-size: 14px;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
}

.table-proxi td {
  padding: 16px 10px 16px 10px;
  font-weight: 500;
  line-height: 135%;
  font-size: 14px;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
}

.table-proxi td p {
  margin: 0;
  color: #96a6de;
  line-height: 135%;
  font-size: 12px;
  font-weight: 600;
  font-family: "Wix Madefor Text", sans-serif;
}

.table-proxi td a {
  text-decoration: underline;
  text-decoration-skip-ink: none;
  color: #b8c8ff;
  line-height: 135%;
  font-size: 14px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
}

.table-proxi td a:hover {
  color: #081c62;
}

.table-proxi thead tr {
  background: #4e6aff;
}

.table-proxi th {
  padding: 16px 10px 16px 10px;
}

.table-proxi th:nth-of-type(1) {
  width: 20px;
}

.table-proxi th:nth-of-type(2) {
  width: 55px;
}

.table-proxi th:nth-of-type(3) {
  width: 120px;
}

.table-proxi th:nth-of-type(4) {
  width: 140px;
}

.table-proxi th:nth-of-type(5) {
  width: 90px;
}

.table-proxi th:nth-of-type(6) {
  width: 90px;
}

.table-proxi th:nth-of-type(7) {
  width: 70px;
}

.table-proxi th:nth-of-type(8) {
  width: 160px;
}

.table-proxi td:nth-of-type(1) {
  width: 20px;
}

.table-proxi td:nth-of-type(2) {
  width: 55px;
}

.table-proxi td:nth-of-type(3) {
  width: 120px;
  display: flex;
  align-items: center;
}

.table-proxi td:nth-of-type(3) img {
  margin-right: 5px;
}

.table-proxi td:nth-of-type(4) {
  width: 140px;
}

.table-proxi td:nth-of-type(5) {
  width: 90px;
}

.table-proxi td:nth-of-type(6) {
  width: 90px;
}

.table-proxi td:nth-of-type(7) {
  width: 70px;
}

.table-proxi td:nth-of-type(8) {
  width: 160px;
}

.table tbody tr:nth-child(odd) {
  background: #fff;
  border-radius: 8px;
  display: inline-block;
  width: 880px;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
}

.table tbody tr:nth-child(even) {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  display: inline-block;
  width: 880px;
  margin-bottom: 4px;
  display: flex;
  align-items: flex-start;
}

.table-proxi tbody tr.hidden {
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  background: #eff2ff;
  color: #b8c8ff;
}

.table-proxi tbody tr.yellow {
  background: #fff7ea;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
}

.table-proxi tbody tr.checkeds {
  background: #edfff7;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
}

.table-proxi tbody tr.hidden td {
  color: #b8c8ff;
}

.table .cancel__transaction-price {
  color: #ff8f8f;
}

.table__wrapper {
  padding-top: 40px;
}

.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 15px;
  line-height: 25px;
  text-transform: uppercase;
  width: 170px;
  text-align: center;
  padding: 10px;
  border-radius: 3px;
  transition: background 0.3s ease;
  text-decoration: none;
}

.btn:hover {
  color: #fff;
}

.btn__active {
  color: #4ed99c;
  border: 2px solid #4ed99c;
}

.btn__active:hover {
  background: #4ed99c;
}

.btn__pledged {
  color: #f14044;
  border: 2px solid #f14044;
}

.btn__pledged:hover {
  background: #f14044;
}

.select2-container--default .flagff {
  width: 30px;
  height: 20px;
  flex-shrink: 0;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__rendered {
  color: #081c62;
  line-height: 28px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__placeholder {
  color: #081c62;
}

.form__proxi .select2-container .select2-selection--single,
.form__proxi .select-dropdown__button,
.form__proxi input {
  height: 40px;
  border-radius: 8px;
  display: flex;
  font-size: 16px;
  align-items: center;
  border-color: transparent;
  font-weight: 500;
  padding: 0 12px;
  justify-content: flex-start;
  outline: none !important;
  box-shadow: none !important;
  font-family: "Wix Madefor Text", sans-serif;
  background: #e9eeff;
}

.select2-search--dropdown {
  padding: 10px 12px 5px 12px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  padding-right: 0;
}

.select2-container--default .select2-results__option {
  background: #fff;
  padding: 9px 12px;
  color: #142974 !important;
}

.select2-dropdown {
  border: 0;
}

#select2-category_ticket_1-results {
  background-color: transparent;
}

#select2-country-select-results,
.select2-results__options {
  overflow-x: hidden !important;
  border-radius: 0 0 8px 8px;
  padding-bottom: 10px;
  box-shadow: none;
  padding-top: 10px;
  background: #fff !important;
}

.select2-results__options {
  border-radius: 8px;
  box-shadow: 0px 3px 9.2px 0px rgba(182, 199, 255, 0.61);
  margin-top: 10px;
}

.select2-dropdown {
  box-shadow: 0px 3px 9.2px 0px rgba(182, 199, 255, 0.61);
}

#select2-normal-select-day-results {
  margin-top: 0;
}

#select2-country-select-results,
#select2-normal-select-protokol-results {
  padding-top: 2px;
  margin-top: 0;
}

#select2-normal-select-protokol-results {
  padding-top: 10px;
}

.noUi-handle.noUi-handle-lower {
  background: #fff;
  width: 20px;
  height: 20px;
  top: -7px;
  z-index: 9;
  cursor: pointer;
  border: 4px solid #2749ff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(39, 73, 255, 0.45);
}

.noUi-touch-area:after {
  content: attr(data-after);
  position: absolute;
  bottom: -22px;
  color: #fff;
  font-size: 12px;
  width: 72px;
  left: -28px;
  text-align: center;
}

.tiket-finance {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0px 16px;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500px;
  line-height: 135%;
  color: #081c62;
  position: relative;
  text-decoration: none;
  font-family: "Wix Madefor Text", sans-serif;
}

.tiket-close {
  background: #e9eeff;
  border: 1px solid #4e6aff;
  border-radius: 8px;
  padding: 0px 15px;
  width: auto;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500px;
  line-height: 135%;
  color: #081c62;
  position: relative;
  font-family: "Wix Madefor Text", sans-serif;
}

.form__group-file {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.input-file {
  position: relative;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  max-width: 100%;
  width: 100%;
}

.input-file .btn {
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: capitalize;
  vertical-align: top;
  color: #081c62;
  font-size: 16px;
  border-radius: 500px;
  padding: 0px 10px;
  width: auto;
  height: 44px;
  margin-bottom: 0px;
}

.form__group-file small {
  color: #868686;
  font-size: 14px;
}

.input-file .material-icons {
  float: left;
  font-size: 16px;
  line-height: inherit;
  margin-right: 4px;
}

.input-file ins {
  white-space: nowrap;
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 12px;
}

.input-file:after {
  content: "";
  display: block;
  clear: both;
}

.input-file input {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  top: -100px;
  z-index: -1;
}

.form__check-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.form__check-row .form__checks {
  width: 60%;
  margin-top: 0px;
  margin-bottom: 0px;
}

.form__checks {
  display: block;
  position: relative;
  padding-left: 25px;
  margin-top: 15px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.form__checks input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.form__checks .checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  width: 15px;
  height: 15px;
  border-radius: 3px;
  border: 1px solid #a4bab7;
  background: #fefefe;
}

.form__checks:hover input ~ .checkmark {
  background-color: #b8c8ff;
}

.form__checks input:checked ~ .checkmark {
  background-color: #b8c8ff;
}

.form__checks .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.form__checks input:checked ~ .checkmark:after {
  display: block;
}

.form__checks .checkmark:after {
  left: 4px;
  top: 2px;
  width: 4px;
  height: 6px;
  border: solid white;
  border-width: 0 1px 1px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.table-proxi .form__checks {
  margin-top: 0px;
}

.tablesorter-header-inner .form__checks {
  margin-top: -10px;
  margin-bottom: 0px;
}

.form__checks p {
  display: block;
  width: 86%;
  color: #081c62;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;

  margin-left: 0px;
  font-family: "Wix Madefor Text", sans-serif;
  margin: 0;
}

.form__checks p a {
  color: #081c62;
}

.select-dropdown {
  position: relative;
  display: inline-block;
  max-width: 100%;
  margin: 0;
  width: auto;
}

.select-dropdown__button:hover {
  border: 1px solid #c5d2ff;
  color: var(--seryy);
}

.select-dropdown__button {
  padding: 5px 35px 5px 15px;
  background-color: #fff;
  color: #081c62;
  font-size: 14px;
  border: 1px solid #c5d2ff;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  height: 40px;
  text-align: left;
  margin-left: 0px;
  position: relative;
}

.select-dropdown__button::after {
  content: "";
  background: url(../img/select.svg) 0 0 / contain no-repeat;
  width: 15px;
  height: 8px;
  position: absolute;
  right: 16px;
  top: 17px;
  z-index: 1;
}

.active .select-dropdown__button::after {
  transform: rotate(-180deg);
  top: 15px;
}

.select-dropdown__list-item {
  display: block;
  list-style-type: none;
  padding: 10px 24px;
  background: #fff;
  border-top: 0px solid #e6e6e6;
  font-size: 14px;
  line-height: 1.4;
  cursor: pointer;
  color: #142974;
  text-align: left;
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

.select-dropdown__list-item:nth-of-type(1) {
  background: var(--svetlo-seryy);
}

.select-dropdown__list-item:nth-of-type(3) {
  background: var(--svetlo-zelenyy);
}

.select-dropdown__list.active {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1);
}

.select-dropdown__list {
  position: absolute;
  display: block;
  left: 0;
  max-height: 300px;
  overflow: auto;
  margin: 0;
  top: 105%;
  padding: 0;
  border: 1px solid #c5d2ff;
  color: #c5d2ff;
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  background: #fff;
  border-top: 0 solid transparent;
  list-style-type: none;
  opacity: 0;
  border-radius: 12px;
  padding: 24px 0px;
  pointer-events: none;
  -webkit-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: scale(1, 0);
  -ms-transform: scale(1, 0);
  transform: scale(1, 0);
  -webkit-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 2;
  width: 99%;
}

.news__block {
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  background: #fff;
  border-radius: 12px;
  padding: 40px 100px;
}

.news__block-title {
  color: #081c62;
  font-size: 32px;
  line-height: 135%;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
  margin-bottom: 24px;
}

.news__slider {
  box-shadow: 0 3px 9px 0 rgba(182, 199, 255, 0.61);
  background: #fff;
  border-radius: 12px;
  padding: 40px 100px;
  margin-bottom: 20px;
  position: relative;
}

.news__slider .swiper-pagination-bullet {
  background: #cccbff;
  opacity: 1;
}

.news__slider .swiper-pagination-bullet-active {
  background: #4e6aff;
  opacity: 1;
}

.news__slider .swiper-horizontal > .swiper-pagination-bullets,
.news__slider .swiper-pagination-bullets.swiper-pagination-horizontal,
.news__slider .swiper-pagination-custom,
.news__slider .swiper-pagination-fraction {
  bottom: -20px;
  text-align: center;
  margin-bottom: 35px;
  margin-right: 5px;
  margin-left: 5px;
  z-index: 2;
}

.review__nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 120px;
  position: absolute;
  top: 0px;
  right: 30px;
  margin: 0px auto 0px auto;
  z-index: 999;
}

.news__slider .swiper-button-prev::after {
  font-size: 0px;
  display: none;
}

.news__slider .swiper-button-prev {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("../img/news-p.svg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0px;
  opacity: 1;
  left: 4%;
  top: 45%;
  z-index: 2;
}

.news__slider .swiper-button-prev:hover {
  width: 40px;
  height: 40px;
  background: url("../img/news-ph.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.news__slider .swiper-button-next::after {
  font-size: 0px;
  display: none;
}

.news__slider .swiper-button-next {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  background: url("../img/news-n.svg");
  background-repeat: no-repeat;
  background-size: cover;
  font-size: 0px;
  opacity: 1;
  top: 45%;
  right: 4%;
  z-index: 2;
}

.news__slider .swiper-button-next:hover {
  width: 40px;
  height: 40px;
  background: url("../img/news-nh.svg");
  background-repeat: no-repeat;
  background-size: cover;
}

.news__sliders {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.btn-center {
  text-align: center;
}

.show-more-btn {
  background: #4e6aff;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  padding: 11px 37px;
  color: #fff;
  font-size: 16px;
  transition: 0.3s;
  margin: 30px auto 0px auto;
  text-align: center;
}

.news__list {
  display: flex;
  flex-direction: column;
}

.news__item {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}

.news__item:nth-child(n + 3) {
  display: none;
}

.news__item:last-child {
  margin-bottom: 0px;
}

.news__item-date {
  font-size: 12px;
  font-weight: 500;
  line-height: 135%;
  color: #b8c8ff;
  font-family: "Wix Madefor Text", sans-serif;
}

.news__item-title a {
  color: #081c62;
  font-size: 18px;
  line-height: 135%;
  font-weight: 500;
  font-family: "Geologica", sans-serif;
  margin-bottom: 24px;
  text-decoration: none;
  margin-top: 8px;
  margin-bottom: 12px;
  display: block;
}

.news__item-descr {
  font-size: 16px;
  font-weight: 500;
  line-height: 135%;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  margin-bottom: 32px;
}

.news__item-image img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
  max-height: 260px;
}

.footer {
  background: #130b44;
  padding-top: 54px;
  padding-bottom: 48px;
  position: relative;
  z-index: 2;
}

.footer__container {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.footer__logo {
  display: flex;
  flex-direction: row;
  margin-right: 54px;
}

.footer__logo a img {
  max-width: 100%;
  margin-right: 20px;
}

.footer__logo p {
  color: #fff;
  font-weight: 500;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  width: 200px;
  margin: 0;
}

.footer__menu {
  margin-right: 26px;
}

.footer__menu ul {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding-left: 0;
}

.footer__menu ul li {
  list-style: none;
  margin-bottom: 8px;
}

.footer__menu ul li a {
  color: #fff;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  position: relative;
}

.footer__menu ul li a:after {
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #fff;
  content: "";
  transition: width 0.3s ease-out;
}

.footer__menu ul li a:hover:after {
  width: 100%;
}

.footer__social {
  display: flex;
  flex-direction: column;
  margin-left: 108px;
  margin-right: 60px;
}

.footer__social span {
  font-size: 16px;
  color: #fff;
  font-weight: 400;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 135%;
}

.footer__social ul {
  padding-left: 0px;
  display: flex;
  flex-direction: row;
}

.footer__social ul li {
  list-style: none;
  margin-right: 12px;
}

.footer__social ul li:hover a svg {
  fill: white;
}

.footer__social ul li:hover a svg path {
  fill: #130b44;
}

.footer__bottom {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-top: 100px;
}

.footer__bottom-item p {
  color: #9cb8ff;
  font-size: 12px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
}

.footer__bottom-item p {
  margin-right: 48px;
}

.footer__bottom-item a {
  color: #9cb8ff;
  font-size: 12px;
  font-weight: 500;
  font-family: "Wix Madefor Text", sans-serif;
  text-decoration: none;
  margin-right: 145px;
  position: relative;
}

.footer__bottom-item a:after {
  display: block;
  position: absolute;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #9cb8ff;
  content: "";
  transition: width 0.3s ease-out;
}

.footer__bottom-item a:hover:after {
  width: 100%;
}

.footer__bottom-item:last-child a {
  margin-right: 0px;
}

.popup-modal .popup_forms .form__bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 12px;
}

.popup-modal .popup_forms .form__bottom .btn-reg {
  border-radius: 8px;
  background: #4e6aff;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 130%;
  width: 100%;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
}

.popup-modal__mail {
  max-width: 550px;
  width: 550px;
  border-radius: 8px;
  height: auto;
  background: #e9eeff;
}

.popup-modal__mail .fancybox-button {
  background: #d5dfff;
  border-radius: 100px;
  width: 28px;
  height: 28px;
  padding: 1px;
  top: 10px;
  right: 10px;
}

.popup-modal__mail .popup__title {
  text-align: left;
  color: #081c62;
  font-size: 18px;
  line-height: 135%;
  font-weight: 500;
  width: 100%;
  font-family: "Geologica", sans-serif;
  margin-bottom: 20px;
}

.popup-modal__mail .popup__title span {
  color: #8566fe;
}

.popup-modal__mail p {
  color: #081c62;
  font-size: 12px;
}

.popup-modal__mail .popup__text {
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  border-bottom: 0px solid rgba(0, 0, 0, 0.15);
}

.popup-modal__mail .fancybox-button svg path {
  fill: #fff;
}

.popup-modal__mail .fancybox-button:hover .popup-modal__mail .fancybox-button {
  top: 10px;
  right: 10px;
  padding: 1px;
}

.popup-modal__mail .fancybox-button:hover {
  background: #081c62;
  top: 10px;
  right: 10px;
  padding: 1px;
}

.popup-modal__del {
  max-width: 470px;
  width: 470px;
  border-radius: 8px;
  height: auto;
  background: #e9eeff;
}

.popup-modal__del .fancybox-button {
  background: #d5dfff;
  border-radius: 100px;
  width: 28px;
  height: 28px;
}

.popup-modal__del .fancybox-button:hover {
  background: #081c62;
  padding: 1px;
}

.popup-modal__del .popup__title {
  text-align: center;
  color: #081c62;
  font-size: 18px;
  line-height: 135%;
  font-weight: 500;
  width: 100%;
  font-family: "Geologica", sans-serif;
  margin-bottom: 20px;
}

.popup-modal__del .popup__title span {
  color: #8566fe;
}

.popup-modal__del p {
  color: #081c62;
  font-size: 12px;
  text-align: center;
}

.popup-modal__del .popup__text {
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  border-bottom: 0px solid rgba(0, 0, 0, 0.15);
}

.popup-modal__del .fancybox-button svg path {
  fill: #fff;
}

.popup-modal__del .fancybox-button {
  top: 10px;
  right: 10px;
  padding: 1px;
}

.popup-modal__del .btn-exit {
  border-radius: 8px;
  background: #4e6aff;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 130%;
  width: 180px;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
}

.popup-modal__del .modal__del-buttons {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 18px;
}

.popup-modal__del .modal__del-buttons .btn-prod__cancel {
  border-radius: 8px;
  background: transparent;
  border: 1px solid #081c62;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #081c62;
  font-weight: 600;
  line-height: 130%;
  width: 180px;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
}

.popup-modal__del .modal__del-buttons .btn-prod__cancel:hover {
  border: 1px solid #081c62;
  background: #081c62;
  color: #fff;
}

.popup-modal__del .modal__del-buttons .btn-prof__del {
  border-radius: 8px;
  background: #ff8f8f;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 130%;
  width: 180px;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
}

.popup-modal__del .modal__del-buttons .btn-prof__del:hover {
  background: #ff2950;
}

.popup-modal__exit {
  max-width: 490px;
  width: 490px;
  border-radius: 8px;
  height: auto;
  background: #e9eeff;
}

.popup-modal__exit .fancybox-button {
  background: #d5dfff;
  border-radius: 100px;
  width: 28px;
  height: 28px;
}

.popup-modal__exit .popup__title {
  text-align: left;
  color: #081c62;
  font-size: 18px;
  line-height: 135%;
  font-weight: 500;
  width: 100%;
  font-family: "Geologica", sans-serif;
  margin-bottom: 20px;
}

.popup-modal__exit .popup__title span {
  color: #8566fe;
}

.popup-modal__exit p {
  color: #081c62;
  font-size: 12px;
}

.popup-modal__exit .popup__text {
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  border-bottom: 0px solid rgba(0, 0, 0, 0.15);
}

.popup-modal__exit .fancybox-button svg path {
  fill: #fff;
}

.popup-modal__exit .fancybox-button {
  top: 10px;
  right: 10px;
  padding: 1px;
}

.popup-modal__exit .btn-exit {
  border-radius: 8px;
  background: #4e6aff;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 130%;
  width: 180px;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  outline: none;
}

.popup-modal {
  max-width: 420px;
  width: 380px;
  border-radius: 8px;
  height: auto;
  background: #e9eeff;
}

.popup-modal .fancybox-button {
  background: #d5dfff;
  border-radius: 100px;
  width: 28px;
  height: 28px;
}

.popup-modal .fancybox-button:hover {
  background: #081c62;
}

.popup-modal .popup__title {
  text-align: center;
  color: #081c62;
  font-size: 24px;
  line-height: 135%;
  font-weight: 500;
  width: 100%;
  font-family: "Geologica", sans-serif;
  margin-bottom: 20px;
}

.popup-modal .popup__title span {
  color: #008cc5;
}

.no-label-click {
  position: relative;
  z-index: 1;
}

.popup-modal .popup__text {
  letter-spacing: -0.02em;
  color: rgba(0, 0, 0, 0.5);
  font-size: 16px;
  border-bottom: 0px solid rgba(0, 0, 0, 0.15);
}

.popup-modal .fancybox-button svg path {
  fill: #fff;
}

.popup-modal .fancybox-button {
  top: 10px;
  right: 10px;
  padding: 1px;
}

.popup-modal .popup_forms {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  height: auto !important;
}

.popup-modal .popup_forms .form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 16px;
  width: 100%;
}

.popup-modal .popup_forms .form__group input {
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 135%;
  border-radius: 8px;
  border: 1px solid #c5d2ff;
  background: #ffffff;
  padding: 0px 12px;
  width: 100%;
  height: 40px;
  outline: none;
}

.popup-modal .popup_forms .form__group input::placeholder {
  color: #b8c8ff;
}

.popup-modal .popup_forms .form__group input:hover {
  border: 1px solid #4e6aff;
}

.popup-modal .popup_forms .form__group input:focus {
  border: 1px solid #4e6aff;
}

.popup-modal .popup_forms .form__bottom .btn-auth {
  border-radius: 8px;
  border: 1px solid #081c62;
  background: transparent;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #081c62;
  font-weight: 600;
  line-height: 130%;
  width: 100%;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: none;
}

.popup-modal .popup_forms .form__bottom .btn-auth:hover {
  border-radius: 8px;
  border: 1px solid #081c62;
  background: #081c62;
  color: #fff;
}

.popup-modal .popup_forms .btn-key {
  border-radius: 8px;
  background: #c9d6ff;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #a2b7ff;
  font-weight: 600;
  line-height: 130%;
  width: 100%;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: none;
}

.popup-modal .popup_forms .btn-vk {
  border-radius: 8px;
  background: #140b48;
  display: flex;
  height: 40px;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 130%;
  width: 100%;
  border: none;
  margin-bottom: 10px;
  cursor: pointer;
  text-decoration: none;
}

.popup-modal .popup_forms .btn-vk svg {
  margin-right: 10px;
}

.popup-modal .popup_forms .politik {
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  display: inline-block;
  width: 100%;
}

.popup-modal .popup_forms .btn-forget {
  text-decoration: underline;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
}

.popup-modal .popup_forms .politik a {
  text-decoration: underline;
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
}

.form__span {
  position: relative;
}

.form__span .span {
  color: #081c62;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 135%;
  display: block;
  width: max-content;
  text-align: center;
  position: relative;
  background: #e9eeff;
  padding: 12px 30px;
  z-index: 9;
  margin: 0px auto 10px auto;
}

.form__span::after {
  content: "";
  position: absolute;
  width: 290px;
  height: 1px;
  background: #d5dfff;
  top: 22px;
  left: 0;
  z-index: 2;
}

.window__header {
  position: absolute;
  top: 100%;
  left: 198px;
  z-index: 999;
  display: none;
}

.openWindow {
  display: block;
}

.window__container {
  border-radius: 12px;
  background: #1d1971;
  width: 900px;
  display: block;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding: 3px 9px;
}

.window__container .tabs-nav {
  display: flex;
  flex-direction: column;
  width: 172px;
  overflow: auto;
  padding-left: 0;
  margin: 0;
}

.window__container .tabs-nav li {
  list-style: none;
  margin: 6px 0px;
}

.window__container .tabs-nav li > div,
.window__container .tabs-nav li > a.tabs-nav__residential-link {
  border-radius: 12px;
  background: #e9eeff;
  font-family: "Wix Madefor Text", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 10px 12px;
  text-decoration: none;
  cursor: pointer;
}

.loader {
  position: absolute;
  z-index: 1;
  top: 50%;
  margin-top: -16px;
  right: 37%;
  width: 35px;
  height: 35px;
  border: 3px solid #fff;
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}

.window__container .tabs-nav li > div:hover,
.window__container .tabs-nav li > a.tabs-nav__residential-link:hover {
  background: #4865ff;
}

.window__container .tabs-nav li.active > div {
  list-style: none;
  background: #4e6aff;
}

.window__container .tabs-nav li > div span,
.window__container .tabs-nav li > a.tabs-nav__residential-link span {
  font-size: 12px;
  color: #4e6aff;
  font-family: "Wix Madefor Text", sans-serif;
  font-weight: 500;
  line-height: 135%;
}

.window__container .tabs-nav li.active > div span,
.window__container .tabs-nav li > div:hover span,
.window__container .tabs-nav li > a.tabs-nav__residential-link:hover span {
  color: #fff;
}

.window__container .tabs-nav li > div p,
.window__container .tabs-nav li > a.tabs-nav__residential-link p {
  font-size: 12px;
  color: #081c62;
  line-height: 135%;
  margin: 0;
  margin-top: 3px;
}

.window__container .tabs-nav li.active > div p,
.window__container .tabs-nav li > div:hover p,
.window__container .tabs-nav li > a.tabs-nav__residential-link:hover p {
  color: #fff;
}

.window__container .tabs-nav {
  max-height: none;
  overflow: visible;
}

.window__container .tabs-content {
  width: 80%;
  padding: 7px 10px 10px 12px;
}

.form__country {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid #67d1ff;
  border-radius: 8px;
  height: 32px;
  width: 96%;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  margin-bottom: 20px;
}

.form__country input {
  outline: none;
  border: none;
  background: transparent;
  padding-left: 0;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  width: 92%;
}

.form__country input::-webkit-input-placeholder {
  color: #fff;
}

.form__country input:-moz-placeholder {
  color: #fff;
}

.form__country input::-moz-placeholder {
  color: #fff;
}

.form__country input:-ms-input-placeholder {
  color: #fff;
}

.form__country input::placeholder {
  color: #fff;
}

.form__country button {
  background: transparent;
  border: none;
  cursor: pointer;
  width: 7%;
  position: relative;
  top: 1px;
}

.tab-content {
  padding-left: 0px;
  margin: 0;
  max-height: 500px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #4e6aff #d5dfff;
}

.tab-content::-webkit-scrollbar {
  width: 3px;
}

.tab-content::-webkit-scrollbar-track {
  background: #d5dfff;
}

.tab-content::-webkit-scrollbar-thumb {
  background: #4e6aff;
  border-radius: 3px;
}

.list__country {
  columns: 4 auto;
  padding-right: 0px;
  padding-left: 0px;
  column-gap: 10px;
}

.list__country#list__countryipv6 {
  columns: 3 auto;
  column-gap: 30px;
}

.list__country li {
  list-style: none;
  margin-bottom: 12px;
  max-width: 100%;
  margin-right: 0px;
  break-inside: avoid;
}

.list__country li a {
  display: flex;
  flex-direction: row;
  align-items: center;
  background: transparent;
  padding-left: 25px;
  color: #abb6c3;
  font-size: 14px;
  font-family: "Wix Madefor Text", sans-serif;
  line-height: 135%;
  text-decoration: none;
}

.list__country li a:hover {
  color: #fff;
}

.select2-container--default .select2-selection__rendered .country-flag,
.select2-container--default .select2-results__option .country-flag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
}

.crop-circle-country-flag {
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  margin-right: 5px;
  flex-shrink: 0;
}

.list__country li a span {
  white-space: nowrap;
  text-overflow: ellipsis;
}

.dd-button {
  display: none;
}

.dd-input {
  display: none;
}

.range-container {
  flex-shrink: 0;
  width: 48%;
}

.select2-selection__rendered div {
  display: flex;
  flex-direction: row;
}

.select2-selection__rendered img {
  width: 30px;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background: #eff2ff;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #4e6aff;
  border-radius: 6px;
  padding: 8px 16px;
  outline: none;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #050366 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -10px;
  margin-top: 1px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--default
  .select2-results__option--highlighted[aria-selected] {
  background: transparent;
  color: white;
}

.select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #050366 transparent;
  border-width: 0 5px 6px 5px;
}

.select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: relative;
  top: -2px;
  right: 0;
}

.form__proxi
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: absolute;
  top: 4px;
  right: 8px;
  width: 20px;
}

.form__proxi
  .select2-container--default
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 7px 6px 0 6px;
}

.form__proxi
  .select2-container--default.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-width: 0 6px 7px 6px;
}

.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-radius: 12px;
}

.form__proxi
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--single,
.form__proxi
  .select2-container--default.select2-container--open.select2-container--below
  .select2-selection--multiple {
  border-radius: 8px 8px 0 0;
}

.select2-container--default .select2-selection--single {
  border-radius: 12px;
  background: #fff;
  font-family: "Wix Madefor Text", sans-serif;
  border: 1px solid #3d65ff;
  display: flex;
  font-weight: 500;
  align-items: center;
  justify-content: center;
  height: 40px;
  gap: 7px;
  position: relative;
  padding-left: 12px;
}

.select2-results__option div {
  display: flex;
  background: #fff;
  flex-direction: row;
}

.form__proxi .form__group .select-dropdown--0 {
  display: none;
}

.select2-results__option div:hover {
  background: #e9eeff;
}

.form__proxi .form__group .select-dropdown__button {
  background: #e9eeff;
}

.select2-results__options {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 250px;
}

.select2-results__options:hover {
  background: #eff2ff;
}

.select2-container--default .select2-results__option[aria-selected="true"] {
  background: #fff;
}

.select2-container--default
  .select2-results__option[aria-selected="true"]:hover,
.select2-container--default .select2-results__option:hover {
  background: #eff2ff;
}

.select2-results__options::-webkit-scrollbar {
  width: 3px;
  padding: 0px 1px;
  height: 6px;
  border-radius: 3px;
}

.select2-results__options::-webkit-scrollbar-track {
  background: #d5dfff;
}

.select2-results__options::-webkit-scrollbar-thumb {
  background: #4e6aff;
  width: 1px;
  border-radius: 3px;
}

input[type="range"] {
  -webkit-appearance: none;
  margin: 0;
  width: 280px;
  box-sizing: border-box;
  padding: 0;
}

input[type="range"]:focus {
  outline: none;
}

input[type="range"] + label {
  background-color: transparent;
  border-radius: 4px;
  color: #fff;
  left: 110px;
  padding: 5px 0;
  position: absolute;
  text-align: center;
  bottom: -25px;
  width: 80px;
  font-size: 12px;
}

input[type="range"]::-webkit-slider-runnable-track {
  background: #e9eeff;
  border-radius: 4px;
  cursor: pointer;
  height: 2px;
  width: 100%;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  background: url("../img/range.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  margin-top: -12px;
  width: 24px;
}

input[type="range"]::-moz-range-track {
  background: #e9eeff;
  border-radius: 4px;
  cursor: pointer;
  height: 2px;
  width: 100%;
}

input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  background: url("../img/range.svg");
  background-repeat: no-repeat;
  background-size: contain;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  margin-top: -12px;
  width: 24px;
}

input[type="range"]::-ms-track {
  background: #e9eeff;
  border-radius: 4px;
  cursor: pointer;
  height: 2px;
  width: 100%;
}

input[type="range"]::-ms-thumb {
  -webkit-appearance: none;
  background: url("../img/range.svg");
  border: 1px solid #e9eeff;
  border-radius: 50%;
  cursor: pointer;
  height: 24px;
  margin-top: -7px;
  width: 24px;
}

.programm__links {
  display: none;
}

.sort {
  background: transparent;
  border: none;
  width: 6px;
  cursor: pointer;
}

.popup-sec {
  padding: 120px 0px;
  background: #eff2ff;
}

.planet_mobile {
  display: none;
}

.desktop_show {
  display: block;
}

.desktop-only {
  display: block;
}

.mobile_show {
  display: none;
}

.tabs-wrapper .active {
  color: red;
}

.loader_pl {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  position: absolute;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 999;
}

.custom-checkbox {
  display: inline-block;
  position: relative;
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.custom-checkbox input[type="checkbox"] {
  display: none;
}

tr.row-checked td,
tr.end_come.row-checked td,
tr.soon_end.row-checked td {
  background-color: #f0f5ff !important;
}

.error_content,
.main_content {
  display: none;
}

.switch {
  position: relative;
  display: inline-block;
  width: 30px;
  height: 15px;
  vertical-align: middle;
}

.switch-input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-label {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  background-color: #fff;
  border-radius: 20px;
  padding: 4px;
  box-sizing: border-box;
  transition: background-color 0.3s;
}

.switch-label:before {
  content: "";
  position: absolute;
  top: 0px;
  left: 0px;
  width: 15px;
  height: 15px;
  background-color: #b8c8ff;
  border-radius: 50%;
  transition: transform 0.3s, background-color 0.3s;
}

.switch-input:checked ~ .switch-label {
  background-color: #4e6aff;
}

.switch-input:checked ~ .switch-label:before {
  transform: translateX(100%);
  background-color: #ffffff;
}

.switch-text {
  position: relative;
  left: 40px;
  top: -2px;
  font-size: 14px;
  white-space: nowrap;
  font-weight: 500;
  color: #081c62;
}

#select2-autorepeat-results .select2-results__option {
  background: transparent !important;
}

#select2-autorepeat-results .select2-results__option div:hover {
  background: transparent !important;
}

.button_pr_p .tooltip {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #333;
  color: #fff;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 12px;
}

.button_pr_p .tooltip::before {
  content: "";
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  border-right: 5px solid transparent;
  border-bottom: 5px solid #333;
  border-left: 5px solid transparent;
}

tr.soon_end td {
  background-color: #edeeff !important;
}

tr.end_come td {
  background-color: #ffeded !important;
}

.buy_page_ttb {
  max-width: 1180px;
  margin: 0 auto;
  padding-bottom: 50px;
}

.buy_page_ttb .tooltip__container {
  padding-top: 50px;
}

.buy_page_ttb .main__b-item span {
  color: #333;
}

.buy_page_ttb .tooltip_none {
  color: #333 !important;
}

.select2.select2-container.select2-container--main_theme {
  height: 40px;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #c5d2ff;
  width: 100% !important;
  font-family: "Wix Madefor Text", sans-serif;
  color: #081c62;
}

.select2-container.select2-container--main_theme .select2-results__options {
  background: transparent !important;
  margin-top: 0px;
  font-family: "Wix Madefor Text", sans-serif;
}

.select2-container--main_theme .select2-results__option {
  padding: 10px 11px;
}

.select2-container--main_theme .select2-results__option:hover {
  background: #e9eeff;
}

.select2-container--main_theme.select2-container--open
  .select2-dropdown--below {
  border-top-left-radius: 8px;
  margin-top: 8px;
  border-top-right-radius: 8px;
}

.select2-container--main_theme .select2-selection--single {
  height: 40px;
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  padding-left: 11px;
  padding-right: 5px;
  justify-content: space-between;
}

.select2-container--main_theme
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: #050366 transparent transparent transparent;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  height: 0;
  left: 50%;
  margin-left: -10px;
  margin-top: 1px;
  position: absolute;
  top: 50%;
  width: 0;
}

.select2-container--main_theme
  .select2-selection--single
  .select2-selection__arrow {
  height: 26px;
  position: relative;
  top: -2px;
  width: 20px;
  right: 0;
}

.select2-container--main_theme.select2-container--open
  .select2-selection--single
  .select2-selection__arrow
  b {
  border-color: transparent transparent #050366 transparent;
  border-width: 0 5px 6px 5px;
}

.show_mobile_h {
  display: block !important;
}

.show_mobile_b {
  display: none !important;
}

span.rotate_mobile_ip .tooltip_status {
  transition: 0.3s all;
  content: "Скопировано";
  position: absolute;
  background: #4e69ff;
  top: -31px;
  left: -44px;
  padding: 4px 10px;
  border-radius: 10px;
  color: #fff;
}

.tooltip_status::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(180deg);
  border-width: 10px;
  border-style: solid;
  border-color: transparent transparent #4e69ff transparent;
}

.error {
  color: red;
  text-align: center;
  padding-bottom: 5px;
}

/* Common styles for auth forms error messages */
.auth-error {
  background: #ffe6e6;
  border: 2px solid #dc3545;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  animation: shake 0.5s;
  display: none;
}

.auth-error b {
  color: #8b0000;
  font-weight: 600;
  font-size: 14px;
}

.auth-success {
  background: #e8f5e9;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  display: none;
}

.auth-success b {
  color: #155724;
  font-weight: 600;
  font-size: 14px;
}

/* Legacy IDs for backward compatibility */
#registration-error,
#login-error {
  background: #ffe6e6;
  border: 2px solid #dc3545;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
  animation: shake 0.5s;
}

#registration-error b,
#login-error b {
  color: #8b0000;
  font-weight: 600;
  font-size: 14px;
}

#registration-success,
#login-success {
  background: #e8f5e9;
  border: 2px solid #28a745;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 16px;
}

#registration-success b,
#login-success b {
  color: #155724;
  font-weight: 600;
  font-size: 14px;
}

@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
  20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.ok {
  color: green;
  text-align: center;
}

.additional_block {
  height: auto;
  overflow: hidden;
}

.alert {
  padding: 12px;
  margin-bottom: 10px;
  text-align: center;
  border: gray solid 2px;
  border-radius: 10px;
}

.alert-warning {
  color: #8a6d3b;
  background-color: #fcf8e3;
  border-color: #faebcc;
}

.alert-success {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.alert-danger {
  color: #763c3c;
  background-color: #f0d8d8;
  border-color: #e9c6c6;
}

dl.ua {
  height: 5em;
}

dl.ua:after {
  top: 14px;
}

dl.ua dd {
  margin-left: 215px;
}

#ipInput {
  flex: 1;
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ddd;
  border-radius: 4px 0 0 4px;
  outline: none;
  transition: border 0.3s;
}

#ipInput:focus {
  border-color: #007bff;
}

#result {
  padding: 15px;
  border-radius: 4px;
  margin-top: 20px;
  text-align: left;
  display: none;
}

.loader-container {
  display: inline-block;
  position: relative;
  height: 6px;
  width: 200px;
  background-color: #ddd;
  border-radius: 2px;
  overflow: hidden;
  vertical-align: middle;
  margin-left: 10px;
}

.loader-bar {
  position: absolute;
  height: 100%;
  width: 0;
  background-color: #007bff;
  animation: loading 15s infinite;
  border-radius: 2px;
}

#result-ipv6check {
  padding: 15px;
  margin-top: 20px;
  text-align: left;
}

.toast {
  position: fixed;
  top: 20px;
  right: 20px;
  background-color: #4caf50;
  color: white;
  padding: 10px 20px;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  font-size: 14px;
  z-index: 99995;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  transform: translateY(20px);
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast.error {
  background: red;
}

.proxy-cell:hover {
  position: relative;
}

.proxy-cell:hover::after {
  content: "Копировать в буфер обмена";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #000;
  color: #fff;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 12px;
  white-space: nowrap;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#popup_export_format .export-format-select {
  margin-bottom: 15px;
}

#popup_export_format .export-custom-group {
  margin-bottom: 15px;
}

#popup_export_format .export-custom-input {
  margin-bottom: 10px;
}

#popup_export_format .export-format-help {
  font-size: 12px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.4;
}

#popup_export_format .form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  color: #081c62;
}

#popup_export_format .form-control {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  min-height: 36px;
}

#popup_export_format .select2-container {
  width: 100% !important;
  z-index: 99999 !important;
}

#popup_export_format .select2-dropdown {
  z-index: 99999 !important;
}

#popup_export_format {
  overflow: visible !important;
}

.fancybox-content:has(#popup_export_format) {
  overflow: visible !important;
}

.select2-dropdown--above-fancybox {
  z-index: 99999 !important;
}

.fancybox-container:has(#popup_export_format) {
  overflow: visible !important;
}

.fancybox-slide:has(#popup_export_format) {
  overflow: visible !important;
}

#popup_export_format .select2-container .select2-selection--single {
  height: 36px !important;
  display: flex !important;
  align-items: center !important;
  border: 1px solid #ddd !important;
  border-radius: 6px !important;
  padding: 0 40px 0 12px !important;
  font-size: 14px !important;
}

#popup_export_format .select2-container .select2-selection__rendered {
  line-height: 36px !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

#popup_export_format .select2-container .select2-selection__arrow {
  height: 34px !important;
  right: 12px !important;
  position: absolute !important;
}

#workingCount span {
  color: green;
  font-weight: bold;
}

#notWorkingCount span {
  color: red;
  font-weight: bold;
}

.proxy-container-proxychecker {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 20px auto;
}

textarea#proxyInput {
  width: 900px;
  height: 187px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 14px;
  resize: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  display: block;
}

button#checkButton {
  position: relative;
  padding: 15px 90px;
  font-size: 14px;
  color: #fff;
  background: #4e6aff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  text-align: center;
  margin: 0 auto;
}

button#checkButton:hover {
  opacity: 0.9;
}

button#checkButton:disabled {
  background: #cccccc;
  cursor: not-allowed;
}

th.proxy-header {
  text-align: left;
  padding-left: 70px;
}

canvas {
  width: 100%;
  height: auto;
}

/* ── Payment-method picker (redesigned cards) ──────────────────────
   Markup: application/views/new/forms/pay-methods.php
   Replaces the old <select.sel_in_modal> in #popup-payform / #popup-renew-payform.
   Selected state is pure CSS via :has(:checked) — no JS toggles classes. */
.pay-methods { display: flex; flex-direction: column; gap: 4px; }
.pay-method {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #c5d2ff;
  border-radius: 10px;
  padding: 13px 14px;
  background: #fff;
  cursor: pointer;
  transition: box-shadow 0.16s, border-color 0.16s;
}
.pay-method:hover { border-color: #4e6aff; }
.pay-method__radio { position: absolute; opacity: 0; width: 0; height: 0; }
.pay-method:has(.pay-method__radio:checked) {
  border-color: #4e6aff;
  box-shadow: inset 0 0 0 2px #4e6aff;
}
.pay-method__indicator {
  flex: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #c5d2ff;
  display: grid;
  place-items: center;
  transition: border-color 0.16s;
}
.pay-method__indicator::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #4e6aff;
  opacity: 0;
  transition: opacity 0.16s;
}
.pay-method:has(.pay-method__radio:checked) .pay-method__indicator { border-color: #4e6aff; }
.pay-method:has(.pay-method__radio:checked) .pay-method__indicator::after { opacity: 1; }
.pay-method__badge {
  flex: none;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
}
.pay-method__body { flex: 1; min-width: 0; }
.pay-method__name {
  display: block;
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #081c62;
}
.pay-method__tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 5px; }
.pay-method__tag {
  font-family: "Wix Madefor Text", sans-serif;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  color: #7a89b8;
  background: #eef1fb;
  border-radius: 5px;
  padding: 4px 7px;
}
.pay-method[data-badge="blue"] .pay-method__badge   { color: #4e6aff; background: #e3e8ff; }
.pay-method[data-badge="green"] .pay-method__badge  { color: #1fa45a; background: #e6f6ee; }
.pay-method[data-badge="orange"] .pay-method__badge { color: #e8881f; background: #fcf1e3; }
.pay-method[data-badge="violet"] .pay-method__badge { color: #8566fe; background: #f0ecff; }
.pay-method[data-badge="blue2"] .pay-method__badge  { color: #2a6fdb; background: #e4eefb; }

/* Tighter vertical rhythm for the payment modals only — the base .popup-modal
   spacing is shared by other modals, so these overrides are id-scoped.
   Quick-order (#popup-quick-order) uses the same rhythm as the LK modals. */
#popup-payform,
#popup-renew-payform,
#popup-quick-order { padding-top: 24px; padding-bottom: 16px; }
#popup-payform .popup__title,
#popup-renew-payform .popup__title,
#popup-quick-order .popup__title { margin-bottom: 8px; }
#popup-payform .popup_forms,
#popup-renew-payform .popup_forms,
#popup-quick-order .popup_forms { margin-top: 8px; }
#popup-payform .popup_forms .form__group,
#popup-renew-payform .popup_forms .form__group,
#popup-quick-order .popup_forms .form__group { margin-bottom: 8px; }
#popup-payform .pay-method,
#popup-renew-payform .pay-method,
#popup-quick-order .pay-method { padding: 11px 14px; }
#popup-payform .form__checks,
#popup-renew-payform .form__checks,
#popup-quick-order .form__checks { margin-top: 6px; margin-bottom: 6px; }
#popup-payform .popup_forms .form__bottom,
#popup-renew-payform .popup_forms .form__bottom,
#popup-quick-order .popup_forms .form__bottom { margin-top: 16px; }
#popup-payform .popup_forms .form__bottom .btn-reg,
#popup-renew-payform .popup_forms .form__bottom .btn-reg,
#popup-quick-order .popup_forms .form__bottom .btn-reg { margin-bottom: 0; }
/* Hidden elements in the pay-button row (extra login button, loader) must not
   reserve layout space — a deeper .btn-reg/.loader `display` rule was beating
   the global [hidden]{display:none}, leaving an empty gap below the button. */
#popup-payform .form__bottom [hidden],
#popup-renew-payform .form__bottom [hidden],
#popup-quick-order .form__bottom [hidden] { display: none !important; }

/* ИНН field label inside any B2B modal (LK buy/renew, quick-order, #popup-b2b).
   Kept in main.css (global) so it also applies on public pages where the
   quick-order popup lives — the default .form__group label is near-white on
   the light modal. Was previously dashboard.css-only, so quick-order showed
   the wrong colour. */
#popup-b2b .form__group > label,
.b2b-inn-block > label {
  color: #081c62;
  font-weight: 600;
}

.promoCodeLink {
  color: grey;
  text-decoration: underline;
  cursor: pointer;
  font-size: 14px;
}

.inputCoupon {
  display: flex;
  align-items: center;
  padding-bottom: 4px;
  padding-left: 10px;
  padding-right: 5px;
  justify-content: space-between;
  border-radius: 4px;
  background: #fff;
  border: 1px solid #c5d2ff;
  margin-top: 5px;
  margin-bottom: 5px;
  height: 30px;
}

label[for="inputCoupon"] {
  color: #081c62;
  font-size: 16px;
  font-weight: 400;
  font-family: "Wix Madefor Text", sans-serif;
  position: relative;
}

.tryCoupon {
  padding: 5px 10px;
  background-color: #4e6aff;
  color: white;
  border: none;
  cursor: pointer;
  margin-top: 4px;
  border-radius: 4px;
}

.tryCoupon:hover {
  background: linear-gradient(91deg, #68a5ff 0%, #2039ff 100%);
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 25px;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 16px;
  transition: all 0.3s;
  width: 100%;
  box-sizing: border-box;
  font-weight: 500;
  gap: 10px;
}

.btn-icon {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-ticket {
  background-color: #3498db;
}

.btn-ticket:hover {
  background-color: #2980b9;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(41, 128, 185, 0.2);
}

.btn-support {
  background-color: #2ecc71;
}

.btn-support:hover {
  background-color: #27ae60;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(46, 204, 113, 0.2);
}

.form__all p #range_summ {
  font-weight: bold;
}

.availability {
  color: #fff;
  font-size: 12px;
  font-weight: 300;
  font-family: "Wix Madefor Text", sans-serif;
  text-align: left;
}

.multiline {
  white-space: pre;
  display: inline-block;
}

#popup_ipv6_rotation.popup-modal {
  height: auto;
  width: 420px;
  overflow: visible;
  padding: 30px 40px;
}

.time-input input[type="number"] {
  width: 70px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #3d65ff;
  padding: 0 15px;
  font-family: "Wix Madefor Text", sans-serif;
  font-weight: 500;
  margin-top: 5px;
}

.time-input select option {
  padding: 10px;
}

.checkbox-container {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.checkbox-container input[type="checkbox"] {
  margin-right: 10px;
  cursor: pointer;
}

.disabled {
  opacity: 0.5;
  pointer-events: none;
}

.form-group {
  margin-bottom: 15px;
}

.form-group .checkbox-container label {
  font-weight: 500;
  color: #081c62;
  cursor: pointer;
}

@keyframes rotate {
  0% {
    rotate: 0deg;
  }
  100% {
    rotate: 360deg;
  }
}

@keyframes drawLine {
  0% {
    stroke-dashoffset: 1000;
  }
  100% {
    stroke-dashoffset: 0;
  }
}

@keyframes pulse {
  0% {
    opacity: 0;
    transform: scale(1);
  }
  100% {
    transform: scale(2);
    opacity: 1;
  }
}

@keyframes ani {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 10%;
  }
}

@keyframes loading {
  0% {
    width: 0;
  }
  50% {
    width: 100%;
  }
  100% {
    width: 0;
  }
}

@keyframes spin {
  0% {
    transform: translateY(-50%) rotate(0deg);
  }
  100% {
    transform: translateY(-50%) rotate(360deg);
  }
}

@media screen and (max-width: 1280px) {
  .top__profile {
    flex-direction: column;
    gap: 20px;
  }

  .breadcrums__list {
    padding-top: 25px;
  }
  .plit__big-title {
    font-size: 38px;
  }

  .plit__container {
    padding: 0 20px;
  }

  .dark__container {
    padding: 0 60px;
  }

  .dark__title {
    font-size: 38px;
    padding: 0 60px;
  }

  .plit__big {
    padding: 35px 50px;
  }

  .preim__list {
    gap: 5px;
  }

  .proxi-info {
    padding-top: 150px;
  }

  .profile {
    padding: 20px;
  }

  .proxi__tab .proxi__title {
    font-size: 26px;
  }

  .select2-container,
  .change_type_select .select2-container {
    min-width: 21vw;
  }

  .button_pr_p {
    width: 49%;
    font-size: 14px;
    box-sizing: border-box;
  }

  .more_time_value {
    gap: 15px;
  }

  .button_pr_p.button_blue,
  .button_pr_p.button_red {
    padding: 10px;
  }

  .select2-container--default .select2-selection--single,
  .select2-container--default .select2-results__option {
    font-size: 14px;
  }

  .form__proxi .select2-container .select2-selection--single,
  .form__proxi .select-dropdown__button,
  .form__proxi input {
    font-size: 14px;
  }

  .tooltip__container.desktop_show {
    padding: 0 25px;
    width: 1024px;
    box-sizing: border-box;
    margin: 0 auto;
  }

  .footer {
    padding: 30px 20px 20px;
  }

  .footer__logo p {
    font-weight: 400;
    width: 195px;
    margin: 4px 5px;
  }

  .footer__logo {
    flex-direction: column;
  }

  .main__b-item .tooltip {
    width: 200px;
  }

  .footer__container {
    justify-content: space-between;
  }

  .main__b-item:last-child .tooltip {
    padding: 7px 13px 9px 14px;
    width: 176px;
    left: -8px;
    margin-bottom: 25px;
  }

  .footer__bottom {
    padding-top: 70px;
  }

  .footer__bottom-item a {
    margin-right: 50px;
  }

  .footer__bottom-item p {
    margin-right: 80px;
  }

  .blog-pages .container,
  .blog-page .container {
    padding: 0 20px;
  }

  .blogs .container {
    padding: 0 20px;
  }

  .blogs-slide__image {
    margin: 20px 20px 12px 20px;
  }

  .blogs-slide__title a {
    width: 100%;
  }

  .header__container {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .top__menu ul li a {
    font-size: 14px;
  }

  .header__auth a {
    width: 150px;
    font-weight: 500;
  }

  .btn_proxi {
    font-size: 14px;
    width: 157px;
  }

  .header__menu ul li a {
    padding: 12px 19px;
    font-size: 15px;
  }

  .planet {
    transform: translate(330px, -268px) scale(0.8);
  }

  .main {
    height: 690px;
  }

  .main__content h1 {
    font-size: 54px;
  }

  .main__content p {
    font-weight: 400;
  }

  .main__b-item span {
    font-size: 14px;
  }

  .main__bottom-list {
    justify-content: space-around;
  }

  .main__b-item:after {
    right: -38px;
  }

  .header {
    padding-left: 20px;
    padding-right: 20px;
  }

  .main__container {
    padding: 224px 20px;
  }

  .main__content {
    width: 500px;
  }

  .form__row-range {
    gap: 95px;
  }

  .review-slide__content {
    height: 83%;
  }

  .proxi_index {
    padding-top: 45px;
  }

  .plit__big-form {
    padding: 42px 40px 42px 40px;
  }

  .tabs__content {
    padding: 0px 20px;
  }

  .programm__container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    max-width: 600px;
    margin: auto;
    transform: scale(0.85);
    margin-top: -40px;
    margin-bottom: -40px;
  }

  .programm__container--block {
    width: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .task {
    padding: 0px 0px 25px;
  }

  .task .container {
    padding: 0 20px;
  }

  .review__title {
    width: 180px;
    font-size: 40px;
  }

  .review__container {
    padding: 0 20px;
  }

  h1 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 1023px) {
  .plit__item-index.parthner_p {
    height: 190px;
  }

  .plit__item-text.parthner_p ul {
    gap: 19px;
  }

  .proxi__pagesection .page__title h1 {
    font-size: 38px;
  }

  .dark__title {
    font-size: 32px;
    padding: 0 60px;
  }

  .preim__list > div {
    justify-content: flex-start;
  }

  .dark__container {
    flex-direction: column;
  }

  .dark__item {
    width: 100%;
  }

  .plit {
    padding-bottom: 30px;
  }

  .preim__item:not(:nth-child(5)) {
    margin: 0;
  }

  .plit__big {
    margin-right: 0;
  }

  .preim__item-text {
    white-space: normal;
    font-size: 14px;
  }

  .pinfo__container {
    padding: 0 20px;
    justify-content: space-between;
  }

  .pinfo__item {
    width: 49%;
  }

  .dark {
    padding: 35px 0px;
  }

  .plit__left {
    display: flex;
    flex-direction: row;
    gap: 12px;
  }

  .plit__big-title {
    font-size: 32px;
  }

  .section__wtitle {
    font-size: 38px;
  }

  .preim {
    padding-top: 35px;
  }

  .header__avatar img {
    width: 25px;
  }

  .select2-container,
  .change_type_select .select2-container {
    min-width: 18.49vw;
  }

  .button_pr_p {
    width: 48%;
  }

  .additional_container {
    flex-wrap: wrap;
  }

  .additional_container {
    flex-wrap: wrap;
  }

  .proxi__tab .proxi__title {
    font-size: 22px;
    padding: 15px;
  }

  .form__all p {
    font-size: 14px;
  }

  .tooltip__container.desktop_show {
    padding: 0 20px;
    width: 768px;
  }

  .main__b-item:after {
    right: -11px;
  }

  .window__header {
    left: 0;
  }

  .header__menu ul li a {
    padding: 12px 9px;
    font-size: 12px;
  }

  .btn_proxi::before {
    right: 13px;
    top: 12px;
  }

  .header__auth a {
    width: 70px;
    font-weight: 400;
    font-size: 13px;
    padding: 8px 0;
  }

  .top__menu ul li a {
    font-size: 12px;
    margin: 0 7px;
  }

  .btn__lang {
    margin-left: 7px;
  }

  .btn_proxi {
    font-size: 12px;
    width: 147px;
    height: 30px;
  }

  .header__logo img {
    width: 130px;
  }

  .planet {
    transform: translate(425px, -300px) scale(0.55);
  }

  .main__b-item span {
    font-size: 13px;
  }

  .main__b-item:after {
    right: -15px;
    height: 20px;
    top: 0px;
  }

  .main__bottom {
    padding-bottom: 35px;
  }

  .main__b-item .tooltip {
    width: 176px;
  }

  .main__b-item:last-child .tooltip {
    width: 97px;
  }

  .main__content {
    width: 395px;
  }

  .main__content h1 {
    font-size: 46px;
    line-height: 1.2;
  }

  .main__container {
    padding: 203px 20px;
  }

  .main {
    height: 560px;
  }

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

  .proxi_index {
    padding-top: 35px;
    padding-bottom: 50px;
  }

  .proxi__title {
    font-size: 38px;
  }

  .tabs__btn {
    height: auto;
    font-size: 13px;
    padding: 9px 16px;
  }

  .tabs__list {
    padding: 0 15px;
    margin-top: 20px;
    flex-wrap: wrap;
    gap: 6px;
  }

  .plit__container {
    flex-direction: column;
    gap: 10px;
  }

  .plit__big-form {
    padding: 30px 40px;
  }

  .plit__big-form {
    padding: 30px 40px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .form__group label {
    font-size: 14px;
  }

  .task .container {
    padding: 0 0 0 20px;
  }

  .review__title {
    width: 180px;
    font-size: 30px;
  }

  .programm .section__title {
    font-size: 38px;
  }

  .task .section__title {
    line-height: 1.2;
    font-size: 38px;
    left: -10px;
  }

  .plit__item-index {
    margin-bottom: 10px;
    width: 100%;
    box-sizing: border-box;
  }

  .plit__item-index br {
    display: none;
  }

  .plit__item-text ul {
    justify-content: flex-start;
    gap: 35px;
    margin-bottom: 10px;
  }

  .plit__item-text ul li {
    width: auto;
  }

  .plit__item-text ul li:nth-child(2n + 0) {
    left: 0;
  }

  .task__item-text {
    font-size: 14px;
  }

  .task__item-title {
    height: 40px;
    font-size: 16px;
  }

  .blogs__title {
    font-size: 38px;
  }

  .blogs__sliders {
    padding-bottom: 55px;
  }

  .footer__bottom-item a {
    margin-right: 0;
  }

  .footer__social {
    margin-left: 0;
    margin-right: 0;
  }

  .footer__menu ul li a {
    font-size: 14px;
  }

  .footer__social span {
    font-size: 14px;
  }

  .footer__bottom {
    padding-top: 45px;
    gap: 15px;
  }

  h1 {
    font-size: 1.7rem;
    margin-bottom: 25px;
  }

  .additional_block {
    height: auto;
    overflow: hidden;
  }
}

@media screen and (max-width: 800px) {
  .main__b-item:after {
    right: -11px;
    height: 18px;
    top: 0px;
  }
}

@media (max-width: 768px) {
  .table td {
    display: block;
    text-align: right;
  }

  .table td:before {
    content: attr(data-label);
    float: left;
    text-transform: uppercase;
    font-weight: bold;
  }

  .table thead display none tr {
    margin-bottom: 30px;
    display: block;
  }
}

@media (max-width: 767px) {
  .select2-container--main_theme .select2-selection--single {
    font-size: 14px;
  }

  .breadcrums__list {
    display: none;
  }

  .buy_page_ttb {
    margin-left: 20px;
    margin-right: 20px;
  }

  .over_country_mob {
    height: 200px;
    overflow: hidden;
    overflow-y: scroll;
    margin-bottom: 30px;
  }

  .popup-modal.add_comments_pop {
    padding: 30px 40px;
    min-width: auto;
  }

  .popup-modal.add_comments_pop .popup__title {
    margin-top: 0;
    padding: 0 20px;
    line-height: 1.2;
  }

  .form__country {
    height: 38px;
  }

  .window__container .tabs-nav {
    flex-direction: row;
    width: 100%;
    flex-wrap: wrap;
    gap: 2%;
  }

  .form__country input {
    width: 88%;
    display: block;
    height: 35px;
  }

  .form__country button {
    width: 10%;
  }

  .window__container .tabs-content {
    width: 100%;
    padding: 0;
    margin-top: 10px;
    position: relative;
  }

  .loader {
    right: 0;
    left: 0;
    margin: auto;
  }

  .window__container .tabs-nav li {
    list-style: none;
    margin: 0;
    width: 49%;
    margin-bottom: 2%;
  }

  .window__container {
    border-radius: 0;
    background: transparent;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
  }

  .main {
    background: #0c1633;
    background-image:
      radial-gradient(ellipse 800px 600px at -200px 50%, rgba(108, 99, 255, 0.15) 0%, transparent 50%),
      radial-gradient(ellipse 600px 800px at 50% 100%, rgba(64, 193, 254, 0.08) 0%, transparent 60%);
  }

  .task__container {
    margin-bottom: 35px;
  }

  .tabs__list {
    padding: 0 15px !important;
  }

  .main__b-item:after {
    display: none;
  }

  .main__b-item span {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid #40c1fe;
    height: auto;
    padding-bottom: 14px;
    white-space: nowrap;
  }

  .tooltip_none {
    font-size: 12px;
    text-align: left;
    line-height: 1.4;
    margin-top: 15px;
  }

  .desktop_show {
    display: none !important;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile_show {
    display: block !important;
  }

  .main__content p br {
    display: none;
  }

  .main__content p {
    width: 90%;
    margin: 0 auto;
    margin-top: 25px;
  }

  .header {
    padding-left: 15px;
    padding-right: 15px;
  }

  .header__container {
    padding-top: 16px;
  }

  .btn_proxi {
    display: none;
  }

  .top__menu {
    display: none;
  }

  .header__auth {
    display: none;
  }

  .header__burger {
    display: block;
  }

  .header__menu {
    display: none;
  }

  .block__content-jobs {
    margin-bottom: 0px;
  }

  .blue__block {
    padding: 24px 24px;
    height: 122px;
  }

  .blue__block-row {
    flex-direction: unset;
    flex-wrap: wrap;
  }

  .blue__block-item:first-child {
    width: 100%;
    margin-bottom: 28px;
  }

  .blue__block-item {
    width: 45%;
  }

  .plit__container {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .plit__big {
    padding: 24px 24px;
    width: auto;
    margin-right: 0px;
    margin-bottom: 10px;
  }

  .plit__big-title {
    font-size: 24px;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .plit__left {
    width: 100%;
    flex-direction: column;
    margin-top: 0px;
  }

  .plit__item-text ul li {
    width: 45%;
  }

  .plit__item-text ul {
    gap: 10px;
  }

  .plit__item {
    width: auto;
  }

  .pinfo {
    padding-bottom: 25px;
  }

  .pinfo__container {
    flex-direction: column;
    padding: 0px 16px;
  }

  .pinfo__item {
    width: 100%;
    margin-bottom: 28px;
  }

  .pinfo__item-img img {
    max-width: 100%;
    border-radius: 12px;
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .part::after {
    width: auto;
    height: 660px;
  }

  .dark__title {
    font-size: 24px;
    padding-left: 22px;
    padding-right: 20px;
  }

  .dark__title br {
    display: none;
  }

  .dark__container {
    flex-direction: column;
    padding: 0px 22px;
  }

  .show_mobile_h {
    display: none !important;
  }

  .show_mobile_b {
    display: block !important;
  }

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

  .dark__item {
    width: auto;
  }

  .dark__item:last-child {
    padding-left: 25px;
  }

  .pinfo__item-text {
    width: 100%;
    margin-top: 12px;
    font-size: 14px;
  }

  .preim__item {
    width: 200px;
  }

  .article-top__block {
    padding: 0px 0px 12px 0px;
  }

  .article::before {
    background: url("../img/article-before-mob.png");
    height: 720px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 0px 0px 12px 12px;
  }

  #tooltips-example-1 .charts-css.column.data-spacing-20 tbody tr td {
    width: 27px;
  }

  #tooltips-example-2 .charts-css.column.data-spacing-20 tbody tr td {
    width: 27px;
  }

  .blogs {
    padding-bottom: 40px;
  }

  .blogs__item {
    width: 100%;
    grid-column: 6 span;
  }

  .blogs__item:nth-of-type(4) {
    width: 100%;
    grid-column: 6 span;
  }

  .blogs__item:nth-of-type(5) {
    width: 100%;
    grid-column: 6 span;
  }

  .blogs__item:nth-of-type(9) {
    width: 100%;
    grid-column: 6 span;
  }

  .blogs__title {
    font-size: 24px;
  }

  .blogs__title-top {
    justify-content: flex-start;
  }

  .blogs-slide__image {
    margin: 24px 24px 12px 24px;
    height: 263px;
    overflow: hidden;
    position: relative;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    border-radius: 12px;
  }

  .blogs-slide__image img {
    position: absolute;
    width: 100%;
    height: 100%;
    display: block;
  }

  .blogs-nav .swiper-button-nextB {
    right: 0;
    left: auto;
  }

  .blogs-nav .swiper-button-prevB {
    left: 0;
  }

  .header__mobile-top .btn__lang {
    margin-left: 0px;
  }

  .first_shadow_menu {
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    transform: translate(-47px, 64px);
  }

  .second_shadow_menu {
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    transform: translate(-147px, 250px);
  }

  .header__mobile {
    overflow: hidden;
    left: auto;
    right: -100vw;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    background: #1d1971;
    background-repeat: no-repeat;
    background-position: 0 39px;
    background-size: 100%;
    padding: 14px 0px 48px 0px;
    position: fixed;
    top: 0px;
    z-index: 99;
    overflow-y: scroll;
    transition: 0.3s all;
  }

  .preim {
    padding-bottom: 0px;
  }

  .plit {
    padding-top: 30px;
    padding-bottom: 40px;
  }

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

  .plit__item {
    height: auto;
    padding: 24px 24px;
    margin-bottom: -1px;
  }

  .plit__item-num {
    font-size: 18px;
  }

  .plit__item-text {
    font-size: 14px;
  }

  .plit__item-text p {
    margin-bottom: 8px;
  }

  .plit__big-form {
    width: auto;
    padding: 25px 25px 35px 25px;
    margin-right: 0px;
    margin-bottom: 8px;
    position: relative;
  }

  .plit__item-text ul li:nth-child(2n + 0) {
    left: 15px;
  }

  .form__row {
    flex-direction: column;
  }

  .form__row:nth-of-type(2) {
    flex-direction: column-reverse;
  }

  .programm__item-new {
    width: 90%;
    background: transparent;
    height: auto;
    border: 1px solid #816ffe;
    box-shadow: 0 0 10px rgba(222, 218, 255, 0.47);
  }

  .programm__item-new--bg,
  .programm__item-new--bg-shadow {
    display: none;
  }

  .review-slide__content {
    min-height: 180px;
  }

  .bottom_shadow {
    background: url(../img/main/shadow_bottom_mobile.webp);
    height: 440px;
    bottom: -120px;
  }

  .blogs-nav {
    width: 200px;
    margin: 0 auto;
    left: 0;
    right: 0;
  }

  .form__row-range {
    width: 99%;
    position: relative;
    top: 0;
    flex-direction: column;
    gap: 30px;
  }

  .range-container {
    width: 100%;
    padding-left: 3px;
    box-sizing: border-box;
  }

  .noUi-touch-area:after {
    left: 0;
  }

  .programm__container--block {
    width: 100%;
  }

  .select-dropdown__button {
    font-size: 12px;
  }

  input[type="range"] {
    width: 100%;
  }

  .footer__bottom-item:first-child {
    order: 4;
    margin-top: 15px;
  }

  .review {
    background-size: cover;
    position: relative;
    padding-top: 24px;
    background-position: -20px;
  }

  .task {
    margin-bottom: 0px;
  }

  .form__group {
    width: 100%;
    max-width: 100%;
  }

  .form__bottom {
    flex-direction: column;
    margin-top: 20px;
  }

  .form__all {
    width: 100%;
    margin-bottom: 8px;
  }

  .form__all p {
    margin: 10px 0px;
  }

  .form__btn {
    width: 100%;
  }

  .blue__index {
    padding: 0;
    padding-top: 40px;
    margin-bottom: -30px;
    border-radius: 12px;
    display: block;
    background: url("../img/bg-p-mob.webp");
    background-size: cover;
  }

  .blue__index .programm .section__text {
    width: 100%;
    font-size: 12px;
  }

  .planet {
    position: relative;
    width: auto;
    top: auto;
    z-index: 1;
    right: auto;
    left: auto;
    transform: none;
  }

  .planet .planet_desc {
    display: none;
  }

  .planet__anim {
    position: absolute;
    top: 45%;
    left: 50%;
    transform: translate(-50%, -50%);
    rotate: none;
    right: auto;
    width: 70%;
    height: auto;
    z-index: 2;
  }

  .planet__canvas {
    width: 57%;
    top: 17%;
    right: 20%;
    margin: 0;
  }

  .programm {
    padding: 0px 0px;
  }

  .programm .section__title {
    font-size: 24px;
  }

  .programm .section__text {
    font-size: 12px;
    width: 100%;
  }

  .programm__links a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    width: 100%;
    height: 38px;
    background: #140b48;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    text-align: center;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 24px;
    font-family: "Wix Madefor Text", sans-serif;
  }

  .programm__container {
    flex-direction: unset;
    flex-direction: column;
    transform: none;
    position: relative;
    z-index: 1;
    margin: 5px auto;
  }

  .programm__item {
    width: 100%;
    margin-bottom: 8px;
  }

  .programm__item-title {
    font-size: 12px;
    max-width: 240px;
  }

  .programm__item-icon {
    height: 168px;
    margin: 10px auto;
  }

  .task .section__title {
    font-size: 24px;
    width: 100%;
    margin-top: 30px;
  }

  .task__item-text {
    font-size: 12px;
  }

  .task__item-title {
    font-size: 16px;
    height: 30px;
  }

  .proxi__title {
    font-size: 24px;
  }

  .tabs__list {
    flex-direction: unset;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
  }

  .tabs__btn {
    width: 46%;
    font-size: 12px;
    padding: 9px 8px;
    /* "Резидентские прокси" is the longest label and overflows a 46%-wide
       button with nowrap; allow wrap so it can break to 2 lines. */
    white-space: normal;
    line-height: 1.25;
    min-height: 40px;
    height: auto;
  }

  .main {
    height: 840px;
  }

  .main__content {
    width: 100%;
  }

  .main__content h1 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 0px;
  }

  .main__content p {
    font-size: 18px;
    text-align: center;
    margin-bottom: 65px;
  }

  .main__buy-btn {
    display: inline-block;
    padding: 15px 32px;
    background: linear-gradient(135deg, #6c63ff 0%, #5a52d5 100%);
    border-radius: 8px;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.3);
    font-family: "Wix Madefor Text", sans-serif;
  }

  .main__buy-btn:hover {
    background: linear-gradient(135deg, #5a52d5 0%, #4a42b5 100%);
    box-shadow: 0 6px 20px rgba(108, 99, 255, 0.4);
    transform: translateY(-2px);
  }

  .main__container {
    flex-direction: column;
    padding-top: 165px;
  }

  .main__bottom {
    padding-top: 160px;
    display: inline-block;
    overflow-x: scroll;
    padding: 20px 20px 0px 20px;
    margin-bottom: 45px;
  }

  .proxi-info {
    padding-top: 83px;
  }

  .plit__item-index {
    width: auto;
    padding: 24px 24px;
    margin-bottom: 8px;
  }

  .plit__item-index.parthner_p {
    height: auto;
  }

  .plit__item-text.parthner_p ul {
    gap: 12px;
  }

  .plit__item-text.parthner_p ul li:nth-child(2n + 0) {
    left: 0;
  }

  .preim__item-icon img {
    max-width: 70%;
  }

  .preim__item-icon {
    margin-bottom: 14px;
    height: 33px;
    text-align: center;
  }

  .preim .section__wtitle {
    margin-top: 0px;
    font-size: 26px;
    margin-bottom: 25px;
  }

  .preim__item-text {
    font-size: 12px;
  }

  .header__close {
    border: none;
    background: transparent;
    cursor: pointer;
  }

  .form__group label,
  .select2-container--default .select2-results__option,
  .form__proxi .select2-container .select2-selection--single,
  .form__proxi .select-dropdown__button,
  .form__proxi input {
    font-size: 14px;
  }

  .header__mobile-top {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin: 0px 20px;
    width: 100%;
  }

  .header__mobile-top .header__right {
    width: 20%;
  }

  .header__mobile .header__menu-mob {
    display: flex;
    flex-direction: column;
    padding: 20px 20px 0px 20px;
  }

  .header__mob-btns {
    padding: 0px 20px;
    display: flex;
    flex-direction: column;
  }

  .profile__mob-avatar {
    margin-left: 18px;
    margin-right: 18px;
    margin-top: 20px;
  }

  .profile__mob-avatar img {
    max-width: 100%;
  }

  .profile__menu-mob {
    padding: 17px 0px 25px 0;
    padding-left: 0px;
    margin: 0;
    margin-top: 0px;
    margin-left: 18px;
    margin-right: 18px;
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid #40c1fe;
  }

  .profile__menu-mob li {
    list-style: none;
    margin-bottom: 2px;
  }

  .profile__menu-mob li a {
    text-decoration: none;
    color: #fff;
    font-size: 16px;
    line-height: 135%;
    padding: 9px 13px;
    display: flex;
    align-items: center;
    flex-direction: row;
    transition: 0.3s;
    transform: 0.3s;
    width: 240px;
  }

  .profile__menu-mob li a svg {
    margin-right: 10px;
  }

  .profile__menu-mob li:last-child {
    margin-top: 24px;
  }

  .profile__menu-mob li .active-link {
    background: #fff;
    border-radius: 27px;
    padding: 9px 13px;
    color: #4e6aff;
    transition: 0.3s;
    transform: 0.3s;
  }

  .profile__menu-mob li .active-link svg path {
    fill: #4e6aff;
  }

  .profile__menu-mob li a:hover {
    background: #fff;
    border-radius: 27px;
    padding: 9px 13px;
    color: #4e6aff;
    transition: 0.3s;
    transform: 0.3s;
  }

  .profile__menu-mob li a:hover svg path {
    fill: #4e6aff;
    transition: 0.3s;
    transform: 0.3s;
  }

  .dashboard .header__mobile .btn_proxi-mob {
    margin-top: 0;
  }

  .header__mobile .btn_proxi-mob {
    background: rgba(255, 255, 255, 0.13);
    border: 1px solid #67d1ff;
    margin-top: 20px;
    margin-bottom: 15px;
    text-align: center;
    border-radius: 8px;
    padding: 0px 16px;
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 13px;
    line-height: 135%;
    color: #fff;
    margin-left: 0px;
    position: relative;
    cursor: pointer;
  }

  .header__mobile .btn_proxi-mob.activeBtn {
    background-color: #67d1ff;
  }

  .header__mobile .btn_proxi-mob::before {
    content: "";
    position: absolute;
    background: url("../img/pdrop.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 6px;
    right: 20px;
    top: 17px;
    z-index: 9;
  }

  .header__mobile .btn_inst {
    transition: 0.1s all;
    background: #4e47e5;
    border: 1px solid #4e47e5;
    border-radius: 8px;
    padding: 0px 16px;
    width: auto;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    font-size: 13px;
    line-height: 135%;
    color: #fff;
    margin-left: 0px;
    position: relative;
    cursor: pointer;
    text-align: center;
  }

  .header__mobile .btn_inst::before {
    content: "";
    position: absolute;
    background: url("../img/pdrop.svg");
    background-repeat: no-repeat;
    background-size: cover;
    width: 10px;
    height: 6px;
    right: 20px;
    top: 17px;
    z-index: 9;
  }

  .header__mobile .header__auth {
    display: flex;
    padding: 0px 20px;
  }

  .header__mobile .header__auth a {
    width: 100%;
    padding: 12px 0;
  }

  .header__mobile .header__menu-mob ul {
    padding-left: 0px;
  }

  .header__mobile .header__menu-mob ul li {
    list-style: none;
    margin-bottom: 20px;
  }

  .header__mobile .header__menu-mob ul li a {
    text-decoration: none;
    color: #fff;
    line-height: 135%;
  }

  .mob_additional_menu_instrument {
    overflow: hidden;
    height: 0;
  }

  .header__mob-inst {
    background: rgba(255, 255, 255, 0.13);
    border-radius: 12px;
    margin: 0px 0px;
    margin-top: 16px;
  }

  .openInst {
    display: flex;
  }

  .header__mobile .btn_inst.activeBtn {
    background: #070099;
  }

  .header__mob-inst ul {
    display: flex;
    padding: 10px 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .header__mob-inst ul li {
    list-style: none;
    width: 45%;
  }

  .shadow_block_menu {
    position: absolute;
    width: 100%;
    height: calc(100% + 35px);
    z-index: -1;
  }

  .header__mob-inst ul li a {
    color: #fff;
    font-size: 12px;
    line-height: 135%;
    text-decoration: none;
    padding: 10px 0px;
    display: block;
  }

  .header__forget a {
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.3px;
    font-weight: 400;
    line-height: 135%;
    width: auto;
    text-align: center;
    padding: 10px 20px;
    margin-top: 10px;
    margin-bottom: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
  }

  .openCity {
    display: flex;
  }

  .city-mob {
    height: 0px;
    overflow: hidden;
  }

  .city-mob__container {
    display: flex;
    flex-direction: column;
    margin: 0;
  }

  .city-mob__container .tabs-nav__mob {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    overflow: auto;
    padding-left: 0;
    margin: 0;
    gap: 10px;
  }

  .city-mob__container .tabs-nav__mob li {
    list-style: none;
    width: 48%;
  }

  .city-mob__container .tabs-nav__mob li a {
    border-radius: 12px;
    background: #e9eeff;
    font-family: "Wix Madefor Text", sans-serif;
    display: flex;
    flex-direction: column;
    padding: 10px 12px;
    text-decoration: none;
  }

  .city-mob__container .tabs-nav__mob li.active a {
    list-style: none;
    background: #4e6aff;
  }

  .city-mob__container .tabs-nav__mob li a span {
    font-size: 12px;
    color: #4e6aff;
    font-family: "Wix Madefor Text", sans-serif;
    font: 700;
    line-height: 135%;
  }

  .city-mob__container .tabs-nav__mob li a p {
    font-size: 12px;
    color: #081c62;
    font: 500;
    line-height: 135%;
    margin: 0;
    margin-top: 6px;
  }

  .city-mob__container .tabs-content__mob {
    width: auto;
    padding: 10px 0px;
    height: 328px;
    overflow: scroll;
  }

  .list__country {
    columns: 2 auto;
    column-gap: 80px;
  }

  .list__country li {
    margin-bottom: 15px;
    break-inside: avoid;
  }

  .list__country li a {
    padding-left: 30px;
    min-height: 10px;
  }

  .list__country li a span {
    line-height: 1.3;
    font-size: 13px;
    padding-top: 1px;
  }

  .blue__block-item p {
    font-size: 12px;
  }

  .blue__block-item a {
    font-size: 12px;
  }

  .header-mob__social {
    display: flex;
    flex-direction: column;
    margin: 0px 20px;
    padding: 24px 0px;
    border-top: 1px solid #40c1fe;
    margin-top: 35px;
  }

  .header-mob__social span {
    font-size: 13px;
    color: #fff;
    font-family: "Wix Madefor Text", sans-serif;
    line-height: 135%;
  }

  .header-mob__social ul {
    padding-left: 0px;
    display: flex;
    flex-direction: row;
  }

  .header-mob__social ul li {
    list-style: none;
    margin-right: 12px;
  }

  .openMobile {
    right: 0;
  }

  .blogs__sliders {
    padding-bottom: 60px;
  }

  .proxi_index {
    padding-bottom: 42px;
  }

  .proxi__pagesection .page__title h1 {
    font-size: 32px;
    width: 70%;
    margin: 0 auto 20px auto;
  }

  .review__container {
    flex-direction: column;
    padding: 0 0 0 20px;
  }

  .review__title {
    width: 100%;
    font-size: 24px;
    position: relative;
    left: -10px;
    margin-bottom: 24px;
    text-align: center;
  }

  .review-nav {
    margin: 0 auto;
    left: -40px;
    right: 0;
  }

  .review__sliders-block {
    width: 100%;
  }

  .footer__container {
    flex-direction: unset;
    flex-wrap: wrap;
    padding: 0;
    justify-content: flex-start;
  }

  .footer__logo {
    width: 100%;
    flex-direction: row;
    margin-bottom: 36px;
  }

  .footer__menu ul li a {
    font-size: 12px;
    margin-bottom: 10px;
  }

  .footer__social {
    width: 100%;
    margin-left: 0px;
    margin-top: 20px;
  }

  .footer__bottom-item a {
    margin-right: 0px;
  }

  .footer__bottom {
    flex-direction: column;
    padding-top: 20px;
    gap: 0;
    align-items: flex-start;
  }

  .footer__bottom-item p {
    margin: 0;
  }

  .footer__bottom-item {
    margin-bottom: 11px;
  }

  .footer__logo a {
    width: 48%;
    margin-right: 20px;
  }

  .footer__logo a img {
    max-width: 160px;
    top: 3px;
    margin-right: 12px;
    position: relative;
  }

  .footer__logo p {
    font-size: 12px;
    width: max-content;
  }

  .popup-modal {
    width: 100%;
  }

  .popup-modal.fancybox-content {
    padding: 24px;
  }

  .table-proxi th:nth-of-type(9) {
    display: table-cell;
  }

  .header__avatar {
    display: none;
  }

  .header__logout {
    display: none;
  }

  .header__message {
    margin-right: 0px;
  }

  .news__slider {
    padding: 24px 24px 80px 24px;
  }

  .news__slider .swiper-button-next {
    top: 90%;
    z-index: 10;
    right: 12%;
  }

  .news__slider .swiper-pagination-bullets.swiper-pagination-horizontal {
    margin-left: 0;
    margin-right: 0;
  }

  .news__slider .swiper-button-prev {
    z-index: 10;
    top: 90%;
    left: 12%;
  }

  .news__slider .swiper-pagination {
    bottom: 30px;
  }

  .news__block {
    padding: 24px 24px;
  }

  .news__block-title {
    font-size: 18px;
  }

  .news__item-title a {
    font-size: 16px;
  }

  .news__item-descr {
    font-size: 12px;
  }

  .form__checks p {
    font-size: 12px;
    margin-right: 0px;
    width: 100%;
    padding-top: 4px;
  }

  .tiket-finance {
    font-size: 12px;
    padding: 0px 10px;
  }

  .tiket-close {
    font-size: 12px;
    padding: 0px 15px;
  }

  .select2-container--main_theme .select2-results__option {
    font-size: 14px;
  }

  .table thead tr {
    width: auto;
  }

  .table th {
    font-size: 12px;
    text-align: left;
  }

  .table tbody tr:nth-child(odd) {
    width: auto;
    display: flex;
    flex-direction: row;
  }

  .table tbody tr:nth-child(even) {
    width: auto;
    display: flex;
    flex-direction: row;
  }

  .referal-info__container {
    flex-direction: column;
    margin-top: 0px;
  }

  .news__slider .swiper-horizontal > .swiper-pagination-bullets,
  .news__slider .swiper-pagination-bullets.swiper-pagination-horizontal,
  .news__slider .swiper-pagination-custom,
  .news__slider .swiper-pagination-fraction {
    bottom: -6px;
    z-index: 2;
  }

  .table tbody tr {
    height: auto;
  }

  .table td {
    padding: 20px 10px 20px 10px;
  }

  .table th:nth-of-type(1) {
    width: 15%;
  }

  .table th:nth-of-type(2) {
    width: 20%;
  }

  .table th:nth-of-type(3) {
    width: 25%;
  }

  .table th:nth-of-type(4) {
    width: 20%;
  }

  .table th:nth-of-type(5) {
    width: 20%;
  }

  .table td:nth-of-type(1) {
    width: 15%;
    font-size: 12px;
    text-align: left;
  }

  .table td:nth-of-type(2) {
    width: 20%;
    font-size: 12px;
    text-align: left;
  }

  .table td:nth-of-type(3) {
    width: 25%;
    font-size: 12px;
    text-align: left;
  }

  .table td:nth-of-type(4) {
    width: 20%;
    font-size: 12px;
    text-align: left;
  }

  .table td:nth-of-type(5) {
    width: 20%;
    font-size: 12px;
    text-align: left;
  }

  .top__profile {
    gap: 0;
    flex-direction: column;
  }

  .select2-container,
  .change_type_select .select2-container {
    min-width: 100%;
  }

  .form__all p {
    font-size: 15px;
  }

  .notification__block {
    padding: 24px 24px;
  }

  .block__top-title {
    font-size: 24px;
  }

  .heade-lk {
    padding-bottom: 0px;
  }

  .dropdown {
    display: inline-block;
    position: relative;
  }

  .filter-button {
    font-size: 14px;
  }

  .dd-button {
    display: flex;
    border: 1px solid #3d65ff;
    border-radius: 8px;
    padding: 10px 15px;
    background: #fff;
    cursor: pointer;
    white-space: nowrap;
    width: auto;
    font-size: 14px;
  }

  .dd-button:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 15px;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid black;
  }

  .dd-button:hover {
    background-color: #eeeeee;
  }

  .dd-input {
    display: none;
  }

  .table thead tr {
    width: 100%;
  }

  .popup-modal__del {
    width: 100%;
    padding: 24px;
  }

  .popup-modal__del .modal__del-buttons .btn-prod__cancel {
    width: 48%;
    font-size: 12px;
  }

  .popup-modal__del .modal__del-buttons .btn-prof__del {
    width: 48%;
    font-size: 12px;
  }

  .popup-modal__mail {
    width: 100%;
    padding: 24px;
  }

  .proxi__tab .proxi__title {
    font-size: 20px;
    width: auto;
    padding: 0px 20px;
  }

  .additional_container {
    gap: 2%;
  }

  .button_pr_p.button_blue,
  .button_pr_p.button_red {
    width: 100%;
  }

  .button_pr_p.button_blue {
    margin-bottom: 5px;
  }

  .button_pr_p {
    width: 49%;
  }

  .table-proxi tbody tr:nth-child(odd) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .table-proxi tbody tr:nth-child(even) {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
  }

  .table-proxi tbody tr td:nth-of-type(1) {
    grid-column: 1;
    grid-row: 1/6;
    width: 20%;
  }

  .table-proxi tbody tr td:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1/6;
    width: 50%;
  }

  .table-proxi td:before {
    content: attr(data-label);
    float: left;
    text-transform: capitalize;
    font-weight: bold;
  }

  .element__prop--separator {
    min-width: 1rem;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
    flex-grow: 1;
    margin: 0 0.1rem;
    border-bottom: 1px dotted #e9eeff;
  }

  .table-proxi tbody [data-label] {
    text-transform: capitalize;
  }

  .table-proxi tbody tr td:nth-of-type(3) {
    grid-column: 3/6;
    width: 90%;
    padding: 10px 10px 10px 10px;
    grid-row: 1;
    display: flex;
    justify-content: space-between;
  }

  .table-proxi tbody tr td:nth-of-type(4) {
    grid-column: 3/6;
    grid-row: 2;
    width: 90%;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
  }

  .table-proxi tbody tr td:nth-of-type(5) {
    grid-column: 3/6;
    grid-row: 3;
    width: 90%;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
  }

  .table-proxi tbody tr td:nth-of-type(6) {
    grid-column: 3/6;
    grid-row: 4;
    width: 90%;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
  }

  .table-proxi tbody tr td:nth-of-type(7) {
    grid-column: 3/6;
    grid-row: 5;
    width: 90%;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
  }

  .table-proxi tbody tr td:nth-of-type(8) {
    grid-column: 3/6;
    grid-row: 6;
    width: 90%;
    padding: 10px 10px 10px 10px;
    display: flex;
    justify-content: space-between;
  }

  .table-proxi th:nth-of-type(3) {
    width: 0;
    display: none;
  }

  .table-proxi th:nth-of-type(4) {
    width: 0;
    display: none;
  }

  .table-proxi th:nth-of-type(5) {
    width: 0;
    display: none;
  }

  .table-proxi th:nth-of-type(6) {
    width: 0;
    display: none;
  }

  .table-proxi th:nth-of-type(7) {
    width: 0;
    display: none;
  }

  .table-proxi th:nth-of-type(8) {
    width: 0;
    display: none;
  }

  .table-proxi th:nth-of-type(1) {
    width: 33%;
  }

  .table-proxi th:nth-of-type(2) {
    width: 40%;
  }

  .table-proxi th:nth-of-type(9) {
    width: 75%;
  }

  .tooltip__container {
    padding-top: 20px;
  }

  .main__bottom-list {
    display: none;
  }

  .tooltip__container {
    display: block;
  }

  h1 {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }

  canvas {
    margin-top: 20px;
  }

  .btn {
    max-width: 100%;
  }

  textarea#proxyInput {
    box-sizing: border-box;
    min-width: 0;
    max-width: 100%;
    overflow-x: auto;
  }

  .proxy-container-proxychecker {
    flex-direction: column;
    width: 100%;
    padding: 0 8px;
    box-sizing: border-box;
  }

  .additional_block {
    height: auto;
    overflow: hidden;
  }
}

@media (max-width: 500px) {
  .planet {
    transform: translate(-10.39vw, -4.83vw);
  }

  .planet__anim {
    width: 62%;
    left: 53%;
  }
}

@media (max-width: 390px) {
  .blue__block-item,
  .plit__item-text ul li {
    width: 40%;
  }
}

/* Список «Характеристики» в карточке тарифа на узких экранах.
   Две колонки там не помещаются физически: у li к width: 45% добавляется
   padding-left: 10px при content-box, то есть строке нужно 90% + 20px + gap,
   а ширина карточки на 390px — всего ~262px. Элементы срывались в один
   столбец сами, но сдвиг чётных (left: 15px) при этом оставался и читался как
   вложенный подпункт, а текст ломался посреди слова («Мбит/ с»).
   Поэтому ниже 500px — честная одна колонка.
   .parthner_p исключён: у него своя сетка и свой сброс сдвига. */
@media (max-width: 500px) {
  .plit__item-text:not(.parthner_p) ul {
    gap: 8px;
  }

  .plit__item-text:not(.parthner_p) ul li,
  .plit__item-text:not(.parthner_p) ul li:nth-child(2n + 0) {
    width: 100%;
    left: 0;
  }
}

@media (max-width: 768px) {
  #popup_export_format .form-control {
    font-size: 16px !important;
    min-height: 44px !important;
    border: none !important;
    background: #e9eeff !important;
  }

  #popup_export_format .select2-container .select2-selection--single {
    height: 44px !important;
    font-size: 16px !important;
    border: none !important;
    background: #e9eeff !important;
  }

  #popup_export_format .select2-container .select2-selection__rendered {
    line-height: 44px !important;
  }

  #popup_export_format .select2-container .select2-selection--single,
  #popup_export_format .form-control {
    box-shadow: none !important;
    outline: none !important;
  }
}

@media (max-width: 820px) {
  .pagination {
    flex-wrap: wrap;
    justify-content: center;
  }

  .page-item {
    margin: 2px;
  }

  .page-link {
    padding: 0.4rem 0.6rem;
    font-size: 12px;
  }
}

/* INP optimization: CSS transitions instead of jQuery .animate() */
.proxi__tabs,
.additional_block,
.city-mob,
.mob_additional_menu_instrument {
  transition: height 0.3s ease;
  overflow: hidden;
}

/* ========== RESIDENTIAL SLIDER (homepage tab) ==========
 * Figma-style calculator with snapping slider (1/3/10/25/50/100 GB),
 * sidebar info cards, and a full-width "Все тарифы" strip beneath.
 * The strip is intentionally scoped under .rs-residential so it only
 * renders inside the residential tab content.
 */
.rs-residential {
  display: flex; flex-direction: column; gap: 16px;
  font-family: "Wix Madefor Text", sans-serif;
  width: 100%;
}
.rs-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 20px;
}

/* ── Calculator card ───────────────────────────────────────────── */
.rs-calc {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, #1A2280 0%, #0F1B5C 100%);
  border-radius: 12px;
  padding: 36px 56px;
  color: #fff;
  min-height: 360px;
  display: flex; flex-direction: column;
}
.rs-calc__glow {
  position: absolute; pointer-events: none; z-index: 0;
}
.rs-calc__glow--cyan {
  width: 460px; height: 320px; left: -120px; top: 20px;
  background: radial-gradient(ellipse at center, rgba(113,195,255,0.35), transparent 65%);
}
.rs-calc__glow--violet {
  width: 380px; height: 380px; right: -100px; top: -80px;
  background: radial-gradient(circle at center, rgba(70,39,255,0.45), transparent 60%);
}
.rs-calc__head { position: relative; z-index: 1; margin-bottom: 28px; }
.rs-calc__title {
  font-family: "Geologica", sans-serif;
  font-size: 22px; font-weight: 500; color: #fff;
  margin: 0 0 6px;
}
.rs-calc__sub {
  font-size: 14px; color: rgba(233,238,255,0.75);
  max-width: 480px; margin: 0; line-height: 1.5;
}

/* ── Readout chips ─────────────────────────────────────────────── */
.rs-chips {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-bottom: 30px;
}
.rs-chip {
  background: #E9EEFF;
  border-radius: 8px;
  padding: 10px 14px;
}
.rs-chip__lbl {
  font-size: 11px; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.6px;
  color: #5a6a9e; margin-bottom: 2px;
}
.rs-chip__val {
  font-size: 18px; font-weight: 600;
  color: #142974; font-variant-numeric: tabular-nums;
}

/* ── Slider ────────────────────────────────────────────────────── */
.rs-slider { position: relative; z-index: 1; margin-bottom: 32px; }
.rs-slider__track {
  position: relative; height: 6px;
  background: rgba(233,238,255,0.18);
  border-radius: 999px;
  /* Block native pan/zoom so dragging the thumb doesn't scroll the page on mobile. */
  touch-action: none;
}
.rs-slider__fill {
  position: absolute; left: 0; top: 0; bottom: 0;
  background: linear-gradient(90deg, #86C5FF, #2749FF);
  border-radius: 999px;
  transition: width 0.15s ease;
}
.rs-slider__thumb {
  position: absolute; top: 50%;
  transform: translate(-50%, -50%);
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 4px solid #2749FF;
  box-shadow: 0 2px 8px rgba(39,73,255,0.45);
  cursor: grab;
  transition: left 0.15s ease;
}
/* While the user is actively dragging, ditch the snap-back transition and
   switch the cursor — otherwise the thumb visibly lags behind the cursor. */
.rs-slider--dragging .rs-slider__thumb,
.rs-slider--dragging .rs-slider__fill { transition: none; }
.rs-slider--dragging .rs-slider__thumb { cursor: grabbing; }
.rs-slider__hit {
  position: absolute; top: -14px;
  transform: translateX(-50%);
  width: 44px; height: 32px;
  cursor: pointer;
}
.rs-slider__labels {
  display: flex; justify-content: space-between;
  margin-top: 14px;
  font-size: 12px; font-variant-numeric: tabular-nums;
}
.rs-slider__lbl {
  cursor: pointer; transition: color 0.15s;
  color: rgba(233,238,255,0.55); font-weight: 500;
}
.rs-slider__lbl.is-active { color: #fff; font-weight: 700; }

/* ── Footer: discount + total + CTA ────────────────────────────── */
.rs-calc__foot {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 24px;
  margin-top: auto;
}
.rs-calc__foot-info { min-width: 0; }
.rs-calc__discount {
  display: inline-flex; align-items: center; gap: 8px;
  margin-bottom: 4px;
  font-size: 12px; font-weight: 500; color: #fff;
}
.rs-info-dot {
  width: 14px; height: 14px; border-radius: 50%;
  border: 0.5px solid rgba(255,255,255,0.7);
  display: inline-grid; place-items: center;
  font-size: 9px; color: rgba(255,255,255,0.7);
  font-style: italic; font-family: serif;
}
.rs-calc__total {
  font-size: 18px; font-weight: 600; color: #fff;
}
.rs-calc__total-amount { font-size: 22px; font-variant-numeric: tabular-nums; }
.rs-cta {
  display: inline-block; text-decoration: none; text-align: center;
  background: linear-gradient(90.03deg, #86C5FF -3.9%, #2749FF 103.91%);
  color: #fff !important;
  border: none; border-radius: 8px;
  padding: 12px 60px;
  font-size: 16px; font-weight: 600;
  font-family: "Wix Madefor Text", sans-serif;
  cursor: pointer; white-space: nowrap;
  transition: filter 0.15s;
}
.rs-cta:hover { filter: brightness(1.05); color: #fff; }

/* ── Sidebar info cards ────────────────────────────────────────── */
.rs-side { display: flex; flex-direction: column; gap: 16px; }
.rs-info {
  border-radius: 12px; padding: 24px 28px; color: #fff;
}
.rs-info--blue   { background: #4E6AFF; }
.rs-info--violet { background: #8566FE; }
.rs-info h3 {
  margin: 0 0 12px; padding: 0;
  font-family: "Geologica", sans-serif;
  font-size: 18px; font-weight: 500; color: #fff;
}
.rs-info p { margin: 0; font-size: 14px; line-height: 1.6; }
.rs-info__grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px 20px; font-size: 12px;
}
.rs-info__item { display: flex; align-items: center; gap: 8px; }
.rs-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: #fff; flex: none;
}

/* ── Bottom strip: full tariff matrix ──────────────────────────── */
.rs-strip {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #d8dffa;
  padding: 18px 22px;
}
.rs-strip__head {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.rs-strip__title { font-size: 13px; color: #3a4a8a; font-weight: 600; }
.rs-strip__hint  { font-size: 12px; color: #8a93b8; }
.rs-strip__grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 10px;
}
.rs-tile {
  position: relative;
  background: #fff;
  border: 1px solid #d8dffa;
  border-radius: 10px;
  padding: 12px 10px;
  cursor: pointer; text-align: left;
  font-family: inherit;
  transition: all 0.15s;
}
.rs-tile:hover { border-color: #3D65FF; }
.rs-tile--active {
  background: #E9EEFF;
  border-color: #3D65FF;
}
.rs-tile__pop {
  position: absolute; top: -8px; right: 8px;
  background: linear-gradient(90.03deg, #86C5FF -3.9%, #2749FF 103.91%);
  color: #fff; font-size: 9px; font-weight: 600;
  padding: 2px 8px; border-radius: 999px;
  letter-spacing: 0.3px;
}
.rs-tile__name {
  font-size: 11px; color: #8a93b8;
  text-transform: uppercase; letter-spacing: 0.6px;
}
.rs-tile__gb {
  font-size: 18px; font-weight: 700;
  margin-top: 2px; color: #081C62;
  font-variant-numeric: tabular-nums;
}
.rs-tile__gb span { font-size: 11px; color: #8a93b8; font-weight: 400; }
.rs-tile--active .rs-tile__gb { color: #2749FF; }
.rs-tile__price {
  font-size: 12px; color: #3a4a8a;
  margin-top: 4px; font-variant-numeric: tabular-nums;
}

/* ── Trial link ────────────────────────────────────────────────── */
.rs-trial { text-align: center; margin: 4px 0 0; }
.rs-trial a {
  color: #4e6aff; font-weight: 500;
  text-decoration: underline; font-size: 14px;
}
.rs-trial a:hover { color: #2749ff; }

/* ── Responsive ────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .rs-grid { grid-template-columns: 1fr; }
  .rs-side { flex-direction: row; }
  .rs-side > .rs-info { flex: 1; }
  .rs-strip__grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .rs-calc { padding: 24px 20px; }
  .rs-chips { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .rs-chip { padding: 8px 10px; }
  .rs-chip__val { font-size: 14px; }
  .rs-chip__lbl { font-size: 10px; }
  .rs-calc__foot { grid-template-columns: 1fr; gap: 14px; }
  .rs-cta { padding: 12px 24px; width: 100%; }
  .rs-side { flex-direction: column; }
  .rs-strip__grid { grid-template-columns: repeat(2, 1fr); }
  .rs-slider__labels { font-size: 11px; }
}
@media (max-width: 480px) {
  .rs-strip__grid { grid-template-columns: 1fr 1fr; }
  .rs-calc__total-amount { font-size: 18px; }
}
