@import url(migration-style.css);

@font-face {
    font-family: IranYekan;
    font-style: normal;
    font-weight: 400;
    src: url(/assets/fonts/eot/iranyekanwebregularfanum.eot);
    src: url(/assets/fonts/eot/iranyekanwebregularfanum.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/woff/iranyekanwebregularfanum.woff) format("woff"), url(/assets/fonts/ttf/iranyekanwebregularfanum.ttf) format("truetype");
}

@font-face {
    font-family: IranYekanBold;
    font-style: normal;
    font-weight: 900;
    src: url(/assets/fonts/eot/iranyekanwebboldfanum.eot);
    src: url(/assets/fonts/eot/iranyekanwebboldfanum.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/woff/iranyekanwebboldfanum.woff) format("woff"), url(/assets/fonts/ttf/iranyekanwebboldfanum.ttf) format("truetype");
}

@font-face {
    font-family: IranYekanExtraBlack;
    font-style: normal;
    font-weight: 900;
    src: url(/assets/fonts/eot/iranyekanwebextrablackfanum.eot);
    src: url(/assets/fonts/eot/iranyekanwebextrablackfanum.eot?#iefix) format("embedded-opentype"), url(/assets/fonts/woff/iranyekanwebextrablackfanum.woff) format("woff"), url(/assets/fonts/ttf/iranyekanwebextrablackfanum.ttf) format("truetype");
}

:root {
    --font-family: "IranYekan";
    --font-family-title: "IranYekanBold";
    --font-family-black: "IranYekanExtraBlack";
    --font-family-en: "Poppins";
    --font-size-small: 12px;
    --font-size-medium: 14px;
    --font-size-large: 16px;
    --primary-color: #0048aa;
    --primary-dark-color: #0d2d59;
    --body-color: #FAFAFA;
    --bg-color: #ffffff;
    --text-color: #131414;
    --text-white: #ffffff;
    --text-gray: #424343;
    --text-gray: #5e6060;
    --padding: 8px;
    --padding-inner: 8px;
    --padding-controls: 9px 8px;
    --gap: 8px;
    --gap-large: 12px;
    --gap-xlarge: 16px;
    --border-radius: 8px;
    --border-radius-inner: 8px;
    --border-radius-controls: 6px;
    --box-shadow: 1px -2px 16px 0px #00000017;
    --control-height: 40px;
    --primary-color-alternate: #0056cc;
    --primary-color-alternate-dark: #0048AA;
    /*    --bg-color: #dcdcdc;*/
    --white-color: #ffffff;
    --badge-color: #FF3333;
    --text-color-alternate: #2A2D33;
    --alternate-text-color: #55575C;
    --text-dark-color: #131414;
    --padding-small: 8px;
    --padding-medium: 12px;
    --padding-large: 12px;
    --padding-xlarge: 16px;
    --border-radius-xsmall: 4px;
    --border-radius-small: 8px;
    --border-radius-medium: 12px;
    --border-radius-large: 16px;
    --controls-border-color: #d4d5d6;
    --controls-border-color-light: #F4F4F5;
    --controls-gray-text-color: #2a2d33;
    /* --font-awesome: "Font Awesome 6 Pro"; */
    /* --font-line-awesome: 'Line Awesome Free'; */
    /* --primary-color: #e0324b;
    --primary-color-transparent: #e0324b80;
    --primary-color-high-transparent: rgb(224, 50, 75, 0.2);
    --bg-white: #ffffff;
    --bg-color: #F3F3F3;
    --bg-second-color: #f5f5f5;
    --white-smoke-color: #f2f4f6;
    --white-smoke-light-color: rgba(242, 244, 246, 0.5);
    --text-black-color: #000;
    --text-color: #24282A;
    --text-white: #fff;
    --error-color: #ee5253;
    --text-gray-color: #898D8F;
    --border-color: rgba(7, 7, 6, 0.3);
    --border-radius: 45px;
    --border-radius-inner: 25px;
    --border-radius-navigations: 20px;
    --slider-inner-margin: 10px;
    --slider-inner-padding: 10px;
    --border-radius-on-card: 25px;
    --padding-on-card: 1.5rem;
    --padding-controls: 10px 20px;
    --border-radius-controls: 25px; */
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    direction: rtl;
    background-color: var(--body-color);
    color: var(--text-color);
    font-family: var(--font-family), var(--font-family-en);
    font-size: var(--font-size-medium);
    border: 0;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

::selection {
    background-color: var(--primary-color);
    color: #fff;
}

/* width */
::-webkit-scrollbar {
    background: rgba(255, 255, 255, 1) !important;
    width: 8px;
    border-radius: 45px;
}

    ::-webkit-scrollbar:hover {
        width: 12px;
    }

/* Track */
::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 1) !important;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: rgba(229, 235, 235, 1) !important;
    border-radius: 23px;
}

    /* Handle on hover */
    ::-webkit-scrollbar-thumb:hover {
        background: rgba(229, 235, 235, 1) !important;
    }

