﻿
@font-face {
    font-family: MainFont;
    font-style: normal;
    font-weight: 300;
    src: url('../fonts/main/eot/IRANSansWeb_Light.eot');
    src: url('../fonts/main/eot/IRANSansWeb_Light.eot?#iefix') format('embedded-opentype'), /* IE6-8 */
    url('../fonts/main/woff2/IRANSansWeb_Light.woff2') format('woff2'), /* FF39+,Chrome36+, Opera24+*/
    url('../fonts/main/woff/IRANSansWeb_Light.woff') format('woff'), /* FF3.6+, IE9, Chrome6+, Saf5.1+*/
    url('../fonts/main/ttf/IRANSansWeb_Light.ttf') format('truetype');
}

html, body {
    font-family: MainFont;
    direction: rtl;
    margin: 0;
    font-size: 14px;
}

input, select, pre, textarea, button {
    font-family: inherit;
    outline: none;
}

a {
    text-decoration: none;
    color: #008aff;
}

img {
    max-width: 100%;
}

.app-only {
    display: none !important;
}

.font-0 {
    font-size: 0;
}

.main-menu {
    scrollbar-width: thin;
    scrollbar-color: #252f3d #fff;
}

    .main-menu::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .main-menu::-webkit-scrollbar-track {
        background: #252f3d;
    }

    .main-menu::-webkit-scrollbar-thumb {
        background-color: #fff;
        border-radius: 0px;
        border: none;
    }

.container * {
    scrollbar-width: thin;
    scrollbar-color: #bdbdbd #d3d3d3;
}

    .container *::-webkit-scrollbar {
        width: 4px;
        height: 4px;
    }

    .container *::-webkit-scrollbar-track {
        background: #d3d3d3;
    }

    .container *::-webkit-scrollbar-thumb {
        background-color: #bdbdbd;
        border-radius: 0px;
        border: none;
        border-radius: 16px;
    }

.text-center {
    text-align: center !important;
    justify-self: center !important
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.to-left {
    display: flex;
    flex-direction: row-reverse;
}

.text-black {
    color: #333;
}

*[disabled] {
    opacity: .75;
}

.text-not-bold {
    font-weight: 100 !important;
}

.justify-start {
    justify-self: start !important;
}

.justify-stretch {
    justify-self: stretch !important;
}

.justify-end {
    justify-self: end !important;
}

.hidden {
    display: none !important;
}

.clear-both {
    clear: both;
}

.caption {
    font-size: .85rem;
    opacity: .75;
}

.m-t-1 {
    margin-top: 10px;
}

.m-b-1 {
    margin-bottom: 10px;
}

.m-t-0 {
    margin-top: 0;
}

.padding-1 {
    padding: 10px;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 85%;
}

.big {
    font-size: 120%;
}

.golden {
    color: gold;
}

.display-block {
    display: block !important;
}

.on-top {
    z-index: 5000;
}

.account-page {
    display: grid;
    justify-items: center;
    align-items: center;
    min-width: 1000px;
    overflow: auto;
    padding: 0 15px;
    margin-top: 7%;
    margin-bottom: 7%;
}

    .account-page .go-back {
        margin-top: 20px;
    }

    .account-page .form-item {
        margin: 10px;
    }

        .account-page .form-item input, .account-page .form-item select {
            width: 100%;
            border-radius: 8px;
            border: 1px solid #efefef;
            padding: 6px;
            background: #eee;
            box-sizing: border-box;
            outline: none;
        }

            .account-page .form-item input[type=checkbox] {
                display: inline-block;
                width: initial;
            }

            .account-page .form-item input[disabled], .btn[disabled] {
                opacity: .5;
            }

    .account-page .alt.btn {
        display: block;
        background: #ffffff;
        color: #7b336c;
        border: 1px solid #76336d;
        width: calc(100% - 20px);
        margin: 0 auto;
        padding: 5px 10px;
    }

        .account-page .alt.btn:hover {
            background: #76336d;
            color: #fff;
        }

    .account-page .alt.form-sub-btn {
        margin-top: 25px;
    }

.form-item .check-items input {
    display: inline-block;
    width: 0;
    overflow: hidden;
    margin: 0;
}

    .form-item .check-items input + label {
        background: #ededed;
        padding: 5px 15px;
        border-radius: 18px;
        cursor: pointer;
        margin: 2px 0;
        display: inline-block;
    }

    .form-item .check-items input:checked + label {
        background: #D64F3C;
        color: #fff;
    }

.account-page .form-item.image-changer {
    display: grid;
    grid-template-columns: 64px 1fr;
    grid-column-gap: 10px;
    align-items: center;
}

    .account-page .form-item.image-changer img {
        max-width: 64px;
    }

.btn {
    display: inline-block;
    padding: 7px 20px;
    border-radius: 8px;
    background: #fff;
    color: #1D882C;
    border: 1px solid #1D882C;
    cursor: pointer;
}

    .btn:hover {
        background: #1D882C;
        color: #fff;
    }

    .btn.disabled {
        opacity: .5;
        cursor: not-allowed;
    }

.btn-primary {
    color: #E61515;
    border: 1px solid #E61515;
}

    .btn-primary:hover {
        background: #E61515;
        color: #fff;
    }

.btn-orange {
    color: orange;
    border: 1px solid orange;
}

    .btn-orange:hover {
        background: orange;
        color: #fff;
    }

.btn-secondary {
    color: #707070;
    border: 1px solid #707070;
}

    .btn-secondary:hover {
        background: #707070;
        color: #fff;
    }

.btn-filled {
    background: #1D882C;
    color: #fff;
}

    .btn-filled:hover {
        box-shadow: 0 0 40px #114618 inset;
    }

.full-icon-btn.btn-flat {
    color: #fff;
    border: 1px solid #fff;
    color: #333;
}

.account-two-col {
    display: grid;
    grid-template-columns: 1fr auto;
    justify-content: center;
    align-content: center;
    column-gap: 15px;
}

    .account-two-col > div {
        align-self: center;
        justify-self: center;
    }

.account-page .form img {
    display: block;
    margin: 0 auto;
}

.message {
    font-weight: bold;
    border-radius: 16px;
    padding: 5px;
    cursor: default;
}

    .message.message-error {
        background: #ffd5d5 !important;
        color: #d80b0b !important;
    }

    .message.message-success {
        background: #d6ffd5 !important;
        color: #004806 !important;
    }

    .message.message-warning {
        background: #fee4ca !important;
        color: #f0810b !important;
    }

    .message.message-info {
        background: #caecfe !important;
        color: #0e6a9d !important;
    }

.account-header {
    text-align: center;
    padding: 20px;
    margin: 5px;
    background: #D64F3C;
    border-radius: 32px 32px 0 0;
    color: #fff;
}

.account-page .logo {
    max-width: 194px;
}

.main-container {
    display: grid;
    grid-template-columns: 360px 1fr;
}

.main-menu {
    background-color: #384456;
    color: #fbfbfb;
    top: 0;
    position: sticky;
    height: 100vh;
    overflow: auto;
    box-sizing: border-box;
    display: grid;
    box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.5)
}

.avatar {
    border-radius: 50%;
    max-width: 128px;
    background-color: #eee;
}

.main-menu .user {
    padding: 15px 20px;
    padding-top: 40px;
    padding-bottom: 0;
    display: grid;
    grid-column-gap: 15px;
    background-color: #384456;
    position: sticky;
    top: 0;
    z-index: 1;
    grid-template-columns: auto auto;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
    row-gap: 20px;
    justify-content: center;
    border-bottom: 1px solid #fff;
    margin-bottom: 15px;
}

    .main-menu .user img {
        border-radius: 50%;
        max-width: 80px;
        border: 2px solid #FFAB4A;
        background: #ffffff21;
        box-shadow: 0 0 15px #0009 inset;
    }

    .main-menu .user > div {
        display: grid;
        align-items: stretch;
    }

    .main-menu .user .user-pop-up-menu {
        display: none;
        position: absolute;
        background: #4a5667;
        padding: 15px;
        border-radius: 24px 0 24px 24px;
        border: 2px solid #ffffffc9;
        top: 45px;
        right: 5px;
        left: -30px;
        box-shadow: 0 0 50px #000 inset;
    }

        .main-menu .user .user-pop-up-menu.show {
            display: initial;
        }

.user-pop-up-menu > a, .user-pop-up-menu button {
    color: #fff;
    display: grid;
    grid-template-columns: 32px 1fr;
    grid-column-gap: 10px;
    align-items: center;
    border: none;
    background: none;
    border-bottom: 1px dotted #fff;
    padding-bottom: 5px;
    margin-bottom: 5px;
    width: 100%;
    text-align: right;
    cursor: pointer;
}

.user-pop-up-menu button {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.main-menu > div h4 {
    font-size: 13px;
    padding: 0;
    margin: 0;
}

.main-menu .top-btns-holder {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 10px;
    margin: 0 15px;
    padding-bottom: 20px;
    grid-column-start: 1;
    grid-column-end: 3;
    position: relative;
}

    .main-menu .top-btns-holder > a {
        border: 2px solid #fff;
        border-radius: 16px;
        color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 5px 20px;
    }

        .main-menu .top-btns-holder > a:hover {
            border: 2px solid #FFAB4A;
            color: #FFAB4A;
        }

.main-menu .profile-btn {
    padding: 5px 30px;
    border-radius: 8px;
    background: #fbfbfb;
    color: rgb(56,68,86);
    text-align: center;
    max-width: 90px;
    font-weight: bold;
    justify-self: left;
}

.main-menu .subscription {
    display: grid;
    grid-template-columns: 1fr auto;
}

.main-menu .subscription-expire {
    color: #FFAB4A;
}

.main-menu .subscription .subscribe {
    color: #fbfbfb;
    background-color: darkorange;
    border-radius: 8px;
    padding: 5px 25px;
}

.main-menu .bottom-logo {
    max-width: 70%;
    margin: 0 auto;
    display: block;
    margin-bottom: 25px;
    margin-top: 25px;
}

.main-menu .logo-holder {
    position: sticky;
    bottom: 0;
    background: #384456;
}

.main-menu .menu-item {
    display: grid;
    align-items: center;
    grid-template-columns: 36px 1fr;
    padding: 7px;
    margin: 6px 4px;
    grid-column-gap: 15px;
    cursor: pointer;
    border-radius: 8px;
    color: #fbfbfb;
}

    .main-menu .menu-item.menu-item-admin {
        color: #000;
        background: #d7d7d7;
        font-weight: bold;
    }

        .main-menu .menu-item.menu-item-admin:hover, .main-menu .menu-item.menu-item-admin.active {
            color: #fff;
            box-shadow: 0 0 0 1px #fff, 0 0 50px #000 inset;
        }

            .main-menu .menu-item.menu-item-admin:hover span, .main-menu .menu-item.menu-item-admin.active span {
                color: #ffffff;
            }

    .main-menu .menu-item:hover, .main-menu .menu-item.active {
        background-color: darkred;
        box-shadow: -1px 2px 5px -2px #000;
    }

        .main-menu .menu-item:hover span, .main-menu .menu-item.active span {
            color: #ebb1b1;
        }

    .main-menu .menu-item span {
        justify-self: center;
    }

.main-menu .sub-menu-items {
    grid-column-start: 1;
    grid-column-end: 3;
    display: grid;
    grid-row-gap: 5px;
    margin-top: 10px;
    border-radius: 8px;
    padding: 7px;
    background-color: rgba(35,35,35,.3);
    font-size: .9rem;
}

    .main-menu .sub-menu-items a {
        color: #fff;
        padding: 2px 10px;
        border-radius: 5px;
    }

        .main-menu .sub-menu-items a:hover, .main-menu .sub-menu-items a.active {
            background: darkred;
        }

.main-menu .menu-item.expandable {
    cursor: default;
}

    .main-menu .menu-item.expandable.expanded {
        background: rgba(112, 128, 144, .45);
    }

.main-menu .menu-item.menu-item-admin.expandable.expanded {
    color: #fff;
}

.main-menu .menu-item.expandable.expanded:hover span, .main-menu .menu-item.expandable.expanded.active span {
    color: white;
}

.main-menu .menu-item.expandable .sub-menu-items {
    display: none;
}

.main-menu .menu-item.expandable.expanded .sub-menu-items {
    display: grid;
}

.main-body .header {
    padding: 25px 50px;
    background-color: #384456;
    display: grid;
    grid-template-columns: auto 1fr;
    position: sticky;
    top: 0;
    z-index: 1500;
    box-shadow: -15px -1px 11px rgba(0, 0, 0, 0.5);
    height: 36px;
}

    .main-body .header .search-bar {
        display: inline-block;
        position: relative;
        min-width: 40%;
        padding: 4px;
        border-radius: 8px;
        background-color: #f8f8ff;
        box-shadow: -4px 2px 3px rgba(0,0,0,.25);
        margin-left: 10px;
        min-width: 420px;
    }

        .main-body .header .search-bar.active {
            background-color: #fff;
            border-radius: 8px 8px 0 0;
            box-shadow: none;
        }

@keyframes search-loading-animation {
    0% {
        right: -25px;
    }

    100% {
        right: calc(100% + 25px);
    }
}

.main-body .header .search-bar.loading .search-result {
    position: relative;
    overflow: hidden;
}

    .main-body .header .search-bar.loading .search-result::before {
        animation: search-loading-animation 1s ease-in-out infinite;
        content: "";
        width: 25px;
        position: absolute;
        right: -25px;
        bottom: 0;
        height: 2px;
        background: #3A4558;
        border-radius: 50%;
        filter: blur(10px);
    }

.main-body .header .search-input {
    display: grid;
    grid-template-columns: 1fr auto;
}

    .main-body .header .search-input input {
        background: none;
        border: none;
    }

    .main-body .header .search-input button {
        background: none;
        border: none;
        color: #384456;
        margin-top: 3px;
    }

.main-body .header .search-bar.active .search-input button {
    /*color: #00bcd4;*/
}

.main-body .header .search-bar .search-result {
    display: none;
}

    .main-body .header .search-bar .search-result.empty span {
        color: darkorange;
        opacity: .75;
    }

.main-body .header .search-bar.active .search-result {
    display: block;
    position: absolute;
    background: #f5f5f5;
    right: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
    padding: 5px;
    box-shadow: 0px 4px 4px #0000004a;
}

    .main-body .header .search-bar.active .search-result a {
        display: grid;
        color: #000;
        background-color: #fbfbfb;
        font-weight: bold;
        padding: 5px;
        margin: 5px;
        box-shadow: -2px 6px 8px -11px #000;
        border-radius: 8px;
    }

        .main-body .header .search-bar.active .search-result a:hover {
            background-color: #384456;
            color: #fff;
            transform: scale(.99);
        }


    .main-body .header .search-bar.active .search-result.empty {
        color: orangered;
        font-size: .9rem;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 10px;
        margin: 0;
    }

    .main-body .header .search-bar.active .search-result.no-init {
        color: dimgray;
        font-weight: bold;
        font-size: 14px;
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
        column-gap: 10px;
    }

    .main-body .header .search-bar.active .search-result a div {
        display: grid;
        grid-template-columns: auto 1fr;
        align-items: center;
    }

        .main-body .header .search-bar.active .search-result a div .caption {
            font-size: .7rem;
            margin-left: 3px;
            opacity: .6;
        }

.icon-btn {
    background: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    display: grid;
    align-content: center;
    text-align: center;
    background-color: ghostwhite;
    border: none;
    box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.65);
    color: #3A4558;
    cursor: pointer;
    position: relative;
}

    .icon-btn:hover {
        background-color: darkred;
        color: ghostwhite;
        box-shadow: 0 0 0px 1px rgb(0, 0, 0);
    }

    .icon-btn span::before {
        font-size: 18px;
    }

