@import url("fontawesome-all.min.css");

*, html {
    scroll-behavior: smooth;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-variant-ligatures: none;
    -webkit-font-variant-ligatures: none;
    text-rendering: optimizeLegibility;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Roboto';
    animation: opac 1.5s;
    font-size: 14px;
    color: #212121;
    overflow-x: hidden;
    box-sizing: border-box;
    background-color: #eff3f6;
    padding-top: 80px;
}

a, a:hover, a:focus {
    color: inherit;
    text-decoration: none;
    outline: none;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

ul {
    list-style-type: none;
    margin: 0;
}

.login-box-main .left-section {
    background-image: url(../../Dashboard/images/login-bg.png)
}

.logo h1 span {
    color: #25bf09;
}

img.logo-img {
    width: 230px;
}

@media (max-width:767px) {

    img.logo-img {
        width: 200px !important;
    }

    .login-box-main .inner-box {
        padding: 30px 15px !important;
    }
}

.logo h1 {
    color: #0c3a6b;
}
/*global*/
.p-relative {
    position: relative;
}

.section-row {
    margin-bottom: 35px;
}

.section-top-heading {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 15px;
    display: block;
}

.light-text {
    font-size: 14px;
    font-weight: normal;
    margin-top: 10px;
    color: #80868a;
}

.white-box > .title {
    margin: -20px;
    margin-bottom: 20px;
}

.title {
    display: block;
    font-size: 18px;
    font-weight: 500;
    font-style: normal;
    font-stretch: normal;
    padding: 18px 20px;
    margin-bottom: 20px;
    color: #212121;
    border-bottom: 1px solid rgba(126, 142, 177, 0.19);
    display: block;
}

    .title.blue {
        color: #ffffff;
        border-bottom: 0px;
        background-color: #6b91f0;
    }

    .title.green {
        color: #ffffff;
        border-bottom: 0px;
        background-color: #4db6ac;
    }

    .title.red {
        color: #ffffff;
        border-bottom: 0px;
        background-color: #e56793;
    }

    .title.voilet {
        color: #ffffff;
        border-bottom: 0px;
        background-color: #9575cd;
    }

.big-label {
    font-size: 26px;
    font-weight: bold;
}

.white-box {
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(126, 142, 177, 0.19);
    background-color: #ffffff;
    padding: 20px;
    position: relative;
    width: 100%
}

.viewmore-blue-btn, .viewmore-blue-btn:hover, .viewmore-blue-btn:focus {
    border-radius: 3px;
    border: solid 1px #83bbe2;
    background-color: #e9f4ff;
    color: #4b98e1;
    font-weight: 500;
    padding: 8px 14px;
    white-space: nowrap;
}

    .viewmore-blue-btn img {
        margin-left: 8px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
    }

.section-filter-box .label {
    color: #80868a;
    margin-right: 12px;
}

.section-filter-box {
    margin-bottom: 30px;
}

.blue-select {
    position: relative;
    z-index: 9;
    border-radius: 2px;
    background-color: transparent;
    border: 0;
    padding: 7px 13px;
    color: #5d64a7;
    -webkit-appearance: none;
    appearance: none;
    padding-right: 30px;
}

    .blue-select:focus {
        outline: 0;
        box-shadow: none;
    }

.select-box {
    position: relative;
    background-color: #f2f3fd;
    border-radius: 2px;
}

    .select-box:after {
        content: '';
        transition: all 0.1s ease-in-out;
        -webkit-transition: all 0.1s ease-in-out;
        -moz-transition: all 0.1s ease-in-out;
        border-right: 0;
        border-bottom: 0;
        height: 8px;
        width: 8px;
        border-top: 1px solid #4b98e1;
        border-left: 1px solid #4b98e1;
        position: absolute;
        top: 50%;
        margin-top: -4px;
        right: 13px;
        transform: translate(0, -50%)rotate(-135deg);
        -webkit-transform: translate(0, -50%)rotate(-135deg);
        -moz-transform: translate(0, -50%)rotate(-135deg);
    }

    .select-box.open:after {
        margin-top: 0;
        right: 13px;
        transform: translate(0, -50%)rotate(45deg);
        -webkit-transform: translate(0, -50%)rotate(45deg);
        -moz-transform: translate(0, -50%)rotate(45deg);
    }

.blue-select:hover {
    cursor: pointer;
}

.select-box.open option {
    color: #5d64a7;
    cursor: pointer;
}

.table-box {
    overflow-x: auto;
}

#top-btn {
    display: none;
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: #222c3c;
    color: #ffffff;
}

    #top-btn:focus {
        outline: 0;
        box-shadow: none;
    }

