@import url("../fonts/woff/Webfonts/fontiran.css");

* {
    margin: 0;
    padding: 0;
}

:root {
    /* colors root */

    --primary: #2400FF;
    --secondary: #8000FF;
    --black: #0B0B0B;
    --white: #fff;
    --primary-range-1: #E9E5FF;
    --primary-range-2: #BDB2FF;
    --primary-range-3: #160099;
    --primary-range-4: #0B004C;
    --secondary-range-1: #F2E5FF;
    --secondary-range-2: #D9B2FF;
    --secondary-range-3: #4D0099;
    --secondary-range-4: #26004C;
    --black-range-1: #6A6A6A;
    --black-range-2: #CCCCCC;
    --black-range-3: #E9E9E9;
    --black-range-4: #F6F6F6;
    --bootstrap-primary: #2400FF;
    --bootstrap-secondary: #8000FF;
    --bootstrap-success: #47C07F;
    --bootstrap-danger: #F30A34;
    --bootstrap-warning: #ECA51B;
    --bootstrap-info: #10A2F3;
    --bootstrap-info: #10A2F3;
    --bootstrap-gray: #F3F0F8;
    --bootstrap-success-2: #EDF9F3;
    --bootstrap-danger-2: #FEE7EB;
    --bootstrap-warning-2: #FEF6E9;
    --bootstrap-info-2: #E8F6FE;
    --primary-hover: #2100EA;
    --excel-color: #02723B;
    --pdf-color: #CB1C06;
    --gray-hover: #ECE7F7;
    --secondary-hover: #7300E7;
    --danger-hover: #DA0329;
    --excel-hover: #00582D;
    --pdf-hover: #AF1704;
    /* font size root */

    --font-size-1: 3.25rem;
    --font-size-2: 2.75rem;
    --font-size-3: 2.5rem;
    --font-size-4: 2.375rem;
    --font-size-5: 2.125rem;
    --font-size-6: 1.875rem;
    --font-size-7: 1.75rem;
    --font-size-8: 1.5rem;
    --font-size-9: 1.375rem;
    --font-size-10: 1.25rem;
    --font-size-11: 1.125rem;
    --font-size-12: 1rem;
    --font-size-13: 0.875rem;
    --font-size-14: 0.75rem;
    /* print fontsize */
    --font-size-print-1: 36pt;
    --font-size-print-2: 32pt;
    --font-size-print-3: 30pt;
    --font-size-print-4: 28pt;
    --font-size-print-5: 24pt;
    --font-size-print-6: 22pt;
    --font-size-print-7: 20pt;
    --font-size-print-8: 18pt;
    --font-size-print-9: 16pt;
    --font-size-print-10: 14pt;
    --font-size-print-11: 12pt;
    --font-size-print-12: 10pt;
    --font-size-print-13: 9pt;
    --font-size-print-14: 8pt;
    /* font weight root */

    --font-weight-100: 100;
    --font-weight-300: 300;
    --font-weight-400: 400;
    --font-weight-600: 600;
    --font-weight-700: 700;
    --font-weight-800: 800;
    --font-weight-900: 900;
    /* input boxshadow root */

    --box-shadow-primary: 0px 0px 0px 4px rgba(36, 0, 255, 0.1);
    --box-shadow-success: 0px 0px 0px 4px rgba(0, 180, 40, 0.1);
    --box-shadow-danger: 0px 0px 0px 4px rgba(255, 0, 0, 0.1);
    --box-shadow-warning: 0px 0px 0px 4px rgba(255, 153, 0, 0.1);
}