@keyframes notify-item-animation {
    0% {
        background: #f8f8ff;
    }

    50% {
        background: #f7d5d5;
    }

    100% {
        background: #f8f8ff;
    }
}

.notify-item {
    position: absolute;
    top: -4px;
    right: -3px;
    width: 16px;
    height: 16px;
    background: #f8f8ff;
    color: #384456;
    border-radius: 50%;
    line-height: 20px;
    font-size: .85rem;
    font-weight: bold;
    animation: notify-item-animation 2s ease-in-out infinite;
}

.main-body .header .tools {
    display: flex;
    gap: 10px;
    justify-content: end;
}

.container {
    margin: 25px;
    padding: 18px;
    border-radius: 0 32px 0 0;
    box-shadow: -3px 1px 6px 0px #d0d0d0;
    min-width: 995px;
    box-sizing: border-box;
    height: calc(100vh - 136px);
    overflow: hidden;
}

    .container.big-page {
        overflow: auto;
    }

    .container > .grid-2-col > div {
        max-height: calc(100vh - 185px);
        overflow: auto;
        padding: 5px;
    }

    .container > .grid-2-col.right-bigger {
        grid-template-columns: 450px 1fr;
    }

.plans {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-column-gap: 20px;
    margin: 15px auto;
    max-width: 1200px;
}

    .plans .plan {
        padding: 25px 7px;
        border-radius: 32px;
        box-shadow: -3px 1px 6px 0px #d0d0d0;
        text-align: center;
        border: 2px solid transparent;
        cursor: default;
    }

        .plans .plan:hover {
            border: 2px solid #384456;
        }

        .plans .plan ul {
            margin: 0;
            padding: 0;
            text-align: right;
            margin-right: 25px;
            margin-top: 25px;
            margin-bottom: 55px;
            font-size: 11px;
            font-weight: bold;
        }

            .plans .plan ul li {
                padding-top: 10px;
            }

.buy-btn {
    border-radius: 16px;
    border: 1px solid #555;
    display: block;
    max-width: 120px;
    margin: 0 auto;
    cursor: pointer;
    padding: 6px 30px;
    margin-top: 14px;
    color: #333;
    position: relative;
    font-size: 13px;
}

.buy-btn-off-a::after {
    content: "15% تخفیف";
    position: absolute;
    top: -9px;
    right: 9px;
    padding: 0 9px;
    background-color: #fff;
    color: #555;
    display: grid;
    align-items: center;
    font-size: 75%;
    border-radius: 8px;
    border: 1px solid #555;
}

.buy-btn-off-b::after {
    content: "25% تخفیف";
    position: absolute;
    top: -9px;
    right: 9px;
    padding: 0 9px;
    background-color: #fff;
    color: #555;
    display: grid;
    align-items: center;
    font-size: 75%;
    border-radius: 8px;
    border: 1px solid #555;
}

.buy-btn:hover::before {
    border-radius: 16px;
    content: "خرید اشتراک";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: #384456;
    color: #fff;
    display: grid;
    align-items: center;
}

.important-message {
    border-radius: 32px;
    background-color: #384456;
    padding: 25px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin: 25px;
}

    .important-message.error {
        background-color: #d04343;
    }

    .important-message.success {
        background-color: #2ba72d;
    }

