
/**:focus {
    border: 1px solid #ff0000;
    color:#ff0000 !important;
    outline: auto;
    outline-color: deepskyblue;
}*/

.checkbox:focus, .upload_custom:focus, .button-structure:focus, .button-change:focus, .button-success:focus, .btn-search:focus, .save-button:focus, .cancel-button:focus, .outer-focus:focus, .delete-button:focus, .agree-button:focus {
    box-shadow: #de7300 0px 0px 0px 2px, 0px 0px 0px 4px #0f89d1;
}

.modal:focus {
    box-shadow: none;
}
.btn-link{
    border:none !important;
}
/*Fonts*/
@font-face {
    font-family: 'Muli-Regular';
    src: url('../../fonts/custom-fonts/Muli/Muli-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli-SemiBold';
    src: url('../../fonts/custom-fonts/Muli/Muli-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Muli-Italic';
    src: url('../fonts/custom-fonts/Muli/Muli-Italic.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoSans-Regular';
    src: url('../../fonts/custom-fonts/Noto_Sans/NotoSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'NotoSans-Bold';
    src: url('../fonts/custom-fonts/Noto_Sans/NotoSans-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans-Bold';
    src: url('../fonts/custom-fonts/Open_Sans/OpenSans-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans-SemiBold';
    src: url('../fonts/custom-fonts/Open_Sans/OpenSans-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'OpenSans-Regular';
    src: url('../../fonts/custom-fonts/Open_Sans/OpenSans-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Regular';
    src: url('../../fonts/custom-fonts/Raleway/Raleway-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-SemiBold';
    src: url('../../fonts/custom-fonts/Raleway/Raleway-SemiBold.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-Medium';
    src: url('../../fonts/custom-fonts/Raleway/Raleway-Medium.ttf') format('truetype');
}

@font-face {
    font-family: 'Raleway-MediumItalic';
    src: url('../fonts/custom-fonts/Raleway/Raleway-MediumItalic.ttf') format('truetype');
}

@font-face {
    font-family: 'Roboto-Regular';
    src: url('../../fonts/custom-fonts/Roboto/Roboto-Regular.ttf') format('truetype');
}


@font-face {
    font-family: 'avertacy-bold';
    src: url('../../fonts/custom-fonts/AvertaCY/avertacy-bold.woff') format('woff'), url('../../fonts/custom-fonts/AvertaCY/avertacy-bold.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

/**background-colors*/
.bg-light-dark {
    background-color: rgba(0, 0, 0, 0.1);
}

.white-bg {
    background: #fff;
}

.bg-success {
    background-color: #4CAF50;
}

.border-success {
    border-color: #4CAF50;
}

.btn-info {
    border-color: #316fb9 !important;
    background: none !important;
    color: #000 !important;
}

    .btn-info:hover {
        background: #316fb9 !important;
    }

body {
    font-family: 'Roboto-Regular', sans-serif;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    line-height: 24px;
    overflow-x: hidden;
    background-color: #f5f5f5;
}

.no_notes h2 {
    font-size: 18px;
}

.no_notes {
    text-align: center;
    margin-top: 70px;
}

.editor_main_spinner {
    padding-right: 0 !important;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2050;
    display: none;
}

    .editor_main_spinner .spinner {
        position: relative;
        width: 100%;
        height: 100%;
        /*background: rgba(0, 0, 0, 0.8);*/
        z-index: 1;
    }

        .editor_main_spinner .spinner .inner-container-spinner {
            position: absolute;
            top: 18%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 191px;
            height: 60px;
            border-radius: 6px;
            background: #fff;
            border: 1px solid #b5b5b5;
            box-shadow: 0 6px 8px 0 rgb(34 34 34 / 30%);
            padding: 17px 35px;
        }

    .editor_main_spinner h4 {
        font-size: 20px;
        text-align: left;
        float: left;
        letter-spacing: 0.5px;
        color: #42403d;
        font-family: 'Raleway-Medium', sans-serif;
        margin: 0;
    }

    .editor_main_spinner .spinner span {
        width: 25px;
        height: 25px;
        border: 3px dotted rgba(0,0,0,0.8);
        border-left-color: rgba(0,0,0,0.6);
        border-bottom-color: rgba(0,0,0,0.4);
        border-right-color: rgba(0,0,0,0.2);
        border-radius: 50%;
        -webkit-animation: spin 1s linear infinite;
        animation: spin 1s linear infinite;
        display: grid;
        float: right;
    }

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.editor_main_spinner .spinner .inner-container-text {
    position: absolute;
    top: 27%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 100px;
    border-radius: 6px;
    background: #fff;
    border: 1px solid #b5b5b5;
    box-shadow: 0 6px 8px 0 rgb(34 34 34 / 30%);
    padding: 30px;
    margin-top: 30px;
}

    .editor_main_spinner .spinner .inner-container-text p {
        font-size: 14px;
        font-family: 'Muli-Regular', sans-serif;
        text-align: center;
        line-height: 24px;
        letter-spacing: 0.35px;
        color: #42403d;
    }

div#mynotes_msg_strip {
    margin: 0px -22px;
    background: #af6318;
    padding: 13px;
    margin-top: -20px;
    height: 47px;
    margin-bottom: 15px;
}

.search_alertpd {
    text-align: center;
    color: #fff;
}

    .search_alertpd a {
        color: #fff;
        text-decoration: underline;
    }

@media (max-width: 600px) {
    div#mynotes_msg_strip {
        margin-top: 0px;
    }
}

a {
    color: #56afd7;
}

    a:hover, a:focus {
        text-decoration: none;
        outline: 0 !important;
    }

    a.text-muted:hover {
        color: #23b7e5;
    }

    a blockquote {
        color: #666;
    }

blockquote {
    font-style: italic;
}

hr {
    margin-top: 15px;
    margin-bottom: 15px;
}

button:focus {
    outline: 0 !important;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: 0px;
    /*font-weight: 700;*/
}

strong, b {
    font-weight: 700;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.padding-20 {
    padding: 20px;
}

.no-padding {
    padding: 0 !important;
}

.no-margin {
    margin: 0px !important;
}

.text-sm {
    font-size: 12px !important;
}

.font-100 {
    font-weight: 100 !important;
}

.font-300 {
    font-weight: 300 !important;
}

.font-400 {
    font-weight: 400 !important;
}

.font-500 {
    font-weight: 500 !important;
}

.font-600 {
    font-weight: 600 !important;
}

.font-700 {
    font-weight: 700 !important;
}

.overflow-hidden {
    overflow: hidden;
}

.pv-15 {
    padding-top: 15px !important;
    padding-bottom: 15px !important;
}

.padding-5 {
    padding: 5px !important;
}

.mv-0 {
    margin: 0 !important;
}

.mt-0 {
    margin-top: 0 !important;
}

.bb {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.br {
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}

.pv-0 {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.row-table {
    display: table;
    table-layout: fixed;
    height: 100%;
    width: 100%;
    margin: 0;
}

    .row-table > [class*=col-] {
        display: table-cell;
        float: none;
        table-layout: fixed;
        vertical-align: middle;
    }

.padding-0 {
    padding: 0px !important;
}

.font-lg {
    font-size: 60px;
    line-height: 60px;
}

/*background color*/
.bg-light {
    background-color: #fff !important;
    border-color: #fff !important;
}

.bg-gray {
    background-color: #f7f9fa !important;
    border-color: #f7f9fa !important;
}

.bg-primary {
    background-color: #23b7e5 !important;
    border-color: #23b7e5 !important;
    color: #fff;
}

.bg-blue {
    background-color: #03A9F4 !important;
    border-color: #03A9F4 !important;
    color: #fff;
}

.bg-success {
    background-color: #4CAF50 !important;
    border-color: #4CAF50 !important;
    color: #fff;
}

.bg-danger {
    background-color: #F44336 !important;
    border-color: #F44336 !important;
    color: #fff;
}

.bg-info {
    background-color: #56afd7 !important;
    border-color: #56afd7 !important;
    color: #fff;
}

.bg-teal {
    background-color: #26A69A !important;
    border-color: #26A69A !important;
    color: #fff;
}

.bg-indigo {
    background-color: #7986CB !important;
    border-color: #7986CB !important;
    color: #fff;
}

.bg-warning {
    background-color: #FF7043 !important;
    border-color: #FF7043 !important;
    color: #fff;
}

.bg-dark {
    background-color: #212121 !important;
    border-color: #212121 !important;
    color: #fff;
}

.bg-dark {
    background-color: #212121 !important;
    border-color: #212121 !important;
    color: #fff;
}

.text-muted {
    color: #909fa7;
    font-family: 'Muli-Regular', sans-serif;
    font-weight: 500;
}

.text-primary {
    color: #23b7e5;
}

.text-success {
    /*color: #4CAF50;*/
    color: #fff;
    letter-spacing: 0.2px;
    line-height: 1.3;
    border: 1px solid #6abbdc;
    background: #AF6318;
    padding: 6px 20px;
    margin: 0 0 10px 0;
    border-radius: 7px;
}

.text-danger {
    color: #c10000;
    font-size: 13px;
    letter-spacing: 0.33px;
    font-family: 'Muli-SemiBold', sans-serif;
}

.text-warning {
    color: #FF7043;
}

.text-blue {
    color: #03A9F4;
}

.text-info {
    color: #56afd7;
}

.text-teal {
    color: #26A69A;
}

.text-indigo {
    color: #7986CB;
}

/**alerts*/
.alert-danger {
    color: #F44336;
    background-color: transparent;
    border-color: #F44336;
}

.alert-warning {
    color: #FF7043;
    background-color: transparent;
    border-color: #FF7043;
}

.alert-info {
    color: #56afd7;
    background-color: transparent;
    border-color: #56afd7;
}

.alert-success {
    color: #4CAF50;
    background-color: transparent;
    border-color: #4CAF50;
}

/**toastr notification color**/
.jq-icon-info {
    background-color: #56afd7;
}

.jq-icon-success {
    background-color: #4CAF50;
}

.jq-icon-warning {
    background-color: #FF7043;
}

.jq-icon-error {
    background-color: #F44336;
}

.close-jq-toast-single {
    position: absolute;
    top: 1px;
    right: 4px;
    font-size: 14px;
    cursor: pointer;
}

.jq-toast-single {
    border-radius: 0px;
    font-family: 'Muli-Regular', sans-serif;
}

    .jq-toast-single h2 {
        font-family: 'Muli-Regular', sans-serif;
    }

.jq-toast-loader {
    height: 2px;
    border-radius: 0px;
}

.dropcap:first-letter {
    font-size: 18px;
    font-weight: 700;
    color: #23b7e5;
    display: inline-block;
}

/***margins**/
.margin-b-0 {
    margin-bottom: 0px;
}

.margin-b-5 {
    margin-bottom: 5px;
}

.margin-b-10 {
    margin-bottom: 10px;
}

.margin-b-20 {
    margin-bottom: 20px;
}

.margin-b-30 {
    margin-bottom: 30px;
}

.margin-b-40 {
    margin-bottom: 40px;
}

.margin-b-50 {
    margin-bottom: 50px;
}

.margin-r-5 {
    margin-right: 5px;
}

.margin-l-5 {
    margin-left: 5px;
}

.margin-tb-10 {
    margin: 10px 0;
}

.margin-tb-20 {
    margin: 20px 0;
}

.margin-tb-30 {
    margin: 30px 0;
}

.pad-v {
    padding: 10px 0;
}

.fullwidth {
    margin-left: -30px;
    margin-right: -30px;
    padding: 0px 30px;
}

.main-content.container {
    padding: 0px;
    width: auto;
}

.main-content.container {
    min-height: 100vh;
    padding: 22px;
    padding-bottom: 40px;
    padding-top: 42px;
    position: relative;
    margin-left: 242px;
    -moz-transition: margin-left 0.3s;
    -o-transition: margin-left 0.3s;
    -webkit-transition: margin-left 0.3s;
    transition: margin-left 0.3s;
}

body.nav-toggle .main-content {
    margin-left: 0px;
}

.infont a {
    padding: 10px;
    margin: 1px;
    display: block;
    color: #4d4d4d;
}

    .infont a i {
        font-size: 25px;
        display: block;
    }

.line-icons .item {
    padding: 10px;
    display: block;
    color: #4d4d4d;
}

    .line-icons .item span[aria-hidden="true"] {
        display: block;
        font-size: 20px;
    }

.slimScrollBar {
    background: #a4a4a4 !important;
}

.dashboard-only-content {
    padding-top: 30px;
}

/*
Panels css
*/
.panel {
    margin-bottom: 30px;
    border: 0px;
}

.panel, .panel-heading {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

.panel-heading {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    padding: 16px 15px;
    font-weight: 400;
    text-transform: capitalize;
    font-size: 15px;
}

.panel-heading-b {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    padding: 16px 15px;
    font-weight: 400;
    /*text-transform: capitalize;*/
    font-size: 15px;
}

.panel-group .panel {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

.panel-body {
    position: relative;
}

/**panel colors**/
.panel-primary {
    border-color: #23b7e5;
}

.panel-default {
    border-color: #e1e8ed;
}

    .panel-default > .panel-heading {
        background-color: transparent;
        border-bottom: 0px;
    }

    .panel-default .panel-heading a.collapsed {
        color: #666;
    }

.panel-primary > .panel-heading {
    color: #fff;
    background-color: #23b7e5;
    border-color: #23b7e5;
}

    .panel-primary > .panel-heading a {
        color: #fff;
    }

.panel-success {
    border-color: #4CAF50;
}

    .panel-success > .panel-heading {
        color: #fff;
        background-color: #4CAF50;
        border-color: #4CAF50;
    }

        .panel-success > .panel-heading a {
            color: #fff;
        }

.panel-info {
    border-color: #56afd7;
}

    .panel-info > .panel-heading {
        color: #fff;
        background-color: #56afd7;
        border-color: #56afd7;
    }

        .panel-info > .panel-heading a {
            color: #fff;
        }

.panel-warning {
    border-color: #FF7043;
}

    .panel-warning > .panel-heading {
        color: #fff;
        background-color: #FF7043;
        border-color: #FF7043;
    }

        .panel-warning > .panel-heading a {
            color: #fff;
        }

.panel-danger {
    border-color: #F44336;
}

    .panel-danger > .panel-heading {
        color: #fff;
        background-color: #F44336;
        border-color: #F44336;
    }

        .panel-danger > .panel-heading a {
            color: #fff;
        }

.panel-indigo {
    border-color: #7986CB;
}

    .panel-indigo > .panel-heading {
        color: #fff;
        background-color: #7986CB;
        border-color: #7986CB;
    }

        .panel-indigo > .panel-heading a {
            color: #fff;
        }

.panel-teal {
    border-color: #26A69A;
}

    .panel-teal > .panel-heading {
        color: #fff;
        background-color: #26A69A;
        border-color: #26A69A;
    }

        .panel-teal > .panel-heading a {
            color: #fff;
        }

.panel-search {
    position: relative;
    width: 170px;
    float: right;
}

    .panel-search .form-control {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none;
        -webkit-border-radius: 2px;
        -moz-border-radius: 2px;
        -ms-border-radius: 2px;
        border-radius: 2px;
        height: 24px;
        font-size: 12px;
        font-weight: 300;
    }

    .panel-search span {
        position: absolute;
        right: 10px;
        top: 7px;
        border: 0px;
        font-size: 11px;
    }

.panel-footer {
    padding: 10px 15px;
    background: #fff;
}

/**wells*/
.well-default {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    background: #fff;
}

/*
Label & badges
*/
.label {
    font-weight: 400;
    font-size: 10px;
    display: inline;
    vertical-align: middle;
}

.label-primary {
    background-color: #23b7e5;
}

.label-danger {
    background-color: #F44336;
}

.label-warning {
    background-color: #FF7043;
}

.label-info {
    background-color: #56afd7;
}

.label-success {
    background-color: #4CAF50;
}

.label-default {
    background-color: #dde6e9;
    color: #333;
}

.label-indigo {
    background-color: #7986CB;
}

.label-teal {
    background-color: #26A69A;
}

/**badge**/
.badge:empty {
    padding: 0px;
    width: 6px;
    height: 6px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    border-radius: 3px;
    min-width: auto;
    display: inline-block;
    vertical-align: middle;
}

.badge {
    font-weight: 400;
    padding: 2px 5px;
    font-size: 10px;
}

.badge-primary {
    background-color: #23b7e5;
}

.badge-danger {
    background-color: #F44336;
}

.badge-warning {
    background-color: #FF7043;
}

.badge-info {
    background-color: #56afd7;
}

.badge-success {
    background-color: #4CAF50;
}

.badge-default {
    background-color: #dde6e9;
    color: #333;
}

.badge-indigo {
    background-color: #7986CB;
}

.badge-teal {
    background-color: #26A69A;
}

/**circle**/
.circle {
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 500px;
    margin: 0 .5em;
    background-color: #f5f5f5;
    vertical-align: baseline;
    border: 2px solid transparent;
}

.circle-primary {
    background: #23b7e5;
}

.circle-success {
    background: #4CAF50;
}

.circle-info {
    background: #56afd7;
}

.circle-warning {
    background: #FF7043;
}

.circle-danger {
    background: #F44336;
}

.circle-teal {
    background: #26A69A;
}

.circle-indigo {
    background: #7986CB;
}

.circle-lg {
    width: 11px;
    height: 11px;
}

/*
Buttons style
*/
.buttons a {
    margin: 3px;
}

.btn {
    border-radius: 2px;
    -webkit-border-radius: 2px;
    text-transform: capitalize;
    font-size: 13px;
    padding: 7px 14px;
    font-weight: 400;
}

    .btn.btn-sm {
        padding: 6px 10px;
    }

    .btn.btn-lg {
        padding: 10px 30px;
        font-size: 16px;
    }

    .btn.btn-xs {
        padding: 4px 8px;
        font-size: 11px;
    }

    .btn.btn-rounded {
        border-radius: 100px;
        -webkit-border-radius: 100px;
        overflow: hidden;
    }

    .btn.btn-icon {
        position: relative;
        overflow: hidden;
        padding-left: 50px;
    }

        .btn.btn-icon i {
            position: absolute;
            height: 100%;
            line-height: 100%;
            width: 40px;
            line-height: 34px;
            text-align: center;
            top: 0;
            left: 0;
            background-color: rgba(0, 0, 0, 0.1);
        }

.btn-default {
    background-color: #fff;
    border-color: #dde6e9;
}

    .btn-default:hover {
        background-color: #dde6e9;
        border-color: #dde6e9;
        opacity: 0.9;
    }

    .btn-default:focus {
        border-color: #dde6e9;
        background: #fff;
    }

.btn-primary {
    background-color: #5464f7;
    border-color: #5464f7;
    color: #fff;
}

    .btn-primary:hover {
        color: #fff;
        opacity: 0.9;
        background-color: #5464f7;
        border-color: #5464f7;
    }

    .btn-primary:focus {
        color: #fff;
        background-color: #23b7e5;
        border-color: #23b7e5;
    }

    .btn-primary:focus-visible {
        box-shadow: inset 0px 0px 0px 2px #0f89d1, #de7300 0px 0px 0px 4px inset;
    }

.btn-info {
    background-color: #56afd7;
    border-color: #56afd7;
    color: #fff;
}

    .btn-info:hover {
        color: #fff;
        opacity: 0.9;
        background-color: #56afd7;
        border-color: #56afd7;
    }

    .btn-info:focus {
        color: #fff;
        background-color: #56afd7;
        border-color: #56afd7;
    }

.btn-success {
    background-color: #4CAF50;
    border-color: #4CAF50;
    color: #fff;
}

    .btn-success:hover {
        color: #fff;
        opacity: 0.9;
        border-color: #4CAF50;
    }

    .btn-success:focus {
        color: #fff;
        border-color: #4CAF50;
    }

.btn-warning {
    background-color: #FF7043;
    border-color: #FF7043;
    color: #fff;
}

    .btn-warning:hover {
        color: #fff;
        opacity: 0.9;
        background-color: #FF7043;
        border-color: #FF7043;
    }

    .btn-warning:focus {
        color: #fff;
        background-color: #FF7043;
        border-color: #FF7043;
    }

.btn-danger {
    background-color: #F44336;
    border-color: #F44336;
    color: #fff;
}

    .btn-danger:hover {
        color: #fff;
        opacity: 0.9;
        background-color: #F44336;
        border-color: #F44336;
    }

    .btn-danger:focus {
        color: #fff;
        background-color: #F44336;
        border-color: #F44336;
    }

.btn-teal {
    background-color: #26A69A;
    border-color: #26A69A;
    color: #fff;
}

    .btn-teal:hover {
        color: #fff;
        opacity: 0.9;
        border-color: #26A69A;
    }

    .btn-teal:focus {
        color: #fff;
        border-color: #26A69A;
    }

.btn-indigo {
    background-color: #7986CB;
    border-color: #7986CB;
    color: #fff;
}

    .btn-indigo:hover {
        color: #fff;
        opacity: 0.9;
    }

    .btn-indigo:focus {
        color: #fff;
    }

/**border buttons**/
.btn.btn-border:hover {
    opacity: 1 !important;
}

.btn.btn-border {
    background-color: transparent;
}

    .btn.btn-border.btn-default {
        border: 1px solid #dde6e9;
    }

        .btn.btn-border.btn-default:hover {
            background-color: #dde6e9;
        }

        .btn.btn-border.btn-default:focus {
            background-color: transparent;
        }

    .btn.btn-border.btn-primary {
        color: #23b7e5;
        border: 1px solid #23b7e5;
    }

        .btn.btn-border.btn-primary:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-primary:hover {
            background-color: #23b7e5;
            color: #fff;
        }

    .btn.btn-border.btn-success {
        color: #4CAF50;
        border: 1px solid #4CAF50;
    }

        .btn.btn-border.btn-success:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-success:hover {
            background-color: #4CAF50;
            color: #fff;
        }

    .btn.btn-border.btn-info {
        color: #56afd7;
        border: 1px solid #56afd7;
    }

        .btn.btn-border.btn-info:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-info:hover {
            background-color: #56afd7;
            color: #fff;
        }

    .btn.btn-border.btn-warning {
        color: #FF7043;
        border: 1px solid #FF7043;
    }

        .btn.btn-border.btn-warning:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-warning:hover {
            background-color: #FF7043;
            color: #fff;
        }

    .btn.btn-border.btn-danger {
        color: #F44336;
        border: 1px solid #F44336;
    }

        .btn.btn-border.btn-danger:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-danger:hover {
            background-color: #F44336;
            color: #fff;
        }

    .btn.btn-border.btn-indigo {
        color: #7986CB;
        border: 1px solid #7986CB;
    }

        .btn.btn-border.btn-indigo:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-indigo:hover {
            background-color: #7986CB;
            color: #fff;
        }

    .btn.btn-border.btn-teal {
        color: #26A69A;
        border: 1px solid #26A69A;
    }

        .btn.btn-border.btn-teal:focus {
            background-color: transparent;
        }

        .btn.btn-border.btn-teal:hover {
            background-color: #26A69A;
            color: #fff;
        }

/**social buttons**/
.btn-facebook {
    color: #ffffff !important;
    background-color: #3b5998 !important;
}

.btn-twitter {
    color: #ffffff !important;
    background-color: #55acee !important;
}

.btn-linkedin {
    color: #ffffff !important;
    background-color: #007bb6 !important;
}

.btn-dribbble {
    color: #ffffff !important;
    background-color: #ea4c89 !important;
}

.btn-googleplus {
    color: #ffffff !important;
    background-color: #dd4b39 !important;
}

.btn-instagram {
    color: #ffffff !important;
    background-color: #3f729b !important;
}

.btn-pinterest {
    color: #ffffff !important;
    background-color: #cb2027 !important;
}

.btn-dropbox {
    color: #ffffff !important;
    background-color: #007ee5 !important;
}

.btn-flickr {
    color: #ffffff !important;
    background-color: #ff0084 !important;
}

.btn-tumblr {
    color: #ffffff !important;
    background-color: #32506d !important;
}

.btn-skype {
    color: #ffffff !important;
    background-color: #00aff0 !important;
}

.btn-youtube {
    color: #ffffff !important;
    background-color: #bb0000 !important;
}

.btn-github {
    color: #ffffff !important;
    background-color: #171515 !important;
}

/*
Top bar styles
*/
.top-bar {
    height: 42px;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 999;
}

.dashbaord-logo {
    margin-right: 10px;
    /*display: inline-block;*/
    padding: 0;
}

.icon_float_center {
    float: right
}

.admin-logo {
    background-image: url('../../Images/svg-images/AU-sheet2/icon-219-dashboardhome-au-inactive.svg');
    width: 51px;
    height: 41px;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
}

    .admin-logo:hover /*, .admin-logo:focus*/ {
        background-image: url('../../Images/svg-images/AU-sheet2/icon-219-dashboardhome-au-hover.svg');
        background-position: 5px 5px;
    }

.left-nev-toggle {
    background-image: url('../../Images/svg-images/AU-sheet1/icon-201-mainmenu-au-inactive.svg');
    width: 51px;
    height: 41px;
    float: left;
    background-repeat: no-repeat;
    background-position: center;
}

    .left-nev-toggle:hover /*, .left-nev-toggle:focus*/ {
        background-image: url('../../Images/svg-images/AU-sheet1/icon-201-mainmenu-au-selected.svg');
        background-position: 5px 5px;
    }

.top-right-nav {
    margin: 0;
    padding: 0;
    float: right;
    padding-right: 0px;
}

    .top-right-nav > li {
        display: block;
        float: left;
        position: relative;
        padding: 2px 15px;
        border-left: 1px solid #434c53;
    }

        .top-right-nav > li:first-child {
            border-left: 0 !important;
            padding: 1px 15px;
        }

        .top-right-nav > li i {
            vertical-align: middle;
            display: inline-block;
            margin-left: 0;
            font-size: 16px;
        }

        .top-right-nav > li > a {
            line-height: 30px;
            padding: 4px 4px;
        }

            .top-right-nav > li > a.dropdown-toggle {
                display: inline-block;
            }

            .top-right-nav > li > a img {
                border: 2px solid #353d43;
                margin-right: 0px;
                width: 30px;
                height: 30px;
                background-color: #e9e9e9;
                display: inline-block;
            }

        .top-right-nav > li.open > a img {
            border: 2px solid #fff;
        }

.icon-dropdown .badge {
    position: absolute;
    top: 16px;
    right: 3px;
}

.left-nav-toggle {
    display: block;
    margin-left: 0px;
    line-height: 60px;
    float: left;
}

    .left-nav-toggle a {
        display: block;
        color: #fff;
        font-size: 15px;
        width: 50px;
        height: 60px;
        line-height: 60px;
        text-align: center;
    }

/*search form*/
.search-form {
    display: block;
    float: left;
    position: relative;
    margin-top: 10px;
    width: 90%;
}
    /* .search-form .form-control {
  width: 180px;
  border: 0px;
  background: rgba(255, 255, 255, 0.2);
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  -ms-box-shadow: none;
  box-shadow: none;
  -webkit-border-radius: 100px;
  -moz-border-radius: 100px;
  -ms-border-radius: 100px;
  border-radius: 100px;
  height: 34px;
  color: #fff;
} */
    /* .search-form .form-control:focus {
  background-color: rgba(255, 255, 255, 0.5);
} */
    .search-form .form-control::-webkit-input-placeholder {
        color: #fff;
    }

    .search-form .form-control:-moz-placeholder {
        /* Firefox 18- */
        color: #fff;
    }

    .search-form .form-control::-moz-placeholder {
        /* Firefox 19+ */
        color: #fff;
    }

    .search-form .form-control:-ms-input-placeholder {
        color: #fff;
    }

    .search-form .btn-search {
        position: absolute;
        right: 10px;
        top: 0px;
        border: 0;
        background: transparent;
        color: #fff;
        padding: 0;
    }

#search_box::-webkit-input-placeholder {
    color: #707070;
}

#search_box::-moz-placeholder {
    /* Firefox 18- */
    color: #707070;
}

#search_box::placeholder {
    /* Firefox 18- */
    color: #707070;
}
/**light top bar***/
.top-bar.light-top-bar {
    background: #353d43;
    border-bottom: 1px solid #434c53;
    z-index: 10000;
    display:flex;
    justify-content:space-between;
    align-items:center;
}
    .top-bar.light-top-bar > *{
        flex:1 1 33%;
    }
    .top-bar.light-top-bar .nte-logo {
        display: flex;
        align-items: center;
        justify-content:center;
    }

    .search-form i {
        color: #4d4d4d;
    }
/*.search-form .form-control {
    background-color: #f9f9f9;
}*/
.search-form .form-control::-webkit-input-placeholder {
    color: #4d4d4d;
}

.search-form .form-control:-moz-placeholder {
    /* Firefox 18- */
    color: #4d4d4d;
}

.search-form .form-control::-moz-placeholder {
    /* Firefox 19+ */
    color: #4d4d4d;
}

.search-form .form-control:-ms-input-placeholder {
    color: #4d4d4d;
}

.top-bar.light-top-bar .left-nav-toggle a {
    color: #999;
}

/*
Dropdown styles
*/
.dropdown-menu {
    background: #fff;
    -webkit-box-shadow: 0 6px 8px 0 rgba(34, 34, 34, .3);
    -moz-box-shadow: 0 6px 8px 0 rgba(34, 34, 34, .3);
    box-shadow: 0 6px 8px 0 rgba(34, 34, 34, .3);
    z-index: 10000;
    width: 260px;
    top: 41px;
    right: 25px;
    left: auto;
    margin: 0;
    padding: 0;
    border-radius: 16px;
    padding: 24px 32px 8px 32px;
}
.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
}
.btn-light {
    background: #fff;
    color: #333333;
    border: solid 1px black;
    border-radius: 6px;
    padding: 16px 32px;
}

.dropdown-menu > li i {
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
    font-size: 15px;
}

.dropdown-menu > li > a {
    color: #777;
    padding: 7px 20px;
}

    .dropdown-menu > li > a:hover {
        color: #23b7e5;
    }
/* 
ul.dropdown-menu.top-dropdown {
    right: -70px;
    left: auto;
    top: 30px;
}

.dropdown-menu.lg-dropdown {
  min-width: 280px;
} */
.notification-dropdown {
    right: -70px;
    left: auto;
    top: 30px;
    min-width: 600px;
    background-color: #ffffff;
    box-shadow: 0px 2px 8px 0 rgba(34, 34, 34, 0.3);
    border: 0px solid;
    overflow: auto;
}

.dropdown-header {
    padding: 7px 20px;
    color: #23b7e5;
    font-size: 13px;
}

.notification-list a {
    display: block;
    border-bottom: 1px solid #e6e6e6;
    display: block;
    position: relative;
    padding: 12px 20px;
}

    .notification-list a i {
        display: block;
        float: left;
        width: 50px;
        text-align: center;
        height: 50px;
        line-height: 50px;
        font-size: 25px;
    }

    .notification-list a span {
        display: block;
        line-height: 20px;
        font-size: 14px;
    }

        .notification-list a span.notification-icon {
            position: absolute;
            top: 50%;
            left: 10px;
            width: 50px;
            height: 50px;
            margin: -25px 12px 0 0;
            font-size: 14px;
            line-height: 50px;
            text-align: center;
        }

            .notification-list a span.notification-icon i {
                display: block;
                width: 50px;
                height: 50px;
                text-align: center;
                font-size: 28px;
                display: block;
                line-height: 40px;
            }

        .notification-list a span.notification-title {
            color: #000;
            padding-bottom: 1px;
            float: left;
            margin-right: 10px;
            text-align: left;
            font-family: 'Muli-Regular', sans-serif;
        }

        .notification-list a span.notification-description {
            padding-bottom: 0;
            color: #000;
            display: inline-block;
            font-family: 'Muli-SemiBold', sans-serif;
        }

        .notification-list a span.notification-time {
            color: #707070;
            font-size: 12px;
            text-align: left;
            margin-top: -2px;
            font-family: 'Muli-SemiBold', sans-serif;
        }

    .notification-list a:hover {
        background-color: #f6f6f8;
    }

.panel-dropdown {
    right: 0;
    left: auto;
}

/*
Left side navigation style
*/
.float-navigation {
    position: fixed;
    left: 0;
    top: 0px;
    width: 242px;
    height: 100%;
    -moz-transition: margin-left 0.3s;
    -o-transition: margin-left 0.3s;
    -webkit-transition: margin-left 0.3s;
    transition: margin-left 0.3s;
    background-repeat: repeat;
}

.light-navigation {
    background-color: #353d43;
}

.dark-navigation {
    background-color: #263238;
}

body.nav-toggle .float-navigation {
    margin-left: -242px;
}

.nav > li > a:hover {
    color: #23b7e5;
}

.metisMenu {
    padding-bottom: 30px;
    padding-top: 50px;
    height: calc(100% - 24px);
    position: absolute;
    width: 100%;
    overflow: auto;
}

    .metisMenu li {
        border-left: 0px solid transparent;
        margin-bottom: 2px;
        border-left: 4px solid transparent;
    }

        .metisMenu li.active {
            border-left: 4px solid #fff;
        }

    .metisMenu .arrow {
        float: right;
        line-height: 1.42857;
        padding-top: 2px;
    }

    .metisMenu .fa.arrow:before {
        content: "\f106";
    }

    .metisMenu .active > a > .fa.arrow:before {
        content: "\f107";
    }

    .metisMenu > li.nav-heading {
        padding: 29px 20px 40px 20px;
        font-weight: 400;
        font-size: 12px;
        color: #aeaeae;
        height: 130px;
        text-align: left;
    }

        .metisMenu > li.nav-heading h4 {
            font-size: 14px;
            text-align: left;
            letter-spacing: 0.35px;
            font-family: 'Muli-Regular', sans-serif;
            color: #b5b5b5;
        }

.disable-menu-option {
    pointer-events: none;
    cursor: default;
    background: #525b63 !important;
    text-decoration: none;
}

.disabled-menu-text {
    color: #969696 !important;
}

.back_to_dashboard {
    padding: 3px 10px !important;
    height: auto !important;
    text-align: left !important;
    color: #fff;
    background: transparent !important;
    margin-left: -10px;
}

.metisMenu > li.nav-heading .back_to_dashboard h4 {
    width: 100%;
    color: #f6f6f8;
    font-family: 'NotoSans-Regular ', sans-serif;
    margin: 0;
}

    .metisMenu > li.nav-heading .back_to_dashboard h4:hover {
        text-decoration: underline;
    }

.metisMenu > li.nav-heading p {
    font-size: 12px;
    text-align: left;
    letter-spacing: 0.3px;
    margin-top: 5px;
    color: #15a7e4;
    font-family: 'Muli-Regular', sans-serif;
}

.metisMenu.nav > li > a {
    padding: 35px 20px 35px 16px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 14px;
    height: 150px;
    text-align: center;
    background-color: #2c3237;
}

    .metisMenu.nav > li > a i {
        display: inline-block;
        margin-right: 5px;
        vertical-align: middle;
        margin-top: -4px;
        width: 20px;
    }

.nav-second-level.nav li a, .nav-thrid-level.nav li a {
    padding: 5px 10px 5px 10px;
    text-transform: capitalize;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

    .nav-second-level.nav li a:hover, .nav-second-level.nav li a:focus, .nav-thrid-level.nav li a:hover, .nav-thrid-level.nav li a:focus {
        color: white;
        background: transparent;
    }

.nav-second-level.nav > li > a {
    padding-left: 40px;
}

.nav-third-level.nav > li > a {
    padding-left: 50px;
}

.metisMenu.nav > li.active > a h3 {
    color: #fff;
}

.metisMenu.nav > li > a h3 {
    margin: 10px 0 0 0;
    font-size: 14px;
    text-align: center;
    letter-spacing: 0.91px;
    color: #cfd3Fc;
    font-family: 'Raleway-Medium', sans-serif;
}

.light-navigation .metisMenu.nav > li > a:hover h3, .light-navigation .metisMenu.nav > li > a:focus h3 {
    color: #fff;
}


.light-navigation .metisMenu.nav > .nav-dashboard > a .dashbaord-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-292-sidebardashboarddash-au-inactive.svg');
    width: 62px;
    height: 53px;
    margin: 0 auto;
    background-repeat: no-repeat;
}

.light-navigation .metisMenu.nav > .nav-dashboard.active > a .dashbaord-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-292-sidebardashboarddash-au-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-dashboard > a:hover .dashbaord-button, .light-navigation .metisMenu.nav > .nav-dashboard > a:focus .dashbaord-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-292-sidebardashboarddash-au-selected.svg');
}



.light-navigation .metisMenu.nav > .nav-training > a .training-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-293-sidebardashboardvideos-au-inactive.svg');
    width: 62px;
    height: 53px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: 0 4px;
}

.light-navigation .metisMenu.nav > .nav-training.active > a .training-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-293-sidebardashboardvideos-au-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-training > a:hover .training-button, .light-navigation .metisMenu.nav > .nav-training > a:focus .training-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-293-sidebardashboardvideos-au-selected.svg');
}




.light-navigation .metisMenu.nav > .nav-setting > a .setting-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-294-sidebardashboardsettings-au-inactive.svg');
    width: 51px;
    height: 53px;
    margin: 0 auto;
    background-repeat: no-repeat;
}

.light-navigation .metisMenu.nav > .nav-setting.active > a .setting-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-294-sidebardashboardsettings-au-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-setting > a:hover .setting-button, .light-navigation .metisMenu.nav > .nav-setting > a:focus .setting-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-294-sidebardashboardsettings-au-selected.svg');
}





.light-navigation .metisMenu.nav > .nav-profile > a .profile-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-295-sidebaraccountprofile-au-inactive.svg');
    width: 40px;
    height: 53px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-position: 0 0px;
}

.light-navigation .metisMenu.nav > .nav-profile.active > a .profile-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-295-sidebaraccountprofile-au-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-profile > a:hover .profile-button, .light-navigation .metisMenu.nav > .nav-profile > a:focus .profile-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-295-sidebaraccountprofile-au-selected.svg');
}




.light-navigation .metisMenu.nav > .nav-security > a .security_privacy-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-296-sidebaraccountsecurity-au-inactive.svg');
    width: 36px;
    height: 53px;
    margin: 0 auto;
    background-repeat: no-repeat;
}

.light-navigation .metisMenu.nav > .nav-security.active > a .security_privacy-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-296-sidebaraccountsecurity-au-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-security > a:hover .security_privacy-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-296-sidebaraccountsecurity-au-selected.svg');
}





.light-navigation .metisMenu.nav > .nav-products > a .products_plans-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-297-sidebaraccountplans-au-inactive.svg');
    width: 58px;
    height: 53px;
    margin: 0 auto;
    background-repeat: no-repeat;
}

.light-navigation .metisMenu.nav > .nav-products.active > a .products_plans-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-297-sidebaraccountplans-au-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-products > a:hover .products_plans-button {
    background-image: url('../../Images/svg-images/AU-sheet10/icon-297-sidebaraccountplans-au-selected.svg');
}






.light-navigation .metisMenu.nav > .nav-dashboard > a .students-button {
    background-image: url('../../Images/svg-images/other assets/icon-eap-students-inactive.svg');
    width: 35px;
    height: 20px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: contain;
}
.light-navigation .metisMenu.nav > .nav-dashboard > a:hover .admin-button {
    color: #fff;
}
.light-navigation .metisMenu.nav > .nav-dashboard > a .admin-button {
    width: 28px;
    height: 20px;
    margin: 0 auto;
    background-repeat: no-repeat;
    color: #cfd3Fc;
}
.light-navigation .metisMenu.nav > .nav-dashboard.active > a .admin-button {
    color: #fff;
}

.light-navigation .metisMenu.nav > .nav-dashboard.active > a .students-button {
    /*background-size: cover;*/
    background-image: url('../../Images/svg-images/other assets/icon-eap-students-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-dashboard > a:hover .students-button {
    /*background-size: cover;*/
    background-image: url('../../Images/svg-images/other assets/icon-eap-students-selected.svg');
}






.light-navigation .metisMenu.nav > .nav-training > a .subjects-button {
    background-image: url('../../Images/svg-images/other assets/icon-eap-subjects-inactive.svg');
    width: 25px;
    height: 20px;
    margin: 0 auto;
    background-repeat: no-repeat;
    background-size: cover;
}

.light-navigation .metisMenu.nav > .nav-training.active > a .subjects-button {
    background-image: url('../../Images/svg-images/other assets/icon-eap-subjects-selected.svg');
}

.light-navigation .metisMenu.nav > .nav-training > a:hover .subjects-button {
    background-image: url('../../Images/svg-images/other assets/icon-eap-subjects-selected.svg');
}

/**nano scroll customize**/
.nano > .nano-pane {
    width: 5px;
    background: transparent;
}

    .nano > .nano-pane > .nano-slider {
        background: rgba(255, 255, 255, 0.2);
    }

/**nav colors for light left navigation*/
.light-navigation {
    border-right: 1px solid #ddd;
}

    .light-navigation .metisMenu.nav > li > a.bg-primary {
        color: #fff;
    }

        .light-navigation .metisMenu.nav > li > a.bg-primary:hover {
            color: #fff;
        }

    .light-navigation .nav-second-level.nav li a, .light-navigation .nav-thrid-level.nav li a {
        color: #818181;
    }

        .light-navigation .nav-second-level.nav li a:hover, .light-navigation .nav-thrid-level.nav li a:hover {
            color: #23b7e5;
        }

    .light-navigation .nano > .nano-pane > .nano-slider {
        background: rgba(0, 0, 0, 0.05);
    }

/*
Right sidebar
*/
.nav-tab-panel {
    margin: 0;
    padding: 0;
}

    .nav-tab-panel > li {
        padding: 0px;
        width: 50%;
        margin: 0;
        display: block;
        float: left;
    }

        .nav-tab-panel > li > a {
            display: block;
            padding: 14px 15px;
            text-align: center;
            background: #fbfbfb;
            font-size: 14px;
            text-transform: capitalize;
            color: #676a6c;
            border-bottom: 2px solid transparent;
        }

        .nav-tab-panel > li.active a {
            border-bottom-color: #23b7e5;
            color: #23b7e5;
        }

.right_sidebar {
    position: fixed;
    right: 0px;
    margin-right: -270px;
    top: 60px;
    z-index: 9999;
    width: 270px;
    border-left: 1px solid #eee;
    -moz-transition: margin-right 0.3s;
    -o-transition: margin-right 0.3s;
    -webkit-transition: margin-right 0.3s;
    transition: margin-right 0.3s;
    height: 100%;
    background: #fff;
    padding-bottom: 20px;
}

    .right_sidebar > .nano > .nano-content > div {
        padding-bottom: 40px;
    }

    .right_sidebar.right-sidebar-toggle {
        margin-right: 0px;
    }

.sidebar-list {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

    .sidebar-list li {
        border-bottom: 1px solid #e7eaec;
        padding: 15px 20px;
        list-style: none;
    }

        .sidebar-list li > a {
            color: inherit;
            display: block;
        }

            .sidebar-list li > a h4 {
                margin-bottom: 5px;
                font-weight: 500;
                font-size: 15px;
            }

            .sidebar-list li > a .small {
                margin-top: 0px;
                margin-bottom: 5px;
            }

        .sidebar-list li.sidebar-title {
            background: #fefefe;
        }

            .sidebar-list li.sidebar-title h3 {
                margin-bottom: 0px;
                text-transform: capitalize;
            }

            .sidebar-list li.sidebar-title:hover {
                background: #fefefe;
            }

        .sidebar-list li:hover {
            background: #fefefe;
        }

    .sidebar-list.projects-list > li {
        padding: 15px 0px;
    }

.sidebar-contact-list li {
    padding: 10px 20px;
    border-bottom: 1px solid #eee;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

    .sidebar-contact-list li a {
        display: block;
    }

        .sidebar-contact-list li a:hover {
            color: #8cb5f4;
        }

    .sidebar-contact-list li:hover {
        background: #f1f1f1;
    }

    .sidebar-contact-list li:last-child {
        border-bottom: 0px;
    }

        .sidebar-contact-list li:last-child:hover {
            background: transparent;
        }

    .sidebar-contact-list li .btn {
        display: inline-block;
    }

        .sidebar-contact-list li .btn:hover {
            color: #fff;
        }

.sidebar-contact-list .media-box-object {
    width: 50px;
    margin-right: 15px;
}

.sidebar-contact-list .media-box-body {
    overflow: hidden;
}

    .sidebar-contact-list .media-box-body strong {
        font-weight: 500;
    }

/*
Page header style
*/
.page-header {
    margin: 0px;
    margin-left: -22px;
    margin-right: -22px;
    padding-left: 23px;
    padding-right: 30px;
    padding-top: 25px;
    padding-bottom: 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    box-shadow: 0px 4px 4px 0 rgba(45, 45, 45, 0.15);
    min-height: 90px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    flex-wrap:wrap;
}
    .page-header > .search-form {
        flex: 1 0 170px;
    }
    .page-header > .student_button {
        flex: 1 0 auto;
        display:flex;
        align-items:center;
        justify-content:center;
        flex-wrap:wrap;
        gap:8px;
        max-width:100%;
    }
    .page-header > .select_school_list {
        flex: 1 0 auto;
        display:flex;
        align-items:center;
    }
    .page-header > .select_school_list #SchoolId_Dropdown {
        flex: 1 0 0%;
    }

    @media(max-width:1251.98px) {
        .page-header{
            gap:1rem;
        }
        .page-header .student_button {
            order: 3;
        }
        .page-header > .student_button{
            justify-content:start;
        }
        .page-header > .select_school_list {
            order: 2;
        }
    }
    @media(max-width:600px){
        .student_button > * {
            width: 100%;
            flex: 1 1 100%;
        }
    }
    .page-header h4 {
        margin: 0 0 13px 0;
        font-size: 20px;
        text-align: left;
        color: #000;
        font-family: 'Raleway-Medium', sans-serif;
        letter-spacing: 0.5px;
    }

    .page-header .breadcrumb {
        margin: 0px;
        background: transparent;
        padding: 0;
        text-transform: capitalize;
    }

/*
Widgets
*/
.widget {
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    border-radius: 2px;
    padding: 15px 20px;
    margin-bottom: 30px;
}

    .widget h2 {
        margin-bottom: 0px;
    }

    .widget .thumb-over {
        position: relative;
        margin-top: -50px;
        width: 100px;
        margin-left: auto;
        margin-right: auto;
    }

        .widget .thumb-over img {
            /*border: 3px solid #fff;*/
        }

    .widget .progress {
        margin-bottom: 20px;
    }

    .widget .flot-chart {
        height: 100px;
    }

    .widget ul li a {
        color: #fff;
        opacity: 0.8;
    }

        .widget ul li a:hover {
            opacity: 1;
        }

/**chat room*/
.chat-list .chat-element {
    margin-bottom: 20px;
}

    .chat-list .chat-element a img {
        width: 38px;
        height: 38px;
        margin-right: 10px;
    }

    .chat-list .chat-element .media-body {
        padding-left: 15px;
    }

        .chat-list .chat-element .media-body .speech-box {
            background: #f5f5f5;
            position: relative;
            padding: 10px 15px;
            -webkit-border-radius: 3px;
            -moz-border-radius: 3px;
            -ms-border-radius: 3px;
            border-radius: 3px;
        }

            .chat-list .chat-element .media-body .speech-box:before {
                content: "";
                display: block;
                position: absolute;
                width: 0;
                height: 0;
                left: 0;
                top: 0;
                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
                border-right: 7px solid #f5f5f5;
                margin: 15px 0 0 -6px;
            }

    .chat-list .chat-element.right a img {
        margin-right: 0px;
        margin-left: 10px;
    }

    .chat-list .chat-element.right .media-body {
        padding-left: 0px;
        padding-right: 15px;
    }

        .chat-list .chat-element.right .media-body .speech-box {
            background-color: #fefefe;
        }

            .chat-list .chat-element.right .media-body .speech-box:before {
                left: auto;
                right: 0;
                border-top: 7px solid transparent;
                border-bottom: 7px solid transparent;
                border-left: 7px solid #fefefe;
                border-right: 0;
                margin: 15px -6px 0 0;
            }

/**todo list**/
.todo-list {
    list-style: none outside none;
    margin: 0;
    padding: 0;
}

    .todo-list > li {
        background: #fbfbfb;
        color: inherit;
        margin-bottom: 2px;
        padding: 10px;
    }

        .todo-list > li span {
            display: inline-block;
            vertical-align: middle;
            margin-left: 10px;
        }

.friends-group a {
    margin: 3px;
    display: block;
    float: left;
    width: 40px;
}

    .friends-group a.more {
        width: 40px;
        height: 40px;
        background: #eee;
        line-height: 40px;
        text-align: center;
        -webkit-border-radius: 50%;
        -moz-border-radius: 50%;
        -ms-border-radius: 50%;
        border-radius: 50%;
        color: #999;
    }

        .friends-group a.more:hover {
            background: #23b7e5;
            color: #fff;
        }

.comments-list > li {
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

    .comments-list > li img {
        float: left;
        margin-right: 20px;
    }

    .comments-list > li .content {
        overflow: hidden;
    }

        .comments-list > li .content ul {
            margin: 0;
            padding: 0;
        }

            .comments-list > li .content ul li > a {
                color: #999;
            }

                .comments-list > li .content ul li > a:hover {
                    color: #23b7e5;
                }

.widget-chart .widget-title {
    border-bottom: 1px solid #e7eaec;
    border-image: none;
    color: inherit;
    margin-bottom: 0;
    padding: 15px;
}

.widget-chart .widget-content {
    color: inherit;
    padding: 15px 20px 20px 20px;
    position: relative;
}

.widget-chart .sparkline-chart {
    padding: 5px;
}

.stat-list .stat-percent {
    float: right;
}

.stat-list li {
    margin-top: 15px;
    position: relative;
}

    .stat-list li:first-child {
        margin-top: 0;
    }

/*
Form elements style
*/
label {
    font-weight: 600;
}

.form-control, input[type="text"], input[type="email"], textarea {
    font-size: 14px;
    font-family: 'Muli-Regular', sans-serif;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
    border: 1px solid #e6e6e6;
    display: block;
    width: 100%;
    height: 31px;
    padding: 2px 12px;
    line-height: 1.42857143;
    color: #000;
    background-color: #fff;
    background-image: none;
    margin-top: 1px;
    letter-spacing: 0.35px;
}

    .form-control:hover {
        border-bottom-color: #707070;
    }


    .form-control:focus, input[type="text"]:focus, input[type="email"]:focus, textarea:focus {
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        -ms-box-shadow: none;
        box-shadow: none;
        outline: 0 !important;
        border-color: #707070;
    }

.input-xs {
    height: 24px;
    padding: 2px 10px;
    font-size: 10px;
    line-height: 1.5;
    border-radius: 3px;
    font-weight: 400;
}

.checkbox label, .radio label {
    padding-left: 0px;
}

    .checkbox label span {
        display: inline-block;
        vertical-align: middle;
        padding-left: 5px;
        font-size: 13px;
        line-height: 22px;
    }

/*file upload*/
.fileupload {
    overflow: hidden;
    position: relative;
}

    .fileupload input.upload {
        cursor: pointer;
        filter: alpha(opacity=0);
        font-size: 20px;
        margin: 0;
        opacity: 0;
        padding: 0;
        position: absolute;
        right: 0;
        top: 0;
    }

/**wysiwyg html5 editor custom css**/
.wysihtml5-toolbar > li > a:hover, .inbox-compose .wysihtml5-toolbar > li > div > a:hover {
    background: #f1f1f1 !important;
    border-color: #f1f1f1 !important;
    border-radius: 0;
}

.wysihtml5-toolbar .dropdown.open .dropdown-toggle, ul.wysihtml5-toolbar a.btn.wysihtml5-command-active {
    background: #eee !important;
    box-shadow: none !important;
}

.wysihtml5-toolbar .btn {
    color: #666;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

    .wysihtml5-toolbar .btn:hover {
        background: #eee !important;
    }

/**icon group iputs**/
.group-icon {
    position: relative;
    overflow: hidden;
}

    .group-icon .form-control {
        padding-right: 40px;
    }

    .group-icon .icon-input {
        position: absolute;
        right: 0px;
        top: 10px;
        width: 40px;
        text-align: center;
    }

fieldset {
    padding-bottom: 20px;
    border-bottom: 1px dashed #eee;
    margin-bottom: 20px;
}

.form-control-rounded {
    border-radius: 100px;
}


@media (min-width: 768px) {
    .form-horizontal .control-label {
        padding-top: 0px;
        margin-bottom: 0;
        text-align: right;
    }
}

legend {
    padding-bottom: 5px;
}

/* .form-control {
  box-shadow: 0 0 0 #000 !important;
} */

.has-success .checkbox, .has-success .checkbox-inline, .has-success.checkbox-inline label, .has-success.checkbox label, .has-success .control-label, .has-success .help-block, .has-success .radio, .has-success .radio-inline, .has-success.radio-inline label, .has-success.radio label {
    color: #4CAF50;
}

.has-warning .checkbox, .has-warning .checkbox-inline, .has-warning.checkbox-inline label, .has-warning.checkbox label, .has-warning .control-label, .has-warning .help-block, .has-warning .radio, .has-warning .radio-inline, .has-warning.radio-inline label, .has-warning.radio label {
    color: #FF7043;
}

.has-error .checkbox, .has-error .checkbox-inline, .has-error.checkbox-inline label, .has-error.checkbox label, .has-error .control-label, .has-error .help-block, .has-error .radio, .has-error .radio-inline, .has-error.radio-inline label, .has-error.radio label {
    color: #F44336;
}

.has-success .form-control {
    border-color: #4CAF50;
}

.has-warning .form-control {
    border-color: #FF7043;
}

.has-error .form-control {
    border-color: #F44336;
}

.input-group-addon {
    background-color: #edf1f2;
    border: 1px solid #dde6e9;
}

/**summernote customization**/
.note-editor {
    border: 1px solid #dde6e9;
}

    .note-editor .note-toolbar {
        background-color: transparent;
        border-color: #dde6e9;
    }

/**jquery steps use in form wizard**/
.wizard > .content {
    background: transparent;
    display: block;
    margin: 0px 0;
    margin-top: 15px;
    min-height: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
    width: auto;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    font-family: 'Muli-Regular', sans-serif;
}

    .wizard > .content > .body {
        padding: 15px 0;
        position: static;
        overflow: hidden;
        width: 100%;
        height: 100%;
    }

        .wizard > .content > .body input, .wizard > .content > .body select, .wizard > .content > .body textarea {
            margin-bottom: 15px;
        }

.wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active, .wizard > .actions a, .wizard > .actions a:hover, .wizard > .actions a:active {
    background-color: #23b7e5;
}

.steps > ul > li:first-child a {
    margin-left: 0 !important;
}

.wizard > .actions {
    position: relative;
    display: block;
    text-align: right;
    width: 100%;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.wizard > .content > .body label.error {
    color: #F44336;
    display: block;
    margin-left: 0;
}

.wizard > .steps .error a, .wizard > .steps .error a:hover, .wizard > .steps .error a:active {
    background-color: #F44336;
}

.wizard > .content > .body input.error {
    background: #fff;
    border: 1px solid #F44336;
    color: #8a1f11;
}

.wizard > .content > .body label {
    display: inline-block;
    margin-bottom: 3px;
}

/*
Float charts custom css
*/
.flotTip {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    background: #333 !important;
    color: #fff !important;
    border: 0px !important;
}

.flot-chart {
    width: 100%;
    height: 300px;
}

    .flot-chart .flot-chart-content {
        width: 100%;
        height: 100%;
    }

td.legendLabel {
    padding-left: 5px;
}

.morris-chart-content {
    position: relative;
}

.jqstooltip {
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

/**easy pie chart*/
.easypie-chart {
    display: inline-block;
    position: relative;
    padding: 0 6px;
}

    .easypie-chart span {
        display: block;
        position: absolute;
        left: 50%;
        top: 50%;
        width: 100%;
        margin-left: -50%;
        height: 30px;
        margin-top: -15px;
        font-size: 20px;
    }

/*
Tables style
*/
.table > thead > tr > th {
    font-family: 'Muli-Regular', sans-serif;
    font-size: 12px;
    text-align: left;
    letter-spacing: 0.3px;
    color: #707070;
    padding: 5px 0;
    vertical-align: bottom;
    outline: none;
}

div.dataTables_paginate a {
    display: inline-block;
    padding: 1px 10px;
    font-size: 13px;
    border: 1px solid #e6e6e6;
    color: #000;
    margin: 1px;
    cursor: pointer;
}

    div.dataTables_paginate a.disabled {
        cursor: not-allowed;
    }

    div.dataTables_paginate a:hover, div.dataTables_paginate a.current {
        background: #eee;
    }

div.dataTables_filter input {
    margin-left: 0.5em;
    display: inline-block;
    box-shadow: none;
    border: 1px solid #ddd;
}

    div.dataTables_filter input:focus {
        outline: 0 !important;
    }

div.dataTables_length select {
    box-shadow: none;
    border: 1px solid #ddd;
}

    div.dataTables_length select:focus {
        outline: 0 !important;
    }

/*
Mail box pages css
*/
.mailbox-sidenav .side-nav-header {
    padding: 10px;
}

.mailbox-sidenav .nav > li > a {
    color: #666;
    font-weight: 400;
}

    .mailbox-sidenav .nav > li > a em.fa, .mailbox-sidenav .nav > li > a .badge {
        margin-right: 8px;
    }

.nav-pills > li.active > a, .nav-pills > li.active > a:focus, .nav-pills > li.active > a:hover {
    background: #23b7e5;
    color: #fff;
}

.compose em {
    margin-right: 8px;
}

.mail-right-buttons .btn-default {
    background: #fff;
}

    .mail-right-buttons .btn-default:hover {
        background: #f5f5f5;
    }

.table-maillist a {
    color: #666;
}

.inbox-attachments a {
    display: inline-block;
    padding: 0px 5px;
}

.attachment-box {
    position: relative;
}

    .attachment-box .attachment-overlay {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

        .attachment-box .attachment-overlay h5 {
            color: #fff;
            padding: 20px;
        }

        .attachment-box .attachment-overlay a {
            width: 40px;
            height: 40px;
            line-height: 40px;
            text-align: center;
            color: #fff;
            background-color: rgba(0, 0, 0, 0.2);
            display: block;
            position: absolute;
            left: 50%;
            top: 50%;
            margin-left: -20px;
            margin-top: -20px;
        }

            .attachment-box .attachment-overlay a:hover {
                background-color: rgba(0, 0, 0, 0.8);
            }

    .attachment-box:hover .attachment-overlay {
        opacity: 1;
        visibility: visible;
    }

.mail-compose label {
    font-weight: 400;
    font-size: 13px;
    text-transform: capitalize;
}

.mail-compose .form-control {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    box-shadow: none;
}

iframe.wysihtml5-sandbox {
    width: 100%;
}

.mail-body {
    padding-top: 15px;
}

/*
Progress bars
*/
.progress, .progress-bar {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

.progress-mini, .progress-mini .progress-bar {
    height: 5px;
    margin-bottom: 5px;
}

.progress-xs, .progress-xs .progress-bar {
    height: 2px;
    margin-bottom: 2px;
}

.progress-bar.progress-bar-danger {
    background-color: #eb5d6e;
    background-image: linear-gradient(#eb5d6e, #eb5d6e), linear-gradient(to top, #ffa3ae, #ffc700);
}

.progress-bar.progress-bar-warning {
    background-color: #FF7043;
}

.progress-bar.progress-bar-success {
    background-color: #4CAF50;
    background-image: linear-gradient(#bad236, #bad236), linear-gradient(to top, #ebff6e, #ffc700);
}

.progress-bar.progress-bar-indigo {
    background-color: #7986CB;
}

.progress-bar.progress-bar-teal {
    background-color: #26A69A;
}

.progress-bar.progress-bar-info {
    background-color: #56afd7;
}

.progress-bar {
    background-color: #eea800;
    background-image: linear-gradient(#eea800, #eea800), linear-gradient(to top, #ffc948, #ffc700);
    display: inline-block;
    width: 100%;
}

/*
Misc pages styles like 404, login, register etc.
*/
.misc-wrapper {
    width: 100%;
    height: 100%;
    display: table;
    position: relative;
    background-image: url(../images/pattern.png);
    background-color: #8cb5f4;
    background-repeat: repeat;
    padding: 20px 0;
}

.misc-content {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    position: relative;
}

.login-section .text-muted {
    font-family: 'Muli-Regular', sans-serif;
    font-weight: 500;
}

.misc-box {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    -ms-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
    padding: 15px;
    border: 2px solid #000;
}

    .misc-box .img-circle {
        border: 2px solid rgba(0, 0, 0, 0.1);
    }

    .misc-box .checkbox {
        margin: 0px;
        padding-top: 0px;
    }

    .misc-box h4 {
        line-height: 26px;
    }

.misc-footer {
    color: #fff;
    opacity: 0.8;
    padding: 20px 15px;
}

.misc-header {
    border: 2px solid #000;
    padding: 40px 25px;
    background: #000;
    border-bottom: 0;
}

/*
Page blog styles
*/
.blog-box a h4 {
    color: #333;
}

    .blog-box a h4:hover {
        color: #23b7e5;
    }

.blog-box .media-body {
    padding-top: 5px;
}

/*
Pricing tables
*/
.price-box {
    text-align: center;
}

    .price-box .price-amount {
        padding: 15px;
        border-bottom: 1px solid #ddd;
        font-size: 40px;
        line-height: 40px;
        font-weight: 700;
    }

        .price-box .price-amount sup, .price-box .price-amount sub {
            font-weight: 400;
            font-size: 13px;
        }

        .price-box .price-amount sup {
            top: -1.5em;
        }

    .price-box ul {
        margin: 0;
        padding: 0;
    }

        .price-box ul li {
            padding: 7px 0;
        }

/*
Calendar
*/
#external-events h4 {
    font-weight: 400;
    font-size: 14px;
}

#external-events .fc-event {
    background: #23b7e5;
    padding: 7px 10px;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    margin-bottom: 10px;
}

.fc-button {
    color: inherit;
    border: 1px solid #e4e5e7;
    cursor: pointer;
    display: inline-block;
    height: 1.9em;
    line-height: 1.9em;
    overflow: hidden;
    padding: 0 0.6em;
    position: relative;
    white-space: nowrap;
}

.fc-state-default {
    background-color: #ffffff;
    background-image: none;
    background-repeat: repeat-x;
    box-shadow: none;
    color: inherit;
    text-shadow: none;
}

.fc-state-active {
    background-color: #23b7e5;
    border-color: #23b7e5;
    color: #ffffff;
}

.fc-center h2 {
    font-weight: 300;
}

.fc-widget-header .fc-day-header {
    padding: 12px 0;
    background: #f5f5f5;
}

.fc-ltr .fc-basic-view .fc-day-number {
    text-align: center;
}

.fc-event, .fc-agenda .fc-event-time, .fc-event a {
    padding: 4px 6px;
    background-color: #23b7e5;
    border-color: #23b7e5;
}

/*
Gallery
*/
.lightboxGallery {
    text-align: center;
}

    .lightboxGallery a {
        display: inline-block;
        margin: 5px;
    }

/*
Timeline
*/
#cd-timeline {
    position: relative;
    padding: 2em 0;
}

    #cd-timeline::before {
        /* this is the vertical line */
        content: '';
        position: absolute;
        top: 0;
        left: 18px;
        height: 100%;
        width: 4px;
        background: #f5f5f5;
    }



@media only screen and (min-width: 1170px) {
    #cd-timeline::before {
        left: 50%;
        margin-left: -2px;
    }
}

.cd-timeline-block {
    position: relative;
    margin: 2em 0;
}

    .cd-timeline-block:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-timeline-block:first-child {
        margin-top: 0;
    }

    .cd-timeline-block:last-child {
        margin-bottom: 0;
    }

@media only screen and (min-width: 1170px) {
    .cd-timeline-block {
        margin: 4em 0;
    }

        .cd-timeline-block:first-child {
            margin-top: 0;
        }

        .cd-timeline-block:last-child {
            margin-bottom: 0;
        }
}

.cd-timeline-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

    .cd-timeline-img img {
        display: block;
        width: 24px;
        height: 24px;
        position: relative;
        left: 50%;
        top: 50%;
        margin-left: -12px;
        margin-top: -12px;
    }

    .cd-timeline-img.cd-picture {
        background: #4CAF50;
    }

    .cd-timeline-img.cd-movie {
        background: #F44336;
    }

    .cd-timeline-img.cd-location {
        background: #FF7043;
    }

@media only screen and (min-width: 1170px) {
    .cd-timeline-img {
        width: 60px;
        height: 60px;
        left: 50%;
        margin-left: -30px;
        /* Force Hardware Acceleration in WebKit */
        -webkit-transform: translateZ(0);
        -webkit-backface-visibility: hidden;
    }

    .cssanimations .cd-timeline-img.is-hidden {
        visibility: hidden;
    }

    .cssanimations .cd-timeline-img.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-1 0.6s;
        -moz-animation: cd-bounce-1 0.6s;
        animation: cd-bounce-1 0.6s;
    }
}

@-webkit-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -moz-transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -moz-transform: scale(1.2);
    }

    100% {
        -moz-transform: scale(1);
    }
}

@keyframes cd-bounce-1 {
    0% {
        opacity: 0;
        -webkit-transform: scale(0.5);
        -moz-transform: scale(0.5);
        -ms-transform: scale(0.5);
        -o-transform: scale(0.5);
        transform: scale(0.5);
    }

    60% {
        opacity: 1;
        -webkit-transform: scale(1.2);
        -moz-transform: scale(1.2);
        -ms-transform: scale(1.2);
        -o-transform: scale(1.2);
        transform: scale(1.2);
    }

    100% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.cd-timeline-content {
    position: relative;
    margin-left: 60px;
    background: #f5f5f5;
    border-radius: 0.25em;
    padding: 1em;
}

    .cd-timeline-content:after {
        content: "";
        display: table;
        clear: both;
    }

    .cd-timeline-content h2 {
        color: #363636;
    }

    .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
        display: inline-block;
    }

    .cd-timeline-content .cd-read-more {
        float: right;
        padding: .8em 1em;
        background: #acb7c0;
        color: white;
        border-radius: 0.25em;
    }

.no-touch .cd-timeline-content .cd-read-more:hover {
    background-color: #bac4cb;
}

.cd-timeline-content .cd-date {
    float: left;
    padding: .8em 0;
    opacity: .7;
}

.cd-timeline-content::before {
    content: '';
    position: absolute;
    top: 16px;
    right: 100%;
    height: 0;
    width: 0;
    border: 7px solid transparent;
    border-right: 7px solid #f5f5f5;
}

.note-taker-delete {
    width: 150px;
    margin: 0 auto;
    float: none;
}

    .note-taker-delete a:first-child {
        width: 90px;
    }

    .note-taker-delete a {
        float: left;
        width: 60px;
        line-height: 18px;
    }

@media only screen and (max-width: 844px) {
    .note-taker-delete a:first-child {
        width: 79px;
        line-height: 18px;
    }

    .note-taker-delete {
        width: 100%;
        margin: unset;
        float: none;
    }

    .top-second-sec {
        padding: 0px 0 !important;
    }
}

@media only screen and (min-width: 768px) {
    .cd-timeline-content h2 {
        font-size: 20px;
    }



    .cd-timeline-content p {
        font-size: 13px;
    }

    .cd-timeline-content .cd-read-more, .cd-timeline-content .cd-date {
        font-size: 14px;
    }
}

@media only screen and (min-width: 1170px) {
    .cd-timeline-content {
        margin-left: 0;
        padding: 1.6em;
        width: 45%;
    }

        .cd-timeline-content::before {
            top: 24px;
            left: 100%;
            border-color: transparent;
            border-left-color: #f5f5f5;
        }

        .cd-timeline-content .cd-read-more {
            float: left;
        }

        .cd-timeline-content .cd-date {
            position: absolute;
            width: 100%;
            left: 122%;
            top: 6px;
            font-size: 14px;
        }

    .cd-timeline-block:nth-child(even) .cd-timeline-content {
        float: right;
    }

        .cd-timeline-block:nth-child(even) .cd-timeline-content::before {
            top: 24px;
            left: auto;
            right: 100%;
            border-color: transparent;
            border-right-color: #f5f5f5;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-read-more {
            float: right;
        }

        .cd-timeline-block:nth-child(even) .cd-timeline-content .cd-date {
            left: auto;
            right: 122%;
            text-align: right;
        }

    .cssanimations .cd-timeline-content.is-hidden {
        visibility: hidden;
    }

    .cssanimations .cd-timeline-content.bounce-in {
        visibility: visible;
        -webkit-animation: cd-bounce-2 0.6s;
        -moz-animation: cd-bounce-2 0.6s;
        animation: cd-bounce-2 0.6s;
    }
}

@media only screen and (min-width: 1170px) {
    /* inverse bounce effect on even content blocks */
    .cssanimations .cd-timeline-block:nth-child(even) .cd-timeline-content.bounce-in {
        -webkit-animation: cd-bounce-2-inverse 0.6s;
        -moz-animation: cd-bounce-2-inverse 0.6s;
        animation: cd-bounce-2-inverse 0.6s;
    }
}

@-webkit-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -moz-transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-2 {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-100px);
        -moz-transform: translateX(-100px);
        -ms-transform: translateX(-100px);
        -o-transform: translateX(-100px);
        transform: translateX(-100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(20px);
        -moz-transform: translateX(20px);
        -ms-transform: translateX(20px);
        -o-transform: translateX(20px);
        transform: translateX(20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}

@-webkit-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -moz-transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -moz-transform: translateX(-20px);
    }

    100% {
        -moz-transform: translateX(0);
    }
}

@keyframes cd-bounce-2-inverse {
    0% {
        opacity: 0;
        -webkit-transform: translateX(100px);
        -moz-transform: translateX(100px);
        -ms-transform: translateX(100px);
        -o-transform: translateX(100px);
        transform: translateX(100px);
    }

    60% {
        opacity: 1;
        -webkit-transform: translateX(-20px);
        -moz-transform: translateX(-20px);
        -ms-transform: translateX(-20px);
        -o-transform: translateX(-20px);
        transform: translateX(-20px);
    }

    100% {
        -webkit-transform: translateX(0);
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
        transform: translateX(0);
    }
}
/************

MODAL POPUPS FROM BOOTSTRAP

************************/
.modal-header {
    padding: 10px 15px;
    position: relative;
}

    .modal-header span {
        position: absolute;
        top: -11px;
        right: -14px;
        display: block;
        text-align: center;
        color: #fff;
    }

    .modal-header .close {
        opacity: 1;
    }

    .modal-header .modal-title {
        text-align: center;
        text-transform: capitalize;
    }

.modal-content {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    -ms-box-shadow: none;
    box-shadow: none;
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
}

    .modal-content .checkbox label, .modal-content .radio label {
        padding-left: 20px;
    }

.modal-dialog {
    margin: 60px auto;
}

@media (min-width: 768px) {
    .modal-form {
        width: 500px;
        margin: 0 auto;
    }
}

#videoModal .modal-header {
    border: 0px;
}

#videoModal .modal-body {
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    top: -11px;
    right: -14px;
    display: block;
    text-align: center;
    color: #fff;
    z-index: 9;
    opacity: 1;
}

/*
Tabs and accordions
*/
ul.tabs-nav > li > a {
    font-weight: 400;
    font-size: 13px;
    text-transform: capitalize;
}

.panel .tabs {
    margin-left: -15px;
    margin-right: -15px;
}

    .panel .tabs ul.tabs-bottom {
        margin-bottom: -15px;
    }

    .panel .tabs .tab-content {
        padding: 15px;
    }

    .panel .tabs.left-tabs {
        margin: 0px;
    }

        .panel .tabs.left-tabs .tabs-nav {
            float: left;
            border-bottom: 0px;
        }

            .panel .tabs.left-tabs .tabs-nav > li {
                margin-top: 5px;
            }

                .panel .tabs.left-tabs .tabs-nav > li > a {
                    border-bottom: 0px;
                    background-color: #f5f5f5;
                    text-align: center;
                }

                .panel .tabs.left-tabs .tabs-nav > li.active a, .panel .tabs.left-tabs .tabs-nav > li a:hover, .panel .tabs.left-tabs .tabs-nav > li a:focus {
                    background-color: #23b7e5;
                    color: #fff;
                }

        .panel .tabs.left-tabs .tab-content {
            overflow: hidden;
            padding: 0px 15px;
        }

    .panel .tabs.right-tabs {
        margin: 0px;
    }

        .panel .tabs.right-tabs .tabs-nav {
            float: right;
            border-bottom: 0px;
        }

            .panel .tabs.right-tabs .tabs-nav > li {
                margin-top: 5px;
            }

                .panel .tabs.right-tabs .tabs-nav > li > a {
                    border-bottom: 0px;
                    background-color: #f5f5f5;
                    text-align: center;
                }

                .panel .tabs.right-tabs .tabs-nav > li.active a, .panel .tabs.right-tabs .tabs-nav > li a:hover, .panel .tabs.right-tabs .tabs-nav > li a:focus {
                    background-color: #23b7e5;
                    color: #fff;
                }

        .panel .tabs.right-tabs .tab-content {
            overflow: hidden;
            padding: 0px 15px;
        }

.tabs-nav {
    margin: 0;
    padding: 0px;
    border-bottom: 2px solid #ebebeb;
}

    .tabs-nav li {
        margin-bottom: -2px;
        padding: 0px;
    }

        .tabs-nav li a {
            display: block;
            padding: 6px 15px;
            color: #4d4d4d;
            border-bottom: 2px solid transparent;
        }

            .tabs-nav li.active a, .tabs-nav li a:hover, .tabs-nav li a:focus {
                color: #3344dd;
                border-bottom: 2px solid #3344dd;
            }

/*
Bootstrap pagination
*/
.pagination > li > a, .pagination > li > span {
    color: #23b7e5;
}

.pagination > .active > a, .pagination > .active > a:focus, .pagination > .active > a:hover, .pagination > .active > span, .pagination > .active > span:focus, .pagination > .active > span:hover {
    z-index: 3;
    color: #fff;
    cursor: default;
    background-color: #23b7e5;
    border-color: #23b7e5;
}

/*
Horizontal Layout Style
*/
body.layout-horizontal {
    background-color: #f5f5f5;
}

    body.layout-horizontal .top-bar {
        position: static;
    }

        body.layout-horizontal .top-bar .dropdown-menu {
            z-index: 9999;
        }

        body.layout-horizontal .top-bar .admin-logo {
            width: auto;
        }

    body.layout-horizontal .admin-logo {
        margin-left: 0px;
        text-align: left;
    }

    body.layout-horizontal .h-main-content {
        min-height: 100%;
        position: relative;
        height: auto;
        padding-bottom: 40px;
    }

    body.layout-horizontal .navbar-default {
        border: 0px;
        background-color: #fff;
        margin-bottom: 30px;
    }

        body.layout-horizontal .navbar-default .navbar-nav > li > a {
            color: rgba(0, 0, 0, 0.5);
            display: block;
            font-weight: 400;
        }

            body.layout-horizontal .navbar-default .navbar-nav > li > a:hover {
                color: #23b7e5;
            }

            body.layout-horizontal .navbar-default .navbar-nav > li > a i {
                display: block;
                font-size: 14px;
                margin: 0 auto;
                margin-bottom: 0px;
            }

        body.layout-horizontal .navbar-default .navbar-nav > .open > a, body.layout-horizontal .navbar-default .navbar-nav > .open > a:focus, body.layout-horizontal .navbar-default .navbar-nav > .open > a:hover {
            color: #23b7e5;
            background-color: transparent;
        }

        body.layout-horizontal .navbar-default .navbar-nav > .active > a, body.layout-horizontal .navbar-default .navbar-nav > .active > a:focus, body.layout-horizontal .navbar-default .navbar-nav > .active > a:hover {
            color: #23b7e5;
            background-color: transparent;
        }

    body.layout-horizontal .dropdown-menu.dropdown-main > li > a {
        padding: 9px 20px;
        text-transform: capitalize;
    }

@media (min-width: 768px) {
    body.layout-horizontal body.layout-horizontal {
        min-height: 100%;
    }

    body.layout-horizontal .dropdown-menu.dropdown-mega {
        width: 400px;
        padding: 10px;
    }

    body.layout-horizontal .navbar-default .navbar-nav > li > a {
        text-align: center;
    }

        body.layout-horizontal .navbar-default .navbar-nav > li > a i {
            margin-bottom: 10px;
        }

    body.layout-horizontal .navbar-default .dropdown-menu {
        background: #fff;
    }

        body.layout-horizontal .navbar-default .dropdown-menu li a {
            color: rgba(0, 0, 0, 0.6);
        }

            body.layout-horizontal .navbar-default .dropdown-menu li a:hover {
                background: transparent;
                color: #23b7e5;
            }
}

body.layout-horizontal .dropdown-menu.dropdown-mega ul > li > a, body.layout-horizontal .dropdown-menu > li > a {
    display: block;
    padding: 9px 20px;
    text-transform: capitalize;
}

    body.layout-horizontal .dropdown-menu.dropdown-mega ul > li > a i, body.layout-horizontal .dropdown-menu > li > a i {
        vertical-align: middle;
        margin-right: 5px;
        display: inline-block;
    }

/*third livel menu for horizontal navbar*/
.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu > .dropdown-menu {
        top: 0;
        left: 100%;
        margin-top: -1px;
        margin-left: -1px;
        -webkit-border-radius: 0 6px 6px 6px;
        -moz-border-radius: 0 6px 6px;
        border-radius: 0 6px 6px 6px;
    }

    .dropdown-submenu:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-submenu > a:after {
        display: block;
        content: " ";
        float: right;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 5px 0 5px 5px;
        border-left-color: #ccc;
        margin-top: 5px;
        margin-right: -10px;
    }

    .dropdown-submenu:hover > a:after {
        border-left-color: #fff;
    }

    .dropdown-submenu.pull-left {
        float: none;
    }

        .dropdown-submenu.pull-left > .dropdown-menu {
            left: -100%;
            margin-left: 10px;
            -webkit-border-radius: 6px 0 6px 6px;
            -moz-border-radius: 6px 0 6px 6px;
            border-radius: 6px 0 6px 6px;
        }

/*
Jquery ui custom css file
*/
/**Select boxes**/
.jquery-Ui-fieldset label {
    display: block;
}

.ui-datepicker {
    position: absolute;
    top: 236.877px;
    left: 899.953px;
    z-index: 10001 !important;
    display: block;
}

.ui-widget {
    font-family: 'Muli-Regular', sans-serif;
}

.ui-button {
    background-color: transparent;
}

.ui-selectmenu-button.ui-button {
    font-family: 'Muli-Regular', sans-serif;
}

    .ui-selectmenu-button.ui-button:focus {
        outline: 0 !important;
    }

.ui-state-active, .ui-widget-content .ui-state-active, .ui-widget-header .ui-state-active, a.ui-button:active, .ui-button:active, .ui-button.ui-state-active:hover {
    border: 1px solid #23b7e5;
    background: #23b7e5;
}

.ui-selectmenu-menu .ui-menu {
    max-height: 250px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-menu .ui-menu-item > .ui-menu-item-wrapper > span.fa {
    margin-right: 7px;
    float: left;
    position: relative;
    top: 6px;
    font-size: 14px;
}

.ui-helper-reset {
    border: 0;
    outline: 0;
    margin: 0;
    padding: 0;
    list-style: none;
}

.ui-draggable-handle, .ui-sortable-handle {
    -ms-touch-action: none;
    touch-action: none;
}

.ui-tabs .ui-tabs-nav .ui-sortable-helper:not(.ui-tabs-active) .ui-tabs-anchor {
    background-color: #fff;
    border-bottom-color: #ddd;
}

.ui-sortable-helper {
    top: inherit;
}

/**acoordions**/
.ui-accordion .ui-accordion-header {
    padding: 15px 20px;
    font-weight: 600;
    display: block;
    position: relative;
    cursor: pointer;
}

.ui-accordion .ui-accordion-header {
    background-color: transparent;
}

    .ui-accordion .ui-accordion-header.ui-accordion-header-active {
        background: #23b7e5;
    }

    .ui-accordion .ui-accordion-header:focus {
        outline: 0 !important;
    }

/**dialogs**/
.ui-dialog {
    z-index: 9999;
}

.ui-dialog-titlebar.ui-widget-header {
    background: transparent;
    border: 0px;
    position: relative;
    padding: 10px 15px 0;
}

    .ui-dialog-titlebar.ui-widget-header .ui-button {
        border: 0px;
        background: transparent;
    }

.ui-dialog .ui-dialog-content {
    padding: 10px 15px;
}

/**draggables**/
.draggable-element {
    width: 90px;
    height: 90px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    background-color: #fafafa;
    border: 2px solid #ddd;
    color: #777;
    font-size: 12px;
    vertical-align: middle;
    margin: auto;
    position: relative;
    z-index: 10;
    display: inline-block;
    text-align: center;
    line-height: 90px;
    margin-right: 15px;
}

.droppable-target-element {
    width: 120px;
    height: 120px;
    z-index: 9;
    background: #23b7e5;
    color: #fff;
    border-color: #23b7e5;
}

/**selectable**/
#selectable .ui-selecting {
    background: #23b7e5;
}

#selectable .ui-selected {
    background: #23b7e5;
    color: white;
}

