﻿@font-face {
    font-family: 'Roboto-Regular';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Regular.woff2') format('woff2'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg#Roboto-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Light';
    src: url('../fonts/Roboto-Light.eot');
    src: url('../fonts/Roboto-Light.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Light.woff2') format('woff2'), url('../fonts/Roboto-Light.woff') format('woff'), url('../fonts/Roboto-Light.ttf') format('truetype'), url('../fonts/Roboto-Light.svg#Roboto-Light') format('svg');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Medium';
    src: url('../fonts/Roboto-Medium.eot');
    src: url('../fonts/Roboto-Medium.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Medium.woff2') format('woff2'), url('../fonts/Roboto-Medium.woff') format('woff'), url('../fonts/Roboto-Medium.ttf') format('truetype'), url('../fonts/Roboto-Medium.svg#Roboto-Medium') format('svg');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto-Bold';
    src: url('../fonts/Roboto-Bold.eot');
    src: url('../fonts/Roboto-Bold.eot?#iefix') format('embedded-opentype'), url('../fonts/Roboto-Bold.woff2') format('woff2'), url('../fonts/Roboto-Bold.woff') format('woff'), url('../fonts/Roboto-Bold.ttf') format('truetype'), url('../fonts/Roboto-Bold.svg#Roboto-Bold') format('svg');
    font-weight: bold;
    font-style: normal;
}

body {
    font-family: 'Roboto-Regular';
    font-size: 14px;
    background: #fff;
    color: #444343;
    letter-spacing: 0.4px;
}

.font-B {
    font-family: 'Roboto-Bold';
}

.font-M {
    font-family: 'Roboto-Medium';
}

.font-L {
    font-family: 'Roboto-Light';
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

a:hover {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
}

.main-color {
    color: #598399;
}

.main-bgcolor {
    background-color: #598399;
}

.main-gradientBg {
    background: transparent linear-gradient(97deg, #049eef 0%, #96cfe2 100%) 0% 0% no-repeat padding-box;
}

.loginWrapper {
    height: 100vh;
}

.loginFormBox {
    position: relative;
    box-shadow: 0px 0px 20px rgba(14, 32, 45, 0.1);
    padding: 3rem;
    border-radius: 10px;
}

    .loginFormBox:after {
        right: 95%;
        top: 50%;
        border: solid transparent;
        content: " ";
        height: 0;
        width: 0;
        position: absolute;
        border-width: 15px;
        margin-top: -20px;
        border-color: transparent transparent #ffffff #ffffff;
        transform: rotate(45deg);
        box-shadow: -3px 3px 10px 0 rgba(14, 32, 45, 0.06);
    }

.logoBox .logo img {
    width: 190px;
}

.sideImgBox {
    position: relative;
    flex-grow: 1;
}

    .sideImgBox img {
        position: absolute;
        left: 40%;
        top: 24%;
    }

.loginFormBox .text-desc {
    color: #444343;
    font-size: 0.8rem;
}

.input-group > .input-group-prepend > .input-group-text {
    border-radius: 20px 0 0 20px;
    padding: 0 1rem;
}

.input-group > .form-control:not(:first-child) {
    border-radius: 0 20px 20px 0;
    font-size: 0.8rem;
    padding: 1.2rem 0.5rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before,
.custom-radio .custom-control-input:checked ~ .custom-control-label::before {
    color: #fff;
    border-color: #598399;
    background-color: #598399;
}

.wrapper {
    display: flex;
    width: 100%;
}

#sidebar {
    width: 250px;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    z-index: 999;
    background: #fff;
    color: #fff;
    transition: all 0.3s;
}

    #sidebar.active {
        margin-left: -250px;
    }

.closeSide {
    position: absolute;
    top: 1rem;
    right: 1rem;
    color: #444343;
    display: none;
}

    .closeSide:hover {
        color: #444343;
    }

#sidebar .sidebar-header {
    padding: 2rem;
}

#sidebar .side-menu > li {
    padding: 0.5rem 1rem;
}

#sidebar .side-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    color: #444343;
    text-transform: capitalize;
    font-size: 0.7rem;
}

    #sidebar .side-menu li a i {
        margin: 0 0.5rem;
        font-size: 1.1rem;
    }

