/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all .3s;
  -o-transition: all .3s;
  transition: all .3s;
}

.copied::after {
  position: absolute;
  top: 8px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #FF7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}




.cookies-card {
  width: 520px;
  padding: 30px;
  color: hsl(var(--body-color));
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all .5s;
  background: hsl(var(--card-bg));
  border: 1px solid hsl(var(--border-color));
  border-radius: 5px;
  box-shadow: var(--box-shadow);
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}


@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}




.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: '';
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
}

.input-popup p::before {
  position: absolute;
  content: '';
  font-family: 'Line Awesome Free';
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}



.show-filter {
  display: none;
}

@media(max-width:767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}



/* ////////////////// select 2 css //////////////// */
.select2-dropdown {
  border: 0 !important;
  margin-top: 8px !important;
  border-radius: 5px !important;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0.05), 6px 4px 19px rgb(115 103 240 / 20%)
}

.select2-search--dropdown {
  padding: 10px 10px !important;
  border-color: #ced4da !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
  border-color: #ced4da !important;
  padding: 10px 20px;
}

.select2-results__option.select2-results__option--selected,
.select2-results__option--selectable,
.select2-container--default .select2-results__option--disabled {
  padding: 12px 14px !important;
  border-bottom: 1px solid #eee;
}

.select2-results__option.select2-results__message {
  text-align: center !important;
  padding: 12px 14px !important;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar {
  width: 8px;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb {
  background: #ddd;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover {
  background: #ddd;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  display: none;
}

.select2-container--default .select2-selection--single .select2-selection__arrow:after {
  position: absolute;
  right: 10px;
  top: 0;
  content: "\f107";
  font-family: "Line Awesome Free";
  font-weight: 900;
  transition: .3s;
}

.select2-container--default .select2-selection--single {
  border-color: #ced4da !important;
  border-width: 2px !important;
  border-radius: .375rem !important;
  padding: .375rem .75rem !important;
  height: 100% !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 8px !important;
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {
  transform: rotate(-180deg);
}

.select2-results__option:last-child {
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select2-results__option:first-child {
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select2-results__option.select2-results__option--selected,
.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
  background-color: #f1f1f1 !important;
  color: #000 !important;
}

.select2-container--default .select2-search--dropdown .select2-search__field:focus {
  border-color: rgb(var(--main)) !important;
  box-shadow: 0 0 25px rgba(115, 103, 240 0.071) !important;
  outline: 0 !important;
}

.select2-dropdown .country-flag {
  width: 25px;
  height: 25px;
  border-radius: 8px;
}

.select2-dropdown .gateway-title {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 0px !important;
}

.select2-dropdown .gateway-subtitle {
  font-size: 12px;
  margin-bottom: 0px !important;
}
.select2-container--open .select2-selection.select2-selection--single, .select2-container--open .select2-selection.select2-selection--multiple {
  border-color: hsl(var(--base)) !important;
  border-radius: .375rem !important;
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: rgb(var(--main));
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--main));
  background-color: hsl(var(--white)/.1);
  border-radius: 5px;
  height: 100%;

}


.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;

}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border-bottom: 1px solid hsl(var(--white)/.1);
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--base));
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width))
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--white)/.8);
  display: inline-block;
  border-radius: 100%;

}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
      width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}


.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 15px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
      align-self: center;
      padding-left: 5px;
  }

}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;

}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px
}

.deposit-info__input-group:focus-within {
  border: 1px solid hsl(var(--base)/.4) !important;
}
.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: linear-gradient(180deg, hsl(var(--base-two)) 0%, hsl(var(--base)) 67%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}
.payment-item__btn-text {
  color: hsl(var(--black));
}
.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}

.cursor-pointer{
  cursor: pointer;
}

/* Bean Calculator Styles - نفس ستايلات gold-calculator */
.dashboard .buy-sell-card .bean-calculator {
    background: transparent;
    padding: 0;
}

.dashboard .buy-sell-card .bean-calculator__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-column-gap: 20px;
    -moz-column-gap: 20px;
    column-gap: 20px;
    margin-bottom: 65px;
    row-gap: 20px;
    padding: 0 80px;
}

