/*start general*/
html {
    width: 100% !important;
    overflow: auto;
    --body-color: #f6f6f6;
    --main-color: #FFF;
    --secondary-color: #222131;
    --input-color: #FFF;
}

    html[dark="true"] {
        --body-color: #16191C;
        --main-color: #222131;
        --secondary-color: #FFF;
        --input-color: #C6C6C6;
    }

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    position: relative;
    font-family: 'Tajawal', sans-serif;
}secondary-color


body {
    width: 100%;
    background-color: var(--body-color);
    padding: 0 !important;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #979797;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background-color: var(--main-color);
}

input[type="text"] {
    width: 180px;
}

select {
    width: 180px;
    cursor: pointer;
}

    select[class=""] {
        width: 180px;
    }

.orange {
    background-color: #F76C4F;
}

.color-orange {
    color: #F76C4F !important;
    border-color: #F76C4F;
    stop-color: #F76C4F;
}

.light-orange {
    background-color: rgba(247, 108, 79, .3) !important;
}

.yellow {
    background-color: #DF9E13 !important;
}

.color-yellow {
    color: #DF9E13 !important;
    border-color: #DF9E13;
    stop-color: #DF9E13;
}

.light-yellow {
    background-color: rgba(223, 158, 19, .3);
}

.bright-yellow {
    background-color: #E2C500;
}

.color-bright-yellow {
    color: #E2C500 !important;
    border-color: #E2C500;
    stop-color: #E2C500;
}

.light-bright-yellow {
    background-color: rgba(226, 197, 0, .3);
}

.blue {
    background-color: #4F86F7 !important;
}

h3.blue, h4.blue {
    color: #4F86F7;
    background-color: transparent;
}
.color-blue {
    color: #4F86F7 !important;
    border-color: #4F86F7;
    stop-color: #4F86F7;
}

.light-blue {
    background-color: rgba(79, 134, 247, .3);
}

.bright-blue {
    background-color: #00C4FF;
}

.color-bright-blue {
    color: #00C4FF !important;
    border-color: #00C4FF;
    stop-color: #00C4FF;
}

.light-bright-blue {
    background-color: rgba(0, 196, 255, .3);
}

.primary {
    background-color: #4F86F7;
}

.color-primary {
    color: #4F86F7 !important;
    border-color: #4F86F7;
    stop-color: #4F86F7;
}

.light-primary {
    background-color: rgba(79, 134, 247, .3);
}

.black {
    background-color: #000;
}

.color-black {
    color: #000 !important;
    border-color: #000;
    stop-color: #000;
}

.light-black {
    background-color: rgba(0, 0, 0, .3);
}

.navy {
    background-color: #2C698D !important;
    color: #fff !important;
}

.color-navy {
    color: #2C698D !important;
    border-color: #2C698D;
    stop-color: #2C698D;
}

.light-navy {
    background-color: rgba(44, 105, 141, .3);
}

.green {
    background-color: #35C724;
}

.color-green {
    color: #35C724 !important;
    border-color: #35C724;
    stop-color: #35C724;
}


.light-green {
    background-color: rgba(53, 199, 36, .3);
}

.red {
    background-color: #F74F4F;
}

.color-red {
    color: #F74F4F !important;
    border-color: #F74F4F;
    stop-color: #F74F4F;
}


.light-red {
    background-color: rgba(247, 79, 79, .3);
}

a {
    text-decoration: none;
    /*color: #000;*/
}

    a:hover {
        color: #000;
    }

span.notification {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-25%, -25%);
    padding: 2px 7px;
    color: #FFF;
    background-color: red;
    font-size: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

.main-content span.badge {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-25%, -25%);
    padding: 2px 7px;
    color: #FFF;
    background-color: red;
    font-size: 12px;
    font-weight: unset;
    line-height: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
}

html[dir="ltr"] span.notification {
    left: unset;
    right: 0;
}

html[dir="ltr"] .main-content span.badge {
    left: unset;
    right: 0;
}

span.notification:empty {
    display: none;
}

.side-bar .badge,
.main-content .modal .heading .badge {
    position: relative;
    top: unset;
    left: unset;
    transform: none;
    padding: 2px 7px;
    color: #FFF;
    background-color: #4F86F7;
    font-size: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    line-height: unset;
}

    .side-bar .badge:empty,
    .modal .badge {
        display: none;
    }