.payment-result {
    border-radius: 32px;
    box-shadow: -1px 0 5px 0px #a7a7a7;
    margin: 10px;
    padding: 25px 150px;
    display: grid;
    text-align: center;
}

    .payment-result .data {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

        .payment-result .data > div:nth-child(2n+1) {
            text-align: right;
        }

        .payment-result .data > div:nth-child(2n) {
            text-align: left;
        }

.plan-details {
    border-radius: 32px;
    box-shadow: -1px 0 5px 0px #a7a7a7;
    margin: 10px;
    padding: 25px 50px;
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: center;
    cursor: default;
    border: 2px solid transparent;
}

    .plan-details:hover {
        border: 2px solid #384456;
    }

    .plan-details > div {
        text-align: center;
        display: grid;
    }

    .plan-details > ul {
        border-right: 2px solid #999;
    }


.form-regular {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
    align-items: center;
}

    .form-regular > label {
        justify-self: end;
        font-weight: bold;
        font-size: .9rem;
    }

    .form-regular input, .form-regular textarea, .form-regular select {
        border: 1px solid #3a45584c;
        border-radius: 10px;
        padding: 2px 5px;
        min-width: 340px;
        font-size: 1.1rem;
        background: #fff;
        box-sizing: border-box;
    }

        .form-regular input:focus, .form-regular textarea:focus, .form-regular select:focus {
            border: 1px solid #1D882C;
        }

        .form-regular input[readonly], .form-regular textarea[readonly], .form-regular select[readonly] {
            background: rgba(255, 255, 255, 0.6);
            cursor: default;
        }

        .form-regular input.important {
            border: 2px solid darkred !important;
            color: darkred;
            background: #fff !important;
        }

    .form-regular.inside input, .form-regular.inside textarea, .form-regular.inside select {
        min-width: unset;
        width: calc(100% - 15px)
    }

    .form-regular.inside .file-input {
        min-width: unset;
        width: calc(100%)
    }

    .form-regular .parts-seperator {
        border-color: #d0c3af;
    }

.grid-3-col input {
    width: calc(100% - 14px);
}

.form-regular input[type=checkbox] {
    min-width: initial;
}

.form-regular input.green, .form-regular textarea.green, .form-regular select.green {
    border: 2px solid #1a884b;
}

.form-regular .actions {
    grid-column-start: 2;
    justify-self: start;
}

.form-regular .checkbox {
    display: block;
}

.form-regular .btn {
    border-radius: 16px;
    border: 2px solid #330404;
    box-sizing: border-box;
    color: #330404;
}

    .form-regular .btn:hover {
        background: #330404;
        color: #fff;
    }

.grid-2-col .tab {
    background: #fff;
    width: 100%;
}

.tab .tab-caption {
    z-index: 2000;
    padding: 4px;
    font-size: .85rem;
    color: #5a544d;
    font-weight: bold;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 10px;
    align-items: center;
    position: sticky;
    top: 0;
    margin-bottom: 10px;
    margin-right: 11px;
    border-radius: 0 0 16px 0;
    padding-right: 8px;
    font-size: 0;
    margin-bottom: 5px;
}

.tab .tab {
    border: none;
}

.tab .inside {
    padding: 0 10px;
}

.tab .tab-footer {
    position: sticky;
    bottom: 0;
    padding: 10px;
    background: #fff;
    margin-top: 10px;
    z-index: 2000;
    display: grid;
    grid-auto-flow: column;
    align-items: center;
    grid-column-gap: 10px;
    text-align: center;
    justify-content: end;
}

.container .title {
    text-align: center;
    margin: 0 0 30px 0;
    font-weight: bold;
    display: grid;
    grid-row-gap: 15px;
    grid-template-columns: auto 1fr;
    align-items: center;
    background: #f3f3f3;
    padding: 10px;
    border-radius: 32px;
}

    .container .title > span {
        opacity: .7;
    }

    .container .title > div {
        font-size: 1.2rem;
    }

.map {
    height: 250px;
    border-radius: 16px;
}

.mapp-container .mapp-logo {
    display: none !important;
}

.leaflet-pane .leaflet-popup-pane {
    display: none;
}

.clear-data {
    display: grid;
    align-items: start;
    grid-row-gap: 5px;
    grid-template-rows: 1fr;
    border-radius: 16px;
    position: relative;
    width: 95%;
}

    .clear-data button {
        background: #d25252;
        border-radius: 50%;
        border: none;
        color: #f5f5f5;
        text-shadow: -1px -2px 2px #8c3333;
        line-height: 0;
        width: 38px;
        height: 38px;
        box-shadow: -4px 2px 10px -6px #000;
        cursor: pointer;
        position: absolute;
        z-index: 1989;
        left: 5px;
        top: 5px;
    }

.main-container .bd-main input,
.main-container .bd-main select,
.main-container .bd-main textarea {
    padding: 0;
}

.main-container .bd-calendar select {
    margin-left: 10px;
    display: inline-block;
    background: #e8e8e8;
    border-radius: 4px;
    border: none;
    min-width: initial;
    width: 68px !important;
}

.main-container .bd-main {
    margin-right: 7px;
    border: none;
    border-radius: 5px;
}

    .main-container .bd-main .bd-table-days button {
        font-family: inherit;
    }

.main-container .bd-table thead {
    display: none;
}

.main-container .bd-main .bd-next,
.main-container .bd-main .bd-prev {
    display: none;
}

.image-selector {
    display: grid;
}

    .image-selector .image-container img {
        max-width: 100%;
    }

    .image-selector .image-container {
        border-radius: 16px 16px 0 0;
        border: 2px solid #3c3c3c;
        border-bottom: none;
        position: relative;
        overflow: hidden;
        font-size: 0;
        width: 150px;
        cursor: pointer;
        margin-right: 16px;
    }

        .image-selector .image-container:hover {
            border: 2px solid darkred;
            border-bottom: none;
        }

            .image-selector .image-container:hover::before {
                content: "حذف";
                text-align: center;
                padding: 7px;
                position: absolute;
                left: 0;
                top: 0;
                right: 0;
                bottom: 0;
                background-color: rgba(240,128,128,.3);
                color: darkred;
                font-size: 16px;
                font-weight: bold;
            }

.fields-holder {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

    .fields-holder .main-btns-holder {
        display: grid;
        grid-auto-flow: column;
        grid-column-gap: 15px;
        margin: 25px 0;
        padding-bottom: 25px;
        border-bottom: 1px solid whitesmoke;
    }

        .fields-holder .main-btns-holder button, .fields-holder .btns-holder button {
            background: #f7f7f7;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            padding: 10px 25px;
            color: #555;
            font-weight: bold;
        }

            .fields-holder .main-btns-holder button:hover, .fields-holder .main-btns-holder button.active, .fields-holder .btns-holder button:hover, .fields-holder .btns-holder button.active {
                background: #ffcd72;
                color: #3e3e3e;
                border-color: #555;
                font-weight: bold;
            }

    .fields-holder .btns-holder button {
        padding: 5px 15px;
        font-weight: normal;
    }

.table {
    margin: 5px;
    padding: 15px;
    border-radius: 16px;
    background: #f7f7f7;
    font-size: .9rem;
    font-weight: bold;
}

    .table .table-body {
        display: table;
        margin: 0 auto;
        min-width: 100%;
    }

        .table .table-body .row {
            display: table-row;
            margin: 15px 0;
        }

            .table .table-body .row:hover {
                background: #bebebe !important;
            }

            .table .table-body .row > * {
                display: table-cell;
                padding: 5px;
                vertical-align: middle;
            }

            .table .table-body .row:nth-child(2n+1) {
                background: #f1f1f1;
            }

            .table .table-body .row.table-headline > * {
                padding: 15px 15px;
                font-weight: bold;
                font-size: 1rem;
            }

    .table .table-footer {
        padding: 5px;
        margin: 15px;
        background: white;
        border-radius: 8px;
        font-weight: bold;
        opacity: .7;
    }

.data-holder > div {
    display: none;
    opacity: 0;
}

@keyframes come-in-animation {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.data-holder > div.active {
    animation: come-in-animation .2s ease-in-out forwards;
    display: block;
}

.grid-2-col {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-column-gap: 15px;
}

    .grid-2-col.forced {
        grid-template-columns: 1fr 2fr;
    }

@media only screen and (min-width: 1800px) {
    .grid-2-col {
        grid-template-columns: 1fr 2fr;
    }
}

.grid-3-col {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 15px;
}

.tabs-container {
    background: #fff;
    padding: 15px;
    display: grid;
    grid-template-rows: auto 1fr;
    max-height: calc(100vh - 220px);
    border: 2px solid #D5D8DB;
    border-radius: 16px;
}

    .tabs-container .tabs-container {
        border: none;
    }

    .tabs-container .tabs-container {
        max-height: initial;
    }

    .tabs-container .tab .tab {
        border-radius: 0;
        margin-top: 15px;
    }

.tabs-btns {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 6px;
    text-align: center;
    margin-bottom: 10px;
    height: 70px;
}

    .tabs-btns.no-image {
        height: initial;
    }

        .tabs-btns.no-image .tab-btn {
            font-size: .8rem;
        }

    .tabs-btns.inline {
        display: inline-block;
    }

        .tabs-btns.inline .tab-btn {
            margin-bottom: 5px;
            display: inline-block;
            font-size: .8rem;
        }

.tab-btn {
    display: grid;
    align-items: center;
    justify-items: center;
    background: #fdfdfd;
    padding: 5px;
    padding-bottom: 10px;
    font-size: .85rem;
    font-weight: bold;
    border: 2px solid #fff;
    cursor: default;
    opacity: .9;
    color: #878787;
}

.tabs-btns.limited {
    justify-content: center;
}

    .tabs-btns.limited .tab-btn {
        width: 65px;
    }

.tab-btn:hover, .tab-btn.active {
    border-bottom: 2px solid #1D882C;
    background: #fff;
    color: #1D882C;
    opacity: 1;
}

.tab-btn span {
    color: #878787;
    margin-bottom: 7px;
    opacity: .85;
}

.tab-btn:hover span {
    opacity: 1;
    text-shadow: 0 0 1px #000;
}

.tab-btn.active span {
    color: #1D882C;
}

.tabs-container .tabs-container .tabs-btns .tab-btn {
    font-size: .75rem;
}

.tabs-container .tabs-container .tabs-btns .fa-3x {
    font-size: 2rem;
    border: 1px solid #878787;
    padding: 10px;
    border-radius: 8px;
}

.tabs-container .tabs-container .tabs-btns .tab-btn.active .fa-3x {
    border: 1px solid #1D882C;
}

.tab {
    background: #fff;
    display: none;
    overflow: auto;
    margin-top: 1px;
}

    .tab.active {
        display: grid;
        animation: come-in-animation .2s ease-in-out forwards;
    }

.empty {
    display: grid;
    align-items: center;
    justify-items: center;
    margin: 5px;
    padding: 15px;
    grid-row-gap: 15px;
    background: #fffdee;
    box-shadow: 3px 3px 12px -8px #000;
    border-radius: 16px;
}

    .empty > span {
        color: darkorange;
        opacity: .2;
    }

.full-icon-btn {
    background-color: #fff;
    color: #1D882C;
    border: 1px solid #1D882C;
    border-radius: 20px;
    padding: 5px 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 15px;
    justify-items: center;
    align-items: center;
    font-weight: bold;
    font-size: 12px;
    transition: all .2s ease-in-out;
    cursor: pointer;
}

    .full-icon-btn:hover {
        background-color: #1D882C;
        color: #fff;
    }

.column-span-2 {
    grid-column-start: 1;
    grid-column-end: 3;
}

.column-span-3 {
    grid-column-start: 1;
    grid-column-end: 4;
}

.second-level {
    margin-top: 25px;
    padding-top: 25px;
    border-top: 2px dotted gray;
}

.license {
    padding: 5px;
    border-radius: 16px;
    margin-top: 10px;
}

    .license .level {
        text-align: center;
        margin: 0;
        font-size: 1.3rem;
        font-weight: bold;
        color: #555;
        background: #ededed;
        border-radius: 5px;
    }

    .license .number {
        margin: 0;
        margin-bottom: 25px;
        text-align: center;
        font-weight: bold;
        color: #384456;
        border-radius: 0 0 12px 12px;
        background: white;
        line-height: 2rem;
    }

    .license .images {
        display: grid;
        grid-template-columns: 1fr 1fr;
        border-radius: 8px;
        overflow: hidden;
        align-items: center;
        grid-column-gap: 10px;
        margin-bottom: 15px;
    }

        .license .images a {
            height: 100px;
            border-radius: 8px;
            border: 2px solid black;
            overflow: hidden;
            display: grid;
            align-items: center;
            background-color: rgba(0, 0, 0, 0.65);
        }

    .license .dates {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-row-gap: 10px;
        grid-column-gap: 10px;
        font-weight: bold;
    }

        .license .dates > div {
            background: white;
            padding: 5px;
            border-radius: 16px;
            text-align: center;
            overflow: hidden;
        }

            .license .dates > div div:nth-child(2n+1) {
                opacity: .85;
                font-size: .85rem;
                background: #e9e9e9;
                margin: -5px;
                margin-bottom: 2px;
                color: #000;
                font-weight: 100;
            }

    .license .upgrades h4 {
        text-align: center;
        border-bottom: 1px dotted;
        margin-top: 35px;
        padding-bottom: 10px;
        color: #384456;
    }

    .license .upgrades > div {
        margin: 5px;
        background: white;
        border-radius: 8px;
        padding: 2px;
    }

.notifications > * {
    display: grid;
    grid-template-columns: auto 1fr auto;
    color: #333;
    background-color: whitesmoke;
    margin: 5px 0;
    align-items: center;
    grid-column-gap: 10px;
    padding: 5px;
    border-radius: 8px;
    border: 2px solid whitesmoke;
}

    .notifications > *:hover {
        border: 2px solid #333;
    }

    .notifications > *.faded {
        opacity: .65;
    }

.slider-item .holder {
    width: 140px;
    min-height: 140px;
    text-align: center;
    display: inline-block;
    overflow: hidden;
}

.slider-item .canvas {
    direction: ltr;
    position: relative;
}

    .slider-item .canvas canvas {
        position: absolute;
        left: -15px;
        top: -59px;
        right: 0;
        bottom: 0;
        -webkit-transform: rotate(-90deg);
        transform: rotate(-90deg);
        -webkit-transform-origin: 50%;
        transform-origin: 50%;
    }

    .slider-item .canvas > .value {
        padding-top: 46px;
        direction: rtl;
        font-weight: bold;
        font-size: 110%;
    }

.slider-item .caption {
    font-weight: bold;
    margin-top: 45px;
    font-size: .75rem;
    white-space: normal;
}

.slider-item {
    margin: 0 auto;
    text-align: center;
    display: grid;
    align-items: center;
    justify-items: center;
    border-radius: 16px;
    padding: 15px;
    background: #fff;
    cursor: default;
    width: 292px;
    box-shadow: 0 0 0 1px #dedede;
}

    .slider-item .slider-header {
        font-weight: bold;
        font-size: 1.1rem;
        margin-bottom: 20px;
    }

    .slider-item .slider-graphics {
        display: grid;
        grid-auto-flow: column;
        justify-content: center;
    }

    .slider-item .message {
        margin: 10px;
        padding: 5px 15px;
        border-radius: 16px;
        border: 2px solid Black;
        background-color: #fff;
        font-size: .85rem;
    }

    .slider-item .slider-footer a {
        padding: 4px 20px;
        border-radius: 16px;
        color: #fff;
        margin: 10px;
        display: inline-block;
    }

.slider-container {
    max-width: 322px;
    padding: 2px;
    margin: 0 auto;
    border-radius: 16px;
    display: grid;
    white-space: nowrap;
    overflow: auto;
    grid-auto-flow: column;
    grid-column-gap: 10px;
}

    .slider-container.disabled {
        opacity: .5;
        filter: grayscale(1)
    }

.parts-seperator {
    margin-top: 20px;
    /*border-top: 5px dotted #e2e2e2;*/
    padding-top: 15px;
    width: 100%;
}

.slider-parent {
    position: relative;
    max-width: 350px;
    margin: 0 auto;
}

    .slider-parent > span {
        width: 32px;
        height: 32px;
        line-height: 32px;
        padding: 4px;
        position: absolute;
        top: 100px;
        text-align: center;
        color: #2d2d2da9;
        cursor: pointer;
    }

    .slider-parent > .fa-chevron-left {
        left: -28px;
        border-radius: 15px 0 0 15px;
    }

    .slider-parent > .fa-chevron-right {
        right: -28px;
        border-radius: 0 15px 15px 0;
    }


.global-btns-holder {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    grid-row-gap: 15px;
    justify-content: center;
}

    .global-btns-holder .btn {
        display: grid;
        color: #555;
        align-items: center;
        justify-items: center;
        grid-template-columns: 1fr;
        grid-row-gap: 15px;
        padding: 15px;
        background: #eceaea;
        border-radius: 16px;
        box-shadow: -2px 0px 5px -3px #333;
        width: 110px;
        text-align: center;
        font-size: .75rem;
        font-weight: bold;
        border: 2px solid transparent;
    }

        .global-btns-holder .btn.important {
            color: #fff;
            background: darkorange;
            text-shadow: 0 0 1px #000;
        }

        .global-btns-holder .btn:hover {
            border: 2px solid #333;
            background: #fff;
            color: #333;
            transform: scale(1.1);
            text-shadow: none;
        }

.choose-person {
    display: grid;
    grid-template-columns: 105px 48px 1fr 90px;
    align-items: center;
    grid-column-gap: 10px;
    width: 100%;
    grid-column-start: 1;
    grid-column-end: 3;
    justify-self: start !important;
    padding: 5px 10px;
    box-sizing: border-box;
    background: white;
    border-radius: 16px;
}

    .choose-person .choose-person-title {
        opacity: .6;
        font-size: .85rem;
        justify-self: end;
        font-weight: bold;
    }

    .choose-person .not-selected {
        grid-column-start: 2;
        grid-column-end: 4;
        color: #e91e63;
        font-weight: bold;
    }

    .choose-person .selected-person {
        grid-column-start: 2;
        grid-column-end: 4;
        display: grid;
        grid-template-columns: 32px 1fr;
        align-items: center;
        grid-column-gap: 5px;
    }

        .choose-person .selected-person img {
            border-radius: 50%;
        }

    .choose-person .choose-person-tools {
        display: grid;
        justify-items: end;
        grid-column-gap: 5px;
        grid-auto-flow: column;
        justify-content: center;
    }

.clean-round-btn {
    width: 28px;
    height: 28px;
    text-align: center;
    line-height: 35px;
    border-radius: 50%;
    border: 2px solid transparent;
    cursor: pointer;
    background: #1e8de9;
    color: #ffffff;
}

.select-person-holder label {
    font-weight: bold;
    font-size: .85rem;
    margin-bottom: -10px;
    opacity: .7;
}

.choose-person .search-person-btn:hover {
    border: 2px solid #333;
}

.choose-person .search-person {
    background: #1e8de9;
    color: #ffffff;
}

.choose-person .clear-person {
    background: #e91e63;
    color: #ffffff;
}

.select2-container {
    z-index: 4000;
}

.select-person-holder {
    display: grid;
    grid-template-columns: auto;
    grid-row-gap: 15px;
}

    .select-person-holder input {
        background-color: #f5f5f5;
        border: 1px solid #aaa;
        border-radius: 10px;
        height: 34px;
        padding: 0 8px;
    }

        .select-person-holder input:focus {
            background-color: #fff;
            border: 1px solid #9b9b9b;
        }

.invite-message-holder {
    margin-top: -15px;
    font-size: .9rem;
    display: inline-block;
    color: #583f3f;
    font-weight: bold;
}

    .invite-message-holder .invite-btn {
        border-radius: 2px;
        font-size: 16px;
        padding: 4px 28px;
        cursor: pointer;
        background: #90ff62;
        color: #000;
        margin: 10px;
        display: inline-block;
    }

.other-costs {
    width: calc(100vw - 460px);
    overflow: auto;
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 10px;
    justify-content: start;
    white-space: nowrap;
}

    .other-costs > a {
        padding: 0 15px;
        background: #384456;
        color: #fff;
        border-radius: 8px;
        border: 2px solid #384456;
        font-weight: bold;
        display: grid;
        align-items: center;
        grid-template-columns: 24px 1fr;
        grid-column-gap: 7px;
    }

        .other-costs > a.current {
            background: darkred;
            border: 2px solid #333;
        }

        .other-costs > a.alt {
            background: #fff;
            color: #384456;
            border: 2px solid #384456;
        }

.costs {
    grid-template-columns: 400px 1fr !important;
}

    .costs .tabs-container {
        max-height: calc(100vh - 340px);
    }

    .costs .table .row.table-headline > div, .costs .table .row > div:first-child {
        font-size: .9rem !important;
        opacity: .5;
        white-space: nowrap;
        text-align: center;
    }

        .costs .table .row.table-headline > div span {
            display: block;
            color: #384456;
        }

    .costs .table input {
        width: 135px;
        border-radius: 4px;
        border: 1px solid #999;
    }

    .costs .tab-btn {
        font-size: 1rem;
    }

        .costs .tab-btn i {
            font-size: .8rem;
            opacity: .5;
        }

    .costs .tab-footer {
        display: grid;
        grid-template-columns: 1fr auto;
        grid-column-gap: 10px;
        text-align: right;
        align-items: center;
    }

    .costs .total-cost {
        color: darkred;
        font-size: 1.2rem;
    }

    .costs .tab-footer i {
        font-size: .85rem;
        margin-right: 5px;
        text-decoration: none;
        opacity: .75;
    }

.my-project-menu {
    display: grid;
    justify-items: start;
    grid-row-gap: 10px;
    align-items: start;
}

    .my-project-menu .projects {
        width: 100%;
    }

    .my-project-menu .my-project-menu-btns {
        display: grid;
        grid-auto-flow: column;
        grid-gap: 10px;
    }

.projects-browser {
    display: grid;
    grid-row-gap: 7px;
    padding: 10px;
    border-radius: 30px;
    background: #fff;
    width: 100%;
    box-sizing: border-box;
}

    .projects-browser .projects-browser-item {
        background: #fff;
        padding: 0 8px 0 0;
        overflow: hidden;
        border-radius: 15px;
        color: #333;
        border: 1px solid #aaa;
        display: grid;
        grid-template-columns: 1fr auto;
        gap: 10px;
        align-items: center;
    }

        .projects-browser .projects-browser-item a:last-child {
            background-color: #1D882C;
            color: #fff;
            padding: 2px 8px;
            font-size: 90%;
        }

        .projects-browser .projects-browser-item a:first-child {
            color: #000;
        }

    .projects-browser .select2-container {
        width: 100% !important;
        margin-bottom: 20px;
    }

    .projects-browser .select2-container--default .select2-selection--single {
        border-radius: 15px;
    }

/*    .projects-browser bold {
        margin: -10px;
        margin-bottom: 5px;
        background: darkred;
        color: #fff;
        padding: 15px;
        border-radius: 16px 16px 0 0;
    }*/

.my-project-menu .load-more {
    justify-self: center;
    background-color: darkorange;
    border: none
}

.file-input-with-preview {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

    .file-input-with-preview .btn, .form-icon-btn {
        width: 32px;
        height: 32px;
        padding: 0;
        overflow: hidden;
        background: #384456;
        color: #fff;
        border: 2px solid #333;
        border-radius: 50%;
        display: inline-block;
        font-size: 21px;
        text-align: center;
        line-height: 40px;
        margin-right: 5px;
    }

        .file-input-with-preview .btn.alt, .form-icon-btn.alt {
            background: darkred;
        }

    .file-input-with-preview .btns-holder {
        display: grid;
        grid-auto-flow: column;
        justify-content: start;
    }

.control-panel {
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.75);
    box-shadow: 0 0 150px #000 inset;
    display: none;
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
    text-align: center;
    justify-items: center;
    grid-column-gap: 15px;
    padding: 0 25%;
}

    .control-panel.show {
        display: grid;
    }

    .control-panel form {
        width: 100%;
    }

    .control-panel a, .control-panel button {
        background-color: #fff;
        background-image: linear-gradient(to right top, #ffffff, #ebebeb, #d8d8d8, #c5c5c5, #b2b2b2);
        padding: 35px;
        display: grid;
        border-radius: 16px;
        width: 100%;
        box-sizing: border-box;
        color: #3c3c3c;
        box-shadow: 0 0 25px -4px #000;
        border: 3px dashed black;
        transition: all .1s ease-in-out;
        cursor: pointer;
        font-size: 0;
    }

    .control-panel span {
        font-size: 6rem;
    }

    .control-panel a:hover, .control-panel button:hover {
        color: #673ab7;
        background-image: none;
        transform: scale(1.05);
    }

    .control-panel div {
        margin-top: 15px;
        font-size: .8rem;
        font-weight: bold;
    }

.empty-part {
    background: whitesmoke;
    display: grid;
    align-items: center;
    text-align: center;
    padding: 15px;
    border-radius: 16px;
    opacity: .8;
    grid-row-gap: 20px;
    color: #333;
}

    .empty-part span {
        opacity: .4;
        font-size: 6rem;
    }

.dashboard {
    display: grid;
    padding: 15px;
    padding-top: 30px;
    border-radius: 16px;
    border: 1px solid #dedede;
    grid-column-gap: 5px;
    grid-template-columns: repeat(7, 1fr);
    margin-top: 15px;
    position: relative;
}

.d-d-title {
    position: absolute;
    right: 10px;
    top: 5px;
    font-size: .85rem;
}

.dashboard a {
    display: grid;
    padding: 10px;
    text-decoration: none;
    border-radius: 20px;
    text-align: center;
    align-items: center;
    grid-row-gap: 15px;
    font-size: .65rem;
    font-weight: bold;
    color: #333;
    text-shadow: none;
}

    .dashboard a span {
        text-shadow: none;
    }

    .dashboard a:hover {
        transform: scale(1.05);
        background-image: linear-gradient(to left bottom, #ff9800, #fc9e1d, #f9a42f, #f6aa3d, #f3af4b);
        text-shadow: 2px 0 4px #fff;
        color: #000;
    }

.staff {
    width: 100%;
    display: block;
}

.table.alt .table-headline > * {
    font-size: .75rem !important;
}

.table .person-col > div {
    display: grid;
    grid-template-columns: 48px 1fr;
    align-items: center;
}

.table .person-col img {
    border-radius: 50%;
}

.table.alt .row {
    text-align: center;
}

.accounting-details > form {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

    .accounting-details > form > label {
        display: grid;
        grid-template-columns: 150px 1fr;
        grid-column-gap: 10px;
        justify-items: end;
    }

.accounting-details label input {
    direction: ltr;
    border-radius: 8px;
    border: 2px solid #555;
}

.accounting-details-calculator {
    overflow: auto;
}

    .accounting-details-calculator .table {
        white-space: nowrap;
        background: none;
        overflow: auto;
    }

    .accounting-details-calculator .expandable {
        display: none !important;
    }

    .accounting-details-calculator .table input {
        max-width: 80px;
        border-radius: 8px;
        border: 1px solid #555;
        text-align: center;
    }

    .accounting-details-calculator .table .actions-holder {
        display: grid;
        grid-auto-flow: column;
        grid-column-gap: 5px;
        align-items: center;
    }

        .accounting-details-calculator .table .actions-holder button {
            cursor: pointer;
            font-size: 19px;
            padding: 0px;
            margin: 0;
            width: 34px;
            height: 34px;
            line-height: 10px;
            border-radius: 50%;
            background: #ffffff;
            border: 2px solid #333;
            color: #000;
            box-shadow: 0 0 16px #b3b3b3 inset;
        }

            .accounting-details-calculator .table .actions-holder button:hover {
                transform: scale(1.1);
            }

.jc-bs3-container.container {
    margin: 0 auto;
    padding: 0;
    height: initial;
    overflow: initial;
    min-width: 250px;
    box-shadow: none;
    display: table;
    max-width: 850px;
}

.tabs-container .show-person {
    display: grid;
    grid-template-columns: 32px auto 1fr auto;
    align-items: center;
    grid-column-gap: 5px;
    margin: 2px;
    border: 2px solid transparent;
    border-radius: 16px;
    font-size: .9rem;
    cursor: default;
}

    .tabs-container .show-person:hover {
        border: 2px solid #555;
    }

    .tabs-container .show-person img {
        border-radius: 50%;
    }

    .tabs-container .show-person .btns {
        display: grid;
        grid-auto-flow: column;
    }

    .tabs-container .show-person .icon-btn {
        transform: scale(.85);
        margin: 2px
    }

    .tabs-container .show-person .btns > * {
        margin: 3px;
    }

.tabs-container .file-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 5px;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
}

.check-item {
    margin: 5px;
    display: grid;
    grid-template-columns: 1fr 120px;
    align-items: center;
    background: #fff;
    padding: 3px;
    border-radius: 8px;
}

    .check-item.rejected {
        box-shadow: 0 0 0 1px darkred;
        background: #fff6f6;
    }

    .check-item > button {
        justify-self: center;
        transform: scale(.85);
    }


.main-calendar {
    width: 100%;
    display: grid;
}

.main-container .date-overall {
    display: grid;
    grid-template-columns: 1fr 1fr 50px;
    border: 1px groove #00bcd4;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: -1px 4px 4px 0px #d2d2d2;
}

    .main-container .date-overall select {
        border: none;
        text-align: center;
        padding: 5px;
        font-size: 1.2rem;
        color: #00bcd4;
        font-weight: bold;
    }

        .main-container .date-overall select:first-child {
            background: #00bcd4;
            color: #fff;
            border-color: #00bcd4;
        }

    .main-container .date-overall button {
        border-radius: 0;
        border: none;
        border-right: 1px solid #00bcd4;
        background: #384456;
        color: #fff;
        font-weight: bold;
    }

.calendar-body {
    margin: 15px;
}

    .calendar-body > div {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
        grid-column-gap: 5px;
        grid-row-gap: 5px;
        text-align: center;
        align-items: center;
        margin-top: 10px;
    }

        .calendar-body > div > div {
            padding: 5px 0;
            cursor: default;
        }

            .calendar-body > div > div:nth-child(7n) {
                background: #ffeded;
                color: #330000;
            }


    .calendar-body .calendar-body-header {
        font-weight: bold;
    }

        .calendar-body .calendar-body-header > div {
            background: #e9e9e9;
            border-radius: 2px;
        }

    .calendar-body .calendar-body-days > a {
        min-height: 35px;
        border: 1px solid #e1e1e1;
        border-radius: 2px;
        position: relative;
        background: #fdfdfd;
        color: #555;
    }

        .calendar-body .calendar-body-days > a.holiday {
            background: #ffeded;
            color: #330000;
        }

        .calendar-body .calendar-body-days > a > span {
            position: absolute;
            left: 5px;
            bottom: 0;
        }

        .calendar-body .calendar-body-days > a:hover {
            border: 1px solid #555;
        }

            .calendar-body .calendar-body-days > a:hover > span {
                font-size: 1.3rem;
                font-weight: bold;
            }

    .calendar-body .calendar-body-days .selected {
        background: #e9f385;
        border-color: #878f3e;
        box-shadow: 0 0 30px inset #abb550;
        font-weight: bold;
        border-style: dashed;
    }

    .calendar-body .calendar-body-days .marked::after {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: darkred;
        border: 2px solid #fff;
        box-shadow: 0 0 4px #000;
        position: absolute;
        right: 7px;
        top: 7px;
    }

    .calendar-body .calendar-body-days .today {
        border-color: #878f3e;
        border-style: solid;
    }

.new-reminder {
    width: 85%;
    margin: 15px auto;
}

    .new-reminder .header-reminder {
        background: darkred;
        color: #fff;
        text-align: center;
        padding: 9px;
        border-radius: 16px 16px 0 0;
    }

    .new-reminder .body-reminder {
        background: #f1f1f1;
        border-radius: 0 0 16px 16px;
        padding: 15px;
    }

.calendar-events-header {
    color: darkred;
    font-weight: bold;
    margin-bottom: 15px;
}

.calendar-event {
    display: grid;
    grid-template-columns: 1fr 3fr;
    border-top: 1px solid #ededed;
}

    .calendar-event:last-child {
        border-bottom: 1px solid #ededed;
    }

.calendar-events {
    margin-top: 25px;
    text-align: center;
    padding: 5px;
}

.project-breif-item {
    background: #f8f8f8;
    border-radius: 4px;
    margin: 1px;
    padding: 5px;
}

    .project-breif-item > div:first-child {
        font-weight: bold;
    }

.reports-list {
    display: grid;
    grid-row-gap: 15px;
    padding: 15px;
    border-radius: 16px;
    background: #f8f8f8;
    align-items: start;
}

.report-list-item {
    display: grid;
    grid-template-columns: 1fr auto auto;
    grid-column-gap: 7px;
    padding-bottom: 7px;
    border-bottom: 2px dotted #555;
    align-items: start;
}

    .report-list-item:hover {
        border-bottom: 2px solid darkred;
    }


        .report-list-item:hover .report-list-item-text {
            color: darkred;
            font-weight: bold;
        }

    .report-list-item .report-list-item-text {
        color: #111;
    }

.new-report-header {
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #555;
    font-size: 1.1rem;
    opacity: .85;
}

    .new-report-header span {
        font-weight: bold;
    }

.new-report-fields > div span {
    display: block;
    opacity: .65;
    font-size: .85rem;
    font-weight: bold;
}

.new-report-fields > div input, .new-report-fields > div textarea {
    display: block;
    width: 90%;
    border-radius: 8px;
    border: solid 1px #868686;
}

.no-report-preview {
    margin: 5px;
    padding: 10px;
    border-radius: 16px;
    border: 3px dashed darkorange;
    text-align: center;
    background-color: #fbe1c2;
}

    .no-report-preview span {
        font-weight: bold;
    }

.report-preview-title {
    margin-top: 15px;
    font-weight: bold;
    text-align: center;
}

.report-preview img {
    box-shadow: 2px -2px 15px -10px #000;
    margin-top: 15px;
    border-radius: 8px;
}

.reports-holder-title {
    font-weight: bold;
    margin-bottom: 10px;
    padding: 10px;
    border-bottom: 1px dotted #555;
}

.report-item {
    color: #2f2f2f;
    padding: 5px;
    display: block;
    border-radius: 16px;
    background: #ededed;
    margin: 5px;
    font-weight: bold;
    display: grid;
    grid-auto-flow: column;
    gap: 7px;
    justify-items: start;
    justify-content: start;
    align-items: center;
}

    .report-item > a {
        background: white;
        padding: 2px 10px;
        border-radius: 8px;
        color: #151515;
        font-size: 95%;
        cursor: pointer;
    }

        .report-item > a:hover {
            box-shadow: 0 0 0 2px #000;
        }

.admin-dashboard-row > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    justify-items: center;
    align-items: center;
    margin-bottom: 15px;
    background: #f7f7f7;
    padding: 5px;
    border-radius: 8px;
    font-size: 120%;
    font-weight: bold;
}

.table-content {
    display: grid;
    grid-row-gap: 10px;
    border-radius: 8px;
    overflow: hidden;
    border: 2px solid #384456;
    background: #eeeeee;
}

.table-header {
    display: grid;
    grid-template-columns: 1fr 400px;
    grid-column-gap: 15px;
}

.table-title {
    padding-right: 15px;
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column-gap: 10px;
    font-weight: bold;
    align-items: center;
    margin-top: 10px;
}

    .table-title > div {
        font-size: 120%;
    }

.table-headline {
    background: #384456;
    color: #fff;
    padding: 10px 20px;
}

.table-headline, .table-details {
    display: grid;
    justify-items: right;
    align-items: center;
    cursor: default;
}

.table-details {
    padding: 2px 10px;
}

.table-users .table-headline, .table-users .table-details {
    grid-template-columns: 1fr 1fr 2fr 1fr 1fr;
}

.table-library .table-headline, .table-library .table-details {
    grid-template-columns: 3fr 2fr 1fr;
}

.table-education .table-headline, .table-education .table-details {
    grid-template-columns: 3fr 1fr;
}

.table-row {
    background: #ffffff;
    margin: 5px;
    border-radius: 4px;
    padding: 5px;
    display: grid;
    box-shadow: 0 0 0 2px #5c5c5c inset;
}

    .table-row:hover {
        box-shadow: 0 0 0 2px #000000;
        background: #00bcd4;
        color: #000;
        font-weight: bold;
    }

.table-actions {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 15px;
    align-items: center;
    justify-items: center;
    justify-content: center;
    background: #e4e5e9;
    padding: 10px;
    border-radius: 4px;
}

    .table-actions > a {
        display: grid;
        grid-row-gap: 7px;
        align-items: center;
        justify-items: center;
        padding: 5px;
        background: #fff;
        border-radius: 8px;
        color: #000;
        overflow: hidden;
        box-shadow: 0 0 0 2px #00bcd4;
        filter: saturate(0);
        opacity: .75;
        min-width: 100px;
    }

    .table-actions:hover > a {
        filter: saturate(1);
        opacity: 1;
    }

    .table-actions > a:hover {
        box-shadow: 0 0 0 2px #000;
    }

    .table-actions > a > span {
        color: #00bcd4;
        margin-bottom: 10px;
    }

    .table-actions > a > div {
        background: #00bcd4;
        margin: -5px;
        padding: 5px;
        color: #000;
        font-weight: bold;
        width: 100%;
        text-align: center;
    }

.table-pagination {
    display: grid;
    grid-auto-flow: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    grid-column-gap: 10px;
}

.table-footer {
    margin: 15px;
    margin-top: 0;
}

.table-pagination button {
    padding: 7px;
    border-radius: 8px;
    background: #384456;
    color: #fff;
    min-width: 32px;
    text-align: center;
}

.table-pagination > button:hover {
    box-shadow: 0 0 0 2px #000;
}

.table-search-bar {
    padding: 10px;
    padding-bottom: 0;
}

    .table-search-bar > * {
        display: grid;
        grid-template-columns: 1fr 32px;
        max-width: 500px;
        padding: 5px;
        background: #e1e1e1;
        border-radius: 8px;
        margin: 0 auto;
        overflow: hidden;
        box-shadow: 0 0 0 2px #384456;
    }

    .table-search-bar button {
        border: none;
        background: none;
    }

    .table-search-bar input {
        border: none;
        background: #ffffff70;
        border-radius: 4px;
    }

.important-question {
    padding: 15px;
    background: #ebd3b1;
    border-radius: 16px;
}

.i-q-header {
    display: grid;
    grid-template-columns: 32px auto;
    align-items: center;
}

    .i-q-header > span {
        color: #e74622;
    }

    .i-q-header > div {
        font-size: 120%;
        font-weight: bold;
        color: #df411e;
    }

.i-q-body {
    margin: 15px;
    background: #fff;
    padding: 15px;
    border-radius: 8px;
}

.i-q-footer {
    margin-left: 15px;
}

.i-q-footer-actions {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 10px;
    justify-content: end;
}

.user-info-holder {
    display: grid;
    grid-row-gap: 10px;
}

.user-info-item {
    display: grid;
    grid-template-columns: 1fr 2fr;
    color: #555;
    font-size: 85%;
}

    .user-info-item span {
        color: #000;
        font-size: 100%;
    }

.manage-roles {
    display: grid;
    grid-auto-flow: column;
    grid-column-gap: 15px;
}

.role-item {
    display: grid;
    align-items: center;
    justify-items: center;
    text-align: center;
}

.main-body .tox-tinymce {
    border: 2px solid #000;
    border-radius: 16px;
}

.library-holder {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.library-item {
    padding: 5px;
    border-radius: 16px;
    color: #000;
    max-width: 187px;
}

    .library-item:hover {
        box-shadow: 0 0 0 2px #000;
    }

    .library-item img {
        border-radius: 15px;
        box-shadow: 0 0 5px #949494;
        max-width: 187px;
    }

.library-item-title, .education-item-title {
    background: #fbfbfb;
    border-radius: 8px;
    font-size: 110%;
    margin: 2px;
}

.library-item-author {
    font-size: 90%;
}

.library-item-caption, .education-item-caption {
    font-size: 80%;
    opacity: .75;
}

.library-footer, .education-footer {
    margin-top: 15px;
}

    .library-footer .pagination, .education-footer .pagination {
        display: grid;
        grid-auto-flow: column;
        justify-items: center;
        align-items: center;
        justify-content: center;
        grid-column-gap: 10px;
    }

        .library-footer .pagination button, .education-footer .pagination button {
            padding: 7px;
            border-radius: 8px;
            background: #384456;
            color: #fff;
            min-width: 32px;
            text-align: center;
        }

            .library-footer .pagination button:hover, .education-footer .pagination button:hover {
                box-shadow: 0 0 0 2px #000;
            }

.pdfobject-container {
    height: 40rem;
    border: 1rem solid rgba(0,0,0,.1);
    margin-top: 10px;
    border-radius: 8px;
}

.book-details-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-column-gap: 15px;
    padding: 15px;
    background: #f3f3f3;
    border-radius: 8px;
}

.book-details-items {
    padding: 15px;
}

    .book-details-items > div {
        margin-block: 7px;
        font-size: 110%;
    }

.book-details-actions {
    align-self: end;
}

.pdf-container {
    height: 600px;
}

.education-holder {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-column-gap: 10px;
    grid-row-gap: 10px;
}

.education-item {
    text-align: center;
    background: #e4e4e4;
    padding: 5px;
    border-radius: 16px;
    color: #000;
}

    .education-item:hover {
        box-shadow: 0 0 0 3px #000;
    }

    .education-item img {
        border-radius: 15px;
        box-shadow: 0 0 5px #949494;
        margin-top: 10px;
    }

.article-details {
    display: grid;
    justify-items: center;
    align-items: center;
}

.article-details-header > div {
    display: grid;
}

.article-details-body {
    margin-top: 15px;
}

.article-details-header h1 {
    font-size: 130%;
}

.page-list {
    display: grid;
    grid-row-gap: 5px;
    margin: 0 auto;
    max-width: 85%;
}

    .page-list .page-list-item {
        display: grid;
        grid-template-columns: 1fr auto;
        color: #1f1f1f;
        grid-gap: 7px;
        background: #efefef;
        padding: 5px;
        border-radius: 5px;
        border: 2px solid #888;
    }

        .page-list .page-list-item:hover {
            color: #000;
            background: #ffffff;
            border: 2px solid #555;
            transform: scale(1.05);
        }

        .page-list .page-list-item.faded {
            opacity: .65;
        }

.page-list-header {
    margin-bottom: 10px;
}

.page-list-pagination {
    display: grid;
    grid-auto-flow: column;
    justify-items: center;
    align-items: center;
    justify-content: center;
    grid-column-gap: 5px;
}

    .page-list-pagination .page-list-pagination-btn {
        padding: 2px;
        border-radius: 8px;
        background: #384456;
        color: #fff;
        min-width: 32px;
        text-align: center;
        font-size: 85%;
    }

        .page-list-pagination .page-list-pagination-btn.active {
            box-shadow: 0 0 0 2px #384456 inset;
            background: #fcfcfc;
            color: #555;
            font-weight: bold;
        }

        .page-list-pagination .page-list-pagination-btn:hover {
            box-shadow: 0 0 0 2px #384456;
            background: #fcfcfc;
            color: #555;
            transform: scale(1.1)
        }

.notification-details {
    max-width: 85%;
    margin: 15px auto;
    border-radius: 8px;
    padding: 7px;
    background: #ededed;
}

.notification-details-header {
    font-size: 110%;
    font-weight: bold;
    margin-bottom: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
}

    .notification-details-header span {
        font-size: 85%;
        font-weight: normal;
        opacity: .85;
    }

.notification-details-actions {
    margin-top: 15px;
    text-align: left;
}

.reports-search-container {
    position: relative;
    padding: 4px;
    border-radius: 4px;
    background-color: #00bcd4;
    box-shadow: -4px 5px 3px rgb(0 0 0 / 8%);
    margin-bottom: 10px;
}

    .reports-search-container.active {
        background-color: #eee;
        border-radius: 8px 8px 0 0;
        box-shadow: none;
    }

.reports-search-input {
    display: grid;
    grid-template-columns: 1fr auto;
}

    .reports-search-input input {
        background: none;
        border: none;
        color: #fff;
    }

    .reports-search-input button {
        background: none;
        border: none;
        color: #fff;
        margin-top: 3px;
    }

.selected-project-container {
    border: 2px solid #555;
    border-radius: 16px;
    background: #fafafa;
    overflow: hidden;
}

.selected-project-title {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-column-gap: 10px;
    padding: 7px;
    background: #e9e9e9;
    align-items: center;
    font-weight: bold;
}

.selected-project-body {
    padding: 10px;
}

.image-preview {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #22555555;
    box-shadow: 0 0 150px #000 inset;
    z-index: 2000;
    display: none;
    overflow: auto;
    padding: 15px;
    justify-content: center;
    align-items: flex-start;
    backdrop-filter: blur(5px);
}

    .image-preview.show {
        display: flex;
    }

    .image-preview img {
        box-shadow: 0 0 35px -8px #000;
        border-radius: 4px;
    }

    .image-preview button {
        position: fixed;
        left: 15px;
        top: 15px;
        background: #ffeaea;
        border-radius: 50%;
        color: red;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 48px;
        height: 48px;
        border: 3px solid red;
        box-shadow: 0 0 0 5px darkred, 0 0 0 3px orange inset;
        cursor: pointer;
        transition: all .2s ease-in-out;
    }

        .image-preview button:hover {
            background: #fe2020;
            color: #fff;
            border: 3px solid #fdc3c3;
            box-shadow: 0 0 0 5px #d21919, 0 0 0 3px #fff inset;
        }

.remove-role {
    padding: 15px;
    background: #ffecc1;
    border-radius: 16px;
    margin: 10px;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
}

    .remove-role button {
        background: darkred;
        border-color: #020202;
    }

        .remove-role button:hover {
            background: #f3e4e4;
            border-color: darkred;
            box-shadow: 0 0 0 2px darkred;
            color: #000;
        }


.report-list-item .full-icon-btn {
    background-color: #bdf36b;
    color: #000000;
    border: 2px solid #36372a;
}

    .report-list-item .full-icon-btn.alt {
        background-color: #f2f2f2;
        color: #000000;
        border: 2px solid #494949;
    }

    .report-list-item .full-icon-btn.alt2 {
        background-color: #ff0e55;
        color: #ffffff;
        border: 2px solid #5f0000;
    }

    .report-list-item .full-icon-btn:hover {
        box-shadow: 0 0 0 2px #000;
    }

.report-item-project {
    background: darkred;
    color: #fff;
    padding: 1px 4px;
    border-radius: 16px;
    font-size: 80%;
}

.account-manage-section-title {
    font-weight: bold;
    padding-bottom: 5px;
    margin-bottom: 30px;
    border-bottom: 2px dotted #555;
    opacity: .75;
}

.button-under-title {
    display: flex;
    flex-direction: row-reverse;
    margin-top: -73px;
    margin-bottom: 15px;
    margin-left: 6px;
}

.support-page {
    display: grid;
    grid-template-columns: 1fr 2fr;
    margin: 15px;
    padding: 25px;
    font-size: 1.1rem;
}

    .support-page .support-items > div {
        display: grid;
        grid-template-columns: auto 1fr;
        grid-gap: 15px;
        direction: ltr;
        align-items: center;
        margin-bottom: 25px;
        font-size: .9rem;
    }

        .support-page .support-items > div a {
            color: #000;
        }

.weather-widget {
    display: grid;
    grid-template-columns: auto auto;
    justify-content: end;
    color: #ededed;
    margin-top: -10px;
    align-items: center;
}

    .weather-widget img {
        max-height: 64px;
    }

    .weather-widget .weather-data {
        text-align: center;
        direction: ltr;
        margin-left: -10px;
        font-size: 1.2rem;
    }

.referral-page {
    margin: 15px;
    padding: 25px;
    font-size: 1.1rem;
}

    .referral-page .info {
        text-align: center;
    }

.referral-code-holder {
    margin-top: 25px;
    display: grid;
    justify-items: center;
}

    .referral-code-holder > div {
        padding: 15px 30px;
        margin: 5px;
        border: dashed 2px #92d96a;
        border-radius: 8px;
        background: #dce9d4;
        font-size: 1.4rem;
        font-weight: bold;
    }

    .referral-code-holder > input {
        padding: 5px 10px;
        border: solid 1px #999;
        border-radius: 8px;
        background: #f4f4f4;
        font-size: .85rem;
        font-weight: bold;
        min-width: 40%;
        text-align: center;
        margin-top: 15px;
    }


.gifts-page .info {
    margin: 15px;
    font-size: 2rem;
}

.gifts-holder, .coupans-holder {
    margin-top: 25px;
}

    .gifts-holder .gifts-header, .coupans-holder .coupans-header {
        margin-bottom: 20px;
        border-bottom: 1px solid #000;
        font-weight: bold;
        font-size: 1.1rem;
    }

.gifts-page .info span:first-child {
    font-size: 1rem;
    font-weight: bold;
}

.gifts-holder .gifts {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

.referral-gift-item {
    background: #fafafa;
    padding: 15px;
    border-radius: 16px;
    border: 2px dashed #000;
    box-shadow: 0 0 0 5px #fafafa;
    color: #000;
}

.r-g-i-header {
    text-align: center;
    font-weight: bold;
    border-bottom: 1px dotted;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

.r-g-t-desc {
    opacity: .9;
    text-align: justify;
}

.r-g-t-points {
    border-top: 1px dotted;
    margin-top: 15px;
    text-align: center;
    padding-top: 10px;
    font-weight: bold;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.referral-gift-item:hover {
    border: 2px dashed #1ea339;
    box-shadow: 0 0 0 5px #ebebeb;
    cursor: pointer;
}

@keyframes big-loading-animation {
    0% {
        background: #c9e100aa;
    }

    50% {
        background: #e1b000aa;
    }

    100% {
        background: #c9e100aa;
    }
}

#bigLoading {
    position: absolute;
    left: 15px;
    bottom: 15px;
    right: 15px;
    background: #c9e100aa;
    padding: 15px 25px;
    border-radius: 18px;
    box-shadow: 2px 2px 10px -3px #000;
    font-weight: bold;
    color: #000;
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
    font-size: 110%;
    animation: 2s ease-in-out big-loading-animation infinite;
    display: none;
}

    #bigLoading.show {
        display: initial;
    }

.invoice-container {
    padding: 15px;
}

    .invoice-container .invoice-header {
        text-align: center;
        font-weight: 600;
    }

        .invoice-container .invoice-header .invoice-header-details {
            margin: 10px;
            padding: 10px;
            background: #ddd;
            border-radius: 4px 4px 0 0;
        }

            .invoice-container .invoice-header .invoice-header-details > div:nth-child(2) {
                display: flex;
            }

            .invoice-container .invoice-header .invoice-header-details span:first-child {
                flex: 20;
                text-align: right;
            }

            .invoice-container .invoice-header .invoice-header-details span {
                font-size: .7em;
                color: #777;
            }

                .invoice-container .invoice-header .invoice-header-details span > span {
                    font-size: 1.5em;
                    color: #222;
                    margin-right: 7px;
                }

    .invoice-container .invoice-body {
        margin: 10px;
        padding: 10px;
        background: rgb(236, 236, 236);
        margin-top: -10px;
    }

        .invoice-container .invoice-body .record {
            display: flex;
            font-weight: bold;
            background: #e0e0e0;
            font-size: 1.1em;
            margin: 5px;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0px 2px 3px -3px #000;
            transition: .4s ease-in-out;
            transition-property: background, color;
        }

            .invoice-container .invoice-body .record:hover {
                background: #de8acb !important;
                color: black !important;
            }

            .invoice-container .invoice-body .record > div:first-child {
                flex: 2;
                background: rgba(204, 204, 204, 0.6);
                text-align: center;
            }

            .invoice-container .invoice-body .record:nth-child(2n+1) {
                background: #fff;
            }

            .invoice-container .invoice-body .record > div:nth-child(2) {
                flex: 50;
            }

            .invoice-container .invoice-body .record > div:nth-child(3) {
                flex: 60;
                font-size: .8em;
                opacity: .7;
                line-height: 2em;
            }

            .invoice-container .invoice-body .record > div:nth-child(4) {
                flex: 5;
                font-size: 1.1em;
            }

        .invoice-container .invoice-body .record-header {
            display: flex;
            margin: 0 10px;
            font-size: .75em;
            font-weight: bold;
            opacity: .5;
        }

            .invoice-container .invoice-body .record-header > div:first-child {
                flex: 3;
            }

            .invoice-container .invoice-body .record-header > div:nth-child(2) {
                flex: 48;
            }

            .invoice-container .invoice-body .record-header > div:nth-child(3) {
                flex: 57;
            }

            .invoice-container .invoice-body .record-header > div:last-child {
                flex: 5;
            }

        .invoice-container .invoice-body .record > div:nth-child(4) {
            flex: 5;
            font-size: 1.1em;
        }

        .invoice-container .invoice-body .record > div {
            padding: 7px;
        }

    .invoice-container .invoice-footer {
        margin: 10px;
        padding: 10px 25px;
        background: rgb(236, 236, 236);
        border-radius: 0 0 4px 4px;
        margin-top: -10px;
        font-size: 1.1em;
        font-weight: 500;
    }

        .invoice-container .invoice-footer p {
            font-size: .9em;
            margin: 0;
            font-weight: bold;
            opacity: .8;
        }

        .invoice-container .invoice-footer .invoice-payment {
            display: grid;
            grid-template-columns: 1fr 1fr;
            background: #fff;
            padding: 10px;
            border-radius: 8px;
            margin: 5px;
        }

            .invoice-container .invoice-footer .invoice-payment .price {
                font-size: 1.5em;
                color: #4a4a4a;
                font-weight: bold;
            }

                .invoice-container .invoice-footer .invoice-payment .price.old {
                    font-size: .85em;
                    color: #4a4a4a;
                    text-decoration: line-through;
                }

    .invoice-container .terms-checkbox input {
        display: inline-block;
        width: initial;
    }

@keyframes simple-btn-loading-animation {
    0% {
        content: " ."
    }

    20% {
        content: " .."
    }

    40% {
        content: " ..."
    }

    60% {
        content: " ...."
    }

    80% {
        content: " ....."
    }

    100% {
        content: " ......"
    }
}

#pay.loading::after {
    content: "";
    animation: 5s ease-in-out simple-btn-loading-animation infinite;
}

.convert-subscription {
    text-align: center;
    margin: 15px 0;
}

.convert-plan-container > div {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
}

    .convert-plan-container > div > span:first-child {
        text-align: left;
        opacity: .85;
    }

    .convert-plan-container > div > span:last-child {
        font-weight: bold;
    }

.coupans {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-gap: 15px;
}

    .coupans .coupan {
        background: #fafafa;
        padding: 15px;
        border-radius: 16px;
        border: 2px dashed #000;
        box-shadow: 0 0 0 5px #fafafa;
        color: #000;
    }

.a-c-header {
    text-align: center;
    font-weight: bold;
    border-bottom: 1px dotted;
    padding-bottom: 5px;
    margin-bottom: 15px;
}

    .a-c-header span {
        display: block;
        font-size: 85%;
        opacity: .8;
    }

.a-c-code input {
    text-align: center;
    font-weight: bold;
    width: 100%;
    border: 1px solid #555;
    border-radius: 6px;
}

.a-c-date {
    color: #555;
    font-size: 80%;
    text-align: center;
    border-top: 1px dotted;
    margin-top: 15px;
    padding-top: 10px;
}

    .a-c-date span {
        font-size: 120%;
        color: #000;
        font-weight: bold;
    }

.a-c-amount {
    text-align: center;
}

.invoice-payment #discount {
    width: 100%;
}

.custom-select-container .select2-container--default .select2-selection {
    border: 2px solid #3c3c3c;
    border-radius: 16px;
    padding: 2px 5px;
    min-width: 340px;
    background: #fff;
    font-size: 0;
    box-sizing: border-box;
}

.custom-select-container .select2.select2-container.select2-container--default {
    width: initial !important;
}

.custom-select-container .select2-container--default .select2-selection__choice {
    font-size: 1rem;
    margin-top: 0;
}

.custom-select-container .select2-container--default .select2-search--inline .select2-search__field {
    font-size: 1rem;
    margin-top: 1px;
}

.l-c-h-title {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 10px;
    margin-bottom: 10px;
    font-weight: bold;
}

    .l-c-h-title a {
        color: #555;
        font-weight: 100;
    }

.l-c-h-body {
    display: flex;
    gap: 10px;
}

.library-category-holder {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px dotted #d0d0d0;
}

@media only screen and (max-width: 1800px) {
    .library-category-holder .library-item:nth-child(n+6) {
        display: none;
    }
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr auto atuo;
    grid-gap: 7px;
}

.d-g-holder {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 7px;
    align-items: center;
}

.reports-upload-container {
    margin-bottom: 15px;
    padding: 8px;
    border-radius: 16px;
}

.modal .form-regular div > input {
    width: 100%;
}

.data-2-col-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 10px;
    align-content: center;
}

    .data-2-col-table > *:nth-child(2n) {
        justify-self: start;
        font-weight: bold;
    }

    .data-2-col-table > *:nth-child(2n + 1) {
        justify-self: end;
        opacity: .85;
    }

        .data-2-col-table > *:nth-child(2n + 1):after {
            content: ":";
        }


.weather-dashboard {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: 7px;
    padding: 15px;
    padding-top: 30px;
    border-radius: 16px;
    border: 1px solid #dedede;
    margin-top: 15px;
    background: #d7d7d7;
}

    .weather-dashboard img {
        max-height: 76px;
    }

    .weather-dashboard .current-weather {
        font-size: 1.4rem;
        font-weight: bold;
    }

    .weather-dashboard > div {
        direction: ltr;
        text-align: center;
    }

.low-high-weather {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    opacity: .85;
    grid-column-gap: 25px;
    margin-top: 10px;
}

    .low-high-weather small {
        padding: 3px;
        font-size: 1.1rem;
    }

        .low-high-weather small:first-child {
            color: #0a0a2a;
        }

        .low-high-weather small:last-child {
            color: #2b0707;
        }

.calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    grid-gap: 7px;
    font-size: .85rem;
    padding: 15px;
    border-radius: 5px;
}

    .calendar > div {
        background: #fff;
        border-radius: 4px;
        color: #000;
        width: 100%;
        text-align: center;
        font-weight: bold;
    }

    .calendar .flagged {
        background: #f7d4d4;
    }

    .calendar .today {
        background: #90e1ff;
        text-decoration: underline;
    }

    .calendar .flagged.today {
        background: #f7d4d4;
        box-shadow: 0 0 0 4px #90e1ff inset;
    }

    .calendar .empty {
        visibility: collapse;
        padding: 0;
    }

    .calendar .header {
        margin-bottom: 10px;
        background: #d7d7d7;
    }

        .calendar .header span:last-child {
            display: none;
        }


/*dashbaord test started*/

@keyframes global-dashboard-hiding-animation {
    0% {
        opacity: 1;
        top: 0;
        bottom: 0;
    }

    100% {
        opacity: 0;
        top: -5%;
        bottom: 5%;
    }
}

@keyframes global-dashboard-showing-animation {
    0% {
        opacity: 0;
        top: -5%;
        bottom: 5%;
    }

    100% {
        opacity: 1;
        top: 0;
        bottom: 0;
    }
}

.global-dashboard {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: #000000a7;
    backdrop-filter: blur(15px);
    z-index: 10000;
    display: none;
    direction: ltr;
    box-shadow: 0 0 150px #000 inset;
}

    .global-dashboard.hiding {
        animation: .5s ease-in-out global-dashboard-hiding-animation;
    }

    .global-dashboard.showing {
        animation: .5s ease-in-out global-dashboard-showing-animation;
    }

    .global-dashboard.show {
        display: block;
    }

.g-d-close-btn {
    background: #e94866;
    color: #ffffff;
    border: 1px solid #ff006c;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    display: grid;
    width: 32px;
    height: 32px;
    justify-content: center;
    font-size: 1.5rem;
    font-size: 0;
    box-shadow: 0 0 15px #f00;
    cursor: pointer;
    transition: .5s ease-in-out background, color;
    position: fixed;
    top: 15px;
    right: 15px;
    z-index: 1;
}

    .g-d-close-btn:hover {
        background: #fff;
        color: #f00;
    }

    .g-d-close-btn span::before {
        font-size: 1.5rem;
    }

.g-d-content {
    display: grid;
    grid-template-columns: 2fr 3fr 2fr;
    margin: 5px;
    padding: 10px;
    direction: rtl;
    max-width: 1100px;
    background: #0000007a;
    border-radius: 16px;
    grid-gap: 10px;
}

.g-d-global-loading {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    display: grid;
    background: #000000ce;
    grid-template-rows: auto auto;
    align-content: center;
}

    .g-d-global-loading img {
        align-self: center;
        justify-self: center;
        filter: drop-shadow(0 4px 9px #0ff)
    }

.g-d-global-loading-text {
    text-align: center;
    text-shadow: 0 0 12px #00fffd;
    color: #fff;
    margin-top: 15px;
}

    .g-d-global-loading-text span {
        display: block;
        font-size: .85rem;
    }


.g-d-apps-container {
    background: #000000a3;
    border-radius: 15px;
    box-shadow: 0 0 20px -15px #000;
    color: #fff;
    padding: 15px;
    display: grid;
    align-content: space-between;
    background-size: cover;
    position: relative;
    overflow: auto;
    grid-gap: 7px;
    height: calc(100vh - 60px);
    background: radial-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.8)), url(/images/g-d-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}

    .g-d-apps-container > * {
        z-index: 1;
    }

.g-d-top-widget {
    border-bottom: 2px dotted #fff;
    padding: 15px;
    border-radius: 15px;
    background: #0a0a0a;
    background: repeating-radial-gradient(circle farthest-corner at center center, #5a163d54 0%, #15010dab 100%);
    cursor: default;
}

    .g-d-top-widget .g-d-time {
        font-size: 3.5rem;
        text-align: center;
        color: #ffffff;
        text-shadow: 0 0 7px #ae8bd4, 0 0 10px #ae8bd4, 0 0 21px #ae8bd4;
        line-height: 5rem;
    }

    .g-d-top-widget .g-d-date {
        color: #d68aa2;
        text-align: center;
        text-shadow: 0 0 5px #e70000;
        overflow: hidden;
    }

        .g-d-top-widget .g-d-date .g-d-event {
            font-size: .75rem;
            color: #fff;
            opacity: .85;
            text-align: left;
            padding: 2px;
            border-radius: 5px;
            background: linear-gradient(to right, rgb(0, 0, 0) 0%, rgb(0, 0, 0, 0.45) 24%, rgba(255, 255, 255, 0) 100%);
        }

            .g-d-top-widget .g-d-date .g-d-event.holiday {
                background: linear-gradient(to right, rgba(247, 0, 94, 1) 0%, rgba(247, 0, 94, 0.45) 24%, rgba(255, 255, 255, 0) 100%);
            }

.g-d-weather-widget {
    display: grid;
    justify-content: center;
    direction: ltr;
}

    .g-d-weather-widget.not-update {
        filter: brightness(0.5);
    }

    .g-d-weather-widget img {
        max-width: 150px;
        border-top: 2px solid #ededed;
    }

.g-d-current-weather {
    font-size: 2rem;
    text-align: center;
    margin-top: -15px;
}

.g-d-low-high-weather {
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
    opacity: .85;
    grid-column-gap: 15px;
}

    .g-d-low-high-weather small {
        padding: 3px;
        background: #0000009c;
        border-radius: 15px;
        border: 1px solid;
    }

        .g-d-low-high-weather small:first-child {
            color: #b6b6ff;
        }

        .g-d-low-high-weather small:last-child {
            color: #ff9c9c;
        }

.g-d-apps-widget {
    display: grid;
    grid-gap: 5px;
    grid-template-columns: repeat(3, 1fr);
    align-content: start;
    justify-items: center;
}

    .g-d-apps-widget > a {
        color: #54213e;
        padding: 7px;
        border-radius: 50%;
        height: 48px;
        width: 48px;
        background: #fff;
        border: 3px solid #ffffff;
        box-shadow: 0 0 0 3px #54213e inset;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        margin-bottom: 25px;
        font-size: 2rem;
        line-height: 0;
    }

        .g-d-apps-widget > a:nth-child(n+8) {
            display: none;
        }

        .g-d-apps-widget > a:hover {
            background: rgb(84 33 62);
            color: #fff;
        }

        .g-d-apps-widget > a.active {
            background: #b7437f;
            color: #ffffff;
            box-shadow: 0 0 15px, 0 0 18px #000 inset;
            text-shadow: 0 0 10px #000;
        }

        .g-d-apps-widget > a > small {
            position: absolute;
            font-size: .75rem;
            opacity: .85;
            bottom: -25px;
            color: #fff;
            white-space: nowrap;
            line-height: 1.3rem;
        }

.g-d-search-container {
    background: #fffffff0;
    padding: 2px;
    border-radius: 15px;
    display: grid;
    grid-template-columns: 1fr 32px;
    box-shadow: 0px 13px 19px #00000047;
}

    .g-d-search-container input {
        border: none;
        padding: 7px;
        background: none;
    }

    .g-d-search-container button {
        border: none;
        background: none;
    }

.g-d-search-widget {
    grid-column-start: 1;
    grid-column-end: 4;
    margin-bottom: 20px;
    width: 96%;
}

.g-d-major-container {
    grid-gap: 15px;
    padding: 5px;
    overflow: auto;
    height: calc(100vh - 40px);
}

    .g-d-major-container > *:first-child {
        margin-bottom: 10px;
    }

.g-d-weather-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 7px;
}

.g-d-weather-item {
    display: grid;
    justify-content: center;
    justify-items: center;
    border: 2px solid #272727;
    padding: 5px;
    border-radius: 15px;
    background: #000000b8;
    color: #fff;
    box-shadow: 0 0 5px #000;
    text-shadow: 0 0 10px black;
}

.g-d-weather-item-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-column-gap: 15px;
}

    .g-d-weather-item-details div {
        font-size: 1rem;
        padding: 3px;
        border-radius: 5px;
        color: #ee7a7a;
        text-align: center;
        font-weight: bold;
    }

        .g-d-weather-item-details div:first-child {
            color: #dff0ff;
        }