@media (max-width: 1899px) {
    .dashboard .buy-sell-card .bean-calculator__top {
        padding: 0 35px;
    }
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__top {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        margin-bottom: 45px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .buy-sell-card .bean-calculator__top {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .buy-sell-card .bean-calculator__top {
        padding: 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .buy-sell-card .bean-calculator__top {
        padding: 0 20px;
        row-gap: 15px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .buy-sell-card .bean-calculator__top {
        padding: 0 15px;
    }
}

.dashboard .buy-sell-card .bean-calculator__top-left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-column-gap: 15px;
    -moz-column-gap: 15px;
    column-gap: 15px;
    row-gap: 10px;
}

@media screen and (max-width: 767px) {
    .dashboard .buy-sell-card .bean-calculator__top-left {
        -webkit-column-gap: 10px;
        -moz-column-gap: 10px;
        column-gap: 10px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .buy-sell-card .bean-calculator__top-left {
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }
}

.dashboard .buy-sell-card .bean-calculator__top .customNiceSelect .nice-select {
    padding-left: 15px;
    padding-right: 85px;
    border-color: hsl(var(--white)/0.1);
}

.dashboard .buy-sell-card .bean-calculator__top .customNiceSelect .nice-select.open {
    border-color: hsl(var(--base));
}

@media (max-width: 1899px) {
    .dashboard .buy-sell-card .bean-calculator__top .customNiceSelect .nice-select {
        padding: 0 20px;
        padding-right: 45px;
    }
}

.dashboard .buy-sell-card .bean-calculator__top-amount {
    margin-bottom: 0;
}

.dashboard .buy-sell-card .bean-calculator__bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 0 130px;
    row-gap: 10px;
}

.dashboard .buy-sell-card .bean-calculator__bottom > small.text-muted {
    margin-top: 10px;
    margin-bottom: 10px;
    font-size: 0.875rem;
}

@media (max-width: 1899px) {
    .dashboard .buy-sell-card .bean-calculator__bottom {
        padding: 0 90px;
    }
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__bottom {
        padding: 0 75px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .buy-sell-card .bean-calculator__bottom {
        padding: 0 35px;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .buy-sell-card .bean-calculator__bottom {
        padding: 0 30px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .buy-sell-card .bean-calculator__bottom {
        padding: 0 20px;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .buy-sell-card .bean-calculator__bottom {
        padding: 0 15px;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    row-gap: 10px;
    margin-bottom: 80px;
}

.dashboard .buy-sell-card .bean-calculator form:has(#beanCalculatorSwitch2:checked) .bean-calculator__inputs .form-group:first-of-type {
    -webkit-box-ordinal-group: 4;
    -ms-flex-order: 3;
    order: 3;
}

.dashboard .buy-sell-card .bean-calculator form:has(#beanCalculatorSwitch2:checked) .bean-calculator__inputs .form-group:last-of-type {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
}

.dashboard .buy-sell-card .bean-calculator form:has(#beanCalculatorSwitch2:checked) .bean-calculator__inputs .equal {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__inputs {
        margin-bottom: 50px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .buy-sell-card .bean-calculator__inputs {
        margin-bottom: 35px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .buy-sell-card .bean-calculator__inputs {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .buy-sell-card .bean-calculator__inputs {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .buy-sell-card .bean-calculator__inputs {
        margin-bottom: 20px;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group {
    width: calc(50% - 20px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

@media screen and (max-width: 575px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group {
        width: 100%;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group.has-icon .form--control {
    padding-left: 45px;
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
        padding-left: 40px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
        padding-right: 95px;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .icon {
        width: 20px;
        height: 20px;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
    padding: 9.5px 15px;
    padding-right: 60px;
    font-size: 2rem;
    font-weight: 700;
    height: 100%;
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group.has-icon .form--control {
    padding-right: 75px;
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
        font-size: 1.625rem;
        padding: 10px 15px;
        padding-right: 60px;
    }

    .dashboard .buy-sell-card .bean-calculator__inputs .form-group.has-icon .form--control {
        padding-right: 65px;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
        font-size: 1.375rem;
    }
}

@media screen and (max-width: 1399px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
        padding-right: 50px;
    }

    .dashboard .buy-sell-card .bean-calculator__inputs .form-group.has-icon .form--control {
        padding-left: 40px;
        padding-right: 60px;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control {
        font-size: 1.125rem;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control::-webkit-input-placeholder {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control::-moz-placeholder {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control:-ms-input-placeholder {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control::-ms-input-placeholder {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--control::placeholder {
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

.dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--label {
    position: absolute;
    right: 12px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    color: hsl(var(--white));
    font-weight: 700;
    line-height: 1;
    font-size: 1.125rem;
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--label {
        font-size: 1rem;
    }
}

@media screen and (max-width: 1599px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--label {
        font-size: 0.9375rem;
    }
}

@media screen and (max-width: 991px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .form-group .form--label {
        font-size: 0.875rem;
    }
}

.dashboard .buy-sell-card .bean-calculator__inputs .equal {
    width: 35px;
    height: 56px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    color: hsl(var(--base));
    font-size: 1rem;
}

@media screen and (max-width: 1399px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .equal {
        width: 30px;
        height: 54px;
    }
}

@media screen and (max-width: 1199px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .equal {
        font-size: 0.9375rem;
        height: 46px;
    }
}

@media screen and (max-width: 767px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .equal {
        font-size: 0.875rem;
        height: 43px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .equal {
        height: 35px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 575px) {
    .dashboard .buy-sell-card .bean-calculator__inputs .equal {
        margin: 0 auto;
    }
}

.dashboard .buy-sell-card .bean-calculator__bottom .info {
    width: 100%;
    font-size: 0.875rem;
    color: hsl(var(--white));
    margin-bottom: 25px;
}

@media (max-width: 1699px) {
    .dashboard .buy-sell-card .bean-calculator__bottom .info {
        margin-top: bottom;
    }
}

.dashboard .buy-sell-card .bean-calculator__bottom .info__text {
    width: calc(100% - 25px);
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch,
.bean-calculator__top .calculator-switch {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    background: hsl(var(--white)/0.15);
    padding: 5px;
    border-radius: 40px;
}

@media screen and (max-width: 424px) {
    .dashboard .buy-sell-card .bean-calculator__top .calculator-switch,
    .bean-calculator__top .calculator-switch {
        background: transparent;
        border-radius: 0;
        border-bottom: 1px solid hsl(var(--border-color));
    }
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item {
    position: relative;
    padding: 4px 12px;
    border-radius: 30px;
    overflow: hidden;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 424px) {
    .dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item {
        width: 100%;
        text-align: center;
    }
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item::before,
.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item::after {
    position: absolute;
    content: "";
    background: var(--gradient-bg-1);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item::after {
    background: var(--gradient-bg-2);
    z-index: 2;
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item:has(input:checked) {
    color: hsl(var(--dark));
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item:has(input:checked)::before {
    visibility: visible;
    opacity: 1;
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item:has(input:checked):hover::after {
    visibility: visible;
    opacity: 1;
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__item .text {
    position: relative;
    z-index: 3;
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch input {
    width: 0;
    height: 0;
    opacity: 0;
}

.dashboard .buy-sell-card .bean-calculator__top .calculator-switch__icon {
    margin: 0 10px;
}

@media screen and (max-width: 1399px) {
    .dashboard .buy-sell-card .bean-calculator__top .calculator-switch__icon {
        margin: 0 8px;
    }
}

@media screen and (max-width: 424px) {
    .dashboard .buy-sell-card .bean-calculator__top .calculator-switch__icon {
        margin: 0 auto;
    }
}


.bean-calculator__top .calculator-switch__item {
    position: relative;
    padding: 4px 12px;
    border-radius: 30px;
    overflow: hidden;
    font-size: 0.875rem;
    font-weight: 600;
    color: hsl(var(--body-color));
}

@media screen and (max-width: 424px) {
    .bean-calculator__top .calculator-switch__item {
        width: 100%;
        text-align: center;
    }
}

.bean-calculator__top .calculator-switch__item::before,
.bean-calculator__top .calculator-switch__item::after {
    position: absolute;
    content: "";
    background: var(--gradient-bg-1);
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    z-index: 1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

.bean-calculator__top .calculator-switch__item::after {
    background: var(--gradient-bg-2);
    z-index: 2;
}

.bean-calculator__top .calculator-switch__item:has(input:checked) {
    color: hsl(var(--dark));
}

.bean-calculator__top .calculator-switch__item:has(input:checked)::before {
    visibility: visible;
    opacity: 1;
}

.bean-calculator__top .calculator-switch__item:has(input:checked):hover::after {
    visibility: visible;
    opacity: 1;
}

.bean-calculator__top .calculator-switch__item .text {
    position: relative;
    z-index: 3;
}

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

.bean-calculator__top .calculator-switch__icon {
    margin: 0 10px;
}

@media screen and (max-width: 1399px) {
    .bean-calculator__top .calculator-switch__icon {
        margin: 0 8px;
    }
}

@media screen and (max-width: 424px) {
    .bean-calculator__top .calculator-switch__icon {
        margin: 0 auto;
    }
}

/* ================================= RTL Support for Sidebar Menu =========================== */
[dir="rtl"] .dashboard .sidebar-menu {
    left: auto !important;
    right: 0 !important;
    border-right: 0 !important;
    border-left: 1px solid hsl(var(--white)/0.25) !important;
}

@media screen and (max-width: 1399px) {
    [dir="rtl"] .dashboard .sidebar-menu {
        border-left: 0 !important;
        border-right: 0 !important;
    }
}

@media screen and (max-width: 1199px) {
    [dir="rtl"] .dashboard .sidebar-menu {
        transform: translateX(100%) !important;
        -webkit-transform: translateX(100%) !important;
    }
}

[dir="rtl"] .dashboard .sidebar-menu.show {
    transform: translateX(0) !important;
    -webkit-transform: translateX(0) !important;
}

[dir="rtl"] .dashboard .sidebar-menu__close {
    right: auto !important;
    left: 5px !important;
}

[dir="rtl"] .dashboard .sidebar-logo {
    padding: 44px 44px 70px 20px !important;
}

@media screen and (max-width: 1399px) {
    [dir="rtl"] .dashboard .sidebar-logo {
        padding: 10px 10px 10px 15px !important;
    }
}

[dir="rtl"] .dashboard .sidebar-menu-list__item::after {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .dashboard .sidebar-menu-list__link {
    padding: 13px 25px 13px 15px !important;
}

@media screen and (max-width: 1399px) {
    [dir="rtl"] .dashboard .sidebar-menu-list__link {
        padding: 11px 18px 11px 12px !important;
    }
}

[dir="rtl"] .dashboard .sidebar-menu-list__link::after {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .dashboard .sidebar-menu-list__item.has-dropdown>a:after {
    right: auto !important;
    left: 16px !important;
    content: "\f104" !important;
}

[dir="rtl"] .dashboard .sidebar-menu-list__item.has-dropdown.active>a:after {
    right: auto !important;
    left: 18px !important;
    transform: rotate(-90deg) !important;
    -webkit-transform: rotate(-90deg) !important;
}

[dir="rtl"] .dashboard .sidebar-submenu-list__link {
    margin-left: 0 !important;
    margin-right: 20px !important;
    padding-left: 15px !important;
    padding-right: 25px !important;
}

[dir="rtl"] .dashboard .sidebar-submenu-list__link::before {
    left: auto !important;
    right: 10px !important;
}

[dir="rtl"] .dashboard .sidebar-submenu-list__link .icon {
    margin-right: 0 !important;
    margin-left: 8px !important;
}

[dir="rtl"] .dashboard__right {
    margin-left: 0 !important;
    margin-right: auto !important;
    width: calc(100% - 312px) !important;
}

@media screen and (max-width: 1399px) {
    [dir="rtl"] .dashboard__right {
        width: calc(100% - 260px) !important;
    }
}

@media screen and (max-width: 1199px) {
    [dir="rtl"] .dashboard__right {
        width: 100% !important;
    }
}

[dir="rtl"] body, [dir="rtl"] html {
    overflow-x: hidden !important;
}

/* ================================= RTL Support for Language Dropdown =========================== */
[dir="rtl"] .language-dropdown.me-3 {
    margin-right: 0 !important;
    margin-left: 1rem !important;
}

[dir="rtl"] .language-dropdown {
    padding-right: 0 !important;
    padding-left: 8px !important;
}

[dir="rtl"] .language-dropdown::after {
    right: auto !important;
    left: 0 !important;
    content: "\f0d8" !important;
}

[dir="rtl"] .language-dropdown.open::after {
    transform: translateY(-50%) rotate(180deg) !important;
    -webkit-transform: translateY(-50%) rotate(180deg) !important;
}

@media screen and (max-width: 991px) {
    [dir="rtl"] .language-dropdown::after {
        left: 5px !important;
    }
    
    [dir="rtl"] .language-dropdown {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
}

[dir="rtl"] .language-dropdown__selected .text {
    padding-right: 0 !important;
    padding-left: 8px !important;
}

@media screen and (max-width: 1199px) {
    [dir="rtl"] .language-dropdown__selected .text {
        padding-left: 5px !important;
    }
}

[dir="rtl"] .language-dropdown__list {
    left: 0 !important;
    right: auto !important;
    transform-origin: top left !important;
    -webkit-transform-origin: top left !important;
}

@media screen and (max-width: 991px) {
    [dir="rtl"] .language-dropdown__list {
        left: 0 !important;
        right: auto !important;
    }
}
/* ================================= RTL Support for Language Dropdown End =========================== */

/* ================================= RTL Support for User Info Dropdown =========================== */
[dir="rtl"] .dashboard .dashboard-header .user-info__button {
    padding-right: 0 !important;
    padding-left: 25px !important;
}

@media screen and (max-width: 767px) {
    [dir="rtl"] .dashboard .dashboard-header .user-info__button {
        padding-left: 0 !important;
    }
}

[dir="rtl"] .dashboard .dashboard-header .user-info__button-icon {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .dashboard .dashboard-header .user-info__button-content {
    padding-left: 0 !important;
    padding-right: 10px !important;
    text-align: right !important;
}

[dir="rtl"] .dashboard .dashboard-header .user-info .user-info-dropdown {
    right: auto !important;
    left: 0 !important;
}

[dir="rtl"] .dashboard .dashboard-header .user-info .user-info-dropdown__link {
    text-align: right !important;
}

[dir="rtl"] .dashboard .dashboard-header .user-info .user-info-dropdown__link .icon {
    margin-right: 0 !important;
    margin-left: 8px !important;
}
/* ================================= RTL Support for User Info Dropdown End =========================== */
/* ================================= RTL Support for Sidebar Menu End =========================== */