* {
  padding: 0;
  margin: 0;
  border: 0;
  scroll-margin-top: 130px;
}
*,
*:before,
*:after {
  box-sizing: border-box;
}
:focus,
:active {
  outline: none;
}
a:focus,
a:active {
  outline: none;
}
html,
body {
  height: 100%;
}
body {
  color: #15181f;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
input,
button,
textarea {
  font-family: inherit;
  font-size: inherit;
}
button {
  cursor: pointer;
  color: inherit;
  background-color: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
ul li {
  list-style: none;
}
img {
  vertical-align: top;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  padding: 0;
}
body {
  font-size: 24px;
  line-height: 28px;
  font-weight: 400;
}
html {
  scroll-behavior: smooth;
}

.page__main .btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 140%;
  text-align: center;
  font-weight: 400;
  border: none;
}

.page__main .btn--red {
  color: #fff;
  background-color: #ed1a3b;
  transition: color 0.25s, background-color 0.25s;
}
.page__main .btn--red:hover {
  background-color: #b22f3a;
  transition: color 0.25s, background-color 0.25s;
}
.page__main .btn--red:active {
  background-color: #b22f3a;
  transition: color 0.25s, background-color 0.25s;
}
.page__main .btn--red[disabled] {
  background-color: #c9c9c9;
  color: #808284;
}
.page__main .btn--red-border {
  padding: 13px 24px;
  color: #ed1a3b;
  background-color: transparent;
  border: 1px solid #ed1a3b;
}
.page__main .btn--gray-border {
  color: #15181f;
  border: 1px solid rgba(21, 24, 31, 0.1);

  background-color: transparent;
}
.page__main .btn--white {
  color: #15181f;
  background-color: #fff;
  transition: color 0.25s, background-color 0.25s;
}
.page__main .btn--bordered {
  border: 1px solid #15181f1a;
  transition: 0.25s border-color;
}
.page__main .btn--bordered:hover {
  border-color: #ed1a3b;
  transition: 0.25s border-color;
}
.page__main .btn--white[disabled] {
  background-color: #c9c9c9;
  color: #a1a3a5;
  cursor: default;
}
.page__main .btn--small {
  padding: 10px 20px;
}
.page__main .btn--small.btn--red-border {
  padding: 9px 20px;
}
@media (max-width: 768px) {
  .page__main .btn {
    padding: 10px 21px;
  }
}
.container,
[class*='__container'] {
  margin: 0 auto;
  max-width: 1256px;
  padding: 0 12px;
}
@media (max-width: 1200px) {
  .container,
  [class*='__container'] {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .container,
  [class*='__container'] {
    max-width: 100%;
    padding: 0 12px;
  }
}
[class*='__container--full'] {
  padding: 0 24px;
  max-width: none;
  width: 100%;
}
@media (max-width: 1200) {
  [class*='__container--full'] {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  [class*='__container--full'] {
    max-width: 100%;
    padding: 0 12px;
  }
}

.title {
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0;
}

.subtitle {
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}

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

  .subtitle {
    font-size: 18px;
  }
}

.bg-gray {
  background-color: rgb(243, 243, 243);
}

.white-corners {
  position: relative;
}

.white-corners::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: transparent;
  box-shadow: 100px 0 0 0 rgba(21, 24, 31, 0.05);
  border-top-right-radius: 60px;
  transform: scaleX(-1);
}

.white-corners::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 60px;
  width: 100%;
  background: transparent;
  box-shadow: 100px 0 0 0 rgba(21, 24, 31, 0.05);
  border-top-right-radius: 60px;
}

@media (max-width: 768px) {
  .white-corners::before {
    height: 32px;
  }

  .white-corners::after {
    height: 32px;
  }
}

@media (max-width: 600px) {
  .white-corners::before {
    height: 24px;
  }

  .white-corners::after {
    height: 24px;
  }
}

.gray-corners {
  border-radius: 60px 60px 0 0;
}

@media (max-width: 768px) {
  .gray-corners {
    border-radius: 32px 32px 0 0;
  }
}

@media (max-width: 600px) {
  .gray-corners {
    border-radius: 24px 24px 0 0;
  }
}

.page__main:has(.loyalty-page) {
  padding-bottom: 0;
}