.g-d-weather-header {
    font-size: .85rem;
}

.g-d-calendar {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    justify-items: center;
    grid-gap: 7px;
    font-size: .85rem;
    padding: 15px;
    background: #00000040;
    border-radius: 5px;
}

    .g-d-calendar > div {
        padding: 5px;
        background: #ffffff2b;
        border-radius: 4px;
        color: #fff;
        width: 100%;
        text-align: center;
        font-weight: bold;
        box-shadow: 0 0 5px #000;
        cursor: default;
        box-sizing: border-box;
    }

    .g-d-calendar .g-d-flagged {
        background: #e23853;
    }

    .g-d-calendar .g-d-special {
        box-shadow: 0 0 5px #000, 0 0 15px #3476ff;
    }

    .g-d-calendar .g-d-today {
        background: #fff;
        color: #000;
    }

    .g-d-calendar .g-d-flagged.g-d-today {
        background: #e23853;
        color: #fff;
        box-shadow: 0 0 0 2px #fff inset;
    }

    .g-d-calendar .g-d-empty {
        visibility: collapse;
    }

    .g-d-calendar .g-d-header {
        margin-bottom: 10px;
        background: #ffffff12;
        color: #fff;
        box-shadow: 0 0 5px #000;
    }

.g-d-events {
    background: #ffffff14;
    border-radius: 5px;
    color: #fff;
    display: flex;
    flex-direction: column;
    padding: 5px;
    font-size: .95rem;
    gap: 3px;
    margin-top: 10px;
}

    .g-d-events .g-d-calendar-event {
        font-size: .85rem;
        border-bottom: 1px dotted #555;
        padding: 3px;
        border-radius: 5px;
    }

        .g-d-events .g-d-calendar-event span {
            padding: 1px;
            display: inline-flex;
            background: #1f1f1f;
            color: #d6d6d6;
            width: 24px;
            height: 24px;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
            margin-bottom: 2px;
            margin-left: 5px;
        }

        .g-d-events .g-d-calendar-event.g-d-flagged {
            background: #e238532b;
        }

            .g-d-events .g-d-calendar-event.g-d-flagged span {
                background: #e23853;
                color: #fff;
            }

