/*
------------------------------
MAIN - Redes Sociales
------------------------------
*/

/*
---------------------------------------------------------------------------------------------
Compartir con
---------------------------------------------------------------------------------------------
*/

#share{
    position: fixed;
    z-index: 10;
    top: calc(60% - 180px);
    left: 0;
    list-style-position: outside;
}
#share li{
}
#share li a{
    display: block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    transition: all 100ms ease-in-out;
}
#share li a:hover{
    box-shadow: inset 0 0 0 100px rgba(0,0,0,0.1);
    width: 40px;
    padding-left: 5px;
}
#share li:first-child a{
    border-top-right-radius: 5px;
}
#share li:last-child a{
    border-bottom-right-radius: 5px;
}
#share li a .fa{
    font-size: 21px;
    line-height: 34px;
    color: #fff;
}
#share li.facebook a{
    background: #3c599f;
}
#share li.twitter a{
    background: #32ccfe;
}
#share li.google a{
    background: #cf3d2e;
}

/*
---------------------------------------------------------------------------------------------
Valoranos
---------------------------------------------------------------------------------------------
*/
#suggestions{
    position: fixed;
    z-index: 10;
    color: #fff;
    padding: 8px 8px 8px 8px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 0 0px 5px 5px;
    background-color: #3D464A;
    top: 60%;
    text-decoration: none;
    left: 2px;
    height: 23px;
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    transform: rotate(270deg);
    margin-left: -40px;
    -webkit-transition: all 100ms ease-in-out;
    transition: all 100ms ease-in-out;
}
#suggestions:hover {
    height: 25px;
    background-color: #e62017;
    margin-top: -5px;
    padding-top: 18px;
}
#suggestions i{
    margin-right: 5px;
}

@media (max-width: 630px) {
    #share, #suggestions{
        display: none;
    }
}