#sidebar .side-menu li .submenu a {
    justify-content: flex-start;
}

#sidebar .side-menu li a[data-toggle]:after {
    font-family: 'CBP-icon' !important;
    font-size: 0.4rem;
    margin: 0 0.5rem;
}

#sidebar .mCSB_inside > .mCSB_container {
    margin-right: 10px;
}

#sidebar .side-menu li a[data-toggle].collapsed:after {
    content: "\e929";
}

#sidebar .side-menu li a[data-toggle]:not(.collapsed):after {
    content: "\e929";
    transform: rotate(180deg);
}

#sidebar .side-menu > li .flex-column.nav li {
    padding: 0.25rem 1rem;
}

#content {
    width: calc(100% - 250px);
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
    background-color: #F2F5F8;
    border-radius: 20px 0 0 0;
}

    #content.active {
        width: 100%;
    }

#sidebarCollapse {
    color: #444343;
}

.logoSide .logo {
    display: none;
}

#content.active .logoSide .logo {
    display: inline-flex;
    width: 150px;
    margin: 0 2rem;
}

.logo img {
    width: 100%;
}

.profile-imgBox {
    width: 35px;
    height: 35px;
    border: 2px solid #fff;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.Infinite-Img {
    width: 35px;
    height: 35px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    z-index: 1;
    background-color: #F2F5F8;
    margin: 10px 15px 0 10px;
    border: 2px solid #F2F5F8;
}

.profile-name .btn {
    font-size: 0.8rem;
    padding: 0rem .75rem;
}

.profile-info .profile-name .dropdown-menu {
    font-size: 0.8rem;
}

.notificationList li > a {
    color: #444343;
    font-size: 1.5rem;
    display: inline-flex;
    position: relative;
}

.notificationList li {
    display: flex;
    align-items: center;
    padding: 0 0 0 1.5rem;
    position: relative;
}

.notificationList {
    /* margin: 0 1rem; */
}

    .notificationList li a .noti-num {
        background: #FF7272 0% 0% no-repeat padding-box;
        color: #fff;
        font-size: 0.85rem;
        position: absolute;
        top: -5px;
        right: -10px;
        border-radius: 50%;
        width: 20px;
        height: 20px;
        text-align: center;
    }

.profile-info .logout {
    color: #fff;
    padding: 0.5rem 1rem 0.5rem 2rem;
    margin-left: -20px;
    font-size: 0.8rem;
}

.welcomeSide .iconBox i {
    font-size: 2.2rem;
}

.searchBox {
    overflow: hidden;
    border: 1px solid #B8BFC7;
}

    .searchBox .searchbtn {
        width: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        height: 35px;
    }

    .searchBox .searchtxt {
        border: none;
        padding: 0 1rem;
    }

.pageContent .card {
    border-radius: 0.75rem;
    overflow: hidden;
    border: none;
    width: 100%;
}

    .pageContent .card .card-header {
        padding-bottom: 0.5rem !important;
    }

        .pageContent .card .card-header .viewAll {
            padding: 0.25rem 0.5rem;
            font-size: 0.8rem;
            text-transform: capitalize;
        }

.chartDate {
    color: #A1A4AF;
}

