:root {
    --cir: #E9EEFF;
    --color-cyan: #0fb5b5;
    --color-gray-300: #98a1ae;
    --test: #FAFAFA;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px white inset !important;
    box-shadow: 0 0 0px 1000px white inset !important;
    -webkit-text-fill-color: #212529 !important;
    caret-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

[theme-color=dark] input:-webkit-autofill,
[theme-color=dark] input:-webkit-autofill:hover,
[theme-color=dark] input:-webkit-autofill:focus,
[theme-color=dark] input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0px 1000px #242644 inset !important;
    box-shadow: 0 0 0px 1000px #242644 inset !important;
    -webkit-text-fill-color: #FFFFFF !important;
    caret-color: #000 !important;
    transition: background-color 5000s ease-in-out 0s;
}

p {
    text-align: justify;
}

.bg-cyan {
    background-color: var(--color-cyan);
}

.btn-success:hover {
    background-color: #019a7c;
    border-color: #019a7c;
}

.spinner-grow {
    width: 4rem;
    height: 4rem;
    background-color: transparent;
}

.offcanvas.offcanvas-bottom {
    height: auto !important;
}

.internet-connection-status {
    bottom: 0 !important;
     z-index: 0 !important; 
}

.asset-holder {
    /* max-width: 420px; */
    position: relative;
    background: linear-gradient(to bottom, #0fb5b5, #11c9c9);
    border-radius: 0 0 60px 60px;
    margin-left: auto;
    margin-right: auto;
}

.asset-holder:after {
    content: "";
    position: absolute;
    width: 80%;
    height: 20px;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 14px);
    border-bottom-left-radius: 60px;
    border-bottom-right-radius: 60px;
    background-color: rgba(54, 210, 217, 0.3);
}

.asset-holder__reveal {
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 8px;
    background: rgba(255, 255, 255, .2);
    color: #FFFFFF;
}

.asset-holder__wallet-icon i {
    font-size: 2rem;
    color: #FFFFFF;
}

.price-change {
    border-radius: 64px;
    padding: .3rem .5rem;
    margin-left: 8px;
    gap: 4px;
}

