@charset "utf-8";

/* --- Common Variables Start --- */

:root {
    /* Background Color Variables */
    --bg-gray: #454545;
    --bg-skyblue: #00334e;
    --bg-light-skyblue: #025955;
    /* Color Variables */
    --text-white: #fff;
    --text-gray: #454545;
    --text-black: #101010;
    --text-green: #025955;
    --text-skyblue: #00334e;
    --text-gray-v2: #797979;
}


/* --- Common Variables End --- */


/* --- Common Css Start --- */

html {
    -webkit-text-size-adjust: none;
    /* Prevent font scaling in landscape */
    height: 100%;
}

html,
body {
    overflow-x: hidden;
}

body {
    position: relative;
    margin: 0;
    padding: 0;
    font-family: 'Roboto';
    background-color: #f4f6f9;
    font-size: 14px;
}

h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
li,
form,
input,
textarea,
select {
    margin: 0;
    padding: 0;
}

img {
    border: 0;
}

a {
    text-decoration: none;
    outline: none !important;
    outline-color: transparent !important;
}

    a:link,
    a:hover {
        text-decoration: none;
    }

a,
.btn,
button,
:after,
:before {
    transition: all 0.3s;
    -o-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
}

#mainWrapper {
    filter: inherit !important;
}

.form-group {
    position: relative;
}

.form-control {
    font-size: 14px;
    padding-right: 45px;
    font-weight: normal;
    font-family: 'Rubik';
}

.form-control,
.ck.ck-editor {
    border-color: #ced4da !important;
}

    .form-control:not(textarea) {
        height: 50px;
    }

textarea {
    min-height: 120px;
}

.form-control:focus {
    outline-color: var(--bg-skyblue);
    box-shadow: none !important;
}

.form-control::placeholder {
    color: var(--text-gray);
    opacity: 1;
}

.form-control:-ms-input-placeholder {
    color: var(--text-gray);
}

.form-control::-ms-input-placeholder {
    color: var(--text-gray);
}

.cc-btn-common {
    padding: 10px;
    font-size: 15px;
    min-width: 100px;
    font-weight: bold;
    color: var(--text-white);
    background: var(--bg-skyblue);
}

    .cc-btn-common:hover,
    .cc-btn-common:focus {
        background: var(--bg-light-skyblue) !important;
        color: var(--text-white) !important;
    }

/* .cc-btn-light-green {
    margin-right: 10px;
    color: var(--text-white);
    background: var(--bg-light-skyblue);
}

.cc-btn-light-green:hover,
.cc-btn-light-green:focus {
    color: var(--text-white) !important;
    background: var(--bg-skyblue) !important;
} */

.cc-bg-light {
    background: rgba(2, 89, 85, 0.1);
}

/* --- Common Css End --- */


/* --- Spacing Css Start --- */

.cc-plr-15 {
    padding-left: 15px;
    padding-right: 15px;
}

.cc-pb-30 {
    padding-bottom: 30px;
}

/* --- Spacing Css End --- */

/* --- Menu/Sidebar Css Start --- */

#mainWrapper.toggled {
    padding-left: 250px;
}

#sidebar-wrapper {
    position: fixed;
    width: 0;
    left: 250px;
    height: 100%;
    z-index: 1000;
    overflow-y: auto;
    overflow-x: hidden;
    margin-left: -250px;
    background: var(--bg-light-skyblue);
    box-shadow: 0px 0px 10px 0px rgba(135, 135, 135, 0.4);
}

.hdtopbar,
#sidebar-wrapper {
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

#mainWrapper.toggled #sidebar-wrapper {
    width: 250px;
}

#page-content-wrapper {
    width: 100%;
    position: absolute;
}

#mainWrapper.toggled #page-content-wrapper {
    position: absolute;
    margin-right: -250px;
}

#sidebar-wrapper .hdtopbar {
    left: 250px;
}

#mainWrapper.toggled #page-content-wrapper .hdtopbar {
    left: 250px;
    width: 100%;
}

.sidebar-nav {
    /*position: absolute;*/
    position: relative;
    top: 0;
    width: 250px;
    margin: 0;
    padding: 0;
    list-style: none;
}

    .sidebar-nav li {
        text-indent: 20px;
        line-height: 40px;
    }

        .sidebar-nav li a {
            display: block;
            text-decoration: none;
            color: var(--text-black);
        }

            .sidebar-nav li a:hover {
                text-decoration: none;
                color: var(--text-black);
                background: var(--bg-skyblue);
            }

            .sidebar-nav li a:active,
            .sidebar-nav li a:focus {
                text-decoration: none;
            }

    .sidebar-nav > .sidebar-brand {
        height: 65px;
        font-size: 18px;
        line-height: 60px;
    }

        .sidebar-nav > .sidebar-brand a {
            color: var(--text-black);
        }

            .sidebar-nav > .sidebar-brand a:hover {
                color: var(--text-black);
                background: none;
            }