#selectable {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 100%;
}

    #selectable li {
        margin: 3px;
        padding: 0.4em;
        height: auto;
        display: block;
    }

/**progress bars**/
.ui-progressbar .ui-progressbar-value {
    margin: 0px;
    border: 0px;
}

.ui-progressbar {
    height: 18px;
}

.ui-progressbar-primary .ui-progressbar-value {
    background-color: #23b7e5;
}

.ui-progressbar-indigo .ui-progressbar-value {
    background-color: #7986CB;
}

.ui-progressbar-teal .ui-progressbar-value {
    background-color: #26A69A;
}

.ui-progressbar-warning .ui-progressbar-value {
    background-color: #FF7043;
}

.ui-progressbar-danger .ui-progressbar-value {
    background-color: #F44336;
}

.ui-progressbar-success .ui-progressbar-value {
    background-color: #4CAF50;
}

.ui-widget.ui-widget-content.ui-progressbar {
    border: 1px solid #ddd;
}

/* UI Sortable */
.ui-sortable .sortable-title {
    cursor: move;
}

.ui-sortable-placeholder {
    border: 1px dashed #cecece !important;
    visibility: visible !important;
    background: #e7eaec;
}

.panel.ui-sortable-placeholder {
    margin: 0 0 23px !important;
}