/*btns*/
.btn {
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out
}

.blue-btn-light {
    padding: 8px 60px;
    box-shadow: 0 12px 19px -10px rgba(75, 152, 225, 0.59);
    background-color: #4b98e1;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    color: #ffffff;
}

    .blue-btn-light:hover, .blue-btn:focus {
        background-color: #1565C0;
        color: #ffffff;
        box-shadow: 0 12px 19px -10px rgba(33, 37, 41, 0.47);
        outline: 0;
    }

.blue-link {
    font-size: 14px;
    font-weight: normal;
    font-style: normal;
    font-stretch: normal;
    line-height: normal;
    letter-spacing: normal;
    color: #4b98e1;
}

/*form*/
.label-big {
    font-size: 30px;
    font-weight: bold;
    display: block;
    margin-bottom: 50px;
}

.input-error {
    color: #ee3939;
    margin: 15px 0 30px;
}

    .input-error img {
        margin-right: 6px;
    }

.form-control {
    height: 40px;
    border-radius: 4px;
    border: solid 1px #4b98e1;
    font-size: 16px;
    color: #434343;
}

    .form-control::placeholder {
        color: #b0b4b7;
    }

    .form-control.mail-icon {
        background-image: url(../images/mail-grey.png);
        background-repeat: no-repeat;
        background-position: left 15px center;
        padding-left: 50px;
    }

        .form-control.mail-icon:focus, .mail-icon.notEmpty {
            background-image: url(../images/mail-blue.png);
        }

    .form-control.lock-icon {
        background-image: url(../images/lock-grey.png);
        background-repeat: no-repeat;
        background-position: left 19px center;
        padding-left: 50px;
    }

        .form-control.lock-icon:focus, .lock-icon.notEmpty {
            background-image: url(../images/lock-blue.png);
        }

form .btn-sec {
    margin: 25px 0;
}

form .bottom-text {
    color: #80868a;
    font-size: 14px;
    line-height: 1;
    font-weight: normal;
    text-align: center;
}

    form .bottom-text span > img {
        margin-right: 4px;
    }

    form .bottom-text p {
        margin-bottom: 15px;
    }

.footer-tag {
    position: absolute;
    left: 0;
    width: 100%;
    bottom: 12px;
    color: #a5a5a5;
}

.custom-checkbox {
    cursor: pointer;
    min-height: auto;
}

    .custom-checkbox > .custom-control-input {
        position: absolute;
        height: 100%;
        width: 100%;
        left: 0;
        top: 0;
        z-index: 9;
        cursor: pointer;
    }

    .custom-checkbox .custom-control-label:before {
        border-radius: 0;
        border: solid 1px #979797;
        top: 2px;
        background-color: transparent !important;
        color: transparent !important;
        box-shadow: none !important;
    }

.custom-control-input:checked ~ .custom-control-label:before {
    color: #fff;
    border-color: #4b98e1 !important;
    background-color: #4b98e1 !important;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
    color: #fff;
    background-color: #979797;
    border-color: #979797;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label:after {
    top: 3px;
    background-image: none;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg);
    height: 11px;
    width: 6px;
    left: -19px;
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label:before {
    border-color: #979797 !important;
}

.custom-control-label {
    position: relative;
    cursor: pointer;
    vertical-align: top;
}

.custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: none;
}

