@media (max-width: 414px) {
  .header-menu-toggle {
    display: block;
  }

  .header-menu-toggle {
    position: fixed;
    right: 15px;
    top: 15px;
    height: 42px;
    width: 42px;
    line-height: 42px;
    font-family: montserrat-regular,sans-serif;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: .2rem;
    color: rgba(255,255,255,.5);
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
  }

  .header-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    margin-top: -1px;
    position: absolute;
    left: 9px;
    top: 50%;
    right: auto;
    bottom: auto;
    /* background-color: #096bd8; */
    background-color: #fff;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
    font: 0/0 a;
    text-shadow: none;
    color: transparent;
  }

  .header-menu-toggle span::after, .header-menu-toggle span::before {
    content: '';
    width: 100%;
    height: 100%;
    background-color: inherit;
    position: absolute;
    left: 0;
    -webkit-transition: all .5s ease-in-out;
    transition: all .5s ease-in-out;
  }

  .header-menu-toggle span::after {
    bottom: -9px;
  }

  .header-menu-toggle span::before {
    top: -9px;
  }

  .header-menu-toggle.is-clicked span {
    background-color: rgba(255,255,255,0);
    transition: all .1s ease-in-out;
  }

  .header-menu-toggle.is-clicked span::before {
    /* background-color: #096bd8; */
    top: 0;
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }

  .header-menu-toggle.is-clicked span::after {
    bottom: 0;
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }

  .header-menu-toggle.is-clicked span::after, .header-menu-toggle.is-clicked span::before {
    /* background-color: #096bd8; */
    background-color: #fff;
  }

  body.mobile-menu-opened {
    overflow: hidden;
  }

  body.mobile-menu-opened #mobile-navbar{
    right: 0;
  }

  #mobile-navbar {
    background: var(--bs-body-color);
    position: fixed;
    -webkit-transition: all .5s var(--slide-animation);
    transition: all .5s var(--slide-animation); 
    z-index: 10000;
    /*padding-top: 72px;*/
    top: 72px;
    bottom: 0;
    width: 100%;
    right: -100%;
    overflow-y: scroll;
    height: 100vh;
    display:flex;
  }

  .user-holdr {
    position: relative;
    align-items: center;
    display: flex;
  }

  .sign-out {
    padding: 0 72px;
  }

  /* toggle menu */
  .navbar {
    z-index: 1000;
  }

  .navbar-mobile { 
    padding: 36px 15px;
    /*background: var(--bs-body-color);*/
    width: 100%;
    height: 72px;  
    top: 0;
    position: fixed;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99999;
    box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
    -webkit-box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
    -ms-box-shadow: 0 0 60px 0 rgb(0 0 0 / 7%);
  }

  .navbar-mobile img {
    position: absolute;
    top: 15px;
  }

  #mobile-navbar ul {
    width: 100%;
  }

  #mobile-navbar ul > li {
    padding: 25px 15px 0 15px;  
    position: relative;
  }

  #mobile-navbar ul > li > a {
    color: #b8b8b8;
    font-size: 16px;
    font-weight: 300;
  }

  .admin-options-holdr {
    margin-left: auto;
    padding-right: 15px;

  }

  .secrh-hldr .btn {
      display: contents;
  }

  .image-description .check-box-file {
    width: auto;
  }

  .image-description > a {
    width: 14%;
  }
}


/*#mobile-navbar {
  background: #091b29;
  position: fixed;
  -webkit-transition: all .2s ease-out;
  transition: all .2s ease-out; 
  z-index: 10000;
  float: right!important;
  padding-top: 72px;
  bottom: 0;
  width: 100%;
  right: -100%;
  overflow-y: scroll;
  height: 100%;
}*/

#mobile-navbar ul {
  width: 100%;
}

#mobile-navbar ul > li {
  padding: 25px 15px 0 25px;  
  position: relative;
}

#mobile-navbar ul > li > a {
  color: #b8b8b8;
  font-size: 16px;
  font-weight: 300;
}

#mobile-navbar li.parent-menu > a {
  color: #fff;  
  font-size: 18px;
  font-weight: 700;
}

#mobile-navbar > ul {
  margin-bottom: 25px;
}

#mobile-navbar > ul > li .sub-menu {
  border-bottom: 3px solid #096bd8;
  padding-bottom: 25px;
}

#mobile-navbar ul.sub-menu li {
  padding-left: 25px;
}

#mobile-navbar ul > li > a.active {
  color: #096bd8;   
  font-weight: 700;
}

#mobile-navbar .btn {
  padding: 20px 15px;
}

/*#mobile-navbar i {
  font-size: 18px;
}*/

#mobile-navbar .header-info {
  width: 100%;
  text-align: center;  
}

#mobile-navbar .header-info > span {
  display: block;
  margin: 0;
  padding: 3px;
}

#mobile-navbar > .container {
  border-top: 1px solid #1b2f3e;
}

#mobile-navbar li[data-toggle="collapse"].collapsed::after {
  content: "\f078";
  line-height: 30px;
  position: absolute;
  right: 29px;
  top: 25px;
  font-size: 15px;
  font-family: "Font Awesome 5 Pro";
  color: #696969;
  transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  transition-duration: 0.5s;
  color: #fff;
  cursor: pointer;
}

#mobile-navbar li[data-toggle="collapse"]::after { 
  content: "\f078";
  line-height: 30px;
  position: absolute;
  right: 29px;
  top: 25px;
  font-size: 15px;
  font-family: "Font Awesome 5 Pro";
  color: #696969;
  transform: rotate(360deg);
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  transition-duration: 0.5s;
  color: #fff;
  cursor: pointer;
}