/*
Alertify alerts custom 
*/
.alertify .ajs-dialog {
    border: 0px;
}

.ajs-button {
    border: 0px;
}

    .ajs-button.ajs-ok {
        background: #23b7e5;
        color: #fff;
    }

/*
Welcome page css
*/
.page-intro {
    background: #fff;
}

.intro-header {
    padding: 100px 0;
    margin-bottom: 60px;
}

    .intro-header h1 {
        text-transform: capitalize;
        font-weight: 300;
        color: rgba(255, 255, 255, 0.7);
        font-size: 44px;
        line-height: 54px;
    }

        .intro-header h1 span {
            font-weight: 700;
            color: white;
        }

    .intro-header .lead {
        margin-bottom: 0;
        color: #fff;
        opacity: 0.9;
    }

.intro-box {
    display: block;
    position: relative;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    overflow: hidden;
}

    .intro-box img {
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
    }

    .intro-box span {
        position: absolute;
        left: 50%;
        top: 50%;
        margin-left: -84px;
        margin-top: 0px;
        -moz-transition: all 0.3s;
        -o-transition: all 0.3s;
        -webkit-transition: all 0.3s;
        transition: all 0.3s;
        opacity: 0;
    }

    .intro-box:hover img {
        opacity: 0.7;
    }

    .intro-box:hover span {
        opacity: 1;
        margin-top: -22px;
    }