.menu-icon {
    font-size: 15px;
    display: inline-block;
    padding: 0 12px 0 25px;
    color: var(--text-black);
}


/* --- Menu/Sidebar Css End --- */


/* --- Topbar Css Start --- */

.hdtopbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9;
    background: #ffffff;
    box-shadow: 0px 2px 7px 0px rgba(219, 219, 219, 0.5);
}

.content-topspace {
    padding-top: 70px;
    padding-bottom: 15px;
}

.logo {
    width: 260px;
    padding: 10px 0px;
}

#main-menu {
    width: 250px;
    padding-bottom: 50px;
}

.menu-profilebox {
    width: 250px;
    color: var(--text-white);
    font-size: 15px;
    font-weight: 300;
    text-align: center;
    padding: 15px 10px;
    font-family: 'Roboto', sans-serif;
}

    .menu-profilebox span {
        display: block;
        color: var(--text-white);
    }

    .menu-profilebox a {
        font-size: 13px;
        color: var(--text-white);
    }

.proimg {
    width: 70px;
    height: 70px;
    overflow: hidden;
    /*border-radius: 50%;*/
    margin-bottom: 10px !important;
    border: 2px solid var(--bg-skyblue);
}

    .proimg img {
        width: 100%;
        height: 100%;
        image-rendering: -webkit-optimize-contrast;
    }

.pro-link {
    background: #313947;
    color: #8ea6d5;
    padding: 10px 12px;
    border-radius: 50%;
}

.mCSB_scrollTools {
    z-index: 9999;
}


/* --- Topbar Css End --- */


/* --- Close Menu Icon Css Start --- */

.bar1,
.bar2,
.bar3 {
    width: 20px;
    height: 2px;
    background-color: var(--bg-skyblue);
    margin: 7px 0;
    transition: 0.4s;
}

.bar1 {
    -webkit-transform: rotate(-45deg) translate(-9px, 6px);
    transform: rotate(-45deg) translate(-9px, 5px);
}

.bar2 {
    opacity: 0;
}

.bar3 {
    margin-top: 5px;
    -webkit-transform: rotate(45deg) translate(-8px, -8px);
    transform: rotate(45deg) translate(-8px, -4px);
}

.change .bar1 {
    -webkit-transform: rotate(-180deg) translate(-9px, 6px);
    margin-top: 16px;
    transform: rotate(-180deg) translate(-8px, 6px);
}

.change .bar3 {
    -webkit-transform: rotate(180deg) translate(-8px, -8px);
    transform: rotate(180deg) translate(-8px, 9px);
    margin-bottom: 0;
}

.change .bar2 {
    -webkit-transform: rotate(-180deg) translate(-8px, 8px);
    transform: rotate(-180deg) translate(-8px, 8px);
    opacity: 1;
}


/* --- Close Menu Icon Css End --- */


/* --- Header Css Start --- */

.icondrop > a {
    display: inline-block;
    margin-top: 1px;
}

.usericonxs {
    padding-right: 15px;
    border-right: solid 1px #c9c9c9;
    margin-top: 3px;
}

.hd-right-icon {
    padding-right: 15px;
}

    .hd-right-icon a.cc-links {
        font-size: 20px;
        padding: 15px 0;
        margin-left: 30px;
        color: var(--text-green);
    }

        .hd-right-icon a.cc-links:hover,
        .hd-right-icon a.cc-links:focus {
            opacity: 0.7;
        }

    .hd-right-icon .dropdown-toggle::after {
        display: none;
    }

.cc-notification-link {
    position: relative;
    top: 3px;
}

    .cc-notification-link span {
        position: absolute;
        top: 12px;
        width: 16px;
        right: -8px;
        height: 16px;
        font-size: 11px;
        font-weight: 400;
        border-radius: 50%;
        text-align: center;
        color: var(--text-white);
        background-color: var(--bg-skyblue);
    }

.hd-right-icon .dropdown-menu {
    padding: 0px !important;
}

.icondrop .user-left {
    margin-right: 0px;
    padding: 0px 0px 3px;
}

.icondrop .dropdown-menu img {
    width: 12px;
    margin-right: 6px;
}

.icondrop .dropdown-menu li {
    border-top: solid 1px #dedede;
}

    .icondrop .dropdown-menu li:first-child {
        border-top: 0px;
    }

    .icondrop .dropdown-menu li a {
        padding: 6px 10px;
    }

        .icondrop .dropdown-menu li a .user-left h2 {
            max-width: inherit;
            white-space: normal;
            text-overflow: inherit;
        }

        .icondrop .dropdown-menu li a:hover .user-left h2,
        .icondrop .dropdown-menu li a:hover .user-left span {
            color: var(--text-white) !important;
        }


/* --- Header Css End --- */


/* --- Notification List Css Start --- */

.dropdown .cc-notification {
    border: 0;
    padding-top: 0;
    min-width: 300px;
    max-width: 300px;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0px 2px 5px #e2e2e2;
}

