@font-face {
    font-family: roboto;
    src: url('../fonts/Roboto-Regular.ttf') format("truetype");
}

* {
    font-family: 'roboto';
}

/*custom table css*/
.header {
    background-color: #070c32;
    position: fixed;
    top: 0px;
    width: 100%;
    height: 60px;
    align-items: center;
    z-index: 1;
    display: flex;
    padding: 0px 20px;
    justify-content: space-between;
}

.toggle_aside,
.filter_button {
    cursor: pointer;
}

.container_wrapper {
    margin-top: 65px;
}

.custom_containers {
    background: #fff;
    border-radius: 8px;
    padding: 5px 10px;
}

.collapse_button {
    border-bottom: 1px solid #ededed;
    padding-bottom: 5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom_containers .collapse_button > span {
    font-weight: bold;
}

.custom_element_1,
.custom_element_2,
.custom_element_3,
.custom_element_4 {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.custom_element_4 {
    height: 100%;
    justify-content: space-between;
}

.custom_element_1 .element_box,
.custom_element_3 .element_box {
    background-color: #fff;
    width: 16%;
    border-radius: 5px;
    padding: 8px;
}

.custom_element_3 .element_box {
    padding: 6px;
}

    .custom_element_1 .element_box p,
    .custom_element_2 .element_box p,
    .custom_element_3 .element_box p,
    .custom_element_4 .element_box p {
        font-size: 1rem;
        font-weight: 600;
        line-height: 18px;
        height: 36px;
        color: grey;
    }

.custom_element_1 .element_box span,
.custom_element_2 .element_box span,
.custom_element_4 .element_box span {
    display: inline-block;
    background-color: purple;
    width: 40px;
    height: 2px;
    transform: translateY(-6px);
}


.custom_element_4 .element_box {
	background-color: purple;
	border-radius: 5px;
	padding: 8px;
	color: #fff
}

.custom_element_2 .element_box {
	background-color: purple;
	border-radius: 5px;
	padding: 17px;
	color: #fff;
	margin-bottom: 5px;
}

.custom_element_4 .element_box{
	background-color: #fff;
	width: 100%;
	height: 137px;
}

.custom_element_2 .element_box{
	width: 48%;
}

    .custom_element_2 .element_box span {
        background: #fff;
    }

    .custom_element_2 .element_box p {
        height: unset;
        color: #fff;
    }

.custom_element_3 .element_box {
    border: 1px solid #ededed;
    border-radius: 5px;
    overflow-x: hidden;
    position: relative;
}

    .custom_element_3 .element_box p {
        margin-bottom: 5px !important;
        font-size: 10px;
    }

    .custom_element_3 .element_box h5 {
        font-weight: bold;
    }

    .custom_element_3 .element_box i {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 3px;
        background: purple;
    }

.custom_element_4 .element_box h4 {
    color: #333;
}

.element_box h4 {
    font-weight: bold;
}

.custom_element_3 .element_box h6 {
    font-size: 13px !important;
}

.table_height1 {
    height: 110px;
    overflow: auto;
}

.table_height2 {
    height: 184px;
    overflow: auto;
}

.table_height3 {
	height: 162px;
	overflow: auto;
}

.img_size1 {
    width: 100%;
    max-width: 220px;
}

.turnover_img {
    width: 100%;
    max-width: 298px;
}

.payable_img {
    width: 100%;
    max-width: 180px;
}

.online_order_bottom_wrapper {
    display: none;
}

/*custom table css*/
.digisuite_custom_table2 {
    height: 165px;
}
.digisuite_custom_table2.table thead tr th,
.digisuite_custom_table.table thead tr th {
    border-color: #fff !important;
    padding: 3px 9px !important;
    color: #888888;
    font-size: 14px;
    background: #f0f0f0;
    font-weight: 600;
    white-space: nowrap;
}
    .digisuite_custom_table2.table thead tr th:first-child,
    .digisuite_custom_table.table thead tr th:first-child {
        border-radius: 5px 0 0 5px;
    }
    .digisuite_custom_table2.table thead tr th:last-child,
    .digisuite_custom_table.table thead tr th:last-child {
        border-radius: 0 5px 5px 0px;
    }
.digisuite_custom_table2.table tbody tr td,
.digisuite_custom_table.table tbody tr td {
    padding: 2px 9px !important;
    font-size: 15px;
    color: #333;
    white-space: nowrap;
}

.payable_table th:nth-child(2),
.payable_table td:nth-child(2) {
    position: relative;
    overflow-y: hidden;
}

    .payable_table th:nth-child(2):after,
    .payable_table td:nth-child(2):after {
        content: '';
        width: 1px;
        height: 30px;
        top: 0px;
        right: 5px;
        position: absolute;
        background: #88888899;
    }

/*custom table css*/

/*custom scrollar css*/
::-webkit-scrollbar {
    height: 5px;
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #dcdfe8;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #01041b;
    border-radius: 10px;
}


/*aside*/
aside {
    background-color: #070c32;
    width: 0px;
    height: 100vh;
    top: 0;
    left: 0;
    box-shadow: 1px 0px 0px 1px rgba(211,211,211,0.4);
    z-index: 9;
    transition: width .5s;
    overflow: hidden;
}

.relative {
    position: relative;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.digi_nav_item > a {
    color: #bdbbe0;
    transition: ease .3s;
    cursor: pointer;
    text-decoration: none !important;
    width: 100%;
    padding: 8px 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

::marker {
    color: #785aec;
}

.digi_nav_item > a img {
    margin-right: 10px;
}

.digi_nav_item > a:hover,
.digi_nav_item > a.active {
    color: #fff;
}

.digi_nav_item {
    position: relative;
    margin: 8px 0;
}

    .digi_nav_item ul > li > a {
        color: #bdbbe0;
        transition: ease .3s;
        cursor: pointer;
        text-decoration: none !important;
        width: 100%;
        padding: 8px 10px;
        font-size: 14px;
        font-weight: 600
    }

.backdrop {
    position: fixed;
    top: 0px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    background-color: rgba(0,0,0,0.4);
    z-index: 8;
    display: none;
}

.close_aside {
    position: fixed;
    background-color: #fff;
    top: 25px;
    left: -40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-align: center;
    z-index: 9;
    font-size: 22px;
    padding-top: 2px;
    cursor: pointer;
    border: 1px solid #bdbbe0;
    transition: ease .5s;
    color: #bdbbe0;
}

    .close_aside img {
        transform: rotate(90deg);
        margin-top: -5px;
    }

.close_aside_position {
    left: 200px;
}

/*header*/

.header_right > ul,
.header_right > ul > li {
    height: 100%;
    display: flex;
    align-items: center;
    color: #fff
}

    .header_right > ul > li {
        border-left: 1px solid #ddd;
    }

        .header_right > ul > li:first-child {
            border: none;
        }

.log_out {
    color: #777;
    font-weight: bold;
    cursor: pointer;
}

    .log_out i {
        font-size: 22px;
        margin: 0 15px 0 5px;
        transform: translateY(4px);
    }

    .log_out img {
        width: 35px;
        border: 1px solid #777;
        border-radius: 50%;
        margin-right: 10px;
    }

.logout_list {
    width: 150px;
    background: #fff;
    left: auto;
    right: -16px;
    top: 60px;
    font-weight: 600;
    box-shadow: 0px 0px 2px 2px rgba(0,0,0,0.2);
    display: none;
}

.log_out:hover .logout_list {
    display: unset;
}

.logout_list li {
    width: 100%;
    transition: ease .3s;
}

    .logout_list li span {
        display: inline-block;
        padding-top: 2px;
    }

.logout_list a:hover {
    background-color: #070c32;
    color: #fff !important;
}

.logout_list a {
    color: #333;
    padding: 10px;
    transition: ease .3s;
    display: inline-block;
    width: 100%;
    height: 100%;
    align-items: center;
    text-decoration: none !important;
}


/*filters*/
.filters_dt {
    right: -300px;
    top: 60px;
    bottom: 0;
    width: 300px;
    background-color: #fff;
    transition: ease .3s;
}

    .filters_dt .heading {
        background-color: #f5f5f5;
    }

    .filters_dt label,
    .filters_dt select,
    .filters_dt input {
        display: block;
    }

    .filters_dt label {
        font-size: 14px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .filters_dt label {
        margin-bottom: 0;
    }

    .filters_dt select,
    .filters_dt input {
        width: 100%;
        border: 1px solid lightgrey;
        border-radius: 5px;
        padding: 3px 8px;
        margin-bottom: 15px;
    }

.ticets_dt_button button {
    width: 100%;
    background-color: #785aec;
    transition: ease .3s;
}

    .ticets_dt_button button:hover {
        border-color: #785aec;
        background-color: #fff;
        color: #785aec;
    }

.close_filter {
    width: 100%;
    max-width: 15px;
}

.pos-sticky {
    position: sticky !important;
}

.report-summary {
    display: none;
}

.theme-text-color {
    color: #070c32;
}

.wrap-filters {
    overflow-y: auto;
    height: 420px !important;
}

@media only screen and (max-width: 799px) {
    /* Force table to not be like tables anymore */
    #no-more-tables table, #no-more-tables thead, #no-more-tables tbody, #no-more-tables th, #no-more-tables td, #no-more-tables tr {
        display: block;
    }

        /* Hide table headers (but not display: none;, for accessibility) */
        #no-more-tables thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    #no-more-tables tr {
        border: 1px solid #ccc;
    }

    #no-more-tables td {
        /* Behave  like a "row" */
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
        white-space: normal;
        text-align: left;
    }

        #no-more-tables td:before {
            /* Now like a table header */
            position: absolute;
            /* Top/left values mimic padding */
            top: 6px;
            left: 6px;
            width: 45%;
            padding-right: 10px;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
        }

        /*
	Label the data
	*/
        #no-more-tables td:before {
            content: attr(data-title);
        }

    #no-more-tables table tfoot {
        display: none
    }

    .report-summary {
        display: block;
    }
}


