/* ===== VRT Frontend v3 — Grouped by country ===== */
@import url("https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800;900&display=swap");

/* .vrt-fe-wrap {
  --c-bg: #0b1622;
  --c-surface: #111f30;
  --c-surface2: #172740;
  --c-surface3: #1e3150;
  --c-accent: #00d4aa;
  --c-accent2: #00a8e8;
  --c-gold: #f5b731;
  --c-rose: #ff6b8a;
  --c-text: #deeaf5;
  --c-muted: #6b90ad;
  --c-border: rgba(0, 212, 170, 0.14);
  --c-border2: rgba(255, 255, 255, 0.06);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 6px 28px rgba(0, 0, 0, 0.38);
  --shadow-glow: 0 0 24px rgba(0, 212, 170, 0.18);
  --ff: "Vazirmatn", Tahoma, sans-serif;

  font-family: var(--ff);
  direction: rtl;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  color: var(--c-text);
} */

.vrt-fe-wrap {
  --c-bg: #f8f7ff;
  --c-surface: #ffffff;
  --c-surface2: #eeedfe;
  --c-surface3: #e0defa;
  --c-accent: #7f77dd;
  --c-accent2: #534ab7;
  --c-gold: #f5b731;
  --c-rose: #ff6b8a;
  --c-text: #26215c;
  --c-muted: #8b87b8;
  --c-border: rgba(83, 74, 183, 0.15);
  --c-border2: rgba(83, 74, 183, 0.27);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(83, 74, 183, 0.08);
  --shadow-md: 0 6px 28px rgba(83, 74, 183, 0.14);
  --shadow-glow: 0 0 24px rgba(127, 119, 221, 0.18);
  --ff: "Vazirmatn", Tahoma, sans-serif;

  font-family: var(--ff);
  direction: rtl;
  max-width: 980px;
  margin: 0 auto;
  padding: 24px 16px 48px;
  color: var(--c-text);
}

/* ── LTR override: وقتی wrapper خودش dir="ltr" داره ── */
.vrt-fe-wrap[dir="ltr"] {
  direction: ltr;
}

/* ── SEARCH ─────────────────────────────────────────────── */
.vrt-fe-header {
  margin-bottom: 22px;
}
.vrt-fe-search-container {
  display: flex;
  flex-direction: column;
  gap: 6px;
  position: relative;
  z-index: 100;
}
.vrt-fe-search-inner {
  position: relative;
  /* filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.35)); */
}
.vrt-fe-search-input {
  width: 100%;
  background: var(--c-surface);
  border: 2px solid transparent;
  border-radius: 50px;
  color: var(--c-text);
  font-family: var(--ff);
  font-size: 15px;
  font-weight: 500;
  padding: 16px 54px 16px 54px;
  transition:
    border-color 0.3s,
    background 0.3s,
    box-shadow 0.3s;
  direction: rtl;
  outline: none;
  box-shadow:
    var(--shadow-sm),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-search-input {
  direction: ltr;
  text-align: left;
}
.vrt-fe-search-input:focus {
  border-color: var(--c-accent);
  background: var(--c-surface2);
  box-shadow:
    var(--shadow-sm),
    0 0 0 4px rgba(0, 212, 170, 0.1),
    var(--shadow-glow);
}
.vrt-fe-search-input::placeholder {
  color: var(--c-muted);
}

/* آیکن جستجو — RTL: راست / LTR: چپ */
.vrt-fe-search-icon {
  position: absolute;
  right: 19px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--c-muted);
  pointer-events: none;
  transition: color 0.25s;
  display: flex;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-search-icon {
  right: auto;
  left: 19px;
}
.vrt-fe-search-inner:focus-within .vrt-fe-search-icon {
  color: var(--c-accent);
}

/* دکمه clear — RTL: چپ / LTR: راست */
.vrt-fe-search-clear {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.07);
  border: none;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--c-muted);
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 0.2s,
    background 0.2s,
    color 0.2s;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-search-clear {
  left: auto;
  right: 16px;
}

[dir="ltr"] body .vrt-fe-accordion-trigger {
  display: flex;
  flex-direction: row !important;
}

[dir="ltr"] body .vrt-req-modal-header {
  flex-direction: row-reverse !important;
}

[dir="ltr"] body .vrt-req-modal-title-wrap {
  flex-direction: row-reverse !important;
}

[dir="ltr"] body .vrt-req-list-item {
  flex-direction: row-reverse !important;
}