.form-control:focus {
    box-shadow: none;
}

form .label-big + .input-error {
    margin-top: -15px;
}

.form-control.error {
    border-color: #ee3939;
}

.custom-toggle {
    border: 1px solid #222c3c;
    color: #222c3c;
    border-radius: 3px;
    position: relative;
    padding: 2px;
}

    .custom-toggle label {
        margin-bottom: 0;
        min-width: 115px;
        text-align: center;
    }

    .custom-toggle .toggle-item {
        position: relative;
        z-index: 9;
        cursor: pointer;
    }

        .custom-toggle .toggle-item input {
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 100%;
            z-index: 9;
            cursor: pointer;
            opacity: 0;
            cursor: pointer;
        }

        .custom-toggle .toggle-item label span {
            display: block;
            padding: 6px 20px;
            position: relative;
            z-index: 9;
            cursor: pointer;
        }

        .custom-toggle .toggle-item input[type=radio]:checked + label {
            color: #ffffff;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
        }

        .custom-toggle .toggle-item:first-child label:after {
            content: '';
            height: 100%;
            left: 100%;
            width: 100%;
            top: 0;
            background: #222c3c;
            position: absolute;
            border-radius: 3px;
            transition: all 0.15s ease-in-out;
            -webkit-transition: all 0.15s ease-in-out;
            -moz-transition: all 0.15s ease-in-out;
        }

        .custom-toggle .toggle-item:first-child input[type=radio]:checked + label:after {
            left: 0;
        }

/*charts*/
#pie-chart canvas {
    height: 210px !important;
    width: 210px !important;
}

#polar-chart canvas {
    height: 410px !important;
    width: 410px !important;
}

.chart-point-box-list {
    margin: 20px 0;
}

    .chart-point-box-list li {
        font-size: 16px;
        margin-bottom: 20px;
        position: relative;
    }

        .chart-point-box-list li.blue {
            color: #4b98e1;
        }

        .chart-point-box-list li.green {
            color: #4db6ac;
        }

        .chart-point-box-list li.pink {
            color: #e56793;
        }

        .chart-point-box-list li.dark-blue {
            color: #6b91f0;
        }

        .chart-point-box-list li.orange {
            color: #f4a55f;
        }

        .chart-point-box-list li:before {
            content: '';
            height: 20px;
            width: 20px;
            display: block;
            float: left;
            margin-right: 10px;
        }

        .chart-point-box-list li.blue:before {
            background-color: #4b98e1;
            float: left;
            margin-right: 10px;
        }

        .chart-point-box-list li.green:before {
            background-color: #4db6ac;
            float: left;
            margin-right: 10px;
        }

        .chart-point-box-list li.pink:before {
            background-color: #e56793;
            float: left;
            margin-right: 10px;
        }

        .chart-point-box-list li.dark-blue:before {
            background-color: #6b91f0;
        }

        .chart-point-box-list li.orange:before {
            background-color: #f4a55f;
        }

.chart-obs-list li {
    line-height: 1.85;
}

.chart-obs-list {
    margin: 30px;
}

.chart-point-box-list.inline {
    display: inline-block;
}

#basic-chart .chart-point-box-list.inline {
    margin-left: 20px;
    margin-bottom: -15px;
    margin-top: 0;
}

.chart-point-box-list.inline li {
    float: left;
    margin-right: 35px;
}

/*table*/
table {
    border: 0;
}

thead {
    background-color: #eaecef;
    border-radius: 0;
}

.table thead th {
    font-size: 16px;
    padding: 18px 30px;
    border: 0;
    white-space: nowrap;
}

.table td {
    font-size: 14px;
    padding: 18px 30px;
}

.table tr:first-child td {
    border: 0;
}

/*animations*/
.animate-fading {
    animation: fading 2s
}

@keyframes fading {
    0% {
        opacity: 0
    }

    100% {
        opacity: 1
    }
}

.animate-opacity {
    animation: opac 0.8s
}

