* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
    font-family: 'dm_sans';
    src: url('../fonts/dmsans-bold-bf64376d32191f2-webfont.woff2') format('woff2'),
        url('../fonts/dmsans-bold-bf64376d32191f2-webfont.woff') format('woff');
    font-weight: 700;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sans';
    src: url('../fonts/dmsans-medium-bf64376d329a539-webfont.woff2') format('woff2'),
        url('../fonts/dmsans-medium-bf64376d329a539-webfont.woff') format('woff');
    font-weight: 500;
    font-style: normal;

}




@font-face {
    font-family: 'dm_sans';
    src: url('../fonts/dmsans-regular-bf64376d323f095-webfont.woff2') format('woff2'),
        url('../fonts/dmsans-regular-bf64376d323f095-webfont.woff') format('woff');
    font-weight: 400;
    font-style: normal;

}

:root {
    --sky: #0BB2D4;
    --red: #FF3E1D;
    --lightred: #FF7A77;

}


body {
    font-family: 'dm_sans';
}

.mycontainer {
    max-width: 1200px;
    width: 100%;
    padding: 0 20px;
    margin: 0 auto;
}

.font-md {
    font-weight: 500;
}

.font-semi {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

textarea {
    resize: none;
}

.ex-small {
    font-size: 12px;
}

.object-cover {
    object-fit: cover;
}

.pointer {
    cursor: pointer;
}

.overflow-auto {
    overflow: auto;
}

.focus-none:focus {
    box-shadow: none;
    border: solid 1px #cdcdcd;
    outline: none;
}

.nowrap {
    text-wrap: nowrap !important;
}

.bluebtn {
    background-color: var(--sky);
    padding: 10px 15px;
    color: #fff;
    font-weight: 500;
    border-radius: 10px;
    text-decoration: none;
}


.table th {
    background-color: var(--sky);
    padding: 20px 10px !important;
    color: #fff;
    font-weight: 500 !important;
    text-wrap: nowrap !important;

}

.table thead tr {
    border: none !important;
}

.table td {
    padding: 20px 10px !important;
    text-wrap: nowrap !important;
    font-weight: 400 !important;
}

.table thead tr th:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.table thead tr th:last-child {
    border-top-right-radius: 15px;
    border-bottom-right-radius: 15px;
}


.list ul::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar,
.content::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.list ul::-webkit-scrollbar-track,
.table-responsive::-webkit-scrollbar-track,
.content::-webkit-scrollbar-track {
    background: var(--sky);
    margin: 30px 0;

}

.list ul::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb,
.content::-webkit-scrollbar-thumb {
    background: #fff;
    border: solid 1px var(--sky);
}

.list ul::-webkit-scrollbar-thumb:hover,
.table-responsive::-webkit-scrollbar-thumb:hover,
.content::-webkit-scrollbar-thumb:hover {
    background: #fff;
}

.minhght {
    min-height: 500px;
    max-height: 500px;
    overflow: auto;
}

.minhght::-webkit-scrollbar {
    width: 0px;
    height: 0px;
}

.lbl {
    position: absolute;
    top: -12px;
    left: 23px;
    background-color: #F8F7FA;
    padding: 0 10px;
    color: #84919D;
}

.notimg {
    height: 40px;
    width: 40px;
    border-radius: 50%;
}

.work-orders-tbl {
    position: relative;
}

.work-orders-tbl th:nth-child(1),
.work-orders-tbl td:nth-child(1) {
    position: sticky;
    left: 0px;
    min-width: 100px;
    z-index: 10;
}

.work-orders-tbl th:nth-child(2),
.work-orders-tbl td:nth-child(2) {
    position: sticky;
    min-width: 140px;
    left: 100px;
    z-index: 9;
}

.work-orders-tbl th:nth-child(3),
.work-orders-tbl td:nth-child(3) {
    position: sticky;
    min-width: 140px;
    left: 240px;
    z-index: 9;
}
.fa-bars {
    display: block !important;
}

.tbl-filter-height {
    height: 70px;
}
.tbl-filter-height2 {
    height: 70px;

}
.tbl-fix {
    position: fixed;
}
.tbl-fix2 {
    position: fixed;
    width: calc(100% - 280px);
}
@media screen and (max-width:1200px) {
    .work-orders-tbl th:nth-child(1),
    .work-orders-tbl td:nth-child(1),
    .work-orders-tbl th:nth-child(2),
    .work-orders-tbl td:nth-child(2),
    .work-orders-tbl th:nth-child(3),
    .work-orders-tbl td:nth-child(3) {
        position: static;
        min-width: 100%;
    }
}
@media screen and (max-width:768px) {
    .tbl-filter-height {
        height: 140px;
        width: calc(100% - 30px) !important;
    }
    .tbl-filter-height input,
    .tbl-filter-height select{
        width: calc(100% - 30px) !important;
    }
    .tbl-filter-height2 {
        height: 200px;
    }
    .tbl-fix2 {
        width: calc(100% - 30px);
    }
    .main {
        position: relative;
    }

    .left {
        position: absolute;
        display: none;
        background-color: #fff !important;
        z-index: 9999999999;
    }

    .right {
        width: 100% !important;
    }

}


@media screen and (min-width:769px) {
    .left {
        display: block;
    }
}

@media screen and (max-width:450px) {
    .hding {
        font-size: 18px;
    }

}

@media screen and (max-width:350px) {
    .hding {
        font-size: 16px;
    }

}