a {
    text-decoration: none;
    transition: all .3s;
}

a:hover,
a:focus {
    /* color: #f35b3f; */
    border: none;
    text-decoration: none;
    outline: none;
}

.active {
    outline: none;
}


/***** Wrapper *****/

.wrapper {
    display: block;
}


/***** Sidebar *****/

.sidebar {
    width: 250px;
    height: 100vh;
    position: fixed;
    top: 0;
    left: -255px;
    z-index: 999;
    /* background: #333; */
    background: #ffffff;
    color: #fff;
    transition: all .3s;
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.5);
    text-align: left;
    outline: none;
}

.sidebar.active {
    left: 0;
    border: none;
    outline: none;
}

.dismiss {
    /* width: 35px;
    height: 35px;
    transition: all .3s;
    /* background: #444; */
    /* background-color: rgb( 0, 174, 239);
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    cursor: pointer; */
    /* position: relative; */
    /* left: 0; */
    /* right: 50px;
    top: -50px; */
}

.dismiss:hover,
.dismiss:focus {
    /* background: #555; */
    /* color: rgb( 0, 174, 239);
    background-color: #fff; */
}

.dismiss {
    width: 35px;
    height: 35px;
    transition: all .3s;
    /* background: #444; */
    /* background-color: rgb( 0, 174, 239); */
    /* color: rgb( 0, 174, 239); */
    border-radius: 4px;
    text-align: center;
    line-height: 35px;
    cursor: pointer;
    position: relative;
    /* left: 0; */
    right: 40px;
    top: -20px;
}

.dismiss:hover,
.dismiss:focus {
    /* background: #555; */
    /* color: rgb( 0, 174, 239);
    background-color: #fff; */
}

.sidebar .logo {
    padding: 40px 20px 40px 20px;
    /* border-bottom: 1px solid #444; */
    padding-bottom: 1rem;
    padding-bottom: 2rem;
    transition: all .3s;
}

.sidebar .logo a {
    display: inline-block;
    width: 120px;
    height: 50px;
    /* background: url("../images/Webp.net-resizeimage (5).png") left top no-repeat; */
    /* background: url("../images/inqlinefit-bluelogo-1.png") left top no-repeat; */
    border: 0;
    /* text-indent: -999999px; */
}

.sidebar .sidebar-logo {
    margin-left: 77px;
    margin-top: -9px;
    display: inline-block;
    width: 125px;
    height: 71px;
    /* background: url("../images/Webp.net-resizeimage (5).png") left top no-repeat; */
    /* background: url("../images/inqlinefit-bluelogo-1.png") left top no-repeat; */
    border: 0;
    /* text-indent: -999999px; */
}

.sidebar ul.menu-elements {
    padding: 10px 0;
    /* border-bottom: 1px solid #444; */
    transition: all .3s;
    /* height: 500px !important; */
}

.sidebar ul li a {
    display: block;
    padding: 10px 20px;
    border: 0;
    font-weight: 600;
    /* color: #fff; */
    color: rgb( 0, 174, 239);
}

.sidebar ul li a:hover,
.sidebar ul li a:focus,
.sidebar ul li.active>a:hover,
.sidebar ul li.active>a:focus {
    outline: none;
    /* background: #555; */
    background: rgb( 0, 174, 239) !important;
    color: #fff;
    width: 100% !important;
}

.sidebar ul li a i {
    margin-right: 5px;
    outline: none;
}

.sidebar ul li.active>a,
a[aria-expanded="true"] {
    background: #444;
    color: #fff;
    outline: none;
}

.sidebar ul ul a {
    padding-left: 30px;
    font-size: 14px;
    outline: none;
}

.sidebar ul ul li.active>a {
    background: #555;
    outline: none;
}

.sidebar a[data-toggle="collapse"] {
    position: relative;
}

.sidebar .dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
}

.sidebar .to-top {
    padding: 20px;
    text-align: center;
}

.sidebar .dark-light-buttons {
    padding: 10px 20px 30px 20px;
    text-align: center;
}


/* Scroll bar */


/* width */

::-webkit-scrollbar {
    width: 10px;
}


/* Track */


::-webkit-scrollbar-track {
    background: #fcfcfc;
}


/* Handle */


::-webkit-scrollbar-thumb {
    background: rgb(212, 211, 211);
    border-radius: 10px;
}


/* Handle on hover */


/* ::-webkit-scrollbar-thumb:hover {
    background: #555;
} */


/* Sub menu */

.menu-elements {
    height: 1000px;
    overflow-y: auto;
}

@media (min-width: 1280px) {
    .menu-elements {
        height: 500px;
    }
}

@media (min-width: 1366px) {
    .menu-elements {
        height: 500px;
    }
}

@media (min-width: 1920px) {
    .menu-elements {
        height: 700px;
    }
}

@media (min-width: 2560px) {
    .menu-elements {
        height: 800px;
    }
}


/* @media (max-width: 1024px)
{
    .menu-elements {
        height: 800px;
    }
} */

@media (max-width: 767px) {
    .menu-elements {
        height: 400px;
    }
}

.submenu-level-1 {
    padding-left: 25px !important;
    font-weight: 350;
}

.submenu-level-2 {
    padding-left: 35px !important;
    font-weight: 300;
}


/***** Dark overlay *****/

.overlay {
    display: none;
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: rgba(51, 51, 51, 0.7);
    z-index: 998;
    opacity: 0;
    transition: all .5s ease-in-out;
}

.overlay.active {
    display: block;
    opacity: 1;
}


/***** Content *****/

.content {
    width: 100%;
    transition: all 0.3s;
}

.open-menu {
    position: relative;
    margin: auto;
    padding: 5px;
    z-index: 997;
    /* z-index: 1000000; */
}

.open-menu.btn-customized,
.open-menu.btn-customized:hover,
.open-menu.btn-customized:active,
.open-menu.btn-customized:focus,
.open-menu.btn-customized:active:focus,
.open-menu.btn-customized.active:focus,
.open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active,
.open-menu.btn-customized.btn.btn-primary:not(:disabled):not(.disabled):active:focus {
    box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.2);
    outline: none;
}


/* .sidebar-logo {
    width: 100% !important;
    margin-left: 10% !important;
} */