/** for back **/
/*.content-wrapper, .right-sides011 {
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    background: url("../images/intro__logo.svg");
    background-size: cover;
    background-color: #2c6ed5;
    padding: 15px;
}*/

::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-thumb {
    background-color: #3c8dbc;
}

.order-name {
    font-size: 12pt;
    margin-bottom: 1em;
}

.order-number {
    font-size: 10pt;
    margin: 1em 3em 1em 0;
}

.order-number p {
    text-align: right;
}

.order-text {
    margin: 0 1em 0 0;
}

.order-members {
    margin: 0 0 0 2.2em;
}

.cke_chrome {
    border: 1px solid #2196f3b8 !important;
}

.cke_top {
    border-bottom: 1px solid #2196f3b8 !important;
    background: #2196f342 !important;
}

.cke_bottom {
    background: #2196f342 !important;
}

.a-app-temp {
    width: 90%;
    height: 100%;
    max-width: 890px;
    border: #03a9f4 1px dashed;
    margin: 20px auto;
    background-color: #03a9f41f;
    padding: 50px 40px 43px 40px !important;
}

.doc-body {
    margin: 10mm 10mm 10mm 18mm;
}

@page {
    /*size: A4;*/
    margin: 10mm 2mm 5mm 2mm;
}

@media print {
    .a-app-temp {
        width: 100%;
        height: 100%;
        border: none;
        margin: 0;
        background-color: white;
        padding: 0;
    }

    .a-app-temp img {
        border: none;
    }

    .doc-body {
        margin: 10mm 10mm 10mm 18mm;
    }

    .page-a4 {
        width: initial;
        height: initial;
    }
}

.timeline::before {
    background: #03a9f4 !important;
}

.a_commission_table tbody tr td {
    vertical-align: top;
    line-height: 32px;
    font-weight: 500;
}

.loading-gif {
    background: url("../images/loading-3.gif") no-repeat center top;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    opacity: 0.5;
}

.loading-compose-gif {
    background: url("../images/loading_7.gif") no-repeat center top;
    position: absolute;
    top: 10px;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 9999999;
    opacity: 0.5;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #4caf50 !important;
    border-radius: 0 !important;
    height: 33px !important;
}

.filter {
    background-color: #00bcd445;
    border: 1px solid #00bcd47a
}

.ui-autocomplete {
    max-height: 200px;
    overflow-y: auto;
    /* prevent horizontal scrollbar */
    overflow-x: hidden;
    /* add padding to account for vertical scrollbar */
    padding-right: 20px;
}

page {
    background: white;
    display: block;
    margin: 0 auto 0.5cm;
    box-shadow: 0 0 0.5cm rgba(0, 0, 0, 0.5);
    padding-top: 100px;
    padding-right: 15px;
}

page[size="A4"] {
    width: 95%;
    height: 90vh;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

/* Home blade css */
:root {
    --surface-color: #fff;
    --curve: 20;
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 2rem 1vw;
    padding: 0;
    list-style-type: none;
}

.card {
    position: relative;
    display: block;
    height: 100%;
    border-radius: calc(var(--curve) * 1px);
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

.card:hover img {
    transform: scale(1.2);
    transition: 0.5s;
}

.card:hover {
    box-shadow: 0 0 11px rgba(33, 33, 33, .2);
}

.card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card__overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    border-radius: calc(var(--curve) * 1px);
    background-color: var(--surface-color);
    transform: translateY(100%);
    transition: .2s ease-in-out;
}

.card:hover .card__overlay {
    transform: translateY(0);
}

.card__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 2em;
    padding: 2em;
    border-radius: calc(var(--curve) * 1px) 0 0 0;
    background-color: var(--surface-color);
    transform: translateY(-100%);
    transition: .2s ease-in-out;
}

.card__arc {
    width: 80px;
    height: 80px;
    position: absolute;
    bottom: 100%;
    right: 0;
    z-index: 1;
}

.card__arc path {
    fill: var(--surface-color);
    d: path("M 40 80 c 22 0 40 -22 40 -40 v 40 Z");
}

.card:hover .card__header {
    transform: translateY(0);
    color: red;
}

