@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;600;700&family=Roboto:wght@100;300;400;500;700;900&display=swap');
:root {
    /* colors var*/
    --mainColor: #dee2e6;
    --BlueColor: #2FAAEF;
    --blackColor: #000000;
    --redColor: #d61919;
    --whiteColor: #ffffff;
    --bgBlue: #2FAAEF;
    --bgWhite: #ffffff;
    --bgBlack: #000000;
    --bgGray: #cecece;
    /*fonts var*/
    --FontAwesome:'FontAwesome';
    --Oxygen: 'Oxygen', sans-serif;
    --Poppins: 'Poppins', sans-serif;
}
body, html {
    margin: 0;
    padding: 0;
}

body {
    /*font-size: 1.2rem;*/
    font-family: var(--Poppins);
    color: var(--mainColor);
    font-weight: 400;
    line-height: 1.2;
    position: relative;
    overflow-x: hidden;
    height: 100%;
}

textarea{
    resize: none;
    height: auto !important;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover {
    color: inherit;
    text-decoration: none;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
img {
    max-width: 100%;
}
button:hover,button:focus{
    outline: none;
}
.bg_blue{
    background: var(--bgBlue);
    color: var(--whiteColor);
}
.btn_common{
    text-align: center;
    border-radius: 6px;
    padding: 10px 15px;
    border: none;
    box-shadow: none;
    font-size: 18px;
}
.btn_center{
    text-align: center;
}
/*menu slide*/
#wrapper {
    padding-left: 0;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}
/*#wrapper.toggled {
    padding-left: 220px;
}*/
#wrapper.toggled {
    padding-left: 277px;

}
#wrapper.toggled #sidebar-wrapper {
    width: 220px;
}
#sidebar-wrapper {
    background: var(--bgBlue);
    height: 100%;
    left: 220px;
    margin-left: -220px;
    position: fixed;
    overflow-x: hidden;
    overflow-y: auto;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -ms-transition: all 0.5s ease;
    transition: all 0.5s ease;
    width: 0;
    z-index: 1000;
    top: 75px;
}
#sidebar-wrapper::-webkit-scrollbar {
    display: none;
}
#page-content-wrapper {
    width: 100%;
}
.sidebar-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 0;
    width: 220px;
    padding: 10px;
}
.sidebar-nav li {
    display: inline-block;
    line-height: 20px;
    position: relative;
    width: 100%;
    margin-bottom: 10px;
}
 .sidebar-nav li a:before {
    background-color: #003d6b;
    content: '';
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transition: width 0.2s ease-in;
    -moz-transition: width 0.2s ease-in;
    -ms-transition: width 0.2s ease-in;
    -o-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
    width: 0px;
    z-index: -1;
    border-radius: 4px;
}
.sidebar-nav li a:hover:before {
    -webkit-transition: width 0.2s ease-in;
    -moz-transition: width 0.2s ease-in;
    -ms-transition: width 0.2s ease-in;
    -o-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
    width: 100%;
}
.sidebar-nav li a.active:before {
    -webkit-transition: width 0.2s ease-in;
    -moz-transition: width 0.2s ease-in;
    -ms-transition: width 0.2s ease-in;
    -o-transition: width 0.2s ease-in;
    transition: width 0.2s ease-in;
    width: 100%;
}
.sidebar-nav li a {
    color: var(--whiteColor);
    opacity: 0.7;
    display: block;
    padding: 0px 10px;
    text-decoration: none;
    font-size: 14px;
    line-height: 34px;
    font-weight: 300;
    position: relative;
}
.sidebar-nav li a .fa{
    margin-right: 5px;
}
.sidebar-nav li a:hover, 
.sidebar-nav li a:active, 
.sidebar-nav li a:focus,
.sidebar-nav li a.active{
    background-color: transparent;
    color: #ffffff;
    text-decoration: none;
    opacity: 1;
}
.hamburger {
    background: transparent;
    border: none;
    display: block;
    height: 32px;
    position: relative;
    width: 32px;
    z-index: 999;
}
.hamburger:hover {
    outline: none;
}
.hamburger:focus {
    outline: none;
}
.hamburger:active {
    outline: none;
}
.hamburger.is-closed:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    content: '';
    display: block;
    font-size: 14px;
    line-height: 32px;
    -ms-opacity: 0;
    opacity: 0;
    text-align: center;
    width: 100px;
}
.hamburger.is-closed:hover before {
    -webkit-transform: translate3d(-100px, 0, 0);
    -moz-transform: translate3d(-100px, 0, 0);
    -ms-transform: translate3d(-100px, 0, 0);
    -o-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    display: block;
    -ms-opacity: 1;
    opacity: 1;
}
.hamb-bottom, .hamb-middle, .hamb-top {
    background-color: black;
}
.hamburger.is-closed:hover .hamb-top {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    top: 0;
}
.hamburger.is-closed:hover .hamb-bottom {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    bottom: 0;
}
.hamburger.is-closed .hamb-top {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    top: 5px;
}
.hamburger.is-closed .hamb-middle {
    margin-top: -2px;
    top: 50%;
}
.hamburger.is-closed .hamb-bottom {
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    bottom: 5px;
}
.hamburger.is-closed .hamb-top, .hamburger.is-closed .hamb-middle, .hamburger.is-closed .hamb-bottom, .hamburger.is-open .hamb-top, .hamburger.is-open .hamb-middle, .hamburger.is-open .hamb-bottom {
    height: 4px;
    left: 0;
    position: absolute;
    width: 100%;
}
.hamburger.is-open .hamb-top {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    -moz-transition: -moz-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    -ms-transition: -ms-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    -o-transition: -o-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    transition: transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    margin-top: -2px;
    top: 50%;
}
.hamburger.is-open .hamb-middle {
    display: none;
}
.hamburger.is-open .hamb-bottom {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transition: -webkit-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    -moz-transition: -moz-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    -ms-transition: -ms-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    -o-transition: -o-transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    transition: transform 0.2s cubic-bezier(0.73, 1, 0.28, 0.08);
    margin-top: -2px;
    top: 50%;
}
.hamburger.is-open:before {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    content: '';
    display: block;
    font-size: 14px;
    line-height: 32px;
    -ms-opacity: 0;
    opacity: 0;
    text-align: center;
    width: 100px;
}
.hamburger.is-open:hover before {
    -webkit-transform: translate3d(-100px, 0, 0);
    -moz-transform: translate3d(-100px, 0, 0);
    -ms-transform: translate3d(-100px, 0, 0);
    -o-transform: translate3d(-100px, 0, 0);
    transform: translate3d(-100px, 0, 0);
    -webkit-transition: all 0.35s ease-in-out;
    -moz-transition: all 0.35s ease-in-out;
    -ms-transition: all 0.35s ease-in-out;
    -o-transition: all 0.35s ease-in-out;
    transition: all 0.35s ease-in-out;
    display: block;
    -ms-opacity: 1;
    opacity: 1;
}
@media(max-width: 767px){
    #wrapper.toggled #sidebar-wrapper {
        width: 60px;
    }
    #sidebar-wrapper {
        left: 60px;
        margin-left: -60px;
    }
    .sidebar-nav {
        width: 60px;
    }
    .nav_text{
        display: none;
    }
    .sidebar-nav li a{
        text-align: center;
    }
    .sidebar-nav li a .fa {
        margin-right: 0px;
    }
    #wrapper.toggled {
        padding-left: 60px;
    }
}
/*main menu*/
.main_menu{
    padding: 0px 0;
    border-bottom: 2px solid var(--bgBlack)
}
.main_menu.fixed{
    position: fixed;
    top: 0px;
    background: var(--bgWhite);
    z-index: 9999;
    left: 0;
    right: 0;
}
.animate {
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    -ms-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
}
.navbar_top {
    border-radius: 0px;
    margin-bottom: 0px;
    z-index: 100;
    padding:0;
}
.navbar-right{
    margin-left: auto;
}
.navbar-brand{
    padding: 10px 20px;
    background: var(--bgWhite);
}
.navbar-brand img{
    width: 90px;
}
.main_menu .navbar-header{
    display: flex;
    align-items: center;
}
.btn_messaging{
    background: var(--bgWhite);
    border: 1px solid var(--mainColor);
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 24px;
    font-family: var(--Roboto);
    color: var(--mainColor);
    position: relative;
}
.who_login{
    display: grid;
    grid-template-columns: 80px auto;
    grid-column-gap: 5px;
    align-items: center;
}
/*.who_img{
    width: 75px;
    height: 75px;
    overflow: hidden;
    border-radius: 50%;
}*/
.who_img img{
    object-position: center;
    object-fit: cover;
    height: 100%;
}
.navbar-right .navbar-nav{
    align-items: center;
    grid-gap:25px;
}
.bell_icon .fa{
    font-size: 35px;
    transform: rotate(45deg);
}
.bell_icon{
    position: relative;
    padding-right: 20px;
}
.bell_icon span{
    position: absolute;
    top: 0;
    right: 5px;
    color: var(--redColor);
    font-size: 12px;
}
.who_name h3{
    font-size: 16px;
    color: var(--blackColor);
}
.who_name h4{
    font-size: 14px;
    color: var(--BlueColor);
}
.msg_count{
    position: absolute;
    right: -3px;
    top: -8px;
    color: var(--whiteColor);
    font-size: 12px;
    background: var(--redColor);
    padding: 4px;
    border-radius: 50%;
    height: 22px;
    width: 22px;
}
@media(min-width: 768px){
    .cx_icon{
        display: none;
    }
}
@media(max-width: 991px){
    
    .btn_messaging {
        font-size: 20px;
    }
    .bell_icon .fa {
        font-size: 24px;
    }
    .who_img {
        width: 55px;
        height: 55px;
    }
    .navbar-right .navbar-nav {
        grid-gap: 15px;
    }
    .who_login{
        grid-template-columns: 60px auto;
    }
   
}
@media(max-width: 767px){
    .cx_text{
        display: none;
    }
    .who_name{
        display: none;
    }
    .bell_icon {
        padding-right: 16px;
    }
    .btn_messaging {
        padding: 3px;
        font-size: 20px;
        border: none;
    }
    .bell_icon .fa {
        font-size: 20px;
    }
    .who_img {
        width: 45px;
        height: 45px;
    }
    .navbar-right .navbar-nav {
        grid-gap: 10px;
    }
    .who_login{
        display: inherit;
    }
    .table_top {
        overflow: hidden;
    }
    .msg_count{
        position: absolute;
        right: -7px;
        top: -4px;
        color: var(--whiteColor);
        font-size: 10px;
        background: var(--redColor);
        padding: 3px;
        border-radius: 50%;
        height: 18px;
        width: 18px;
        line-height: 11px;
    }
}