.g-d-c-btns {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-top: -12px;
    z-index: 1;
}

    .g-d-c-btns button {
        border-radius: 50%;
        background: #343434ff;
        color: #fff;
        border: none;
        width: 24px;
        height: 24px;
        box-shadow: 0 0 0 3px #222222, 0 0 0 3px #222 inset;
    }

        .g-d-c-btns button:hover {
            box-shadow: 0 0 0 2px #fff inset;
            cursor: pointer;
        }

.g-d-projects {
    padding: 10px;
    border-radius: 15px;
    box-shadow: 0 0 0 2px #000 inset;
    background: #00000052;
    max-height: calc(100vh - 40px);
    overflow: auto;
    max-width: 350px;
}

.g-d-projects-header {
    font-size: 1.1rem;
    color: #ffbf00;
    text-shadow: 0 0 10px;
    margin-bottom: 10px;
}

.g-d-projects-empty {
    font-size: .85rem;
    opacity: .85;
    color: #838383;
}

.g-d-p-item {
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    margin-bottom: 5px;
    padding: 5px;
    background: #ffffff14;
    box-shadow: 0 0 5px #000;
    border-radius: 15px 0 15px 0;
    font-size: .85rem;
    justify-content: space-between;
    border: 2px solid #000;
    color: #fff;
    align-items: center;
}

    .g-d-p-item:hover {
        border: 2px solid goldenrod;
        cursor: pointer;
    }