.request {
  padding: 40px 0;
}
@media (max-width: 768px) {
  .request {
    padding: 28px 0 56px 0;
  }
}
.request__wrapper {
  position: relative;
  display: flex;
  min-height: 196px;
  padding: 24px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 32px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .request__wrapper {
    display: flex;
    flex-direction: column;
    min-height: 244px;
    padding: 24px;
    border-radius: 24px;
  }
}
@media (max-width: 600px) {
  .request__wrapper {
    padding: 16px;
  }
}
.request__wrapper::after {
  position: absolute;
  right: -429px;
  top: -80px;
  display: block;
  width: 1074px;
  height: 451px;
  background-image: url('data:image/svg+xml,%3Csvg width=%271075%27 height=%27451%27 viewBox=%270 0 1075 451%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath opacity=%270.2%27 fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M868.639 228.657C1025.99 410.56 1074.61 451 1074.61 451H848.14C786.418 451 729.467 421.403 684.038 371.699L636.402 317.147H332.92L380.103 260.359H588.465L497.136 155.125H466.868L595.933 0H684.434C684.434 0 711.212 46.7537 868.639 228.657ZM532.494 0L381.97 180.832L153.542 451H0L383.761 0H532.494Z%27 fill=%27white%27/%3E%3C/svg%3E%0A');
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}
@media (max-width: 768px) {
  .request__wrapper::after {
    width: 657px;
    height: 276px;
    right: -146px;
    top: 20px;
  }
}
@media (max-width: 600px) {
  .request__wrapper::after {
    right: -292px;
  }
}
.request--gradient .request__wrapper {
  background: linear-gradient(rgba(21, 24, 31, 0.1), rgba(21, 24, 31, 0.1)),
    linear-gradient(135deg, rgba(21, 24, 31, 0) 0%, rgba(21, 24, 31, 0.2) 100%);
}
.request--dark .request__wrapper::after {
  background-image: url('data:image/svg+xml,%3Csvg width=%271076%27 height=%27451%27 viewBox=%270 0 1076 451%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath opacity=%270.06%27 fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M869.336 228.657C1026.69 410.56 1075.3 451 1075.3 451H848.837C787.115 451 730.163 421.403 684.734 371.699L637.099 317.147H333.617L380.799 260.359H589.162L497.832 155.125H467.565L596.63 0H685.13C685.13 0 711.909 46.7537 869.336 228.657ZM533.191 0L382.666 180.832L154.239 451H0.696777L384.458 0H533.191Z%27 fill=%27%2315181F%27/%3E%3C/svg%3E%0A');
}
.request__content,
.request__button {
  position: relative;
  z-index: 1;
}
.request__title {
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
}
@media (max-width: 768px) {
  .request__title {
    margin-bottom: 8px;
  }
}
.request__text {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
}
.request__button {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  height: max-content;
  margin-left: auto;
  margin-top: auto;
}
@media (max-width: 768px) {
  .request__button {
    margin-left: 0;
    margin-top: 24px;
  }
}
@media (max-width: 480px) {
  .request__button .btn + .btn {
    width: calc(50% - 27.7px);
    padding: 10px;
  }

  .request__button .btn {
    flex-grow: 1;
  }
}
.request__content {
  width: 50%;
}
@media (max-width: 768px) {
  .request__content {
    width: 100%;
    margin-bottom: auto;
  }
}

.rates-ui .topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  margin-bottom: 0.75rem;
}

.rates-ui .modes {
  display: flex;
  gap: 0.5rem;
}

.rates-ui .modes button {
  padding: 0.55rem 0.9rem;
  border: 1px solid #e5e7eb;
  background: #fff;
  border-radius: 0.7rem;
  cursor: pointer;
  white-space: nowrap;
}

.rates-ui .modes button.active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.rates-ui .controls {
  display: flex;
  gap: 8px;
  align-items: center;
}

.rates-ui .field {
  display: flex;
  flex-direction: column;
  height: 48px;
}

.rates-ui .field.inline > span {
  color: #6b7280;
}

.rates-ui .ui-select {
  position: relative;
  height: 100%;
  min-width: 120px;
}

#regionSelect {
  min-width: 200px;
}

.rates-ui .ui-select__btn {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border: 1px solid #15181f1a;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
}

.mode-btn {
  height: 48px;
}

.rates-ui .ui-select__btn .label {
  display: flex;
  align-items: center;
  gap: 12px;
  overflow: hidden;
}

