.mobile-menu-toggle .hamburger {
    position: relative;
    width: 30px;
    height: 20px;
    cursor: pointer;
}
.mobile-menu-toggle .hamburger:hover .hamburger__line.middle {
    width: 100%;
}
.mobile-menu-toggle .hamburger:hover .hamburger__line.bottom {
    width: 100%;
}
.mobile-menu-toggle .hamburger__line {
    background-color: #ff7300;
    height: 2px;
    border-radius: 30px;
    width: 100%;
    display: block;
}
.mobile-menu-toggle .hamburger__line.middle {
    margin: 7px 0 7px auto;
    width: 75%;
    transition: 0.3s all;
}
.mobile-menu-toggle .hamburger__line.bottom {
    margin-left: auto;
    width: 45%;
    transition: 0.6s all;
}
.mobile-menu__bg {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: none;
    z-index: 99;
}
.mobile-menu.is-open {
    transform: translate3d(0, 0, 0);
}
.mobile-menu.is-open .mobile-menu__bg {
    display: block;
}
.mobile-menu {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 320px;
    height: 100%;
    transform: translate3d(100%, 0, 0);
    transition: all 0.5s ease;
    z-index: 9999;
}
.mobile-menu__top {
    background: #fff;
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.mobile-header-logo {
    width: 80%;
}
.menu-close {
    position: relative;
    width: 22px;
    height: 30px;
    cursor: pointer;
}
.menu-close::before {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: #000;
    transform: rotate(45deg);
}
.menu-close::after {
    content: "";
    display: block;
    position: absolute;
    top: 14px;
    right: 0;
    width: 20px;
    height: 2px;
    background-color: #000;
    transform: rotate(-45deg);
}
.mobile-menu__panel {
    padding: 0 0 100px;
    position: relative;
    width: 100%;
    max-width: 320px;
    height: 100%;
    overflow: auto;
    margin-left: auto;
    background-color: #fff;
}
.mobile-menu__nav {
    padding: 0;
}
.mobile-menu__nav ul {
    padding: 0;
}
.mobile-menu__nav li {
    list-style: none;
    position: relative;
    margin-bottom: 0;
}
.mobile-menu__nav li .arrow.is-open:after {
    transform: rotate(0deg);
}
.mobile-menu__nav li a {
    color: #000;
    padding: 10px 15px;
    display: block;
    line-height: normal;
    text-align: left;
}
.mobile-menu__nav li a:hover,
.mobile-menu__nav li a:active,
.mobile-menu__nav li a:focus {
    color: #fff;
    background-color: #ff7300;
}
.mobile-menu__nav li a:hover + .arrow::before,
.mobile-menu__nav li a:hover + .arrow::after,
.mobile-menu__nav li a:active + .arrow::before,
.mobile-menu__nav li a:active + .arrow::after,
.mobile-menu__nav li a:focus + .arrow::before,
.mobile-menu__nav li a:focus + .arrow::after {
    background-color: #fff;
}
.mobile-menu__nav .arrow {
    position: absolute;
    right: 0;
    top: 0;
    width: 40px;
    height: 40px;
    cursor: pointer;
}
.mobile-menu__nav .arrow:before {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background-color: #000;
    margin: -1px 0 0 -10px;
}
.mobile-menu__nav .arrow:after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 18px;
    height: 2px;
    background-color: #000;
    margin: -1px 0 0 -10px;
    transform: rotate(90deg);
}
.mobile-menu__nav > li {
    margin-bottom: 0;
    padding: 0;
    border-bottom: 1px solid #ff7300;
}
.mobile-menu__nav > li:first-child {
    border-top: 1px solid #ff7300;
}
.mobile-menu__nav li.menu-item-has-children a {
    padding-right: 45px;
}
.mobile-menu__nav .dropdown-menu {
    padding: 0 0 0 10px;
    position: static;
    background: transparent;
    border: none;
}
.mobile-menu__nav .sub-menu li a {
    color: #000;
    padding: 10px 15px;
    display: block;
}
.mobile-menu__nav li.current-menu-ancestor > a {
    color: #fff !important;
    background-color: #ff7300;
}
.mobile-menu__nav li.current-menu-ancestor > .arrow::before,
.mobile-menu__nav li.current-menu-ancestor > .arrow::after {
    background-color: #fff !important;
}
.mobile-menu__nav li.current-menu-item > a {
    color: #fff;
    background-color: #ff7300;
}
.mobile-menu__nav li.current-menu-item .arrow::before,
.mobile-menu__nav li.current-menu-item .arrow::after {
    background-color: #fff;
}
.mobile-menu__nav li.active > a {
    color: #fff !important;
    background-color: #ff7300;
}
.mobile-menu__nav li.active > .arrow::before,
.mobile-menu__nav li.active > .arrow::after {
    background-color: #fff !important;
}
.mobile-menu__nav li .dropdown-toggle::after {
    display: none !important;
}
.mobile-menu-btn {
    padding-top: 30px;
    text-align: center;
}
.mobile-menu-btn a {
    display: inline-block;
    line-height: 1;
}