.g-d-p-caption {
    font-size: .85rem;
    opacity: .85;
    color: #aee865;
}

.g-d-p-type {
    font-size: .75rem;
    opacity: .5;
}

.g-d-toggle-btn {
    position: fixed;
    left: 15px;
    bottom: 15px;
    background: #f67f4b;
    color: #fff;
    display: grid;
    justify-items: center;
    align-items: center;
    font-size: 0;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    background: #1b2d3d;
    border: 3px solid #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: .3s ease-in-out background, color;
    cursor: pointer;
    box-shadow: 2px 3px 10px -5px #000;
}

    .g-d-toggle-btn:hover {
        color: #1b2d3d;
        background: #fff;
    }

    .g-d-toggle-btn span::before {
        font-size: 2rem;
        font-weight: bold;
    }


/*dashbaord test ended*/


[v-cloak] {
    display: none;
}

.project-card {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

    .project-card .p-c-content {
        width: 50%;
        min-width: 300px;
        max-width: 420px;
        text-align: center;
        margin: 0 auto;
        background: #e9e9e9;
        margin-top: 15%;
        border-radius: 16px 0;
        box-shadow: 0 0 15px #000, 0 0 65px darkorange, 0 0 75px #999 inset;
        padding: 15px;
        opacity: .95;
    }

.p-c-actions {
    margin-top: 15px;
    display: flex;
    gap: 5px;
    justify-content: center;
}

    .p-c-actions > a {
        background: #555;
        border-radius: 8px;
        color: #fff;
        padding: 2px 16px;
    }

        .p-c-actions > a:last-child {
            background: #d4133e;
        }

        .p-c-actions > a:hover {
            box-shadow: 0 0 0 2px #000;
        }

.p-c-info {
    margin: 7px;
    padding: 7px;
    border: dotted 2px #b6b6b6;
    border-radius: 16px 0;
    display: inline-block;
    background: #f6f6f6;
    font-size: 120%;
}

    .p-c-info > div {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .p-c-info > div span {
            width: 100px;
        }

            .p-c-info > div span:first-child {
                opacity: .75;
                font-size: .85rem;
                text-align: left;
            }

            .p-c-info > div span:last-child {
                text-align: right;
            }

.p-c-progress {
    width: 100%;
    height: 6px;
    border-radius: 85px;
    background: #666;
}

    .p-c-progress > div {
        background: #0f0;
        box-shadow: 0 0 4px #000 inset, 0 0 15px orange;
        height: 4px;
    }

.toggle-password-eye {
    float: right;
    top: -24px;
    left: calc(-100% + 24px);
    position: relative;
    cursor: pointer;
}

    .toggle-password-eye::after {
        content: "";
        clear: both;
    }

.modal__container {
    padding: 45px;
    max-width: 80vw;
    min-width: 30vw;
    max-height: 90vh;
    border-radius: 25px;
}

.modal__container__big {
    width: 40vw;
}

.modal__container__small {
    min-width: 350px;
    max-width: 350px;
}

.modal__header {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    border-bottom: 1px solid #e6e6e6;
    padding-bottom: 10px;
    margin: -15px;
    margin-top: -25px;
    margin-bottom: 15px;
}

    .modal__header .caption {
        font-size: .8rem;
        margin-top: 5px;
        opacity: .65;
    }

.modal__close {
    color: #555;
    font-weight: bold;
    font-size: 1.1rem;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    font-family: "Font Awesome 5 Pro";
    font-weight: 300;
    position: relative;
    margin: 0;
    top: 4px;
    left: -2px;
    border-width: 0 !important;
    color: #7a7a7a;
}

.modal__container .select2-selection--single .select2-selection__arrow b {
    top: 9px;
    left: 3px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\f002";
}

.modal__container .select2-container .select2-selection--single {
    height: 40px;
    outline: none;
}

.modal__container .select2-container--default .select2-selection--single {
    border-radius: 10px;
}

    .modal__container .select2-container--default .select2-selection--single .select2-selection__rendered {
        line-height: 40px;
    }

.modal__container .select2-container--default .select2-selection--single {
    background-color: #f5f5f5;
}

.modal__container .selected-person-show {
    margin-top: -10px;
    font-size: .8rem;
    font-weight: bold;
    margin-right: 15px;
    color: #1D882C;
}

.modal__container .modal-seperator {
    margin: 15px 0 20px 0;
    border-bottom: 2px dashed #e1e1e1;
}

.modal__footer {
    display: grid;
    grid-auto-flow: column;
    justify-content: end;
    gap: 10px;
}

.new-cost-modal-form {
    display: grid;
    grid-template-columns: auto;
    grid-row-gap: 15px;
}

.messagin-header {
    border: 1px solid orange;
    border-radius: 10px;
    color: orange;
    padding: 15px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 7px;
    align-items: center;
    margin-bottom: 20px;
}

.messaging-form {
    display: grid;
    grid-template-columns: 1fr;
    grid-row-gap: 0;
    padding: 15px;
    border: 1px solid #b4b4b4;
    border-radius: 20px;
}

    .messaging-form label {
        color: #555;
        font-size: .9rem;
        justify-self: start;
    }

    .messaging-form input, .messaging-form select {
        min-width: initial;
        margin-bottom: 15px;
        padding: 5px 10px;
        background-color: #f5f5f5;
        border-radius: 8px;
    }

        .messaging-form input:focus, .messaging-form select:focus {
            background-color: #fff;
        }

.messaging-btns {
    display: grid;
    grid-template: 1fr 1fr;
    gap: 10px;
    margin: 15px 0;
}

    .messaging-btns button:last-child {
        grid-column-start: 1;
        grid-column-end: 3;
    }

.messaging-form.form-regular .btn {
    border-radius: 8px;
    border: initial;
    box-sizing: border-box;
    color: initial;
}

.messaging-info {
    font-size: .85rem;
    margin-top: -10px;
    color: #1D882C;
    font-weight: bold;
}

.to-be-send-message {
    background-color: #f5f5f5;
    padding: 5px;
    border-radius: 10px;
    color: #000;
    width: calc(100% - 10px);
    height: 180px;
}

#copyToClipboard.copied::after {
    content: ' OK';
}

.messaging-log {
    display: grid;
    gap: 35px;
}

.message-log {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 25px;
    align-items: center;
    box-shadow: 0 4px 5px -6px #222;
    padding: 7px;
}

    .message-log .heading {
        display: grid;
        grid-template-rows: 1fr 1fr;
        position: relative;
    }

        .message-log .heading span {
            max-width: 100%;
            overflow: hidden;
            white-space: nowrap;
        }

        .message-log .heading::after {
            content: "";
            left: 0;
            top: 0;
            bottom: 0;
            position: absolute;
            background: linear-gradient(90deg, #fff, transparent);
            width: 20%;
        }

#showMessageDetails .first-heading {
    font-weight: bold;
    opacity: .85;
    margin-bottom: 10px;
}

#showMessageDetails textarea {
    height: 120px;
    width: calc(100% - 20px);
    border-radius: 8px;
    border: 1px solid #f1f1f1;
    padding: 10px;
    background: #f9f9f9;
}