.vrt-fe-search-inner.has-value .vrt-fe-search-clear {
  opacity: 1;
  pointer-events: auto;
}
.vrt-fe-search-clear:hover {
  background: rgba(0, 212, 170, 0.15);
  color: var(--c-accent);
}

.vrt-fe-search-suggest {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  left: 0;
  background: var(--c-surface2);
  border: 1.5px solid rgba(0, 212, 170, 0.22);
  border-radius: var(--radius-lg);
  z-index: 200;
  max-height: 260px;
  overflow-y: auto;
  display: none;
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}
.vrt-fe-search-suggest.open {
  display: block;
}
.vrt-fe-suggest-item {
  padding: 12px 22px;
  cursor: pointer;
  color: var(--c-text);
  font-size: 14px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition:
    background 0.15s,
    padding-right 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.vrt-fe-suggest-item:last-child {
  border-bottom: none;
}
/* RTL: hover indent از راست / LTR: از چپ */
.vrt-fe-suggest-item:hover {
  background: rgba(0, 212, 170, 0.09);
  padding-right: 28px;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-suggest-item {
  text-align: left;
  transition:
    background 0.15s,
    padding-left 0.2s;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-suggest-item:hover {
  padding-right: 22px;
  padding-left: 28px;
}
.vrt-fe-suggest-item mark {
  background: transparent;
  color: var(--c-accent);
  font-weight: 800;
}

/* hint — RTL: padding-right / LTR: padding-left */
.vrt-fe-search-hint {
  font-size: 12px;
  color: var(--c-muted);
  padding-right: 10px;
  min-height: 18px;
  transition: color 0.2s;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-search-hint {
  padding-right: 0;
  padding-left: 10px;
}
.vrt-fe-search-hint.vrt-hint-warn {
  color: var(--c-gold);
}

/* ── RESULTS BAR ─────────────────────────────────────────── */
.vrt-fe-results-bar {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
  padding-right: 4px;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-results-bar {
  padding-right: 0;
  padding-left: 4px;
}
.vrt-fe-results-bar span {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  letter-spacing: 0.04em;
  white-space: nowrap;
  text-transform: uppercase;
}
/* خط gradient — RTL: چپ به راست / LTR: راست به چپ */
.vrt-fe-divider {
  flex: 1;
  height: 1px;
  background: linear-gradient(to left, transparent, var(--c-border2));
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-divider {
  background: linear-gradient(to right, transparent, var(--c-border2));
}

/* ── CARDS LIST ──────────────────────────────────────────── */
.vrt-fe-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.vrt-fe-card {
  background: var(--c-surface);
  border: 1.5px solid var(--c-border2);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.3s;
  animation: vrtCardIn 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
  box-shadow: var(--shadow-sm);
}
@keyframes vrtCardIn {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.vrt-fe-card:hover {
  border-color: rgba(0, 212, 170, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}
.vrt-fe-card.vrt-hidden {
  display: none;
}

/* ── CARD HEADER ─────────────────────────────────────────── */
.vrt-fe-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px 14px;
  gap: 14px;
  flex-wrap: wrap;
}
.vrt-fe-country-info {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.vrt-fe-country-name {
  color: var(--c-text);
  font-size: 18px;
  font-weight: 800;
  margin: 0;
  letter-spacing: -0.01em;
}
.vrt-fe-visa-count-badge {
  background: rgba(245, 183, 49, 0.12);
  border: 1px solid rgba(245, 183, 49, 0.28);
  color: var(--c-gold);
  border-radius: 30px;
  padding: 3px 11px;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}
/* badge‌های ویزا — RTL: flex-end / LTR: flex-start */
.vrt-fe-card-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-card-badges {
  justify-content: flex-start;
}
.vrt-fe-visa-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.22);
  color: var(--c-accent);
  border-radius: 30px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}
.vrt-badge-more {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  color: var(--c-muted);
}

/* ── ACCORDION TRIGGER ───────────────────────────────────── */
.vrt-fe-accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 11px 22px;
  background: var(--c-surface2);
  border: none;
  border-top: 1px solid var(--c-border2);
  cursor: pointer;
  color: var(--c-muted);
  font-family: var(--ff);
  font-size: 13px;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
  user-select: none;
  text-align: right;
}
/* LTR: متن از چپ، آیکن chevron برعکس */
.vrt-fe-wrap[dir="ltr"] .vrt-fe-accordion-trigger {
  text-align: left;
  flex-direction: row-reverse;
}
.vrt-fe-accordion-trigger:hover {
  background: var(--c-surface3);
  color: var(--c-accent);
}
.vrt-fe-accordion-trigger[aria-expanded="true"] {
  color: var(--c-accent);
  background: var(--c-surface3);
  border-bottom: 1px solid rgba(0, 212, 170, 0.1);
}
.vrt-acc-label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.vrt-fe-chevron {
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
}
.vrt-fe-accordion-trigger[aria-expanded="true"] .vrt-fe-chevron {
  transform: rotate(180deg);
}

/* ── ACCORDION BODY ──────────────────────────────────────── */
.vrt-fe-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--c-surface2);
}
.vrt-fe-accordion-body.open {
  max-height: 2000px;
}

/* ── VISA TABLE ──────────────────────────────────────────── */
.vrt-fe-visa-table-wrap {
  overflow-x: auto;
}
.vrt-fe-visa-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 700px;
  font-size: 13px;
}
.vrt-fe-visa-table thead {
  background: linear-gradient(
    135deg,
    rgba(0, 212, 170, 0.08),
    rgba(0, 168, 232, 0.06)
  );
  border-bottom: 1px solid rgba(0, 212, 170, 0.15);
}
/* th — RTL: text-align right / LTR: text-align left */
.vrt-fe-visa-table th {
  color: var(--c-muted);
  font-size: 11px;
  font-weight: 700;
  padding: 10px 14px;
  text-align: right;
  white-space: nowrap;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-visa-table th {
  text-align: left;
}
.vrt-fe-visa-table td {
  padding: 11px 14px;
  color: var(--c-text);
  vertical-align: middle;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.vrt-visa-row {
  transition: background 0.15s;
}
.vrt-visa-row:hover {
  background: rgba(0, 212, 170, 0.04);
}
.vrt-visa-row:last-child td {
  border-bottom: none;
}

/* Visa type pill inside table */
.vrt-visa-type-pill {
  display: inline-flex;
  align-items: center;
  background: rgba(108, 99, 255, 0.1);
  border: 1px solid rgba(108, 99, 255, 0.25);
  color: #4d39e3;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}

/* Price chips */
.vrt-price-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
  border-radius: 8px;
  padding: 4px 10px;
  font-weight: 700;
  font-size: 13px;
  white-space: nowrap;
}
.vrt-price-chip small {
  font-size: 10px;
  font-weight: 500;
  opacity: 0.7;
}
.vrt-chip-colleague {
  background: rgba(0, 212, 170, 0.1);
  border: 1px solid rgba(0, 212, 170, 0.2);
  color: #00c78a;
}
.vrt-chip-traveler {
  background: rgba(0, 168, 232, 0.1);
  border: 1px solid rgba(0, 168, 232, 0.2);
  color: #0d9bd0;
}
.vrt-chip-default {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--c-text);
}

.vrt-td-text {
  color: var(--c-text);
  font-size: 12px;
  line-height: 1.5;
}
.vrt-text-muted {
  color: var(--c-muted);
  font-size: 12px;
}
.vrt-req-cell {
  max-width: 200px;
}
.vrt-req-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 200px;
  cursor: help;
}

/* فلش لینک — RTL: rotate(180deg) / LTR: بدون rotate */
.vrt-fe-row-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--c-accent), var(--c-accent2));
  color: #ffffff !important;
  font-size: 11px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  text-decoration: none;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 10px rgba(0, 212, 170, 0.25);
  white-space: nowrap;
}
.vrt-fe-row-link svg {
  rotate: 180deg;
}
.vrt-fe-wrap[dir="ltr"] .vrt-fe-row-link svg {
  rotate: 0deg;
}
.vrt-fe-row-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 212, 170, 0.4);
  color: #071520;
  text-decoration: none;
}