.subtitle {
    text-transform: capitalize;
    margin-top: 20px;
    margin-bottom: 40px;
    font-weight: 400;
}

.intro-features {
    padding: 80px 0;
    background: #f5f5f5;
    padding-bottom: 50px;
}

    .intro-features i {
        font-size: 30px;
        margin-bottom: 15px;
        display: inline-block;
    }

.intro-footer {
    padding: 40px 0;
    background: #222;
}

    .intro-footer p {
        color: #fff;
        margin-bottom: 0;
        font-weight: 300;
        font-size: 12px;
        margin-top: 10px;
    }

.footer {
    height: 40px;
    bottom: 0px;
    left: 0;
    line-height: 40px;
    position: absolute;
    padding: 0px 15px;
    width: 100%;
    background-color: #fbfbfb;
    border-top: 1px solid #e1e8ed;
}

.carousel-inner > .item > a > img, .carousel-inner > .item > img {
    width: 100%;
}

.data-table-column-display {
    display: none;
}

.upload_custom:hover h3 {
    background: #888888;
}

.subscription-txt:hover {
    cursor: pointer;
    text-decoration: underline;
}




/*DSA user Tutorials guide css starts*/

.dsa-tutorials {
    background-color: rgba(0,0,0,0.2);
    overflow-x: hidden;
    overflow-y: hidden;
}

    .dsa-tutorials .modal-dialog {
        /*margin: 0px auto;
        top: 50%;
        left: 50%;
        margin-left: -300px !important;
        margin-left: -250px !important;*/
    }

    .dsa-tutorials .modal-content {
        padding: 15px 24px;
        height: 500px;
        border: none;
        outline: 0;
        border-radius: 6px !important;
        box-shadow: 0px 6px 8px 0 rgba(34, 34, 34, 0.3) !important;
        width: 600px;
        margin-left: -300px;
        left: 50%;
    }

    .dsa-tutorials .modal-header {
        padding: 15px;
        border-bottom: 2px solid #f6f6f8;
    }

    .dsa-tutorials .save-button:hover {
        background: #0b9f78;
    }

    .dsa-tutorials .notes-recording {
        margin-bottom: 34px;
        margin-top: 0px;
    }

    .dsa-tutorials .modal-header {
        padding: 10px 0px;
        border-bottom: 2px solid #f6f6f8;
    }

    .dsa-tutorials .notes-recording-last img {
        width: auto;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
        display: block;
    }

    .dsa-tutorials .modal-footer {
        padding: 15px;
        text-align: right;
        border-top: none;
    }

    .dsa-tutorials .save-button {
        background: #fff;
        color: #000;
        text-decoration: none;
        text-shadow: none;
        height: 26px;
        padding: 2px 20px;
        border: 2px solid #0b9f78;
        border-radius: 2px;
        margin: 0 5px;
        font-size: 13px;
        letter-spacing: 0.2px;
        outline: none;
        line-height: 0;
    }

    .dsa-tutorials button#tutorial_skip_button {
        background: transparent;
        border: none;
        color: #707070;
    }

    .dsa-tutorials span.tutorial_pagination {
        float: left;
        font-size: 13px;
        font-family: 'Open Sans', sans-serif;
    }

    .dsa-tutorials .modal-header .modal-title {
        text-align: center;
        text-transform: inherit;
        color: #42403d;
        text-align: left;
        font-family: Raleway-Medium;
    }


    .dsa-tutorials .welcome-hub p span {
        color: #000;
        display: inline-block;
        font-weight: bold;
    }

    .dsa-tutorials .close_tutorial {
        background: transparent;
        border: none;
        color: #707070;
        font-family: 'Open Sans', sans-serif;
        font-size: 13px;
        margin-right: 20px;
    }

        .dsa-tutorials .close_tutorial:hover {
            color: #707070;
        }

    .dsa-tutorials .notes-recording, .dsa-tutorials .notes-recording-last {
        margin-bottom: 50px;
        margin-top: 15px;
    }

    .dsa-tutorials button#tutorial_skip_button:hover, .dsa-tutorials button.close_tutorial:hover {
        text-decoration: underline;
    }

    .dsa-tutorials .modal-open .modal {
        overflow-x: hidden;
        overflow-y: auto;
    }

    .dsa-tutorials .modal {
        overflow-x: hidden;
        overflow-y: hidden;
    }

    .dsa-tutorials .border-off {
        border: none;
    }

        .dsa-tutorials .border-off h4 {
            opacity: 0;
        }

    .dsa-tutorials .welcome-hub {
        height: 50px;
    }

    .dsa-tutorials .notes-recording img, .dsa-tutorials .notes-recording-last img {
        width: 100%;
    }