.price-change.price-decrease {
    background-color: color-mix(in oklab, #ff2e13 10%, transparent);
    color: #ff2e13;
}

.price-change.price-increase {
    background-color: color-mix(in oklab, #40ae00 10%, transparent);
    color: #40ae00;
}

.price-change.price-decrease .up {
    display: none;
}

.price-change.price-increase .down {
    display: none;
}

.navigation {
    width: 100%;
    height: 70px;
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    z-index: 999;
}

.navigation ul {
    display: flex;
    justify-content: space-between;
    /*add later*/
    width: 100%;
    padding: 0;
}

.navigation ul li {
    position: relative;
    list-style: none;
    width: 70px;
    height: 70px;
    z-index: 1;
}

.navigation ul li a {
    height: 100%;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    width: 100%;
    text-align: center;
    font-weight: 500;
}

.navigation ul li a .icon {
    position: relative;
    display: block;
    /* line-height: 75px; */
    /* font-size: 1.5em; */
    text-align: center;
    transition: .5s;
    color: #747794;
    /* color: #020310; */
    z-index: 2;
    transform: translateY(-10px);
}

.navigation ul li.active a .icon {
    transform: translateY(-35px);
    color: #FFFFFF;
}

.navigation ul li a .text {
    position: absolute;
    color: #747794;
    /* color: #020310; */
    font-size: 14px;
    font-weight: 500;
    transition: .5s;
    transform: translateY(20px);
    z-index: 2;
    /* opacity: 0; */
}

.navigation ul li.active a .text {
    transform: translateY(10px);
    color: #0fb5b5;
    /* opacity: 1; */
}

.indicator {
    position: absolute;
    width: 70px;
    height: 70px;
    background: #0fb5b5;
    border-radius: 50%;
    /* border: 6px solid var(--cir); */
    transition: .5s;
    top: -50%;
    border: 6px solid var(--cir);
    outline: 6px solid transparent;
}

.indicator::before,
.indicator::after {
    display: none;
    content: '';
    position: absolute;
    top: 50%;
    width: 20px;
    height: 20px;
    background: transparent;
}

.indicator::before {
    left: -22px;
    border-top-right-radius: 20px;
    box-shadow: 1px -10px 0 0 var(--cir);
}

.indicator::after {
    right: -22px;
    border-top-left-radius: 20px;
    box-shadow: -1px -10px 0 0 var(--cir);
}

.navigation ul li .indicator {
    display: none;
}

.navigation ul li.active .indicator {
    display: block;
}

.form-control-wrapper {
    display: flex;
    align-items: center;
    height: 48px;
    border: 1px solid #c9cdcf;
    border-radius: 6px;
}

.form-control-wrapper.disabled {
    background-color: #e9ecef;
}

.form-control-wrapper .form-control {
    height: 100%;
    font-size: 14px;
    font-weight: bold;
    border: none;
}

:not(.form-control-wrapper) > .form-control {
    height: 48px !important;
    font-size: 14px !important;
    font-weight: bold !important;
}

.form-control-wrapper .separator,
.form-control-wrapper .unit {
    flex-shrink: 0;
}

.form-control-wrapper .separator {
    width: .125rem;
    height: 80%;
    background-color: rgb(219 222 223 / 1);
}

.form-control-wrapper .unit {
    text-align: center;
    width: 60px;
}

.form-control-wrapper .form-control::placeholder {
    text-align: right;
}

.btn-large {
    height: 48px;
    font-size: 18px;
}

.user-info-card {
    background-color: var(--color-cyan);
}

.user-info-card .card-header {
    padding: 1rem;
}

.user-info {
    color: #FAFAFA !important;
}

.settings-card {
    border-radius: .625rem;
}

.single-order-status.active .order-icon {}

.single-order-status.active .order-status span {
    background-color: #00b894;
}

.single-order-status .order-text h6 {
    color: #020310 !important;
}

.single-settings .title {
    color: var(--color-gray-300);
}

.single-settings .title i {
    color: #FFFFFF;
    background-color: var(--color-cyan);
}

.single-settings .data-content i {
    color: var(--color-gray-300);
}

.single-settings .knobs:before {
    background-color: #a9a9a9;
}

.single-settings .checkbox:checked+.knobs:before {
    background-color: var(--color-cyan);
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    left: 1px;
    right: unset;
}

.select2-selection--multiple::after {
    content: "\f078";
    /* فلش پایین FontAwesome */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 1px;
    right: unset;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    /* تا کلیک روی فلش باعث باز شدن dropdown بشه */
    font-size: 0.8rem;
    color: #333;
}

.select2-selection--multiple {
    position: relative;
    /* برای اینکه ::after موقعیت درست داشته باشه */
}

.select2-container .select2-search--inline .select2-search__field {
    font-family: inherit !important;
    vertical-align: middle !important;
}

.form-check-label {
    font-size: 12px;
}

.product-card .product-title {
    font-size: 14px !important;
    font-weight: bold;
}

.product-card .sale-price {
    font-size: 14px !important;
}

.cart-form .quantity-button-handler {
    min-width: 35px;
    line-height: 40px;
}

.cart-form .form-control {
    max-width: none;
}

.offcanvas-bottom.suha-filter-offcanvas-wrap {
    width: 100% !important;
    border-radius: 2rem 2rem 0 0;
}

.select-product-catagory .nice-select {
    float: none !important;
}

.nice-select .list {
    width: 100%;
}

.horizontal-divider {
    width: 100%;
    height: 2px;
}

#toast-container .toast-close-button {
    top: 0 !important;
}

@media (min-width: 241px) and (max-width: 480px) {
    #toast-container {
        width: 100%;
        right: 0 !important;
        left: 0 !important;
        top: 0 !important;
    }

    #toast-container>div {
        width: 100% !important;
    }
}


[theme-color=dark] .form-control-wrapper {
    background-color: #242644;
    color: #ffffff;
}

[theme-color=dark] .single-order-status .order-text h6 {
    color: #FFFFFF !important;
}

[theme-color=dark] .single-order-status .order-text span {
    color: #747794;
}

[theme-color=dark] .form-wrap {
    background: #242644;
}

[theme-color=dark] .form-wrap .title {
    color: #FFF;
}

.vendor-tabs {
    background: #e9eeff;
}

[theme-color=dark] .vendor-tabs {
    background: #0C153B;
}

[theme-color=dark] .user-info-card .card-header {
    border-bottom: var(--bs-card-border-width) solid rgba(255, 255, 255, .5) !important;
}