/* ── NO RESULTS ──────────────────────────────────────────── */
.vrt-fe-no-results-inner {
  text-align: center;
  padding: 56px 24px;
  color: var(--c-muted);
}
.vrt-fe-no-results-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 50%;
  margin-bottom: 20px;
  opacity: 0.5;
}
.vrt-fe-no-results-inner p {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px;
  color: var(--c-text);
}
.vrt-fe-no-results-inner span {
  font-size: 13px;
  color: var(--c-accent);
  cursor: pointer;
}
.vrt-fe-no-results-inner span:hover {
  text-decoration: underline;
}

/* ── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .vrt-fe-wrap {
    padding: 16px 12px 36px;
  }
  .vrt-fe-card-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .vrt-fe-card-badges {
    justify-content: flex-start;
  }
  .vrt-fe-search-input {
    font-size: 14px;
    padding: 14px 50px 14px 48px;
  }
  .vrt-fe-country-name {
    font-size: 16px;
  }
}

/* ===== REQUIREMENTS BUTTON (frontend table) ===== */
.vrt-req-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(108, 99, 255, 0.1);
  border: 1.5px solid rgba(108, 99, 255, 0.35);
  border-radius: 20px;
  color: #6c63ff;
  font-size: 12px;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  padding: 5px 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  direction: rtl;
}
.vrt-req-btn:hover {
  background: rgba(108, 99, 255, 0.22);
  border-color: #6c63ff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(108, 99, 255, 0.25);
}
.vrt-req-btn:active {
  transform: translateY(0);
}
.vrt-req-btn svg {
  flex-shrink: 0;
}