/*.cc-notification-desc {
   // max-height: 400px;
}
*/
.cc-notification-head h3 {
    padding: 15px;
    font-size: 14px;
    margin-bottom: 0;
    box-shadow: 0px 1px 2px #e2e2e2;
}

    .cc-notification-head h3 a {
        float: right;
        font-size: 12px;
        margin-top: 1px;
        color: var(--bg-skyblue);
        text-transform: capitalize;
    }

        .cc-notification-head h3 a:hover,
        .cc-notification-head h3 a:focus {
            color: var(--text-skyblue);
        }

.cc-notification-desc .dropdown-item {
    display: block;
    font-size: 14px;
    line-height: 1.4;
    padding: 12px 15px;
    white-space: inherit;
    /* border-bottom: 1px solid #e5e5e5;*/
    border-bottom: 1px solid #f2f2f2;
}

    .cc-unread,
    .cc-notification-desc .dropdown-item:hover,
    .cc-notification-desc .dropdown-item:focus {
        background-color: #e5e5e5;
    }

    .cc-notification-desc .dropdown-item:last-child {
        border-bottom: 0;
    }

    .cc-notification-desc .dropdown-item span {
        display: block;
        color: #a5a5a5;
        font-size: 12px;
        padding-top: 0;
    }

.cc-notification-desc .mCSB_inside > .mCSB_container {
    margin-right: 15px;
}


/* --- Notification List Css End --- */


/* --- Sign In Css Start --- */

.cc-sign-in {
    position: relative;
    z-index: 1;
    padding: 15px;
    height: 100vh;
    background-size: cover;
    background-position: top;
    background-repeat: no-repeat;
}

.cc-sigin-box {
    border-radius: 5px;
    background-color: var(--text-white);
    box-shadow: 0px 30px 60px 0px rgba(0, 0, 0, 0.2);
}

.cc-sigin-border {
    padding: 24px 10px;
    border-bottom: 1px solid rgba(4, 60, 75, 0.15);
}

    .cc-sigin-border img {
        width: 330px;
    }

.cc-signin-form {
    padding: 40px;
}

    .cc-signin-form h1 {
        line-height: 1;
        font-size: 17px;
        font-weight: 900;
        margin-bottom: 30px;
        color: var(--text-skyblue);
        text-decoration: underline;
    }

    .cc-signin-form .form-group {
        margin-bottom: 25px;
    }

.cc-email .form-control {
    background: url('../images/icons/mail.svg') right 15px center no-repeat;
    background-size: 20px;
}

.cc-lock .form-control {
    background: url('../images/icons/password.svg') right 16px center no-repeat;
    background-size: 16px;
}

.cc-unlock .form-control {
    background: url('../images/icons/unlock-password.svg') right 16px center no-repeat;
    background-size: 16px;
}

.cc-forgot-link a {
    font-size: 16px;
    text-transform: capitalize;
    color: var(--text-gray-v2);
    text-decoration: underline;
}

    .cc-forgot-link a span {
        color: #797979;
    }

    .cc-forgot-link a:hover span {
        color: var(--text-skyblue);
    }

    .cc-forgot-link a:first-child {
        color: var(--bg-skyblue);
    }

    .cc-forgot-link a:hover,
    .cc-forgot-link a:focus {
        color: var(--text-gray);
    }

.cc-password-form h1 {
    line-height: 1.5;
    margin-bottom: 70px;
    text-decoration: none;
}

.cc-sign-in .form-control {
    font-size: 14px;
    font-weight: 500;
    padding-right: 45px;
    font-family: 'Roboto';
}


/* --- Sign In Css End --- */


/* --- Custom Checkbox Css Start --- */

.cc-checkbox {
    position: relative;
    display: block;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    padding-left: 25px;
    -ms-user-select: none;
    color: var(--text-gray);
    -moz-user-select: none;
    -webkit-user-select: none;
}

    .cc-checkbox input {
        position: absolute;
        width: 0;
        height: 0;
        opacity: 0;
        cursor: pointer;
    }

.checkmark {
    position: absolute;
    top: 4px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    border: 1px solid rgba(69, 69, 69, 0.5);
}

.cc-checkbox input:checked ~ .checkmark {
    border-color: transparent;
    background-color: var(--bg-skyblue);
}

