/* --------------------------------------
    This stylesheet is devoted to: 
    
    footer.php (temporary review menu)
-------------------------------------- */

/* -------------- temporary review menu --------------- */

#review-menu {
    display: block;
    position: fixed;
    left: -200px;
    top: 100px; 
    width: 250px;
    z-index: 10000000000000;
    background-color: #292929;
    color: white;
    padding: 10px 15px;
    border: 3px solid #292929;
    border-right: none;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease-in-out;
    height: 50px;
    overflow: hidden;
    opacity: 0.2;
}
#review-menu:hover {
    opacity: 1;
    border: 3px solid #292929;
    border-right: none;
    color: #eee;
    left: 0;
    height: auto;
    top: 100px; 
}
#review-menu li {
    display: block;
}
#review-menu a {
    opacity: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 100%;
    color: #292929;
    text-decoration: none;
    line-heighT: 1.5;
    padding: 5px 10px;
    margin: 5px 0;
    background: white;
    border: 1px solid #eee;
    color: #eee;

    border-radius: 3px;
    font-size: 120%;
    font-weighT: bold;
    transition: all 0.1s ease-in-out;
}
#review-menu:hover a {
    opacity: 1;
    border: 1px solid #292929;
    color:#292929;
}
#review-menu:hover a:hover {
    background: #e71c31;
    color:white;
    
}