@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #050505;
}

::-webkit-scrollbar-thumb {
  background-image: linear-gradient(180deg, #F6B63A 0%, #FF9F1C 60%, #F6D06B 100%);
  border-radius: 20px;
  border: 3px solid #020202;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Montserrat", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 16px;
  /* Базовый фон страницы — чистый чёрный из ТЗ */
  background: #020202;
  color: #cbcbcb;
}

body {
  background: #020202;
}

/* Убираем стрелки у числовых инпутов (суммы обмена) */
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;
}

header {
  padding: 20px 0;
}

/* Капсула‑хедер для главной и страницы заявки */
.home-page header,
.order-page header {
  /* Тёмная полупрозрачная плашка, ближе к стилю логотипа */
  background: rgba(2, 2, 2, 0.9);
  border-radius: 999px;
  border: 1px solid rgba(246, 182, 58, 0.18);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

/* Центрируем десктопный логотип в хедере (между меню слева и кнопкой справа) — только на главной */
.home-page header .uk-grid-small.uk-child-width-expand {
  position: relative;
}

.home-page header .uk-width-auto.uk-visible@m {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

/* На странице заявки делаем выравнивание через flex, без абсолютного позиционирования */
.order-page header .uk-grid-small.uk-child-width-expand {
  display: flex;
  align-items: center;
}

.order-page header .uk-width-auto.uk-visible@m {
  position: static;
  transform: none;
  margin: 0 auto;
}

.uk-border-rounded {
  border-radius: 30px;
}

.uk-text-primary {
  /* Тёплое золото как в логотипе */
  color: #F6B63A !important;
}

.uk-h1,
.uk-h2,
.uk-h3,
.uk-h4,
.uk-h5,
.uk-h6,
.uk-heading-2xlarge,
.uk-heading-3xlarge,
.uk-heading-large,
.uk-heading-medium,
.uk-heading-small,
.uk-heading-xlarge,
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: -apple-system, BlinkMacSystemFont, "Montserrat", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  color: #f1f1f1;
}

.uk-text-lead {
  font-size: 1.5rem;
  color: #f1f1f1;
}

.btn.btn-second {
  color: #191C21 !important;
  font-weight: 400;
  background: #E0E0E0;
}

.btn.exbtn {
  font-weight: 600;
  font-size: 18px;
  padding: 15px 30px;
  border: 0 solid #191c21;
}

.btn.exbtn img {
  width: 30px;
  height: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border: none;
  border-radius: 9999px;
  font-size: 18px;
  font-weight: 500;
  color: #191C21 !important;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn img {
  width: 24px;
  height: 24px;
}

.uk-heading-xlarge {
  font-size: 4rem;
}

.gradient-green {
  /* Золотой градиент кнопок в духе Crypto Duck */
  background: linear-gradient(90deg, #F6B63A 0%, #FF9F1C 50%, #F6D06B 100%);
}

.gradient-green:hover {
  background: linear-gradient(90deg, #FFD56B 0%, #FFB035 50%, #F6B63A 100%);
}

.gradient-sd {
  /* Тёмный сине‑графитовый фон для вторичных кнопок/блоков */
  background: linear-gradient(90deg, #0B1020 0%, #111827 40%, #020309 100%);
}

.exchange-card {
  border-radius: 12px;
  text-align: center;
  color: #fff;
  /* Золотисто‑тёмный фон вместо старого зелёного cardbg */
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 182, 58, 0.22) 0%, transparent 35%),
    radial-gradient(circle at 90% 100%, rgba(255, 159, 28, 0.18) 0%, transparent 40%),
    radial-gradient(circle at center, #111827 0%, #05060a 45%, #020202 100%);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.75);
}

.exchange-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
}

.exchange-line {
  width: 50px;
  height: 3px;
  margin: 0 auto 20px;
  background: linear-gradient(90deg, #F6B63A, #FF9F1C);
  border-radius: 2px;
}

.exchange-text {
  font-size: 14px;
  line-height: 1.2;
  color: #cfd1d3;
}

.gradient-wrapper {
  position: relative;
  display: block;
  border-radius: 30px;
  overflow: hidden;
  padding: 2px;
}

.gradient-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  /* Неоновый ореол вокруг карточек, ближе к жёлто‑оранжевому */
  background: conic-gradient(from 0deg,
      #F6B63A,
      #FF9F1C,
      #F6D06B,
      #F6B63A);
  animation: rotategr 8s linear infinite;
  filter: blur(20px);
  z-index: 0;
}

.gradient-overlay {
  position: relative;
  z-index: 1;
  border-radius: inherit;
  /* Тёмный фон карточек ближе к цветам ночного города */
  background: radial-gradient(circle at top, #111827 0%, #05060a 40%, #020309 100%);
  padding: 30px 20px;
}

@keyframes rotategr {
  to {
    transform: rotate(360deg);
  }
}

.plus-icon {
  display: block;
  width: 40px;
  animation: rotategr 60s linear infinite;
}

.floating-image {
  width: 80px;
  animation: floatUpDown 3s ease-in-out infinite;
}

.floating-up {
  animation: floatUpDown 3s ease-in-out infinite;
}

.floating-up-2 {
  animation: floatUpDown 4s ease-in-out infinite;
}

/* CRM: колонка Менеджер — визуал для "Не назначена" */
.manager-unassigned {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  background-color: #fef3c7; /* светло-жёлтый фон */
  color: #92400e;            /* тёмно-оранжевый текст */
}

/* Сильный цветокор для первой карточки: убираем зелень, добавляем золото */
img[src$="/static/custom/img/card/1.png"] {
  filter:
    sepia(1)
    hue-rotate(15deg)
    saturate(2.4)
    brightness(1.05)
    contrast(1.1)
    drop-shadow(0 0 26px rgba(246, 182, 58, 0.55));
}

/* Аналогичный цветокор для третьей карточки */
img[src$="/static/custom/img/card/3.png"] {
  filter:
    sepia(1)
    hue-rotate(15deg)
    saturate(2.2)
    brightness(1.03)
    contrast(1.08)
    drop-shadow(0 0 24px rgba(246, 182, 58, 0.5));
}

/* И для второй карточки, чуть мягче по контрасту */
img[src$="/static/custom/img/card/2.png"] {
  filter:
    sepia(1)
    hue-rotate(15deg)
    saturate(2.0)
    brightness(1.04)
    contrast(1.06)
    drop-shadow(0 0 22px rgba(246, 182, 58, 0.45));
}

/* Карта под новый стиль: лёгкий золотой глоу */
img[src$="/static/custom/img/map-icon.svg"] {
  /* Усиливаем золотой оттенок и подсветку для иконки карты */
  filter:
    hue-rotate(315deg)
    saturate(1.4)
    brightness(1.08)
    contrast(1.1)
    drop-shadow(0 0 20px rgba(246, 182, 58, 0.45));
}

/* Круговой график/иконка под новый стиль */
img[src$="/static/custom/img/circle.png"] {
  filter:
    sepia(1)
    hue-rotate(15deg)
    saturate(2.1)
    brightness(1.04)
    contrast(1.08)
    drop-shadow(0 0 22px rgba(246, 182, 58, 0.5));
}

/* Бургер‑меню под общий золотой неон */
img[src$="/static/custom/img/menu.svg"] {
  /* Сдвигаем зелёный в жёлто‑золотой через hue‑rotate + тёплый глоу */
  filter:
    hue-rotate(315deg)
    saturate(1.4)
    brightness(1.1)
    contrast(1.05)
    drop-shadow(0 0 14px rgba(246, 182, 58, 0.45));
}

@keyframes floatUpDown {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0);
  }
}

footer {
  /* Футер в тон основному фону (#020202), без синевы */
  background: #020202;
  padding: 60px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.tg-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(120deg, #111827 0%, #0B1020 40%, #111827 100%);
  border-radius: 999px;
  padding: 10px 10px;
  color: #fff;
  font-size: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.3s ease;
}

.tg-btn img {
  width: 30px;
  height: 30px;
}

.tg-btn:hover {
  background: #23272e;
}

.header-logo img {
  /* Логотип в тоне Crypto Duck: лёгкий золотой глоу и сглаживание */
  filter:
    saturate(1.1)
    contrast(1.05)
    drop-shadow(0 0 26px rgba(246, 182, 58, 0.5));
}

.subfooter a {
  color: #a4a6a5;
  font-weight: 300;
  font-size: 14px;
}

/* Auth bar / modal — стилизуем под общий стиль сайта */
.auth-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 12px;
  position: relative;
}

.auth-bar-label {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
}

.auth-bar span,
.auth-bar-label {
  font-size: 14px;
  color: #cfd1d3;
}

.auth-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width: 640px) {
  .auth-bar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .auth-bar-label {
    position: static;
    transform: none;
    width: 100%;
    text-align: center;
    margin-bottom: 4px;
  }

  .auth-bar-actions {
    justify-content: center;
  }
}

#auth-modal .uk-modal-dialog {
  border-radius: 24px;
  background: #191C21;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

#auth-modal .uk-modal-title {
  font-size: 24px;
  font-weight: 700;
}