.cc-checkbox input:checked ~ .checkmark-light-green {
    border-color: transparent;
    background-color: var(--bg-skyblue);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.cc-checkbox input:checked ~ .checkmark:after {
    display: block;
}

.cc-checkbox .checkmark::after {
    top: -2px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 9px;
    margin: auto;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

.cc-checkbox .checkmark-light-green::after {
    top: -2px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 5px;
    height: 9px;
    margin: auto;
    border: solid #043c4b;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* --- Custom Checkbox Css End --- */


/* --- Page Heading Css Start --- */

.cc-common-sec {
    padding-top: 100px;
    padding-left: 10px;
}

.cc-common-head {
    margin-bottom: 20px;
}

    .cc-common-head h1,
    .cc-dashboard-table .cc-common-head h2 {
        font-size: 18px;
        font-weight: 700;
        padding-bottom: 15px;
        color: var(--text-green);
        text-transform: capitalize;
        border-bottom: 1px solid #d6cfe2;
    }

.cc-common-form .form-control:not(textarea) {
    height: 50px;
}

.cc-common-form .form-control.h-56 {
    height: 56px;
}

.cc-common-form .form-control.h-67,
.cc-common-form .form-group.h-67 .form-control {
    height: 67px;
}

.cc-btn-common {
    padding-left: 30px;
    padding-right: 30px;
}

.cc-common-form .cc-btn-common {
    line-height: 1;
    font-size: 15px;
    min-width: 120px;
    font-weight: 600;
    padding: 12px 15px;
    font-family: 'Rubik';
    text-transform: capitalize;
}

.cc-min-width-120 {
    min-width: 120px !important;
}

.cc-icon i,
.cc-search i {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    height: 15px;
    line-height: 1;
    font-size: 18px;
}

.cc-search i-clear {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    height: 15px;
    line-height: 1;
    font-size: 18px;
}

.cc-icon i {
    height: 20px;
    line-height: 1;
    font-size: 24px;
}

.cc-common-sec .cc-common-form .form-control {
    font-family: 'Roboto';
}

.cc-common-sec .cc-common-form select.form-control {
    line-height: 2.8;
}

.cc-bg-form {
    padding: 20px;
    background-color: #fff;
    border-bottom: 1px solid rgb(222, 226, 230);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
}


/* --- Page Heading Css End --- */


/* --- Common Table Css Start --- */

.cc-common-table th,
.cc-common-table td {
    font-size: 14px;
    line-height: 1.2;
    color: var(--text-black);
    box-shadow: 0.53px 0.848px 2px 0px rgba(170, 170, 170, 0.08);
}

.cc-common-table th,
.cc-common-table td {
    padding: 18px 15px 15px;
    color: var(--text-gray);
}

.cc-common-table table {
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
}

.cc-common-table thead th {
    font-weight: 500;
    vertical-align: middle;
    color: var(--text-white);
    border-bottom-width: 2px;
}

    .cc-common-table thead th .cc-checkbox .checkmark {
        border-color: #fff;
    }

.cc-common-table thead {
    background-color: var(--bg-skyblue);
}

.cc-common-table tbody {
    background-color: #fff;
}

.cc-common-table .table ul li {
    display: inline-block;
    /* padding-right: 30px; */
    padding-right: 10px;
}

.cc-common-table ul li:last-child {
    padding-left: 0;
}

.cc-common-table .table a {
    font-size: 14px;
    color: var(--bg-gray);
}

    .cc-common-table .table a:hover,
    .cc-common-table .table a:focus {
        color: var(--text-skyblue);
    }

.cc-common-table .checkmark {
    position: relative;
    top: 0;
    margin: 0 auto;
    display: block;
    padding-left: 0;
}

.cc-common-table .cc-checkbox {
    padding-left: 0;
}

.cc-common-table .form-control {
    width: 150px;
    height: 45px;
}

/* --- Common Table Css End --- */


/* --- Dashboard Css Start --- */

.cc-dashboard-total {
    padding-top: 35px;
}

.cc-dahsboard-desc {
    padding: 25px 30px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0px 0px 25px 0px rgba(0, 0, 0, 0.05);
}

    .cc-dahsboard-desc p {
        font-size: 16px;
        padding-top: 15px;
        margin-bottom: 15px;
        color: var(--text-gray);
    }

    .cc-dahsboard-desc h2 {
        margin: 0;
        line-height: 1;
        font-size: 45px;
        font-weight: bold;
        color: var(--text-skyblue);
    }

.cc-common-head h1 a,
.cc-dashboard-table .cc-common-head h2 a {
    font-size: 15px;
    color: var(--text-green);
}

    .cc-common-head h1 a:not(.cc-back-link),
    .cc-dashboard-table .cc-common-head h2 a {
        position: relative;
        top: 5px;
        float: right;
    }

        .cc-common-head h1 a i,
        .cc-dashboard-table .cc-common-head h2 a i {
            width: 17px;
            height: 17px;
            color: #fff;
            margin-left: 5px;
            line-height: 17px;
            text-align: center;
            border-radius: 50%;
            background: var(--bg-light-skyblue);
            -webkit-transition: all 0.3s;
            -moz-transition: all 0.3s;
            -ms-transition: all 0.3s;
            transition: all 0.3s;
        }

        .cc-common-head h1 a:hover,
        .cc-common-head h1 a:focus,
        .cc-dashboard-table .cc-common-head h2 a:hover,
        .cc-dashboard-table .cc-common-head h2 a:focus {
            color: var(--text-black);
        }

            .cc-common-head h1 a:hover i,
            .cc-common-head h1 a:focus i,
            .cc-dashboard-table .cc-common-head h2 a:hover i,
            .cc-dashboard-table .cc-common-head h2 a:focus i {
                background: var(--bg-gray);
            }


/* --- Dashboard Css End --- */


/* --- Manage Patient Css Start --- */

.cc-manage-patient {
    padding-left: 5px;
}


/* --- Manage Patient Css End --- */


/* --- Pagination Css Start --- */

.cc-pagination {
    margin: 45px 0 20px;
}

.pagination .page-link {
    border: 0;
    margin: 0 5px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 5px;
    color: var(--text-black);
    background-color: transparent;
}

    .pagination .page-link:hover,
    .pagination .page-link:focus,
    .pagination .page-link.active {
        box-shadow: none;
        color: var(--text-white);
        background-color: var(--bg-skyblue);
    }

.pagination .page-item:first-child .page-link {
    transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
}

.pagination .page-item:last-child a:hover,
.pagination .page-item:last-child a:focus,
.pagination .page-item:first-child a:hover,
.pagination .page-item:first-child a:focus {
    background-color: transparent;
}

.pagination .page-link .cc-color-ic,
.pagination .page-link:hover .cc-black-ic,
.pagination .page-link:focus .cc-black-ic {
    display: none;
}

.pagination .page-link:hover .cc-color-ic,
.pagination .page-link:focus .cc-color-ic {
    display: inline-block;
}


/* --- Pagination Css End --- */


/* --- Common Page Form Section Css Start --- */

.cc-common-sub-sec {
    padding: 25px 20px;
    border-radius: 6px;
    /*box-shadow: 0.588px 0.809px 0px 0px rgba(190, 190, 190, 0.4);*/
}

/*.cc-form-label {
    font-size: 15px;
    color: #454545;
    font-family: 'Rubik';
    padding-bottom: 10px;
    text-transform: capitalize;
}*/

.cc-form-label {
    font-size: 15px;
    color: #454545;
    font-family: 'Rubik';
    padding-bottom: 10px;
    /*text-transform: capitalize;*/
}

.cc-common-sub-sec .cc-common-form .form-control {
    position: relative;
    color: #454545;
    z-index: 0;
}

.cc-common-sub-sec .form-group .fa-angle-down {
    top: -2px;
    line-height: 1;
    font-size: 20px;
    pointer-events: none;
}

.cc-common-sub-sec .form-group .fa-angle-down,
.input-group-text .fa-calendar-alt {
    color: #454545;
}

.ck * {
    color: #454545;
    font-size: 15px;
    font-family: 'Rubik';
}

.file-upload-button {
    position: absolute;
    top: 1px;
    right: 1px;
    height: 43px;
    border-radius: 0;
    font-weight: normal !important;
}

.cc-common-form .cc-btn-update {
    padding: 12px 45px;
}

.cc-back-link {
    width: 25px;
    height: 25px;
    color: #fff;
    margin-right: 5px;
    line-height: 25px;
    text-align: center;
    border-radius: 50%;
    display: inline-block;
    font-size: 18px !important;
    background: var(--bg-skyblue);
}

    .cc-back-link i {
        position: relative;
        left: -1px;
        margin-left: 0 !important;
        background-color: transparent !important;
    }

    .cc-back-link:hover,
    .cc-back-link:focus {
        color: var(--text-dark-green);
        background: var(--bg-skyblue);
    }

.in-no-ic-table table thead th {
    background-image: none;
}


/* --- Common Page Form Section Css End --- */


/* --- Add Company Css Start --- */

.cc-heirarchy h2 {
    font-size: 15px;
    text-align: left;
    font-family: 'Rubik';
    padding-bottom: 15px;
    color: var(--text-gray);
}

.cc-heirarchy-list {
    margin-bottom: 5px;
}

    .cc-heirarchy-list:nth-child(3) {
        padding-left: 15px;
    }

    .cc-heirarchy-list:nth-child(4) {
        padding-left: 30px;
    }

    .cc-heirarchy-list:nth-child(5) {
        padding-left: 45px;
    }

    .cc-heirarchy-list ul {
        display: flex;
        align-items: center;
    }

        .cc-heirarchy-list ul li {
            padding-right: 15px;
            list-style-type: none;
        }

            .cc-heirarchy-list ul li p {
                padding-top: 0;
                font-size: 15px;
                margin-bottom: 0;
                font-family: 'Rubik';
                color: var(--text-gray);
            }

            .cc-heirarchy-list ul li a {
                margin-left: 8px;
                display: inline-block
            }

            .cc-heirarchy-list ul li p i.fa-caret-down {
                position: relative;
                top: 5px;
                font-size: 24px;
                transform: rotate(-50deg);
                -ms-transform: rotate(-50deg);
                -moz-transform: rotate(-50deg);
                -webkit-transform: rotate(-50deg);
            }

.cc-ps-15 {
    padding-left: 15px;
}

.cc-ps-30 {
    padding-left: 30px;
}

.cc-heirarchy-list ul li a img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}


/* --- Add Company Css End --- */


/* --- Regions Css Start --- */

.cc-region-table table th,
.cc-region-table table td {
    width: 50%;
}


/* --- Regions Css End --- */


/* --- Profile Css Start --- */

.cc-profile .cc-unlock .form-control {
    background-image: url('../images/icons/password_eye.svg');
    background-size: 25px;
}

.cc-profile-head {
    padding: 15px;
    text-align: center;
    background: #effaff;
    border-bottom: 2px solid #d8dbde;
}

    .cc-profile-head h3 {
        font-size: 14px;
        color: #454545;
        font-weight: bold;
    }

.cc-common-sub-sec {
    border-radius: 0;
    /*border: 1px solid rgb(222, 226, 230);*/
}

.cc-profile-des {
    border: 1px solid #d8dbde;
    /*box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);*/
}

.change-pwd-label a {
    font-size: 18px;
    font-weight: 700;
    padding-bottom: 15px;
    color: var(--bg-skyblue);
    text-transform: capitalize;
}

    .change-pwd-label a:hover {
        color: var(--text-gray);
    }

/*.cc-img-profile {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}*/
.cc-img-profile {
    width: 150px;
    height: 150px;
    /*border-radius: 50%;*/
    image-rendering: -webkit-optimize-contrast;
}


/* --- Profile Css End --- */


/* --- Schedule & Routes Css Start --- */

.cc-routes-map iframe {
    width: 100%;
    margin-bottom: 20px;
}

.cc-schedule-sec .cc-checkbox {
    font-size: 14px;
    color: #454545;
}

.cc-schedule-sec .checkmark {
    top: 2px;
}


/* --- Schedule & Routes Css End --- */


/* --- Create/Manage/View Work Order Css Start --- */

.cc-word-des p {
    font-size: 15px;
    color: var(--text-gray);
    margin-bottom: 10px;
}

    .cc-word-des p strong {
        font-weight: 500;
    }

.cc-datepicker .form-control {
    cursor: pointer;
    background: url('../images/icons/calendar_stroke.svg') no-repeat center right 15px;
    background-size: 20px;
}

.cc-work-head h2 {
    font-size: 16px;
    padding-bottom: 20px;
    color: var(--text-gray);
    text-decoration: underline;
}

    .cc-work-head h2 a {
        position: relative;
        top: -2px;
        width: 22px;
        height: 22px;
        float: right;
        font-size: 10px;
        line-height: 23px;
        text-align: center;
        border-radius: 50%;
        color: var(--text-white);
        background: var(--bg-skyblue);
    }

.cc-create-work-form {
    background: #fff;
    padding: 30px 30px 20px;
    border: 1px solid rgb(222, 226, 230);
    box-shadow: 0px 1px 5px 0px rgba(0, 0, 0, 0.1);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type=number] {
    -moz-appearance: textfield;
}

.cc-num-btn {
    position: absolute;
    top: 0;
    right: 15px;
}

    .cc-num-btn .btn {
        position: relative;
        top: 2px;
        padding: 0;
        display: block;
        line-height: 1;
        font-size: 20px;
        font-weight: normal;
        border: 0 !important;
    }

    .cc-num-btn .cc-tp-arrow {
        top: 7px;
    }

.cc-create-work-form .cc-num-icon .form-control {
    /*padding-right: 45px;*/
}

.cc-create-work-form .col {
    flex: 0 0 20%;
}

.cc-word-des h2 {
    font-size: 20px;
    color: #454545;
    padding-bottom: 10px;
}


/* --- Create/Manage/View Work Order Css End --- */


/* --- Store & Location Css Start --- */

.cc-store-location .cc-store-head {
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid #d6cfe2;
}

.cc-store-location .cc-common-head h1 {
    border-bottom: 0;
    padding-bottom: 0;
}

.cc-store-location .cc-btn-common {
    min-width: 140px;
}

/* --- Store & Location Css End --- */

/* --- Schedule & Routes Css Start --- */

.cc-routes-form {
    box-shadow: none;
    border-bottom: 0;
}

/* --- Schedule & Routes Css End --- */

/* --- Modal Css Start --- */

.cc-modal-btn-list {
    padding-bottom: 20px;
}

.btn-close {
    opacity: 1;
    color: #fff;
    border-radius: 50%;
    background-size: 10px;
    box-shadow: none !important;
    background-color: #ccd7dc;
}

/*.modal-open .select2-container {
    z-index: 9999;
}*/

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] {
    background-color: #025955;
}

.select2-container--bootstrap4 .select2-selection--multiple {
    padding-top: 5px;
    min-height: 50px !important;
    line-height: 30px !important;
}

.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #ccc;
    box-shadow: none !important;
}

