html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: middle;
}
html,body {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 0.875rem;
    line-height: 1.5rem;
    background-color: #F5F5F5;
    color: #222;
    text-align: right;
}

.ss-wrapper {
    direction: rtl;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: #222;
    transition: all 0.2s ease-in-out;
}

a:hover,
a:focus {
    color: #d71921;
    text-decoration: none;
    cursor: pointer;
}

p {
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    font-size: 14px;
    line-height: 1.5rem;
    color: #666;
    font-weight: 400;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'KalamehWebFaNum', arial, sans-serif;
}

h1 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 600;
}

h2 {
    font-size: 28px;
    line-height: 36px;
    font-weight: 600;
}

h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

h4 {
    font-size: 17px;
    line-height: 24px;
    font-weight: 600;
}

h5 {
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

button {
    cursor: pointer;
    outline: 0 !important;
}

img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: optimize-contrast;
}

strong {
    font-weight: bold;
}


.bold {
    font-weight: 600;
}

.kalameh {
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    font-size: 0.875rem;
    line-height: 1.5rem;
}

.color-gray {
    color: #888;
}

.color-white {
    color: #ffffff;
}

.color-red {
    color: #d71921;
}

.color-blue {
    color: #008bf6;
}

.color-black {
    color: #222;
}

.color-white {
    color: #fff;
}

.color-green {
    color: #1cbe8e;
}

.rotate {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

@media screen and (min-width: 1200px) {
    .container, .container-lg, .container-md, .container-sm, .container-xl {
        max-width: 1200px;
    }
}

/*Switch*/
.switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
    margin-left: 8px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d5dce6;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #d71921
}

input:focus + .slider {
    box-shadow: 0 0 1px rgba(55, 207, 139, 1);
}

input:checked + .slider:before {
    -webkit-transform: translateX(24px);
    -ms-transform: translateX(24px);
    transform: translateX(24px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Owl dots Owl nav */
.owl-theme .owl-nav.disabled + .owl-dots {
    margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot span {
    width: 14px;
    height: 14px;
    border-radius: 4px;
    margin: 5px;
    background: #D6D6D6;
    border-radius: 50%;
    transition: all 0.2s ease-in-out;
}

.dots-white .owl-dots .owl-dot span {
    background: #fff;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: #d71921;
}

.owl-carousel .owl-dots {
    margin-top: 20px;
    text-align: center;
}

/* scroll*/
body::-webkit-scrollbar {
    width: 12px; /* width of the entire scrollbar */
}

body::-webkit-scrollbar-track {
    background: #eef1f6; /* color of the tracking area */
}

body::-webkit-scrollbar-thumb {
    background-color: #888; /* color of the scroll thumb */
    border-radius: 20px; /* roundness of the scroll thumb */
    border: 3px solid #eef1f6; /* creates padding around scroll thumb */
}

body {
    scrollbar-width: thin; /* "auto" or "thin" */
    scrollbar-color: #888 #eef1f6; /* scroll thumb and track */
}

/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: #888 #eef1f6;
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

/**::-webkit-scrollbar-track {*/
/*    background: #eef1f6;*/
/*}*/

*::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 20px;
    border: 3px solid #eef1f6;
}

/* modal */
.modal {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1050;
    display: none;
    overflow: hidden;
    outline: 0;
}


/*.modal-open .modal {*/
/*    overflow-x: hidden;*/
/*    overflow-y: auto;*/
/*}*/

.modal-dialog {
    position: relative;
    width: auto;
    pointer-events: none;
}

.modal-dialog-centered {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    min-height: calc(100% - (0.5rem * 2));
}

.modal.fade .modal-dialog {
    transition: -webkit-transform .3s ease-out;
    transition: transform .3s ease-out;
    transition: transform .3s ease-out, -webkit-transform .3s ease-out;
    -webkit-transform: translate(0, -25%);
    transform: translate(0, -25%);
}

.modal.show .modal-dialog {
    -webkit-transform: translate(0, 0);
    transform: translate(0, 0);
}

.modal-content {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 8px;
    outline: 0;
    position: relative;
}

.modal-close-btn {
    display: flex;
    align-items: center;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 13px;
    line-height: 1.5rem;
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 1;
    color: #888;
}

.modal-close-btn i {
    width: 15px;
    display: flex;
    align-items: center;
}

.modal-close-btn i path {
    fill: #222;
}

.trash-btn {
    display: flex;
    align-items: center;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 13px;
    line-height: 1.5rem;
    z-index: 1;
    color: #888;
}

.trash-btn i {
    width: 15px;
    display: flex;
    align-items: center;
}

.trash-btn i path {
    fill: #e10404;
}

.modal-right-btn {
    display: flex;
    align-items: center;
    outline: 0;
    border: 0;
    background-color: transparent;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    font-weight: normal;
    font-style: normal;
    font-size: 13px;
    line-height: 1.5rem;
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 1;
    color: #888;
}

.modal-right-btn i {
    width: 22px;
    display: flex;
    align-items: center;
}

.modal-right-btn i path {
    fill: #222;
}


.modal-body {
    position: relative;
    flex: 1 1 auto;
    direction: rtl;
    overflow-x: auto;
}

.modal-backdrop {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1040;
    background-color: #000;
}


.modal-backdrop.fade {
    opacity: 0;
}

.modal-backdrop.show {
    opacity: .5;
}

@media screen and (min-width: 576px) {
    .modal-dialog {
        max-width: 500px;
        margin: 1.75rem auto;
    }

    .modal-dialog-centered {
        min-height: calc(100% - (1.75rem * 2));
    }
}

@media screen and (min-width: 992px) {
    .modal-lg {
        max-width: 800px;
    }

    .logo-header-mobile{
        display: none !important;
    }
}

/* alert */
.alert {
    position: relative;
    padding: 16px 12px;
    margin-bottom: 12px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
}
.alert-little{
    padding: 4px 12px;
}

.alert.success {
    background-color: #c4e7e1;
}

.alert.error {
    background-color: #f0c7cb;
}

.alert.danger {
    background-color: #f0dac7;
}

.alert.info {
    background-color: #bdd9ee;
}

.alert-icon-wrapper {
    width: 36px;
    display: flex;
    align-items: center;
    padding-left: 12px;
}

.alert-icon-wrapper i {
    display: flex;
    align-items: center;
    width: 24px;
    height: 24px;
}

.alert-content-wrapper {
    width: 100%
}

.alert-content-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 4px;
}

.alert-content-text {
    display: block;
    width: 100%;
    text-align: center;
    color: #222;
}

.alert.success .alert-icon-wrapper i path {
    fill: #1cbe8e;
}

.alert.error .alert-icon-wrapper i path {
    fill: #d71921;
}

.alert.danger .alert-icon-wrapper i path {
    fill: #eb8018;
}

.alert.info .alert-icon-wrapper i path {
    fill: #008bf6;
}

/* collapse */
.collapse:not(.show) {
    display: none;
}

.collapsing {
    position: relative;
    height: 0;
    overflow: hidden;
    transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing {
        transition: none;
    }
}

.collapsing.width {
    width: 0;
    height: auto;
    transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
    .collapsing.width {
        transition: none;
    }
}

/* hover */
.item-hover {
    position: relative;
}

.item-hover::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    transition: all 0.2s ease-in-out;
    border-radius: 4px;
    box-shadow: 0 15px 15px -5px rgba(0, 0, 0, 0);
    z-index: -1;
    border-radius: 8px;
}

