.mobile_menu {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 12px;
    right: 12px;
    box-shadow: 0 0 10px #000;
    border-radius: 100px;
    background: #fff;
    color: #363449;
    font-family: Ubuntu, sans-serif;

    padding: 0;

    transition: all 300ms;
    z-index: 100;
    overflow: hidden;
}
.mobile_menu.opened {
    top: 0;
    /*bottom: 0;*/
    right: 0;
    height: 100%;
    width: 350px;
    max-width: 80%;
    border-radius: 0;
    box-shadow: none;
    padding: 12px 10px;
    overflow: auto;
}
.mobile_menu .menu-toggle {
    float: right;
    padding: 14px;
    transition: margin 300ms;
}
/*.mobile_menu .content { display: none; }*/
/*.mobile_menu.opened .content { display: block; }*/

.mobile_menu .content {
    padding: 0 20px 20px;
    height: 100%;
    box-sizing: border-box;
}
.mobile_menu .cat-phrase .cat {
    float: left;
    margin-bottom: 16px;
    width: 55px
}
.mobile_menu .cat-phrase .phrase {
    position: relative;
    border: 2px solid #ffbb48;
    border-radius: 10px;
    padding: 12px 10px 12px 15px;
    font-size: 14px;
    line-height: 20px;
    margin-bottom: 20px;
    clear: both;
}
.mobile_menu .cat-phrase .phrase:before {
    content: '';
    position: absolute;
    top: -9px;
    left: 16px;
    width: 14px;
    height: 14px;
    background: #fff;
    border: 2px solid #ffbb48;
    border-right: 0;
    border-bottom: 0;
    transform: rotate(45deg);
}
#allrecords .mobile_menu .menu-items {
    padding: 0;
    margin: 0;
}
.mobile_menu .menu-items li {
    list-style: none;
    margin: 40px 0;
    text-align: right;
}
#allrecords .mobile_menu .menu-items a {
    font-weight: bold;
    font-size: 17px;
    color: #363449;
}
#allrecords .mobile_menu .menu-items a:hover,
#allrecords .mobile_menu .menu-items a:focus {
    color: #575375;
}
#allrecords .mobile_menu a.btn-start {
    padding: 8px 16px;
    border-radius: 20px;
    color: #fff;
    background: #0c9fd3;
}
#allrecords .mobile_menu a.btn-start:hover,
#allrecords .mobile_menu a.btn-start:focus {
    background: #48b8e0;
    color: #fff;
}

@media screen and (min-width: 980px) {
    .mobile_menu {
        display: none;
    }
}