/*start general*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
}

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #947db8;
    border-radius: 25px;
}

::-webkit-scrollbar-track {
    background-color: #fff;
}

@keyframes go-right {
    0% {
        transform: translateX(-30px);
    }

    100% {
        transform: translateX(0);
    }
}

@keyframes stretch {
    0% {
        transform: scale(0.5);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes day-stretch {
    0% {
        transform: scale(0.4);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.1);
    }
}

.stretch > div {
    animation: stretch 1.1s linear 0s alternate none running;
}

    .stretch > div:first-child {
        animation-duration: 0.5s;
    }

    .stretch > div:nth-child(2) {
        animation-duration: 0.7s;
    }

    .stretch > div:nth-child(3) {
        animation-duration: 0.9s;
    }

    .stretch > div:nth-child(4) {
        animation-duration: 1s;
    }

.items-go-right > div {
    animation: go-right 1.2s linear 0s alternate none running;
}

    .items-go-right > div:first-child {
        animation-duration: 0.5s;
    }

    .items-go-right > div:nth-child(2) {
        animation-duration: 0.9s;
    }

    .items-go-right > div:nth-child(3) {
        animation-duration: 1.1s;
    }

.go-right {
    animation: go-right 0.5s linear 0s alternate none running;
}

html:not(.login-html) {
    overflow: hidden;
}

body:not(.login-body) {
    background-image: linear-gradient(to right top, #a73c58, #5e498c, #703e7b, #483466, #0f0a1e);
}

.body-img {
    position: fixed;
    right: 15px;
    bottom: -150px;
    height: 400px;
    transform: translateX(43%);
    z-index: -1;
}

body .body-main-container {
    height: 100vh;
    padding: 20px 0 20px 25px;
    display: flex;
    overflow: hidden;
}

.toggle-sidebar {
    color: #fff;
    background-color: #a73c58;
    position: absolute;
    top: 5rem;
    right: 0;
    border: none;
    border-radius: 5px 0 0 5px;
    display: none;
    z-index: 3;
}

    .toggle-sidebar:hover {
        color: #a73c58;
        background-color: #fff;
        border: 2px solid #a73c58;
    }

    .toggle-sidebar:focus {
        box-shadow: 0 0 0 0.25rem rgb(167 60 88 / 25%);
    }

.side-bar {
    z-index: 2;
    flex-shrink: 0;
    padding: 5px;
}

    .side-bar .content-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .side-bar .logo {
        margin-bottom: 40px;
    }

        .side-bar .logo img {
            width: 120px;
            display: block;
            margin: 0 auto;
        }

    .side-bar .menu {
        padding: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: fit-content;
    }

        .side-bar .menu > li {
            margin-bottom: 30px;
            display: block;
        }

            .side-bar .menu > li > a {
                padding: 5px;
                display: inline-block;
                position: relative;
                border-radius: 5px;
                transition: 0.25s linear;
            }

                .side-bar .menu > li > a:hover {
                    background-color: #fff;
                }

        .side-bar .menu li.sidedrop > a {
            color: #fff;
            display: inline-flex;
            align-items: center;
            gap: 10px;
        }

        .side-bar .menu li svg:first-of-type {
            fill: #fff;
            width: 30px;
            height: 30px;
        }

        .side-bar .menu > li > a:hover svg {
            fill: #522d82;
            color: #522d82;
        }

    .side-bar .dropdown-menu .list {
        max-height: 175px;
    }

.main-content {
    flex: 1;
    min-width: 500px;
    overflow: hidden;
    background-color: #fff;
    border-radius: 25px;
}

    .main-content > .wrapper {
        padding: 20px;
        max-height: calc(100vh - 20px);
        overflow-y: auto;
        overflow-x: hidden;
    }

/*elements*/

a {
    text-decoration: none;
}

ul {
    list-style-type: none;
}

.btn,
input[type="submit"] {
    color: #fff;
    border-radius: 8px;
    font-weight: 500;
    outline-color: #522d82;
    transition: 0.35s ease-in-out;
}

    .btn:hover {
        box-shadow: 0 0.5em 0.5em -0.4em rgba(0, 0, 0, 0.5);
        transform: translateY(-0.25em);
    }

    .btn:focus,
    input[type="submit"]:focus {
        box-shadow: 0 0 0 0.25rem rgb(82 45 130 / 25%);
    }

    .btn.purple,
    input[type="submit"].purple {
        color: #fff !important;
    }

        .btn.purple:hover,
        input[type="submit"].purple:hover {
            color: #522d82 !important;
            background-color: #fff;
            border: 1px solid #522d82;
            transform: translateY(-3px);
        }

    .btn.purple-outline,
    input[type="submit"].purple-outline {
        color: #522d82 !important;
        background-color: #fff;
        border: 1px solid #522d82;
    }

        .btn.purple-outline:hover,
        input[type="submit"].purple-outline:hover {
            color: #fff !important;
            background-color: #522d82;
            transform: translateY(-3px);
        }

    .btn.orange,
    .btn.orange > a,
    input[type="submit"].orange {
        color: #fff !important;
    }

        .btn.orange:hover,
        input[type="submit"].orange:hover {
            color: #db4f39 !important;
            background-color: #fff;
            border: 1px solid #db4f39 !important;
            transform: translateY(-3px);
        }

            .btn.orange:hover a {
                color: #db4f39 !important;
            }

    .btn.light-orange,
    input[type="submit"].light-orange {
        color: #db4f39;
        outline-color: #db4f39;
    }

        .btn.light-orange:hover,
        input[type="submit"].light-orange:hover {
            background-color: #fff;
            border: 1px solid #db4f39;
            transform: translateY(-3px);
        }

        .btn.orange:focus,
        input[type="submit"].orange:focus,
        .btn.light-orange:focus,
        input[type="submit"].light-orange:focus {
            box-shadow: 0 0 0 0.25rem rgb(219 79 57 / 25%);
        }

span.notification {
    position: absolute;
    top: 0px;
    right: -10px;
    transform: translate(-25%, -25%);
    padding: 2px 7px;
    color: #fff;
    background-color: red;
    font-size: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    z-index: 2;
}

span.item-notification {
    width: fit-content;
    padding: 2px 9px;
    position: relative;
    right: unset;
    transform: none;
    font-size: 14px;
}

.user-img {
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid #522d82;
}

    .user-img img {
        height: 100%;
        width: 100%;
    }

/*colors*/

.color-purple {
    color: #522d82;
}

.purple {
    background-color: #522d82;
}

.light-purple {
    background-color: rgba(82, 45, 130, 0.25);
}

.color-red {
    color: #e23535 !important;
}

.red {
    background-color: #e23535;
}

.light-red {
    background-color: rgba(226, 53, 53, 0.25);
}

.color-orange {
    color: #db4f39;
}

.orange {
    background-color: #db4f39;
}

.color-light-orange {
    color: rgba(219, 79, 57, 0.2);
}

.light-orange {
    background-color: rgba(219, 79, 57, 0.2);
}

/*dropdowns*/

.dropdown-menu {
    min-width: 250px;
    background-color: #fff;
    padding: 0;
    z-index: 100;
    border-radius: 8px;
}

    .dropdown-menu .list {
        width: 100%;
        max-height: 250px;
        overflow-y: auto;
    }

.dropdown-item {
    color: #522d82;
    text-align: start;
}

    .dropdown-item:focus,
    .dropdown-item:active {
        color: #fff !important;
        background-color: #522d82;
    }

    .dropdown-item a:focus,
    .dropdown-item a:active {
        color: #fff !important;
        background-color: transparent;
    }

.dropdown-more .dropdown-item {
    text-align: center;
}

.dropdown-item a {
    color: #522d82 !important;
    width: 100%;
    display: block;
}

.dropdown-menu .dropdown-title {
    text-align: start;
    padding: 0.25em 1em;
    color: #522d82;
    border-bottom: 1px solid #522d82;
    font-weight: bold;
}

.dropdown-menu .read-all {
    width: 100%;
    background-color: #522d82;
    color: #fff;
    padding: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 0 0 8px 8px;
}

/*inputs*/

.multi-inputs {
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px 100px;
}

.five-inputs {
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px 30px;
}

.six-inputs {
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px 10px;
}

.double-inputs {
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 25px;
}

.three-inputs {
    width: 100%;
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 100px;
}

.six-inputs {
    grid-template-columns: repeat(6, 1fr);
    gap: 10px 25px;
}