.item-hover:hover.item-hover::before {
    box-shadow: 0px 15px 15px -5px rgb(0 0 0 / 4%), 0px 8px 10px 1px rgb(0 0 0 / 8%), 0px 3px 14px -20px rgb(0 0 0 / 12%) !important;
    transition: all 0.2s ease-in-out;
}

/* Forms */
.form-group {
    position: relative;
    margin-bottom: 16px;
    width: 100%;
    display: flex;
    flex-wrap: wrap;
}

.form-row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -5px;
    margin-left: -5px;
}

.form-control {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    outline: 0;
    height: 50px;
    color: #222;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    transition: border-color .2s ease-in-out, box-shadow .15s ease-in-out;
    text-align: right;
}

.form-control textarea {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.form-control textarea::-webkit-scrollbar {
    display: none;
}

.form-control.text-left {
    text-align: left;
}

.form-control:focus {
    border: 1px solid #222;
    outline: none;
    outline: 0;
}

.form-control-error {
    border: 1px solid #d71921;
}

.floating-label {
    color: #888;
    font-size: 16px;
    font-weight: normal;
    position: absolute;
    pointer-events: none;
    right: 12px;
    top: -10px;
    padding: 0 5px;
    background: #fff;
    transition: 0.2s ease all;
    -moz-transition: 0.2s ease all;
    -webkit-transition: 0.2s ease all;
}

.form-control-error ~ .floating-label {
    color: #d71921;
}

.form-control-error:focus ~ .floating-label {
    color: #888;
}

.floating-input:focus ~ .floating-label {
    top: -10px;
    font-size: 13px;
}

.floating-input:not(:placeholder-shown) ~ .floating-label {
    top: -10px;
    font-size: 13px;
}

.floating-label-solid {
    top: -10px;
    font-size: 13px;
}

.floating-select {
    display: block;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
    position: relative;
    background: #fff;
    transition: 0.2s ease all;
}

.floating-select:focus {
}

.floating-select:not([value=""]):valid ~ .floating-label {
    top: -10px;
    font-size: 13px;
}

.floating-textarea {
    min-height: 30px;
    max-height: 260px;
    overflow: hidden;
    overflow-x: hidden;
}

.error-input .floating-input {
    border: 1px solid #d71921;
}

.error-input .floating-label {
    color: #d71921;
}

.form-control-supplement {
    display: flex;
    width: 50px;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #888;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d1d1;
    border-right: 0;
    border-radius: 8px 0 0 8px;
    outline: 0;
    height: 50px;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    transition: border-color .2s ease-in-out, box-shadow .15s ease-in-out;
    justify-content: center;
    align-items: center;
}

.form-group.supplement {
    display: flex;
}

.form-group.supplement .form-control {
    border-radius: 0 8px 8px 0;
    width: calc(100% - 50px);
}

.form-control-prepend {
    display: flex;
    width: 50px;
    padding: 0;
    font-size: 1rem;
    line-height: 1.5;
    color: #888;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d1d1;
    border-left: 0;
    border-radius: 0 8px 8px 0;
    outline: 0;
    height: 50px;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    transition: border-color .2s ease-in-out, box-shadow .15s ease-in-out;
    justify-content: center;
    align-items: center;
}

.form-group.prepend {
    display: flex;
}

.form-group.prepend .form-control {
    border-radius: 8px 0 0 8px;
    width: calc(100% - 50px);
}

.form-group.prepend .floating-label {
    right: 62px;
}

.error-input .form-control-supplement {
    border: 1px solid #d71921;
    color: #d71921;
    border-right: 0;
}

.error-input .form-control-prepend {
    border: 1px solid #d71921;
    color: #d71921;
    border-left: 0;
}

.form-control-error-message {
    font-size: 13px;
    display: block;
    width: 100%;
    padding: 2px 0;
}

/* Radio Button & CheckBox */
.form-check-inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
    margin-left: 6px;
}