/*DSA user Tutorials guide css ends*/


/*login same height after error*/

#ActivationCode {
    margin-bottom: 2px;
}

.error_temp .text-danger {
    color: #c10000;
    font-size: 13px;
    letter-spacing: 0.33px;
    font-family: 'Muli-SemiBold', sans-serif;
    line-height: 20px;
}

.avg_height {
    height: 275px;
}

}

.usage-analytic {
    float: left;
    width: 100%;
    text-align: left;
}

    .usage-analytic .control-label {
        text-align: left !important;
    }

.usage-analytic {
    width: 100%;
    float: left;
}

/*Login form for UK starts*/

/*screen first*/

.login-button-uk-send {
    border: 1px solid #000;
}

.float-reset {
    float: unset !important;
}

/*screen second*/

.cancel-regis {
    text-align: center;
    color: #2b78e4;
    margin-bottom: 15px;
    width: 100%;
    display: block;
    margin-top: 25px;
}

    .cancel-regis:hover {
        text-decoration: underline;
    }

/*.label-text {
    font-family: 'Muli-Regular', sans-serif;
    color: #2b2b2b;
    font-weight: 600;
    font-size: 13px;
}*/

.go-back-button-uk {
    background-color: transparent;
    opacity: 1;
    color: #2b78e4;
    border: 1px solid #040404;
    float: left;
    width: 48%;
    color: #000;
}

    .go-back-button-uk:hover {
        background-color: #dde6e9;
        border: 1px solid #040404;
        opacity: 1;
        color: #000;
    }

