/* Menu Icon */

.menu-icon
{
    width: 30px;
    height: 25px; 
    cursor: pointer;
}

.menu-icon > * 
{
    width: auto;
    height: 5px;
    margin-bottom: 5px;
    background-color: white;
    border-radius: 20px;
    transition: all 0.1s;
}
.menu-icon:hover > * {
    opacity: 0.8;
}

.active > * {background-color: white !important;}

.active #bar1
{
    -webkit-transform: translate(0px, 10px) rotate(-45deg);
        -moz-transform: translate(0px, 10px) rotate(-45deg);
            -o-transform: translate(0px, 10px) rotate(-45deg);
                transform: translate(0px, 10px) rotate(-45deg);
}

.active #bar2 {visibility: hidden;}

.active #bar3
{
    -webkit-transform: translate(0px, -10px) rotate(45deg);
        -moz-transform: translate(0px, -10px) rotate(45deg);
            -o-transform: translate(0px, -10px) rotate(45deg);
                transform: translate(0px, -10px) rotate(45deg);
}


/* Menu */

.m-i-hide
{
    display: none !important;
    height: 0 !important;
    
}

.m-drop::after 
{

    content: '\25bc';
    padding-left: 0.5em;
}

.m-drop
{
    cursor: pointer;
    transition: 0.2s ease-in-out;
    -webkit-user-select: none;  
        -moz-user-select: none;   
            -ms-user-select: none;      
                 user-select: none;
}
.m-drop span
{
    font-weight: bolder;
}
.m-drop:hover 
{
    opacity: 0.5;
}

.menu 
{
    float: right;
    clear: both;
    right: 0;
    padding-right: 80px;    
    padding-top: 65px;
    width: 0;
    position: fixed;
    z-index: 2;
}

#showMenu 
{
    transition: .2s ease-in-out;
    padding-left: 20px;
    height: 100vh;
}

.menu-links
{
    width: 315px;
    text-align: center;
    transition: 0.2s;
    font-size: 14px;
    margin-top: -50px;
}

.menu-links h2 {color: white;font-size: 16px;}

.menu-links .menu-section a {
    display: block;
    color: #c7c7c7;
    padding: 8px;
    transition:  0.2s;
}

.menu-links .menu-section a:hover
{
    color: white;
}

.menu-links .menu-section 
{
    margin-top: 20px;
    border-bottom: 1px solid rgb(117, 117, 117);
    padding-bottom: 15px;
}