﻿
/*overlay*/
#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding-top: 110px;
    background-color: rgba(255,255,255,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #745C98;
    margin: -4px -4px 0 0;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

    .lds-roller div:nth-child(1):after {
        top: 63px;
        right: 63px;
    }

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    right: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    right: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    right: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    right: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    right: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    right: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    right: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(-360deg);
    }
}

/* rtl datatable */

div.dataTables_wrapper {
    direction: rtl;
}

/* Ensure that the demo table scrolls */
th, td {
    white-space: nowrap;
}

div.dataTables_wrapper {
    /*width: 800px;*/
    margin: 0 auto;
}

/*select 2 width height*/
.select2-selection__rendered {
    line-height: 31px !important;
}

.select2-container .select2-selection--single {
    height: 44px !important;
}

.select2-selection__arrow {
    height: 34px !important;
}


/*side bar*/
.pc-sidebar, .pc-sidebar .m-header {
    background: #745C98;
}
/*login & register background*/
.auth-wrapper {
    background-color: #745C98
}

.pc-sidebar .pc-navbar > .pc-item.active > .pc-link, .pc-sidebar .pc-navbar > .pc-item:focus > .pc-link, .pc-sidebar .pc-navbar > .pc-item:hover > .pc-link {
    background: #543C78
}

.table-responsive.scrollable {
    max-height: 80vh;
}
.table-responsive .my-table thead th {
    position: sticky;
    top: 0;
    z-index: 1;
}

.my-table.light-table thead tr th {
    background: #f7f7f7;
    padding: 4px;
    color: #9c9c9c;
    font-size: 14px;
}

.my-table img {
    border-radius: 25px;
    width: 50px;
    height: 50px;
}

.my-table {
    font-size: 14px;
    display: table;
    width: 100%;
}

.my-table thead tr th {
    background: #34B6DB;
    padding: 10px;
    color: #ffffff;
    font-size: 14px;
}

.my-table.quotation-table thead tr th {
    background: #747f82;
    padding: 4px;
    color: #ffffff;
    font-size: 14px;
}

.my-table.quotation-table.indoor thead tr th {
    background: #36A3C5;
}

.my-table.quotation-table.outdoor thead tr th {
    background: #95397D;
}


.my-table tbody tr:nth-child(even) {
    background-color: white;
}

.my-table tbody tr td {
    padding: 5px;
}

.my-table tfoot {
    border-top: 2px solid #34B6DB;
    background-color: #FFF;
    position: sticky;
    bottom: 0;
    z-index: 1;
}