.register-button-uk {
    float: right;
    width: 48%;
    margin-top: 0px !important;
}

.middle-track-box {
    margin: 0 auto;
    width: 70%;
}

.register-login {
    float: left !important;
    width: 100%;
    margin-bottom: 20px;
    margin-top: 19px;
}

.go-back-left {
    float: left;
    width: 80%;
}

.login-button-uk-send {
    float: right;
    width: 80%;
}

.password-login-new {
    width: 45%;
    margin-bottom: 0px;
}

.clearfix-over {
    margin-bottom: 25px;
}

.clearfix-over {
    margin-bottom: 15px;
    margin-top: 15px;
}

.pagination-dots .dot {
    height: 10px;
    width: 10px;
    margin: 0 2px;
    background-color: #000;
    border: none;
    border-radius: 50%;
    display: inline-block;
    opacity: 0.5;
}

    .pagination-dots .dot.active {
        opacity: 1;
    }

button.btn.btn-block.btn-primary.login-button.go-back-left {
    background: transparent;
    color: #000;
    border: 1px solid #000;
    box-shadow: 1px 3px 0px 0px #252525;
}

.pagination-dots {
    text-align: center;
    position: absolute;
    width: 83%;
    bottom: 0;
}

    .pagination-dots ul {
        padding-left: 0px;
        margin-bottom: 6px;
    }

.misc-box-regis {
    /*height: 595px;*/
    height: auto;
}

/*setting page css starts*/

.well-setting {
    min-height: 20px;
    padding: 0px 0px 20px 0px;
    margin-bottom: 20px;
    background-color: #f5f5f5;
    /* border: 1px solid #e3e3e3; */
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.05);
    background: #fff;
}

    .well-setting .tab-content {
        padding-top: 35px;
        float: left;
        width: 100%;
    }

    .well-setting ul.tab-writer-setting li a {
        background: #f6f6f8;
        border: 1px solid #e6e6e6;
        padding: 12px 50px;
        color: #000000;
        font-size: 14px;
        font-weight: normal;
        font-style: normal;
        font-stretch: normal;
        line-height: 1.57;
        letter-spacing: normal;
        text-align: left;
        color: #000000;
    }

    .well-setting ul.tab-writer-setting li.active a {
        background: transparent;
        color: #000;
        border-top: 2px solid #3344dd;
        border-left: none;
        border-right: none;
    }

    .well-setting ul.tab-writer-setting li a:hover {
        text-decoration: underline;
    }

    .well-setting ul.tab-writer-setting li.active a:hover {
        text-decoration: none;
    }

    .well-setting ul.tab-writer-setting li.active a:focus {
        box-shadow: none !important;
    }

.tab-writer-setting {
    float: left;
    width: 100%;
}

ul.tab-writer-setting li {
    display: inline-block;
    float: left;
    width: auto;
}

.project-heading {
    font-family: 'Muli', sans-serif !important;
    font-size: 16px !important;
    font-weight: normal !important;
    font-style: normal !important;
    font-stretch: normal !important;
    line-height: 1.38 !important;
    letter-spacing: 0.2px !important;
    text-align: left !important;
    color: #000000 !important;
}

.new-project-set {
    margin-top: 31px;
}

.main-zone-time-up .panel-heading {
    padding: 0 0px !important;
}

.main-zone-time-up {
    padding: 0 25px;
    margin-bottom: 30px;
}

.new-project-set label {
    font-family: 'Muli', sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    font-style: normal !important;
    font-stretch: normal !important;
    line-height: 1.57 !important;
    letter-spacing: 0.3px !important;
    text-align: left !important;
    color: #000000 !important;
}

.new-project-set .checkbox label {
    vertical-align: middle;
}

    .new-project-set .checkbox label span {
        display: inline;
        vertical-align: top;
        padding-left: 5px;
        font-family: 'NotoSans-Regular', sans-serif;
        font-size: 12px;
        text-align: right;
        color: #707070;
        margin-top: -5px;
        padding: 0;
        font-weight: normal;
        letter-spacing: 0.3px;
        line-height: 22px;
    }

.new-project-set .checkbox {
    width: 100%;
}

.auto-label-text {
    margin-left: 20px;
    width: 38% !important;
}

button.manage-label-sets {
    margin-top: 22px;
    background: transparent;
    border: 2px solid #434c53;
    padding: 0px 30px;
}

    button.manage-label-sets:hover {
        background: #888888;
    }

.main-zone-time-up hr {
    margin-top: 30px;
    margin-bottom: 30px;
    float: left;
    width: 100%;
}

.new-project-set input:focus {
    box-shadow: none;
}

.forgot-main {
    width: 100%;
}
/*setting page css ends*/
.dropdown-submenu > a.disable-button-color:hover:after {
    display: none;
}

.volume-bar input:focus {
    box-shadow: none !important;
}

.height-25 {
    height: 25px;
}

.height-23 {
    height: 23px;
}

/*PUN Message*/
.alert {
    opacity: 1;
    visibility: visible;
    position: fixed;
    /* top: calc(100% - 180px); */
    bottom: 64px;
    left: 137px;
    color: #fff;
    font-size: 1em;
    width: 301px;
    height: 91px;
    background-color: #1b1b1b;
    border-radius: 6px;
    margin: 0 0 0 149px;
    padding: 16px 32px 15px 16px;
    box-shadow: 0 2px 10px 0 rgb(0 0 0 / 10%), 0 4px 4px 0 rgb(0 0 0 / 25%);
    /* direction: rtl; */
    z-index: 100;
    transition: visibility 0.2s,transform 0.2s ease-in-out,opacity 0.2s ease-in;
    display: flex;
}

.close_icn {
    background-image: url('../Images/svg-images/AU-sheet7/icon-264-close-au-inactive.svg');
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
    float: right;
    width: 20px;
    height: 20px;
    margin: 6px 6px 2px 4px;
    position: absolute;
    right: 0;
    display: inline-block;
}

    .close_icn:hover {
        background-image: url('../Images/svg-images/AU-sheet7/icon-264-close-au-hover.svg');
    }

.sticky_notification_container {
    align-items: center;
    width: 100%;
    float: left;
    padding: 11px 9px;
    direction: ltr;
    align-self: center;
    align-content: center;
    padding: 16px 32px 15px 16px;
}
.modal-open iframe[title], .modal-open #fc_frame {
    z-index: 0 !important;
}
.pun_alert.alert {
    width: 375px ;
    height: auto ;
}

.hiden {
    transform: translateY(3em);
    visibility: hidden;
    opacity: 1;
}

.notification_message {
    font-family: 'Muli-Regular', sans-serif;
    font-size: 14px;
    text-align: center;
    line-height: 1.5;
    color: #fdfdfd;
    letter-spacing: 0.35px;
    display: block;
    width: 320px;
    text-overflow: ellipsis;
    overflow: hidden;
    /*white-space: nowrap;*/
}

.notification_action {
    font-family: 'Noto Sans', sans-serif;
    font-size: 12px;
    text-align: left;
    line-height: 72px;
    color: #b1dfff;
    margin-left: 16px;
    cursor: pointer;
}

.disable-project-click {
    text-decoration: none !important;
    pointer-events: none;
}