.thirds-inputs {
    width: 100%;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 4fr 13fr;
    gap: 10px 25px;
}

.full-input {
    width: 100%;
    margin-bottom: 10px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px 0;
}

.input-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start !important;
    align-self: flex-end;
}

    .input-container input:not([type="radio"]):not([type="checkbox"]),
    .input-container textarea,
    .input-container .icon-input > input,
    select,
    .input-container .dropdown-toggle {
        flex: 3;
        color: #522d82;
        width: 100%;
        padding: 7px;
        border: 1px solid #c6c6c6;
        outline: none;
        border-radius: 8px;
        outline-color: transparent;
    }

.check-container,
.radio-container {
    flex: 2;
    text-align: center;
    display: flex;
    align-items: center;
    gap: 5px;
    color: #522d82;
}

    .check-container td,
    .radio-container td {
        padding: 0 5px;
    }

.radio label {
    display: flex;
    align-items: center;
    gap: 5px;
}

input[type="checkbox"],
input[type="radio"] {
    visibility: hidden;
    width: fit-content !important;
    margin-inline-end: 5px;
}

.check-container input[type="checkbox"],
.check-container input[type="radio"] {
    margin-inline-end: 8px;
}

input[type="checkbox"]::before,
input[type="radio"]::before {
    content: "";
    visibility: visible;
    width: 13px;
    height: 13px;
    padding: 3px 2px 2px;
    border: 2px solid #522d82;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 9px;
    font-weight: bold;
}

input[type="checkbox"]::before {
    border-radius: 2px;
    line-height: 0.1em;
}

input[type="radio"]::before {
    border-radius: 50%;
    font-size: 27px;
}

input[type="checkbox"]:checked::before {
    content: "✔";
    color: #fff;
    background-color: #522d82;
}

input[type="radio"]:checked:before {
    content: "•";
    color: #522d82;
}

.input-container input.popup {
    background: url("../imgs/grid-icon.png") no-repeat 10px center/15px;
}