#showMessageDetails .second-heading {
    font-weight: bold;
    opacity: .85;
    margin-bottom: 15px;
    margin-top: 15px;
    padding-bottom: 5px;
    border-bottom: 1px dashed #555;
}

#showMessageDetails .message-details {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
}

    #showMessageDetails .message-details div div:first-child {
        font-size: .9rem;
    }

    #showMessageDetails .message-details div div:last-child {
        margin-top: 15px;
    }

.invoice-record {
    color: #000;
}

    .invoice-record.payed {
        background: #d9e6d9;
    }

    .invoice-record.cant-pay {
        background: #e6d9d9;
    }

    .invoice-record span:last-child {
        padding-right: 10px;
        font-size: 90%;
    }

        .invoice-record span:last-child::before {
            content: "(";
        }

        .invoice-record span:last-child::after {
            content: ")";
        }

#pdf iframe {
    width: calc(100% - 10px);
    border: 0;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 1px 1px 4px -2px;
    padding: 5px;
    box-sizing: content-box;
    font-family: inherit;
}

.coupan-item {
    color: #333;
    display: grid;
    grid-auto-flow: column;
    gap: 10px;
    justify-content: start;
}

    .coupan-item > span:first-child {
        background: #4c4c4c;
        border-radius: 3px;
        padding: 1px 5px;
        color: #fff;
    }