@media (max-width: 768px) {
    .box-shadow_sm {
        box-shadow: rgba(0, 0, 0, 0.2) 0px 0px 2px 2px;
    }

    .custom_element_1 {
        margin-top: 8px
    }

        .custom_element_1 .element_box,
        .custom_element_3 .element_box {
            width: 30%;
        }

            .custom_element_1 .element_box:nth-child(1),
            .custom_element_1 .element_box:nth-child(2),
            .custom_element_1 .element_box:nth-child(3),
            .custom_element_3 .element_box:nth-child(1),
            .custom_element_3 .element_box:nth-child(2),
            .custom_element_3 .element_box:nth-child(3) {
                margin-bottom: 8px;
            }
    .wrap-filters {
        overflow-y: auto;
        height: 600px !important;
    }
}

@media (max-width: 992px) {
    .log_out > div > span {
        display: none;
    }

    .online_order_bottom_wrapper {
        display: unset;
    }

    .online_order_upper_wrapper {
        display: none;
    }
    .wrap-filters {
        overflow-y: auto;
        height: 700px !important;
    }
}

@media (max-width: 576px) {
    .header {
        padding-right: 5px;
    }

    .custom_element_2 .element_box:nth-child(1),
    .custom_element_2 .element_box:nth-child(2) {
        margin-bottom: 8px;
    }

    .custom_element_2 .element_box,
    .custom_element_4 .element_box {
        width: 49%;
    }

    .custom_element_4 .element_box {
        margin-top: 0px !important;
    }
    .wrap-filters {
        overflow-y: auto;
        height: 588px !important;
    }
}

