.closebtn {
    position: absolute;
    top: 20px;
    right: 20px;
}

.closebtn svg {
    cursor: pointer;
    width: 30px;
    height: 30px;
    color: #ffffff;
    transition: color .3s ease;
}

.closebtn svg:hover {
    color: #FC7903;
    transition: color .3s ease;
}

.mobile-menu-sidebar {
    position: fixed;
    top: -800px;
    left: 0;
    right: 0;
    overflow: hidden;
    height: 580px;
    z-index: 9999;
    transition: top .3s ease;
    background-color: #1F3D87;
    display: flex;
    align-items: flex-end;
    padding-bottom: 20px;
}

.menu-open .mobile-menu-sidebar {
    z-index: 999;
}

.mobile-menu-sidebar .wrap {
    width: 100%;
}

.mobile-menu-sidebar.top.opened {
    top: 0;
    transition: top .3s ease;
}

.admin-bar .mobile-menu-sidebar.top.opened {
    top: 32px;
}

.mobile-menu-sidebar .vc_col-md-3 aside:not(:last-child) {
    margin-bottom: 30px;
}

.mobile-menu-sidebar h3.widget-title {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px 0;
    line-height: 1;
    padding: 0;
}

.mobile-menu-sidebar .widget_nav_menu ul {
    color: #fff;
    padding-left: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    margin-bottom: 0;
}

.mobile-menu-sidebar p,
.mobile-menu-sidebar a {
    color: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 20px;
    transition: all .3s ease;
}

.mobile-menu-sidebar li.current-menu-item a,
.mobile-menu-sidebar a:hover {
    color: #FC7903;
    transition: all .3s ease;
}

@media screen and (max-width: 1600px) {
    .mobile-menu-sidebar h3.widget-title {
        font-size: 18px;
        margin: 0 0 18px 0;
    }

    .mobile-menu-sidebar .widget_nav_menu ul {
        padding-left: 18px;
    }
}

@media screen and (max-width: 1400px) {
    .mobile-menu-sidebar h3.widget-title {
        font-size: 16px;
        margin: 0 0 16px 0;
    }

    .mobile-menu-sidebar .widget_nav_menu ul {
        padding-left: 16px;
        font-size: 16px;
    }

    .mobile-menu-sidebar p,
    .mobile-menu-sidebar a {
        font-size: 16px;
    }
}

@media screen and (max-width: 1200px) {
    .mobile-menu-sidebar {
        height: unset;
        left: unset;
        right: -350px;
        top: 0;
        bottom: 0;
        width: 350px;
        transition: right .3s ease;
        padding: 20px;
        display: block;
        overflow: auto;
    }

    .mobile-menu-sidebar.top.opened {
        right: 0;
        top: 99px;
        transition: right .3s ease;
        z-index: 99999;
    }

    .closebtn {
        display: none;
    }

    .mobile-menu-sidebar .vc_col-md-3 {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media screen and (max-width: 500px) {
    .mobile-menu-sidebar.top.opened {
        top: 92px !important;
    }
}