.new-report-fields > div .n-w-filter {
    float: left;
    width: 30px;
    height: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    background: none;
    border-radius: 50%;
    display: grid;
    align-content: center;
    text-align: center;
    background-color: #1b2d3d;
    cursor: pointer;
    border: 3px solid #fff;
    position: relative;
    transition: .3s ease-in-out background, color;
}

    .new-report-fields > div .n-w-filter:hover {
        background-color: #fff;
        border: 3px solid #1b2d3d;
    }

        .new-report-fields > div .n-w-filter:hover span {
            color: #1b2d3d;
            transition: .3s ease-in-out color;
        }

    .new-report-fields > div .n-w-filter span {
        font-size: 16px;
        color: #fff;
        opacity: 1;
        line-height: 14px;
    }

.n-r-add-text {
    padding: 6px 3px;
    border-radius: 4px;
    background: #eeeeee;
    margin: 3px;
}

    .n-r-add-text:hover {
        box-shadow: 0 0 0 2px #000;
        cursor: pointer;
    }

.n-r-search-input {
    display: grid;
    grid-template-columns: 1fr auto;
}

    .n-r-search-input input {
        background: none;
        border: none;
    }

.n-r-search-input {
    display: grid;
    grid-template-columns: 1fr auto;
    box-shadow: 0 2px 7px -3px;
    border-radius: 8px;
    margin-bottom: 15px;
    padding: 4px 10px;
}

    .n-r-search-input button {
        background: none;
        border: none;
        color: #384456;
        margin-top: 3px;
    }

.n-r-search-container {
    height: 60vh;
    max-width: 60vw;
    overflow: auto;
}

.modal--content-helper {
    margin-bottom: 0;
}

#previewContainer {
    margin: 5px;
    display: grid;
    grid-auto-flow: column;
    gap: 5px;
    justify-content: start;
}

    #previewContainer > * {
        border-radius: 50%;
        background: grey;
        width: 64px;
        height: 64px;
        display: grid;
        align-items: center;
        justify-content: center;
        border: 1px solid #999;
    }

span.r-l-i-type {
    background: #474747;
    color: #fff;
    padding: 0 8px;
    border-radius: 4px;
}

.progress-wrapper {
    width: 100%;
}

    .progress-wrapper .progress {
        background-color: #d7eed7;
        width: 0%;
        border-radius: 10px;
        color: #555;
    }

.r-f-manage {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 7px;
    align-items: center;
    background: #e8e8e8;
    padding: 3px;
    border-radius: 8px;
}

    .r-f-manage .btn {
        border-radius: 50%;
        width: 32px;
        height: 32px;
        padding: 0;
        display: grid;
        justify-items: center;
        align-items: center;
        color: #555;
        border-color: #555;
    }

    .r-f-manage .btn:hover {
        background: #ededed;
    }