.form-check {
    display: flex;
    align-items: center;
    width: 100%;
    margin-bottom: 12px;
}

.form-check:last-child {
    margin-bottom: 0;
}

.form-radio {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    border: 1px solid #d1d1d1;
    height: 20px;
    width: 20px;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
}

.form-checkbox {
    border-radius: 3px;
}

.form-radio:checked::before {
    position: absolute;
    width: 12px;
    height: 12px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M443.3 100.7C449.6 106.9 449.6 117.1 443.3 123.3L171.3 395.3C165.1 401.6 154.9 401.6 148.7 395.3L4.686 251.3C-1.562 245.1-1.562 234.9 4.686 228.7C10.93 222.4 21.06 222.4 27.31 228.7L160 361.4L420.7 100.7C426.9 94.44 437.1 94.44 443.3 100.7H443.3z'/%3E%3C/svg%3E");
    right: 3px;
    top: 3px;
}

.form-radio:checked {
    background-color: #d71921;
    border: 1px solid rgba(0, 0, 0, 0);
}

.form-radio.active::before {
    position: absolute;
    width: 12px;
    height: 12px;
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 448 512'%3E%3Cpath fill='%23ffffff' d='M443.3 100.7C449.6 106.9 449.6 117.1 443.3 123.3L171.3 395.3C165.1 401.6 154.9 401.6 148.7 395.3L4.686 251.3C-1.562 245.1-1.562 234.9 4.686 228.7C10.93 222.4 21.06 222.4 27.31 228.7L160 361.4L420.7 100.7C426.9 94.44 437.1 94.44 443.3 100.7H443.3z'/%3E%3C/svg%3E");
    right: 3px;
    top: 3px;
}

.form-radio.active {
    background-color: #d71921;
    border: 1px solid rgba(0, 0, 0, 0);
}



.sort-radio {
    margin-left: 9px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    position: relative;
    border: 1px solid #bababa;
    height: 14px;
    width: 14px;
    border-radius: 50px;
    cursor: pointer;
    outline: none;
}


.sort-radio:checked::before {
    position: absolute;
    width: 12px;
    height: 12px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" viewBox="0 0 6 6" fill="none"><circle cx="3" cy="3" r="2.625" fill="%23D71921"/></svg>');
    right: 3px;
    top: -3px;
}

.sort-radio:checked {
    border: 1px solid #F3BABC
}

.sort-radio.active::before {
    position: absolute;
    width: 12px;
    height: 12px;
    content: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="6" height="6" viewBox="0 0 6 6" fill="none"><circle cx="3" cy="3" r="2.625" fill="%23D71921"/></svg>');
    right: 3px;
    top: -3px;
}

.sort-radio.active {
    border: 1px solid #F3BABC
}
.sort-result.active>.ss-hn-nav-animate{
    color: #D71921;
}

.ss-hn-nav-animate{
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: right;
    color: #7f7f7f;
}

.ss-hn-nav-animate-cabin-type{
    font-size: 13px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0em;
    text-align: right;
    color: #DF474D;
}

.form-check-inline label,
.form-check label {
    color: #222;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    cursor: pointer;
    padding-right: 6px;
    font-size: 15px;
}

.form-check-inline label:hover,
.form-check label:hover {
    color: #d71921;
}

.form-check-inline input[type][disabled],
.form-check input[type][disabled] {
    background-color: #e0e0e0;
    color: #e0e0e0;
    cursor: default;
}

.form-check-inline input[type][disabled] + label,
.form-check input[type][disabled] + label {
    color: #e0e0e0;
    cursor: default;
}

/* table */
.table {
    width: 100%;
    border-collapse: collapse;
    border: 1px solid #d1d1d1;
}

.table thead {
    background-color: #eef1f6;

}

.table thead th {
    padding: 16px 12px;
    font-size: 15px;
    font-weight: 500;
    border-bottom: 1px solid #d1d1d1;
}

.table tbody td {
    padding: 16px 12px;
    font-size: 15px;
    border-bottom: 1px solid #d1d1d1;
}

@media screen and (max-width: 768px) {
    .table.responsive {
        border: 0;
    }

    .table.responsive thead {
        background-color: transparent;
        border-bottom: 0;
    }

    .table.responsive thead th {
        display: none;
        border: none;
        clip: rect(0 0 0 0);
        height: 1px;
        margin: -1px;
        overflow: hidden;
        padding: 0;
        position: absolute;
        width: 1px;
        background-color: transparent;
        border-bottom: 0;
    }

    .table.responsive tbody tr {
        border: 1px solid #d1d1d1;
        margin-bottom: 12px;
        display: block;
    }

    .table.responsive td {
        display: block;
        text-align: left;
        font-size: 14px;
        background-color: #eef1f6;
        padding: 12px 12px;
    }

    .table.responsive td::before {
        content: attr(data-label);
        float: right;
        font-weight: 500;
        text-transform: uppercase;
    }

    .table.responsive td:last-child {
        border-bottom: 0;
    }
}

/*  Date Picker
/*---------------------------------------------------------------------------------*/