.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear {
    bottom: 0;
    margin: auto;
    line-height: 13px;
}

.modal-static .modal-dialog {
    transform: scale(1) !important;
}

/* --- Modal Css End --- */


/*latest css start*/


/*===== Gutter Size ======*/


/* 20px gutter*/

.gutter-20.row {
    margin-right: -10px;
    margin-left: -10px;
}

.gutter-20 > [class^="col-"],
.gutter-20 > [class^=" col-"] {
    padding-right: 10px;
    padding-left: 10px;
}


/* 10px gutter */

.gutter-5.row {
    margin-right: -4px;
    margin-left: -4px;
}

.gutter-5 > [class^="col-"],
.gutter-5 > [class^=" col-"] {
    padding-right: 4px;
    padding-left: 4px;
}


/* 10px gutter */

.gutter-10.row {
    margin-right: -5px;
    margin-left: -5px;
}

.gutter-10 > [class^="col-"],
.gutter-10 > [class^=" col-"] {
    padding-right: 5px;
    padding-left: 5px;
}


/* 0px gutter */

.gutter-0.row {
    margin-right: 0;
    margin-left: 0;
}

.gutter-0 > [class^="col-"],
.gutter-0 > [class^=" col-"] {
    padding-right: 0;
    padding-left: 0;
}