.customLegend ul {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

    .customLegend ul li {
        margin-right: 1rem;
    }

        .customLegend ul li span {
            width: 10px;
            height: 10px;
            display: inline-flex;
            border-radius: 50%;
            margin-right: 0.5rem;
        }

.chartBox {
    height: 220px;
}

.customScroll {
    height: 300px;
}

.bg-color1 {
    background-color: #444343
}

.bg-color3 {
    background-color: #E3E4E5
}

.bg-color2 {
    background-color: #A1A4AF
}

.card-notificationList .iconBox {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.card-notificationList .noti-dataSide {
    flex-grow: 1;
    color: #A1A4AF;
    font-size: 0.75rem;
}

    .card-notificationList .noti-dataSide .title {
        color: #000;
    }

.CountNum {
    text-align: center;
    font-size: 1rem;
}

.progress-xs .progress-bar {
    line-height: 4px;
}

.progress {
    height: 15px;
    overflow: hidden;
    background-color: #e4eaec;
    border-radius: 0.215rem;
}

.progress-xs {
    height: 6px;
    border-radius: 1.06rem;
}

.page-item.active .page-link {
    background: #598399;
    border-color: #598399;
}

.page-link {
    color: #434343;
    border-radius: 50%;
    margin: 0 0.25rem;
}

.dataTables_wrapper table.dataTable {
    margin: 1rem 0 !important;
}

.dataTables_wrapper .form-control {
    border-radius: 20px;
}

.dataTables_wrapper {
    font-size: 0.8rem
}

.page-item:first-child .page-link, .page-item:last-child .page-link {
    border-radius: 20px
}

.welcomeSide .companyLogo {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ddd;
    border-radius: 50%;
    padding: 2px;
}

.brd-radius-10 {
    border-radius: 10px;
}

.employeeCard {
    box-shadow: 0 0 10px 0px rgba(0, 0, 0, 0.14901960784313725);
    border: 1px solid #efeded;
}

    .employeeCard .head {
        border-radius: 10px 10px 0 0;
        padding: 0.65rem 1rem;
    }

    .employeeCard .body {
        padding: 1rem;
    }

.employeeCardListBox {
    height: 500px;
}

.employeeDataList .empIcon {
    width: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.employeeDataList li {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
}

.progressCont {
    position: relative
}

    .progressCont .CountNum {
        position: absolute;
        bottom: 100%;
        right: 0;
        font-size: 0.7rem;
    }

.employeeCard .footer {
    border-top: 1px solid #ddd;
}

    .employeeCard .footer a {
        flex-grow: 1;
        flex-basis: 0;
        text-align: center;
        padding: 0.65rem 0.5rem;
        font-size: 0.8rem;
        color: #72777D;
    }

        .employeeCard .footer a:not(:last-child) {
            border-right: 1px solid #ddd;
        }

.bg-grey {
    background-color: #E3E4E5
}

.customform-inline .form-control {
    padding: 0.25rem 0.5rem;
    height: inherit;
    line-height: inherit;
    min-height: 35px;
    font-size: 0.8rem;
}

.customform-inline {
    font-size: 0.8rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    font-size: 0.8rem;
}

.customform-inline .input-group .form-control {
    border-radius: 50rem 0 0 50rem !important;
    border-right: 0;
}

.customform-inline .input-group > .input-group-append > .input-group-text {
    border-radius: 0 50rem 50rem 0 !important;
}

.datepicker-dropdown {
    font-size: 0.8rem;
    padding: 1rem;
}

.datepicker table tr td.today, .datepicker table tr td.today.disabled, .datepicker table tr td.today.disabled:hover, .datepicker table tr td.today:hover {
    background: #598399 !important;
    color: #fff !important;
}

.text-lightRed {
    color: #FF7272
}

.confirmBox .deleteFooter {
    border-top: 1px solid #ddd;
}

    .confirmBox .deleteFooter a {
        flex-grow: 1;
        flex-basis: 0;
        text-align: center;
        padding: 0.65rem 1rem;
        display: flex;
        justify-content: center;
        font-size: 0.8rem;
    }

        .confirmBox .deleteFooter a:not(:last-child) {
            border-right: 1px solid #ddd;
        }

.text-underline {
    text-decoration: underline;
}

.employeeCard .head .iconBox {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #ddd;
    padding: 2px;
}

.status.badge {
    padding: 0.35rem 0.5rem;
}

    .status.badge.badge-danger {
        background: transparent;
        border: 1px solid #dc3545;
        color: #dc3545;
    }

    .status.badge.badge-success {
        background: transparent;
        border: 1px solid #41d162;
        color: #41d162;
    }

    .status.badge.badge-warning {
        background: transparent;
        border: 1px solid #ffc107;
        color: #ffc107;
    }

    .status.badge.badge-dark {
        background: transparent;
        border: 1px solid #343a40;
        color: #343a40;
    }
    .status.badge.badge-primary {
        background: transparent;
        border: 1px solid #007bff;
        color: #007bff;
    }

    .status.step.badge.badge-warning {
    background: transparent;
    border: 2px solid #ffc107;
    color: #ffc107;
    }

    .status.step.badge.badge-danger {
        background: transparent;
        border: 1px solid #dc3545;
        color: #dc3545;
    }

    .status.step.badge.badge-success {
        background: transparent;
        border: 2px solid #41d162;
        color: #41d162;
    }

    .status.step.badge.badge-dark {
        background: transparent;
        border: 2px solid #343a40;
        color: #343a40;
    }

    .status.step.badge.badge-primary {
        background: transparent;
        border: 2px solid #007bff;
        color: #007bff;
    }


.profile-info .dropdown-menu {
    margin: 0.25rem 0;
    border-radius: 10px;
}

    .profile-info .dropdown-menu a {
        font-size: 0.8rem;
    }

a.dropdown-toggle.no-arrow:after {
    display: none;
}

.profileContainer {
    margin-left: 1.5rem;
}

.mailMenu .dropdown-menu, .notificationMenu .dropdown-menu {
    border-radius: 10px;
    min-width: 250px;
    font-size: 0.8rem;
    margin: 0;
    padding: 0;
}

    .mailMenu .dropdown-menu .head, .notificationMenu .dropdown-menu .head {
        padding: 0.75rem 1rem;
        border-bottom: 1px solid #ddd;
    }

    .mailMenu .dropdown-menu .footer, .notificationMenu .dropdown-menu .footer {
        padding: 0.75rem 1rem;
        text-align: center;
        border-top: 1px solid #ddd;
    }

        .mailMenu .dropdown-menu .footer a, .notificationMenu .dropdown-menu .footer a {
            font-size: 0.8rem;
            text-decoration: underline;
            color: #444343;
        }

.mail-items-list {
    height: 200px;
}

    .mail-items-list .mail-item {
        color: #444343;
        font-size: 0.7rem;
        border-bottom: 1px solid #e9e9e9;
        padding: 0.5rem;
    }

        .mail-items-list .mail-item .imgBox {
            width: 30px;
            border: 1px solid #ddd;
            border-radius: 50%;
            height: 30px;
            overflow: hidden;
        }

.notificationMenu .mail-items-list .mail-item .imgBox {
    width: 20px;
    height: auto;
    border: none;
}

.mail-items-list .mail-item .dataSide {
    padding: 0 0.5rem;
    flex-grow: 1;
}

    .mail-items-list .mail-item .dataSide p {
        margin: 0;
    }

.mailMenu .body, .notificationMenu .body {
    padding: 1rem;
}

.select2-container--default.select2-container--focus .select2-selection--multiple,
.select2-container--default .select2-selection--multiple {
    border-radius: 50rem !important;
    border-color: #ddd;
}

    .select2-container--default .select2-selection--multiple .select2-selection__rendered .select2-selection__choice {
        border-radius: 50rem !important;
    }

.customform-inline textarea.form-control {
    border-radius: 15px;
}

.customform-inline .custom-switch {
    padding-left: 2.25rem;
}

.customDataTable .btn {
    padding: 0.25rem 1rem;
    font-size: 0.7rem;
}

.Editor-container .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
    font-size: 0.8rem !important;
    padding: 6px 12px;
}

.Editor-container .dropdown-menu li a {
    display: block;
    padding: 3px 20px;
    clear: both;
    line-height: 1.42857143;
    color: #333;
    white-space: nowrap;
    font-size: 0.8rem;
}

.Editor-container .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus, .dropdown-submenu:hover > a, .dropdown-submenu:focus > a {
    background: #598399;
    color: #fff;
}

.fa-repeat:before {
    content: "\f01e";
}

.fa-picture-o:before {
    content: "\f03e";
}

.fa-file-text:before {
    content: "\f15c";
}

.uploadBox {
    position: relative;
    display: flex;
    font-size: 0.8rem;
}

    .uploadBox input[type="file"] {
        position: absolute;
        width: 100%;
        height: 100%;
        opacity: 0;
        left: 0;
        top: 0;
    }

ul.fileList {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 20px;
    padding: 0.5rem 1rem;
    margin: 1rem 0;
    display: none;
}

    ul.fileList li {
        display: flex;
        justify-content: space-between;
        border-bottom: 1px solid #ddd;
        padding: 0.5rem 0;
        font-size: 0.7rem;
    }

        ul.fileList li:last-child {
            border: none;
        }

        ul.fileList li a.removeFile {
            color: #598399;
        }

.tips {
    font-size: 0.8rem;
}

.unorderList {
    list-style: inside
}

.card-item {
    border-radius: 0.75rem;
    flex-wrap: nowrap;
    height: 85px;
}

    .card-item .iconBox {
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        min-width: 50px;
    }

    .card-item .dataSide {
        font-size: 0.75rem;
    }

    .card-item.disabled {
        opacity: 0.6;
        position: relative;
        pointer-events: none;
    }

        .card-item.disabled:after {
            content: "";
            width: 100%;
            position: absolute;
            height: 100%;
            top: 0;
            left: 0;
            cursor: not-allowed;
            z-index: 1;
        }

.basicSteps {
    border-radius: 0.75rem 0 0 0.75rem;
}

    .basicSteps .phaseName {
        border-radius: 0 0 0 0.75rem;
    }

.endStep {
    border-radius: 0 0.75rem 0.75rem 0;
}

    .endStep .phaseName {
        border-radius: 0 0 0.75rem 0;
    }

.tempSteps {
    border-right: 1px solid #E3E4E5;
    border-left: 1px solid #E3E4E5;
}

.stepListBox .stepList > li a {
    display: flex;
    text-align: center;
    flex-direction: column;
    align-items: center;
    font-size: 0.65rem;
    color: #A1A4AF;
    font-family: 'Roboto-Medium';
}

.stepListBox .stepList > li .step-num {
    width: 45px;
    height: 45px;
    display: flex;
    border: 2px solid #ddd;
    justify-content: center;
    align-items: center;
    margin-bottom: 0.5rem;
}

.stepListBox .stepList > li {
    flex-grow: 1;
    flex-basis: 0;
}

.phaseName {
    background: #ececed;
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    font-family: 'Roboto-Medium';
    position: absolute;
    bottom: 0;
    width: 100%;
    left: 0;
    box-shadow: 0 1px 0px #e8e8e8;
    cursor: pointer;
}


.stepListBox .stepList > li .stepDone .step-num {
    background: #598399;
    color: #fff;
    border: 2px solid #598399;
}

.stepListBox .stepList > li .stepCurrent .step-num {
    border-color: #598399;
    /*color: #598399;*/
}

.stepListBox .stepList > li .stepCurrent .step-name,
.stepListBox .stepList > li .stepDone .step-name {
    color: #598399;
}

/* step selected*/
.stepListBox .stepList > li .stepSelected .step-num {
    border-color: #007AFF; /*  #717dd1 #bcbbd1;*/
    border-width: 3px;
}

.stepListBox .stepList > li .stepSelected .step-name {
    color: #598399;
}

/*end of step selected*/

.basicSteps, .tempSteps, .endStep {
    position: relative;
}

.extendedStepsBox {
    position: absolute;
    top: 100%;
    right: 0;
    width: 150%;
    z-index: 1;
    box-shadow: 0 3px 3px #e5e5e5;
    border-radius: 0 0 0.25rem 0.25rem;
}

.positionsAdded {
    position: absolute;
    top: 0;
    right: 100%;
    width: 50%;
    height: 100%;
}

.progress-circle {
    width: 45px;
    height: 45px;
    background: none;
    position: relative;
}

    .progress-circle::after {
        content: "";
        width: 100%;
        height: 100%;
        border-radius: 50%;
        border: 2px solid #eee;
        position: absolute;
        top: 0;
        left: 0;
    }

    .progress-circle > span {
        width: 50%;
        height: 100%;
        overflow: hidden;
        position: absolute;
        top: 0;
        z-index: 1;
    }

    .progress-circle .progress-left {
        left: 0;
    }

    .progress-circle .progress-bar {
        width: 100%;
        height: 100%;
        background: none;
        border-width: 2px;
        border-style: solid;
        position: absolute;
        top: 0;
        border-color: #598399 !important;
    }

    .progress-circle .progress-left .progress-bar {
        left: 100%;
        border-top-right-radius: 80px;
        border-bottom-right-radius: 80px;
        border-left: 0;
        -webkit-transform-origin: center left;
        transform-origin: center left;
    }

    .progress-circle .progress-right {
        right: 0;
    }

        .progress-circle .progress-right .progress-bar {
            left: -100%;
            border-top-left-radius: 80px;
            border-bottom-left-radius: 80px;
            border-right: 0;
            -webkit-transform-origin: center right;
            transform-origin: center right;
        }

    .progress-circle .progress-value {
        position: absolute;
        top: 0;
        left: 0;
    }

.phaseName[aria-expanded="true"] {
    background-color: #598399;
    color: #fff;
}

    .phaseName[aria-expanded="true"] .moreDetails .fa-angle-down:before {
        content: "\f106";
    }

.extendedStepsList .positionName, .extendedStepsList .positionsteps {
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
}

.positionstepsList-title li {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
    position: relative;
    font-weight: bold;
}

    .positionstepsList-title li:after {
        content: "";
        width: 100%;
        display: block;
        height: 2px;
        /*background: #ddd;*/
        position: absolute;
        top: 50%;
       
    }

    .positionstepsList-title li a {
        position: relative;
        z-index: 1;
        color: #ddd;
        background: #fff;
        border-radius: 50%;
    }

.positionstepsList li {
    flex-grow: 1;
    flex-basis: 0;
    text-align: center;
    position: relative;
}

    .positionstepsList li:after {
        content: "";
        width: 100%;
        display: block;
        height: 2px;
        background: #ddd;
        position: absolute;
        top: 50%;
    }

    .positionstepsList li a {
        position: relative;
        z-index: 1;
        color: #ddd;
        background: #fff;
        border-radius: 50%;
    }

    .positionstepsList li.active:after {
        
        background: #598399
    }

    .positionstepsList li.active a {
        color: #598399
    }

.extendedStepsList > li:nth-child(even) {
    background: #F5F5F5;
}
/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {
}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {
}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

/*// Extra small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .profileBox {
        width: 100%;
        justify-content: space-between;
        margin-top: 1rem;
    }

    .notificationList {
        margin: 0;
    }
}

/*// Small devices (landscape phones, less than 768px)*/
@media (max-width: 767.98px) {
}

/*// Medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .sideImgBox img {
        left: 0;
    }

    #sidebar {
        margin-left: -250px;
    }

        #sidebar.active {
            margin-left: 0;
        }

    #content {
        width: 100%;
    }

        #content.active {
            /*width: calc(100% - 250px);*/
        }

    #sidebarCollapse span {
        display: none;
    }

    .closeSide {
        display: inline-flex
    }
}