body {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    background: var(--white);
    direction: rtl;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
input,
textarea,
a,
p,
span,
strong {
    font-family: Yekan Bakh FaNum;
    color: var(--black);
}

a {
    text-decoration: none;
}

textarea {
    resize: none;
}

/* bg colors */

.bg-primary {
    background-color: var(--bootstrap-primary) !important;
}

.bg-secondary {
    background-color: var(--bootstrap-secondary) !important;
}

.bg-danger {
    background-color: var(--bootstrap-danger) !important;
}


.bg-info {
    background-color: var(--bootstrap-info) !important;
}

.bg-warning {
    background-color: var(--bootstrap-warning) !important;
}

.bg-success {
    background-color: var(--bootstrap-success) !important;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

/* text colors */

.text-black {
    color: var(--black) !important;
}

.text-primary {
    color: var(--bootstrap-primary) !important;
}

.text-secondary {
    color: var(--bootstrap-secondary) !important;
}

.text-info {
    color: var(--bootstrap-info) !important;
}

.text-success {
    color: var(--bootstrap-success) !important;
}

.text-danger {
    color: var(--bootstrap-danger) !important;
}

.text-warning {
    color: var(--bootstrap-warning) !important;
}

.text-gray-1 {
    color: var(--black-range-1) !important;
}

.text-gray-2 {
    color: var(--black-range-2) !important;
}

.text-gray-3 {
    color: var(--black-range-3) !important;
}

.text-gray-4 {
    color: var(--black-range-4) !important;
}

.text-primary-1 {
    color: var(--primary-range-1);
}

.text-primary-2 {
    color: var(--primary-range-2);
}

.text-primary-3 {
    color: var(--primary-range-3);
}

.text-primary-4 {
    color: var(--primary-range-4);
}

.text-secondary-1 {
    color: var(--secondary-range-1);
}

.text-secondary-2 {
    color: var(--secondary-range-2);
}

.text-secondary-3 {
    color: var(--secondary-range-3);
}

.text-secondary-4 {
    color: var(--secondary-range-4);
}

/* display componets */

.display-1 {
    font-size: var(--font-size-1);
    font-weight: var(--font-weight-900);
}

.display-2 {
    font-size: var(--font-size-2);
    font-weight: var(--font-weight-900);
}

.display-3 {
    font-size: var(--font-size-3);
    font-weight: var(--font-weight-900);
}

.display-4 {
    font-size: var(--font-size-4);
    font-weight: var(--font-weight-800);
}

.display-5 {
    font-size: var(--font-size-5);
    font-weight: var(--font-weight-700);
}

.display-6 {
    font-size: var(--font-size-6);
    font-weight: var(--font-weight-700);
}

/* heading components */

.h1 {
    font-size: var(--font-size-7);
    font-weight: var(--font-weight-800);
}

.h2 {
    font-size: var(--font-size-8);
    font-weight: var(--font-weight-800);
}

.h3 {
    font-size: var(--font-size-9);
    font-weight: var(--font-weight-800);
}

.h4 {
    font-size: var(--font-size-10);
    font-weight: var(--font-weight-700);
}

.h5 {
    font-size: var(--font-size-11);
    font-weight: var(--font-weight-700);
}

.h6 {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-700);
}

/* text body components */

.text-body-1 {
    font-size: var(--font-size-9);
    font-weight: var(--font-weight-600);
}

.text-body-2 {
    font-size: var(--font-size-10);
    font-weight: var(--font-weight-600);
}

.text-body-3 {
    font-size: var(--font-size-11);
    font-weight: var(--font-weight-600);
}

.text-body-4 {
    font-size: var(--font-size-12);
    font-weight: var(--font-weight-600);
}

.text-body-5 {
    font-size: var(--font-size-13);
    font-weight: var(--font-weight-400);
}

.text-body-6 {
    font-size: var(--font-size-14);
    font-weight: var(--font-weight-400);
}

/* form control */
.form-control {
    background: #FFFFFF;
    border: 1px solid var(--black-range-2);
    border-radius: 12px;
    padding: 1rem;
}

    .form-control:focus {
        box-shadow: var(--box-shadow-primary);
        border-color: var(--bootstrap-primary);
    }

    .form-control.valid:focus {
        box-shadow: var(--box-shadow-success);
        border-color: var(--bootstrap-success);
    }

    .form-control.unvalid:focus {
        box-shadow: var(--box-shadow-danger);
        border-color: var(--bootstrap-danger);
    }

.form-control-search {
    background: var(--white) !important;
    border-radius: 12px;
    border: none;
    box-shadow: 0px 0px 32px rgba(36, 0, 255, 0.01)
}

/* Ϙ�� ����� */
.sf-license-warning {
    display: none !important;
}

.e-control-container {
    border: none !important;
    border-radius: 12px !important;
}

.e-control-wrapper {
    border: none !important;
    border-radius: 12px !important;
}

.e-control-container:focus {
    box-shadow: var(--box-shadow-primary);
    border-color: var(--bootstrap-primary);
}

.e-control-wrapper:focus {
    box-shadow: var(--box-shadow-primary);
    border-color: var(--bootstrap-primary);
}
/* Ϙ�� ����� */

.search-wrap {
    position: relative;
}

.clear-value {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background-color: transparent;
    border: none;
    opacity: .5;
    transition: .3;
}

    .clear-value:hover {
        opacity: 1;
    }

.box-search {
    box-shadow: 0px 2px 4px -2px;
    width: 100%;
    padding: 2px;
    position: absolute;
    top: 3.5rem;
    border-radius: 8px;
    z-index: 1000000;
}

.form-control::placeholder {
    font-size: 14px;
    color: var(--black-range-1);
}

/* badge component */
.badge {
    border-radius: .8rem;
}

.badge-primary {
    background: var(--primary-range-1);
    color: var(--bootstrap-primary);
}

.badge-success {
    background: var(--bootstrap-success-2);
    color: var(--bootstrap-success);
}

.badge-warning {
    background: var(--bootstrap-warning-2);
    color: var(--bootstrap-warning);
}

.badge-danger {
    background: var(--bootstrap-danger-2);
    color: var(--bootstrap-danger);
}

.badge-info {
    background: var(--bootstrap-info-2);
    color: var(--bootstrap-info);
}


/* check and eadio */
.form-check-input {
    border: 2px solid var(--black-range-2);
    border-radius: 6px;
}

    .form-check-input:focus {
        box-shadow: none;
        border-color: var(--black-range-3);
    }

    .form-check-input:checked[type=checkbox] {
        background: var(--bootstrap-primary);
        border: none;
        background-image: url(../images/form-checked-tick.svg);
        background-repeat: no-repeat;
        background-position: center;
    }

    .form-check-input[type=radio] {
        border: 2px solid var(--black-range-2);
    }

    .form-check-input:checked[type=radio] {
        background: var(--white);
        border-color: var(--bootstrap-primary) !important;
        background-image: url(../images/form-radio-checked-tick.svg);
        background-repeat: no-repeat;
        background-position: center;
    }

/* switch checkbox */

.switch {
    position: relative;
}

    .switch input {
        display: none;
    }

    .switch .switch-slider {
        position: absolute;
        background: var(--white);
        border: 3px solid var(--black-range-2);
        border-radius: 33px;
        width: 45px;
        height: 28px;
        transition: .3s;
    }

        .switch .switch-slider::after {
            content: '';
            display: block;
            position: absolute;
            top: 4px;
            left: 4px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--black-range-2);
            transition: .3s;
        }

    .switch input:checked + .switch-slider {
        border-color: var(--bootstrap-primary);
    }

        .switch input:checked + .switch-slider::after {
            background-color: var(--bootstrap-primary);
            transform: translateX(17PX);
        }

