/*general things*/

@font-face {
    font-family: vazir;
    src: url(../fonts/vazir.ttf);
}

:root {
    --blue: #1C7CD5;
    --blue-hover: #1C7CD5;
    --gray: #7e7e7e;
    --light-blue: #73bbff29;
    --red: rgb(254, 5, 5);
}

* {
    margin: 0;
    padding: 0;
    font-family: vazir !important;
    direction: rtl;
    text-align: right;
    scroll-behavior: smooth !important;
}

a {
    text-decoration: none !important;
    color: black;
}

a:hover {
    text-decoration: none;
}

li {
    list-style: none;
}


/* text or */

.bg-strong-blue {
    background-color: #1C7CD5 !important;
}

.bg-strong-plus-blue {
    background-color: #004891 !important;
}

.txt-strong-plus-blue {
    color: #025fbd !important;
}

.txt-strong-blue {
    color: #1C7CD5 !important;
}

.bg-gray {
    background-color: #e6e6e6 !important;
}

.txt-gray {
    color: #7e7e7e !important;
}

.txt-strong-gray {
    color: #464646 !important;
}

.txt-light-blue {
    color: rgb(191, 224, 255) !important;
}

.bg-light-blue {
    background-color: rgb(191, 224, 255) !important;
}

.bg-red {
    background-color: var(--red) !important;
}

.bg-danger-light{
    background: #ffc0c6;
}

.bg-success-light{
    background: #bbffca;
}

/* border radius for buttons */

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

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

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

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

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

button {
    outline: none;
    border: none;
    cursor: pointer;
}

.button {
    padding: 4px 30px;
    border-radius: 2px;
}

.btn-hover {
    transition: 0.3s;
}

.btn-hover:hover {
    filter: brightness(90%);
}

input[type="text"],
input[type="number"],
input[type="password"] {
    outline: none;
    /* border: none; */
}

select {
    outline: none;
}

textarea {
    outline: none;
}

.shadow-white {
    box-shadow: 0 0 15px rgba(255, 255, 255);
}

.shadow-dark {
    box-shadow: 0 0 15px rgb(0, 0, 0);
}

.shadow-5 {
    box-shadow: 0 0 10px rgb(2 2 2 / 13%);
}

.shadow-1 {
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.674);
}

.border-gray {
    border: 1px solid #7e7e7e;
}

.border-red {
    border: 2px solid var(--red);
    background: rgba(255, 193, 193, 0.256);
}

.border-none {
    border: none !important;
}

.line {
    width: 1px;
    height: 100%;
    color: transparent;
}

.line_horizontal {
    width: 100%;
    height: 1px;
}

.fz-7 {
    font-size: 7px !important;
}

.fz-8 {
    font-size: 8px !important;
}

.fz-9 {
    font-size: 9px !important;
}

.fz-10 {
    font-size: 10px !important;
}

.fz-12 {
    font-size: 12px !important;
}

.fz-14 {
    font-size: 14px !important;
}

.fz-16 {
    font-size: 16px !important;
}

.fz-18 {
    font-size: 18px !important;
}

.fz-20 {
    font-size: 20px !important;
}

.fz-22 {
    font-size: 22px !important;
}

.fz-26 {
    font-size: 26px !important;
}

.fz-28 {
    font-size: 28px !important;
}

.fz-30 {
    font-size: 30px !important;
}

.fz-34 {
    font-size: 34px !important;
}

.fz-54 {
    font-size: 54px !important;
}