a {
    text-decoration: none;
    color: var(--text-color);
}

    a:hover {
        /*        color: var(--primary-color) !important;*/
        cursor: pointer;
    }

h1,
h2 {
    font-family: var(--font-family-title);
}

h3,
h4,
h5,
h6 {
    /*    font-family: var(--font-family-title);*/
}

h1 {
    font-size: var(--font-size-large);
    line-height: 22.55px;
}

/* =========================== Mobile Navigation =========================== */

/* =========================== Card =========================== */

/* =========================== Modal =========================== */

.modal-content {
    padding: 18px 18px 0 !important;
    border-radius: 12px !important;
}

    .modal-content > .modal-body {
        padding: 0 !important;
    }

    .modal-content > .modal-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 20px;
        border-bottom: none !important;
        font-weight: 500;
        color: #002557 !important;
        padding-bottom: 0 !important;
        text-align: right;
        padding: 0 !important;
    }

        .modal-content > .modal-header > h4 {
            font-size: 18px;
            font-weight: 700;
            position: relative;
            padding-right: 12px;
            color: #002557;
            margin-right: 2px;
            text-transform: capitalize;
        }

            .modal-content > .modal-header > h4:before {
                content: ' ';
                display: inline-block;
                width: 25px;
                height: 4px;
                background-color: #0048aa;
                border-top-left-radius: 3px;
                border-top-right-radius: 3px;
                transform: rotate(90deg);
                position: absolute;
                top: 9px;
                right: -12px;
            }

    .modal-content > .modal-body label {
        font-size: var(--font-size-small);
        font-weight: 400;
        color: #000000;
    }

    .modal-content > .modal-body input::placeholder {
        color: #9AA0A0;
    }

    .modal-content .modal-body .form-group {
        margin-bottom: var(--gap-large);
    }

    .modal-content > .modal-body .modal-footer {
        background: #FFFFFF;
        display: flex;
        justify-content: flex-end;
        gap: 14px;
        border-top: 1px solid #E5EBEB;
        border-top-left-radius: 8px;
        border-top-right-radius: 8px;
        padding: 6px 6px;
        margin-top: 16px;
        margin-right: -16px;
        margin-left: -16px;
    }

        .modal-content > .modal-body .modal-footer button {
            width: 100%;
        }

/* =========================== Controls =========================== */

input[type="text"],
input[type="search"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="tel"],
textarea {
    background-color: var(--bg-color);
    color: var(--text-color);
    width: 100%;
    min-width: 125px;
    min-height: 40px;
    outline: none;
    border: 1px solid #d0d9d9;
    padding: var(--padding-controls);
    border-radius: var(--border-radius-controls);
    resize: none;
    direction: rtl;
    font-size: 12px;
    font-weight: 500;
}

    input[type="text"]:focus,
    input[type="search"]:focus,
    input[type="email"]:focus,
    input[type="password"]:focus,
    input[type="number"]:focus,
    input[type="tel"]:focus,
    textarea:focus {
        font-weight: 600;
        border: 1px solid #3e7fd7;
    }

    input[type="text"]::placeholder,
    input[type="search"]::placeholder,
    input[type="email"]::placeholder,
    input[type="password"]::placeholder,
    input[type="number"]::placeholder,
    input[type="tel"]::placeholder,
    textarea::placeholder {
        font-size: 12px;
        font-weight: 500;
    }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

