
.mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 9999;
  overflow-y: auto;
  left: -260px;
  width: 260px;
  padding-top: 18px;
  background: rgba(40, 38, 70, 0.8);
  transition: 0.4s;
}

.mobile-nav * {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mobile-nav a {
  display: block;
  position: relative;
  color: #fff;
  padding: 10px 20px;
  font-weight: 500;
      text-transform: uppercase;
}

.mobile-nav a:hover,
.mobile-nav .active > a,
.mobile-nav li:hover > a {
  color: #8dc2fa;
  text-decoration: none;
}
.mobile-nav .menu-item-has-children:hover ul{display:block}
.mobile-nav .menu-item-has-children > a:after {
  content: "";
    position: absolute;
    right: 15px;
    border-color: #ffffff transparent transparent transparent;
    width: 0;
    height: 0;
    border-width: 5px;
    border-style: solid dashed dashed dashed;
}

.mobile-nav .active.menu-item-has-children > a:after {
  content: "\f077";
}

.mobile-nav .menu-item-has-children > a {
  padding-right: 35px;
}

.mobile-nav .menu-item-has-children ul {
  display: none;
  overflow: hidden;
}

.mobile-nav .menu-item-has-children li {
  padding-left: 20px;
}
.mobile-nav #main-menu-state:not(:checked) ~ #main-menu{display:block}
.mobile-nav-toggle {
  /* position: fixed; */
  right: 0;
  top: 0;
  z-index: 9998;
  border: 0;
  background: none;
  font-size: 24px;
  transition: all 0.4s;
  outline: none !important;
  line-height: 1;
  cursor: pointer;
  text-align: right;
  float: right;
}

.mobile-nav-toggle i {
   
  color: #fff;
}

.mobile-nav-overly {
  width: 100%;
  height: 100%;
  z-index: 9997;
  top: 0;
  left: 0;
  position: fixed;
  background: rgba(40, 38, 70, 0.8);
  overflow: hidden;
  display: none;
}

.mobile-nav-active {
  overflow: hidden;
}

.mobile-nav-active .mobile-nav {
  left: 0;
}

.mobile-nav-active .mobile-nav-toggle i {
  color: #fff;
}