.rates-ui .ui-select__btn .label .flag {
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.rates-ui .ui-select__btn .label .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.rates-ui .ui-select__list {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  padding: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  max-height: 260px;
  overflow: auto;
  display: none;
}

.rates-ui .ui-select.open .ui-select__list {
  display: block;
}

.rates-ui .ui-select__opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  cursor: pointer;
  border-radius: 8px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.rates-ui .ui-select__opt:hover {
  background: #15181f0d;
}

.ui-select .flag {
  display: flex;
  align-items: center;
}

.ui-select .flag svg {
  width: 24px;
  height: 24px;
}

.rates-ui .badge {
  display: inline-block;
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  background: #f3f4f6;
  font-size: 0.78rem;
}

.rates-ui .cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.rates-ui .card {
  border: 1px solid #e5e7eb;
  border-radius: 1rem;
  padding: 1rem;
  background: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.rates-ui .card h4 {
  margin: 0 0 0.5rem;
  font-size: 0.95rem;
}

.rates-ui .card .value {
  font-size: 0.92rem;
  line-height: 1.35;
  word-break: break-word;
}

.rates-ui .empty {
  padding: 1rem;
  border: 1px dashed #d1d5db;
  color: #6b7280;
  border-radius: 0.8rem;
  background: #fafafa;
}

.rates-ui img.preview {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
  margin: 0.4rem 0;
}

.hidden {
  display: none !important;
}

.tariffs-select {
  position: relative;
  width: 200px;
  height: 48px;
}

.tariffs-select__wrap {
  height: 100%;
}

.tariffs-select[hidden] {
  display: none !important;
}

.tariffs-select__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  height: 100%;
  width: 100%;
  border: 1px solid #15181f1a;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.tariffs-select__toggle-label {
  display: flex;
  align-items: center;
  gap: 12px;
}

.tariffs-select__option-text {
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.tariffs-select__flag {
  width: 24px;
  height: 24px;
}

.tariffs-select__flag--hidden {
  display: none;
}

.tariffs-select__dropdown {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: none;
  max-height: 260px;
  overflow: auto;
  border-radius: 16px;
}

.tariffs-select__list {
  list-style: none;
  padding: 16px;
}

.tariffs-select__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 12px;
  cursor: pointer;
  border-radius: 8px;
}

.tariffs-select__option:hover {
  background: #15181f0d;
}

.tariffs-select__option-flag {
  width: 24px;
  height: 24px;
}

.tariffs-tabs {
  display: flex;
  gap: 8px;
}

.tariffs-tabs__btn {
  height: 48px;
}

.tariffs-tabs__btn--active {
  color: #15181f;
}

.tariffs-section__title {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 600;
  line-height: 34px;
  margin-bottom: 24px;
}

.tariffs-section__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  margin-top: 24px;
}

.tabs__list {
  display: inline-flex;
  gap: 24px;
}

.tabs__btn {
  padding-bottom: 12px;
  font-weight: 600;
  font-size: 32px;
  line-height: 120%;
  letter-spacing: 0%;
  color: #15181f66;
  border-bottom: 2px solid transparent;
}

.tabs__btn--active {
  border-color: #ed1a3b;
  color: #15181f;
}

.tabs__panels {
  margin-top: 40px;
}

.tabs__panel[hidden] {
  display: none;
}

.tariffs-page__header-banner {
  position: relative;
  display: flex;
  justify-content: space-between;
  min-height: 420px;
  padding: 40px;
  background-color: rgba(21, 24, 31, 0.05);
  border-radius: 32px;
  overflow: hidden;
}

.tariffs-page__header-banner::after {
  background-image: url('data:image/svg+xml,%3Csvg width=%271076%27 height=%27451%27 viewBox=%270 0 1076 451%27 fill=%27none%27 xmlns=%27http://www.w3.org/2000/svg%27%3E%3Cpath opacity=%270.06%27 fill-rule=%27evenodd%27 clip-rule=%27evenodd%27 d=%27M869.336 228.657C1026.69 410.56 1075.3 451 1075.3 451H848.837C787.115 451 730.163 421.403 684.734 371.699L637.099 317.147H333.617L380.799 260.359H589.162L497.832 155.125H467.565L596.63 0H685.13C685.13 0 711.909 46.7537 869.336 228.657ZM533.191 0L382.666 180.832L154.239 451H0.696777L384.458 0H533.191Z%27 fill=%27%2315181F%27/%3E%3C/svg%3E%0A');
  position: absolute;
  right: -340px;
  top: 0px;
  display: block;
  width: 1074px;
  height: 451px;
  background-repeat: no-repeat;
  background-size: cover;
  content: '';
}

