/*******************************************************************************
 *                             [Formulario fichar]                             *
 *******************************************************************************/
:root {
    --azul: rgb(3, 94, 177);
    --verde: #02814a;
}

form {
    border: none;
}

label {
    font-size: 1.6rem;
    cursor: pointer;
}

#fichaje,
section.empleado {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
}

section.empleado {
    gap: 2rem;
    background-color: rgba(100, 100, 100, .1);
    border-radius: .4rem;
    padding: .3rem 1.5rem .3rem .3rem;
}


#flecha {
    margin-left: -1rem;
    z-index: 1;
}

select {
    padding: .2rem !important;
    background: none;
    z-index: 2;
    transition: .1s;
}

select:hover,
select:focus,
select:active,
option:hover,
option:focus {
    background: none;
    border: 2px solid #1a73e8;
    margin: -1px 0;
    cursor: pointer;
}

select,
button {
    padding: 0;
    font-size: 2rem !important;
    text-align: center;
}

option {
    padding-right: 4rem;
    font-size: 2rem !important;
    text-align: center;
}

button {
    margin-top: 4rem;
    padding: 1rem !important;
}

button:hover {
    margin-top: 4.1rem !important;
}

input[type=radio] {
    width: 2rem;
    height: 2rem;
    cursor: pointer;
}

input[type='radio']:hover:before {
    box-shadow: 0px 0px 0px 8px #1a73e8;
    border-radius: 50%;
    opacity: 1;
}

input[type=radio]:hover {
    border: 2px solid #1a73e8;
    opacity: .6;
}

input[type='radio']:before {
    content: '';
    display: block;
    width: 60%;
    height: 60%;
    margin: 20% auto;
    border-radius: 50%;
}

input[type='radio']:checked:before {
    background: rgb(255, 255, 255, .8);
    box-shadow: 0px 0px 0px 9px var(--verde);
    border-radius: 50%;
}

b.negrita {
    font-weight: bold;
}

span.horafichador {
    position: relative;
    top: -1rem;
    background-color: rgba(219, 219, 219, 0.678);
    font-size: 1rem;
    margin-right: -1.5rem;
    padding: .1rem;
    border-radius: .5rem;
    font-style: italic;
    font-weight: bold;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

/*******************************************************************************
*                                 [Responsive]                                 *
*******************************************************************************/

@media screen and (max-width: 700px) {
    #cuerpo {
        margin-top: 1rem;
    }

    .empleado {
        display: flexbox !important;
        flex-direction: row;
        justify-content: start !important;
        width: 65%;
        gap: .5rem !important;
    }

    .empleado label {
        width: 70%;
    }

    /*Mover Recaptcha a la izquierda*/
    .grecaptcha-badge {
        width: 70px !important;
        overflow: hidden !important;
        transition: all 0.3s ease !important;
        left: -2px !important;
        bottom: 20px !important;
    }

    .grecaptcha-badge:hover {
        width: 256px !important;
    }
}