.main-item {
    padding: 5px;
    background-color: #fff;
    width: 100%;
}

.background-masker {
    background-color: #fff;
    position: absolute;
}

.btn-divide-left {
    top: 0;
    left: 25%;
    height: 100%;
    width: 5%;
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -800px 0
    }

    100% {
        background-position: 800px 0
    }
}

.animated-background {
    animation-duration: 2s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background-color: #f6f7f8;
    background: linear-gradient(to right, #eeeeee 8%, #bbbbbb 18%, #eeeeee 33%);
    background-size: 800px 104px;
    height: 25px;
    position: relative;
}

.static-background {
    background-color: #f6f7f8;
    background-size: 800px 104px;
    height: 70px;
    position: relative;
    margin-bottom: 20px;
}

.shared-dom {
    width: 800px;
    height: 110px;
}

.sub-rect {
    border-radius: 100%;
    width: 70px;
    height: 70px;
    float: left;
    margin: 20px 20px 20px 0;
}

.pure-background {
    background-color: #eee;
}

.css-dom:empty {
    width: 280px;
    height: 220px;
    border-radius: 6px;
    box-shadow: 0 10px 45px rgba(0, 0, 0, .2);
    background-repeat: no-repeat;
    background-image: radial-gradient(circle 16px, lightgray 99%, transparent 0), linear-gradient(lightgray, lightgray), linear-gradient(lightgray, lightgray), linear-gradient(lightgray, lightgray), linear-gradient(lightgray, lightgray), linear-gradient(#fff, #fff);
    background-size: 32px 32px, 200px 32px, 180px 32px, 230px 16px, 100% 40px, 280px 100%;
    background-position: 24px 30px, 66px 30px, 24px 90px, 24px 142px, 0 180px, 0 0;
}