.icon-wrapper {
    position: relative;
    width: 60px;
    border-radius: 15px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .icon-wrapper::after {
        content: '';
        position: absolute;
        width: 70%;
        height: 90%;
        top: 0;
        left: 0;
        background-color: rgba(255, 255, 255, .2);
        border-radius: 20px 10px 50px;
    }

.main-content {
    flex: 1;
    background-color: var(--body-color);
}

    .main-content .content-wrapper > div {
        padding: 10px 0;
        border-radius: 10px;
        margin-bottom: 30px;
    }

    .main-content .content-wrapper > .title {
        padding: 10px 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 5px;
        width: 100%;
        animation: go-down .5s ease-out 0s alternate none running;
        color: var(--secondary-color);
    }

        .main-content .content-wrapper > .title > div {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .main-content .content-wrapper > .title h3 {
            font-weight: bold;
            font-size: 24px;
        }

        .main-content .content-wrapper > .title .fiscal-year {
            display: flex;
            align-items: center;
            gap: 20px;
        }

            .main-content .content-wrapper > .title .fiscal-year p {
                margin-bottom: 0;
            }

            .main-content .content-wrapper > .title .fiscal-year select {
                background-color: #F6F6F6;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 100px;
                padding: 7px;
                border-radius: 5px;
                border: none;
                outline: none;
            }

        .main-content .content-wrapper > .title .svg-inline--fa {
            font-size: 22px;
            color: var(--secondary-color);
        }

    .main-content .white-title {
        background-color: var(--main-color);
    }

        .main-content .white-title h3 {
            display: inline-block;
        }

.multi-sections {
    display: flex;
    gap: 25px;
    justify-content: space-around;
    flex-wrap: wrap;
}

    .multi-sections.chart {
        justify-content: space-between;
    }

    .multi-sections .widget-box {
        width: 45%;
        min-width: 280px;
    }

.inputs .full-input {
    width: 100%;
}

    .inputs .full-input input {
        width: 100%;
        color: #000;
        background-color: var(--input-color);
        border: 1px solid #C6C6C6;
    }

    .inputs .full-input textarea {
        width: 100%;
        color: #000;
        background-color: var(--input-color);
        padding: 7px;
        border: 1px solid #C6C6C6;
        outline: none;
        border-radius: 5px;
    }


.inputs .input-container input[type="file"] {
    cursor: pointer;
    color: #707070;
}

    .inputs .input-container input[type="file"]::-webkit-file-upload-button {
        color: #2C698D;
        background-color: transparent;
        border: none;
        outline: none;
        font-weight: 500;
        margin-inline-end: 75px;
    }

.inputs .input-container.file button {
    margin-inline-start: 20px;
}

.widget-box {
    width: 100%;
    background-color: var(--main-color);
    border-radius: 10px;
    padding: 0 !important;
    margin-bottom: 20px;
}

.widget-header {
    background-color: var(--main-color);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid #E8E8E8;
    padding: 5px 10px;
}

    .widget-header .widget-title {
        font-size: 22px;
        font-weight: bold;
        color: var(--secondary-color);
    }

    .widget-header h4 {
        font-size: 22px;
        font-weight: bold;
        color: var(--secondary-color);
    }


    .widget-header .btn {
        border: none;
    }

        .widget-header .btn:first-of-type {
            color: #FFF;
            background-color: #2C698D;
        }

        .widget-header .btn:nth-child(2),
        .widget-header .btn-group:nth-child(2) {
            margin-inline-start: auto;
        }

    .widget-header :not(.btn-group) > .btn:last-of-type {
        background-color: rgba(44, 105, 141, .2);
        color: #2C698D !important;
    }

html[dark="true"] .widget-header .btn {
    color: #FFF !important;
}

.widget-header .btn .svg-inline--fa {
    color: inherit;
}

.btn-group {
    border-radius: 5px;
}

    .btn-group .btn {
        color: #FFF !important;
        background-color: #4F86F7 !important;
        height: auto !important;
        border: none;
    }

    .btn-group button:not(:first-child),
    .btn-group a:last-child {
        border-radius: 0 5px 5px 0 !important;
    }

    :root[dir="rtl"] .btn-group button:not(:first-child),
    .btn-group a:last-child {
        border-radius: 5px 0 0 5px !important;
    }

    .btn-group a:first-child {
        border-radius: 5px 0 0 5px !important;
    }


:root[dir="rtl"] .btn-group a:first-child {
    border-radius: 0 5px 5px 0 !important;
}

.btn-group a:first-child:last-child {
    border-radius: 5px !important;
}

.btn-group button:first-child {
    border-radius: 5px !important;
}

.widget-box .widget-header .btn-group a:first-child:last-child {
    border-radius: 5px !important;
    width: auto !important;
}

    .widget-box .widget-header .btn-group a:first-child:last-child .icon-edit::before {
        color: #FFF !important;
    }

.widget-box .widget-header .accordion-button {
    width: fit-content;
    padding: 5px;
    gap: 15px;
    background: none;
    color: var(--secondary-color);
    box-shadow: none;
    cursor: pointer;
}

table.table-bordered a {
    color: #1A5DFA;
}

.widget-body {
    background-color: var(--main-color);
    padding: 1rem 1.25rem;
}

.widget-box .shown-items {
    background-color: var(--main-color);
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    padding: 1rem 1.25rem;
}

.light-blue-button {
    background-color: rgba(79, 134, 247, .1);
    color: #4F86F7;
    padding: 5px 15px;
    border: none;
}

.btn {
    transition: .25s linear;
    color: var(--secondary-color);
}

    .btn:hover {
        box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, .5);
        transform: translateY(-0.25em);
    }

    .btn.blue,
    .btn-primary {
        color: #FFF !important;
    }

.blue-circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-inline-end: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .blue-circle .inner-circle {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

table td > a.btn {
    background-color: rgba(79, 134, 247, .3);
    color: #4F86F7;
}

.widget-box .widget-body {
    width: 100%;
}

form {
    width: 100%;
}

.inputs {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.hidden-inputs {
    display: none;
}

.input-container {
    margin: 15px 0;
    position: relative;
    min-width: 250px;
}

    .input-container label {
        color: var(--secondary-color);
        text-transform: uppercase;
        font-size: 16px;
        margin-bottom: 10px;
    }

    .input-container a {
        color: #4F86F7 !important;
    }

    .input-container > input[type=text],
    .controls > input[type=text],
    .input-container .icon-input > input[type=text],
    .input-container select,
    .input-container .dropdown-toggle {
        width: 100%;
        color: #000;
        padding: 7px;
        border: 1px solid #C6C6C6;
        outline: none;
        border-radius: 5px;
        background-color: var(--input-color);
        outline-color: transparent;
    }

/*td input[readonly] {
    max-width: 400px;
}*/

.widget-box .widget-body {
    width: 100%;
}

.widget-body .widget-main {
    width: 100%;
}

.widget-body table:not(.table-bordered) {
    width: 100%;
    
}

    .widget-body table:not(.table-bordered) tbody tr {
        width: 100%;
        
    }
    .widget-body table:not(.table-bordered) tbody tr td {
        padding: 2px;
    }


.hidden-inputs {
    display: none;
}

.tdcell,
td > label,
.widget-body table:not(.table-bordered) tbody th {
    color: var(--secondary-color);
    padding-inline-end: 15px;
    text-transform: uppercase;
    font-size: 16px;
    font-weight: 500;
}

.tdcell {
    text-align: end !important;
}

.widget-body table:not(.table-bordered) tbody td {
    color: var(--secondary-color);
}
input,
.span3 input,
.form-inline > input,
td > input,
.control-group input,
.icon-input > input,
td > select,
.form-inline > select,
.controls select,
td > .dropdown-toggle {
    color: #000;
    margin: 2px;
    padding: 7px;
    border: 1px solid #C6C6C6;
    outline: none;
    border-radius: 5px;
    background-color: var(--input-color);
    outline-color: transparent;
}

    td > input[type="submit"] {
        width: fit-content !important;
        padding: 7px 35px;
    }

td input[type="checkbox"],
input[type="radio"] {
    min-width: unset;
    width: auto !important;
    margin: 0 15px;
}

 input[ondblclick] {
    background-image: url(../imgs/apps.png);
    background-position: calc(100% - 10px) 10px;
    background-size: 20px;
    background-repeat: no-repeat;
}

:root[dir="rtl"] input[ondblclick] {
    background-position: 5px 10px;
}

.widget-body table:not(.table-bordered) tbody .tdcell,
.widget-body table:not(.table-bordered) tbody th {
    min-width: 110px;
    text-align: center;
}

textarea {
    width: 100%;
    min-width: 270px;
    height: auto !important;
    color: #000;
    background-color: var(--input-color);
    padding: 7px;
    border: 1px solid #C6C6C6;
    outline: none;
    border-radius: 5px;
    min-height: 40px;
}

.select2-selection {
    padding: 3px 5px;
    border: 1px solid #c6c6c6;
    border-radius: 5px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.select2-selection__rendered {
    min-height: 30px;
}


.select2-selection__arrow {
    position: static;
    height: unset;
    top: unset;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .select2-selection__arrow b {
        position: static;
    }

.select2-container {
    margin: 0 !important;
    width: 180px ;
     margin: 0 2px !important;
    
   
}

    .select2-container .select2-selection--single {
        height: unset;
        min-height: 40px !important;
        background-color: var(--input-color);
    }

input[type="submit"] {
    background-color: #178CAF !important;
    color: #FFF !important;
    border: none;
}

.input-container .icon-input .icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
}

    .input-container .icon-input .icon a {
        color: #999999;
    }

.input-container .dropdown-toggle {
    color: #999999;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-height: 40px;
}
/* form .input-container .dropdown-toggle.show{
    padding: 2px 5px;
} */

.dropdown-menu {
    padding: 0;
    max-height: unset;
}


    .dropdown-menu input {
        padding: 0 5px;
        width: 100%;
        color: #000;
        border: 1px solid #C6C6C6;
        outline: none;
        border-radius: 5px;
    }

.inputs .input-container .dropdown-toggle div {
    display: inline-block;
    flex: 1;
    padding: 3px;
    margin-top: 5px;
    height: 40px;
}

form .submit {
    width: 100%;
    padding: 10px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    form .submit .employees-more {
        text-decoration: underline;
        font-size: 16px;
        font-weight: bold;
        cursor: pointer;
        margin: 0;
    }

        form .submit .employees-more:hover {
            color: #000;
        }

    form .submit button {
        color: var(--main-color);
        padding: 5px 20px;
    }


form .dual-inputs {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

    form .dual-inputs > input,
    form .dual-inputs .icon-input > input {
        width: 160px;
        color: #000;
        background-color: var(--input-color);
        padding: 7px;
        border: 1px solid #C6C6C6;
        outline: none;
        border-radius: 5px;
    }

    form .dual-inputs .dropdown-toggle {
        width: 160px;
        color: var(--secondary-color);
        padding: 0px;
        border: 1px solid var(--main-color);
        outline: none;
        border-radius: 5px;
    }

        form .dual-inputs .dropdown-toggle.show {
            padding: 2px;
        }

.dual-inputs .dropdown-menu {
    width: auto;
}

    .dual-inputs .dropdown-menu input {
        padding: 0 5px;
        width: 100%;
        color: #000;
        border: 1px solid #C6C6C6;
        outline: none;
        border-radius: 5px;
    }

form .dual-inputs .dropdown-toggle div {
    display: inline-block;
    width: 130px;
    padding: 7px;
}

table.table-bordered {
    text-align: center;
    margin-top: 20px;
}

    table.table-bordered th {
        font-size: 16px;
        vertical-align: middle;
    }

    table.table-bordered td {
        vertical-align: middle;
    }

    table.table-bordered td, table.table-bordered th {
        color: var(--secondary-color);
    }

    table.table-bordered .thead {
        background-color: rgba(79, 134, 247, .2) !important;
    }

.img-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

table td .btn-mini {
    padding: 5px;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: .25s linear;
}

    table td .btn-mini:hover {
        transform: scale(1.02);
    }

table td .btn-info {
    background-color: rgba(79, 134, 247, .3);
}

    table td .btn-info .svg-inline--fa {
        color: #259BFF;
        font-size: 18px;
    }

table td .btn-danger {
    background-color: rgba(247, 79, 79, .3) !important;
}

    table td .btn-danger .svg-inline--fa {
        color: #E23535;
        font-size: 18px;
    }

.table > :not(caption) > * > * {
    box-shadow: none;
}

.table > :not(:last-child) > :last-child > * {
    border-color: var(--body-color);
}

.form-check {
    display: inline-block;
    margin: unset;
    margin-inline-end: 1em;
    color: var(--secondary-color);
}

h3.header,
h4.header,
.tdaddress {
    color: #178CAF !important;
    background-color: var(--body-color) !important;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 24px;
}

.alert {
    display: flex;
    align-items: center;
    gap: 5px;
}

.alert-attention {
    color: var(--secondary-color);
    background-color: rgba(247, 79, 79, .3);
}

.calendars-ctrl {
    background-color: #178CAF !important;
}

.calendars a:hover {
    color: #FFF;
    background-color: #F5BC1C !important;
}

/*end general*/

/*start dropdowns*/

.dropdown-toggle {
    color: var(--secondary-color);
}

    .dropdown-toggle:hover {
        color: var(--secondary-color);
    }

    .dropdown-toggle div {
        color: var(--secondary-color);
    }

.dropdown-menu {
    min-width: 250px;
    background-color: var(--main-color);
    z-index: 100;
    padding: 0;
}

    .dropdown-menu .list {
        width: 100%;
        max-height: 250px;
        overflow-y: auto;
    }

.dropdown-item {
    text-align: start;
    color: var(--secondary-color);
    border-bottom: 1px solid #C7C7C7;
}

    .dropdown-item:last-child {
        border: none;
    }

.dropdown-menu .dropdown-title {
    text-align: start;
    padding: 0.25em 1em;
    color: #4F86F7;
    border-bottom: 1px solid #4F86F7;
    font-weight: bold;
}

.dropdown-menu .read-all {
    width: 100%;
    background-color: #4F86F7 !important;
    color: #FFF;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border: none;
}

.dropdown-menu .dropdown-more {
    padding: 10px 25px;
}

    .dropdown-menu .dropdown-more .dropdown-item {
        border: none;
        text-align: center;
    }

        .dropdown-menu .dropdown-more .dropdown-item span {
            margin-inline-end: 20px;
        }

.dropdown-menu .dropdown-item .icon {
    margin-inline-end: 10px;
}

.borderless .dropdown-item {
    border: none;
}

/*end dropdowns*/


@keyframes go-down {
    0% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes stretch {
    0% {
        transform: scale(.3);
    }

    100% {
        transform: scale(1);
    }
}



/*start-nav*/

/*start dropdowns*/
.users {
    transition: .25s linear;
    z-index: 999;
}

    .users:hover {
        transform: translatey(-1px);
    }

    .users .dropdown-toggle {
        display: flex;
        align-items: center;
        gap: 10px;
    }

nav .dropdown-menu::after {
    content: "";
    width: 13px;
    height: 13px;
    background: var(--main-color);
    position: absolute;
    top: -7px;
    right: 10px;
    transform: rotate(45deg);
    border-top: 1px solid var(--body-color);
    border-left: 1px solid var(--body-color);
}

.dropdown-menu .message {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .dropdown-menu .message .icon-container {
        width: 35px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .dropdown-menu .message .icon-container .svg-inline--fa {
            font-size: 22px;
        }

    .dropdown-menu .message .message-info {
        max-width: 200px;
    }

        .dropdown-menu .message .message-info .title {
            font-size: 15px;
            font-weight: 500;
            text-overflow: ellipsis;
            white-space: normal;
            overflow-wrap: break-word;
        }

        .dropdown-menu .message .message-info .time {
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .dropdown-menu .message .message-info .time .svg-inline--fa {
                font-size: 15px;
            }

            .dropdown-menu .message .message-info .time .text {
                font-size: 15px;
                margin: 0;
            }

.dropdown-menu .notification {
    display: flex;
    align-items: center;
    gap: 15px;
}

    .dropdown-menu .notification .icon-container {
        width: 35px;
        height: 35px;
    }

        .dropdown-menu .notification .icon-container .svg-inline--fa {
            font-size: 22px;
        }

    .dropdown-menu .notification .notification-info {
        max-width: 200px;
    }

        .dropdown-menu .notification .notification-info .title {
            font-weight: 500;
            text-overflow: ellipsis;
            white-space: normal;
            font-size: 15px;
            overflow-wrap: break-word;
        }

        .dropdown-menu .notification .notification-info .user {
            font-size: 14px;
            margin-bottom: 5px;
        }

        .dropdown-menu .notification .notification-info .time {
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .dropdown-menu .notification .notification-info .time .svg-inline--fa {
                font-size: 15px;
            }

            .dropdown-menu .notification .notification-info .time .text {
                font-size: 15px;
                margin-bottom: 0;
            }

.dropdown-user .list {
    max-height: unset;
}

:root[dir="rtl"] nav .dropdown-grid::after, :root[dir="rtl"] .dropdown-user::after {
    right: unset;
    left: 10px;
}

nav .dropdown-grid::after, .dropdown-user::after {
    left: unset;
    right: 10px;
}

.users .dropdown-menu .dropdown-item {
    border: none;
}

.dropdown-grid.show {
    max-width: 320px;
}

    .dropdown-grid.show > div {
        display: flex;
        justify-content: space-evenly;
        align-items: center;
        flex-wrap: wrap;
        padding: 15px;
        gap: 15px;
    }

        .dropdown-grid.show > div > li > a {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            transition: .25s linear;
            color: var(--secondary-color);
        }

            .dropdown-grid.show > div > li > a:hover {
                transform: scale(1.03) translateY(-2px);
            }

    .dropdown-grid.show div p {
        text-align: center;
        font-size: 12px;
        margin-top: 10px;
    }


/*end dropdowns*/

/*start nav*/

nav {
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

    nav .logo img {
        max-height: 35px;
    }

.wide-sidebar nav .logo img {
    max-height: 60px;
}

nav .logo img.dark-logo {
    display: none;
}

html[dark="true"] nav .logo img.dark-logo {
    display: block;
}

html[dark="true"] nav .logo img.light-logo {
    display: none;
}

.menus-wrapper {
    flex: 1;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding: 0 10px;
}

nav .options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

nav .dark-mode {
    padding: 8px;
    border-radius: 5px;
    transition: .25s linear;
    cursor: pointer;
}

    nav .dark-mode:hover {
        background-color: rgb(195, 195, 195, .4);
    }

    nav .dark-mode .svg-inline--fa {
        font-size: 20px;
        color: var(--secondary-color);
        cursor: pointer;
    }

html nav .dark-mode .fa-sun-bright {
    display: none;
}

html[dark="true"] nav .dark-mode .fa-moon {
    display: none;
}

html[dark="true"] nav .dark-mode .fa-sun-bright {
    display: block;
}

nav .menus {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    height: 100%;
}

    nav .menus .dropdown-toggle,
    nav .menus [data-toggle="dropdown"] {
        padding: 10px;
        height: 100%;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        transition: .25s linear;
        border-radius: 5px;
    }

        nav .menus .dropdown-toggle:hover,
        nav .menus [data-toggle="dropdown"]:hover {
            background-color: rgb(195, 195, 195, .4);
        }

        nav .menus .dropdown-toggle .svg-inline--fa,
        nav .menus [data-toggle="dropdown"] .svg-inline--fa {
            font-size: 18px;
            color: var(--secondary-color);
        }

nav .lang a {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

nav .lang .svg-inline--fa {
    color: var(--secondary-color);
}

nav .lang .text {
    color: var(--secondary-color);
}

:root[dir="rtl"] .ar-lang {
    display: none;
}

:root[dir="ltr"] .en-lang {
    display: none;
}

nav .dropdown-tasks .progress {
    background-color: #C3C3C3;
    width: 150px;
    height: 10px;
    margin: 10px 0;
    border-radius: 20px;
}

nav .search {
    border-radius: 10px;
    background-color: var(--body-color);
    padding: 2px 10px;
}

    nav .search .search-box {
        padding-left: 5px;
        transition: .25s linear;
    }

    nav .search .search-box {
        transform: scale(1.01);
    }

    nav .search input {
        width: 400px;
        padding: 5px;
        background-color: transparent;
        border: none;
        outline: none;
        color: var(--secondary-color);
    }

    nav .search .fa-magnifying-glass {
        color: #707070;
        font-size: 18px;
        cursor: pointer;
    }

    nav .search .dropdown-search {
        display: none;
    }

nav .dropdown-menu {
    position: relative;
    z-index: 999;
}

nav .search .dropdown-search-box {
    display: flex;
    align-items: center;
}

nav .search .dropdown-search .dropdown-menu .fa-magnifying-glass {
    padding-left: 5px;
}

/*end nav*/

/*start sidebar*/

.side-bar {
    background-color: var(--main-color);
}

    .side-bar .menu-toggle {
        padding: 10px 20px;
        width: fit-content;
        text-align: center;
        cursor: pointer;
        display: none;
    }

        .side-bar .menu-toggle .fa-bars,
        .side-bar .menu-toggle .fa-xmark {
            font-size: 32px;
            color: #707070;
            transition: .3s linear;
        }

        .side-bar .menu-toggle:hover .fa-bars,
        .side-bar .menu-toggle:hover .fa-xmark {
            transform: scale(1.1);
        }

    .side-bar .nav-pills {
        min-height: calc(100vh - 60px);
    }

        .side-bar .nav-pills .nav-item {
            min-width: 5rem;
        }

            .side-bar .nav-pills .nav-item .nav-link {
                width: 100%;
                background-color: var(--main-color);
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                position: relative;
            }

                .side-bar .nav-pills .nav-item .nav-link .svg-inline--fa {
                    font-size: 24px;
                    color: #707070;
                }

                .side-bar .nav-pills .nav-item .nav-link.show,
                .side-bar .nav-pills .nav-item .nav-link:hover {
                    background-color: var(--body-color);
                }

                    .side-bar .nav-pills .nav-item .nav-link.show .menu-text,
                    .side-bar .nav-pills .nav-item .nav-link:hover .menu-text {
                        color: #4F86F7;
                    }

                    .side-bar .nav-pills .nav-item .nav-link.show .svg-inline--fa,
                    .side-bar .nav-pills .nav-item .nav-link:hover .svg-inline--fa {
                        color: #4F86F7;
                    }

                    .side-bar .nav-pills .nav-item .nav-link.show::before,
                    .side-bar .nav-pills .nav-item .nav-link:hover::before {
                        content: '';
                        background-color: #4F86F7;
                        width: 5px;
                        height: 100%;
                        position: absolute;
                        left: 0;
                        top: 0;
                    }

html[dir="rtl"] .side-bar .nav-pills .nav-item .nav-link.show::before,
html[dir="rtl"] .side-bar .nav-pills .nav-item .nav-link:hover::before {
    left: unset;
    right: 0;
}

/* .side-bar .nav-pills .nav-item .nav-link{
    width: 100%;
    display: flex;
    align-items: center;
    gap: 10px;
} */

.collapse-sidebar .side-bar .nav-pills .nav-item:hover .dropdown-menu {
    display: block;
    position: absolute;
    inset: 0px 0px auto auto;
    margin: 0px;
    transform: translate(-80px, 0px);
}

.side-bar .nav-pills .nav-item .nav-link span.menu-text {
    display: none;
}

.wide-sidebar .side-bar .nav-pills .nav-item .nav-link {
    justify-content: flex-start;
}

    .wide-sidebar .side-bar .nav-pills .nav-item .nav-link span.menu-text {
        display: inline-block;
        margin-inline-start: 10px;
        font-size: 20px;
        color: #707070;
    }

.side-bar .wide-icon .fa-angle-right {
    color: #707070;
    cursor: pointer;
}

:root[dir="rtl"] .side-bar .wide-icon .fa-angle-right {
    transform: rotate(180deg);
}

/*end sidebar*/


/*end-nav*/


/*start-home*/

.items {
    display: flex;
    justify-content: space-evenly;
    row-gap: 50px;
    column-gap: 25px;
    flex-wrap: wrap;
    padding: 0;
}

.item {
    width: 310px;
    height: 100%;
    padding: 30px 25px;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: .25s linear;
    animation: stretch .5s ease-out 0s alternate none running;
}

    .item:hover {
        transform: scale(1.02);
    }

    .item h5 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 15px;
        color: var(--secondary-color);
    }

    .item p {
        color: var(--secondary-color);
        margin-bottom: 0;
    }

    .item .icon-wrapper {
        position: absolute;
        top: 0;
        right: 0;
        width: 90px;
        height: 55px;
        transform: translate(-25%, -50%);
    }

html[dir="ltr"] .item .icon-wrapper {
    right: unset;
    left: 0;
    transform: translate(25%, -50%);
}

.icon-wrapper .svg-inline--fa {
    color: #FFF;
}

.item .icon-wrapper .svg-inline--fa {
    font-size: 30px;
}

/*end-home*/



/*start-manage*/

.manage .manage-cards {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.manage .manage-card {
    width: 400px;
    background-color: var(--main-color);
    display: flex;
    padding: 20px;
    gap: 30px;
    justify-content: space-between;
    align-items: center;
    border-radius: 15px;
    transition: .25s linear;
    animation: stretch .5s ease-out 0s alternate none running;
}

.manage.tasks .manage-card,
.manage.charts .manage-card {
    width: 280px;
}

.manage .manage-card:hover {
    transform: scale(1.01);
}

.manage .manage-card.color-orange:hover {
    background-color: rgba(247, 108, 79, .1);
}

.manage .manage-card.color-blue:hover {
    background-color: rgba(79, 134, 247, .1);
}

.manage .manage-card.color-primary:hover {
    background-color: rgba(79, 134, 247, .1);
}

.manage .manage-card.color-green:hover {
    background-color: rgba(53, 199, 36, .1);
}

.manage .manage-card.color-navy:hover {
    background-color: rgba(44, 105, 141, .3);
}

.manage .manage-card.color-yellow:hover {
    background-color: rgba(223, 158, 19, .3);
}

.manage .manage-card .icon-wrapper {
    width: 55px;
    height: 55px;
}


    .manage .manage-card .icon-wrapper .svg-inline--fa {
        font-size: 30px;
    }

.manage .manage-card p {
    text-align: center;
    margin: 0;
}

.manage .manage-card .projects-num .num {
    font-family: 'Londrina Outline', cursive;
    font-size: 60px;
    font-weight: bold;
    line-height: .9em;
}

.manage .manage-card .projects-num .disc {
    font-size: 24px;
    font-weight: bold;
    color: var(--secondary-color);
}

.manage .manage-card button {
    transition: .3s linear;
    font-weight: bold;
}

    .manage .manage-card button:hover {
        color: inherit;
        transform: scale(1.02);
    }

.panel {
    background-color: var(--main-color);
    margin: 20px;
    padding: 20px;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

    .panel .panel-heading .row-fluid {
        display: flex;
        justify-content: space-between;
        align-items: center
    }

    .panel .span3 {
        background-color: #4F86F7;
        position: relative;
        width: 120px !important;
        height: 55px;
        border-radius: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .panel .span3::after {
            content: '';
            position: absolute;
            width: 70%;
            height: 90%;
            top: 0;
            left: 0;
            background-color: rgba(255, 255, 255, .2);
            border-radius: 20px 10px 50px;
        }

        .panel .span3 .icon {
            width: fit-content;
            font-size: 30px;
        }

            .panel .span3 .icon::before {
                color: #FFF;
            }

    .panel .huge {
        font-size: 40px;
        font-weight: bold;
        color: #4F86F7;
    }

    .panel .span9 div:last-child {
        font-weight: bold;
        color: #F74F4F;
    }


.manage .widget-box .item {
    display: none;
    min-width: 250px;
    padding: 10px;
    border-radius: 10px;
    transition: .25s linear;
}

    .manage .widget-box .item:first-child,
    .manage .widget-box .item:nth-child(2),
    .manage .widget-box .item:nth-child(3),
    .manage .widget-box .item:nth-child(4),
    .manage .widget-box .item.shown {
        display: block;
    }

    .manage .widget-box .item a {
        display: flex;
        align-items: center;
        gap: 15px;
    }

    .manage .widget-box .item:hover {
        transform: scale(1.01);
    }

    .manage .widget-box .item .item-content {
        color: var(--secondary-color);
        font-size: 14px;
        font-weight: 500;
        text-align: start;
    }


    .manage .widget-box .item .item-letter {
        width: 40px;
        height: 35px;
        padding-bottom: 5px;
        color: var(--main-color);
        border-radius: 5px;
        display: inline-flex;
        justify-content: center;
        align-items: center;
        font-size: 18px;
    }

/*end-manage*/


/*start-self-service*/

.self-service .widget-box::before {
    content: '';
    height: 30px;
    width: 5px;
    background-color: #238CAF;
    position: absolute;
    left: 0;
    top: 15px;
    border-radius: 5px;
    transform: translateX(30%);
}

:root[dir="rtl"] .self-service .widget-box::before {
    left: unset;
    right: 0;
}

.self-service .multi-sections .widget-box {
    flex: 1;
}
/* 
.self-service .widget-box .title{
    padding: 10px 20px;
    margin-bottom: 10px;
    border-bottom: 1px solid #C7C7C7;
    display: flex;
    justify-content: space-between;
    align-items: center;
} */

.self-service .widget-box .title .buttons {
    display: flex;
    align-items: center;
}

.self-service .widget-box .title span {
    font-size: 18px;
    font-weight: bold;
}

.self-service .table-container {
    width: 100%;
    padding: 20px;
}

.self-service table.unbordered-table {
    min-width: 500px;
    text-align: center;
}

    .self-service table.unbordered-table th {
        padding: 15px;
    }

    .self-service table.unbordered-table tbody th {
        color: #1A5DFA;
        font-weight: normal;
    }

    .self-service table.unbordered-table td {
        padding: 15px;
    }

.self-service table.table-bordered {
    text-align: center;
    font-weight: normal;
}

    .self-service table.table-bordered th {
        font-weight: normal;
    }

table.table-bordered td, table.table-bordered th {
    color: var(--secondary-color);
}

.self-service table.table-bordered thead tr {
    background-color: rgba(79, 134, 247, .2);
}

.self-service table.table-bordered thead th {
    font-size: 20px;
}

.self-service .table-bordered tr th:first-child,
.self-service table.table-bordered tr td:first-child {
    color: var(--secondary-color);
}

.self-service .widget-box .title button.blue svg {
    margin-inline-end: 15px;
}

.self-service .container-fluid {
    background-color: var(--body-color);
}

    .self-service .container-fluid > div {
        margin-bottom: 30px;
    }

.self-service .self-service-cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

    .self-service .self-service-cards a {
        flex: 1;
        min-width: 250px;
        max-width: 350px;
    }

    .self-service .self-service-cards.statistics {
        justify-content: space-between;
    }

.self-service .self-service-card {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    padding: 25px 15px;
    background-color: var(--main-color);
    border-radius: 15px;
    width: 100%;
    transition: .25s linear;
    animation: stretch .5s ease-out 0s alternate none running;
}

.self-service .self-service-cards.statistics .self-service-card {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.self-service .self-service-card:hover {
    transform: scale(1.01);
}

.self-service .self-service-card .icon .svg-inline--fa {
    font-size: 64px;
}

.self-service .self-service-card .devider {
    width: 1.5px;
    height: 100px;
}

.self-service .self-service-card .num-container {
    color: var(--secondary-color);
}

    .self-service .self-service-card .num-container .num {
        font-size: 26px;
        font-weight: bold;
        margin: 0;
    }

.self-service .self-service-card .arrow-container {
    position: absolute;
    top: 10px;
    bottom: 10px;
    left: 0;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(-50%);
    border-radius: 5px;
}

    .self-service .self-service-card .arrow-container .svg-inline--fa {
        color: #FFF;
    }

.self-service .self-service-notifications .alerts {
    padding-top: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.self-service .self-service-notifications .svg-inline--fa {
    font-size: 22px;
}

.self-service .self-service-notifications .alert {
    background-color: rgba(223, 158, 19, .12);
    padding: 10px;
    display: flex;
    gap: 15px;
    border: none;
    border-radius: 10px;
}

    .self-service .self-service-notifications .alert button {
        background-color: transparent;
        border: none;
    }

.self-service .user-data {
    flex: 1;
    height: fit-content;
}

    .self-service .user-data .img-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        margin: 0 auto 25px;
    }

        .self-service .user-data .img-container .img {
            width: 100px;
            height: 100px;
            background-color: transparent;
            border: 5px solid var(--main-color);
            border-radius: 50%;
            box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
            overflow: hidden;
            margin-bottom: 15px;
        }

            .self-service .user-data .img-container .img img {
                width: 100%;
            }

        .self-service .user-data .img-container .user-name {
            font-size: 22px;
            font-weight: bold;
        }

    .self-service .user-data .info {
        padding: 5px 15px;
        width: 100%;
    }

        .self-service .user-data .info .icon {
            margin-inline-end: 10px;
        }

            .self-service .user-data .info .icon .svg-inline--fa {
                font-size: 18px;
                color: #238CAF;
            }

        .self-service .user-data .info .text {
            color: var(--secondary-color);
        }

    .self-service .user-data > button {
        margin: 25px 15px;
    }

.benefits {
    width: 100%;
    min-width: 270px;
}

.benefit {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #C7C7C7;
}

    .benefit:last-child {
        border-color: transparent;
    }

    .benefit .text {
        width: fit-content;
        font-weight: bold;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: var(--secondary-color);
    }

    .benefit .num {
        color: #1A5DFA;
        background-color: rgba(79, 134, 247, .1);
        padding: 10px;
        font-weight: bold;
        border-radius: 5px;
    }

.self-service .attendance-table .title button.blue {
    margin-inline-end: 20px;
}

.self-service .attendance-table table.table-bordered th .th-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.self-service .attendance-table table.table-bordered thead tr {
    background-color: rgba(79, 134, 247, .2);
}

.self-service .attendance-table table.table-bordered tr th:first-child {
    color: var(--secondary-color);
}

.self-service .attendance-table table tbody td:nth-child(2) {
    color: #35C724;
}

.self-service .attendance-table table tbody td:last-child {
    color: #F74F4F;
}

.task-details {
    display: flex;
    gap: 10px;
}

    .task-details .task-title {
        max-width: 200px;
        text-overflow: ellipsis;
        white-space: normal;
    }

.self-service .orders {
    display: none;
}

.self-service b > div {
    background-color: #FFF;
}

.self-service .progress-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .self-service .progress-container .percentgae {
        color: var(--secondary-color);
        font-weight: bold;
        padding: 5px;
        border-radius: 5px;
    }

.self-service .progress {
    width: 250px;
    justify-content: left;
    border-radius: 15px;
}

    .self-service .progress .progress-bar {
        border-radius: 15px;
    }

/*circular progress bar*/

.self-service .reviews .percent {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    background: var(--main-color);
    z-index: 1000;
}

    .self-service .reviews .percent .number {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50%;
    }

        .self-service .reviews .percent .number h2 {
            font-weight: 700;
            font-size: 20px;
            transition: 0.5s;
        }

            .self-service .reviews .percent .number h2 span {
                font-size: 24px;
                color: var(--secondary-color);
                transition: 0.5s;
            }


    .self-service .reviews .percent svg {
        position: relative;
        width: 82px;
        height: 82px;
        z-index: 1000;
        transform: rotate(-90deg);
    }

        .self-service .reviews .percent svg circle {
            width: 100%;
            height: 100%;
            fill: none;
            stroke: #DEDFDF;
            stroke-width: 5;
            stroke-linecap: round;
            transform: translate(5px, 5px);
        }

            .self-service .reviews .percent svg circle:nth-child(2) {
                stroke-width: 8;
                stroke-dasharray: 440;
                stroke-dashoffset: 440;
                stroke-dashoffset: calc(440 - (220 * 74) / 100);
                stroke: #1E85F1;
            }

/*circular progress bar*/

.self-service .reviews .rating {
    padding: 20px;
    display: flex;
    gap: 20px;
    color: var(--secondary-color);
}

    .self-service .reviews .rating .text p {
        font-size: 24px;
    }

.self-service .reviews table .mark {
    padding: 5px;
    border-radius: 5px;
    font-weight: bold;
    width: fit-content;
}

.self-service .reviews table tbody td:nth-child(2) {
    display: flex;
    justify-content: center;
}

.self-service .menu div {
    background-color: #FFF;
    z-index: 999;
}

.self-service .table-container {
    overflow-x: auto;
}

.self-service .salary,
.self-service .salary-details {
    flex: 1;
    width: auto;
    min-width: 270px;
}

    .self-service .salary-details .table-container {
        overflow-x: visible;
    }

:root[dir="ltr"] .self-service .salary-details .menu > div {
    transform: translateX(-180%)
}

:root[dir="rtl"] .self-service .salary-details .menu > div {
    transform: translateX(50%);
}

:root[dir="ltr"] .self-service .loans .menu > div {
    transform: translateX(-100%)
}

:root[dir="rtl"] .self-service .loans .menu > div {
    transform: translateX(30%);
}

.self-service .salary .benefits .benefit {
    width: 305px;
}

    .self-service .salary .benefits .benefit .text {
        font-size: 14px;
    }


.self-service .hidden {
    width: 100%;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    overflow: auto;
}

    .self-service .hidden .benefit {
        width: 350px;
        padding: 20px 40px;
    }

        .self-service .hidden .benefit:last-child {
            border-color: #C7C7C7;
        }

        .self-service .hidden .benefit .color-blue {
            background-color: rgba(79, 134, 247, .1);
            padding: 5px;
            border-radius: 5px;
        }

.self-service .shown {
    margin: auto;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.self-service .hide {
    display: none;
}

.self-service .hidden .svg-inline--fa {
    color: #707070;
    font-size: 30px;
}

.self-service .salary-details .fa-print {
    font-size: inherit;
    color: inherit;
}

.self-service .salary-details .title button.blue {
    margin-inline-end: 20px;
}

.self-service .salary-details table .print-button {
    background-color: rgba(223, 158, 19, .12);
    color: #DF9E13;
}

.self-service .salary-details table thead th:first-child {
    color: var(--secondary-color);
}

.self-service .salary-details table tbody th:first-child {
    color: var(--secondary-color);
    font-weight: bold;
}

.self-service .salary-details table tbody td:nth-child(2) {
    font-weight: bold;
}

.self-service .salary-details table tbody td:nth-child(3) {
    color: #1A5DFA;
}

.self-service .team {
    flex: 1;
    min-width: 270px;
}

    .self-service .team .teammates {
        width: 100%;
        padding: 15px;
        max-height: 525px;
        overflow-y: auto;
    }

    .self-service .team .teammate {
        padding: 10px;
        border: 1px solid #238CAF;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-radius: 10px;
        margin: 10px;
    }

        .self-service .team .teammate .teammate-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

            .self-service .team .teammate .teammate-info .teammate-img {
                width: 50px;
                height: 50px;
                border-radius: 50%;
                overflow: hidden;
            }

                .self-service .team .teammate .teammate-info .teammate-img img {
                    width: 100%;
                }

            .self-service .team .teammate .teammate-info .name-container p {
                margin: 0;
            }

.self-service .stocks {
    flex: 1;
}

.self-service .files {
    flex: 1;
    min-width: 270px;
}

.self-service .submissions {
    flex: 1;
    min-width: 270px;
}

    .self-service .submissions .content {
        height: 200px;
    }

.self-service .prepare {
    min-width: 270px;
    width: auto;
    flex-direction: 1;
}

    .self-service .prepare .widget-body {
        flex-direction: column;
    }

    .self-service .prepare .content {
        width: fit-content;
        padding: 20px;
        margin: 0px auto;
    }

    .self-service .prepare .details {
        border: 1px solid #238CAF;
        width: fit-content;
        padding: 25px;
        border-radius: 10px;
        margin-bottom: 20px;
    }

    .self-service .prepare .enter-exit {
        display: flex;
        justify-content: space-between;
        gap: 50px;
    }

        .self-service .prepare .enter-exit > div {
            color: var(--secondary-color);
        }

        .self-service .prepare .enter-exit p {
            margin-bottom: .5rem;
        }

        .self-service .prepare .enter-exit input[type="submit"] {
            width: 100%;
            margin: 10px 0;
            font-weight: bold;
        }

        .self-service .prepare .enter-exit .enter {
            background-color: rgba(53, 199, 36, .1);
            color: #35C724;
        }

        .self-service .prepare .enter-exit .exit {
            background-color: rgba(247, 79, 79, .1);
            color: #F74F4F;
        }

    .self-service .prepare .location {
        display: flex;
        gap: 10px;
    }

        .self-service .prepare .location span {
            color: var(--secondary-color);
        }

        .self-service .prepare .location .location-title {
            font-weight: bold;
        }

    .self-service .prepare .content > .btn {
        width: 100%;
        padding: 5px;
        background-color: #EC0E06;
        color: #FFF;
        border-radius: 10px;
    }
/*media query*/

@media all and (max-width: 900px) {

    .self-service-notifications .alerts {
        padding: 15px;
    }

    .self-service-notifications .alert {
        font-size: 14px;
    }

    table.unbordered-table th {
        font-size: 12px;
        padding: 10px;
    }

    table.unbordered-table td {
        font-size: 12px;
        padding: 10px;
    }

        table.unbordered-table td button {
            font-size: 12px;
            padding: 5px 10px;
        }

    .aler.unbordered-tablet {
        font-size: 12px;
    }

    .benefit .progress {
        width: 200px;
    }
}

@media all and (max-width: 650px) {

    html {
        width: fit-content;
    }

    .widget-box .widget-body {
        padding: 1rem .25rem;
    }

    .benefit .progress {
        width: 150px;
    }

    .self-service .team .teammate .teammate-info .name-container h5 {
        font-size: 16px;
    }

    .self-service .team .teammate button {
        font-size: 12px;
    }
}

/*end-self-service*/


/*start-login*/

body {
    background-color: var(--main-color);
}

.login .logo {
    position: absolute;
    left: 50px;
    top: 50px;
    width: 150px;
    z-index: 999;
}

    .login .logo img {
        width: 100%;
    }

.login {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0;
    padding: 0;
}

    .login .carousel-side {
        height: 100vh;
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        background-color: #FFF;
    }

    .login .carousel-container {
        position: relative;
        animation: stretch .5s ease-out 0s alternate none running;
    }


    .login .owl-carousel {
        width: 600px;
    }

        .login .owl-carousel .item {
            width: 100%;
        }

            .login .owl-carousel .item img {
                display: block;
                width: 100%;
            }

    .login .prev {
        position: absolute;
        left: -25px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .login .next {
        position: absolute;
        right: -25px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    .login .form-side {
        background-color: #2C698D;
        padding: 25px 75px 10px;
    }

        .login .form-side .title h3 {
            color: #FFF;
            text-align: center;
            font-weight: normal;
            margin-bottom: 25px;
            animation: go-down .5s ease-out 0s alternate none running;
        }

        .login .form-side h5 {
            color: #FFF;
            font-weight: bold;
            text-align: center;
        }

        .login .form-side .inputs {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
        }

        .login .form-side .input-container {
            margin: 0;
            position: relative;
            width: 100%;
            color: #FFF;
        }

        .login .form-side .submit-container {
            text-align: center;
        }


            .login .form-side .submit-container input {
                margin-top: 10px;
            }

            .login .form-side .submit-container .form-group label {
                font-size: 16px;
            }

            .login .form-side .submit-container .form-group .controls > div {
                margin: auto;
            }

        .login .form-side .input-container label {
            color: #FFF;
            display: block;
            text-transform: uppercase;
            font-size: 10px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .login .form-side .input-container input {
            width: 100%;
            padding: 7px;
            border: none;
            outline: none;
            border-radius: 5px;
            background-color: #FFF;
        }

        .login .form-side .input-container select {
            background-color: #FFF;
        }

        .login .form-side .input-container input[type="submit"] {
            color: #FFF;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            background-color: #DF9E13 !important;
        }

select {
    background-position: left;
    
}

.login .form-side .input-container .icon {
    position: absolute;
    bottom: -5px;
    transform: translateY(-50%);
    right: 15px;
    cursor: pointer;
    color: #707070;
}

.login .form-side .input-container .dropdown-toggle {
    background-color: #FFF;
    min-width: unset;
    padding: 10px;
    border: none;
    border-radius: 5px;
    color: #605858;
    box-sizing: border-box;
    justify-content: space-between;
}

    .login .form-side .input-container .dropdown-toggle::after {
        margin-left: 3em;
    }

.login .form-side .input-container .dropdown-menu {
    max-height: 150px;
}

.login .form-side .unauthorized {
    padding: 0 10px;
    border-radius: 10px;
    background-color: rgba(256, 100, 50, .5);
}

.login .remember {
    width: 100%;
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

    .login .remember .form-check input {
        background-color: transparent;
        border: 2px solid #FFF;
    }

    .login .remember .form-check label {
        color: #FFF;
    }

    .login .remember a {
        color: #FFF;
    }

.login .form-side .content {
    color: #FFF;
    font-size: 12px;
    text-align: center;
}

.login .form-side .hint {
    color: #FFF;
    text-align: center;
}

.login .form-side hr {
    width: 100%;
    background-color: #FFF;
    height: 1px;
    margin: 0;
    opacity: 1;
}

@media all and (max-width: 1200px) {
    .login .owl-carousel {
        width: 400px;
    }
}

@media all and (max-width: 920px) {

    .login .logo {
        width: 50px;
        top: 15px;
        left: 15px;
        padding: 5px;
        background-color: #FFF;
        border-radius: 5px;
    }

    .login .form-side {
        width: 100%;
        order: 0;
        padding: 20px;
    }

    .login .carousel-side {
        display: none;
    }
}

/*end-login*/

/*start-forget*/

.forget .carousel-side {
    flex: 3;
}

    .forget .carousel-side .carousel-container {
        width: 65%;
    }

        .forget .carousel-side .carousel-container img {
            width: 100%;
        }


.forget .form-side {
    padding: 50px 50px 10px;
    flex: 1;
}

    .forget .form-side .inputs {
        gap: 0;
    }

        .forget .form-side .inputs span {
            margin-right: auto;
        }

    .forget .form-side p {
        color: #FFF;
        font-weight: 600;
        text-align: center;
    }

    .forget .form-side .input-container label {
        font-size: 16px;
        font-weight: bold;
    }

    .forget .form-side #PanelCaptcha1 {
        width: 100%;
        margin-bottom: 10px;
    }

        .forget .form-side #PanelCaptcha1 label {
            color: #FFF;
            font-size: 18px;
            font-weight: bold;
            margin-bottom: 10px;
        }

        .forget .form-side #PanelCaptcha1 .controls {
            width: 100%;
            background-color: #FFF;
            padding: 10px;
            border-radius: 10px;
        }

    .forget .form-side .titlelogin {
        text-align: right;
        color: #2C698D;
        font-weight: 500;
        margin-bottom: 10px;
    }

    .forget .form-side #PanelCaptcha1 .controls input {
        border: 1px solid #2C698D;
    }

    .forget .form-side #PanelCaptcha1 .controls > div:first-child {
        margin: 0 auto;
    }

    .forget .form-side .alert {
        width: 100%;
    }

    .forget .form-side #ValidationSummary1 {
        width: 100%;
        background-color: #FFF;
        border-radius: 5px;
        margin-top: 10px;
    }

/*end-forget*/


/*start-employees*/

.employees .widget-box::before {
    height: 40px;
    top: 10px;
}

.employees .widget-box .widget-header .widget-title {
    font-size: 22px;
}

    .employees .widget-box .widget-header .widget-title .num {
        color: #707070;
        font-weight: normal;
    }

.widget-box .widget-header .buttons {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.employees .btn {
    color: var(--secondary-color);
}

    .employees .btn.blue {
        color: #FFF;
    }

    .employees .btn.yellow {
        color: #FFF;
    }

    .employees .btn.navy {
        font-size: 16px;
        padding: 5px 15px;
        color: #FFF;
    }

    .employees .btn .svg-inline--fa {
        margin-inline-start: 10px;
        font-size: 18px;
    }

    .employees .btn.light-navy {
        font-size: 16px;
        padding: 5px 15px;
    }

.employees .table-container {
    overflow: auto;
}

.employees div.show {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.table-show {
    width: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

    .table-show .drop-down {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

    .table-show .dropdown-num {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
    }

    .table-show .drop-down p {
        margin: 0;
    }

    .table-show .drop-down .dropdown-menu {
        min-width: unset;
    }

    .table-show .control {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }

        .table-show .control span {
            cursor: pointer;
        }

        .table-show .control .prev {
            color: #999999;
            cursor: pointer;
        }

        .table-show .control .next {
            color: var(--secondary-color);
            cursor: pointer;
        }

        .table-show .control .step {
            padding: 5px 10px;
            border-radius: 5px;
            color: var(--secondary-color);
        }

            .table-show .control .step.active {
                color: var(--main-color);
                background-color: #259BFF;
            }

/*end-employees*/


/*start-stepper*/

.stepper .steps {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    position: relative;
    padding: 25px;
    background-color: var(--main-color);
    border-radius: 10px;
    animation: stretch .7s ease-out 0s alternate none running;
}

.stepper .step-button {
    color: #999999;
    background-color: var(--main-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1px solid #999999;
    transition: .3s;
}

    .stepper .step-button[aria-expanded="true"],
    .stepper .step-button:hover {
        width: 60px;
        height: 60px;
        background-color: #0381ff;
        color: #fff;
    }

.stepper .done {
    background-color: #0381ff;
    color: #fff;
}

.stepper .step-item {
    z-index: 10;
    text-align: center;
}

.stepper .step-title {
    color: #999999;
    padding-top: 15px;
}

.stepper #progress {
    -webkit-appearance: none;
    position: absolute;
    right: 90px;
    left: 80px;
    top: 55px;
    width: auto;
    z-index: 5;
    height: 0.1em;
    margin-bottom: 35px;
}

    /* to customize progress bar */
    .stepper #progress::-webkit-progress-value {
        background-color: #0381ff;
        transition: .5s ease;
    }

    .stepper #progress::-webkit-progress-bar {
        background-color: #999999;
    }

.stepper .widget-box {
    background-color: transparent;
}

.stepper .widget-header {
    background-color: var(--main-color);
}

.stepper .widget-collapse {
    background-color: var(--main-color);
}

.stepper .card {
    background-color: transparent;
    border: none;
    animation: stretch .8s ease-out 0s alternate none running;
}

    .stepper .card .widget-box {
        padding: 10px;
        border-radius: 10px;
    }

    .stepper .card .widget-header {
        width: 100%;
        padding: 5px 10px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-bottom: 1px solid #E8E8E8;
    }

        .stepper .card .widget-header .widget-title {
            font-size: 22px;
            font-weight: bold;
        }

        .stepper .card .widget-header .accordion-button {
            width: fit-content;
        }

    .stepper .card .collapse > div {
        width: 100%;
    }

.stepper .buttons {
    padding: 20px 0;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.stepper .prev {
    color: #259BFF;
    background-color: transparent;
    padding: 5px 10px;
    border: none;
    font-size: 16px;
}

.stepper .next {
    color: var(--secondary-color);
    background-color: #259BFF;
    padding: 5px 10px;
    border: none;
}

.stepper .numbering .text {
    margin-inline-end: 10px;
    color: var(--secondary-color);
}

.stepper form input[type = 'date']::webkit-datetime-edit {
    color: transparent;
}

.stepper #collapseFour .inputs {
    justify-content: center;
}

.stepper p.note {
    margin-top: 20px;
    color: #F76C4F;
    font-size: 18px;
}

.stepper #collapseFour .buttons {
    display: flex;
    justify-content: start;
}

/*end-stepper*/


/*start-new-project*/

.multi-forms {
    background-color: var(--main-color);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 50px;
}

    .multi-forms .heading {
        display: flex;
        flex-wrap: wrap;
    }

        .multi-forms .heading .form-title {
            padding: 10px 15px;
            font-size: 15px;
            font-weight: bold;
            border-bottom: 1px solid #707070;
            cursor: pointer;
        }

.new-project .multi-forms .heading .form-title {
    color: #707070;
}

.multi-forms .heading .form-title.active {
    color: #259BFF;
    border-bottom: 1px solid #259BFF;
}

.new-project .forms {
    padding: 20px;
    min-height: 300px;
}

.forms > div:not(:first-child) {
    display: none;
}

.new-project .forms > div:not(:first-child) form {
    max-width: 750px;
}

.new-project .forms > div .form-title {
    color: #259BFF;
    font-size: 14px;
    font-weight: bold;
}

.new-project .check-container {
    display: flex;
    gap: 20px;
    padding: 20px 0;
}

.new-project .inputs .buttons {
    width: 100%;
    display: flex;
    gap: 20px;
    padding-top: 25px;
}

    .new-project .inputs .buttons .btn {
        padding: 2px 20px;
        font-weight: bold;
    }

.new-project .forms > div.team form {
    max-width: 350px;
}

.new-project form .dual-inputs {
    width: 330px;
}

.new-project form .input-container .dual-inputs {
    min-width: 165px;
    width: 165px;
}

    .new-project form .input-container .dual-inputs > input,
    .new-project form .input-container .dual-inputs .icon-input > input {
        width: 160px;
    }

    .new-project form .input-container .dual-inputs .dropdown-toggle {
        width: 200px;
    }

        .new-project form .input-container .dual-inputs .dropdown-toggle div {
            width: 120px;
        }

.new-project .employee-info {
    padding: 25px;
    background-color: var(--main-color);
    border-radius: 15px;
}

    .new-project .employee-info form {
        max-width: 700px;
    }

    .new-project .employee-info .inputs {
        justify-content: flex-start;
        gap: 40px;
    }

    .new-project .employee-info .buttons {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 0;
    }

        .new-project .employee-info .buttons button {
            padding: 2px 25px;
        }

        .new-project .employee-info .buttons .print {
            display: flex;
            gap: 20px;
        }

            .new-project .employee-info .buttons .print .dropdown-toggle {
                color: #707070;
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
                padding: 2px 15px;
                border: 1px solid #707070;
                border-radius: 5px;
            }

            .new-project .employee-info .buttons .print .print-btn {
                color: #DF9E13;
                background-color: rgba(223, 158, 19, .1);
            }

/*end-new-project*/


/*start-charts*/

.charts .input-container button.yellow {
    color: var(--secondary-color);
    padding: 5px 20px;
}

.charts .input-container input[type="date"] {
    color: #999999;
}

.charts .row-fluid {
    margin: 20px 0;
}

.charts .chart-wrapper {
    width: 45%;
    background-color: var(--main-color);
    min-width: 270px;
}

    .charts .chart-wrapper .chart {
        height: 100%;
    }

    .charts .chart-wrapper .chart-topic {
        width: fit-content;
        min-width: 120px;
        padding: 5px 10px;
        border-radius: 50px;
        display: flex;
        align-items: center;
        gap: 10px;
        margin: 15px;
        color: var(--secondary-color);
    }

        .charts .chart-wrapper .chart-topic .circle {
            width: 15px;
            height: 15px;
            border-radius: 50%;
        }

    .charts .chart-wrapper .widget-body {
        flex-direction: column;
        align-items: flex-start;
    }

.charts .apexcharts-legend-series {
    padding: 5px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 15px 0;
}

/*end-charts*/


/*start-policies*/

.policies .widget-box .widget-body {
    gap: 20px 40px;
}

.policies .widget-box .item {
    width: 350px;
    background-color: rgba(86, 100, 252, .2);
}

    .policies .widget-box .item .svg-inline--fa {
        color: #5664FC;
        font-size: 30px;
    }


/*end-policies*/


/*start-bill*/

.bill .table-container {
    overflow-x: auto;
}

.bill .categories form .inputs {
    justify-content: start;
    gap: 5px 25px;
}

.bill .categories form .input-container {
    min-width: unset;
}

.bill .categories form .desc > input {
    width: 300px;
}

.bill .categories form .input-container .dropdown-toggle > div {
    width: 150px;
}

.bill .categories form .btn-container {
    display: flex;
    align-items: flex-end;
    padding-bottom: 15px;
}

.bill .multi-forms form .table-container {
    padding: 20px 0;
}

.bill .multi-forms form table th {
    font-size: 16px;
    font-weight: 500;
}

.bill .multi-forms form table th,
.bill .multi-forms form table td {
    padding: 15px;
    max-width: 150px;
    text-align: center;
    vertical-align: middle;
}

.bill .multi-forms table tbody th {
    color: #4F86F7;
}

.bill .multi-forms form table .total {
    background-color: rgba(223, 158, 19, .2);
}

.bill .options form {
    width: 90%;
}

.bill .options .form-check {
    margin: auto 0;
}

.bill .options .payment-data {
    color: #259BFF;
    display: block;
    margin-bottom: 20px;
}

.bill .options button {
    background-color: #259BFF;
    padding: 2px 25px;
}

.bill .attachments .inputs {
    justify-content: flex-start;
    gap: 50px;
}

.bill .widget-box .widget-header .buttons .dropdown-toggle {
    background-color: #4F86F7;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 2px 15px;
    border-radius: 5px;
}

/*end-bill*/


/*start-currency*/

.currency {
    background-color: transparent;
    padding: 50px;
}

    .currency .container-fluid {
        padding: 25px 75px;
    }

    .currency .inputs {
        gap: 10;
    }

    .currency .check-container {
        width: 100%;
    }

        .currency .check-container tr,
        .currency .check-container td {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .currency .check-container tr {
            gap: 25px;
        }

        .currency .check-container td {
            gap: 10px;
        }

    .currency .input-container {
        flex: 1;
        max-width: 650px;
        margin: 0;
    }

    .currency .btn-container {
        width: 45%;
        margin-top: auto;
    }

        .currency .btn-container button {
            padding: 5px 50px;
        }

    .currency .table-container {
        padding: 10px 0;
        width: 100%;
    }

.table-bordered table tr[style="background-color:#DFF0D8;"] {
    background-color: #FFF !important;
}

.currency table.table-bordered {
    border: none;
}

    .currency table.table-bordered tr th:first-child,
    .currency table.table-bordered tr td:first-child {
        color: var(--secondary-color);
    }

.currency .table-bordered > tbody > tr:first-child {
    background-color: rgba(79, 134, 247, .2) !important;
}

.currency table th,
.currency table td {
    padding: 15px;
    text-align: center;
    vertical-align: middle;
}

.pagination {
    display: table-row;
}

    .pagination table tr {
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .pagination table td,
    .currency .table-bordered tr:last-child td {
        padding: 5px 10px;
        border-radius: 5px;
        color: var(--secondary-color);
        cursor: pointer;
    }

        .pagination table td:hover,
        .pagination span,
        .currency .table-bordered tr:last-child span {
            color: #FFF;
            background-color: #259BFF;
            padding: 5px 10px;
            border-radius: 5px;
        }

            .pagination table td:hover a {
                color: #FFF;
            }


.currency .close-btn {
    padding: 2px 10px;
    background-color: #E8E8E8;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 100;
    font-size: 24px;
    color: #000;
}

/*end-currency*/

/*start-models*/


.models-multi-forms {
    background-color: var(--main-color);
    display: flex;
    justify-content: space-between;
    border-radius: 15px;
    margin: 0 !important;
    padding: 0 !important;
}

.models-multi-forms .heading {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #259BFF;
    min-height: 500px;
    border-radius: 0 15px 15px 0;
}

    .models-multi-forms .heading .form-title {
        color: #FFF;
        background-color: #259BFF;
        padding: 10px 30px;
        border-bottom: 1px solid var(--main-color);
        font-weight: bold;
        text-align: center;
        cursor: pointer;
    }

        .models-multi-forms .heading .form-title:first-child {
            border-radius: 0 15px 0 0;
        }

        .models-multi-forms .heading .form-title.active,
        .models-multi-forms .heading .form-title:hover {
            color: #259BFF;
            background-color: var(--main-color);
            border: 1px solid #259BFF;
        }

.models-multi-forms .forms {
    flex: 1;
}

    .models-multi-forms .forms > div {
        display: flex;
        gap: 50px;
        flex-wrap: wrap;
    }

        .models-multi-forms .forms > div .devider {
            width: 1px;
            background-color: #259BFF;
        }

    .models-multi-forms .forms .benefits {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }

        .models-multi-forms .forms .benefits .benefit {
            background-color: var(--main-color);
            border-color: rgba(37, 155, 255, .5);
        }

            .models-multi-forms .forms .benefits .benefit:nth-child(odd) {
                border-inline-end: 1px solid #259BFF;
            }

@media screen and (max-width: 1200px) {
    .models-multi-forms .forms .benefits {
        grid-template-columns: 1fr;
    }

        .models-multi-forms .forms .benefits .benefit:nth-child(odd) {
            border: none;
        }
}

@media screen and (max-width: 670px) {
    .models-multi-forms .forms .benefits .benefit {
        width: fit-content;
        gap: 10px;
        margin: 0;
    }
}


/*end-models*/
/*start-modal*/
.modal {
    background-color: var(--main-color);
    width: fit-content;
    height: 80%;
    max-width: 750px;
    min-width: 600px;
    margin: 1.75rem auto;
    border-radius: 15px;
   /* overflow: visible !important;*/
}

    .modal.in {
        display: flex;
        flex-direction: column;
    }

    .modal .modal-header {
        border-color: #259BFF;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .modal .modal-header .blue {
            color: #259BFF !important;
            background-color: unset !important;
            order: 0;
            margin: 0;
        }

        .modal .modal-header button {
            color: var(--secondary-color);
            background-color: rgba(37, 155, 255, .5);
            margin: 0;
            padding: 5px 10px;
            order: 1;
            border: none;
            border-radius: 5px;
            font-size: 18px;
            font-weight: bold;
        }

.modal-body {
    flex: 1;
    overflow-y: auto !important;
}

    .modal-body .multi-forms {
        padding: 0;
    }

        .modal-body .multi-forms .heading {
            padding: 0;
            border-bottom: 1px solid rgba(112, 112, 112, .7);
        }

            .modal-body .multi-forms .heading .form-title {
                color: var(--secondary-color);
                padding: 5px;
                border: 1px solid rgba(112, 112, 112, .3);
                display: flex;
                justify-content: center;
                align-items: center;
                gap: 10px;
            }

                .modal-body .multi-forms .heading .form-title.active {
                    background-color: #EEEEEE;
                    border-top: 4px solid #259BFF;
                    color: #259BFF;
                }

                .modal-body .multi-forms .heading .form-title .badge {
                    background-color: red;
                }

        .modal-body .multi-forms .forms > div {
            padding: 20px;
        }

        .modal-body .multi-forms .forms .table-container {
            overflow-x: auto;
        }

            .modal-body .multi-forms .forms .table-container th,
            .modal-body .multi-forms .forms .table-container td {
                padding: 10px 40px;
                font-size: 12px;
            }

        .modal-body .multi-forms .forms .generalize {
            padding: 25px;
            border-bottom: 1px solid rgba(112, 112, 112, .7);
            color: var(--secondary-color);
        }

            .modal-body .multi-forms .forms .generalize:last-child {
                border: none;
            }

            .modal-body .multi-forms .forms .generalize .generalize-header {
                margin-bottom: 20px;
            }

            .modal-body .multi-forms .forms .generalize .generalize-body img {
                max-width: 70%;
            }

.modal .modal-footer {
    background-color: #FFF;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
}

    .modal .modal-footer .btn-primary {
        color: #FFF;
    }

@media all and (max-width: 760px) {
    .modal {
        max-width: 80%;
    }
}



/*end-modal*/

.performance .widget-box {
    padding: 25px !important;
}

.performance .table-container {
    padding: 20px 0;
}

    .performance .table-container table tbody tr:last-child {
        background-color: rgba(223, 158, 19, .2);
    }

    .performance .table-container table th,
    .performance .table-container table td {
        padding: 15px 30px;
        text-align: center;
        vertical-align: middle;
    }

        .performance .table-container table th:nth-child(3),
        .performance .table-container table td:nth-child(3) {
            color: #5664FC;
            font-weight: bold;
        }

.performance .degree-due {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
}

    .performance .degree-due .degree {
        color: #707070;
        width: 60px;
        height: 25px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid #707070;
    }

    .performance .degree-due .progress {
        height: 5px;
        flex: 1;
    }

.performance .inputs button {
    padding: 5px 50px;
}

/*start sales*/

.sales .content-wrapper {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

    .sales .content-wrapper > div {
        flex: 1;
        min-width: 450px;
    }

.sales .widget-box {
    padding: 20px !important;
    margin: 20px 0;
}

    .sales .widget-box .title {
        padding: 10px 20px;
        margin-bottom: 10px;
        border-bottom: 1px solid #C7C7C7;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.sales > div {
    overflow-x: auto;
}

.sales .widget-box .table-container {
    overflow-x: auto;
    min-height: 220px;
}

.sales .widget-box .title .buttons {
    display: flex;
    align-items: center;
}

.sales .widget-box .title span {
    font-size: 18px;
    font-weight: bold;
}

.sales .inputs {
    flex: 1;
}

    .sales .inputs .icon-input-container {
        width: 100%;
    }

        .sales .inputs .icon-input-container input {
            max-width: unset;
        }

.sales table td {
    min-width: 60px;
    font-size: 14px;
}

.sales table tbody tr:first-child {
    background-color: rgba(79, 134, 247, .2);
}

.sales table tbody tr:last-child {
    background-color: rgba(223, 158, 19, .2);
}

.sales table td input {
    width: 60px;
    border-radius: 10px;
    color: #000;
    background-color: var(--input-color);
    border: 1px solid var(--main-color);
    outline: none;
    padding: 2px;
}

.sales .widget-box .widget-header .btn:last-child {
    color: #FFF !important;
}

.sales .inputs .buttons {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}

.sales .buttons .btn {
    color: #FFF;
}

    .sales .buttons .btn.yellow {
        padding: 5px 20px;
    }

    .sales .buttons .btn.blue {
        background-color: #4F86F7 !important;
        border: none;
        outline: none;
    }

.sales .buttons .btn-group {
    margin-inline-start: 0;
}

    .sales .buttons .btn-group a {
        border-radius: 0 5px 5px 0 !important;
    }

    .sales .buttons .btn-group button {
        border-radius: 5px 0 0 5px;
    }

.sales .multi-forms {
    margin: 0;
}

    .sales .multi-forms .forms-title h5 {
        font-weight: bold;
    }

    .sales .multi-forms .heading .form-title {
        border: 1px solid rgba(112, 112, 112, .3);
    }

        .sales .multi-forms .heading .form-title.active {
            color: var(--secondary-color);
        }

    .sales .multi-forms .forms {
        max-height: 500px;
        overflow-y: auto;
    }

    .sales .multi-forms .items {
        padding: 20px 0;
        display: flex;
        justify-content: space-evenly;
        gap: 20px;
    }

        .sales .multi-forms .items .item {
            max-width: 140px;
            padding: 0;
            display: grid;
        }

            .sales .multi-forms .items .item .item-img {
                height: 100px;
                display: flex;
                justify-content: center;
                align-items: center;
                border-radius: 10px 10px 0 0;
                background-repeat: no-repeat;
                background-position: center;
            }

            .sales .multi-forms .items .item .item-img {
                color: var(--main-color);
                font-size: 26px;
            }

            .sales .multi-forms .items .item .item-title {
                padding: 10px;
                color: var(--secondary-color);
                background-color: var(--body-color);
                font-size: 15px;
                font-weight: bold;
                border-radius: 0 0 10px 10px;
            }

            .sales .multi-forms .items .item .item-num {
                color: var(--secondary-color);
                background-color: var(--main-color);
                padding: 2px;
                border-radius: 8px;
                position: absolute;
                top: 5px;
                left: 5px;
                font-size: 12px;
            }

.sales .modal .inputs .input-container {
    width: 330px;
}

.sales .modal .button-container {
    width: 100%;
}

.sales .dual-inputs > input:first-child {
    width: 100px;
}

.sales .dual-inputs > input:last-child {
    flex: 1;
}

.sales .modal .button-container button {
    padding: 5px 40px;
}

/*start mail*/

.mail .sections {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.mail .section {
    width: fit-content;
    background-color: var(--main-color);
    border-radius: 10px;
    animation: stretch .5s ease-out 0s alternate none running;
}

    .mail .section .section-body {
        padding: 15px;
    }

    .mail .section .title {
        padding: 10px;
        border-bottom: 1px solid #707070;
    }

        .mail .section .title .svg-inline--fa {
            color: #4F86F7;
        }

        .mail .section .title span {
            font-size: 22px;
            font-weight: bold;
            color: var(--secondary-color);
        }

.mail .search-box {
    background-color: var(--main-color);
    border: 1px solid #707070;
    border-radius: 10px;
    width: 400px;
    padding: 0 5px;
    display: flex;
    align-items: center;
}

    .mail .search-box input {
        color: var(--secondary-color);
        background-color: var(--main-color);
        border: none;
        outline: none;
        padding: 5px;
        flex: 1;
    }

    .mail .search-box .fa-magnifying-glass {
        color: #707070;
    }

.mail .messages {
    padding: 0 10px;
    margin: 10px 0;
    max-height: 500px;
    overflow-y: auto;
}

.mail .message {
    color: var(--secondary-color);
    background-color: var(--body-color);
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 10px;
    box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
}

    .mail .message.active {
        background-color: #4F86F7;
        color: var(--main-color);
    }

    .mail .message.done {
        opacity: .6;
    }

.mail .message-title {
    font-size: 18px;
    font-weight: bold;
}

.mail .message .message-hint {
    font-weight: 500;
    margin-bottom: 0;
}

.mail .message .message-date {
    position: absolute;
    top: 10px;
    left: 10px;
}

.mail .shown-message {
    flex: 1;
}

    .mail .shown-message .user-info {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 10px;
        color: var(--secondary-color);
    }

        .mail .shown-message .user-info .user-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
        }

            .mail .shown-message .user-info .user-img img {
                width: 100%;
            }

    .mail .shown-message .heading {
        padding: 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .mail .shown-message .message-body {
        padding: 20px;
        border-bottom: 1px solid #707070;
        color: var(--secondary-color);
    }

        .mail .shown-message .message-body .message-content {
            margin: 20px 0;
        }

.mail .inputs {
    justify-content: flex-end;
}

    .mail .inputs button {
        padding: 2px 20px;
        border-radius: 20px;
    }

.mail .attaches .title {
    border: none;
}

.mail .attaches .attaches-body {
    padding: 20px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

    .mail .attaches .attaches-body .attach {
        width: 140px;
        height: 160px;
        border: 1px solid rgba(112, 112, 112, 0.6);
        border-radius: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

        .mail .attaches .attaches-body .attach .svg-inline--fa {
            font-size: 30px;
            color: #707070;
        }

/*end mail*/

/*start advance*/

.advance .widget-box {
    padding: 10px 20px !important;
}

.advance .ar-container input {
    width: 70%;
    margin-inline-end: 10px;
}

.advance .steps {
    border-radius: 10px;
    background-color: var(--main-color);
    padding: 10px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    max-width: 90vw;
    overflow-x: auto;
}

    .advance .steps::-webkit-scrollbar {
        width: 10px;
        height: 10px;
    }

    .advance .steps .step {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

        .advance .steps .step.disabled {
            opacity: .5;
        }

        .advance .steps .step .step-line {
            flex: 1;
            height: 1px;
            background-color: #259BFF;
            min-width: 100px;
        }

        .advance .steps .step:first-child .step-line {
            display: none;
        }

        .advance .steps .step .step-body {
            color: var(--main-color);
            background-color: #259BFF;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 14px;
            width: max-content;
        }

.advance .order-status .status {
    font-size: 18px;
    font-weight: bold;
}

.advance .widget-box .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 10px;
    border-bottom: 1px solid #C6C6C6;
}

    .advance .widget-box .title span {
        font-size: 22px;
        font-weight: bold;
    }

.advance .widget-box .procedures-container {
    padding-top: 10px;
}

.advance .widget-box .procedures {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .advance .widget-box .procedures .procedure {
        width: 120px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid;
        border-radius: 5px;
        font-weight: bold;
    }

        .advance .widget-box .procedures .procedure a {
            color: inherit;
        }

.advance .widget-box .divider {
    width: 100%;
    height: 1px;
    background-color: #4F86F7;
    margin: 20px 0;
}

.advance .widget-box .tasks {
    padding: 10px 0;
}

    .advance .widget-box .tasks .task {
        display: flex;
        gap: 10px;
    }

        .advance .widget-box .tasks .task .complete {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

            .advance .widget-box .tasks .task .complete .circle {
                width: 50px;
                height: 50px;
                display: flex;
                justify-content: center;
                align-items: center;
                border: 3px solid #4F86F7;
                border-radius: 50%;
            }

            .advance .widget-box .tasks .task .complete .svg-inline--fa {
                color: #5664FC;
            }

            .advance .widget-box .tasks .task .complete .line {
                flex: 1;
                width: 3px;
                background-color: #4F86F7;
            }

        .advance .widget-box .tasks .task:last-child .complete .line {
            display: none;
        }

        .advance .widget-box .tasks .task .task-body-wrapper {
            flex: 1;
            padding-bottom: 30px;
        }

        .advance .widget-box .tasks .task .task-body {
            padding: 35px;
            border-radius: 10px;
            background-color: #F1F1F1;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

            .advance .widget-box .tasks .task .task-body .task-item {
                display: flex;
                align-items: center;
                gap: 10px;
            }

                .advance .widget-box .tasks .task .task-body .task-item .blue-circle {
                    margin: 0;
                }

                .advance .widget-box .tasks .task .task-body .task-item .employee-name {
                    padding: 2px 5px;
                    border-radius: 5px;
                }

                .advance .widget-box .tasks .task .task-body .task-item .employee-title {
                    font-weight: bold;
                }

                .advance .widget-box .tasks .task .task-body .task-item .procedure {
                    display: flex;
                    gap: 5px;
                }

                    .advance .widget-box .tasks .task .task-body .task-item .procedure .procedure-title {
                        font-weight: bold;
                    }

                    .advance .widget-box .tasks .task .task-body .task-item .procedure .procedure-item {
                        padding: 0 35px;
                        border: 1px solid;
                        border-radius: 5px;
                    }

            .advance .widget-box .tasks .task .task-body .message-box {
                background-color: rgba(36, 36, 36, .05);
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                border-radius: 5px;
            }

            .advance .widget-box .tasks .task .task-body .icon {
                padding: 5px;
                display: flex;
                justify-content: center;
                align-items: center;
            }

                .advance .widget-box .tasks .task .task-body .icon .svg-inline--fa {
                    font-size: 18px;
                    color: #707070;
                }

            .advance .widget-box .tasks .task .task-body .message-box input {
                width: auto;
                height: 100%;
                padding: 10px 5px;
                flex: 1;
                background-color: transparent;
                border: none;
                outline: none;
                min-width: 200px;
            }

            .advance .widget-box .tasks .task .task-body .message-box button {
                padding: 10px 30px;
                background-color: #5664FC;
            }

            .advance .widget-box .tasks .task .task-body .message-item {
                align-items: flex-start;
            }

            .advance .widget-box .tasks .task .task-body .task-item .circle {
                width: 35px;
                height: 35px;
                border: 1px solid #5664FC;
                border-radius: 50%;
                display: flex;
                justify-content: center;
                align-items: center;
            }


            .advance .widget-box .tasks .task .task-body .message-item .svg-inline--fa {
                color: #5664FC;
            }

            .advance .widget-box .tasks .task .task-body .task-item .message-body {
                flex: 1;
                background-color: rgba(36, 36, 36, .03);
                padding: 5px 10px 10px;
                padding-inline-end: 75px;
                border-radius: 5px;
            }

                .advance .widget-box .tasks .task .task-body .task-item .message-body .employee-info {
                    margin-bottom: 30px;
                }

                    .advance .widget-box .tasks .task .task-body .task-item .message-body .employee-info .employee-name {
                        font-size: 12px;
                    }

                    .advance .widget-box .tasks .task .task-body .task-item .message-body .employee-info .message-date {
                        font-size: 13px;
                        color: #303030;
                        display: flex;
                        gap: 10px;
                    }

                        .advance .widget-box .tasks .task .task-body .task-item .message-body .employee-info .message-date .icon {
                            padding: 0;
                        }

                .advance .widget-box .tasks .task .task-body .task-item .message-body .message-content {
                    font-size: 16px;
                    font-weight: 500;
                }

            .advance .widget-box .tasks .task .task-body .date {
                position: absolute;
                top: 10px;
                left: 10px;
                color: #242424;
                font-size: 14px;
                display: flex;
                gap: 5px;
            }

                .advance .widget-box .tasks .task .task-body .date .icon {
                    padding: 0;
                }

                    .advance .widget-box .tasks .task .task-body .date .icon .svg-inline--fa {
                        font-size: 12px;
                    }

            .advance .widget-box .tasks .task .task-body .message {
                position: absolute;
                bottom: 10px;
                left: 15px;
                cursor: pointer;
            }

                .advance .widget-box .tasks .task .task-body .message .svg-inline--fa {
                    color: #5664FC;
                }

@media all and (max-width: 620px) {
    .advance .widget-box .tasks .task .task-body .date {
        font-size: 10px;
    }

        .advance .widget-box .tasks .task .task-body .date .icon .svg-inline--fa {
            font-size: 9px;
        }

    .advance .widget-box .tasks .task .task-body .task-item .message-body {
        padding: 10px;
    }
}
/*end advance*/

/*start latlng*/

.latlng {
    padding: 20px;
}

    .latlng .inputs {
        padding: 10px;
        margin: 20px 0;
        border-radius: 10px;
        box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
    }

        .latlng .inputs .input-container {
            text-align: start;
        }

            .latlng .inputs .input-container span {
                display: block;
                margin-bottom: 10px;
            }

        .latlng .inputs .btn-container {
            display: flex;
            align-items: flex-end;
        }

            .latlng .inputs .btn-container .btn {
                width: fit-content;
                color: #FFF;
                background-color: #238CAF !important;
                padding: 7px 50px;
                font-size: 16px;
                border: none;
                outline: none;
                cursor: pointer;
            }

        .latlng .inputs .icon-input {
            display: flex;
            justify-content: center;
            align-items: stretch;
            gap: 0;
        }

            .latlng .inputs .icon-input input:first-child {
                width: 250px !important;
                border-radius: 5px 0 0 5px;
            }

            .latlng .inputs .icon-input input:last-child {
                width: fit-content !important;
                border-radius: 0 5px 5px 0;
                cursor: pointer;
            }

/*end latlng*/

/*start task-panel*/

.task-panel .cards-set {
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
}

.task-panel .card {
    flex: 1;
    min-width: 220px;
    border-radius: 10px;
    overflow: hidden;
    background-color: #DFE1E3;
}

    .task-panel .card .card-title {
        color: #FFF;
        padding: 10px;
        font-size: 18px;
        font-weight: bold;
        text-align: center;
    }

    .task-panel .card .card-body {
        padding: 20px 10px;
    }

.task-panel .dd .dd-list {
    padding: 0;
}

    .task-panel .dd .dd-list h5 {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0;
        color: inherit;
    }

    .task-panel .dd .dd-list p {
        font-size: 14px;
    }

.task-panel .dd .dd-placeholder {
    margin: 5px 0;
    padding: 0;
    min-height: 30px;
    background: #f2fbff;
    border: 1px dashed #b6bcbf;
    box-sizing: border-box;
    display: block;
    position: relative;
    font-size: 13px;
    line-height: 20px;
}

.task-panel .dd .dd-empty {
    background-color: #e5e5e5;
    min-height: 100px;
    border: 1px dashed #bbb;
}

.task-panel .dd .dd-item {
    position: relative;
    background-color: var(--main-color);
    margin-bottom: 10px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
}

.task-panel .dd .heading {
    width: 100%;
    padding: 5px 15px;
    cursor: move;
}

.task-panel .dd-handle {
    color: #FFF;
}

.task-panel .dd-content {
    padding: 10px;
}

.task-panel .dd .content {
    padding: 10px;
}

    .task-panel .dd .content .task-num {
        font-size: 16px;
    }

    .task-panel .dd .content .task-name {
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 0;
    }

    .task-panel .dd .content .task-disc {
        font-size: 14px;
    }

    .task-panel .dd .content .dates {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .task-panel .dd .content .dates p {
            margin-bottom: 0;
        }

/*end task-panel*/

/*start tasks*/

.task-details .wrapper {
    padding: 20px;
    background-color: #FFF;
    border-radius: 5px;
}

.task-details .details {
    background-color: var(--body-color);
    display: grid;
    grid-template-columns: repeat(8, auto);
    gap: 2px;
    border-radius: 5px;
    box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
    margin-bottom: 20px;
}

    .task-details .details .detail {
        height: 100%;
        display: flex;
        flex-direction: column;
        gap: 2px;
    }

        .task-details .details .detail > div {
            padding: 10px;
            background-color: var(--main-color);
        }

.task-details .disc {
    flex: 1;
    color: #2C698D;
}

.task-details .more-details {
    padding: 10px;
    display: flex;
    gap: 10px;
    border-radius: 5px;
    box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
    margin-bottom: 20px;
}

.task-details .data-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.task-details .replies {
    flex: 2;
    box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
}

.task-details .replies-container {
    width: 100%;
    max-height: 220px;
    overflow-y: auto;
}

.task-details .reply {
    background-color: var(--body-color);
    margin-bottom: 20px;
    padding: 10px 20px;
    border-radius: 5px;
}

    .task-details .reply .reply-header {
        display: flex;
        justify-content: space-between;
    }

        .task-details .reply .reply-header .reply-title {
            gap: 10px;
        }

        .task-details .reply .reply-header > div {
            display: flex;
            align-items: center;
        }

        .task-details .reply .reply-header .reply-title .icon {
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            border: 3px solid #2C698D;
            border-radius: 50%;
            font-size: 14px;
        }

        .task-details .reply .reply-header .reply-title .text {
            margin: 0;
            font-size: 22px;
        }

        .task-details .reply .reply-header .date {
            font-size: 14px;
            gap: 5px;
        }

            .task-details .reply .reply-header .date .text {
                color: #242424;
                margin: 0;
            }

    .task-details .reply .reply-comment {
        margin: 20px 0;
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .task-details .reply .reply-comment .quotation {
            color: #2C698D;
            padding: 0 10px 10px;
            font-size: 32px;
            font-weight: 800;
            align-self: flex-start;
            display: flex;
            align-items: center;
        }

    .task-details .reply .reply-body {
        padding: 10px 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        flex-wrap: wrap;
    }

        .task-details .reply .reply-body .info-container {
            flex: 1;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
        }

            .task-details .reply .reply-body .info-container .info {
                min-width: 175px;
                display: flex;
                align-items: center;
                gap: 5px;
            }

                .task-details .reply .reply-body .info-container .info .info-title {
                    color: #FFF;
                    background-color: #DF9E13;
                    padding: 4px;
                    border-radius: 5px;
                    font-size: 14px;
                }

                .task-details .reply .reply-body .info-container .info .info-text {
                    font-size: 16px;
                }

.task-details .replies .inputs label,
.task-details .doc-modal label {
    display: block;
}

.task-details .replies .inputs .select2-selection--single,
.task-details .doc-modal .select2-selection--single {
    margin: 0;
}

.task-details .replies .inputs .button-container {
    width: 100%;
    text-align: end;
}

.task-details .doc {
    flex: 1;
    background-color: #FFF;
    border-radius: 5px;
    box-shadow: rgb(17 12 46 /10%) 0px 1px 50px .1px;
}

    .task-details .doc .widget-body {
        height: 80%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

        .task-details .doc .widget-body .text {
            text-align: center;
        }

        .task-details .doc .widget-body .btn {
            color: #FFF;
        }

.task-details .doc-modal .input-container {
    flex: 1;
}

.task-details .doc-modal .select2 {
    width: 100% !important;
}

@media screen and (max-width: 1450px) {
    .task-details .details {
        grid-template-columns: repeat(4, auto);
    }
}

@media screen and (max-width: 1080px) {
    .task-details .details {
        grid-template-columns: repeat(2, auto);
    }

    .task-details .replies {
        flex: auto;
        width: 100%;
    }
}

@media screen and (max-width: 500px) {
    .task-details .reply .reply-header .reply-title .icon {
        width: 30px;
        height: 30px;
        font-size: 10px;
    }

    .task-details .reply .reply-header .reply-title .text {
        font-size: 14px;
    }

    .task-details .reply .reply-header .date {
        font-size: 10px;
    }
}
/*end tasks*/

/*start infobox*/

.infobox-container {
    background-color: var(--main-color);
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: auto;
    align-content: space-between;
    justify-content: space-between;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(44, 105, 141, 1);
    animation: go-up 1s ease-out 0s alternate none running;
    font-size:28px;
    margin:20px 0px;
}

    .infobox-container .infobox {
        width: auto !important;
        padding: 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        border: 1px solid rgba(44, 105, 141, .5);
    }

        .infobox-container .infobox .icon-container,
        .infobox-container .infobox .infobox-icon {
            flex: 1;
            padding: 10px;
            border-radius: 5px;
        }

            .infobox-container .infobox .icon-container .svg-inline--fa,
            .infobox-container .infobox .infobox-icon i {
                color: #2C698D;
                font-size: 36px;
            }

        .infobox-container .infobox .infobox-data {
            color: #2C698D;
            flex: 2;
            text-align: center;
        }

:root[dark="true"] .infobox-container .infobox .infobox-data {
    color: #FFF;
}

.infobox-container .infobox .infobox-data-number {
    font-size: 24px;
    font-weight: bold;
}

@media all and (max-width: 1360px) {
    .infobox-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media all and (max-width: 1180px) {
    .infobox-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media all and (max-width: 992px) {
    .infobox-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .row-fluid .span2,
    .row-fluid .span3 {
        width: 32%;
        *width: 32%;
    }
}

@media all and (max-width: 720px) {
    .infobox-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .row-fluid .span2,
    .row-fluid .span3,
    .row-fluid .span4 {
        width: 45%;
        *width: 45%;
    }
}

@media all and (max-width: 500px) {
    .infobox-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .row-fluid .span2,
    .row-fluid .span3,
    .row-fluid .span4,
    .row-fluid .span5,
    .row-fluid .span6,
    .row-fluid .span7,
    .row-fluid .span8,
    .row-fluid .span9 {
        width: 100%;
        *width: 100%;
    }
}
/*end infobox*/

/*start media query*/

@media all and (max-width: 1392px) {
    nav .search .search-box {
        display: none;
    }

    nav .search {
        padding: 0;
    }

        nav .search .dropdown-search {
            display: block;
        }

            nav .search .dropdown-search > a > .fa-magnifying-glass {
                padding: 10px 20px;
            }
}

@media all and (max-width: 1005px) {
    nav .options {
        order: 4;
    }
}

@media all and (max-width: 980px) {
    .side-bar .nav-pills {
        display: none;
    }

    .side-bar .menu-toggle {
        display: block;
    }

    .side-bar {
        position: absolute;
        height: fit-content;
        z-index: 100;
        border-radius: 15px;
    }

        .side-bar .nav-pills {
            height: fit-content;
        }
}

@media all and (max-width: 880px) {
    nav .search {
        order: 3;
    }

    nav .options,
    nav .search {
        order: unset;
    }
}


@media all and (max-width: 720px) {

    nav .menus {
        gap: 10px;
    }

        nav .menus a {
            padding: 3px;
        }

    .wide-sidebar nav .logo img {
        max-height: 35px;
    }

    .modal {
        min-width: 300px;
    }

    .main-content .content-wrapper > .title h3 {
        font-size: 20px;
    }

    .item {
        width: 285px;
        height: 100%;
        padding: 30px 25px;
        border-radius: 15px;
        text-align: center;
        cursor: pointer;
        transition: .25s linear;
        animation: stretch .5s ease-out 0s alternate none running;
    }

    .manage .widget-box .item {
        width: 250px;
    }

    .widget-box .widget-title {
        font-size: 18px;
    }

    .self-service > div {
        margin-left: auto;
        margin-right: auto;
    }

    .self-service .loans {
        max-width: 420px;
    }
}

@media all and (max-width: 450px) {

    .self-service > div,
    .self-service .multi-sections .widget-box {
        max-width: 380px;
    }

    .self-service .team .teammate {
        flex-direction: column;
        gap: 10px;
    }

    .self-service .reviews .rating .text h4 {
        font-size: 20px;
    }

    .self-service .reviews .rating .text p {
        font-size: 16px;
    }
}

@media all and (max-width: 400px) {

    .self-service > div,
    .self-service .multi-sections .widget-box {
        max-width: 320px;
    }
}

@media all and (max-width: 350px) {

    .self-service > div,
    .self-service .multi-sections .widget-box {
        max-width: 270px;
    }
}

/*end media query*/

/******************** custom *************************/

.icon-trash::before {
    content: "\f1f8";
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-style: normal;
    color: #F74F4F;
}

.icon-edit::before {
    content: "\f044";
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: #4F86F7;
}

.icon-print::before {
    content: '\f02f';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-table::before {
    content: '\f093';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-list::before {
    content: '\f0ca';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-star::before {
    content: '\f005';
    font-family: "Font Awesome 6 Pro";
    font-weight: 900;
    font-style: normal;
    color: inherit;
}

.icon-credit-card::before {
    content: '\f09d';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: var(--secondary-color);
}

.icon-lock::before {
    content: '\f023';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: var(--secondary-color);
}

.icon-group::before {
    content: '\f0c0';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-time::before {
    content: '\e29e';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-dashboard::before {
    content: '\f0db';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-eye-open::before {
    content: '\f06e';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-calendar::before {
    content: '\f133';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-chevron-down::before {
    content: '\f078';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-user::before {
    content: '\f007';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.icon-bar-chart::before {
    content: '\e0e3';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}

.nav-tabs li {
    color: #707070;
    padding: 10px 5px;
    font-size: 15px;
    font-weight: bold;
    border-bottom: 1px solid #707070;
    cursor: pointer;
}

    .nav-tabs li.active {
        border-bottom: 1px solid #259BFF;
    }

        .nav-tabs li.active a {
            color: #259BFF;
        }

.control-group {
    margin: 5px;
}

.control-label {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.row-fluid .span12,
.span12 {
    width: 100% !important;
    *width: 99.94680851063829% !important;
    display: inline-block;
}

.row-fluid .span11,
.span11 {
    width: 91.45299145299145% !important;
    *width: 91.39979996362975% !important;
    display: inline-block;
}

.row-fluid .span10,
.span10 {
    width: 82.90598290598291% !important;
    *width: 82.8527914166212% !important;
    display: inline-block;
}

.row-fluid .span9,
.span9 {
    width: 74.35897435897436% !important;
    *width: 74.30578286961266% !important;
    display: inline-block;
}

.row-fluid .span8,
.span8 {
    width: 65.81196581196582% !important;
    *width: 65.75877432260411% !important;
    display: inline-block;

}

.row-fluid .span7,
.span7 {
    width: 57.26495726495726% !important;
    *width: 57.21176577559556% !important;
    display: inline-block;
}

.row-fluid .span6,
.span6 {
    width: 48.717948717948715% !important;
    *width: 48.664757228587014% !important;
    display: inline-block;
    flex-wrap: wrap
}

.row-fluid .span5,
.span5 {
    width: 40.17094017094017% !important;
    *width: 40.11774868157847% !important;
    display: inline-block;
    flex-wrap: wrap
}

.row-fluid .span4,
.span4 {
    width: 31.623931623931625% !important;
    *width: 31.570740134569924% !important;
    display: inline-block;
    flex-wrap: wrap
}

.row-fluid .span3,
.span3 {
    width: 23.076923076923077% !important;
    *width: 23.023731587561375% !important;
    display: inline-block;
    flex-wrap: wrap
}

.row-fluid .span2,
.span2 {
    width: 14.52991452991453% !important;
    *width: 14.476723040552828% !important;
    display: inline-block;
    flex-wrap: wrap
}

.row-fluid .span1,
.span1 {
    width: 5.982905982905983% !important;
    *width: 5.929714493544281% !important;
    display: inline-block;
    flex-wrap: wrap
}

/*[class^="span"] > * {
    width: 100%;
}*/

[class^="span"] .header {
    display: block;
}

.form-inline:not(table) {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.menu-items-wrapper {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.menu-item {
    height: unset;
    min-height: 150px;
    padding: 20px !important;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .menu-item p {
        margin: 0 !important;
    }

.menu-items-wrapper .span {
    flex: 1;
    min-width: 300px;
}

.menu-items-wrapper .canvas-container {
    max-width: 350px;
}

th[align="center"] {
    text-align: center !important;
}

.popupDatepicker {
    background-image: url(../imgs/calender.png);
    background-position: calc(100% - 10px) 10px;
    background-size: 20px;
    background-repeat: no-repeat;
}

:root[dir="rtl"] .popupDatepicker {
    background-image: url(../imgs/calender.png);
    background-position: 5px 10px;
}

.ContentPlaceHolder1_FreeTextBox1_OuterTable td {
    border: none !important;
}

.table-bordered tr:not(.pagination) td table tr:first-child {
    background-color: rgba(79, 134, 247, .2);
}

.table-bordered tr:not(.pagination) td table th,
.table-bordered tr:not(.pagination) td table td {
    text-align: center;
    padding: 5px;
    border: 1px solid #000 !important;
}

.bigger-175 {
    padding: 5px;
    border-radius: 5px;
    color: #FFF;
}

.btn-success {
    color: #FFF;
}

.itemdiv {
    background-color: var(--main-color);
    padding: 30px 20px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 10px;
    margin: 10px;
}

    .itemdiv .body {
        position: static;
        color: var(--secondary-color);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .itemdiv .name,
    .itemdiv .name a {
        color: #178CAF;
        font-size: 16px;
    }

    .itemdiv .body .text {
        text-align: center;
        padding: 20px 0;
    }

    .itemdiv .body .row .span4 {
        display: flex;
        justify-content: center;
        gap: 5px;
    }

    .itemdiv .body .row .span3 {
        font-weight: 500;
    }

        .itemdiv .body .row .span3 .label {
            font-weight: bold;
        }


    .itemdiv .body .text .row > * {
        width: unset;
    }

    .itemdiv .time {
        width: max-content;
        position: absolute;
        bottom: 5px;
        left: 50%;
        display: flex;
        gap: 5px;
        transform: translateX(-50%);
        font-size: 12px;
    }

        .itemdiv .time .green {
            background-color: transparent !important;
        }

.profile-user-info {
    background-color: var(--main-color);
    padding: 10px;
    border-radius: 10px;
}

.ui-menu {
    background-color: #FFF;
    max-height: 350px;
    overflow-y: auto;
    border-radius: 5px;
}

    .ui-menu .ui-menu-item:hover {
        background-color: #4F86F7;
    }

    .ui-menu .ui-menu-item-wrapper {
        width: 100%;
        display: inline-block;
    }

    .ui-menu .ui-menu-item:hover .ui-menu-item-wrapper {
        color: #FFF;
    }

.select2-container--open .select2-dropdown {
    margin-left: -2px;
}

.profile-info-row {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.profile-info-name::after {
    content: ':';
    font-size: inherit;
}

.profile-info-value table div {
    padding: 10px;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
}

input[readonly="readonly"] {
    background-color: #eeeded ø!important;
    cursor: default;
}

input[class^="span"] {
    margin: 10px 2px;
}

table tr[style^="background"] td {
    color: #000;
}


.alert-errorM {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}

.alert-information {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}
.alert-attention {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

table {
    /*margin: auto;*/
    padding: unset;
}
.autocomplete_completionListElement {
    margin: 0px !important;
    background-color: inherit;
    color: windowtext;
    border: buttonshadow;
    border-width: 1px;
    border-style: solid;
    cursor: 'default';
    overflow: auto;
    height: 200px;    
    text-align: right;
    list-style-type: none;
    z-index: 100000;
}
/* AutoComplete highlighted item */
.autocomplete_highlightedListItem {
    background-color: #ffff99;
    color: black;
    padding: 1px;
    z-index: 100000;
}

/* AutoComplete item */
.autocomplete_listItem {
    background-color: window;
    color: windowtext;
    padding: 1px;
    z-index: 100000;
}
.btn-info:hover {
    background-color: rgba(79, 134, 247, .3);
    color: #4F86F7;
}
input[disabled] {
    opacity: .5;
}

.modal.hide.in {
    display: none;
}
.modalPopup {
    position: absolute;
    background-color: #FFFFFF;
    top: 100px;
    left: 15%;
    z-index: 2001;
    padding: 10px 10px 10px 30px;
    min-width: 400px;
    max-width: 1000px;
    max-height: 500px;
    -moz-box-shadow: 3.5px 4px 5px #000000;
    -webkit-box-shadow: 3.5px 4px 5px #000000;
    box-shadow: 3.5px 4px 5px #000000;
    border-radius: 5px;
    -moz-border-radiux: 5px;
    -webkit-border-radiux: 5px;
    border: 5px solid #CCCCCC;
    overflow: scroll;
}
.Overlay {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    overflow: hidden;
    padding: 0;
    margin: 0;
    background-color: #000;
    filter: alpha(opacity=50);
    opacity: 0.5;
    z-index: 1000;
}
.modalBackground {
    background-color: Black;
    filter: alpha(opacity=90);
    opacity: 0.8;
}
html[dir="ltr"] .collapse-sidebar .side-bar .nav-pills .nav-item:hover .dropdown-menu {
    display: block;
    position: absolute;
    inset: 0px auto auto auto;
    margin: 0px;
    transform: translate(80px, 0px);
}
.Subgrid {
    z-index: 3000;
    background-color: white;
    padding-right: 5px;
    padding-left: 5px;
}
    .Subgrid tr:first-child {
        background-color:white !important
    }
.icon-bars::before {
    content: '\f0c9';
    font-family: "Font Awesome 6 Pro";
    font-weight: 400;
    font-style: normal;
    color: inherit;
}