/* btn styles */

.btn {
    border-radius: 12px;
    padding: 1rem;
    border: none;
}

.btn-close {
    box-shadow: none !important;
}

.btn:focus,
.btn:active {
    box-shadow: none !important;
}

.btn-primary {
    background-color: var(--bootstrap-primary);
}


    .btn-primary:hover,
    .btn-primary:active,
    .btn-primary:focus {
        background-color: var(--primary-hover) !important;
    }

.btn-gray {
    background-color: var(--bootstrap-gray);
    color: var(--black);
}

    .btn-gray:hover {
        background-color: var(--gray-hover);
    }

.btn-secondary {
    background-color: var(--bootstrap-secondary);
}

    .btn-secondary:hover {
        background-color: var(--secondary-hover);
    }

.btn-danger {
    background-color: var(--bootstrap-danger);
}

    .btn-danger:hover {
        background-color: var(--danger-hover);
    }

.btn-excel {
    background-color: var(--excel-color);
    color: var(--white) !important;
}

    .btn-excel:hover {
        background-color: var(--excel-hover);
    }

.btn-pdf {
    background-color: var(--pdf-color);
    color: var(--white) !important;
}

    .btn-pdf:hover {
        background-color: var(--pdf-hover);
    }

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--black);
}

.btn-outline-primary {
    border-color: var(--bootstrap-primary);
    color: var(--bootstrap-primary);
}

    .btn-outline-primary:hover {
        background-color: var(--bootstrap-primary);
        color: var(--white);
    }

        .btn-outline-primary:hover path {
            fill: var(--white);
        }

.btn-outline-danger {
    border-color: var(--bootstrap-danger);
    color: var(--bootstrap-danger);
}

    .btn-outline-danger:hover {
        background-color: var(--bootstrap-danger);
        color: var(--white);
    }

