/*icono ir arriba*/
.wp_btn {
    transition: all 0.5s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: rgba(37, 211, 102, 1);
    color: #fff;
    font-size: 2.7em;
    font-weight: bold;
    cursor: pointer;
    border-radius: 3px;
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0px 0px 1px rgba(7, 94, 84, 1);

}

.wp_btn a {
    color: var(--blanco);
}

.wp_btn:hover {
    background: rgba(7, 94, 84, 1);
    color: #fff;
    box-shadow: 0 0 3px #999;
    transform: scale(1.05);
}

.wp_btn:active {
    background: rgba(7, 94, 84, 1);
    color: #fff;
    box-shadow: 0 0 3px #999;
    transform: scale(0.9);
}
