.schedule-container{
    display: flex;
    flex-direction: column;
}
.schedule-wrapper{
    display: flex;
    padding: 0.5rem;
    border-radius: 15px;
    background-color: var(--wp--preset--color--blanc);
    flex-direction: column;
    gap: 1rem;
}
.schedule, .schedule-timing{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.schedule h3, .schedule-timing h3{
    color: var(--wp--preset--color--gris);
}
.schedule-horloge{
    background: url(../../../assets/img/svg/horloge.svg);
    width: 48px;
    height: 48px;
}
.schedule-chrono{
    background: url(../../../assets/img/svg/chrono.svg);
    width: 50px;
    height: 50px;
}
.schedule-item {
    display: flex;
    gap: 0.5rem;
}
.schedule-item p{
    margin: 0.5rem 0;
    font-size: var(--wp--preset--font-size--ms-text);
}
.schedule-item p:first-child{
    font-weight: 500;
}

.schedule-horloge-wysi-container{
    padding: 0 1em;
}
@media (min-width: 821px) {
    .schedule-container{
        display: flex;
        flex-direction: column;
        margin: 0;
    }
    .schedule-wrapper{
        flex-direction: row;
        justify-content: center;
        gap: 0;
        padding: 3rem 0;
    }
    .schedule-timing, .schedule{
        width: 50%;
    }
    .schedule{
        border-right: solid 1px var(--wp--preset--color--sable);
    }
    .schedule-item h3{
        color: var(--wp--preset--color--gris);
        text-align: center;
        font-weight: 600;
        line-height: 21.6px;
        font-size: var(--wp--preset--font-size--l-text);
    }
}