button {
    outline: none;
    border: none;
}

.idehal-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(180deg, #2876e0 0%, #003e93 100%);
    color: var(--text-white);
    font-size: var(--font-size-large);
    padding: 10px 16px;
    border-radius: var(--border-radius-inner);
    outline: none;
    border: none;
}

    .modal button[type="submit"]:hover,
    .idehal-btn:hover {
        background: rgba(0, 52, 124, 1);
    }

.modal button[type="submit"]:focus,
btn:focus {
    background: rgba(0, 37, 87, 1);
}

button:disabled,
.idehal-btn:disabled {
    background: rgb(0, 37, 87, 0.3);
    cursor: default !important;
}

.idehal-btn-outline {
    background: #ffffff;
    border: 1px solid #3E7FD7;
    color: #0048AA;
    font-size: var(--font-size-large);
    font-weight: 700;
}

    .idehal-btn-outline:hover {
        background: #E6F0FF;
    }

    .idehal-btn-outline:focus {
        background: #002557;
        color: #ffffff;
    }

.required-fields {
    border: 1px solid #f2302f;
}

.validation-message {
    font-size: 10px;
    color: #f2302f;
}

.primary-text {
    color: var(--primary-color);
}

.font-weight-700 {
    font-weight: 700;
}

.small-text {
    font-size: var(--font-size-small);
    font-weight: 400;
}

/* Loading dots styles */


.btn-loading {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    height: 44px;
    max-height: max-content;
}

    .btn-loading span {
        -webkit-animation-name: btn-loading-animation;
        -webkit-animation-duration: 1s;
        -webkit-animation-iteration-count: infinite;
        -moz-animation-name: btn-loading-animation;
        -moz-animation-duration: 1s;
        -moz-animation-iteration-count: infinite;
        font-size: 30px;
        vertical-align: middle;
        height: 44px;
        max-height: max-content;
    }

        .btn-loading span:nth-child(2) {
            -webkit-animation-delay: 100ms;
            -moz-animation-delay: 100ms;
        }

        .btn-loading span:nth-child(3) {
            -webkit-animation-delay: 300ms;
            -moz-animation-delay: 300ms;
        }

.radio-control {
    /*    font-family: system-ui, sans-serif;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1.1;
    display: grid;
    grid-template-columns: 1em auto;
    gap: 0.5em;*/
}

    .radio-control + .radio-control {
        margin-top: 1em;
    }

    .radio-control:focus-within {
        color: var(--primary-color);
    }

input[type=radio] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0;
    font: inherit;
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    border: 0.15em solid #002557;
    border-radius: 50%;
    transform: translateY(-0.075em);
    display: grid;
    place-content: center;
}

    input[type=radio]:checked::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        transition: 120ms transform ease-in-out;
        box-shadow: inset 1em 1em #ffffff;
    }

    input[type=radio]:checked {
        background-color: var(--primary-color);
        border-color: var(--primary-color);
    }

        input[type=radio]:checked::before {
            background-color: #FFFFFF;
        }

/* =========================== Loading =========================== */
#loading {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    position: fixed;
    display: block;
    opacity: .7;
    background-color: #dbdbdb;
    z-index: 1000;
    text-align: center
}

.spinner-box {
    background: #fff;
    z-index: 99999999999;
    position: fixed;
    width: 354px;
    height: 200px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px
}

    .spinner-box > img {
        position: relative;
        bottom: 20px
    }

.pulse-container {
    width: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 58px;
    position: absolute
}

.pulse-bubble {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #0048aa;
    margin-top: 35px
}

.pulse-bubble-1 {
    animation: pulse .4s ease 0s infinite alternate
}

.pulse-bubble-2 {
    animation: pulse .4s ease .2s infinite alternate
}

.pulse-bubble-3 {
    animation: pulse .4s ease .4s infinite alternate
}

@keyframes pulse {
    from {
        opacity: 1;
        transform: scale(1)
    }

    to {
        opacity: .25;
        transform: scale(.75)
    }
}