.card__thumb {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.card__title {
    font-size: 1.4em;
    margin: 0 0 .3em;
    color: #3C8DBC;
}

.card:hover .card__title {
    color: red;
}

.card__tagline {
    display: block;
    margin: 0;
    font-family: "MockFlowFont";
    font-size: .8em;
    color: #D7BDCA;
}

.card__status {
    font-size: .8em;
    color: #D7BDCA;
}

.card__description {
    padding: 0 2em 2em;
    margin: 0;
    color: #D7BDCA;
    font-family: "MockFlowFont";
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

b {
    color: #030149;
}

.card1 {
    width: 250px;
    height: 292px;
    border-radius: 10px;
    box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    overflow: hidden;
}

.card1 .ds-top {
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    width: 300px;
    height: 80px;
    background: #3C8DBC;
    animation: dsTop 1.5s;
}

.card1 .avatar-holder {
    top: -50px;
    position: relative;
    margin: auto;
    right: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC;

    overflow: hidden;
    animation: mvTop 1.5s;
}

.card1 .avatar-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card1 .name {
    top: -30px;
    margin: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    text-align: center;
    animation: fadeIn 2s ease-in;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.card1 .name h6 {
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    width: 40px;
}

.card1 .button {
    top: 300px;
    padding: 8px;
    margin: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    height: 40px;
    text-align: center;
    animation: fadeIn 2s ease-in;
    outline: none;
    background: #3C8DBC;
}

.card1 .button a {
    padding: 5px 20px;
    border-radius: 10px;
    color: white;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-size: 12px;
    transition: all 1s;
}

.card2 {
    width: 1250px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    overflow: hidden;
}

.card2 .ds-top2 {
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    width: 1250px;
    height: 80px;
    background: #3C8DBC;
    animation: dsTop 1.5s;
}

.d-none {
    display: none
}

@keyframes fadeInMove {
    0% {
        opacity: 0;
        left: -300px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mvBottom {
    0% {
        bottom: -150px;
    }

    100% {
        bottom: 10px;
    }
}

@keyframes mvTop {
    0% {
        top: -150px;
    }

    100% {
        top: -50px;
    }
}

@keyframes dsTop {
    0% {
        top: -150px;
    }

    100% {
        top: 0;
    }
}

.card1 {
    width: 250px;
    height: 292px;
    border-radius: 10px;
    box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    overflow: hidden;
}

.card1 .ds-top {
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    width: 300px;
    height: 80px;
    background: #3C8DBC;
    animation: dsTop 1.5s;
}

.card1 .avatar-holder {
    top: -50px;
    position: relative;
    margin: auto;
    right: 0;
    left: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC, inset 0 0 0 5px #3C8DBC;

    overflow: hidden;
    animation: mvTop 1.5s;
}

.card1 .avatar-holder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card1 .name {
    top: -30px;
    margin: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    text-align: center;
    animation: fadeIn 2s ease-in;
    color: #000000;
    text-decoration: none;
    font-weight: 500;
    font-size: 18px;
}

.card1 .name h6 {
    margin: auto;
    left: 0;
    right: 0;
    bottom: 0;
    color: white;
    width: 40px;
}

.card1 .button {
    top: 300px;
    padding: 8px;
    margin: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: inherit;
    height: 40px;
    text-align: center;
    animation: fadeIn 2s ease-in;
    outline: none;
    background: #3C8DBC;
}

.card1 .button a {
    padding: 5px 20px;
    border-radius: 10px;
    color: white;
    letter-spacing: 0.05em;
    text-decoration: none;
    font-size: 12px;
    transition: all 1s;
}

.card2 {
    width: 1250px;
    height: 500px;
    border-radius: 10px;
    box-shadow: 0 10px 25px 5px rgba(0, 0, 0, 0.2);
    background: #FFFFFF;
    overflow: hidden;
}

.card2 .ds-top2 {
    margin: auto;
    top: 0;
    right: 0;
    left: 0;
    width: 1250px;
    height: 80px;
    background: #3C8DBC;
    animation: dsTop 1.5s;
}

.d-block {
    display: block;
}

@keyframes fadeInMove {
    0% {
        opacity: 0;
        left: -300px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes mvBottom {
    0% {
        bottom: -150px;
    }

    100% {
        bottom: 10px;
    }
}

@keyframes mvTop {
    0% {
        top: -150px;
    }

    100% {
        top: -50px;
    }
}

@keyframes dsTop {
    0% {
        top: -150px;
    }

    100% {
        top: 0;
    }
}

.department_class {
    cursor: pointer;
    padding: 5px 15px;
}

.department_class:hover {
    background-color: rgb(231, 231, 231);
}

.department_list:hover {
    background-color: rgb(231, 231, 231);
}

.margin-left-4 {
    margin-left: 3.5%;
}

.select-from-name:hover {
    cursor: pointer;
    background-color: rgba(64, 183, 51, 0.26);
    opacity: 0.8;
}




@media (max-width: 1300px) and (min-width: 701px) {
    .col-md-4 {
        width: 49.333333%;
    }
}

@media (max-width: 990px) {
    .col-md-4 {
        width: 100%;
    }
}

/* Below 700px (mobile full width) */
@media (max-width: 700px) {
    .col-md-4 {
        width: 100%;
    }
}

.users-tree{
    max-height: 75vh;
    overflow-y: scroll;
}















