/*
========================================================
CONTENEDOR DEL SHORTCODE
========================================================
*/

.pasaporte-horarios-contenedor {
    width: 100% !important;
    max-width: 100% !important;

    display: block !important;

    margin: 0 !important;
    padding: 0 !important;

    text-align: left !important;
}


/*
========================================================
TARJETA
========================================================
*/

.pasaporte-horarios-contenedor .pasaporte-horarios {
    width: 100%;
    max-width: 620px;

    margin: 30px 0 !important;
    padding: 28px;

    box-sizing: border-box;

    background: #ffffff;

    border: 1px solid #e8e8e8;

    border-radius: 16px;

    box-shadow: 0 6px 22px rgba(0, 0, 0, 0.07);

    text-align: left !important;
}


/*
========================================================
ENCABEZADO
========================================================
*/

.pasaporte-horarios-header {
    display: flex;

    align-items: center;

    padding-bottom: 21px;

    border-bottom: 1px solid #eeeeee;

    text-align: left;
}


/*
========================================================
ICONO PRINCIPAL
========================================================
*/

.pasaporte-horarios-icono {

    width: 46px;
    height: 46px;

    flex-shrink: 0;

    display: flex;

    align-items: center;
    justify-content: center;

    margin-right: 13px;

    border-radius: 12px;

    background: #fff1e5;

    color: #F58220;
}


.pasaporte-horarios-icono svg {

    width: 24px;
    height: 24px;

    fill: none;

    stroke: currentColor;

    stroke-width: 1.8;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/*
========================================================
TÍTULO
========================================================
*/

.pasaporte-horarios-titulo {

    font-size: 21px;

    line-height: 1.2;

    font-weight: 700;

    color: #333333;
}


/*
========================================================
SUBTÍTULO
========================================================
*/

.pasaporte-horarios-subtitulo {

    margin-top: 4px;

    font-size: 13px;

    line-height: 1.4;

    color: #999999;
}


/*
========================================================
LISTA
========================================================
*/

.pasaporte-horarios-lista {

    padding-top: 17px;

    text-align: left;
}


/*
========================================================
FILA
========================================================
*/

.pasaporte-horario {

    display: flex;

    align-items: center;

    min-height: 58px;

    padding: 8px 10px;

    box-sizing: border-box;

    border-bottom: 1px solid #eeeeee;

    text-align: left;

    transition: background 0.2s ease;
}


.pasaporte-horario:last-child {

    border-bottom: none;
}


.pasaporte-horario:hover {

    background: #fffaf6;
}


/*
========================================================
DÍAS
========================================================
*/

.pasaporte-horario-dia {

    width: 42%;

    padding-right: 15px;

    box-sizing: border-box;

    font-size: 14px;

    line-height: 1.35;

    font-weight: 600;

    color: #444444;

    text-align: left;
}


/*
========================================================
HORARIO
========================================================
*/

.pasaporte-horario-hora {

    width: 58%;

    display: flex;

    align-items: center;

    font-size: 14px;

    line-height: 1.4;

    color: #666666;

    text-align: left;
}


.pasaporte-horario-hora svg {

    width: 17px;
    height: 17px;

    flex-shrink: 0;

    margin-right: 8px;

    fill: none;

    stroke: #F58220;

    stroke-width: 1.7;

    stroke-linecap: round;
    stroke-linejoin: round;
}


/*
========================================================
MÓVIL
========================================================
*/

@media (max-width: 600px) {

    .pasaporte-horarios-contenedor {

        width: 100% !important;

        text-align: left !important;

    }


    .pasaporte-horarios-contenedor .pasaporte-horarios {

        width: 100%;

        max-width: 620px;

        margin: 24px 0 !important;

        padding: 22px 16px;

        border-radius: 14px;

    }


    .pasaporte-horarios-header {

        padding-bottom: 18px;

    }


    .pasaporte-horarios-icono {

        width: 42px;
        height: 42px;

        margin-right: 11px;

        border-radius: 10px;

    }


    .pasaporte-horarios-icono svg {

        width: 22px;
        height: 22px;

    }


    .pasaporte-horarios-titulo {

        font-size: 20px;

    }


    .pasaporte-horarios-subtitulo {

        font-size: 12px;

    }


    .pasaporte-horarios-lista {

        padding-top: 12px;

    }


    .pasaporte-horario {

        display: block;

        padding: 12px 5px;

    }


    .pasaporte-horario-dia {

        width: 100%;

        padding-right: 0;

        margin-bottom: 5px;

        font-size: 14px;

    }


    .pasaporte-horario-hora {

        width: 100%;

        font-size: 13px;

    }

}