.btn-logout {
    background-color: var(--bootstrap-danger-2);
    color: var(--bootstrap-danger) !important;
}

    .btn-logout:hover {
        background-color: var(--white);
    }

.btn-dashed-outline {
    border: 1px dashed #CCCCCC;
    border-radius: 12px;
    color: var(--bootstrap-primary) !important;
    transition: border .3s;
}

    .btn-dashed-outline:hover {
        border-color: var(--bootstrap-primary);
    }

.sub-nav {
    background-color: white;
    border-radius: 16px;
    box-shadow: 1px 0px 4px 1px;
    margin-right: 2rem;
    padding: 1rem;
    display: block;
    margin-left: 1.5rem;
    text-decoration: none;
    color: var(--primary-range-2);
    transition: .3s;
    margin-top: 13px;
}

    .sub-nav:hover {
        margin-right: 2rem;
        padding: 1rem;
        display: block;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--primary-range-2);
        transition: .3s;
        transform: translateX(-10px);
        color: var(--bootstrap-primary);
    }

    .sub-nav:focus {
        color: var(--bootstrap-primary);
    }



/*.sidebar-nav .active > a {
    background: #FFFFFF;
    box-shadow: 0px 11px 71px rgba(0, 10, 255, 0.05);
    border-radius: 10px;
    color: var(--bootstrap-primary);
}*/

/* table styles */
.table {
    border-radius: 16px;
    overflow: hidden;
}

    .table > :not(caption) > * > * {
        padding: 1rem;
    }

    .table tbody td {
        border-bottom: 1px solid var(--primary-range-1);
    }

    .table tbody tr:last-child td {
        border-bottom: none;
    }

    .table th,
    .table td {
        /*white-space: nowrap;*/
        min-width: 100px;
    }

    .table thead th,
    .table thead td {
        border-bottom: 1px solid var(--primary) !important;
        font-size: .8rem !important;
    }

.table-hover > tbody > tr {
    transition: .3s;
}

    .table-hover > tbody > tr:hover {
        z-index: 10;
        box-shadow: 0px 11px 71px rgba(0, 10, 255, 0.06);
        background-color: var(--white) !important;
        --bs-table-accent-bg: none;
    }

.add-factor-table {
    overflow: auto;
}

/* hr tag styles */

hr {
    border: 1px solid var(--black-range-2);
}

/* modal styles */


.modal-content {
    background: #FFFFFF;
    box-shadow: 0px 11px 71px rgba(0, 10, 255, 0.02);
    border-radius: 16px;
}

.btn-close {
    background-image: url(../images/btn-close.svg);
    box-shadow: none;
}

.modal-dialog-small {
    max-width: 386px;
}

.modal-dialog-large {
    max-width: 680px;
}

/* card and cardbody styles */
.card,
.inner-card {
    border: none;
}

.card {
    box-shadow: 0px 11px 50px rgba(0, 10, 255, 0.03);
    border-radius: 16px;
    position: static;
}

.inner-card {
    box-shadow: 0px 11px 50px rgba(0, 10, 255, 0.08);
    border-radius: 12px;
}

.card-header {
    background-color: var(--white);
    border-radius: 16px 16px 0 0 !important;
    padding: 1rem;
    border-bottom: 1px solid var(--black-range-3) !important;
}

/* pagination styles */

.page-link {
    border: none;
    color: var(--bootstrap-primary);
}

    .page-link:hover,
    .page-link:active {
        background-color: transparent;
    }

    .page-link:focus {
        background-color: transparent;
        box-shadow: none;
    }

/*  */

.wrapper {
    width: 100%;
    display: flex;
    align-items: stretch;
    overflow-x: hidden;
}



.sidebar {
    min-width: 300px;
    background-color: var(--white);
    transition: .3s;
    transition-timing-function: cubic-bezier(.01, 1.6, .81, 1.15);
}

.main {
    background-color: #FAFAFA;
    width: 100%;
     min-height: 100vh;
    transition-timing-function: cubic-bezier(.01, 1.6, .81, 1.15);
    transition: .3s;
}

/* sidebar styles */

.sidebar-items {
    height: 90vh;
}
footer {
    text-align: center;
    padding: 3px;
    background-color: #f7f7f7;
    color: white;
}

.sidebar-logo {
    margin: 0.5rem;
    width: 120px;
}