/*  Tab
/*---------------------------------------------------------------------------------*/
.tab-content > .tab-pane {
    display: none;
}

.tab-content > .active {
    display: block;
}

.fade {
    transition: opacity .15s linear;
}

.fade:not(.show) {
    opacity: 0;
}

.nav {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}

.nav-tabs {
    border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
    margin-bottom: -1px;
    background-color: transparent;
    border: 1px solid transparent;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
    font-size: 15px;
    font-weight: 500;
}

.nav-link {
    display: block;
}
@media screen and (max-width: 768px) {
    .nav-tabs {
        border-bottom: 0;
    }
    .nav-tabs .nav-link {
        margin-bottom: -16px;
        background-color: transparent;
        border: 1px solid transparent;
        border-top-left-radius: 0.25rem;
        border-top-right-radius: 0.25rem;
    }
}


/*  DropDown
/*---------------------------------------------------------------------------------*/
.dropdown, .dropleft, .dropright, .dropup {
    position: relative;
}

.dropdown-toggle {
    white-space: nowrap;
}

.dropdown-toggle::after {
    display: inline-block;
    vertical-align: 0.255em;
    content: "";
    border-bottom: 0;
}

.dropdown-toggle::after {
    margin-left: 0;
    margin-right: 5px;
    border-top: 0.2em solid;
    border-right: 0.2em solid transparent;
    border-left: 0.2em solid transparent;
    position: relative;
    top: 2px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0.125rem 0 0;
    font-size: 1rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-menu[x-placement^=bottom], .dropdown-menu[x-placement^=left], .dropdown-menu[x-placement^=right], .dropdown-menu[x-placement^=top] {
    right: auto;
    bottom: auto;
}

/*  BTN
/*---------------------------------------------------------------------------------*/
.ss-btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

[type=button], [type=reset], [type=submit], button {
    -webkit-appearance: button;
}

.ss-btn {
    display: flex;
    align-items: center;
    font-weight: 300;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
    user-select: none;
    border: 0 solid transparent;
    padding: 6px 18px;
    line-height: 1.5;
    border-radius: 8px;
    height: 46px;
    transition: all 0.2s ease-in-out;
    box-shadow: none;
    position: relative;
    direction: rtl;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    text-align: center;
    justify-content: center;
}

.ss-btn:hover {
    transition: box-shadow 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.ss-btn i {
    display: flex;
    align-items: center;
    margin-left: 6px;
    font-size: 20px;
}

.ss-btn-small {
    height: 36px;
    line-height: 1.25rem;
    padding: 6px 16px;
    font-size: 13px;
}

.ss-btn-small i {
    width: 14px;
    margin-left: 6px;
    font-size: 14px;
}

.ss-btn-large {
    height: 50px;
    line-height: 1.5rem;
    padding: 12px 36px;
    font-size: 16px;
}

.ss-btn-large i {
    width: 14px;
    margin-left: 6px;
    font-size: 14px;
}

.ss-btn-red-noanim {
    color: #fff;
    background-color: #d71921;
}

.ss-btn-red-noanim:hover,
.ss-btn-red-noanim:focus {
    color: #fff;
    box-shadow: 0 0 0 0 rgb(0, 0, 0, 0);
}

.ss-btn-red {
    color: #fff;
}

.ss-btn-red:hover,
.ss-btn-red:focus {
    color: #fff;
    box-shadow: 0 0 0 0 rgb(0, 0, 0, 0);
}

.ss-btn-red i path {
    fill: #fff !important;
}

.ss-btn-gray {
    color: #222;
    background-color: #d5dce6;
    font-weight: 400;
}

.ss-btn-gray:hover,
.ss-btn-gray:focus {
    color: #222;
    box-shadow: 0 0 0 0 rgb(0, 0, 0, 0);
    opacity: 0.8;
}

.ss-btn-animate ,.select-flight-btn {
    overflow: hidden;
    z-index: 1;
}

.ss-btn-animate:before ,.select-flight-btn:before {
    z-index: -1;
    width: 100%;
    height: 100%;
    position: absolute;
    content: "";
    right: 0;
}

.ss-btn-animate:after ,.select-flight-btn:after {
    position: absolute;
    transition: 0.3s;
    content: "";
    width: 0;
    height: 120%;
    right: -10%;
    z-index: -1;
}

.ss-btn-animate:hover::after {
    width: 100%;
    right: -10%;
    width: 120%;
}

.ss-btn-red.ss-btn-animate:before ,.select-flight-btn:before {
    background-color: #d71921;
}

.ss-btn-red.ss-btn-animate:hover {
    color: #fff;
}

.ss-btn-red.ss-btn-animate:after {
    background: #ae1218;
}

/*  Header
/*---------------------------------------------------------------------------------*/
.ss-header-home {
    position: absolute;
    width: 100%;
    padding: 15px 0;
    z-index: 1;
}

.ss-header-inner {
    width: 100%;
    padding: 15px 0;
    background-color: #fff;
    border-bottom: 1px solid #F4F4F4;
}

/*  Navbar
/*---------------------------------------------------------------------------------*/
.header-mobile {
    display: flex;
    justify-content: space-between;
}

.navbar {
    display: flex;
    position: relative;
    align-items: center;
}

.navbar-brand {
    margin: 0;
    padding: 0;
}

.navbar-brand img {
    width: 102px;
    height: auto;
}

.navbar-nav {
    padding-right: 40px;
    display: flex;
}

.navbar-toggler {
    background-color: transparent;
    display: flex;
    align-items: center;
    align-content: center;
    justify-content: center;
    height: 28px;
    width: 28px;
    padding: 0;
    z-index: 2;
    border: 0;
}

.ss-header-home .navbar-toggler {
    width: 44px;
    height: 44px;
    border-radius: 8px;
    background-color: #fff;
}

.navbar-toggler-link {
    width: 22px;
    height: 22px;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out;
    cursor: pointer;
    display: block
}

.navbar-toggler-link span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: #222;
    opacity: 1;
    left: 0;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: .2s ease-in-out;
    -moz-transition: .2s ease-in-out;
    -o-transition: .2s ease-in-out;
    transition: .2s ease-in-out
}

.navbar-toggler-link {
    text-decoration: none;
    color: #222;
    margin-top: 3px;
}

.navbar-toggler-link:after {
    content: "";
    font-size: 24px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1rem
}

.navbar-toggler-link span:nth-child(1) {
    top: 0;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

.navbar-toggler-link span:nth-child(2) {
    top: 8px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

.navbar-toggler-link span:nth-child(3) {
    top: 16px;
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center
}

.is-open.navbar-toggler {
}

.is-open .navbar-toggler-link span {
    background-color: #222;
}

.is-open .navbar-toggler-link span:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    top: 0px;
    left: 3px
}

.is-open .navbar-toggler-link span:nth-child(2) {
    width: 0;
    opacity: 0
}

.is-open .navbar-toggler-link span:nth-child(3) {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    top: 16px;
    left: 3px
}

.hn-mobile-icons {
    display: flex;
    direction: ltr;
    align-items: center;
}

.hn-li-login {
    z-index: 1;
}

.hn-li-login i path {
    fill: #222;
}

.hn-mobile-icons a {
    display: flex;
}

.ss-overlay {
    position: fixed;
    width: 100%;
    right: 0;
    top: 0;
    height: 100%;
    background-color: rgba(0, 10, 20, 0.5);
    z-index: 0;
    transition: all 0.2s ease-in-out;
    visibility: hidden;
    opacity: 0;
    z-index: 2;
}

.ss-overlay.active {
    transition: all 0.2s ease-in-out;
    visibility: visible;
    opacity: 1;
}

@media screen and (min-width: 992px) {
    .navbar-toggler {
        display: none;
    }

    .navbar-expand-lg {
        flex-flow: row nowrap;
    }
}

@media screen and (max-width: 992px) {
    .ss-header-home .navbar-brand {
        display: none;
    }

    .ss-header-inner {
        background-color: #FFF;
    }

    .ss-header-inner .navbar-brand {
        display: none;
    }

    .navbar-offcanvas {
        position: fixed;
        height: 100%;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1060;
        padding: 0;
        overflow-y: scroll;
        background-color: #fff!important;
        display: none;
        margin-bottom: 0;
    }

    .navbar-offcanvas.offcanvas-transform.in {
        -webkit-transform: translateX(-300px);
        transform: translateX(-299px);
        box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0);
    }

    .ss-btn i {
        margin-left: 0px;
    }
}

/*  Navbar Menu
/*---------------------------------------------------------------------------------*/
.hn-menu {
    display: flex;
    align-items: center;
}

.hn-menu li {
    list-style: none;
    position: relative;
    padding: 10px;
}

.hn-menu li i {
    margin-right: 6px;
    width: 6px;
    height: 100%;
}

.hn-menu li i path {
    fill: #222;
}

.ss-header-home .hn-menu li i path {
    fill: #fff;
}

.ss-header-inner .hn-menu li i path {
    fill: #222;
}

.hn-menu li a {
    font-size: 15px;
    position: relative;
    display: flex;
    width: 100%;
    transition: none;
}

.ss-header-home .hn-menu li a {
    color: #fff;
    font-weight: 300;
}

.ss-header-inner .hn-menu li a {
    color: #373B3E;
    font-weight: 400;
}

.hn-menu li a:hover {
    color: #fff;
}

.ss-header-inner .hn-menu li a:hover {
    color: #d71921;
}

.hn-dropdown-menu {
    background-color: #fff;
    border-radius: 8px;
    transition: all 0.2s;
    top: 100%;
    right: 0;
    min-width: 12rem;
    border: 1px solid rgba(0, 0, 0, .0);
}

.hn-menu ul li {
    display: flex;
    width: 100%;
    padding: 8px 15px;
}

.hn-menu ul li a {
    font-size: 14px;
}

.hn-menu ul li a:hover {
    color: #d71921;
}

.ss-header .hn-menu ul li a {
    color: #222;
    font-weight: 400;
}

.ss-header .hn-menu ul li a:hover {
    color: #d71921;
}




.ss-header-inner .ss-hn-nav-animate:after {
    background: #d71921;
    z-index: 1;
}

@media screen and (min-width: 992px) {
    .hn-dropdown-menu {
        position: absolute;
        display: none;
    }

    .hn-menu li:hover ul,
    .hn-menu li ul li {
        display: block;
        z-index: 1000;
    }
    .ss-header .hn-menu li a svg ,.close-offcanvas ,.offcanvas-mobile-icon {
        display: none;
    }

}

@media screen and ( max-width: 992px ) {
    .hn-mobile-icons {
        width: 100%;
    }

    .hn-mobile-icons.rightside {
        justify-content: space-between;
    }

    .hn-menu {
        flex-wrap: wrap;
        align-items: flex-start;
    }

    .hn-menu li {
        padding: 14px 15px;
        width: 100%;
        border-bottom: 1px solid #ECEFF4;
    }

    .hn-menu li:last-child {
        border-bottom: none;
    }

    .hn-menu li a {
        font-size: 14px;
        width: 100%;
        text-align: right;
        position: relative;
        display: block;
    }

    .hn-menu li span {
        font-size: 14px;
    }

    .hn-menu li i {
        position: absolute;
        left: 0;
    }

    .hn-menu ul li {
        padding: 0px;
    }

    .hn-menu ul li a {
        padding: 8px 0px;
    }

    .hn-dropdown-menu {
        box-shadow: 0 0 1.25rem rgb(30 34 40 / 0);
        background-color: transparent;
    }

    .hn-menu li:hover ul {
        position: static;
    }

    .hn-menu ul > li,
    .hn-menu ul li ul li {
        display: block;
    }

    .hn-menu li > ul {
        display: none;
        width: 100%;
        position: relative;
    }

    .ss-header .hn-menu li a {
        color: #222;
        font-weight: 400;
        display: flex;
        align-items: center;
    }

    .ss-hn-nav-animate-home-link{
        margin-top: 7px;
    }
    .ss-header .hn-menu li a svg {
        margin-left: 12px;
    }

    .ss-header-home .hn-menu li i path {
        fill: #222;
    }
}

/*  Navbar Items
/*---------------------------------------------------------------------------------*/
.hn-links {
    display: flex;
    align-items: center;
    direction: ltr;
}

.hn-links-item {
    margin-left: 12px;
}

.hn-links-item:last-child {
    margin-right: 0;
}

.hn-li-support {
    display: flex;
    align-items: center;
}

.hn-li-support span {
    color: #000;
    font-size: 15px
}

.hn-li-support i {
    margin-right: 12px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    font-size: 20px
}

.hn-li-support i path {
    fill: #fff;
}

.hn-li-afterlogin-link {
    width: 220px;
    border-radius: 8px;
    padding: 6px 18px;
    line-height: 1.5;
    height: 44px;
    color: #222;
    font-size: 15px;
    display: flex;
    align-items: center;
    text-align: right;
    justify-content: flex-end;
    background-color: #fff;
    border: 0;
}

.ss-header-inner .hn-li-afterlogin-link {
    background-color: #f5f5f5;
}

.hn-li-afterlogin-link:hover {
}

.hn-li-afterlogin-link::after {
    margin-left: 0;
    margin-right: 5px;
    border-top: 0.2em solid;
    border-right: 0.2em solid transparent;
    border-left: 0.2em solid transparent;
    position: relative;
    top: 2px;
    left: 12px;
    right: initial;
    position: absolute;
    top: 50%;
}

.hn-li-afterlogin-dropdown-menu {
    width: 220px;
    background-color: #fff;
    border-radius: 8px;
    margin-top: 6px;
    padding: 15px;
}

.hn-li-afterlogin-credit {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    text-align: right;
    margin-bottom: 6px;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 12px;
}

.hn-li-afterlogin-credit-m-container{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    border-bottom: 1px solid #ECEFF4;
    padding: 14px 15px;
    width: 100%;
}

.hn-li-afterlogin-credit-m{
    display: flex;
    width: 100%;
    align-items: center;
    margin-bottom: 5px;
}

.hn-li-ac-title-m{
    margin-right: 4px;
}

.credit-dashboard{
    display: flex;
    flex-direction: row;
    direction: rtl;
}

.credit-dashboard-m{
    display: flex;
    flex-direction: row;
    direction: rtl;
    width: 100%;
    margin-bottom: 10px;
}

.hn-li-afterlogin-credit-m-container-c{
    display: flex;
    justify-content: space-between;
    width: 100%;
}


.hn-li-ac-title {
    width: 100%;
    display: block;
    font-size: 13px;
    line-height: 16px;
}

.hn-li-ac-title-m{
    color: #888;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    width: 100%;
}

.hn-li-afterlogin-credit-unit{
    color: #888;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
}

.hn-li-ac-val {
    width: 100%;
    display: block;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 6px;
}

.hn-li-ac-val-m{
    display: block;
    font-weight: 500;
    font-size: 18px;
    margin-bottom: 6px;
}

.hn-li-ac-val span {
    margin: 0 3px;
    font-size: 12px;
}

.hn-li-ac-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}