.input-container .dropdown-toggle {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.input-container .dual-inputs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

    .input-container .dual-inputs input {
        flex: 1;
    }

.input-container > label {
    color: #522d82;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 500;
}

    .input-container > label > span {
        color: #db4f39 !important;
    }

.input-container .icon-input {
    position: relative;
    width: 100%;
}

    .input-container .icon-input .icon {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1;
        cursor: pointer;
    }

.multi-inputs .buttons-container {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: stretch;
    align-items: flex-end;
}

.buttons-container .buttons {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.buttons-container .btn {
    width: 100%;
}

.input-container .radio-container .radio {
    display: flex;
    align-items: center;
    gap: 5px;
}

html[dir="ltr"] .input-container .icon-input .icon {
    left: unset;
    right: 10px;
}

.input-container .icon-input .icon a {
    color: #999999;
}

.input-container .success {
    background-color: #09f911;
    width: 50%;
    margin-top: 10px;
    padding: 0 10px;
    border-radius: 10px;
}

/*tables*/

.table-container {
    width: 100%;
    margin-bottom: 15px;
}

.table-borderless {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 10px;
}

    .table-borderless tbody tr {
        box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 25px -5px, rgba(0, 0, 0, 0.05) 0px 10px 10px -5px;
    }

        .table-borderless tbody tr > :first-child {
            border-radius: 0 10px 10px 0;
        }

        .table-borderless tbody tr > :last-child {
            border-radius: 10px 0 0 10px;
        }

            .table-borderless tbody tr > :last-child:last-child {
                border-radius: 10px 0 0 10px;
            }

        .table-borderless tbody tr:not(.pagination):hover {
            background-color: rgb(248, 248, 248);
        }

    .table-borderless th,
    .table-borderless th a,
    .table-borderless td {
        color: #522d82;
        padding: 15px 10px;
        vertical-align: middle;
        white-space: nowrap;
    }

    .table-borderless thead th {
        font-size: 15px;
    }

    .table-borderless tbody th,
    .table-borderless tbody td {
        font-size: 16px;
        font-weight: 500;
    }

    .table-borderless th:last-child,
    .table-borderless td:last-child {
        text-align: center;
    }

table .operations.show,
.small-inputs-table .operations.show {
    padding: 10px 15px;
    min-width: unset;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.operations span,
.operations .btn {
    width: 40px;
    padding: 5px 8px;
    border-radius: 8px;
    font-size: 18px;
}

/*start nav*/

nav {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

    nav .buttons-side {
        display: flex;
        align-items: center;
        gap: 25px;
        flex-wrap: wrap;
    }

    nav .search .dropdown-search {
        display: none;
    }

    nav .buttons-side .search-box {
        width: 250px;
        padding: 0 3px 0 10px;
        display: flex;
        align-items: center;
        border: 1px solid #c6c6c6;
        border-radius: 5px;
    }

    nav .search .dropdown-search .search-box {
        border: none;
    }

    nav .buttons-side .search-box input {
        flex: 1;
        color: #522d82;
        padding: 7px;
        border: none;
        outline: none;
    }

        nav .buttons-side .search-box input::placeholder {
            color: #522d82;
        }

    nav .buttons-side .svg-inline--fa {
        color: #522d82;
    }

    nav .buttons-side .options {
        display: flex;
        align-items: center;
        gap: 15px;
    }

        nav .buttons-side .options .icon {
            display: flex;
            align-items: center;
            gap: 5px;
            cursor: pointer;
        }

            nav .buttons-side .options svg,
            nav .buttons-side .options .icon span {
                color: #522d82;
                fill: #522d82;
                font-size: 20px;
            }

        nav .buttons-side .options svg {
            width: 20px;
        }

:root[dir="ltr"] .ar-lang {
    display: none;
}

:root[dir="rtl"] .en-lang {
    display: none;
}

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 .dropdowns-side {
    display: flex;
    align-items: center;
    gap: 40px;
}

    nav .dropdowns-side .icons {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    nav .dropdowns-side .icon {
        position: relative;
    }

        nav .dropdowns-side .icon .svg-inline--fa {
            color: #522d82;
            font-size: 18px;
        }

    nav .buttons-side .options .icon,
    nav .dropdowns-side div.icon {
        padding: 5px;
        border-radius: 5px;
        transition: 0.25s linear;
    }

        nav .buttons-side .options .icon:hover,
        nav .dropdowns-side div.icon:hover {
            background-color: #522d82;
        }

            nav .buttons-side .options .icon:hover > svg,
            nav .buttons-side .options .icon:hover span,
            nav .dropdowns-side div.icon:hover > a svg {
                color: #fff;
                fill: #fff;
            }

    nav .dropdowns-side .user-dropdown a {
        color: #522d82;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    nav .dropdowns-side .user-img {
        width: 40px;
        height: 40px;
    }

/*end nav*/

.page-title p {
    color: #522d82;
    margin-bottom: 60px;
    font-weight: 500;
}

/*modal*/

.modal {
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-dialog {
    width: 75%;
    max-width: unset;
    margin: 0.5rem auto;
    transform: translateX(-80px) !important;
}

.modal-content {
    border-radius: 15px;
    border: none;
}

.modal-body {
    padding: 1rem;
    overflow-y: hidden;
}

.modal .modal-header {
    color: #fff;
    background-color: #522d82;
    padding: 0.5rem 1rem;
}

    .modal .modal-header .btn-close {
        margin: 0;
        background-color: rgba(255, 255, 255, 0.8);
        background-size: 12px;
    }

.modal .wrapper {
    max-height: 360px;
    padding: 1rem 0;
}

.modal .items {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
}

.modal .item {
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s linear;
}

    .modal .item:hover {
        transform: scale(1.05);
    }

        .modal .item:hover .item-img {
            background-color: #522d82;
        }

            .modal .item:hover .item-img svg {
                color: #FFF;
            }

.modal .item-img {
    background-color: #f7f7f9;
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.25) 5px 5px 10px;
}

    .modal .item-img svg {
        color: #7657a1;
        width: 45px;
        height: 45px;
    }

.modal .item-title {
    color: #7657a1;
    font-size: 18px;
    text-align: center;
}

.calModal .modal-header {
    background-color: #fff;
}

.calModal .tabs-header {
    background-color: #fff;
    width: 100%;
    margin: 0;
    display: flex;
    align-items: center;
}

    .calModal .tabs-header .btn {
        flex: 1;
        transform: none !important;
    }

.widget-box {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
}

    .widget-box .widget-header {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
        padding: 5px 10px;
    }

    .widget-box .widget-title {
        font-size: 22px;
        font-weight: bold;
        color: #522d82;
    }

    .widget-box .widget-header .buttons {
        display: flex;
        align-items: center;
        gap: 10px;
    }

        .widget-box .widget-header .buttons .btn {
            display: flex;
            align-items: center;
            gap: 5px;
        }

            .widget-box .widget-header .buttons .btn .svg-inline--fa {
                font-size: 22px;
            }

    .widget-box .widget-header .accordion-button {
        width: fit-content;
        padding: 5px;
        gap: 15px;
        background: none;
        color: #522d82;
    }

    .widget-box .widget-body {
        padding: 1rem 10px 0 10px;
    }

.multi-forms {
    background-color: var(--main-color);
    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;
        }

            .multi-forms .heading .form-title.active {
                color: #259bff;
                border-bottom: 1px solid #259bff;
            }

    .multi-forms .forms {
        min-height: 300px;
    }

        .multi-forms .forms > div:not(:first-child) {
            display: none;
        }

.main-content > .wrapper > .divider {
    width: 110%;
    margin: 2rem 0;
    transform: translateX(5%);
}

.alert-dismissible {
    padding: 15px 15px 15px 3.5rem;
}

    .alert-dismissible .btn-close {
        width: auto;
        height: auto;
        top: 50%;
        right: unset;
        left: 1rem;
        transform: translateY(-50%);
    }

.alert-warning {
    color: #000;
    background-color: #fcf8e3;
    border: none;
    border-radius: 12px;
}

    .alert-warning .btn-close {
        background-color: #eccf31;
    }

.alert-success {
    color: #000;
    background-color: #e3fce5;
    border: none;
    border-radius: 12px;
}

    .alert-success .btn-close {
        background-color: #31ec50;
    }

.sub-title {
    color: #522d82;
    margin-bottom: 15px;
    font-weight: bold;
}

.select-img {
    cursor: pointer;
}

    .select-img .img-container {
        background-color: #c5c5c5;
        width: 100px;
        height: 90px;
        margin-bottom: 10px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 8px;
    }

    .select-img p {
        color: #545454;
    }

.accounts-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.accounts-card {
    border-radius: 15px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    transition: 0.3s linear;
}

    .accounts-card:hover {
        transform: scale(1.008);
    }

    .accounts-card .card-header {
        background-color: #522d82;
        padding: 15px;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        border-radius: 15px 15px 0 0;
    }

        .accounts-card .card-header .icon svg {
            width: 60px;
            height: 60px;
        }

        .accounts-card .card-header .num {
            color: #fff;
            background-color: #db4f39;
            padding: 0 4px;
            position: absolute;
            top: 10px;
            left: 10px;
            border-radius: 8px;
        }

    .accounts-card .card-footer {
        background-color: #fff;
        border-radius: 0 0 15px 15px;
    }

        .accounts-card .card-footer .btn {
            width: 100%;
        }

.tabs-header {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
}

    .tabs-header .purple:hover {
        color: #fff !important;
        background-color: #522d82;
    }

.tabs-body > div {
    display: none;
}

.tabs-body .active {
    display: block;
}

/*end general*/

/*start login*/

.login .row > div {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    min-height: 100vh;
}

.login .img-side h2 {
    text-align: center;
    font-weight: bold;
}

.login .img-side img {
    width: 100%;
}

.login .form-side .wrapper {
    width: 70%;
    padding: 40px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

.login .form-side .logo {
    text-align: center;
}

    .login .form-side .logo img {
        width: 200px;
    }

.login .form-side h2 {
    font-weight: bold;
}

.login .form-side .input-container {
    margin-bottom: 15px;
}

.login .icon-input .svg-inline--fa {
    color: #9da4a4;
}

.login .pass-hidden .hide-pass {
    display: none;
}

.login .pass-shown .show-pass {
    display: none;
}

.login .form-side .input-container .remember {
    margin: 10px 0;
    display: flex;
    justify-content: space-between;
}

    .login .form-side .input-container .remember .check-box {
        display: flex;
        align-items: center;
        gap: 5px;
    }

    .login .form-side .input-container .remember a {
        color: #000;
        text-decoration: none;
    }

/*end login*/

/*start home*/

.home .user-row {
    display: flex;
    justify-content: space-between;
    /* gap: 80px; */
    flex-wrap: wrap;
    margin-bottom: 5px;
}

.home .user-info {
    width: 33%;
    background-image: linear-gradient(to right top, #a73c58, #5e498c, #703e7b, #483466, #0f0a1e);
    padding: 10px 15px 15px;
    position: relative;
    border-radius: 25px;
}

    .home .user-info .user-img {
        width: 100px;
        height: 100px;
        margin: auto;
        /* position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%); */
        border: 4px solid white;
    }

    .home .user-info .user-name {
        color: #fff;
        margin-bottom: 10px;
        font-weight: normal;
        text-align: center;
    }

    .home .user-info .details .detail {
        color: #522d82;
        background-color: #fff;
        padding: 15px;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 15px;
        flex-wrap: wrap;
        border-radius: 8px;
        transition: 0.3s linear;
    }

        .home .user-info .details .detail:hover {
            transform: translateY(-3px);
        }

        .home .user-info .details .detail .title {
            flex: 1;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .home .user-info .details .detail p {
            width: max-content;
            margin-bottom: 0;
        }

        .home .user-info .details .detail .title .text {
            font-weight: bold;
        }

        .home .user-info .details .detail .disc {
            flex: 1;
        }

.home .dates {
    /* flex: 1; */
    width: 60%;
}

    .home .dates .cal-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        gap: 20px;
    }

    .home .dates .title {
        color: #522d82;
        font-weight: bold;
    }

    .home .dates #calendar-wrapper {
        min-width: 350px;
    }

        .home .dates #calendar-wrapper .day {
            animation: day-stretch 0.8s linear 0s alternate none running;
        }

.home .tasks-row {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

    .home .tasks-row > div {
        flex: 1;
        min-width: 360px;
        background-color: #f7f7f9;
        padding: 15px;
        border-radius: 25px;
    }

        .home .tasks-row > div > .title {
            margin-bottom: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

            .home .tasks-row > div > .title h5 {
                color: #522d82;
                margin: 0;
                font-weight: bold;
            }

            .home .tasks-row > div > .title a {
                color: #522d82;
                text-decoration: underline;
            }

        .home .tasks-row > div ul,
        .home .tabs-body ul {
            padding: 0;
        }

.home .tabs-body ul {
    max-height: 300px;
    padding: 0 10px;
    overflow-y: auto;
}

.home .tabs-body .tasks .header {
    padding: 10px;
}

.home .tasks-row > div ul li,
.home .tabs-body ul li {
    background-color: #fff;
    padding: 15px;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.2s linear;
}

.home .tabs-body ul li {
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
}

    .home .tabs-body ul li.active {
        background-color: rgba(82, 45, 130, 0.2);
    }

    .home .tasks-row > div ul li:hover,
    .home .tabs-body ul li:hover {
        transform: scale(1.008);
    }

.home .tabs-body .tasks .header,
.home .tabs-body ul li {
    display: grid;
    grid-template-columns: 4fr 1fr 1fr;
}

    .home .tasks-row > div ul li .point,
    .home .tabs-body ul li .point {
        width: 8px;
        height: 8px;
        background-color: #522d82;
        margin-inline-end: 15px;
        display: inline-block;
        border-radius: 50%;
    }

    .home .tasks-row > div ul li p,
    .home .tabs-body ul li p,
    .home .tabs-body .tasks .header p {
        color: #522d82;
        margin: 0;
        display: inline-block;
    }

    .home .tabs-body .tasks .header p {
        font-weight: 600;
    }

.home .tasks-row > div ul li .title .text {
    font-size: 20px;
}

.home .tasks-row > div ul li .time {
    font-size: 16px;
}

/*end home*/

/*start projects*/

.projects .projects-cards {
    margin-bottom: 35px;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
}

    .projects .projects-cards .card {
        background-color: #fff;
        padding: 30px 25px 10px;
        justify-content: space-between;
        border: none;
        border-radius: 20px;
        box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
        transition: 0.3s linear;
    }

        .projects .projects-cards .card:hover {
            transform: scale(1.03);
        }

        .projects .projects-cards .card .icon {
            width: 60px;
            height: 60px;
            background-color: #ded7e7;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin: 0 auto 10px;
        }

            .projects .projects-cards .card .icon svg {
                width: 30px;
                height: 37px;
            }

        .projects .projects-cards .card .disc {
            color: #522d82;
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 0 auto 25px;
        }

            .projects .projects-cards .card .disc .num {
                margin: 0;
                font-size: 32px;
            }

            .projects .projects-cards .card .disc .status {
                margin: 0;
                font-size: 22px;
            }

        .projects .projects-cards .card .more {
            border-radius: 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

.projects .accordion .accordion-item {
    padding: 0 0.5rem;
    margin-bottom: 20px;
    border: none;
    border-radius: 20px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 3px 10px 0px;
}

.accordion-button {
    border-radius: 12px;
}

    .accordion-button:not(.collapsed) {
        color: #522d82;
        background-color: #fff;
        box-shadow: none;
    }

    .accordion-button:focus {
        border: none;
        box-shadow: none;
    }

.projects .accordion .accordion-item .accordion-button::after {
    margin: unset;
    margin-inline-start: auto;
}

.projects .accordion .accordion-item .accordion-button svg {
    width: 25px;
    height: 25px;
    margin-inline-end: 15px;
}

.projects .accordion .accordion-item .accordion-button img {
    width: 25px;
    height: 25px;
    margin-inline-end: 15px;
}

.projects .accordion .accordion-item .accordion-button h5 {
    color: #522d82;
    margin: 0;
}

.projects .accordion .accordion-body {
    padding: 1rem 2rem;
}

.projects .accordion .accordion-items .item-wrapper {
    padding: 10px;
}

.projects .accordion .accordion-items .item {
    padding: 10px 25px;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 3px 10px 0px;
    transition: 0.3s linear;
}

    .projects .accordion .accordion-items .item:hover {
        transform: scale(1.01);
    }

    .projects .accordion .accordion-items .item::before {
        content: "";
        background-color: #522d82;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 10px;
    }

:root[dir="ltr"] .projects .accordion .accordion-items .item::before {
    right: unset;
    left: 0;
}

.projects .accordion .accordion-items .item p {
    color: #522d82;
    margin: 0;
    font-size: 16px;
    font-weight: 500;
}

/*end projects*/

/*start statistics*/

.statistics {
    max-height: 550px;
}

.statistics-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 70px;
}

.statistics .title {
    padding: 15px;
    border-radius: 10px;
}

    .statistics .title p {
        color: #fff;
        margin: 0;
    }

.statistics .container {
    padding: 20px 0;
}

.statistics .statistic {
    padding: 15px;
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px -10px;
    transition: 0.4s linear;
}

    .statistics .statistic:hover {
        background-color: rgb(248, 248, 248);
        transform: translateY(1px);
    }

    .statistics .topic-statistic,
    .statistics .total,
    .statistics .statistic .num {
        font-weight: bold;
    }

.statistics .total {
    border: 1px solid #522d82;
}

.statistics .statistic p {
    color: #522d82;
    margin: 0;
}

/*end statistics*/

/*start files*/

.files {
    margin: 40px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 75px;
}

    .files .input-container {
        margin-bottom: 30px;
    }

.input-container input[type="file"] {
    padding: 3px !important;
    border: none !important;
}

.files .img-container {
    width: 95%;
    height: 150px;
    background-color: #c6c5c5;
    margin-bottom: 10px;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .files .img-container img {
        max-width: 90%;
        max-height: 90%;
    }

/*end files*/

/*start calc-steps*/

.calc-steps {
    margin-bottom: 50px;
}

    .calc-steps .steps-title {
        margin-bottom: 40px;
    }

    .calc-steps .step {
        margin-bottom: 20px;
    }

        .calc-steps .step .title {
            margin-bottom: 10px;
        }

/*end calc-steps*/

/*start dates*/

.dates-tables {
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

    .dates-tables .side {
        height: fit-content;
        padding: 15px;
        box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
    }

        .dates-tables .side table {
            margin: 0;
        }

/*end dates*/

/*start sales*/

.sales .wrapper {
    padding: 20px;
}

.sales .content-wrapper {
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow-y: auto;
}

.sales .widget-box {
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
}

    .sales .widget-box .widget-title {
        color: #522d82;
    }

    .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 form .table-container {
    overflow-x: auto;
}

.sales .widget-box .title .buttons {
    display: flex;
    align-items: center;
}

.sales .widget-box .title span {
    font-size: 18px;
    font-weight: bold;
}

.sales .btn.purple {
    color: #fff;
}

.sales .inputs .icon-input-container {
    width: 100%;
}

.sales .table-responsive .inputs,
.sales .table-responsive .table-container {
    width: 100%;
}

.sales .table-borderless tr {
    margin-bottom: 8px;
    border-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 5px 15px -10px;
}

.sales table th,
.sales table td {
    min-width: 60px;
    font-size: 14px;
    text-align: center;
    vertical-align: middle;
}

    .sales table td > span {
        border-radius: 10px;
        color: #522d82;
        border: 1px solid #522d82;
        outline: none;
        padding: 2px 10px;
    }

.sales table .edit-delete {
    width: fit-content;
    color: #e23535;
    background-color: rgba(226, 53, 53, 0.3);
    padding: 5px 8px;
    margin: 0 auto;
    border-radius: 5px;
    font-size: 16px;
}

.sales .inputs-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: flex-end;
    gap: 20px;
}

    .sales .inputs-container .inputs {
        display: flex;
        align-items: flex-end;
        gap: 10px;
    }

        .sales .inputs-container .inputs label {
            color: #522d82;
            font-weight: bold;
        }

        .sales .inputs-container .inputs input {
            color: #522d82;
            font-size: 18px;
            border-color: #522d82;
        }

            .sales .inputs-container .inputs input::placeholder {
                color: #522d82;
            }

        .sales .inputs-container .inputs .btn {
            padding: 8px;
            flex: 1;
        }

.sales .multi-forms .forms-title h5 {
    font-weight: bold;
}

.sales .multi-forms .heading .form-title {
    border: 1px solid rgba(112, 112, 112, 0.3);
}

    .sales .multi-forms .heading .form-title.active {
        color: var(--secondary-color);
    }

.sales .multi-forms .items {
    padding: 20px 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

    .sales .multi-forms .items .item {
        padding: 0;
        display: grid;
        position: relative;
        border: 1px solid #522d82;
        border-radius: 20px;
        box-shadow: 0px 10px 14px 3px rgba(0, 64, 128, 0.2);
    }

        .sales .multi-forms .items .item .item-img {
            color: #522d82;
            background-color: #fff;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 26px;
            border-radius: 20px 20px 0 0;
            border-bottom: 1px solid #522d82;
            background-size: cover;
        }

        .sales .multi-forms .items .item:hover {
            transition: transform 0.2s;
            transform: scale(1.05);
            box-shadow: 0px 10px 14px 3px rgba(0, 64, 128, 0.2);
        }

            .sales .multi-forms .items .item:hover .item-title {
                white-space: normal;
            }

        .sales .multi-forms .items .item .item-title {
            padding: 5px;
            color: #522d82;
            background-color: #fff;
            font-size: 10px;
            font-weight: bold;
            border-radius: 0 0 20px 20px;
            text-align: center;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .sales .multi-forms .items .item .item-num {
            position: absolute;
            background-color: #fff;
            left: 5px;
            top: 5px;
            width: 50px;
            color: #522d82;
            padding: 1px;
            font-size: 10px;
            text-align: center;
            border-radius: 10px;
            z-index: 1;
        }

/* .sales .multi-forms .items .item.active .item-num, .sales .multi-forms .items .item:hover .item-num{
    background-color: #522D82;
    color: #FFF;
} */

.sales .modal .inputs .input-container {
    width: 330px;
}

.sales .modal .button-container {
    width: 100%;
}

    .sales .modal .button-container button {
        padding: 5px 40px;
    }

/*end sales*/

/*start rate*/

.rate-table {
    margin-bottom: 20px;
}

    .rate-table thead th:nth-child(3),
    .rate-table tbody td:nth-child(3) {
        text-align: center;
        padding-left: 40px;
    }

    .rate-table tbody tr:last-child {
        background-color: rgba(184, 169, 207, 0.4);
        border-radius: 10px;
    }

        .rate-table tbody tr:last-child th {
            border-radius: 0 10px 10px 0;
        }

        .rate-table tbody tr:last-child td:nth-child(2) {
            text-align: end;
        }

        .rate-table tbody tr:last-child td:last-child {
            border-radius: 10px 0 0 10px;
        }

    .rate-table .see-more {
        display: flex;
        align-items: center;
        gap: 5px;
    }

        .rate-table .see-more p {
            width: 300px;
            white-space: normal;
        }

        .rate-table .see-more .more {
            display: none;
        }

        .rate-table .see-more .more-btn {
            cursor: pointer;
        }

        .rate-table .see-more.text-shown .more-btn {
            transform: rotate(180deg);
        }

        .rate-table .see-more.text-shown .dotes {
            display: none;
        }

    .rate-table .range input {
        width: 100%;
        margin-top: -10px;
    }

    .rate-table .range .nums {
        display: flex;
        justify-content: space-between;
        transform: translateY(-12px);
        font-size: 12px;
    }

input[type="range"] {
    height: 22px;
    margin: 5px 0 0;
    width: 100%;
}

    input[type="range"]::-webkit-slider-runnable-track {
        width: 100%;
        height: 4px;
        cursor: pointer;
        background: #522d82;
        border-radius: 0px;
    }

    input[type="range"]::-webkit-slider-thumb {
        height: 15px;
        width: 15px;
        border-radius: 8px;
        background: #522d82;
        cursor: pointer;
        margin-top: -4px;
    }

/*end rate*/

/*start rate-forms*/

.rate-forms {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
}

.rate-form {
    padding: 5px;
    display: flex;
    gap: 15px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
    transition: 0.3s linear;
    border: 1px solid #522d82;
}

    .rate-form:hover {
        transform: translateY(-3px);
        background-color: #522d82;
    }

        .rate-form:hover a {
            color: #fff !important;
        }

    .rate-form .svg-inline--fa {
        font-size: 28px;
    }

    .rate-form p {
        margin: 0;
        font-size: 14px;
    }

/*end rate-forms*/

/*start team*/

.team {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

    .team .teammate {
        padding: 15px;
        border-radius: 10px;
        box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
        transition: 0.3s linear;
    }

        .team .teammate:hover {
            transform: scale(1.02);
        }

        .team .teammate .img-container {
            color: #fff;
            background-color: #b3aeae;
            width: 50px;
            height: 50px;
            margin: 0 auto 20px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }

        .team .teammate p {
            text-align: center;
            font-weight: 500;
        }

        .team .teammate .buttons-container {
            padding: 0;
        }

/*end team*/

/*start self-service*/

.two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.self-service .widget-header .widget-title {
    font-size: 20px;
}

.self-service .widget-header .hide-nums .svg-inline--fa {
    font-size: 16px !important;
}

.self-service .table-responsive {
    margin-bottom: 1rem;
}

.self-service table {
    margin-bottom: 0;
}

.self-service .btn {
    padding: 0.275rem 0.5rem;
}

.self-service .user-info .user-img {
    width: 100px;
    height: 100px;
    margin: 0 auto 10px;
    border-radius: 50%;
}

.self-service .user-info .user-name {
    text-align: center;
    font-size: 22px;
}

.self-service .user-info .statistic {
    justify-content: space-evenly;
    font-weight: 500;
}

    .self-service .user-info .statistic > p {
        flex: 1;
    }

.self-service .notifications .total {
    font-weight: normal;
    padding: 10px;
}

    .self-service .notifications .total .disc {
        font-size: 24px;
    }

.self-service .prepare .widget-body {
    flex-direction: column;
}

.self-service .prepare .content {
    /* width: fit-content; */
    padding: 10px;
    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;
}

    .self-service .prepare .enter-exit p {
        margin-bottom: 0.5rem;
    }

    .self-service .prepare .enter-exit .btn {
        width: 100%;
        margin: 10px 0;
        font-weight: bold;
    }

    .self-service .prepare .enter-exit .enter {
        background-color: rgba(53, 199, 36, 0.1);
        color: #35c724;
    }

    .self-service .prepare .enter-exit .exit {
        background-color: rgba(247, 79, 79, 0.1);
        color: #f74f4f;
    }

.self-service .prepare .location {
    display: flex;
    gap: 10px;
}

    .self-service .prepare .location .location-title {
        font-weight: bold;
    }

.self-service .prepare .content > .btn {
    color: #fff;
    background-color: #ec0e06;
    width: 100%;
    padding: 5px;
    border-radius: 10px;
}

.self-service .benefits .disc {
    font-weight: bold;
}

.self-service .prepare .heading h5 {
    font-weight: bold;
}

.self-service .attendees table th,
.self-service .attendees table td {
    font-weight: normal;
}

    .self-service .attendees table th .svg-inline--fa {
        font-size: 18px;
    }

    .self-service .attendees table td:nth-child(2) {
        color: #35c724;
    }

    .self-service .attendees table td:last-child {
        color: #f71a13;
    }

.self-service table .bold {
    font-weight: bold;
}

.self-service .orders table td:last-child .btn,
.self-service .teammates .btn {
    padding: 2px 10px;
}

.self-service .percent {
    display: flex;
    align-items: center;
    gap: 20px;
}

    .self-service .percent .num {
        color: #dc3545;
    }

    .self-service .percent .progress {
        width: 150px;
        height: 0.8rem;
    }

.self-service .teammates .info {
    display: flex;
    align-items: center;
    gap: 10px;
}

    .self-service .teammates .info .user-img {
        width: 40px;
        height: 40px;
    }

    .self-service .teammates .info .text {
        font-size: 16px;
    }

        .self-service .teammates .info .text .name {
            margin-inline-start: 10px;
        }

.self-service .salary table th,
.self-service .salary table td {
    text-align: center;
}

.self-service .salary .btn {
    padding: 5px;
}

/*circular progress bar*/

.self-service .reviews .percent {
    position: relative;
    width: 82px;
    height: 82px;
    border-radius: 50%;
    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 {
                color: #522d82;
                font-size: 24px;
                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: 10;
                stroke-dasharray: 440;
                stroke-dashoffset: 440;
                stroke-dashoffset: calc(440 - (220 * 74) / 100);
                stroke: #522d82;
            }

/*circular progress bar*/

.self-service .reviews .rating {
    display: flex;
    gap: 20px;
    transform: scale(0.9);
}

    .self-service .reviews .rating .text p {
        font-size: 20px;
    }

/*end self-service*/

/*start charts*/

.charts .chart {
    width: 100% !important;
    height: auto !important;
}

/*end charts*/

/*start advance*/

.advance .steps-wrapper {
    padding: 10px 0;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
    overflow-x: scroll;
}

.advance .steps {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

    .advance .steps .step {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        width: 200px;
    }

        .advance .steps .step.disabled {
            opacity: 0.5;
        }

        .advance .steps .step .step-line {
            flex: 1;
            border: 1px solid #522d82;
        }

        .advance .steps .step:first-child {
            width: fit-content;
        }

            .advance .steps .step:first-child .step-line {
                display: none;
            }

        .advance .steps .step .step-body {
            color: #fff;
            background-color: #522d82;
            padding: 10px 20px;
            border-radius: 10px;
            font-size: 18px;
        }

        .advance .steps .step .step-body {
            font-size: 14px;
        }

.advance .procedures-container {
    padding-top: 10px;
}

    .advance .procedures-container .label {
        color: #522d82;
    }

.advance .procedures {
    padding: 10px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

    .advance .procedures .procedure {
        width: 120px;
        height: 35px;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid;
        border-radius: 5px;
        font-weight: bold;
    }

.advance .tasks {
    padding: 10px 0;
}

    .advance .tasks .task {
        display: flex;
        gap: 10px;
    }

        .advance .tasks .task .complete {
            display: flex;
            flex-direction: column;
            align-items: center;
        }

.purple-circle {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-inline-end: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

    .purple-circle .inner-circle {
        display: block;
        width: 10px;
        height: 10px;
        border-radius: 50%;
    }

.advance .light-purple {
    background-color: rgba(82, 45, 130, 0.1);
}

.advance .tasks .task .complete .circle {
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid #522d82;
    border-radius: 50%;
}

.advance .tasks .task .complete .svg-inline--fa {
    color: #522d82;
}

.advance .tasks .task .complete .line {
    flex: 1;
    width: 3px;
    background-color: #522d82;
}

.advance .tasks .task:last-child .complete .line {
    display: none;
}

.advance .tasks .task .task-body-wrapper {
    flex: 1;
    padding-bottom: 30px;
}

.advance .tasks .task .task-body {
    padding: 20px;
    border-radius: 10px;
    background-color: #f9f9f9;
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
}

    .advance .tasks .task .task-body .task-item {
        display: flex;
        align-items: center;
        gap: 10px;
        color: #522d82;
    }

        .advance .tasks .task .task-body .task-item .blue-circle {
            margin: 0;
        }

        .advance .tasks .task .task-body .task-item .employee-name {
            padding: 4px 7px;
            border-radius: 5px;
        }

        /* .advance .tasks .task .task-body .task-item .employee-title {
  font-weight: bold;
} */

        .advance .tasks .task .task-body .task-item .procedure {
            display: flex;
            gap: 5px;
        }

            /* .advance .tasks .task .task-body .task-item .procedure .procedure-title {
  font-weight: bold;
} */

            .advance .tasks .task .task-body .task-item .procedure .procedure-item {
                padding: 0 35px;
                border: 1px solid;
                border-radius: 5px;
            }

    .advance .tasks .task .task-body .message-box {
        background-color: rgba(36, 36, 36, 0.05);
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        border-radius: 5px;
    }

    .advance .tasks .task .task-body .icon {
        padding: 5px;
    }

        .advance .tasks .task .task-body .icon .svg-inline--fa {
            font-size: 18px;
            color: #707070;
        }

    .advance .tasks .task .task-body .message-box textarea {
        height: 100%;
        padding: 10px 5px;
        flex: 1;
        background-color: transparent;
        border: none;
        outline: none;
        min-width: 200px;
    }

    .advance .tasks .task .task-body .message-box .btn {
        padding: 8px 20px;
    }

    .advance .tasks .task .task-body .message-item {
        align-items: flex-start;
    }

    .advance .tasks .task .task-body .task-item .circle {
        width: 35px;
        height: 35px;
        border: 1px solid #522d82;
        border-radius: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .advance .tasks .task .task-body .message-item .svg-inline--fa {
        color: #522d82;
    }

    .advance .tasks .task .task-body .task-item .message-body {
        background-color: rgba(36, 36, 36, 0.03);
        padding: 5px 10px 10px;
        padding-inline-end: 75px;
        border-radius: 5px;
    }

        .advance .tasks .task .task-body .task-item .message-body .employee-info {
            margin-bottom: 20px;
        }

            .advance .tasks .task .task-body .task-item .message-body .employee-info .employee-name {
                font-size: 12px;
            }

            .advance .tasks .task .task-body .task-item .message-body .employee-info .message-date {
                font-size: 13px;
                color: #303030;
            }

                .advance .tasks .task .task-body .task-item .message-body .employee-info .message-date .icon {
                    padding: 0;
                }

        .advance .tasks .task .task-body .task-item .message-body .message-content {
            font-size: 16px;
            font-weight: 500;
        }

    .advance .tasks .task .task-body .date {
        position: absolute;
        top: 10px;
        left: 10px;
        color: #242424;
        font-size: 14px;
        display: flex;
        gap: 5px;
    }

        .advance .tasks .task .task-body .date .icon {
            padding: 0;
        }

            .advance .tasks .task .task-body .date .icon .svg-inline--fa {
                font-size: 12px;
            }

    .advance .tasks .task .task-body .message {
        position: absolute;
        bottom: 10px;
        left: 15px;
    }

        .advance .tasks .task .task-body .message .svg-inline--fa {
            color: #522d82;
        }

/*end advance*/

/*start custom*/

td input {
    color: #522d82;
    padding: 7px 3px;
    border: 1px solid #c6c6c6;
    outline: none;
    border-radius: 8px;
    outline-color: transparent;
}

td textarea {
    color: #522d82;
    width: 200px !important;
    padding: 3px;
    border: 1px solid #c6c6c6;
    outline: none;
    border-radius: 8px;
    outline-color: transparent;
}

.borderless-container table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 1em;
}

    .borderless-container table tbody tr {
        margin-bottom: 15px;
        border-radius: 8px;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 25px -5px, rgba(0, 0, 0, 0.05) 0px 10px 10px -5px;
    }

        .borderless-container table tbody tr:not(.pagination):hover {
            background-color: rgb(248, 248, 248);
        }

    .borderless-container table th,
    .borderless-container table td {
        color: #522d82;
        padding: 15px 5px;
        vertical-align: middle;
        white-space: nowrap;
    }

    .borderless-container table th {
        font-weight: 600;
    }

    .borderless-container table tbody th,
    .borderless-container table tbody td {
        font-weight: 500;
    }

    .borderless-container table th:last-child,
    .borderless-container table td:last-child {
        text-align: center;
    }

select {
    flex: 1;
}

.select2 {
    flex: 1;
    margin: 0 !important;
}

.select2 {
    width: 100% !important;
    border-radius: 8px !important;
}

.select2-container--default .select2-selection--single {
    height: auto !important;
    border: none !important;
    border-radius: 8px !important;
}

.select2-selection__rendered {
    color: #522d82 !important;
    min-height: 40px;
    padding: 4px 17px 4px 27px;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
    font-weight: normal;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    top: 50% !important;
    left: 7px !important;
    transform: translateY(-50%);
}

.select2-container--open .select2-dropdown--below {
    transform: translateY(-10px);
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-radius: 8px;
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    color: #1e2125 !important;
    background-color: #e9ecef !important;
}

.select2-container--open {
    z-index: 2000 !important;
}

.calendars-ctrl {
    background-color: #522d82 !important;
}

    a.calendars-cmd,
    .calendars-ctrl .calendars-cmd {
        text-align: center !important;
    }

        .calendars-ctrl .calendars-cmd:hover {
            background-color: #db4f39 !important;
        }

html[dir="rtl"] .btn-group .btn:first-child {
    border-radius: 0 8px 8px 0;
}

html[dir="rtl"] .btn-group .btn.dropdown-toggle {
    border-radius: 8px 0 0 8px !important;
}

html[dir="rtl"] .btn-group .btn:last-child {
    border-radius: 8px 0 0 8px !important;
}

html[dir="rtl"] .btn-group .btn.dropdown-toggle:first-child {
    border-radius: 8px !important;
}

input[readonly="readonly"] {
    background-color: #eeeded;
    cursor: default;
}

.oper-inputs {
    grid-template-columns: repeat(10, 1fr);
    gap: 10px 15px;
}

.span1 {
    grid-column: span 1 !important;
}

.span2 {
    grid-column: span 2 !important;
}

.span3 {
    grid-column: span 3 !important;
}

.span4 {
    grid-column: span 4 !important;
}

.span5 {
    grid-column: span 5 !important;
}

.span6 {
    grid-column: span 6 !important;
}

.span7 {
    grid-column: span 7 !important;
}

.span8 {
    grid-column: span 8 !important;
}

.span9 {
    grid-column: span 9 !important;
}

.span11 {
    grid-column: span 11 !important;
}

.badge {
    color: #fff;
    background-color: red;
    border-radius: 50%;
}

.tree-container {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 20px;
}

    .tree-container .tree {
        background-color: #fff;
        padding: 15px;
        border-radius: 15px;
        box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
    }

    .tree-container .widget-box {
        margin: 0;
        height: fit-content;
    }

    .tree-container .multi-inputs {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 150px;
    }

.pagination,
.pagination:hover {
    margin: 0 !important;
    background-color: transparent;
    box-shadow: none !important;
}

    .pagination > td {
        width: 100%;
        padding: 0 !important;
        background-color: transparent;
        box-shadow: none;
    }

    .pagination tr {
        margin: 0 !important;
    }

    .pagination table td {
        padding: 5px 0;
    }

        .pagination table td span {
            color: #fff;
            background-color: #522d82;
            width: 100%;
            height: 100%;
            padding: 7px 10px;
            font-size: 16px;
            border-radius: 6px;
        }

        .pagination table td a {
            color: #522d82;
            padding: 7px 10px;
            display: inline-block;
            font-size: 16px;
            border-radius: 6px;
        }

            .pagination table td a:hover {
                color: #fff;
                background-color: #522d82;
            }

table.table-borderless td {
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
}

table.table-borderless .pagination td {
    overflow: unset;
}

table .text-shown {
    overflow-wrap: break-word;
    white-space: normal !important;
}

.permission-table td,
.profile-table td {
    padding: 5px;
}

.operations-box .main-inputs {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 0;
}

    .operations-box .main-inputs .input-container {
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: center !important;
        align-self: center;
        gap: 0;
    }

        .operations-box .main-inputs .input-container.span2 {
            grid-template-columns: 1fr 5fr;
        }

        .operations-box .main-inputs .input-container label {
            margin: 0;
            text-align: center;
        }

.input-container .two-inputs {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr;
    align-items: center;
    gap: 10px;
}

.operations-box .second-form {
    grid-template-columns: repeat(2, 1fr);
}

.operations-box .small-inputs {
    grid-template-columns: repeat(12, 1fr);
    gap: 10px 3px;
}

    .operations-box .small-inputs input:not([type="submit"]) {
        padding: 7px 3px !important;
    }

    .operations-box .small-inputs .input-container {
        grid-column: span 2;
    }

    .operations-box .small-inputs.second-form .input-container {
        grid-column: span 1;
    }

    .operations-box .small-inputs .buttons-container {
        grid-column: 12;
    }

    .operations-box .small-inputs.second-form .buttons-container .btn {
        width: 100%;
    }

    .operations-box .small-inputs.second-form label {
        width: 100%;
        text-align: center;
    }

.operations-box .credit-inputs :first-child {
    grid-column: 5 / span 2 !important;
}

.operations-box .credit-inputs .input-container {
    flex-direction: row;
    align-items: center !important;
}

    .operations-box .credit-inputs .input-container label,
    .operations-box .credit-inputs .input-container input {
        flex: 1;
        margin: 0;
        text-align: center;
    }

.operations-box .radio-container table td {
    padding: 0 5px;
}

.operations-box .small-inputs .input-container > span {
    order: 0;
}

.operations-box .small-inputs .input-container > label {
    order: 1;
}

.operations-box .small-inputs .input-container > input,
.operations-box .small-inputs .input-container > textarea,
.operations-box .small-inputs .input-container > select,
.operations-box .small-inputs .input-container > .select2 {
    order: 2;
}

.operations-box .input-container .check-container:first-child {
    justify-content: center;
}

.nested-table {
    padding: 10px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
}

    .nested-table .table-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

        .nested-table .table-header .id {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .nested-table .table-header p {
            margin: 0;
        }

/* .row {
    --bs-gutter-x: 0;
} */

.RadComboBox {
    color: #522d82 !important;
    width: 100% !important;
}

    .RadComboBox input {
        width: 100% !important;
        border: none !important;
    }

    .RadComboBox label {
        color: #522d82;
    }

nav .buttons-side .users a {
    color: #522d82;
    font-weight: 500;
}

nav .fiscal-year {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

    nav .fiscal-year p {
        color: #522d82;
        margin: 0;
        font-weight: 500;
    }

    nav .fiscal-year select {
        min-width: 100px;
    }

.accordion-item {
    border: none;
}

.accordion-button::after {
    margin-left: unset;
    margin-inline-start: auto;
}

input[ondblclick] {
    background-image: url(../imgs/grid-icon.png);
    background-position: calc(100% - 7px) center;
    background-size: 16px;
    background-repeat: no-repeat;
}

:root[dir="rtl"] input[ondblclick] {
    background-position: 9px center;
}

.popupDatepicker {
    background-image: url(../imgs/date-icon.png);
    background-position: calc(100% - 10px) center;
    background-size: 20px;
    background-repeat: no-repeat;
}

:root[dir="rtl"] .popupDatepicker {
    background-position: 9px center;
}

.input-container {
    color: #522d82;
    font-weight: 500;
}

input[type="file"]::-webkit-file-upload-button {
    color: #fff;
    background-color: #522d82;
    padding: 0.375rem 0.75rem;
    border: 1px solid #522d82;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.2s linear;
}

    input[type="file"]::-webkit-file-upload-button:hover {
        color: #522d82;
        background-color: #fff;
        border: 1px solid #522d82;
    }

.ss-rate-forms {
    grid-template-columns: repeat(6, 1fr);
}

    .ss-rate-forms .rate-form {
        justify-content: space-between;
        align-items: center;
    }

        .ss-rate-forms .rate-form a {
            color: #522d82;
            display: flex;
            align-items: center;
            gap: 10px;
        }

.page-title .btn {
    margin-inline-end: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 15px;
}

:root[dir="ltr"] .page-title .btn svg {
    transform: rotateY(180deg);
}

.page-title p a {
    color: #ff432e;
}

    .page-title p a:hover {
        color: #522d82;
    }

.page-title p > span:last-child {
    color: #522d82;
}

.page-title span.arrow {
    margin: 0 10px;
}

    .page-title span.arrow .svg-inline--fa {
        font-size: 14px;
    }

.small-inputs-table {
    margin-bottom: 20px;
}

    .small-inputs-table .t-header {
        padding: 10px;
        border-radius: 8px;
        margin-bottom: 0;
        box-shadow: rgba(0, 0, 0, 0.05) 0px 15px 25px -5px, rgba(0, 0, 0, 0.05) 0px 10px 10px -5px;
    }

    .small-inputs-table .t-row {
        margin: 0;
    }

    .small-inputs-table td {
        padding: 10px;
    }

.inner-table {
    overflow-x: auto;
}

.rcbInner {
    padding: 7px 2em 7px 10px !important;
    border-radius: 8px !important;
    border-color: #c6c6c6 !important;
}

.rcbSlide {
    transform: translateY(-6px);
}

.RadComboBox_Default .rcbActionButton {
    border: none !important;
    color: #acacac !important;
    background-color: transparent !important;
    background-image: unset !important;
}

/*end custom*/

/*start english*/

html[dir="ltr"] body:not(.login-body) {
    background-image: linear-gradient(to left top, #a73c58, #5e498c, #703e7b, #483466, #0f0a1e);
}

html[dir="ltr"] .fa-chevron-left,
html[dir="ltr"] .fa-chevron-right {
    transform: rotate(180deg);
}

html[dir="ltr"] .modal-dialog {
    transform: translateX(80px) !important;
}

html[dir="ltr"] .body-img {
    left: 15px;
    transform: translateX(-43%) rotate(180deg);
}

html[dir="ltr"] body .body-main-container {
    padding: 20px 25px 20px 0;
}

/*end english*/

/*start media query*/

@media screen and (min-width: 1366px) {
}

@media screen and (max-width: 1366px) {
    .accounts-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .projects .projects-cards {
        grid-template-columns: repeat(4, 1fr);
    }

    .self-service .notifications {
        overflow: auto;
    }

    .tree-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 1200px) {

    .multi-inputs,
    .five-inputs,
    .six-inputs,
    .three-inputs {
        gap: 10px 20px;
    }

    .files {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .home .tasks-row > div ul li .title .text {
        font-size: 16px;
    }

    .home .tasks-row > div ul li .time {
        font-size: 14px;
    }

    .projects .projects-cards {
        grid-template-columns: repeat(3, 1fr);
    }

    .home .modal .items {
        grid-template-columns: repeat(4, 1fr);
    }

    .sales .multi-forms .items {
        grid-template-columns: repeat(5, 1fr);
    }

    .statistics {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .self-service .two-columns {
        grid-template-columns: 1fr;
    }

    .operations-box .main-inputs {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 920px) {
    nav .buttons-side .search > .search-box {
        display: none;
    }

    nav .search .dropdown-search {
        display: block;
    }

    .accounts-cards {
        grid-template-columns: 1fr;
    }

    .home .dates #calendar-wrapper {
        min-width: unset;
    }

    .projects .projects-cards,
    .multi-inputs,
    .files {
        grid-template-columns: repeat(3, 1fr);
    }

    .home .modal-dialog {
        transform: none !important;
        width: 80%;
    }

    .home .modal .items,
    .rate-forms {
        grid-template-columns: repeat(3, 1fr);
    }

    .sales .multi-forms .items {
        grid-template-columns: repeat(4, 1fr);
    }

    .dates-tables {
        grid-template-columns: 1fr;
    }

    .charts .two-columns {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    .side-bar .content-wrapper {
        display: none;
    }

    .toggle-sidebar {
        display: block;
    }

    .main-content {
        min-width: 640px;
    }

    .projects .projects-cards {
        grid-template-columns: repeat(1, 1fr);
    }

    .home .modal .items {
        grid-template-columns: repeat(2, 1fr);
    }

    .sales .multi-forms .items {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media screen and (max-width: 700px) {
    .main-content {
        min-width: 550px;
    }

    nav {
        gap: 10px;
    }

        nav .dropdowns-side {
            gap: 20px;
        }

    .multi-inputs,
    .five-inputs,
    .six-inputs,
    .three-inputs {
        grid-template-columns: repeat(2, 1fr);
    }

    .tree-container .multi-inputs {
        gap: 10px 50px;
    }

    .thirds-inputs {
        gap: 10px;
    }

    .sales .multi-forms .items {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 620px) {
    .main-content {
        min-width: 470px;
    }

        .main-content .wrapper {
            padding: 25px;
        }

    nav {
        gap: 10px;
    }

        nav .dropdowns-side {
            gap: 20px;
        }

    .thirds-inputs {
        grid-template-columns: 4fr 6fr;
    }

    .home .user-info .details .detail .title .text {
        font-weight: 600;
    }

    .home .user-info .details .detail p {
        font-size: 14px;
    }

    .buttons-container .label-container {
        font-size: 20px;
        font-weight: 600;
    }

    .rate-forms {
        grid-template-columns: repeat(2, 1fr);
    }

    .team {
        grid-template-columns: 1fr;
    }

    .operations-box .main-inputs {
        grid-template-columns: 1fr;
    }

        .operations-box .main-inputs .input-container {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start !important;
            align-self: flex-end;
        }

            .operations-box .main-inputs .input-container > label {
                margin-bottom: 5px;
            }

            .operations-box .main-inputs .input-container.span2 {
                grid-column: span 1 !important;
            }
}

@media screen and (max-width: 576px) {
    .login .form-side .wrapper {
        width: 95%;
    }

    .login .form-side .input-container .remember * {
        font-size: 13px;
    }

    .login .form-side .sign-up p {
        font-size: 14px;
    }
}

@media screen and (max-width: 520px) {
    .main-content {
        min-width: 420px;
    }

    .multi-inputs,
    .tree-container .multi-inputs,
    .three-inputs,
    .five-inputs,
    .six-inputs,
    .files,
    .double-inputs {
        grid-template-columns: 1fr;
    }

    .widget-box .widget-header .widget-title {
        font-size: 18px;
    }

    .widget-box .widget-header .buttons .btn {
        padding: 7px;
        font-size: 14px;
    }

    .home .tasks-row > div {
        flex: unset;
        width: 100%;
        min-width: unset;
    }

    .home .modal .items {
        grid-template-columns: repeat(1, 1fr);
    }

    .sales .multi-forms .items,
    .sales .inputs-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 460px) {
    body > .main-container {
        padding: 10px;
    }

    .side-bar {
        padding: 0;
    }

        .side-bar .content-wrapper {
            padding: 10px;
        }

    .main-content {
        min-width: 420px;
    }

        .main-content .wrapper {
            padding: 15px;
        }

    .widget-box .widget-body {
        padding: 0.5rem 0.75rem;
    }

    .widget-box .widget-header .buttons .btn .svg-inline--fa {
        font-size: 12px;
    }

    .buttons-side {
        width: 100%;
        justify-content: space-between;
    }

    .dropdowns-side {
        width: 100%;
        justify-content: center;
    }

    .rate-forms {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 440px) {
    .main-content {
        min-width: 370px;
    }

    .home .user-info .details .detail .title {
        flex: unset;
        width: 100%;
        justify-content: center;
    }

    .home .user-info .details .detail .disc {
        flex: unset;
        width: 100%;
        text-align: center;
    }

    .home .tasks-row > div > .title h5 {
        font-size: 1.1rem;
    }

    .home .tasks-row > div > .title a {
        font-size: 0.8rem;
    }

    .home .tasks-row > div ul li .title {
        display: flex;
        align-items: center;
    }

    .home .tasks-row > div ul li .point {
        width: 5px;
        height: 5px;
        margin-inline-end: 5px;
    }

    .home .tasks-row > div ul li .title .text {
        font-size: 14px;
    }

    .home .tasks-row > div ul li .time {
        font-size: 12px;
    }

    .statistics .title p {
        font-size: 12px;
    }

    .statistics .statistic .name,
    .statistics .statistic .disc {
        font-size: 14px;
    }

    .statistics .statistic .num {
        font-size: 10px;
    }

    .self-service .btn,
    .table-borderless th,
    .table-borderless td {
        font-size: 12px !important;
    }

    .self-service .prepare .enter-exit {
        flex-direction: column;
        text-align: center;
    }

    .self-service .prepare .location {
        flex-direction: column;
    }

    .self-service .reviews .rating .text h4 {
        font-size: 20px;
    }

    .self-service .reviews .rating .text p {
        font-size: 16px;
    }
}

@media screen and (max-width: 380px) {
    .main-content {
        min-width: 340px;
    }

    .widget-box .widget-header .widget-title {
        font-size: 14px;
    }

    .widget-box .widget-header .buttons .btn {
        font-size: 12px;
        padding: 4px;
    }

    .home .tasks-row > div ul li .title .text {
        font-size: 12px;
    }

    .home .tasks-row > div ul li .time {
        font-size: 10px;
    }

    .self-service .statistics .statistic {
        padding: 10px;
    }

    .statistics .statistic .name,
    .statistics .statistic .disc {
        font-size: 12px;
    }

    .self-service .user-info .statistic > p:nth-child(2) {
        flex: unset;
    }
}

@media screen and (max-width: 350px) {
    .main-content {
        min-width: 300px;
    }
}

/*end media query*/

#ContentPlaceHolder1_ValidationSummary1,
#ContentPlaceHolder1_ValidationSummary2,
#ContentPlaceHolder1_ValidationSummary3,
#ContentPlaceHolder1_ValidationSummary4,
#ContentPlaceHolder1_ValidationSummary5,
#ContentPlaceHolder1_ValidationSummary6 {
    color: #db4f39;
}


.user-data {
    color: #522d82;
    border: 1px solid #522d82;
}

    .user-data .info {
        border: 1px solid #522d82;
        border-radius: 5px;
        padding: 5px 10px;
    }

        .user-data .info .text {
            font-size: 14px;
        }

.itemdiv {
    border: 1px solid #522d82;
    padding: 15px;
    display: flex;
    position: relative;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: rgba(149, 157, 165, 0.2) 5px 8px 24px;
    color: #522d82 !important;
}

    .itemdiv .body {
        padding: 0 10px;
    }

    .itemdiv .time {
        position: absolute;
        top: 10px;
        left: 10px;
        color: #999999;
        font-size: 14px;
    }

    .itemdiv .body .orange {
        padding: 5px;
        border-radius: 5px;
        color: #FFF;
    }

.fc-event {
    background-color: #522d82 !important;
}

.fc-button {
    color: #522d82 !important;
    border: #522d82 1px solid;
}

.fc-state-active {
    background-color: #522d82 !important;
    color: #FFF !important;
}

.fc-header-title,
.fc-day-header {
    color: #522d82 !important;
}

.external-event {
    color: #522d82 !important;
}

.fc table {
    color: #522d82 !important;
}

.fc-day-number {
    color: #522d82 !important;
}

.fc-state-highlight {
    background: #e5e3fc !important;
}

.self-service .self-service-cards {
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 30px;
}

.self-service .self-service-card {
    display: flex;
    gap: 10px;
    justify-content: space-evenly;
    align-items: center;
    padding: 10px;
    background-color: #522d82;
    border-radius: 15px;
    width: 100%;
    transition: .25s linear;
    animation: stretch .5s ease-out 0s alternate none running;
    color: #FFF;
}

    .self-service .self-service-card:hover {
        transform: scale(1.1);
        transition: .25s linear;
        cursor: pointer;
    }

    .self-service .self-service-card .icon {
        font-size: 35px;
        color: #FFF;
    }

    .self-service .self-service-card .num {
        font-size: 30px;
        font-weight: bold;
        color: #FFF;
    }

    .self-service .self-service-card .disc {
        font-weight: bold;
    }

.fc-widget-header,
.fc-widget-content {
    border: 0px solid #bcd4e5 !important;
    font-weight: bold !important;
}

@media (max-width: 768px) {
    .dates {
        display: none;
    }

    .user-info {
        width: 100% !important;
    }

    .modal-dialog {
        transform: unset !important;
    }

    .table-container > .small-inputs {
        width: 300% !important;
    }
}

.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;
    width: 100% !important;
}

/* AutoComplete item */
.autocomplete_listItem {
    background-color: window;
    color: windowtext;
    padding: 1px;
    z-index: 100000;
    cursor: pointer !important;
}