.tariffs-page__header-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 48.96%;
  font-weight: 400;
  font-size: 20px;
  line-height: 140%;
  z-index: 2;
}

.tariffs-page__header-banner-title {
  margin-bottom: 16px;
}

.tariffs-page__header-banner-subtitle {
  margin-bottom: auto;
}

.tariffs-page__header-banner-text {
  font-weight: 300;
  font-size: 16px;
  line-height: 140%;
}

.tariffs-page__header-banner-text a {
  font-weight: 400;
  color: #ed1a3b;
  text-decoration: underline;
}

.tariffs-page__header-banner-btn {
  display: inline-block;
  width: max-content;
  min-width: 132px;
  margin-top: 24px;
}

.tariffs-page__header-img {
  position: relative;
  right: 14.06%;
  z-index: 1;
  display: flex;
  align-items: center;
}

.tariffs-page__tabs {
  margin-top: 80px;
}

.tariffs-page__controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tariffs-page__desc {
  margin-top: 40px;
  font-size: 28px;
  font-weight: 600;
  line-height: 120%;
}

.tariffs-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-top: 40px;
}

.tariffs-cards__item {
  width: calc(100% / 3 - 6px);
}

.tariffs-card {
  display: flex;
  flex-direction: column;
  height: auto;
  padding: 32px;
  border: 1px solid #15181f1a;
  border-radius: 32px;
}

.tariffs-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.tariffs-card__download {
  margin-left: auto;
}

.tariffs-card__title {
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

.tariffs-card__text {
  margin-bottom: 24px;
  font-weight: 300;
  font-size: 14px;
  line-height: 140%;
  letter-spacing: 0%;
}

.tariffs-card__actions {
  margin-top: auto;
}

@media (max-width: 992px) {
  .tariffs-page__header-img {
    right: 0;
  }

  .tariffs-page__tabs {
    margin-top: 56px;
  }

  .tabs__btn {
    font-weight: 600;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0%;
  }

  .tabs__panels {
    margin-top: 32px;
  }

  .tariffs-page__controls {
    flex-wrap: wrap;
  }

  .tariffs-card {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  .page__main {
    margin-top: 150px;
  }

  .breadcrumbs {
    display: none;
  }
  .tariffs-page__header-banner {
    padding: 32px;
  }
  .tariffs-page__header-banner-title {
    margin-bottom: 8px;
  }
  .tariffs-page__header-banner-subtitle {
    font-size: 18px;
  }
  .tariffs-page__header-banner-text {
    font-size: 12px;
    line-height: 140%;
  }
  .tariffs-page__header-banner-text a {
    text-decoration: none;
  }

  .tariffs-page__controls {
    flex-direction: column;
    align-items: flex-start;
  }

  .tariffs-cards__item {
    width: calc(50% - 4px);
  }

  .tariffs-card__text {
    font-size: 12px;
  }

  .tariffs-page__desc {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .tariffs-page__header-banner {
    padding: 24px;
  }

  .tariffs-page__header-content {
    width: 100%;
  }

  .tariffs-page__header-banner-title {
    font-weight: 400;
    font-size: 18px;
  }

  .tariffs-page__header-banner-subtitle {
    margin-bottom: 180px;
    font-weight: 400;
    font-size: 16px;
  }

  .tariffs-page__header-img {
    position: absolute;
    left: 50%;
    width: 110px;
    top: calc(50% - 20px);
    transform: translate(-50%, -50%);
  }

  .tariffs-page__header-banner-btn {
    width: 100%;
  }

  .tariffs-cards__item {
    width: calc(100%);
  }

  .tariffs-tabs {
    overflow-y: auto;
  }

  .tariffs-card {
    padding: 16px;
    border-radius: 24px;
  }

  .tariffs-card__actions {
    display: flex;
    gap: 8px;
  }

  .tariffs-card__actions .btn {
    flex-grow: 1;
  }

  .tariffs-page__controls-wrapper {
    overflow-y: auto;
    width: calc(100% + 12px);
    padding-right: 12px;
  }

  .controls {
    flex-wrap: wrap;
    width: 100%;
  }

  .controls .field {
    flex-grow: 1;
  }

  #regionField {
    width: 100%;
  }
}