.cc-ptb-15 {
    padding-top: 15px;
    padding-bottom: 15px;
}

.link-blue {
    color: #043c4b;
}

    .link-blue:hover {
        color: #000;
    }

.changepass {
    font-size: 15px;
    font-style: italic;
    text-decoration: underline !important;
}

.medium {
    font-weight: 500;
}

.semibold {
    font-weight: 600;
}

.uploadphoto {
    border: solid 1px #ced4da;
    position: relative;
    text-align: center;
    padding: 26.1% 3%;
}

.detailslist {
    margin: 0px;
    padding: 0px;
    list-style: none;
    font-size: 14px;
}

    .detailslist .link-blue span {
        padding-left: 5px;
        text-decoration: underline;
    }

    .detailslist li {
        margin: 3px 0px;
    }

        .detailslist li span {
            font-weight: 500;
        }

.cc-mt-10 {
    margin-top: 10px;
}

.cc-common-form .input-group {
    width: 100%;
}

.cc-common-form .input-group-prepend {
    position: absolute;
    width: 50px;
    right: 0;
    height: 100%;
    z-index: 5;
}

.cc-common-form .input-group-text {
    height: 100%;
    background: transparent;
    border: none;
    z-index: 1;
    width: 45px;
    margin: 0;
}

.cc-common-form .input-group-prepend .cc-icon i,
.input-group-prepend .cc-search i {
    position: relative;
}

