
/* Mobilki styles */
#toggle {
    display: block;
    width: 28px;
    height: 30px;
    float: right;
    margin-right: 52px;
    margin-top: -47px;
}

#toggle span:after,
#toggle span:before {
content: "";
position: absolute;
left: 0;
top: -9px;
}
#toggle span:after{
top: 9px;
}
#toggle span {
position: relative;
display: block;
}

#toggle span,
#toggle span:after,
#toggle span:before {
width: 100%;
height: 5px;
    background-color: #ff464e;

transition: all 0.3s;
backface-visibility: hidden;
border-radius: 2px;
}

/* on activation */
#toggle.on span {
background-color: transparent;
}
#toggle.on span:before {
transform: rotate(45deg) translate(5px, 5px);
}
#toggle.on span:after {
transform: rotate(-45deg) translate(7px, -8px);
}
#toggle.on + #menu {
opacity: 1;
visibility: visible;
}

/* menu appearance*/
#menu {
    z-index: 999919919991919191;
    position: fixed;
    color: #fff;
    height: 100vh;
    float: right;
    right: 0;
    width: 30%;
    margin-top: -4px;
    font-family: "Segoe UI", Candara, "Bitstream Vera Sans", "DejaVu Sans", "Bitstream Vera Sans", "Trebuchet MS", Verdana, "Verdana Ref", sans-serif;
    text-align: center;
    border-radius: 0px;
    background: rgba(255, 255, 255, 0.87);
    box-shadow: 0 1px 8px rgba(0,0,0,0.05);
    opacity: 0;
    visibility: hidden;
    transition: opacity .4s;
}
#menu:after {
position: absolute;
top: -15px;
left: 95px;
content: "";
display: block;

border-bottom: 20px solid white;
}