.sidebar-nav li {
    margin: .2rem 0;
}

    .sidebar-nav li > a {
        margin-right: 2rem;
        padding: 1rem;
        display: block;
        margin-left: 1.5rem;
        text-decoration: none;
        color: var(--primary-range-2);
        transition: .3s;
    }

        .sidebar-nav li > a path {
            transition: .3s;
        }

    .sidebar-nav li:not(.active) > a:hover {
        transform: translateX(-10px);
        color: var(--bootstrap-primary);
    }

        .sidebar-nav li:not(.active) > a:hover path {
            fill: var(--bootstrap-primary);
        }

.sidebar-nav .active {
    position: relative;
}

    .sidebar-nav .active::after {
        content: '';
        position: absolute;
        top: 25%;
        background-color: var(--bootstrap-primary);
        border-radius: 6px 0px 0px 6px;
        right: 0;
        width: 6px;
        height: 50%;
    }

    .sidebar-nav .active > a {
        background: #FFFFFF;
        box-shadow: 0px 11px 71px rgba(0, 10, 255, 0.05);
        border-radius: 10px;
        color: var(--bootstrap-primary);
    }

.sidebar-nav li .fill {
    display: none;
}

.sidebar-nav li.active .fill {
    display: inline;
}

.sidebar-nav li.active .outline {
    display: none;
}

.profile-box {
    margin: 0 1rem;
}

.avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #FFFFFF;
    box-shadow: 0px 11px 71px rgba(0, 10, 255, 0.1);
}

/* main styles */




.btn-alert {
    box-shadow: 0px 11px 31px rgba(255, 0, 107, 0.05) !important;
    border-radius: 12px;
    position: relative;
}

    .btn-alert:focus {
        box-shadow: 0px 11px 31px rgba(255, 0, 107, 0.05) !important;
    }

    .btn-alert span {
        position: absolute !important;
        top: -12px;
        right: -12px;
    }

.alert-wrap {
    position: relative;
}

.alert-card {
    position: absolute !important;
    left: 0;
    top: 130%;
    width: 300px;
    z-index: 100;
}

    .alert-card .card-body {
        max-height: 500px;
    }

    .alert-card::after {
        position: absolute;
        content: url(../images/alert.svg);
        width: 24px;
        height: 24px;
        top: -12px;
        left: 12px;
    }

.alert-item {
    border-bottom: 1px dashed var(--black-range-3);
}

    .alert-item:last-child {
        border-bottom: none;
    }

.time-card {
    background-color: var(--primary-range-1);
}

.calendar {
    padding: .58rem;
    background: var(--bootstrap-secondary);
    box-shadow: 0px 11px 31px rgba(143, 0, 255, 0.28);
    border-radius: 12px;
}

.app-section-card,
.app-section-card * {
    transition: .3s;
}

    .app-section-card:hover {
        background-color: var(--bootstrap-primary);
    }

        .app-section-card:hover span {
            color: var(--white) !important;
        }

        .app-section-card:hover h6 {
            color: var(--white) !important;
        }

        .app-section-card:hover path {
            fill: var(--white);
        }

        .app-section-card:hover rect {
            stroke: var(--white);
        }
.cash {
    position: absolute;
    top: -63px;
    right: 0;
}
.edit-svg {
    height: 27px;
    width: 23px;
    margin: -2px 7px;
}
.subscribtion-card {
    position: relative;
    overflow: hidden;
}

    .subscribtion-card .card-body {
        z-index: 10 !important;
        position: relative;
    }

.subscribtion-card-hover-effect {
    content: '';
    background-color: var(--primary);
    height: 100%;
    width: 15%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 1;
    transition: .3s;
}

    .subscribtion-card-hover-effect.small {
        width: 5%;
    }

.subscribtion-card:hover .subscribtion-card-hover-effect {
    width: 100%;
}

.subscribtion-card h6,
.subscribtion-card p,
.subscribtion-card span {
    transition: .3s;
}

.subscribtion-card:hover h6,
.subscribtion-card:hover p,
.subscribtion-card:hover span {
    color: var(--white) !important;
}

.subscribtion-card:hover path {
    fill: var(--white) !important;
}

.card-edit {
    border: 1px solid var(--black-range-3);
    box-shadow: none;
}

.admin-avatars .avatar {
    margin-right: -22px;
}