.hn-li-afterlogin-menu {
    display: block;
    width: 100%;
    text-align: right;
    direction: rtl;
}

.hn-li-afterlogin-menu li {
    display: flex;
    width: 100%;
    text-align: right;
}

.hn-li-afterlogin-menu li a {
    display: flex;
    width: 100%;
    font-size: 14px;
    padding: 6px 0;
}

.hn-li-afterlogin-menu li a i {
    font-size: 16px;
    width: 16px;
    display: flex;
    align-items: center;
    margin-left: 6px;
}


@media screen and ( max-width: 992px ) {
    .hn-li-login {
        width: 46px;
        padding: 0;
        justify-content: center;
        align-items: center;
        transition: none;
    }

    .hn-li-login span {
        display: none;
    }

    .hn-li-login i {
        width: 24px;
        font-size: 24px;
        height: 24px;
        display: block;
    }

    .hn-li-support {
        display: none;
    }

    .hn-links-item {
        display: none;
    }
}

.footer {
    background-color: #eef1f6;
    padding: 40px 0 0 0;
}

.footer.bg-white {
    background-color: #fff;
}

.footer-link-blocks {
    width: 100%;
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #d1d1d1;
    padding-bottom: 40px;
}

.footer-link-block {
    display: flex;
    flex-wrap: wrap;
}

