.mobile_menu_open_icon_wrapper
{
    display:none;
}
.mobile_menu{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: stretch;
    padding: 0;
    position: relative;
    width: inherit;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 1s ease-in-out;

}
.mobile-menu-logo-line{
    position: relative;
    width: inherit;
    display: flex;
    flex-direction: row;
    flex-grow: 0;
}
.menu_controls{
    width: 100%;
    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: flex-end;
}
.icon-show{
    display: flex!important;
}
.icon-hidden{
    display:none!important;
}
.mobile_menu_open_icon{
    position: relative;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: opacity ease-in-out .2s;
    margin: 1rem;
}

.menuburger {
    position: relative;
    flex-shrink: 0;
    width: 22px;
    height: 14px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
    align-self: center;
    z-index: 999;
}
.menuburger span{
    display: block;
    position: absolute;
    width: 100%;
    height: 2px;
    background-color: #9BA0CB;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}
.menuburger span:nth-child(1){
    top:0px;
}
.menuburger span:nth-child(2){
    top:7px;
}
.menuburger span:nth-child(3){
    top:14px;
}
.mobile-menu-panel{
    display: flex;
    flex-direction: column;
    max-width: 50%;


}
div#header .icons a.search
{
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url('/assets/search.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-left: 5rem;
    cursor: pointer;
}

.mobile_menu_panel{
padding-left: 1rem;
}
.mobile_menu_social_icon{
    width: 14rem;
}
.mobile_menu_social_icon .m_icons a
{
    display: block;
    width: 2.5rem;
    height: 2.5rem;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

.mobile_menu_social_icon .m_icons a.yt
{
    background-image: url('/assets/yt.svg');
}

.mobile_menu_social_icon .m_icons a.vk
{
    background-image: url('/assets/vk.svg');
}

.mobile_menu_social_icon .m_icons a.tg
{
    background-image: url('/assets/tg.svg');
}

.mobile_menu_social_icon a.feedback
{
    display: block;
    width: auto;
    height: 3rem;
    line-height: 3rem;
    outline: solid 1px #30366b;
    border-radius: 0.5rem;
    background: #30366b;
    color: #fff;
    margin:0 0 1rem 0;
    padding: 0 1rem;
    cursor: pointer;
    text-decoration: none;
    text-align: center;
    transition: all	ease 0.25s;
}

.mobile_menu_social_icon  a.feedback:hover
{
    background: #fff;
    color: #30366b;
}

.mobile_menu_social_icon .m_icons {
    display: flex;
    /* justify-content: flex-end; */
    align-items: center;
    flex-grow: 0;
    flex-shrink: 0;
    margin-bottom: 1rem;
}
.mobile_menu_social_icon .m_icons a:not(:first-child){
    margin-left: 1.5rem;
}
.mobile_menu_link{
    display: flex;
    flex-direction: column;
}
.mobile_menu_link a{
    color: #000;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 500;
    margin-top: 1rem;
    position: relative;
}
.mobile_menu_link a.search {
    display: block;
    width: 2rem;
    height: 2rem;
    background-image: url(/assets/search.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}
@media (max-width: 800px) {
    .mobile_menu_open_icon_wrapper {
        display: block;
    }
    .right{
        display:none;

    }
}