@keyframes opac {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

.animate-top {
    position: relative;
    animation: animatetop 0.6s
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.animate-left {
    position: relative;
    animation: animateleft 0.6s
}

@keyframes animateleft {
    from {
        left: -300px;
        opacity: 1
    }

    to {
        left: 0;
        opacity: 1
    }
}

.animate-right {
    position: relative;
    animation: animateright 0.6s
}

@keyframes animateright {
    from {
        right: -300px;
        opacity: 0
    }

    to {
        right: 0;
        opacity: 1
    }
}

.animate-bottom {
    position: relative;
    animation: animatebottom 0.6s
}

@keyframes animatebottom {
    from {
        bottom: -300px;
        opacity: 0
    }

    to {
        bottom: 0;
        opacity: 1
    }
}

.animate-zoom {
    animation: animatezoom 0.6s
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }

    to {
        transform: scale(1)
    }
}

.animate-input {
    transition: width 0.6s ease-in-out
}

.w3-animate-input:focus {
    width: 100% !important
}

/*header*/
header.main-header {
    padding: 16px 20px;
    background-color: #ffffff;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

header.header-scroll {
    box-shadow: 0 2px 4px 0 rgba(126, 142, 177, 0.19);
}

header.main-header .menu-icon {
    margin-right: 40px;
    position: relative;
    z-index: 9;
}

header.main-header .logo {
    line-height: 1;
    position: relative;
    z-index: 9;
}

header.main-header .header-center-text {
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    left: 20px;
    right: 20px;
    position: absolute;
}

.logo > span {
    display: block;
    text-align: right;
    margin-top: 5px;
    line-height: 1;
    font-size: 12px;
    margin-bottom: -10px;
    margin-right: 20px;
}

.logo.large > span {
    color: rgba(255, 255, 255, 0.52);
    font-size: 16px;
    margin: 15px;
    margin-right: 20%;
    font-weight: normal;
}

.nav-item.blue-dropdown .nav-link > span {
    color: #4b98e1;
    font-size: 16px;
    font-weight: 500;
}

.dropdown-toggle:after {
    display: inline-block;
    margin-left: 12px;
    vertical-align: .255em;
    content: "";
    border-right: 0;
    border-bottom: 0;
    height: 9px;
    width: 9px;
    border-top: 1px solid #80868a;
    border-left: 1px solid #80868a;
    transform: rotate(-135deg);
}

.align-items-center .dropdown-toggle:after {
    margin-top: -10px;
}

.nav-item.blue-dropdown .dropdown-toggle:after {
    border-top: 1px solid #4b98e1;
    border-left: 1px solid #4b98e1;
}

header.main-header .nav-link {
    padding: 5px 0;
    cursor: pointer;
    position: relative;
    z-index: 9;
}

header.main-header .header-dropdown-list li:not(:last-child) {
    padding-right: 25px;
    margin-right: 25px;
    border-right: 1px solid #c3c3c3;
}

header.main-header .header-dropdown-list li:last-child {
    padding-right: 10px;
}

header.main-header .user-profile .profile-section {
    line-height: 1;
}

    header.main-header .user-profile .profile-section .user-name {
        font-size: 14px;
        color: #80868a;
        font-weight: normal;
    }

    header.main-header .user-profile .profile-section .img-section {
        height: 38px;
        width: 38px;
        border-radius: 100%;
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        margin-right: 15px;
    }

header.main-header .header-dropdown-list .dropdown-menu {
    border: 0;
    box-shadow: 0 2px 4px 0 rgba(126, 142, 177, 0.19);
    margin-top: 20px !important;
    left: auto !important;
    right: 0;
    transform: translate3d(0px, 47px, 0px) !important;
}

header.main-header .header-dropdown-list .blue-dropdown .dropdown-menu {
    margin-top: 25px !important;
    transform: translate3d(0px, 35px, 0px) !important;
}

header.main-header .header-dropdown-list .dropdown-item {
    font-size: 14px;
    padding: 5px 20px;
    color: #80868a;
}

    header.main-header .header-dropdown-list .dropdown-item:hover {
        color: #212121;
        text-decoration: none;
        background-color: transparent;
    }

    header.main-header .header-dropdown-list .dropdown-item i {
        margin-right: 5px;
        font-size: 14px;
    }

.dropdown.show .dropdown-toggle:after {
    margin-top: 0;
    transform: rotate(45deg);
    vertical-align: 0px;
}

.dropdown-toggle:after {
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.sidebar-nav {
    max-width: 240px;
    width: 100%;
    height: calc(100vh - 80px);
    left: 0;
    position: absolute;
    top: 0px;
    z-index: 99;
    background-color: #222c3c;
    padding: 30px 0;
    overflow-x: hidden;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

    .sidebar-nav .sidebar-list li {
        display: block;
        position: relative;
    }

        .sidebar-nav .sidebar-list li a {
            width: 100%;
            color: #ffffff;
            font-size: 14px;
            line-height: 1;
            padding: 12px 20px;
            position: relative;
            margin: 10px 0;
            white-space: nowrap;
        }

            .sidebar-nav .sidebar-list li a img {
                margin-right: 20px;
            }

            .sidebar-nav .sidebar-list li a.selected, .sidebar-nav .sidebar-list li a.active {
                background-color: #434952;
            }

                .sidebar-nav .sidebar-list li a.active:after {
                    content: '';
                    position: absolute;
                    left: 0;
                    top: 50%;
                    background-color: #4b98e1;
                    height: 27px;
                    width: 4px;
                    transform: translate(0, -50%);
                    -webkit-transform: translate(0, -50%);
                    -moz-transform: translate(0, -50%);
                    transition: all 0.3s ease-in-out;
                    -webkit-transition: all 0.3s ease-in-out;
                    -moz-transition: all 0.3s ease-in-out;
                }

            .sidebar-nav .sidebar-list li a:not(.active):hover {
                background-color: rgba(67, 73, 82, 0.45);
            }

        .sidebar-nav .sidebar-list li.menu-list a {
            padding-right: 40px;
        }

        .sidebar-nav .sidebar-list li.menu-list.open > a {
            background: rgba(67, 73, 82, 0.45);
        }

        .sidebar-nav .sidebar-list li.menu-list > a:before {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translate(0,-50%);
            -webkit-transform: translate(0,-50%);
            -moz-transform: translate(0,-50%);
            height: 9px;
            width: 9px;
            border-top: 1px solid #ffffff;
            border-left: 1px solid #ffffff;
            transform: rotate(135deg);
            margin-top: -4px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
        }

    .sidebar-nav.minimize .sidebar-list li.menu-list a:after {
        right: -100px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
    }

    .sidebar-nav li a > span {
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
    }

    .sidebar-nav .sidebar-list .menu-list .sidebar-submenu {
        display: none;
        margin-top: -10px !important
    }

    .sidebar-nav .sidebar-list .menu-list.open a:before {
        transform: rotate(225deg);
        margin-top: -7px;
    }

    .sidebar-nav .sidebar-list .menu-list .sidebar-submenu li {
        margin: 0;
        padding: 0;
    }

        .sidebar-nav .sidebar-list .menu-list .sidebar-submenu li a {
            display: block;
            padding: 12px 20px;
            padding-right: 20px;
            margin: 0;
            color: #a7a7a7;
            font-size: 14px;
        }

            .sidebar-nav .sidebar-list .menu-list .sidebar-submenu li a:after {
                display: none;
            }

            .sidebar-nav .sidebar-list .menu-list .sidebar-submenu li a:hover {
                padding-left: 30px;
                color: #ffffff;
            }

    .sidebar-nav .sidebar-list .menu-list .sidebar-submenu {
        background: rgba(67, 73, 82, 0.26);
        padding: 10px 0;
    }

    .sidebar-nav > .accordion {
        margin-top: 10px;
    }

    .sidebar-nav .accordion .card {
        background-color: transparent;
        border: 0;
        margin-top: 0;
        border-radius: 0;
    }

        .sidebar-nav .accordion .card .card {
            margin-top: 0;
        }

    .sidebar-nav .accordion .card-header {
        padding: 0;
        border: 0;
        box-shadow: none;
        background-color: transparent;
        border-radius: 0;
        margin-top: 0;
        margin-bottom: 0;
    }

    .sidebar-nav .accordion .btn-link {
        text-decoration: none;
        border-radius: 0;
        width: 100%;
        color: #ffffff;
        font-size: 14px;
        line-height: 1;
        padding: 15px 20px;
        position: relative;
        border: 0;
        box-shadow: none;
        white-space: nowrap;
        text-align: left;
    }

        .sidebar-nav .accordion .btn-link:not(.no-item):before {
            content: '';
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translate(0,-50%);
            -webkit-transform: translate(0,-50%);
            -moz-transform: translate(0,-50%);
            height: 9px;
            width: 9px;
            border-top: 1px solid #ffffff;
            border-left: 1px solid #ffffff;
            transform: rotate(135deg);
            margin-top: -4px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
        }

        .sidebar-nav .accordion .btn-link:not(.collapsed):before {
            transform: rotate(225deg);
            margin-top: -7px;
        }

        .sidebar-nav .accordion .btn-link:hover, .sidebar-nav .accordion .btn-link:not(.collapsed) {
            text-decoration: none;
            background: rgba(67, 73, 82, 0.45);
        }

        .sidebar-nav .accordion .btn-link img {
            margin-right: 20px;
        }

        .sidebar-nav .accordion .btn-link.active {
            background-color: #434952;
        }

            .sidebar-nav .accordion .btn-link.active:after {
                content: '';
                position: absolute;
                left: 0;
                top: 50%;
                background-color: #4b98e1;
                height: 27px;
                width: 4px;
                transform: translate(0, -50%);
                -webkit-transform: translate(0, -50%);
                -moz-transform: translate(0, -50%);
                transition: all 0.3s ease-in-out;
                -webkit-transition: all 0.3s ease-in-out;
                -moz-transition: all 0.3s ease-in-out;
            }

    .sidebar-nav .accordion .card .card-body {
        background: rgb(33, 41, 53);
        padding: 0;
    }

    .sidebar-nav > .accordion .accordion .btn-link {
        padding-left: 45px;
    }

        .sidebar-nav > .accordion .accordion .btn-link:not(.no-item):before {
            transform: rotate(45deg);
            margin-top: -1px;
            right: auto;
            left: 20px;
        }

        .sidebar-nav > .accordion .accordion .btn-link.no-item:before {
            content: '';
            position: absolute;
            right: auto;
            left: 17px;
            top: 50%;
            transform: translate(0,-50%);
            -webkit-transform: translate(0,-50%);
            -moz-transform: translate(0,-50%);
            height: 9px;
            width: 9px;
            border-top: 1px solid #ffffff;
            border-left: 1px solid #ffffff;
            transform: rotate(135deg);
            margin-top: -4px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
        }

        .sidebar-nav > .accordion .accordion .btn-link.collapsed:not(.no-item):before {
            content: '';
            position: absolute;
            right: auto;
            left: 20px;
            top: 50%;
            transform: translate(0,-50%);
            -webkit-transform: translate(0,-50%);
            -moz-transform: translate(0,-50%);
            height: 9px;
            width: 9px;
            border-top: 1px solid #ffffff;
            border-left: 1px solid #ffffff;
            transform: rotate(225deg);
            margin-top: -8px;
            transition: all 0.3s ease-in-out;
            -webkit-transition: all 0.3s ease-in-out;
            -moz-transition: all 0.3s ease-in-out;
        }

    .sidebar-nav > .accordion .accordion .card-body {
        background: rgb(49, 57, 70);
    }

    .sidebar-nav > .accordion .accordion .btn-link:not(.collapsed) {
        background: rgb(43, 51, 64);
    }

/*main-content*/
.main-content {
    position: relative;
}

.right-bar-main {
    padding: 50px 25px 50px 265px;
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

    .right-bar-main.full {
        padding: 50px 25px 50px 85px;
        transition: all 0.3s ease-in-out;
        -webkit-transition: all 0.3s ease-in-out;
        -moz-transition: all 0.3s ease-in-out;
    }

.quick-link-list {
    padding: 5px 10px;
    margin-bottom: 15px;
}

    .quick-link-list li {
        padding: 0 10px;
        display: none;
        width: 20%;
        margin-top: 35px;
    }

        .quick-link-list li:nth-child(-n + 5) {
            display: block;
            margin-top: 0;
        }

.quick-link-section.view-more .quick-link-list li {
    display: block;
}

.quick-link-list a {
    color: #212121;
}

    .quick-link-list a img {
        margin-right: 15px;
    }

.quick-link-section .viewmore-blue-btn {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
    -moz-transform: translate(-50%, 0);
    bottom: -18px;
}

.quick-link-section .less {
    display: none;
}

.quick-link-section.view-more .more {
    display: none;
}

.quick-link-section.view-more .less {
    display: inline-block;
}

.quick-link-section.view-more .viewmore-blue-btn img {
    transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
}

.quick-link-section {
    margin-bottom: 65px;
}

.global-card-section {
    margin: 0 -8px;
    margin-bottom: 15px;
}

    .global-card-section .card-item {
        padding: 0 8px;
        flex: 0 25%;
        margin-bottom: 15px;
        cursor: pointer;
    }

    .global-card-section.global-card-section-slider .card-item {
        padding: 0;
    }

    .global-card-section .card-item .white-box {
        width: 100%;
        overflow: hidden;
    }

    .global-card-section.global-card-section-slider {
        margin: 0;
        margin-bottom: 15px;
    }

.mini-status-bar {
    font-size: 12px;
    font-weight: 500;
    background-color: #f7f7f7;
    padding: 5px 7px;
    position: relative;
    border-radius: 3px;
}

    .mini-status-bar.up:before {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: '';
        border-bottom: 5px solid;
        border-right: 5px solid transparent;
        border-top: 0;
        border-left: 5px solid transparent;
        margin-right: 5px;
    }

    .mini-status-bar.down:before {
        display: inline-block;
        margin-left: .255em;
        vertical-align: .255em;
        content: '';
        border-top: 5px solid;
        border-right: 5px solid transparent;
        border-bottom: 0;
        border-left: 5px solid transparent;
        margin-right: 5px;
    }

    .mini-status-bar.up {
        color: #48bc66;
    }

    .mini-status-bar.down {
        color: #ee3939;
    }

/*login-section*/
.login-box-main {
    min-height: 100vh;
    margin-top: -80px;
}

    .login-box-main .left-section {
        background-size: cover;
        background-repeat: no-repeat;
        background-position: center;
        width: 35%;
        padding: 50px 50px;
        position: relative;
    }

        /*    .login-box-main .right-section {
        background-color: #ffffff;
        width: 65%;
        padding: 50px 20px;
        position: relative;
    }*/

        .login-box-main .left-section .middle-text {
            font-size: 18px;
            color: #fff;
            margin: 30px 0;
        }

    .login-box-main .inner-box {
        max-width: 430px;
        padding: 30px 30px;
        width: 100%;
        border-radius: 20px;
        box-shadow: 0px 0px 10px 0px #0580e0;
        background-color: #fff;
    }

    .login-box-main .brand-sec .tagline {
        display: block;
        color: #ffffff;
        font-size: 18px;
        font-weight: 500;
        margin: 60px 0 45px 0;
    }

    .login-box-main .brand-sec .brand-img {
        justify-content: space-between;
        padding: 0 20px
    }

        .login-box-main .brand-sec .brand-img img {
            margin: 0 10px;
            max-width: 40%
        }

    .login-box-main .right-section .inner-box {
        text-align: left;
    }

.logo.large > img {
    max-width: 100%;
}