.btn-backtologin {
    background-color: #fff;
    border-color: #b0b7b9;
}

/* Navpritit Css*/
.form_extra_content {
    padding: 0px;
}

.panel-body .rec_list button:not(.notestoggle):not(.btn-lg) {
    width: auto;
    height: auto !important;
}

.panel-body .media_control button:not(.notestoggle) {
    border: none;
    background: none;
}

.panel-body button.request_notes:disabled {
    color: #ccc !important;
}
button.btn.btn-dark:disabled, button.status_btn:disabled {
    background: #F0F0F0 !important;
    /*color: #CCCCCC !important;*/
    border: none !important;
}
.panel-body button.notes_dropdown {
    background: none;
}

.panel-body button.status_btn {
    background: #f0f0f0;
    color: #333333;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 28px;
    outline: none;
    margin-left: auto;
    line-height: 16px;
    min-width: 160px;
    min-height: 32px;
    white-space: nowrap;
    position: relative;
    /*display:flex;
    align-items:center;
    justify-content:center;*/
}

.panel-body button:not(.video-full,.btn-load-more) {
    background: #fff;
    border: 2px solid #434c53;
    color: #333;
    font-weight: 600;
    min-width: 115px;
    height: 31px !important;
}

span.notificationBox_maxhour {
    color: #cd193a;
}

span.notificationBox_nonote {
    color: #de7300;
}

span.notificationBox_reset_hour {
    color: #008561;
}

span.notificationBox_reset_date {
    color: #de7300;
}

.main-dashboard .button_common {
    min-width: 180px;
    color: black;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.inputPanel .disable {
    background: #eeeeee !important;
}

table#student_table table.dataTable thead > tr > th {
    padding-top: 10px;
    padding-bottom: 10px;
}

span.notificationBox_reset_date {
    color: #de7300;
}

.nav-training.das_board {
    display: none;
}

@media screen and (max-width:1023px) and (min-width:768px) {

    .nav-training.das_board {
        display: block;
    }
}
/*---Student_order_CSS--*/
table#student_order_table.table > thead > tr > th {
    padding: 10px;
    /*white-space: nowrap;*/
    width: 0px !important;
}

table#student_order_table p {
    margin-bottom: 0px;
}

.f12 {
    font-size: 11px;
}
.f18{
    font-size:18px;
}
.p10 {
    padding: 10px
}

.align-items-center {
    align-items: center;
}

.justify-conetnt-end {
    justify-content: end;
}

.justify-conetnt-space-between {
    justify-content: space-between;
}

.btm-border {
    border-bottom: 2px solid #ebebeb;
}

.mr5 {
    margin-right: 5rem;
}

.mr3 {
    margin-right: 3rem;
}

.l16px {
    line-height: 16px;
}

.f14 {
    font-size: 14px !important;
}

.wbold {
    font-weight: 600;
}

.greenfont {
    color: #0b9f78;
}

.orangefont {
    color: #de7300;
}
.redfont {
    color: #ce3749;
}

table.dataTable thead .sorting_asc:after {
    content: none !important;
}

.previousMonthButton {
    cursor: pointer;
}

.currentMonth {
    font-weight: 500;
}

.nextMonthButton {
    cursor: pointer;
}

.userNameUsage {
    padding-left: 40px;
}

.userNameUsagelabel {
    font-family: 'NotoSans-Regular', sans-serif;
    font-size: 18px !important;
    font-weight: 500;
    text-align: left;
    color: #000 !important;
}

.userNameUsage p {
    font-size: 15px !important;
    font-family: 'NotoSans-Regular', sans-serif;
    font-weight: 500;
    color: #000 !important;
}

.form-date {
    max-width: 430px;
    margin: 0 auto;
}

    .form-date label {
        max-width: 100px;
        width: 100%;
        display: inline-block;
        font-size: 16px;
    }

    .form-date input {
        max-width: 290px;
        width: 100%;
        min-height: 40px;
        padding: 0px 10px;
        margin-right: 5px;
        outline: none;
    }

    .form-date i {
        font-size: 26px;
        vertical-align: middle;
        cursor: pointer;
    }

    .form-date h3 {
        text-align: center;
        margin-bottom: 20px;
        font-weight: bold;
    }
/* Hide Calendar Icon In Chrome */
input[type="date"]::-webkit-inner-spin-button, input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

element.style {
}

.form-date i.glyphicon.glyphicon-alert {
    font-size: 18px !important;
    vertical-align: middle !important;
    margin: -2px 0 0 !important;
}

a#filter_student_usage {
    color: #000 !important;
}

a#download_student_usage {
    color: #000 !important;
}

.search_alert_pop.custom-popup-new {
    background: #ffe699;
    padding: 10px;
    margin-top: 10px;
}

span#search_project_count {
    vertical-align: middle;
    margin-top: 3px;
    display: inline-block;
}

.form-date input[type="radio"] {
    position: static;
    width: auto;
    margin: 0;
    vertical-align: top;
    margin-right: 10px;
    margin-top: -7px;
}

label.new-main-label {
    min-height: 100px;
    float: left;
}

label.same-width {
    max-width: 100px;
    width: 100%;
    font-size: 16px;
    float: left;
    vertical-align: middle;
    margin-top: 7px;
}

.form-date input[type="text"]:disabled {
    background: #d2d2d2;
}

.yellow-text.text-center {
    background: #de7301;
    padding: 10px;
    text-align: center;
    color: #fff;
    margin-left: 63px;
    margin-right: 63px;
}
/* Navpriti css*/
.pun_msg_box {
    background: #fff;
    position: fixed;
    bottom: 0;
    right: 64px;
    font-size: 1em;
    height: 64px;
    border-radius: 6px;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.25);
    z-index: 100;
    /*transition: visibility 0.2s,transform 0.2s ease-in-out,opacity 0.2s ease-in;*/
    top: calc(100% - 177px);
    padding: 0px 20px 0px 0px;
}

    .pun_msg_box:not(.hiden) {
        animation-name: pun_show;
        -webkit-animation-name: pun_show;
        animation-duration: 0.35s;
        -webkit-animation-duration: 0.35s;
        animation-timing-function: ease-in-out;
        -webkit-animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }

    .pun_msg_box svg {
        width: 32px;
        height: 32px;
    }

        .pun_msg_box svg path {
            fill: #fff;
        }

    .pun_msg_box.hiding:not(.hiden) {
        opacity: 1;
        transform: unset;
        visibility: visible;
        animation-name: pun_hide;
        -webkit-animation-name: pun_hide;
        animation-duration: 0.35s;
        -webkit-animation-duration: 0.35s;
        animation-timing-function: ease-in-out;
        -webkit-animation-timing-function: ease-in-out;
        animation-fill-mode: forwards;
        -webkit-animation-fill-mode: forwards;
    }

.pun_check_box {
    padding: 18px 8px 19px 8px;
    background: #14a75b;
    border-radius: 5px 0px 0px 5px;
}

    .pun_check_box i {
        width: 25px;
        height: 25px;
        background: #fff;
        color: #14a75b;
        border-radius: 50%;
        line-height: 28px;
        padding: 0px 6px;
        font-size: 13px;
        align-items: center;
    }

.pun_msg_txt {
    display: flex;
    align-items: center;
}

.pun_close {
    line-height: 64px;
    cursor: pointer;
}

.pun_msg_txt p {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    min-width: 160px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    padding: 0px 45px 0px 10px;
}
/* pun keyframes */
@keyframes pun_show {
    from {
        opacity: 0;
        top: calc(100% + 177px);
    }

    to {
        opacity: 1;
        top: calc(100% - 177px);
    }
}

@keyframes pun_hide {
    from {
        opacity: 1;
        top: calc(100% - 177px);
    }

    to {
        opacity: 0;
        top: calc(100% - 354px)
    }
}

.msg_del p {
    width: 300px;
    padding-right: 30px;
}

.msg_received p {
    width: 300px;
    padding-right: 30px;
}

.pun_exclamation {
    padding: 18px 8px 19px 8px;
    background: #d97c19;
    border-radius: 5px 0px 0px 5px;
}

    .pun_exclamation i {
        width: 25px;
        height: 25px;
        background: #fff;
        color: #d97c19;
        border-radius: 50%;
        line-height: 27px;
        padding: 0px 10px;
        font-size: 13px;
    }

    .pun_exclamation.suc {
        padding: 18px 8px 19px 8px;
        background: #14a75b;
        border-radius: 5px 0px 0px 5px;
    }

    .pun_exclamation.del {
        padding: 18px 8px 19px 8px;
        background: #ea1038;
        border-radius: 5px 0px 0px 5px;
    }

        .pun_exclamation.del i {
            color: #ea1038;
        }

.pun_msg_txt img {
    width: 22px;
    margin-left: 30px;
}

#batch-edit-modal .modal-body {
    height: 100%;
    padding: 26px;
}

.batch-group {
    padding-bottom: 10px;
}

    .batch-group .btn {
        width: 200px;
    }

#batch-edit-modal .step-1 .btn {
    margin: 0;
}

.batch-group .btn-dark:hover {
    background: #de7300;
}

.btn-dark {
    background: #fff;
    color: #000;
    text-decoration: none;
    text-shadow: none;
    padding: 2px 20px;
    border: 2px solid #de7300 !important;
    border-radius: 2px;
    margin: 0 5px;
    font-size: 13px;
    letter-spacing: 0.2px;
    outline: none;
    font-family: 'NotoSans-Regular', sans-serif;
    line-height: 0;
    height: 26px;
}

.mt-3 {
    margin-top: 16px;
}

#form0 {
    display: flex;
    height: 400px;
    flex-direction: column;
}

    #form0 > div:not(:last-child) {
        display: flex;
        flex-direction: column;
        height: 100%;
    }

    #form0 > div > div:last-child {
        margin-top: auto;
    }

#batch-edit-modal hr {
    width: 100%;
}
/* Start Recording list style*/
.main_content {
    /*width: 68%;*/
    margin: auto;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.1), 0 2px 4px 0 rgba(0, 0, 0, 0.25);
    background: #fff;
}

    .main_content ul {
        list-style: none;
        margin-bottom: 0;
        padding-left: 0;
    }

        .main_content ul li {
            display: flex;
            align-items: center;
        }

    .main_content .custom-tooltip ul li {
        align-items: flex-start;
        gap: 0.05rem;
    }

        .main_content .custom-tooltip ul li + li {
            margin-left: unset;
        }

.carddashboard_hover, .carddashboard_survey, .carddashboard_hover, .carddashboard_download {
    transition: all 0.25s cubic-bezier(.65,.05,.36,1);
}

@media (prefers-reduced-motion: reduce) {
    .carddashboard_hover, .carddashboard_survey,
    .carddashboard_hover, .carddashboard_download {
        transition: unset;
    }
}

.carddashboard_hover:hover, .carddashboard_survey:hover, .carddashboard_hover:hover, .carddashboard_download:hover {
    transform: scale(1.05);
}

div#main_container {
    margin-top: 16px;
}

ul.media_control {
    display: flex;
}

.media_control li + li {
    margin-left: 16px;
}

.folder_list {
    margin-bottom: 32px;
    position: relative;
    /*z-index:9;*/
}

    .folder_list .rec_sec.droppable-folders.ui-droppable {
        transition: all .2s ease-in-out;
        position: relative;
    }

        .folder_list .rec_sec.droppable-folders.ui-droppable:hover {
            box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.15), 0 4px 8px 0 rgba(0,0, 0, 0.25);
            /*transform: scale(1.01);*/
            background: #fff;
            position: relative;
        }

