<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root{
    --main-color: #2ea3f2;
    --second-color: #ffffff;
    --text-color: #2ea3f2;
    --link-hover-background:  #2ea3f2;
    --progress-bar-text-color:  #2ea3f2;
    --progress-bar-line:  #2ea3f2;
    --plannning-background: #ffffff;
}

/*** buttons ***/
.resource-list {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: 20px;
    grid-auto-rows: minmax(100px, auto);
    /*margin: 0;*/
    /*display: flex;*/
    /*justify-content: space-evenly;*/
}
.resource-action {
    align-items: center;
    justify-content: center;
    display: flex;
}
.resource-button{
    position: relative;
    text-decoration: none;
    display: inline-block;
    vertical-align: middle;
    border-color: var(--main-color);
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 4px;
    border-style: solid;
    border-width: 2px;
    background-color: var(--main-color);
    -webkit-box-shadow: 0px 0px 1px 0px #333333;
    -moz-box-shadow: 0px 0px 1px 0px #333333;
    box-shadow: 0px 0px 1px 0px #333333;
    color: var(--second-color);
    text-shadow: none;
    /*height: 50px;*/
    font-size: 18px;
}
.resource-button .title{
    font-size: 28px;
    margin-bottom: 10px;
}
/***************/

.reminder, .terms {
    font-size: 15px;
}

.freetime .maintime .resume a {
    color: #2b87da;
    font-size: 18px;
}

.freetime .maintime .resume a:hover {
    color: var(--second-color);
}

.nav a {border-radius: 15px;}
.tdrdvcol {
    border-left: lightgray;
}
.wdate {
    border-color: #ffffff;
}
.wtime {display: none}
.zone-planning.scrollplanning {
    overflow-y: inherit;
    border-color: #ffffff;
}
#first_criteria_id{
    width: 100%;
}
#new_appointment, .progressbar-container {
    width: 960px;
    margin: 0 auto;
}
#new_appointment {
    margin-top: 70px;
}
#new_appointment, #view-agendaweb{
    box-sizing: border-box;
    font-family: 'Montserrat',Helvetica,Arial,Lucida,sans-serif;
    font-size: 18px;
}

#new_appointment .btn.submit {
    border: 1px solid var(--main-color);
}

#new_appointment select {
    width: 100%;
    appearance: none;
    position: relative;
    z-index: 2;
    background: #f7f7f7;
    border: 1px solid #c4c4c4;
    border-radius: 0;
    box-shadow: none;
    color: #787878;
    transition: all .5s;
}

#new_appointment input:not([type="button"]), textarea {
    background: #f7f7f7;
    border: 1px solid #c4c4c4;
    border-radius: 0;
    box-shadow: none;
    color: #787878;
    transition: all .5s;
    font-size: 16px;
    margin: 0;
    padding: 12px;
    height: 40px;
}
#new_appointment input[type="checkbox"]{
    height: 30px;
}
#info-cnil{
    margin-top: 20px;
}

#end-of-booking {
    margin-top: 30px;
}

@media (max-width: 1230px) {
    .resource-list {
        display: block;
    }
    .resource-action{
        margin-bottom: 25px;
    }
    .resource-button {
        width: 100%;
    }
}

@media (max-width: 960px) {
    #new_appointment, .progressbar-container {
        width: 100%;
    }
}
</pre></body></html>