.cc-common-form .bootstrap-datetimepicker-widget table thead tr:first-child th {
    position: relative;
}

.border-radius {
    border-radius: 0.375rem !important;
}

.font14 {
    font-size: 14px;
}

.font18 {
    font-size: 16px;
}

.text-green {
    color: var(--text-skyblue);
}

.text-gray {
    color: var(--text-gray);
}

.cc-common-form .text-green {
    font-family: 'Rubik';
    text-transform: capitalize;
}

/* --- Responsive Css Start --- */

@media only screen and (min-width: 414px) {
    #mainWrapper.toggled #page-content-wrapper .hdtopbar {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .cc-pr-15 {
        padding-right: 15px;
    }

    .cc-pl-10 {
        padding-left: 10px;
    }

    .cc-pl-15 {
        padding-left: 15px;
    }

    .user-left {
        margin-left: 53px;
    }

    .arrow_box {
        margin-top: 3px;
    }

    .logo {
        padding: 8px 0px 8px;
    }

    /* --- Menu Css Start --- */
    #mainWrapper {
        padding-left: 250px;
    }

        #mainWrapper.toggled {
            padding-left: 0;
        }

    #sidebar-wrapper {
        width: 250px;
    }

    #mainWrapper.toggled #sidebar-wrapper {
        width: 0;
    }

    #page-content-wrapper {
        position: relative;
    }

    #mainWrapper.toggled #page-content-wrapper {
        position: relative;
        margin-right: 0;
    }

    /* --- Menu Css End --- */
    /* --- Close and Menu Icon Css Start --- */
    .menu-icon.change {
        padding-left: 9px;
        padding-right: 25px;
    }

    #sidebar-wrapper .hdtopbar {
        left: 0px;
    }

    #mainWrapper.toggled #page-content-wrapper .hdtopbar {
        left: 0px;
        width: auto;
    }

    .hdtopbar {
        left: 250px;
    }

    /* --- Close and Menu Icon Css End --- */
}

@media only screen and (min-width: 1200px) {
    .cc-routes-map iframe {
        height: 700px;
    }
}

@media only screen and (max-width: 1660px) {
    .cc-common-form .cc-btn-common {
        min-width: 80px;
    }

    .cc-btn-common {
        font-size: 14px;
    }

    .cc-form-label {
        font-size: 13px;
    }
}