.cash-desk-amount {
    position: relative;
}

    .cash-desk-amount > img {
        position: absolute;
        top: 0;
        left: -25px;
        height: 100%;
        width: auto;
    }

.login-card {
    position: relative;
}

    .login-card::after {
        content: '';
        position: absolute;
        height: 6px;
        width: 10%;
        background-color: var(--bootstrap-primary);
        top: 0;
        left: 45%;
        border-radius: 0 0px 4px 4px;
    }

    .login-card > img {
        height: 40px;
    }

.login-line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-range-1);
}


/* password input */

.password-input {
    position: relative;
}

    .password-input.show-pass .eye .show {
        display: block;
    }

    .password-input:not(.show-pass) .eye .show {
        display: none;
    }

    .password-input.show-pass .eye .hide {
        display: none;
    }

    .password-input:not(.show-pass) .eye .hide {
        display: block;
    }

    .password-input .eye {
        background-color: transparent;
        border: none;
        position: absolute;
        bottom: 1rem;
        left: 1rem;
    }

    .password-input input:focus + .eye path {
        fill: var(--bootstrap-primary);
    }


.data.not-found > :first-child,
.data.not-found > :nth-child(2) {
    display: none;
}

.data.not-found > :last-child {
    display: block !important;
}

.specifications-item {
    padding: 10px;
}

    .specifications-item:last-child {
        padding-left: 0;
        border-left: none;
    }

.nav-link {
    color: var(--black-range-1);
}

    .nav-link:hover {
        color: var(--black);
    }

    .nav-link.active {
        color: var(--black);
    }

.collapse-arrow {
    box-shadow: 0px 11px 31px rgba(0, 10, 255, 0.07);
    border-radius: 12px;
    padding: 1rem;
}

    .collapse-arrow svg {
        transition: .3s;
    }

.collapse-arrow-sidebar {
    background: none;
    box-shadow: none;
    padding: 0;
    margin-right: 50px;
}

button:not(.collapsed) .collapse-arrow svg {
    transform: rotateZ(180deg);
}

a:not(.collapsed) .collapse-arrow svg {
    transform: rotateZ(180deg);
}
/* selectlist styles */

.custom-select {
    position: relative;
}

    .custom-select select {
        display: none;
    }

.select-selected {
    background-color: DodgerBlue;
}

    .select-selected:after {
        position: absolute;
        content: "";
        top: 14px;
        right: 10px;
        width: 0;
        height: 0;
        border: 6px solid transparent;
        border-color: #fff transparent transparent transparent;
    }

    .select-selected.select-arrow-active:after {
        border-color: transparent transparent #fff transparent;
        top: 7px;
    }

.select-items div,
.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.cash-desk-header {
    position: relative;
    overflow: hidden;
}

    .cash-desk-header::after {
        position: absolute;
        content: url(../images/cash-desk-img.png);
        height: 100%;
        top: -50%;
        left: 45%;
        bottom: 0;
    }

.add-product-card {
    border: 1px solid var(--black-range-3);
    border-radius: 0 0 16px 16px;
    border-top: none;
    box-shadow: none;
}

.counter {
    border: 1px solid var(--black-range-3);
    border-radius: 12px;
    box-shadow: none;
}

    .counter button {
        background-color: transparent;
        border: none;
    }
/* media queries*/

@media(min-width:1700px) {
}

@media(min-width:1600px) {
}

@media(min-width:1500px) {
}

@media(min-width:1400px) {
}

@media(max-width:1400px) {
}

@media(max-width:1200px) {
}

@media (min-width:993px) {
    .translate-right .sidebar {
        transform: translateX(300px);
        margin-right: -300px;
    }

    .button-menu {
        display: block;
        border: none;
        background-color: transparent;
    }

        .button-menu span {
            width: 30px;
            display: block;
            background: var(--bootstrap-primary);
            border-radius: 16px;
            height: 4px;
            margin-top: 5px;
            transition: .3s;
        }

        .button-menu:not(.collapsed) span:first-child,
        .button-menu:not(.collapsed) span:last-child {
            width: 15px;
        }

        .button-menu:not(.collapsed) span:first-child {
            transform-origin: right;
            transform: translateY(10px)rotateZ(45deg);
        }

        .button-menu:not(.collapsed) span:last-child {
            transform-origin: right;
            transform: translateY(-10px)rotateZ(-45deg);
        }
}