.rec_list {
    border-bottom: 1px solid #f0f0f0;
}

    .rec_list .row {
        display: flex;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

.record_listview .rec_list {
    padding: 2rem 2rem;
}

.media_box {
    margin-top: 8px;
}

.folder_list .rec_list {
    padding: 24px 32px;
    min-height: 96px;
}

.rec_list .project_name_link {
    font-size: 21px;
    line-height: 24px;
    text-transform: capitalize;
    word-break: break-all;
    display: flex;
    color: #333333;
    font-family: 'avertacy-bold';
    font-weight: bold;
    border: none;
    width: auto;
    height: auto;
}

.folder_list .rec_list .folder-title {
    margin-bottom: 0.5rem;
}

    .folder_list .rec_list .folder-title svg {
        width: 24px;
        height: 24px;
        margin-right: 8px;
        flex-shrink: 0;
    }

        .folder_list .rec_list .folder-title svg path {
            fill: #d97c19;
        }

.rec_list strong {
    color: #707070;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    line-height: 16px;
}

.rec_info .strong {
    color: #707070;
    font-size: 14px;
    font-weight: 600;
    margin-right: 8px;
    line-height: 16px;
}

.rec_info .bordr_left:after {
    content: "";
    border-left: 2px solid #adadad;
    position: absolute;
    height: 16px;
    top: 2px;
}

.rec_info .bordr_left {
    color: #707070;
    font-size: 14px;
    font-weight: 800;
    margin-right: 12px;
    line-height: 8px;
    position: relative;
}

.folder_list .bordr_left {
    margin-right: 10px !important;
    margin-left: 6px;
}

.rec_list span {
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
}

    .rec_list span:not(.cloud-section) {
        color: #333333;
    }

.file-interrupteed svg {
    margin-top: -6px;
    margin-right: 4px;
}

.file-interrupteed:hover {
    border-bottom: 1px solid;
}

.dashboard_box .file-interrupteed:hover {
    border-bottom: unset;
}

.file-interrupteed svg path {
    fill: #cd193a;
}

.sendToFolder svg {
    margin-top: -6px;
    margin-right: 4px;
}

    .sendToFolder svg path {
        fill: #d97c19;
    }

.project_tr_d {
    padding-left: 0px;
}

.rec_info span:nth-child(1) {
    margin-right: 0px;
}

.sub_btn {
    background: #f0f0f0;
    color: #333333;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    border: 0;
    line-height: 16px;
}

button.sub_btn.folder_subbtn {
    margin-left: 15px;
}

.folder_list .rec_info {
    display: flex;
    align-items: center;
}

.status_btn {
    background: #f0f0f0;
    color: #333333;
    border: 0;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 28px;
    outline: none;
    margin-left: auto;
    line-height: 16px;
    min-width: 160px;
    min-height: 32px;
    white-space: nowrap;
    position: relative;
}
svg {
    overflow: hidden;
    vertical-align: middle;
}
    .status_btn > svg {
        margin-left: 8px;
    }

.tooltip1 .tooltiptext {
    background: #fff;
    border-radius: 8px;
    color: #000;
    content: attr(title);
    font-size: 16px;
    padding: 13px;
    width: auto;
    position: absolute;
    top: 0;
    left: 50%;
    white-space: nowrap;
    display: flex;
    justify-content: space-between;
    visibility: hidden;
    transform: translate(-50%, calc(-100% - 16px));
}

.tooltip1:focus-visible .tooltiptext, .tooltip1:hover .tooltiptext, .tooltip1.hovered .tooltiptext {
    visibility: visible;
    box-shadow: 0 0 4px 0 rgb(0 0 0 / 10%), 0 2px 4px 0 rgb(0 0 0 / 25%);
    animation-name: ShowTooltip;
    -webkit-animation-name: ShowTooltip;
    animation-timing-function: ease-in-out;
    -webkit-animation-timing-function: ease-in-out;
    animation-duration: 0.35s;
    -webkit-animation-duration: 0.35s;
}

@keyframes ShowTooltip {
    0% {
        top: 0px;
        opacity: 0;
    }

    100%: {
        top: -60px;
        opacity: 1;
    }
}

.tooltiptext svg path {
    fill: #14a75b !important;
}

.tooltiptext svg {
    margin-top: auto !important;
    margin-right: 8px;
}

span.tooltiptext {
    position: relative;
}

    span.tooltiptext:before {
        content: "\f0d7";
        position: absolute;
        left: 42%;
        top: 88%;
        font-family: "Font Awesome 5 Pro";
        font-weight: 900;
        clear: both;
        z-index: 999;
        font-size: 32px;
        color: #fff;
        text-shadow: 1px 1px 1px #949090;
    }

.panel-body button.request_notes {
    background: #000;
    color: #fbfbfb;
}

.recover_btn svg path {
    fill: #fff !important;
}

.status_btn svg path {
    fill: #af6318;
}

button.status_btn.request_notesd {
    color: #ccc;
}

button:focus {
    outline: none;
}

button.status_btn.recover_btn {
    background: #000;
    color: #fbfbfb;
}

button.status_btn.recover_btn {
    /*background: #f0f0f0 !important;*/
    border: none;
}

    button.status_btn.recover_btn.recover_btn_disable, button.status_btn.recover_btn.recover_btn_disable:hover, button.status_btn.recover_btn.recover_btn_disable:focus {
        background-color: #F0F0F0;
        color: #CCCCCC;
        border: solid 1px transparent;
    }

.btn-group.notes_ready .btn {
    border: 1px solid #008561;
    padding: 0.0255rem;
    font-size: 14px;
    line-height: 16px;
    font-weight: 600;
    color: #008561;
    border-radius: 6px 0px 0px 6px;
    width: 128px;
    background: #fff;
}

.btn-group.notes_ready {
    margin-left: auto;
    width: 160px;
    height: 32px;
}

    .btn-group.notes_ready .dropdown-toggle-split {
        background: #008560;
        width: 32px;
        border-radius: 0px 6px 6px 0px;
        min-width:auto;
    }

        .btn-group.notes_ready .dropdown-toggle-split[aria-expanded="true"] .arrow-circle {
            transform: rotate(180deg);
        }

.notes_ready .dropdown-toggle-split svg path {
    fill: #fff;
}

.download_note {
    display: flex;
    align-items: center;
}

    .download_note svg {
        margin-right: 10px;
    }

.notes_ready .download_note svg path {
    fill: #000;
}
/*.notes_ready .dropdown-toggle::after {
    display: block;
}*/
.btn-group.notes_ready .dropdown-toggle-split i {
    color: #fff;
    font-size: 20px;
    vertical-align: -webkit-baseline-middle;
}

.btn-group.notes_ready .dropdown-toggle-split:active {
    background: #008561;
    border-color: #008561;
}

.btn-group.notes_ready .btn:focus {
    box-shadow: none;
}

.dropdown-item {
    border: none !important;
    width: 100% !important;
}

.btn-group.notes_ready .dropdown-item {
    padding: 0.7rem 1.5rem;
}

.btn-group.notes_ready .btn:focus-visible {
    box-shadow: 0 0 0 2px #fff, 0 0 0 4px #5464f7;
}

.btn-group.notes_ready .dropdown-item:active {
    background-color: #f8f9fa;
}

.btn-group.notes_ready .dropdown-menu {
    min-width: 13.8rem;
    margin-left: -4px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
    right:0;
}
.s_check .dropdown-menu,
.rlist_drop .dropdown-menu {
    right: 0;
}
.folder_list .s_check {
    margin-top: -28px;
}

.s_check {
    display: flex;
    align-items: center;
    margin-top: auto;
}

    .s_check .custom-control {
        display: inline-block;
        margin-left: auto;
        outline: none;
    }

    .s_check .checkbox {
        margin-left: auto;
        margin-right: 16px;
    }

input.select_project {
    height: 1rem;
    width: 1rem;
    /*Hiding the regular checkbox with clip path */
    clip-path: circle(0px);
    position: absolute;
    right: 0;
}

.s_check .checkbox label {
    margin-bottom: 0rem;
    display: flex;
    align-items: center;
    position: relative;
}

.s_check .dropdown-menu.show {
    min-width: 13.8rem;
    margin-left: -4px;
    border-radius: 8px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
}

.s_check .moveFolderHover {
    position: relative;
}

.s_check .folder-dropdown {
    min-width: 13.8rem;
    margin-left: -4px;
    border-radius: 8px;
    box-shadow: 0 4px 6px 0 rgba(0, 0, 0, 0.2);
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateX(calc(100%));
    background: #fff;
}

@media(max-width:600px) {
    .s_check .moveFolderHover {
        position: initial;
    }

    .s_check .folder-dropdown {
        min-height: unset;
        transform: unset;
        max-height: 296px;
        top: 0;
        bottom: unset;
    }

        .s_check .folder-dropdown.show {
            transform: unset;
            border-radius: unset;
            left: 0;
            right: 0;
        }
}

@media(min-width:1023.98px) and (max-width:1550px) {
    .s_check .folder-dropdown {
        transform: translateX(calc(-100% + 4px));
    }
}

.s_check .folder-dropdown.show {
    display: initial;
}
/*.media_control li {
    margin-right: 24px;
}

.media_control a {
    font-size: 24px;
    padding: 0.375rem 0.844rem;
    color: #000;
    border-radius: 50%;
    position: relative;
    z-index: 0;
    cursor: default;
}

.media_control svg:hover::after {
    content: '';
    width: 48px;
    height: 48px;
    position: absolute;
    left: 0;
    top: 0;
    background: #f0f0f0;
    z-index: -1;
    border-radius: 50%;
}*/
.media_control a {
    padding: 8px 8px;
}

ul.media_control svg {
    width: 32px;
    height: 32px;
}

ul.media_control li a:hover {
    background: #f0f0f0;
    border-radius: 50%;
}

ul.media_control li a.graycolorbutton:hover {
    background: transparent;
    border-radius: 50%;
}

.record_listview .progress_bar {
    display: flex;
    align-items: center;
    top: 19px;
}

.record_listview .player_progress {
    width: 100%;
}

.play_duration {
    min-height: 21px;
    margin-top: 8px;
}

    .play_duration span {
        color: #333;
        margin-right: 0px;
        line-height: unset;
    }

span.start_duration {
    float: left;
}

span.end_duration {
    float: right;
}

.notes_dropdown::after {
    display: none !important;
}

.notes_dropdown {
    border: none !important;
    padding: 4px 4px;
    text-align: center;
    white-space: normal;
    line-height: 16px;
}

    .notes_dropdown svg {
        width: 24px;
        height: 24px;
    }

    .notes_dropdown:hover {
        background: #f0f0f0;
        border-radius: 6px;
    }
/*li#dropdownSubMenu:hover .folder-dropdown {
    display: block;
}*/
a.add_duplicate_note.backToList .fas {
    margin-right: 11px;
    font-size: 14px;
}

.rlist_drop ul.dashboard-option-menu li a.move_folder:after {
    border-left-color: #1b1b1b !important;
}

.rlist_drop .dropdown-submenu > a:after {
    display: block;
    /*    content: " ";*/
    float: right;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
    margin-top: 5px;
}

li.dropdown-submenu.disabled a {
    color: #b2b2b2 !important;
}

ul.dashboard-option-menu li > a {
    padding: 16px 16px 16px 16px;
    font-size: 14px;
    display: block;
    width: 100%;
    color: #333;
    font-weight: 600;
    line-height: 16px;
}

ul.dashboard-option-menu li svg {
    width: 24px;
    height: 24px;
    margin-right: 16px;
    margin-top: -3px;
}

a.add_duplicate_note.sendToFolder {
    display: flex;
    align-items: center;
}

ul.dashboard-option-menu li > a:hover {
    background: #f5f5f5;
    text-decoration: none;
}

ul.dashboard-option-menu > li.dropdown-submenu {
    position: relative;
}

.mobile_pmedia .player_progress {
    display: none;
}

i.fa.fa-volume-down.project_media_mute_button {
    font-size: 31px;
    margin-top: 0px;
    vertical-align: text-top;
}
/* End Recording list style*/
/*.....Media Query for all the mobile screen*/
@media(min-width:768.98px) {
    .single_recording .project_tr_d {
        order: 1;
        -ms-flex-order: 1;
    }

    .single_recording .status {
        order: 2;
        -ms-flex-order: 2;
    }

    .single_recording .s_check {
        order: 3;
        -ms-flex-order: 3;
    }

    .single_recording .media_box {
        order: 4;
        -ms-flex-order: 4;
    }

    .single_recording .progress_bar {
        order: 5;
        -ms-flex-order: 5;
    }
}

.status {
    text-align: right;
    margin-left: auto;
    margin-top: auto;
}

.request_notes:hover {
    background: #333;
}

button.status_btn.recover_btn:hover {
    background: #333;
}

.folder_list i.fa.fa-folder {
    margin-right: 10px;
    font-size: 24px;
}

.pun_alert.alert.mobile_media {
    display: none;
}

.caption-btn, .mobile_pmedia .video-caption {
    display: none;
    width: auto;
    height: auto;
}

    .caption-btn svg {
        fill: #f0f0f0;
    }

    .caption-btn.can-click svg {
        fill: #000;
    }

    .caption-btn.exist, .mobile_pmedia .video-caption.exist {
        display: block;
    }

    .caption-btn.active svg, .mobile_pmedia .video-caption.active svg {
        background: #707070;
        border-radius: 50%;
        padding: 4px;
    }

.order-6 {
    order: 6;
}
.mb-3, .my-3 {
    margin-bottom: 1rem !important;
}
.mr-auto, .mx-auto {
    margin-right: auto !important;
}
.dropdown-item {
    font-family: 'avertacy-regular';
    font-size: 14px;
    font-weight: 600;
    padding: 16px;
}

.dropdown-item {
    display: block;
    width: 100%;
    padding: 0.25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
}

    .dropdown-item:focus, .dropdown-item:hover, .dropdown-item.active {
        background: #F0F0F0;
        color: #333333;
    }

.dropdown-menu {
    padding: 10px;
}
.user-account-details.dropdown-menu {
    padding: 24px 32px 8px 32px;
    min-width: 256px;
    width: auto;
    font-family: 'avertacy-regular';
    font-weight: 600;
}
.dropdown-item {
    font-family: 'avertacy-regular';
    font-size: 14px;
    font-weight: 600;
    padding: 16px;
}
.ui-tooltip{
    /*  position: absolute;
    bottom: 100%;
    transform: translate(-50%);
    width: 100vw;*/
    max-width: 360px;
    padding: 16px;
    width: 200px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 10px 0 rgb(0 0 0 / 10%), 0 4px 12px 0 rgb(0 0 0 / 25%);
    /*margin-bottom: 16px;*/
    font-size: 14px;
    color: #000;
    height: auto;
    /*bottom:100px;*/
    /*margin-left: 50px;*/
    /*z-index: 9;*/
}
.ui-helper-hidden-accessible{
    display:none;
}
.empty_recording_message{
    text-align:center;
}
#recordings-modal .modal-content{
    padding:24px;
}
#recordings-modal .modal-header{
    padding:0px;
}
#recordings-modal .modal-body {
    max-height: 70vh;
    overflow: auto;
    padding: 0px;
}
.running_media_player_button svg path {
    fill: #fff;
}

#recordings-modal .btn {
    border: 2px solid #000;
    border-radius: 1px;
    padding: 3px 20px;
    margin-top:15px;
    background:#fff;
}
.w-100 {
    width: 100% !important;
}
button.playlist1,
.media_controls button {
    background-color: transparent;
    border: none;
    position: relative;
}
span#Running_media_title {
    text-overflow: ellipsis;
    overflow: hidden;
    margin-bottom: 0px;
    -webkit-line-clamp: 1;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    /* width: 300px; */
    margin-right: 32px;
    word-break: break-all;
}

.mobile_pmedia svg {
    width: 32px;
    height: 32px;
    margin: auto;
}

.playlist1 {
    width: 48px;
    height: 48px;
    margin-right: 8px;
    margin-top: -16px;
    display: flex;
    align-items: center;
}

    .playlist1:last-child {
        margin-right: 0;
    }

button.playlist1,
.media_controls button {
    background-color: transparent;
    border: none;
    position: relative;
}

    button.playlist1 svg,
    .media_controls button svg {
        position: relative;
    }

    button.playlist1:before,
    .media_controls button::before {
        content: '';
        width: 40px;
        height: 40px;
        position: absolute;
        transform: translate(-50%,-50%);
        border-radius: 94px;
        left: 50%;
        top: 50%;
        background: var(--grey5);
        opacity: 0;
        transition: opacity 0.2s ease-in-out;
    }

    .media_controls button:hover::before {
        opacity: 1;
    }
.mob_player {
    display: flex;
}
.pun_alert.alert.mobile_pmedia span#pun_close_button svg {
    display: none;
}

.pun_alert.alert.mobile_pmedia span#pun_close_button.close-video svg {
    display: block;
    float: right;
    margin-top: -36px;
}

#mobile_vid {
    height: auto;
    transition: all 0.3s linear;
    max-height: calc(100vh - 282px);
}

#caption-text,
video::cue {
    background: rgb(0 0 0 / 50%);
    font-family: 'avertacy-regular';
    font-size: 14px;
    line-height: 1.71;
    text-align: left;
}

video::cue(b) {
    background: rgb(0 0 0 / 50%);
    font-family: 'avertacy-regular';
    font-size: 14px;
    line-height: 1.71;
    text-align: left;
}

#caption-text {
    padding: 16px;
    padding-bottom: 0;
    background-color: #191919;
}

.mobile_pmedia.resized video::cue {
    font-size: 26px;
}

.mobile_pmedia.resized video::cue(b) {
    font-size: 26px;
}

.sticky_notification_container {
    position: relative;
}

.progress-video {
    display: block !important;
    width: 100%;
    position: absolute;
    top: 0;
    /*bottom: 148px;*/
    left: 0;
}

    .progress-video .progress {
        height: 5px;
    }

.mobile_pmedia:not(.resized) .progress-video .progress {
    border-radius: 0;
}

.mobile_pmedia {
    flex-direction: column;
    right: calc(100% - 375px - 149px - 137px);
    transition: right 0.3s linear, width 0.3s linear, border-radius 0.3s linear, top 0.3s linear;
    z-index: 1001;
    width: unset !important;
    background-color: #191919;
    overflow: hidden;
    /*max-width: 80vw;*/
}

    .caption-btn,
    .mobile_pmedia .video-caption {
        display: none;
    }

        .caption-btn svg {
            fill: #f0f0f0;
        }

        .caption-btn.can-click svg {
            fill: #000;
        }

        .caption-btn.exist,
        .mobile_pmedia .video-caption.exist {
            display: block;
        }

        .caption-btn.active svg,
        .mobile_pmedia .video-caption.active svg {
            background: #707070;
            border-radius: 50%;
            padding: 4px;
        }

    .mobile_pmedia.resized {
        /*top: 68px;*/
        right: 96px;
        /*width: 100%;*/
        border-radius: 28px;
        z-index: 1002;
        justify-content: space-between;
        overflow: hidden;
    }

        .mobile_pmedia.resized #mobile_vid {
            height: 100% !important;
        }

        .mobile_pmedia.resized .progress-video {
            /*width: 75%;*/
            margin: auto 16px;
            position: initial;
            /*margin-left: auto;*/
            /*bottom: 118px;*/
            right: 155px;
            align-self: center;
        }

        .mobile_pmedia.resized .player_progress > .progress:hover .progress-circle,
        .mobile_pmedia.resized .player_progress > .progress:focus-visible .progress-circle {
            display: block;
        }

        .mobile_pmedia.resized .sticky_notification_container {
            position: relative;
        }

.pun_alert.alert.mobile_pmedia span#pun_close_button.close-video svg.resize-vid-close {
    display: none;
}

.pun_alert.alert.mobile_pmedia.resized span#pun_close_button.close-video svg {
    display: none;
}

    .pun_alert.alert.mobile_pmedia.resized span#pun_close_button.close-video svg.resize-vid-close {
        display: block;
    }

.mobile_pmedia.resized #pun_close_button {
    position: fixed;
    background: red;
    top: 68px;
    right: 32px;
    border-radius: 50%;
    background: #fff;
    color: #111;
    box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.1), 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

    .mobile_pmedia.resized #pun_close_button svg {
        margin: auto !important;
        width: 48px;
        height: 48px;
    }

.mobile_pmedia.resized .Running_media_time {
    margin-left: 10px;
}

.caption-btn.exist,
.mobile_pmedia.resized .video-caption.exist {
    display: block;
}

.vid-overlay {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s linear;
    background: #111;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100vw;
    height: 100vh;
}

    .vid-overlay.show {
        opacity: 0.7;
        visibility: initial;
    }
    
.mobile-stync {
    margin: -28px 0px;
}
.btn-link.btn-load-more,
.load-more {
    padding: 36px;
    width: 100% !important;
    text-align: center;
    color: #5464f7;
    text-decoration: none;
    font-family: 'Roboto-Regular', sans-serif;
    font-size: 14px;
}

.btn-load-more svg {
    margin-right: 8px;
}


.page_top_header .login_time_name span.selected_school_name {
    font-size: 18px;
}