@media only screen and (max-width: 1200px) {
    .cc-dahsboard-desc p {
        font-size: 14px;
        margin-bottom: 5px;
        padding-top: 10px;
    }

    .cc-dahsboard-desc {
        padding: 15px;
    }

        .cc-dahsboard-desc img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .cc-dahsboard-desc h2 {
            font-size: 36px;
        }

    .cc-form-label,
    .cc-word-des p {
        font-size: 13px;
    }

    .cc-create-work-form .col {
        flex: 0 0 33%;
    }

    .cc-common-form .cc-btn-common {
        font-size: 12px;
        padding: 12px 10px;
    }
}

@media only screen and (max-width: 1199px) {
    .cc-common-table ul li {
        padding-right: 10px;
    }

    .cc-common-head h1 {
        font-size: 20px;
    }
}

@media only screen and (max-width: 1085px) {
    .cc-common-table ul li {
        padding: 5px 0;
    }
}

@media only screen and (max-width: 991px) {
    .cc-common-sub-sec p {
        margin-bottom: 5px;
        padding-top: 10px;
    }

    .cc-back-link {
        top: 0;
        width: 20px;
        height: 20px;
        font-size: 14px;
        line-height: 21px;
    }

    .cc-create-work-form .col {
        flex: 0 0 50%;
    }

    .cc-create-work-form {
        padding: 15px 15px 5px;
    }
}

@media only screen and (max-width: 768px) {
    .cc-ptb-15 {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .cc-common-table thead th,
    .cc-common-table thead th:first-child {
        min-width: 150px;
    }

    .cc-client-btn {
        margin-top: 10px;
    }
}

@media only screen and (max-width:767px) {

    .cc-client-btn {
        margin-top: 0;
    }

    /* --- Close and Menu Icon Css Start --- */
    .menu-icon {
        padding-left: 15px;
        display: inline-block;
        color: #b2b2b2;
    }

    .change {
        padding-top: 10px;
    }

    .bar1,
    .bar2,
    .bar3 {
        opacity: 1;
        margin: 5px 0;
        transform: rotate(0) translate(0);
        -webkit-transform: rotate(0) translate(0);
    }

    .change .bar1 {
        -webkit-transform: rotate(-45deg) translate(-9px, 6px);
        transform: rotate(-45deg) translate(-4px, 3px);
    }

    .change .bar2 {
        opacity: 0;
    }

    .change .bar3 {
        -webkit-transform: rotate(45deg) translate(-8px, -8px);
        transform: rotate(45deg) translate(-7px, -6px);
    }

    /* --- Close and Menu Icon Css End --- */
    .cc-common-sec {
        padding-left: 0;
    }

    .cc-heirarchy {
        margin: 20px 0 30px;
    }

    .cc-work-head {
        padding: 0 5px;
    }
}

@media only screen and (max-width: 640px) {
    .logo {
        width: 200px;
    }

    .hd-topbar-links {
        justify-content: start !important;
    }

    a.back-arrow i.fas.fa-arrow-left {
        font-size: 20px;
        top: 7px;
    }

    .hd-right-icon small {
        display: none;
    }

    .current-cookdate li.nav-item {
        width: 100%;
        margin-right: 0;
        margin-bottom: 10px;
    }

    li.nav-item {
        width: 100%;
        margin-bottom: 10px !important;
    }

    .change {
        padding-top: 5px;
    }

    .cc-common-table .table ul li {
        padding-right: 5px;
    }

    .cc-heirarchy-list:nth-child(3) {
        padding-left: 10px;
    }

    .cc-heirarchy-list:nth-child(4) {
        padding-left: 20px;
    }

    .cc-heirarchy-list:nth-child(5) {
        padding-left: 30px;
    }
}

@media only screen and (max-width: 575px) {
    .cc-signin-form {
        padding: 20px 15px;
    }

    .cc-sigin-border img {
        width: 150px;
    }

    .form-control,
    .cc-checkbox {
        font-size: 14px;
    }

    .cc-forgot-link a {
        display: block;
    }

    .cc-common-sec .form-group {
        margin-bottom: 15px;
    }

    /* .cc-common-sec .form-group:last-child {
        margin-bottom: 0;
    } */

    .cc-common-sec .cc-btn-common {
        width: 100%;
        margin: 5px 0;
        font-size: 14px;
    }

    .cc-form-label {
        font-size: 14px;
    }

    .cc-common-head h1 {
        font-size: 16px;
    }

    .cc-dahsboard-desc {
        margin-bottom: 30px;
    }

    .dropdown .cc-notification {
        max-width: 280px;
        min-width: 280px;
        left: -10px !important;
    }

    /* .cc-common-table td {
        padding: 5px 15px;
    } */

    .cc-create-work-form .col {
        flex: 0 0 100%;
    }

    .menu-icon img {
        width: 20px;
    }
}

.cc-eye-icon .cc-toggle-password {
    position: absolute;
    top: 15px;
    right: 15px;
    bottom: 0;
    opacity: 0.7;
    font-size: 18px;
}

/* --- Responsive Css End --- */
