.show_on_desktop{
		display: block;
}
.show_on_mobile{
	display: none;;
}
.my-menu-child.fa{
    display: none;
}
@media screen and (max-width: 700px) {
	.show_on_desktop{
		display: none;
	}
	.show_on_mobile{
		display: block;;
	}
	.show_on_mobile .logo{
		float: unset;
	}
    .my-menu-child.fa{
        display: inline-block;
    }
}
.mobile-menu {
    max-width: 768px;
    width: 85%;
    clear: both;
    position: fixed;
    top: 0;
    left: -100%;
    z-index: 15;
    background: #701c57;
    overflow-y: auto;
    bottom: 0;
    padding: 15px;
    transition: left 0.5s;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.mobile-menu{
	display: none;
}
.mobile-menu.open {
    left: 0;
    display: block;
    background: #992169;
}
.mobile-menu .top {
    background: #fff;
    margin: -15px -15px 15px;
    padding: 15px;
    position: relative;
    height: 50px;
}
.mobile-menu .top img {
  max-width: 80%;
}
.mobile-menu .remove {
    position: absolute;
    right: 15px;
    /*bottom: 15px;*/
    font-size: 28px;
    color: #fff;
    z-index: 100;
    top: 18px;
}
.mobile-menu .menu-main-menu-container {
  margin-bottom: 30px;
}
.mobile-menu ul{
  
}
.mobile-menu ul li{
  position: relative;
}
.mobile-menu ul li ul li a{
  padding-left: 15px;
}
li > ul, li > ol{
    margin: 0px;
}
.mobile-menu ul li a{
    color: #fff;
  /*  text-transform: uppercase;*/
    font-family: arial;
    padding: 8px 0;
    display: block;
    font-weight: bold;
}
.mobile-menu ul li a:hover{
    color: #fff200;
    background: #701c57;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}
.mobile-menu ul li.current-menu-item >a {
    color: #fff200;
    background: #701c57;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
}
/*.mobile-menu ul li.menu-item-has-children >a {
  margin-right: 25px;
}*/
.mobile-menu ul li.menu-item-has-children .fa {
    position: absolute;
    right: 0;
    top: 11px;
    z-index: 5;
    color: #fff;
    font-size: 20px;
}
.mobile-menu ul li ul.sub-menu{
  display: none;
}
.mobile-menu ul li ul.sub-menu.open {
  display: block;
}