/*// Large devices (desktops, less than 1200px)*/
@media (max-width: 1199.98px) {
    .sideImgBox img {
        min-width: 250px;
        z-index: 1;
    }
}
/* interview result*/
.interview-new {
    background-color: #c4baf7 !important;
}
.interview-pass {
    background-color: #0088cc30 !important;
}

.interview-fail {
    background-color: #ef243847 !important;
}
.interview-client-rejected {
    background-color: #ffc1074d !important;
}
@supports (-moz-appearance:none) {

    SELECT {
        -moz-appearance: none !important;
        background: transparent url('data:image/gif;base64,R0lGODlhBgAGAKEDAFVVVX9/f9TU1CgmNyH5BAEKAAMALAAAAAAGAAYAAAIODA4hCDKWxlhNvmCnGwUAOw==') right center no-repeat !important;
        background-position: calc(100% - 15px) center !important;
    }
}

.customDataTable th, .customDataTable td {
    text-align: center;
}

    .customDataTable th.toLeft, .customDataTable td.toLeft {
        text-align: left;
    }
.largeAttendanceGraph .chartBox{height:320px}

.clientname {
    background: #ececed;
    font-size: 0.7rem;
    padding: 0.3rem 1rem;
    font-family: 'Roboto-Medium';
    text-align: center;
    bottom: 0;
    width: 100%;
    box-shadow: 0 1px 0px #e8e8e8;
}
select{
    width:100%;
}