/*
 * Creado: 27-08-2022
 * Ultima Modificación: 27-08-2022
 * Usuario: Frank Blanco
 * Email: blancoafrank@gmail.com 
 */

*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

#chk-contact{
    display:none;
}
.btn-contact{
    position: fixed;
    bottom:60px;
    right: 1rem;
    z-index: 99;
}

.contact-all a,.contact-plus{
    display:block !important;
    text-decoration: none;
    background: #cc2b2b;
    color:#fff;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 25% 0% 25% 0%;
    box-shadow: 0px 1px 10px rgba(0,0,0,0.4);
    transition: all 500ms ease;
    font-size: 1.6em;
}

.contact-all a:hover{
    background: #fff;
    color: #cc2b2b;
}

.contact-all a{
    margin-bottom: -15px;
    opacity: 0;
    visibility: hidden;
}

#chk-contact:checked~ .contact-all a{
    margin-bottom: 10px;
    opacity: 1;
    visibility: visible;
}

.contact-plus{
    cursor: pointer;
    background: #f44141;
    font-size: 27px;
}


#chk-contact:checked ~ .chk-contact{
    transform: rotate(137deg);
    font-size: 30px; 
}