.footer-link-block.first {
    width: 34%;
}

.footer-link-block.second {
    width: 16%;
}

.footer-link-block.third {
    width: 50%;
}

.footer-lb-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 18px;
    width: 100%;
    display: block;
}

.footer-lb-list {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    width: 100%;
}

.footer-lb-list li {
    width: 50%;
    margin-bottom: 6px;
}

.footer-link-block.second .footer-lb-list li {
    width: 100%;
    margin-bottom: 4px;
}

.footer-link-block.third .footer-lb-list li {
    width: calc(100% / 3);
    margin-bottom: 4px;
}

.footer-lb-list li a {
    font-size: 15px;
    color: #666;
    font-weight: 400;
}

.footer-lb-list li a:hover {
    color: #222;
}

.footer-bottom-wrapper {
    padding: 20px 0;
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.footer-about-text {
    width: 18%;
    display: flex;
    flex-wrap: wrap;
    text-align: justify;
    padding-left: 13px;
}

.footer-at-logo {
    display: flex;
    width: 100%;
    margin-left: 30px;
    align-items: flex-start;
    margin-bottom: 12px;
}

.footer-at-logo img {
    width: 80px;
    height: auto;
}

.footer-bottom-social {
    width: 25%;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-start;
    /*margin-top: 12px;*/
    padding-right: 13px;
}

.footer-an-social {
    display: flex;
    align-items: center;
    width: 100%;
}

.footer-an-social a {
    margin-left: 12px;
    transition: all 0.2s;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    transition: all 0.2s ease-in-out;
}

.footer-an-social a i {
    width: 20px;
    height: 20px;
}

.footer-an-social a i path {
    fill: #222;
    transition: all 0.2s ease-in-out;
}

.footer-an-social a:hover {
    background-color: #d71921;
    transition: all 0.2s ease-in-out;
}

.footer-an-social a:hover i path {
    fill: #fff;
}

.footer-bottom-badges {
    width: calc(40% + 6px);
    margin: 0 -3px;
    display: flex;
    flex-wrap: wrap;
    align-content: flex-end;
    padding-right: 13px;
    justify-content: flex-end;
}

.footer-bottom-badges-item {
    width: calc(96px - 6px);
    margin: 3px;
    height: 96px;
    border-radius: 8px;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-bottom-badges-sub1 {
    display: flex;
    align-content: flex-start;
    flex-direction: column;
}

.footer-bottom-badges-sub2 {
    display: flex;
    flex-direction: row;
    align-content: flex-start;
    margin-top: 10%;
}

.footer-bottom-badges-logo{
    display: flex;
    justify-content: flex-end;
    /*padding: 5%;*/
    padding-left: 10%;
    padding-bottom: 5%;
}

.copyright {
    background-color: #333;
    padding: 30px 0;
}

.footer-copyright-wrapper {
    display: flex;
    align-items: flex-start;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
}

.footer-copyright-content {
    display: flex;
    flex-wrap: wrap;
    width: 70%;
}

.footer-copyright-content p {
    text-align: right;
    width: 100%;
    display: block;
    font-size: 14px;
    width: 100%;
    color: #fff;
    font-weight: 300;
    margin-bottom: 6px;
}

.footer-copyright-links {
    display: flex;
    width: 30%;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-copyright-links li {
    display: inline-flex;
    border-left: 1px solid #666;
    margin: 5px 0;
}

.footer-copyright-links li:last-child {
    border-left: 1px solid transparent;
}

.footer-copyright-links li a {
    padding: 0 7px;
    font-size: 14px;
    color: #fff;
    font-weight: 300;
}

@media screen and (max-width: 992px) {
    .footer-link-blocks {
        flex-wrap: wrap;
        padding-bottom: 20px;
    }

    .footer-link-block {
        margin-bottom: 24px;
    }

    .footer-link-block.first {
        width: 100%;
    }

    .footer-link-block.second {
        width: 100%;
    }

    .footer-link-block.third {
        width: 100%;
    }

    .footer-link-block.first .footer-lb-list li {
        width: calc(100% / 3);
    }

    .footer-link-block.second .footer-lb-list li {
        width: calc(100% / 3);
    }

    .footer-link-block.third .footer-lb-list li {
        width: calc(100% / 3);
    }

    .footer-bottom-wrapper {
        flex-wrap: wrap;
    }

    .footer-about-text {
        width: 100%;
        margin-bottom: 24px;
    }

    .footer-bottom-social {
        width: 100%;
        margin-top: 0;
        padding-right: 0;
        margin-bottom: 24px;
    }

    .footer-bottom-badges {
        width: calc(100% + 6px);
        margin: 0 -3px;
        padding-right: 0;
        justify-content: flex-start;
    }

    .footer-copyright-content {
        width: 100%;
        justify-content: center;
        text-align: center;
    }

    .footer-copyright-content p {
        text-align: center;
    }

    .footer-copyright-links {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 30px 0;
    }

    .footer-link-blocks {
        padding-bottom: 0;
    }

    .footer-lb-list li a {
        font-size: 14px;
    }

    .footer-link-block.first .footer-lb-list li {
        width: calc(100% / 2);
    }

    .footer-link-block.second .footer-lb-list li {
        width: calc(100% / 2);
    }

    .footer-link-block.third .footer-lb-list li {
        width: calc(100% / 2);
    }

    .footer-lb-title {
        font-size: 16px;
        margin-bottom: 12px;
    }
}

/* login modal
/*---------------------------------------------------------------------------------*/
.modal-login-wrapper {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 68px;
    align-items: flex-start;
    align-content: flex-start;
}

.modal-login-wrapper-title {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 12px;
    font-size: 20px;
    font-weight: 600;
}

.modal-login-wrapper-sub {
    display: block;
    text-align: center;
    width: 100%;
    margin-bottom: 28px;
    font-size: 15px;
}

.modal-login-wrapper-form {
    width: 100%;
    display: block;
}

.modal-login-wrapper-alert {
    display: flex;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 6px;
    justify-content: center;
}

.modal-login-wrapper-alert a {
    margin: 0 4px;
}

.modal-login-wrapper-alert i {
    width: 16px;
    display: flex;
    align-items: center;
    margin-left: 12px;
    margin-top: 4px;
}

.modal-login-wrapper-alert i path {
    fill: #888;
}

.modal-login-wrapper-btn {
    width: 100%;
}

.modal-login-wrapper-loginway {
    width: 100%;
    text-align: center;
    margin-bottom: 0;
}

.modal-login-wrapper-loginway a {
    font-size: 15px;
}

.modal-login-wrapper-code {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
    margin-bottom: 6px;
}

.modal-login-wrapper-code span {
    margin-left: 6px;
}

.modal-vpn-wrapper{
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 10px;
    margin-top: 20px;
    align-items: flex-start;
    align-content: flex-start;
}

.form-group.fivedigit {
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
}

.form-group.fivedigit .form-control {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.modal-login-wrapper-edit {
    width: 100%;
    text-align: center;
    display: block;
    margin-bottom: 12px;
    font-size: 13px;
}

.modal-login-wrapper-forgot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.modal-login-wrapper-forgot a {
    font-size: 15px;
}

@media screen and (max-width: 576px) {
    .modal-login-wrapper {
        padding: 40px 20px;
    }

    .modal-login-wrapper-title {
        font-size: 18px;
    }
}

.loader {
    margin-right: 15px;
    color: #fff;
    font-size: 20px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

.mobile-loader , .calendar-loader{
    margin-left: auto;
    margin-right: auto;
    color: #ef0000;
    font-size: 20px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

.tracking-mobile-loader{
    color: #7a7a7a;
    font-size: 20px;
    text-indent: -9999em;
    overflow: hidden;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    -webkit-transform: translateZ(0);
    -ms-transform: translateZ(0);
    transform: translateZ(0);
    -webkit-animation: load6 1.7s infinite ease, round 1.7s infinite ease;
    animation: load6 1.7s infinite ease, round 1.7s infinite ease;
}

@-webkit-keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

@keyframes load6 {
    0% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    5%,
    95% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
    10%,
    59% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.087em -0.825em 0 -0.42em, -0.173em -0.812em 0 -0.44em, -0.256em -0.789em 0 -0.46em, -0.297em -0.775em 0 -0.477em;
    }
    20% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.338em -0.758em 0 -0.42em, -0.555em -0.617em 0 -0.44em, -0.671em -0.488em 0 -0.46em, -0.749em -0.34em 0 -0.477em;
    }
    38% {
        box-shadow: 0 -0.83em 0 -0.4em, -0.377em -0.74em 0 -0.42em, -0.645em -0.522em 0 -0.44em, -0.775em -0.297em 0 -0.46em, -0.82em -0.09em 0 -0.477em;
    }
    100% {
        box-shadow: 0 -0.83em 0 -0.4em, 0 -0.83em 0 -0.42em, 0 -0.83em 0 -0.44em, 0 -0.83em 0 -0.46em, 0 -0.83em 0 -0.477em;
    }
}

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

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

.d-none {
    display: none;
}

.form-control-confirm {
    display: block;
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    line-height: 1.5;
    color: #222;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #d1d1d1;
    border-radius: 8px;
    outline: 0;
    height: 50px;
    color: #c71313;
    font-family: 'KalamehWebFaNum', arial, sans-serif;
    transition: border-color .2s ease-in-out, box-shadow .15s ease-in-out;
    text-align: right;
}

.mb-sb-cursor{
    background: #cbc9c9;
}

.is-disabled{
    opacity: 0.5;
    box-shadow: none;
    pointer-events: none;
}

.not-allowed{
    cursor: not-allowed !important;
}

#login-modal-2{
    pointer-events: none;
}


@media screen and (max-width: 768px) {

    .ss-overlay-passdropdown {
        position: fixed;
        width: 100%;
        right: 0;
        top: 0;
        height: 100%;
        background-color: rgba(0, 10, 20, 0.5);
        z-index: 0;
        transition: all 0.2s ease-in-out;
        visibility: hidden;
        opacity: 0;
        z-index: 11;
    }

    .ss-overlay-passdropdown.active {
        transition: all 0.2s ease-in-out;
        visibility: visible;
        opacity: 1;
    }

    body.active {
        overflow: hidden;
    }
    .inner-main {
        min-height: 600px;
    }
}

.password-container input {
    width: 100%;
    padding: 10px 40px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.toggle-password {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    font-size: 18px;
    color: #666;
}

.notification-badge {
    background-color: #d71921;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    height: 20px;
    min-width: 20px;
    padding: 0 6px;
    border-radius: 50%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    line-height: 1;
    margin-right: 3px;
}


.error-message {
    color: #f84040;
    font-size: 12px;
}