/* =========================== Custom Styles =========================== */

.section-title {
    font-size: 2rem;
    position: relative;
    color: var(--primary-dark-color);
    margin-bottom: 1.5rem;
    font-weight: 900;
    margin-top: 1rem;
    position: relative;
    padding-right: 12px;
}

    .section-title:before {
        content: " ";
        display: inline-block;
        width: 25px;
        height: 4px;
        background-color: #195ab2;
        border-top-left-radius: 3px;
        border-top-right-radius: 3px;
        transform: rotate(90deg);
        position: absolute;
        top: 8px;
        right: -12px;
    }

.gap-8 {
    gap: var(--gap);
}

.colors-wrapper {
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
}

    .colors-wrapper .title {
        font-size: 16px;
        font-weight: 600;
        margin-bottom: 0.5rem;
    }

    .colors-wrapper .colors-inner {
        display: flex;
        flex-direction: row;
        gap: 10px;
        margin-top: 0.5rem;
        flex-wrap: wrap;
    }

        .colors-wrapper .colors-inner .color-group {
            /*background: transparent;*/
            border: 2px solid #DEE3ED;
            border-radius: 25px;
            display: flex;
            gap: 5px;
            align-items: center;
            padding: 5px 10px;
            position: relative;
            font-size: 10px;
        }

        .colors-wrapper .colors-inner .color {
            content: ' ';
            display: block;
            width: 27px;
            height: 27px;
            border-radius: 50%;
            /*border: 6px solid #DEE3ED;*/
            outline: none;
            background-color: transparent;
            position: relative;
            background-color: #000;
        }

        .colors-wrapper .colors-inner .color-black {
            background-color: #000;
        }

        .colors-wrapper .colors-inner .color-white {
            background-color: #fff;
        }

        .colors-wrapper .colors-inner .color-semi-black {
            background-color: #979ea2;
        }

        .colors-wrapper .colors-inner .color-red {
            background-color: #eb4559;
        }

        .colors-wrapper .colors-inner .color-blue {
            background-color: #0779e4;
        }

        .colors-wrapper .colors-inner .color-red-black {
            background: #1c1f22;
            background: -moz-linear-gradient(left, #1c1f22 0%, #1c1f22 50%, #d6191c 50%, #e23134 100%);
            background: -webkit-linear-gradient(left, #1c1f22 0%, #1c1f22 50%, #d6191c 50%, #e23134 100%);
            background: linear-gradient(to right, #1c1f22 0%, #1c1f22 50%, #d6191c 50%, #e23134 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#1c1f22 ', endColorstr='#e23134', GradientType=1);
        }

        .colors-wrapper .colors-inner .color-white-black {
            background: #fff;
            background: -moz-linear-gradient(left, #fff 0%, #fff 50%, #1c1f22 50%, #1c1f22 100%);
            background: -webkit-linear-gradient(left, #fff 0%, #fff 50%, #1c1f22 50%, #1c1f22 100%);
            background: linear-gradient(to right, #fff 0%, #fff 50%, #1c1f22 50%, #1c1f22 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff ', endColorstr='#1c1f22', GradientType=1);
        }

        .colors-wrapper .colors-inner .color-white-purple {
            background: #83437f;
            background: -moz-linear-gradient(left, #83437f 0%, #83437f 50%, #fff 50%, #fff 100%);
            background: -webkit-linear-gradient(left, #83437f 0%, #83437f 50%, #fff 50%, #fff 100%);
            background: linear-gradient(to right, #83437f 0%, #83437f 50%, #fff 50%, #fff 100%);
            filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#83437f ', endColorstr='#fff', GradientType=1);
        }

        .colors-wrapper .colors-inner .color-beige {
            background-color: #d9d9bc;
        }

        .colors-wrapper .colors-inner .color-silver {
            background-color: #c0c0c0;
        }

        .colors-wrapper .colors-inner .color-navy-blue {
            background-color: #000080;
        }

        .colors-wrapper .colors-inner .color-black-silver {
            background: #1c1f22;
            background: -moz-linear-gradient(left, #1c1f22 0%, #1c1f22 50%, #c0c0c0 50%, #a8a8a8 100%);
            background: -webkit-linear-gradient(left, #1c1f22 0%, #1c1f22 50%, #c0c0c0 50%, #a8a8a8 100%);
            background: linear-gradient(to right, #1c1f22 0%, #1c1f22 50%, #c0c0c0 50%, #a8a8a8 100%);
        }

        .colors-wrapper .colors-inner .color-green {
            background-color: #7AB41E;
        }

        .colors-wrapper .colors-inner .color-purple {
            background-color: #8862D9;
        }

        .colors-wrapper .colors-inner .color-orange {
            background-color: #F66554;
        }

        .colors-wrapper .colors-inner .color-light-black {
            background-color: #95a5a6;
        }

        .colors-wrapper .colors-inner .color-gray {
            background-color: #636e72;
        }

        .colors-wrapper .colors-inner .color-green-white {
            background: #7AB41E;
            background: -moz-linear-gradient(left, #7AB41E 0%, #7AB41E 50%, #fff 50%, #fff 100%);
            background: -webkit-linear-gradient(left, #7AB41E 0%, #7AB41E 50%, #fff 50%, #fff 100%);
            background: linear-gradient(to right, #7AB41E 0%, #7AB41E 50%, #fff 50%, #fff 100%);
        }

        .colors-wrapper .colors-inner .color-black-red {
            background: #1c1f22;
            background: -moz-linear-gradient(left, #e23134 0%, #d6191c 50%, #1c1f22 50%, #1c1f22 100%);
            background: -webkit-linear-gradient(left, #e23134 0%, #d6191c 50%, #1c1f22 50%, #1c1f22 100%);
            background: linear-gradient(to right, #e23134 0%, #d6191c 50%, #1c1f22 50%, #1c1f22 100%);
        }

        .colors-wrapper .colors-inner .active {
            border-color: var(--primary-color);
        }

            .colors-wrapper .colors-inner .active::after {
                content: "\ea0e";
                font-family: igicon;
                color: #DEE3ED;
                font-size: 32px;
                position: absolute;
                top: -1px;
                right: 9px;
                transform: translate(2px, -9px);
            }

.select2 {
    display: block !important;
    height: 40px !important;
}

    .select2 .select2-selection, .select2-selection__rendered {
        height: 40px !important;
    }

    .select2 .select2-selection__rendered {
        height: 40px !important;
        line-height: 40px !important;
    }

.select2-container--default .select2-selection--single {
    background-color: var(--bg-color) !important;
    color: var(--text-color) !important;
    outline: none !important;
    border: 1px solid #d0d9d9 !important;
    border-radius: var(--border-radius-controls) !important;
    resize: none !important;
    direction: rtl !important;
    font-size: 12px !important;
    font-weight: 500 !important;
}

    .select2-container--default .select2-selection--single .select2-selection__rendered {
        color: #9AA0A0 !important;
    }

    .select2-container--default .select2-selection--single .select2-selection__arrow {
        height: 37px !important;
    }

/* =========================== Notification =========================== */

/* =========================== Animations =========================== */

@-webkit-keyframes btn-loading-animation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

@-moz-keyframes btn-loading-animation {
    0% {
        opacity: 1;
    }

    100% {
        opacity: 0;
    }
}

/* =========================== Responsive =========================== */

@media (max-width: 575.98px) {
}

@media (max-width: 767.98px) {
    .modal {
        background: #FFFFFF;
        z-index: 999999;
    }

    .modal-dialog {
        margin: 0 !important;
    }

    .modal-content > .modal-body .modal-footer {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin-right: 0;
        margin-left: 0;
    }
}

@media (min-width: 768px) and (max-width: 991.98px) {
    .modal-dialog {
        margin: 1.1rem 0 0 0 !important;
    }
}

@media (max-width: 991.98px) {
    .modal-dialog {
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
    }

    .modal-content {
        border: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        height: 100% !important;
        max-height: 100% !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }
}

@media (max-width: 1199.98px) {
    .btn-loading {
        height: fit-content;
    }
}

@media (max-width: 1399.98px) {
}