@media(max-width:992px) {
    .sidebar {
        margin-right: -300px;
    }

    .translate-left .sidebar {
        transform: translateX(-300px);
    }

    .translate-left .main {
        transform: translateX(-300px);
    }

    .button-menu {
        display: block;
        border: none;
        background-color: transparent;
    }

        .button-menu span {
            width: 30px;
            display: block;
            background: var(--bootstrap-primary);
            border-radius: 16px;
            height: 4px;
            margin-top: 5px;
            transition: .3s;
        }

        .button-menu.collapsed span:first-child,
        .button-menu.collapsed span:last-child {
            width: 15px;
        }

        .button-menu.collapsed span:first-child {
            transform-origin: right;
            transform: translateY(10px)rotateZ(45deg);
        }

        .button-menu.collapsed span:last-child {
            transform-origin: right;
            transform: translateY(-10px)rotateZ(-45deg);
        }

    .cash-desk-header::after {
        display: none;
    }

    .subscribtion-card-hover-effect.small {
        width: 10% !important;
    }
}

@media(max-width:768px) {

    /* display componets */
    .display-1 {
        font-size: var(--font-size-2);
    }

    .display-2 {
        font-size: var(--font-size-3);
    }

    .display-3 {
        font-size: var(--font-size-4);
    }

    .display-4 {
        font-size: var(--font-size-5);
    }

    .display-5 {
        font-size: var(--font-size-6);
    }

    .display-6 {
        font-size: var(--font-size-7);
    }

    /* heading components */
    .h1 {
        font-size: var(--font-size-8);
        font-weight: var(--font-weight-800);
    }

    .h2 {
        font-size: var(--font-size-9);
        font-weight: var(--font-weight-800);
    }

    .h3 {
        font-size: var(--font-size-10);
        font-weight: var(--font-weight-800);
    }

    .h4 {
        font-size: var(--font-size-11);
        font-weight: var(--font-weight-700);
    }

    .h5 {
        font-size: var(--font-size-12);
        font-weight: var(--font-weight-700);
    }

    .h6 {
        font-size: var(--font-size-13);
        font-weight: var(--font-weight-700);
    }
}

@media(max-width:576px) {
}

@media(max-width:400px) {
}

/* media print */

@media print {
    .btn {
        visibility: hidden;
    }

    .display-1 {
        font-size: var(--font-size-print-1);
        font-weight: var(--font-weight-900);
    }

    .display-2 {
        font-size: var(--font-size-print-2);
        font-weight: var(--font-weight-900);
    }

    .display-3 {
        font-size: 22pt;
        font-weight: var(--font-weight-900);
    }

    .display-4 {
        font-size: var(--font-size-print-4);
        font-weight: var(--font-weight-800);
    }

    .display-5 {
        font-size: var(--font-size-print-5);
        font-weight: var(--font-weight-700);
    }

    .display-6 {
        font-size: var(--font-size-print-6);
        font-weight: var(--font-weight-700);
    }

    /* heading components */

    .h1 {
        font-size: var(--font-size-print-7);
        font-weight: var(--font-weight-800);
    }

    .h2 {
        font-size: var(--font-size-print-8);
        font-weight: var(--font-weight-800);
    }

    .h3 {
        font-size: var(--font-size-print-9);
        font-weight: var(--font-weight-800);
    }

    .h4 {
        font-size: var(--font-size-print-10);
        font-weight: var(--font-weight-700);
    }

    .h5 {
        font-size: var(--font-size-print-11);
        font-weight: var(--font-weight-700);
    }

    .h6 {
        font-size: var(--font-size-print-12);
        font-weight: var(--font-weight-700);
    }

    /* text body components */

    .text-body-1 {
        font-size: var(--font-size-print-9);
        font-weight: var(--font-weight-600);
    }

    .text-body-2 {
        font-size: var(--font-size-print-10);
        font-weight: var(--font-weight-600);
    }

    .text-body-3 {
        font-size: var(--font-size-print-11);
        font-weight: var(--font-weight-600);
    }

    .text-body-4 {
        font-size: var(--font-size-print-12);
        font-weight: var(--font-weight-600);
    }

    .text-body-5 {
        font-size: var(--font-size-print-13);
        font-weight: var(--font-weight-400);
    }

    .text-body-6 {
        font-size: var(--font-size-print-14);
        font-weight: var(--font-weight-400);
    }

    td,
    th {
        font-size: var(fsp13);
    }
}
