

.overlay_bg{
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: rgba(0, 0, 0, 0.69);
    opacity: 0;
    visibility: hidden;
    transition: 0.25s;
    -moz-transition: 0.25s;
    -webkit-transition: 0.25s;
    -o-transition: 0.25s;
    -ms-transition: 0.25s;
}

.overlay_bg_shw{
    opacity: 1;
    visibility: visible;
}
.top_left_menu_shw{
    left: 0px !important;
    
}
.top_left_menu_container{
    position: fixed;
    left: -320px;
    height:100%;
    bottom: 0px;
    top: 0px;
    /* transition: 0.35s;
    -moz-transition: 0.35s;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    -ms-transition: 0.35s;*/
    z-index: 99999;
}
.top_left_menu_hid{
    left: -320px !important;
    

     
}
.top_left_menu_container_inside{
    width: 300px;
    height: 100%;
    position: fixed;
    bottom: 0px;
    top: 0px;
    background-color: #051c36;
    background: rgb(8,36,61);
    background: linear-gradient(180deg, #092849 0%,  #000000 100%);
    display: block;
    z-index: 9999;
    box-shadow: 0px 0px 10px 2px rgba(0, 0, 0, 0.36);
    transition: 0.35s;
    -moz-transition: 0.35s;
    -webkit-transition: 0.35s;
    -o-transition: 0.35s;
    -ms-transition: 0.35s;
}
.drag_area{
    width: 80px;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 9;
}
.user_div_block{
    /* background-color: #f7bd11; */
    /* border-radius: 7px; */
    /* background: rgb(210,186,21); */
    /* background: linear-gradient(90deg, rgb(255 191 0) 0%, rgb(255 223 126) 100%); */
    height: 150px;
    display: flex;
    transition-timing-function: cubic-bezier(.36,1.83,.41,.75);
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}


.user_div_block .user_img{
    margin: auto;
    border-radius: 50%;
    
}
.img_border{
    border: solid 1px rgba(255, 255, 255, 0.85);
    border-radius: 50%;
    width: 75px;
    height: 75px;
    margin: auto;

    transition-timing-function: cubic-bezier(.36,1.83,.41,.75);
    transition: 0.5s;
    -moz-transition: 0.5s;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    -ms-transition: 0.5s;
}
.user_div_block .user_img img{
    
    border-radius: 50%;
    
    border: solid 2px rgba(255, 255, 255, 0.15);
}
.usertitle{
    margin-top: 8px;
    font-size: 15px;
    color: #fff;
    text-align: center;
}
.usertitle a{
    color: var(--yellow);
    font-weight: 500;
}



.menu_container{

position: absolute;

width: 100%;

/*height: 100%;*/

bottom: 0;

top: 150px;

padding: 0 15px;

overflow-y: scroll;

overflow-x: hidden;

transition: 0.3s;

-moz-transition: 0.3s;

-webkit-transition: 0.3s;

-o-transition: 0.3s;

-ms-transition: 0.3s;
}
.menu_container::-webkit-scrollbar {
  width: 5px;
  height: 8px;
  background-color: #0c2d50; /* or add it to the track */
}

/* Add a thumb */
.menu_container::-webkit-scrollbar-thumb {
  background: #07223e;
}


.icon_block_mob{

min-width: 35px;

height: 35px;

display: inline-block;

border-radius: 50%;

background-color: #062242;

margin-right: 15px;

display: flex;

justify-content: center;

align-items: center;

color: #e7ae02;
}


.menu_head_block  .new{
         width: 45px;
    float: left;
    font-size: 12px;
         text-align: center;
    background-color: #ff0000;
    color: #fff;
    position: relative;
    right: 20px;
    top: 8px;
    padding: 0px 10px;
    border-radius: 15px;
    font-weight: 600;
    z-index: 111;
    height: 18px;
}




.menu_head_block  .new:before {
    content: '';
      width: 45px;
  height: 18px;
  top: 0%;
  left: 0%;
  background-color: red;
  border-radius: 15px;
  position: absolute;
   z-index: -1;
  -webkit-animation: ani_notification_wave 1.5s linear infinite;
  animation: ani_notification_wave 1.5s linear infinite;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.menu_head_block  .new:after  {
   content: '';
      width: 45px;
  height: 18px;
  top: 0%;
  left: 0%;
  background-color: red;
  border-radius: 15px;
  position: absolute;
  z-index: -1;
  -webkit-animation: ani_notification_wave 1.5s linear infinite;
  animation: ani_notification_wave 1.5s linear infinite;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

@-webkit-keyframes ani_notification_wave {
  0% {
    transform: scale(0.5, 0.5);
    opacity: 1;
  }
  25% {
    transform: scale(1, 1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.2, 1.2);
    opacity: 0.5;
  }
  75% {
    transform: scale(1.4, 1.4);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}
@keyframes ani_notification_wave {
  0% {
    transform: scale(0.5, 0.5);
    opacity: 1;
  }
  25% {
    transform: scale(1, 1);
    opacity: 0.75;
  }
  50% {
    transform: scale(1.2, 1.2);
    opacity: 0.5;
  }
  75% {
    transform: scale(1.4, 1.4);
    opacity: 0.25;
  }
  100% {
    transform: scale(1.6, 1.6);
    opacity: 0;
  }
}


.menu_head_block{
    display: flex;
    padding: 5px 5px;
    background-color: #1c1d1e;
    background: rgb(8,36,61);
    background: linear-gradient(271deg, rgb(7 31 57 / 29%) 0%, rgb(1 11 23 / 24%) 100%);
    color: #bababa;
    border-radius: 80px;
    margin-bottom: 5px;
    cursor: pointer;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
    -ms-transition: 0.3s;
}
.menu_head_block.active {
    background: rgb(210,186,21);
    background: linear-gradient(90deg, rgb(255 191 0) 0%, rgb(255 223 126) 100%);
}
.menu_head_block.active .head_title{
      color: #000;
    text-shadow: 1px 1px 1px rgb(0 0 0 / 15%);
}

.head_title{
    margin: auto;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
    width: 100%;
    color: #c4c4c4;
    font-weight: 500;
}
.menu_icon_expand{
    margin: auto 0;
    max-width: 20px;
    z-index: 9;
    min-width: 25px;
    color: rgb(0 0 0 / 95%);
}

.sub_menu_mob_nav{
        display: none;
        /* min-width: 300px; */
        list-style: none;
        /* float: left; */
        margin-left: 0px;
        /* width: 100%; */
}
.sub_menu_mob_nav li{
    /* padding: 10px 25px; */
    color: #fff;
    font-size: 13px;
    width: 100%;
    float: left;
} 
.sub_menu_mob_nav li a{
    color: #fafafa;
    overflow: hidden;
    width: 100%;
    float: left;
    font-weight: 400;
    font-size: 13px;
    padding: 5px 15px;
    color: #b9b9b9;
}
.sub_menu_mob_nav li span{
    width: 40px;
    height: 40px;
    display: inline-block;
    border-radius: 50%;
    background-color: #e0e0e0;
    color: #fff;
    vertical-align: middle;
    margin: 5px 10px 5px;
    text-align: center;
} 


.nav-footer{
    width: 100%;
    float: left;
    padding: 5px 10px;
    font-size: 12px;
    color: #999;
    font-weight: 500;
}
.nav-footer .row-ft-nav{
    width: 100%;
    float: left;
    height: 30px;
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}
.nav-footer .row-ft-nav .icon{
    width: 20px;
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(8,36,61);
    background: linear-gradient(180deg, #092849 0%, #000000 100%);
    height: 20px;
    border-radius: 50%;
    margin-right: 10px;
    color: #dddcda;
    font-size: 12px;
}

.nav-footer .row-ft-nav .icon.whatsapp{
    background: #158630;
    font-weight: 600;
}

.nav-footer .row-ft-nav .title{

     width: auto;
    float: left;
    color: #cacaca;
}

.nav-footer .ft_title{
       width: 100%;
    float: left;
    margin: 15px 0;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    position: relative;
}
.nav-footer .ft_title:before{
      content: '';
      position: absolute;
      width: 100%;
      float: left;
      height: 1px;
      background-color: #122c4a;
      top: 10px;
      left: 0;
}
.nav-footer .ft_title span{
    background-color: #062242;
    z-index: 9;
    position: relative;
    font-size: 12px;
    color: #fff;
    padding: 3px 15px;
    border-radius: 15px;
    font-weight: 300;
}

/*--mob menu bar responcive--*/
/*=============MOB NAV BAR=======================*/


.hug_bar{
    width: 35px;
    float: left;
    margin-right: 15px;
    padding-right: 5px;
    display: flex;
    justify-content: center;
    position: fixed;
    z-index: 1009;
    top: 35px;
    left: 15px;
}
.hug_bar_blk{
    width: 100%;
    float: left;
    cursor: pointer;
}
.hug_bar_blk span{
    width: 100%;
    float: left;
    height: 1px;
    background-color: #fff;
    margin:3px 0;
}