#auth-modal .uk-tab>.uk-active>a {
  border-color: transparent;
  /* Активный таб «Войти» в золотом тоне */
  color: #F6B63A;
}

#auth-modal .uk-tab>*>a {
  text-transform: none;
  font-size: 14px;
}

#auth-modal .uk-input {
  background: #111317;
  border-radius: 999px;
  border: 1px solid #2E3137;
  color: #f1f1f1;
}

#auth-modal .uk-input:focus {
  border-color: #F6B63A;
}

#auth-modal .uk-form-label {
  color: #f1f1f1;
  font-weight: 500;
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(246, 182, 58, 1);
    box-shadow: 0 0 0 0 rgba(246, 182, 58, 1);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(246, 182, 58, 0);
    box-shadow: 0 0 0 10px rgba(246, 182, 58, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(246, 182, 58, 0);
    box-shadow: 0 0 0 0 rgba(246, 182, 58, 0);
  }
}

.pulse {
  box-shadow: 0 0 0 rgba(246, 182, 58, 1);
  animation: pulse 2s infinite;
}

.uk-modal {
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.uk-modal-body {
  display: flow-root;
  padding: 25px 25px;
}

.uk-modal-dialog {
  background: rgb(28 30 34 / 70%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 40px;
  border: 1px solid rgb(255 255 255 / 5%);
}

.uk-modal-container .uk-modal-dialog {
  width: 900px;
}

[class*=uk-modal-close-] {
  position: absolute;
  z-index: 1010;
  top: 20px;
  right: 20px;
  padding: 15px;
  background: linear-gradient(90deg, #2E3137 0%, #171A1B 100%);
  border-radius: 50px;
}

.uk-hr,
hr {
  border-top: 1.5px solid rgb(229 229 229 / 15%);
}

.gradient-text {
  /* Золотой неон для главного заголовка, без зелёного */
  background: radial-gradient(circle at 95% 5%, #F6B63A 0%, #FFE4A8 30%, #FF9F1C 70%, #F6D06B 100%);
  background-size: 200% 200%;
  animation: gradientMove 6s ease-in-out infinite;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

@keyframes gradientMove {
  0% {
    background-position: 95% 5%;
  }

  50% {
    background-position: 5% 95%;
  }

  100% {
    background-position: 95% 5%;
  }
}

.uk-offcanvas-bar a {
  color: #191C21;
}

.uk-offcanvas-close {
  position: absolute;
  z-index: 1000;
  top: 20px;
  right: 20px;
  background: #4A7D91;
  padding: 15px;
  background: linear-gradient(90deg, #2E3137 0%, #171A1B 100%);
  border-radius: 50px;
}

.uk-offcanvas-bar {
  background: rgb(28 30 34 / 70%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.uk-offcanvas-bar .uk-nav-primary>li>a {
  color: rgba(255, 255, 255, .9);
}

header.uk-sticky.uk-sticky-fixed {
  background: rgb(28 30 34 / 70%);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 15px 15px;
  border-radius: 40px;
}

.bg-image-1 {
  /* Отключаем старый фон hero, опираемся на общий градиент html/body */
  background-image: none;
}

.bg-image-2 {
  /* Золотистый подсвет для блока адреса (вместо старой текстуры) */
  background-image: none;
  background:
    radial-gradient(circle at top, rgba(246, 182, 58, 0.18) 0%, transparent 45%);
}

/* Секция m3 (статистика) — золотистый фон вместо chartbg.png */
#m3 {
  background-image: none;
  background:
    radial-gradient(circle at 10% -10%, rgba(246, 182, 58, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 90% 110%, rgba(255, 159, 28, 0.16) 0%, transparent 45%);
  background-repeat: no-repeat;
  background-size: cover;
}

.exchange-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  border-radius: 24px;
  padding: 30px 40px;
  /* Фон блока обмена ближе к общей палитре (тёмный + золотое свечение) */
  background: radial-gradient(circle at 95% 5%, rgba(246, 182, 58, 0.22) 0%, #0b1020 30%, #05060a 85%);
  animation: rotateGradient 30s linear infinite;
  background-size: 200% 200%;
}

@keyframes rotateGradient {
  0% {
    background-position: 95% 5%;
  }

  25% {
    background-position: 80% 20%;
  }

  50% {
    background-position: 50% 50%;
  }

  100% {
    background-position: 95% 5%;
  }
}

.exchange-block-left {
  display: flex;
  flex-direction: column;
}

.exchange-block-left label {
  font-size: 20px;
  font-weight: 400;
  opacity: 0.95;
}

.exchange-block-left input {
  font-size: 50px;
  font-weight: 500;
  color: #fff;
  background: transparent;
  border: none;
  outline: none;
  border-radius: 12px;
  width: 200px;
  margin-top: 4px;
  transition: 0.4s ease-out;
}

.exchange-block-left input:hover {
  background: #191C21;
  color: #fff;
}

.exchange-block-left small {
  font-size: 16px;
  opacity: 0.6;
  margin-top: 4px;
}

img.exchange-icon {
  display: block;
  width: 60px;
  border: 2px solid #191c21;
  border-radius: 18px;
}

.currency-select {
  position: relative;
}

.currency-select__trigger {
  background: linear-gradient(90deg, #2E3137 0%, #171A1B 100%);
  border: 2px solid rgb(45 49 41);
  border-radius: 9999px;
  box-shadow: 0 0 8px 2px rgb(0 0 0 / 30%);
  color: #fff;
  padding: 10px 14px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  transition: background 0.4s;
}

.currency-select__trigger:hover {
  background: #171A1B;
}

.currency-select__trigger img {
  width: 30px;
  height: 30px;
  margin-right: 8px;
}

.currency-select__trigger span {
  flex: 1;
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}

.currency-select__trigger .arrow {
  margin-left: 8px;
  transition: transform 0.2s;
}

.currency-select__menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  background: #171A1B;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.25s ease;
  z-index: 10;
}

.currency-select__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  padding: 10px 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.currency-select__item:hover {
  background: #2E3137;
}

.currency-select__item img {
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.currency-select__item span {
  font-size: 16px;
  font-weight: 500;
}

.currency-select__item.active span {
  color: #c3d442;
}

.currency-select.is-open .currency-select__menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.currency-select.is-open .currency-select__trigger .arrow {
  transform: rotate(180deg);
}

.exchange-block--menu-open {
  position: relative;
  z-index: 100;
}

.custom-form .uk-form-label {
  color: #f1f1f1;
  font-weight: 400;
  font-size: 18px;
}

.custom-form .custom-input {
  background: #2B2C2F;
  border: 2px solid rgb(255 255 255 / 15%);
  border-radius: 9999px;
  padding: 15px 30px !important;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  box-shadow: 0 0 10px 3px rgb(0 0 0 / 20%);
}

.custom-form .custom-input::placeholder {
  color: #949A9F;
}

.custom-form .custom-input:focus {
  background: #191C1D;
  border: 2px solid #0194FE;
  color: #fff;
}

.note {
  font-size: 12px;
  color: #aaa;
  margin-top: 4px;
}

.required {
  color: #ff5555;
}

.exchange-total {
  display: flex;
  flex-direction: column;
  color: #fff;
}

.exchange-total-label {
  color: #f1f1f1;
  font-weight: 400;
  font-size: 18px;
}

.exchange-total-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background: transparent;
  gap: 20px;
}

.exchange-total-value {
  font-size: 50px;
  font-weight: 500;
}

.exchange-total-currency {
  display: flex;
  align-items: center;
  background: linear-gradient(90deg, #2E3137 0%, #171A1B 100%);
  border: 2px solid rgb(255 255 255 / 15%);
  border-radius: 9999px;
  box-shadow: 0 0 8px 2px rgb(0 0 0 / 30%);
  padding: 8px 14px;
  gap: 8px;
}

.exchange-total-icon {
  width: 30px;
  height: 30px;
}

.exchange-total-currency span {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
}

.order-info {
  margin: 18px auto;
  color: #e6eef8;
}

.order-title {
  margin: 0 0 12px 0;
  font-size: 22px;
  font-weight: 600;
  color: #ffffff;
}

.order-grid {
  display: grid;
  row-gap: 12px;
  column-gap: 18px;
  grid-template-columns: 1fr;
  margin: 0;
}

.order-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 8px;
}

.order-row dt {
  font-size: 16px;
}

.order-row dd {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  text-align: right;
  min-width: 180px;
}

.order-page .advantages {
  margin-top: 40px;
}

/* Блок «Заявка успешно создана» — по центру страницы */
.order-page .order-success-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.order-page .order-success-block {
  width: 100%;
  max-width: 640px;
  text-align: center;
}
.order-page .order-success-block h1,
.order-page .order-success-block p {
  text-align: center;
}

.order-page footer .uk-grid-small {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 16px;
  column-gap: 24px;
}

.order-page footer .uk-grid-small > div {
  display: flex;
  justify-content: center;
}

@media (max-width: 640px) {
  .header-logo {
    width: 150px;
  }

  .uk-heading-xlarge {
    font-size: 1.5rem;
  }

  .uk-text-lead {
    font-size: 1.1rem;
    color: #f1f1f1;
    line-height: 1.2rem;
  }

  .exchange-block {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    color: #fff;
    border-radius: 15px;
    padding: 10px 10px;
    background: radial-gradient(circle at 95% 5%, #3E4528 0%, #1E2220 25%, #1A1E1F 75%);
    animation: rotateGradient 30s linear infinite;
    background-size: 200% 200%;
    flex-direction: column;
    position: relative;
    z-index: 5;
  }

  .exchange-block--menu-open {
    z-index: 100;
  }

  .exchange-block-left input {
    font-size: 35px;
    font-weight: 600;
    color: #fff;
    border: none;
    outline: none;
    border-radius: 12px;
    width: 100%;
    margin-top: 4px;
    transition: 0.4s ease-out;
  }

  .currency-select__trigger {
    margin-top: 12px;
    border: 1px solid rgb(45 49 41 / 50%);
    border-radius: 12px;
  }

  .exchange-block-left small {
    font-size: 12px;
    opacity: 0.6;
    margin-top: 4px;
    font-weight: 300;
  }

  .exchange-block-left label {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.9;
  }

  img.exchange-icon {
    display: block;
    width: 30px;
    border: 1px solid #191c21;
    margin: 0 auto;
    border-radius: 8px;
  }

  .bg-image-1 {
    background-image: url('../custom/img/bg/1.png');
  }

  .bg-image-2 {
    background-image: url('../custom/img/bg/2.png');
  }

  .uk-h1,
  h1 {
    font-size: 1.2rem;
    line-height: 1.2;
  }

  .custom-form .uk-form-label {
    color: #f1f1f1;
    font-weight: 400;
    font-size: 16px;
  }

  .uk-modal-body {
    padding: 20px 20px;
  }

  .uk-modal-dialog {
    border-radius: 20px;
    border: 1px solid rgb(255 255 255 / 5%);
  }

  [class*=uk-modal-close-] {
    top: 15px;
    right: 15px;
    padding: 15px;
    border-radius: 50px;
  }

  .custom-form .custom-input {
    background: #2B2C2F;
    border: 1px solid rgb(255 255 255 / 15%);
    border-radius: 9999px;
    padding: 10px 20px !important;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    box-shadow: 0 0 10px 3px rgb(0 0 0 / 20%);
  }

  .exchange-total-label {
    color: #f1f1f1;
    font-weight: 400;
    font-size: 16px;
  }

  .exchange-total-row {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    background: transparent;
    gap: 0;
    flex-direction: column;
  }

  .exchange-total-value {
    font-size: 40px;
    font-weight: 500;
  }

  .exchange-total-currency {
    border: 1px solid rgb(255 255 255 / 15%);
  }
}

.currency-select {
  position: relative;
  z-index: 10;
}

.currency-select__menu {
  z-index: 9999;
  position: absolute;
}

.currency-select__trigger {
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

