.stop-scrolling {
    height: auto;
    overflow: hidden;
    transform: translate3d(0,0,0);
    position: fixed;
}
.darken-box-enable {
    position: absolute;
    background: #0000009c;
    z-index: 90;
    width: 100%;
    height: 100vh;
    top: 0;
    left: 0;
    transition: all 0.1s;
}
.mobile_menu {
    display: none;
    position: absolute;
}
.mobile_nav{
  padding:10px 0;
  color:rgb(255, 254, 254);
  align-items: center;
  position: relative;
}
.mobile_menu-logo {
    text-align: center;
    height: 50px;
}
.mobile_menu-logo img {
    max-height: 100%;
}

#mobile_menu-block ul {
  list-style: none;
  display: block;
  width: 100%;
  padding-left: 0;
  margin-top: 25vh;
}
#mobile_menu-block ul li {
  list-style: none;
  display: block;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}
#mobile_menu-block ul li:first-child {
    border-top: 1px solid #e6e6e6;
}
#mobile_menu-block ul li a, #mobile_menu-block ul li a:visited, #mobile_menu-block ul li a:hover {
  display: block;
  width: 100%;
  color: #000;
  text-decoration: none;
  font-size: 1.2em;
  padding: 15px 30px;

}
.mobile_menu-link__icon {
    margin-right: 10px;
}
.slide{
  transform: translateX(0) !important;
}
/* Hamburger */
.menu-bars{
  display:none;
  flex-direction: column;
  height:20px;
  justify-content: space-between;
  position:relative;
}
.menu-bars input{
  position: absolute;
  width:40px;
  height:28px;
  left:-5px;
  top:-3px;
  opacity: 0;
  cursor:pointer;
  z-index: 1000000;
}
.menu-bars span{
  display:block;
  width:28px;
  height:3px;
  background-color:#8e8e8e;
  border-radius: 3px;
  transition: all 0.3s;
}
.menu-bars span:nth-child(2){
  transform-origin: 0 0 ;
}
.menu-bars span:nth-child(4){
  transform-origin: 0 100% ;
}
.menu-bars input:checked ~ span:nth-child(2){
  background-color: #8e8e8e;
  transform: rotate(45deg) translate(-1px, -1px);
}
.menu-bars input:checked ~ span:nth-child(4){
  background-color: #8e8e8e;
  transform: rotate(-45deg) translate(-1px,0);
}
.menu-bars input:checked ~ span:nth-child(3){
  opacity: 0;
  transform: scale(0);
}
/* Mobile Menu */
@media only screen and (max-width: 768px){
  .mobile_nav ul{
    width:50%;
  }
  .mobile_menu {
      display: block;
  }
}
@media only screen and (max-width: 576px){
  .menu-bars{
    display:flex;
    position: absolute;
    top: 26px;
    right: 30px;
    z-index: 1000;
  }
  #mobile_menu-block {
    position:absolute;
    right:0;
    top:0;
    width:80%;
    height:100vh;
    background-color: #fff;
    z-index: 100;
    transform: translateX(100%);
    transition: all 0.3s;
  }
}
.mobile_menu-bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    margin-bottom: 15vh;
    padding: 0 10px;
}
.mobile_menu-bottom-regbuttons  {
    width: 100%;
    margin-bottom: 10px;
}
.mobile_menu-bottom-regbuttons a {
    display: block;
    padding: 8px 10px;
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    border: 2px solid #000;
    border-radius: 10px;
    text-align: center;
}
.mobile_menu-bottom-regbuttons--red {
    background: #F28585;
    border: 2px solid #F28585;
    text-align: center;
}