/*
    DEMO STYLE
*/

:root {
    --orange: #ff5c00;
    --sea: #035771;
}
p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.7em;
    color: #999;
}

a, a:hover, a:focus {
    text-decoration: none;
    transition: all 0.3s;
}
.table {
    margin-bottom: 0rem !important;
}
.navbar {
    padding: 0px 10px;
    background: var(--orange);
    border: none;
    border-radius: 0;
    margin-bottom: 0px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

/* ---------------------------------------------------
    SIDEBAR STYLE
----------------------------------------------------- */

#sidebar {
    width: 270px;
    position: fixed;
    top: 0;
    left: -270px;
    height: 100vh;
    z-index: 999;
    background: var(--orange);
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
    #sidebar div ul {
        height: calc(100vh - 78px);
        overflow-y: auto;
        padding-bottom:40px
    }


    #sidebar.active {
        left: 0;
    }

#dismiss {
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    background: transparent;
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

    #dismiss:hover {
        background: transparent;
    }

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all 0.5s ease-in-out;
    top: 0;
}

    .overlay.active {
        display: block;
        opacity: 1;
    }

#sidebar .sidebar-header {
    padding: 17px 20px;
    background: var(--orange);
}


#sidebar ul p {
    color: #fff;
    padding: 10px;
}

#sidebar ul li a {
    padding: 20px;
    font-size: 1.1em;
    display: block;
    border-bottom: 1px solid #fff;
    color: #fff !important;
    text-decoration: none !important;
}

    #sidebar ul li a:hover {
        color: #fff;
        background: #ffffff7d;
    }

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #2196F3;
}

a[data-toggle="collapse"] {
    position: relative;
}

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 30px !important;
    background: #6d7fcc;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }

a.download {
    background: #fff;
    color: #7386D5;
}

a.article, a.article:hover {
    background: #6d7fcc !important;
    color: #fff !important;
}

/* ---------------------------------------------------
    CONTENT STYLE
----------------------------------------------------- */

#content {
    width: 100%;
    padding: 0px;
    min-height: 100vh;
    transition: all 0.3s;
    position: absolute;
    top: 0;
    right: 0;
}

#sidebar .fa {
    font-size: 32px !important;
    background: transparent;
}
/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 74px !important;
    height: 34px;
}

    .switch input {
        display: none;
    }

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #dc3545;
    -webkit-transition: .4s;
    transition: .4s;
}

    .slider:before {
        position: absolute;
        content: "";
        height: 29px;
        width: 15px;
        left: 2px;
        bottom: 3px;
        background-color: white;
        -webkit-transition: .4s;
        transition: .4s;
    }

input:checked + .slider {
    background-color: var(--sea);
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(55px);
    -ms-transform: translateX(55px);
    transform: translateX(55px);
}

/*------ ADDED CSS ---------*/
.on {
    display: none;
}


input:checked + .slider .on {
    display: block;
}

input:checked + .slider .off {
    display: none;
}

/*--------- END --------*/

/* Rounded sliders */
.slider.round {
    border-radius: 5px;
}

    .slider.round:before {
        border-radius: 3px;
    }

/*assessment css*/
#mastermindTableBody tr td .fa.circleIcon {
    font-size: 15px !important;
    min-height: auto;
    min-width: auto;
    display: initial !important;
    padding-left: 10px;
}

#mastermindTableBody tr td .tooltips {
    position: relative;
    display: inline-block;
}

    #mastermindTableBody tr td .tooltips .tooltiptext {
        visibility: hidden;
        width: 140px;
        background-color: #00000087;
        color: #fff;
        text-align: center;
        border-radius: 6px;
        padding: 5px 0;
        /* Position the tooltip */
        position: absolute;
        z-index: 1;
        left: -50px;
        bottom: 20px;
    }

    #mastermindTableBody tr td .tooltips:hover .tooltiptext {
        visibility: visible;
    }

.onoffBtn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.toggleBtn {
    position: relative;
}

    .toggleBtn .toggle.btn.btn-primary {
        position: absolute;
        top: 25%;
        left: 45%;
        left: 5%;
    }

    .toggleBtn .toggle.btn.btn-secondary.off {
        position: absolute;
        left: 85%;
    }

.PEScheduleSearchList table tr td {
    height: auto !important;
}

#containerTSRgraph {
    overflow: visible !important;
}
@media not all and (min-resolution:.001dpcm) {
    @media {

        .toggleBtn .toggle.btn.btn-secondary.off {
            left: 51%;
        }
        .toggleBtn {
            position: relative;
            overflow: hidden;
            width: 65px;
        }
        #collapseOne span.mr-3:nth-child(2){
            overflow: hidden;
        }
    }
}
.modal.view {
    display: block !important;
}
.bootstrap-select > select.form-control {
    z-index: 9999 !important;
    width: 100% !important;
    left: 0% !important;
    max-width: 100% !important;
}
#userDatatable thead th {
    text-align: center !important;
}
.camera-icon .toggle.btn.btn-secondary {
    top: 13px;
}
.camera-icon .toggle.btn.btn-primary {
    top: 5px;
}
.camera-icon .fa {
    min-height: auto;
}
.cameraIcon .fa {
    min-height: auto;
}
.camera-icon .off {
    left: 0;
    top: 0;
    transform: translate(0);
}
.cameraIcon .off {
    left: 0;
    top: 0;
    transform: translate(0);
}
/*******************CSS added by Monika*************************/
/*width*/
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    border-radius: 100px;
}

/*Track*/
::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 100px;
}
/*Handle*/
::-webkit-scrollbar-thumb {
    background: #ed8b00;
    border-radius: 100px;
}
    /*Handle on hover*/
    ::-webkit-scrollbar-thumb:hover {
        background: #555;
    }
.IsInterRole{
    display:none;
}
.TraingMenu, .TraingMenuLayout {
    display: none;
}
@media screen and (min-width:1200px) {
    ::-webkit-scrollbar {
        width: 9px;
       
    }
}
.btn-info, 
.btn-primary, 
.skyblue, .skyblue:hover, 
.lightBlue, .lightBlue:hover, 
.btn-secondary, 
.btn-success {
    color: #fff;
    background-color: var(--sea) !important;
    border-color: var(--sea) !important;
}
.bg-dark {
    background-color: var(--sea) !important;
}
.toggle-group .btn-secondary {
    background-color: #dc3545 !important;
}
@media screen and (min-width: 768px) and (max-width: 1180px) {
    table thead th {
        min-width: 100px;
        height: 35px;
    }
    .tooltip1 {
        float: right;
    }
}