@media screen and (max-width: 992px) {
    .fz-res-6 {
        font-size: 6px;
    }
    .fz-res-7 {
        font-size: 7px;
    }
    .fz-res-8 {
        font-size: 8px;
    }
    .fz-res-9 {
        font-size: 9px;
    }
    .fz-res-10 {
        font-size: 10px;
    }
    .fz-res-12 {
        font-size: 12px;
    }
    .fz-res-14 {
        font-size: 14px;
    }
    .fz-res-16 {
        font-size: 16px;
    }
    .fz-res-18 {
        font-size: 18px;
    }
    .fz-res-20 {
        font-size: 20px;
    }
    .fz-res-22 {
        font-size: 22px;
    }
    .fz-res-26 {
        font-size: 26px;
    }
    .fz-res-28 {
        font-size: 28px;
    }
    .fz-res-30 {
        font-size: 30px;
    }
    .fz-res-34 {
        font-size: 34px;
    }
    .fz-res-54 {
        font-size: 54px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-bottom: 0;
}

.input-focus:focus {
    outline: none;
    border: solid 1px var(--blue) !important;
    box-shadow: 0 0 2px var(--blue);
}

.input-focus-error:focus {
    outline: none;
    border: solid 1px red !important;
    box-shadow: 0 0 2px red;
}

.hover-blue:hover {
    color: var(--blue);
}

.dir-rtl {
    text-align: right !important;
    direction: rtl !important;
}

.dir-ltr {
    text-align: left !important;
    direction: ltr !important;
}

.w-10 {
    width: 10% !important;
}

.w-20 {
    width: 20% !important;
}

.w-30 {
    width: 30% !important;
}

.w-40 {
    width: 40% !important;
}

.w-60 {
    width: 60% !important;
}

.w-70 {
    width: 70% !important;
}

.w-80 {
    width: 80% !important;
}

.flex-warp {
    flex-wrap: wrap;
}

.w-90 {
    width: 90% !important;
}

.h-100vh {
    height: 100vh !important;
}

.gap-5 {
    gap: 5px;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}

.gap-20 {
    gap: 20px;
}

.gap-30 {
    gap: 30px;
}

.gap-40 {
    gap: 40px;
}

.gap-50 {
    gap: 50px;
}

.hover-scale {
    transition: 0.3s;
}

.hover-scale:hover {
    transform: scale(1.06, 1.06);
}

.r-0 {
    right: 0;
}

.l-0 {
    left: 0;
}

.b-0 {
    bottom: 0;
}

.t-0 {
    top: 0;
}

.under-shadow {
    box-shadow: 0 2px 8px rgb(172, 172, 172);
}

.cursor-pointer {
    cursor: pointer !important;
}

.cursor-default {
    cursor: default !important;
}

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.drop-shadow-hover-dark {
    transition: all 0.2s;
}

.drop-shadow-hover-dark:hover {
    filter: drop-shadow(0px 0px 1px rgba(0, 0, 0, 0.27));
}

.drop-shadow-hover-white {
    transition: all 0.2s;
}

.drop-shadow-hover-white:hover {
    filter: drop-shadow(0px 0px 1px white);
}

.vh-90 {
    height: 90vh;
}

.hide {
    visibility: hidden;
}

.visible {
    visibility: visible;
}

.transition-3 {
    transition: 0.3s;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-3 {
    z-index: 3;
}

.z-4 {
    z-index: 4;
}

.z-5 {
    z-index: 5;
}

.-z-1 {
    z-index: -1;
}

.-z-2 {
    z-index: -2;
}

.unselectable {
    user-select: none;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 51000000000000000000000000000000;
    overflow: hidden;
}

.no-js #loader-wrapper {
    display: none;
}

#loader {
    display: block;
    right: 50%;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-attachment: fixed;
    border: 3px solid transparent;
    border-top-color: var(--blue);
    -webkit-animation: spin 1.7s linear infinite;
    animation: spin 1.7s linear infinite;
    z-index: 11;
}

#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #ff0606;
    -webkit-animation: spin-reverse 0.6s linear infinite;
    animation: spin-reverse 0.6s linear infinite;
}

#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #f9ca22ba;
    -webkit-animation: spin 1s linear infinite;
    animation: spin 1s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@-webkit-keyframes spin-reverse {
    0% {
        -webkit-transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(-360deg);
    }
}

@keyframes spin-reverse {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(-360deg);
    }
}

#loader-wrapper .loader-section {
    position: fixed;
    top: 0;
    width: 51%;
    height: 100%;
    background: rgb(253, 253, 253);
    z-index: 10;
}

#loader-wrapper .loader-section.section-left {
    left: 0;
}

#loader-wrapper .loader-section.section-right {
    right: 0;
}


/* Loaded styles */

.loaded #loader-wrapper .loader-section.section-left {
    transform: translateX(-100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
    transform: translateX(100%);
    transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
    opacity: 0;
    transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
    visibility: hidden;
    transform: translateY(-100%);
    transition: all 0.3s 1s ease-out;
}

.search__status__available,
.search__status__confirmation,
.search__status__inquiry,
.search__status__un_available {
    border-radius: 10px;
    text-align: center;
    font-weight: bolder;
    max-width: 100px;
    margin: auto;
    color: #000;
}

.search__status__available {
    background-color: rgb(0, 255, 0);
}

.search__status__confirmation {
    background-color: yellow;
}

.search__status__inquiry {
    background-color: orange;
}

.search__status__un_available {
    background-color: red;
}

.bg-transparent {
    background-color: transparent;
}

.overflow-scroll {
    overflow-y: scroll !important;
}

.border-bottom {
    border-top: none;
    border-left: none;
    border-right: none;
    border-bottom: 1px solid rgb(134, 134, 134) !important;
}

.underline {
    text-decoration: underline !important;
}

.watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-35deg);
    font-size: 90px;
    opacity: 0.2;
    pointer-events: none;
    width: auto;
}

.comingsoon {
    color: #a3a3a3 !important;
    cursor: default !important;
}

.comingsoon:hover {
    color: #a3a3a3 !important;
    background-color: transparent !important;
}

#cartPopupContent {
    background: rgb(83, 83, 83);
    color: white;
    position: absolute;
    top: 100%;
    border-radius: 6px;
    font-size: 14px;
    z-index: 10000;
    display: none;
    width: auto !important;
}

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;
}

dl,
ol,
ul {
    margin: 0 !important;
}

label {
    margin-bottom: 0 !important;
}

.centered-table td {
    text-align: center;
    vertical-align: middle;
}

.mask {
    z-index: 1000000 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: red !important;
}

.mask__box {
    position: absolute;
    z-index: 1000002;
    width: 50%;
    left: 25%;
    top: 200px;
    border-radius: 6px;
    padding: 10px;
}

.mask__out {
    position: absolute;
    z-index: 1000001;
    width: 100%;
    height: 100%;
}

.pagination{
    justify-content: center;
}


.not_seen{
    background-color: rgb(191, 224, 255) !important;
}