/* ===== REQUIREMENTS MODAL ===== */
.vrt-req-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 12, 20, 0.75);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  direction: rtl;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.vrt-req-modal-overlay.open {
  opacity: 1;
}
.vrt-req-modal-overlay.open .vrt-req-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.vrt-req-modal {
  background: #1a1d27;
  border: 1.5px solid #2e3354;
  border-radius: 18px;
  width: 100%;
  max-width: 500px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(108, 99, 255, 0.15);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s ease;
  font-family: "Vazirmatn", Tahoma, sans-serif;

  /* background: #fff;
  border-radius: 18px;
  width: 100%;
  max-width: 480px;
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(20px) scale(0.97);
  opacity: 0;
  transition:
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1),
    opacity 0.25s;
  font-family: "Vazirmatn", Tahoma, sans-serif; */
}

.vrt-req-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 22px 16px;
  border-bottom: 1px solid #2e3354;
  gap: 12px;
}
.vrt-req-modal-title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.vrt-req-modal-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(108, 99, 255, 0.2),
    rgba(76, 201, 240, 0.15)
  );
  border: 1.5px solid rgba(108, 99, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c63ff;
  flex-shrink: 0;
}
.vrt-req-modal-subtitle {
  color: #8892b0;
  font-size: 11px;
  margin: 0 0 2px;
  font-weight: 400;
  letter-spacing: 0.5px;
}
.vrt-req-modal-visa-name {
  color: #e8eaf6;
  font-size: 15px;
  font-weight: 700;
  margin: 0;
  line-height: 1.3;
}
.vrt-req-modal-close {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid #2e3354;
  color: #8892b0;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
  flex-shrink: 0;
  line-height: 1;
  font-family: inherit;
}
.vrt-req-modal-close:hover {
  background: rgba(255, 77, 109, 0.15);
  border-color: rgba(255, 77, 109, 0.4);
  color: #ff4d6d;
}

.vrt-req-modal-body {
  padding: 20px 22px;
  overflow-y: auto;
  flex: 1;
}
.vrt-req-modal-body::-webkit-scrollbar {
  width: 5px;
}
.vrt-req-modal-body::-webkit-scrollbar-track {
  background: transparent;
}
.vrt-req-modal-body::-webkit-scrollbar-thumb {
  background: #2e3354;
  border-radius: 3px;
}

.vrt-req-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.vrt-req-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 12px 14px;
  color: #c8cde6;
  font-size: 13.5px;
  line-height: 1.6;
  transition: background 0.15s;
}
.vrt-req-list-item:hover {
  background: rgba(108, 99, 255, 0.07);
  border-color: rgba(108, 99, 255, 0.2);
}
.vrt-req-list-icon {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(67, 233, 123, 0.12);
  border: 1px solid rgba(67, 233, 123, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #43e97b;
  flex-shrink: 0;
  margin-top: 1px;
}

.vrt-req-modal-footer {
  padding: 14px 22px 18px;
  border-top: 1px solid #2e3354;
  display: flex;
  justify-content: center;
}
.vrt-req-modal-close-btn {
  background: linear-gradient(135deg, #6c63ff, #4cc9f0);
  border: none;
  border-radius: 10px;
  color: #fff;
  font-family: "Vazirmatn", Tahoma, sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 36px;
  cursor: pointer;
  transition: all 0.2s;
}
.vrt-req-modal-close-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(108, 99, 255, 0.35);
}
