/* GENERAL
***************************************************************************************************/
body {
    font-family: 'Fredoka SemiCondensed', sans-serif;
    font-size: 20px;
    line-height: 1.4em;
    font-weight: 300;
    color: #212121
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    body {
        font-size: 16px;
    }
}


/* NAVIGATION
***************************************************************************************************/
#header {
    display: flex;
    justify-content: space-between;
    background: white;
    z-index: 1;
    padding: 2em 1em;
    font-family: Fredoka, sans-serif;
    border-top: 4px solid black;
    border-bottom: 4px solid black;

}

#accueil #header {
    background-color: transparent;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
}

#header #logo {
    font-size: 4vw;
    font-weight: 900;
    color: #F20070;
}

nav a {
    color: #5B9EC8;
    margin: 0 1em;
    font-size: 1.5vw;
}


nav a.selected {
    font-weight: 900;
    border-bottom: 2px solid silver;
}

#header a:hover {
    text-decoration: none;
}

#btn-mobile-menu {
    display: none;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #header {
        height: 60px;
        padding: .7em .5em 1em;
    }

    #header #logo {
        font-size: 8vw;
    }

    #btn-mobile-menu {
        position: fixed;
        font-size: 4vw;
        margin: 0;
        /*width: 60px;*/
        /*height: 60px;*/
        padding: 4px;
        top: 6px;
        right: 10px;
        z-index: 99900000;
        display: block;
        cursor: pointer;
        color: black;
        text-align: center;
        /*background-color: #B4252D;*/
        border: 4px solid transparent;
        transition: .2s all ease-in-out;
    }

    body.scrolled #btn-mobile-menu {
        background: white;
        border: 4px solid black;
    }

    body.nav-on.scrolled #btn-mobile-menu {
        color:black;
        background: transparent;
        border: 0;
    }

    body.nav-on {
        overflow: hidden;
    }

    #btn-mobile-menu:before {
        font: normal normal normal 14px/1 FontAwesome;
        content: '\f0c9';
        /*margin-right: .5em;*/
        width: 1em;
        font-size: 30px;
        display: inline-block;
    }

    .nav-on #btn-mobile-menu:before {
        font: normal normal normal 14px/1 FontAwesome;

        content: '\f00d';
        margin-right: .5em;
        width: 1em;
        font-size: 30px;
        display: inline-block;
        color: white;
    }

    #header nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 20vh;
        margin: 0 0;

    }

    nav a {
        color: white;
        font-weight: 500;
        font-size: 9vw;
        border: 0;
        margin: .4em auto;
        padding: .4em;

        text-align: center;
        width: 90vw;
    }

    nav a:hover {
        color: white;
        text-decoration: none;
    }

    nav a.selected {
        font-weight: 900;
        color: #white;
        background: #F20070;;
        border-radius: 100px;
        border: 0;
    }

    .nav-on #header nav {
        display: flex;
        z-index: 10000;
        background: #5B9EC8;
        top: 0;
    }

    /*
    #btn-mobile-menu {
        position: fixed;
        border-radius: 100px;
        border:4px solid black;
        width:40px;
        height: 40px;
        display: flex;
    }

     */
}
#admin-wrapper {
    background: rgba(153, 179, 35, 0.2);
    position: fixed;
    z-index: -10;
    top:0;
    left:0;
    width: 100vw;
    height: 100vh;

}
#admin {
    background: #99b323;
    background-image: linear-gradient(41deg, #adcc21 15%, #99b323 15%, #99b323 50%, #adcc21 50%, #adcc21 65%, #99b323 65%, #99b323 100%);
    background-size: 15.24px 13.25px;
    color:white;
    padding: .2em;
    font-weight: 900;
    text-align: center;
    border-bottom: 4px black solid
}

/* SOUS-NAVIGATION
***************************************************************************************************/
#subnav {
    font-family: Fredoka, sans-serif;
    margin-bottom: 2vh;
    /*border-left: 4px solid black;*/
    /*border-right: 2px solid black;*/
    border-bottom: 4px solid black;

}

#subnav .gutter {
    display: flex;
}

#subnav .submenu-item {
    flex: 1 1 0;
    border-right: 4px solid black;
    text-align: center;
    color: #F20070;
}

#subnav .submenu-item:last-child {
    border-right: 0;
}

#subnav .submenu-item:hover {
    background: rgba(242, 0, 112, 0.1);;;
}

#subnav .submenu-item, #subnav .submenu-item a {
    display: inline-block;
    text-decoration: none;
    /*margin:          0 1em;*/

    padding: .5em 0;
}

#subnav .submenu-item.selected {
    font-weight: 500;
    color: white;
    background-color: #F20070;
}

#subnav .arrows {
    display: none;
}

#subnav .has-submenu {

    position: relative;
}

#subnav .has-submenu .submenu {
    display: none;
    position: absolute;

    flex-direction: column;
    z-index: 500;
    width: 100%;
    margin-top: 11px;
    background: white;
    box-shadow: 0 2px 4px #f0f0f0;
    border-bottom: 2px solid black;
    border-left: 2px solid black;
    border-right: 2px solid black;
}

#subnav .has-submenu .submenu a {
    display: block;
    border-top: 1px dotted black;
    width: 100%;
    color: #F20070;
}

#subnav .has-submenu .submenu a:hover {
    background-color: rgba(242, 0, 112, 0.1);
}

#subnav .has-submenu:hover {

    background: white;
    box-shadow: 0 2px 4px #f0f0f0;
}

#subnav .has-submenu:hover .submenu {
    display: flex;
}


@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #subnav {
        justify-content: space-between;
        display: flex;
        flex-direction: row;
    }

    #subnav .gutter {

        overflow-x: scroll;
        overflow-style: marquee-block;
        -webkit-overflow-scrolling: touch;
        overflow-y: hidden;
        display: flex;
        flex-direction: row;
    }

    #subnav .submenu-item {
        display: inline-block;
        white-space: nowrap;
        padding: 4px;
    }

    #subnav a {
        flex: 0 0 auto;
    }

    #subnav .arrows {
        display: block;
        width: 1em;
        margin-top: 5px;
        flex: 0 0 4%;
    }

    #subnav .arrows.right {
    }

}

/* STRUCTURE
***************************************************************************************************/
#wrapper {
    border-left: 4px solid black;
    border-right: 4px solid black;
}

#content-wrapper {
    min-height: 70vh;

}

#page-wrapper {
    width: 80vw;
    min-width: 900px;
    max-width: 1200px;
    margin: 5vh auto;
    font-family: 'Fredoka SemiCondensed', sans-serif;

}

#cols-wrapper {
    display: flex;
    justify-content: space-between;
}

#main-col {
    flex: 0 0 60%
}

#secondary-col {
    flex: 0 0 30%;
    font-size: 80%
}


@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #page-wrapper {
        min-width: 0;
    }

    #cols-wrapper {
        flex-direction: column;
    }

    #secondary-col {
        margin-top: 2vh;
    }
}

/* TYPO
***************************************************************************************************/
h3.titre {
    font-size: 6vw;
    font-weight: 900;
    line-height: 1em;
    margin: 4vh 0;
    font-family: 'Fredoka', sans-serif;
    color: #5B9EC8
}

h4.soustitre {
    font-size: 3vw;
    line-height: 1.1em;
    font-weight: 700;
    margin: 6vh 0 6vh;
    font-family: 'Fredoka', sans-serif;
    color: #5B9EC8
}

.media {
    display: block;
    margin: 2vh 0;
}

.media, .media img {
    width: 100%;
}

.legende {
    font-size: 70%;
    text-align: right;
    width: 100%;
    padding: .2em 0;
    color: #666;
    font-style: italic;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    h3.titre {
        font-size: 10vw;
        margin: 2vh 0;
    }

    h4.soustitre {
        font-size: 6vw;
        margin: 2vh 0;
    }

}

/* UI
***************************************************************************************************/
#map-wrapper, #calendar-wrapper {
    margin: 0px 0 0 0;
    padding-top: 20px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .5);
    height: 90%;
}

#map-bg {
    width: 100%;
    aspect-ratio: 4/2;
    background: url(../img/carte.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 00%;

}

#calendar-bg {
    width: 100%;
    aspect-ratio: 4/2;
    background: url(../img/calendrier.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
    margin-top: 00%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    font-size: 1.2vw;
    line-height: 1.4em;

}

#calendar-bg strong {
    font-size: 200%;
    font-weight: 700;


}

.map-item {
    margin-top: -50%;
    width: 100%;
    aspect-ratio: 4/2;
    transition: .5s opacity ease-in-out;
    opacity: 0;
    z-index: 20;
    background-repeat: no-repeat;
    background-position: center;

}

.map-item.show {
    opacity: 1;
}

.stack-wrapper {
    display: flex;
    height: 90%;
    flex-direction: column;
    /*width:          180px;*/
    /*margin:         10vw 10vw 0;*/
    margin: 0;
    padding: 0px 10px 10px 10px;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, .5);
}

.stack-wrapper.affiche {
    padding-top: 50px;
}


.stack-item {

    width: 100%;
    height: 20px;
    background: silver;
    background-position: center center;
    margin: -15px 0 0 0;
    opacity: 0;
    /*background: url(../img/test-affiche.svg) no-repeat;*/
    background-size: contain;
    transition: .2s opacity ease-in-out;
}

.affiche .stack-item {
    width: 100%;
    height: 60px;
    margin: -55px 0 0 0;
}

.prix .stack-item {
    width: 100%;
    height: 45px;
    margin: -32px 0 0 0;
}

.stack-item.visible {
    opacity: 1
}

.stack-label {
    margin: 5px 0 30px;
    text-align: center;
    font-family: Fredoka;
    font-weight: 500;
    font-size: 1.2vw;
}


#infos-wrapper {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 20vh;
    z-index: 100;
    background: #f0f0f0;
}

#infos-wrapper > div {
    flex: 0 0 20%;

}

#tournee-info-wrapper strong, #tournee-info-zone-nom strong {
    font-weight: bold;
}

#aucun {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 100vw;
    height: 50vh;
    font-family: Fredoka, sans-serif;
    font-size: 3vw;
    color: silver

}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #infos-wrapper {
        display: none;
    }
}

/* ACCUEIL
***************************************************************************************************/
#splash {
    width: 70vw;
    margin: 0vh auto 10vh;
    text-align: center;
    font-family: Fredoka, sans-serif;

}


#video {
    position: fixed;
}
#splash h1 {
    font-size: 4vw;
    font-weight: 900;
    line-height: 1em;
    color: #F20070;
    z-index: 100;
    margin-bottom: .5em;
}

#splash h2 {
    font-size: 3vw;
    font-weight: 400;
    line-height: 1em;
    color: #5B9EC8
}

#accueil video {
    width: 100vw;
    aspect-ratio: 16/9;
    position: relative;
    margin: -10vh 0 0vh;
    z-index: -1
}


#accueil #button-bar, #button-bar.centered {
    padding: 5vw;
    display: flex;
    justify-content: center;
}

#accueil #button-bar .bouton {
    margin: 0 5px;
    width: 10em;
    text-align: center;
}


@media screen and (min-device-width: 320px) and (max-width: 768px) {

    #accueil video {
        margin-top: 0;
    }

    #accueil #button-bar {
        flex-direction: column;
    }

    #accueil #button-bar .bouton {
        font-size: 7vw;
        margin: 2vh 0;
        width: 100%;
    }

    #splash h1 {
        font-size: 9vw;
    }

    #splash h2 {
        font-size: 8vw;
    }
}

/* CONTENU
***************************************************************************************************/
.month-wrapper {
    display: flex;
    margin: 1em 0;
}

.month-wrapper h4, .zones-wrapper h4 {
    font-size: 2vw;
    font-weight: 900;
    font-family: Fredoka, sans-serif;
    flex: 0 0 25%
}

.day-wrapper {
    border: 1px solid #5B9EC8;
    background: rgba(91, 158, 200, 0.16);
    margin: 4px;
    color: black;
    font-weight: bold;
    padding: .2em;
    border-radius: 8px;
}

.zones-wrapper {
    display: flex;
    margin: 5vh 0;
    border-top: 1px solid black;
    padding-top: 2vh;
}

.zones-wrapper #map-wrapper {
    /*width: 32vw;*/
    flex: 0 0 30%;

    font-size: 80%;
    text-align: center;
}

.zones-wrapper #map-wrapper h5 {
    font-size: 120%;
    font-weight: bold;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {

    .month-wrapper, .zones-wrapper {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .month-wrapper h4, .zones-wrapper h4 {
        flex: 0 0 100%;
        font-size: 6vw;
        margin-bottom: .5em;
    }

    .day-wrapper {
        flex: 0 0 40%;
        font-size: 4vw;
        text-align: center;
    }

    .zones-wrapper #map-wrapper {
        flex: 0 0 100%
    }

}

/* CONNEXION
***************************************************************************************************/
.form {
    width: 50vw;
    margin: 10vh auto;
    background-color: #f0f0f0;
    border: 1px solid #bbb;
    padding: 1em;
    border-radius: 4px;
}

.form p {
    margin-bottom: 1em;
    display: flex;
    justify-content: space-between;
}

label {
    font-weight: 500;
    margin-bottom: 1em;
    width: 8em;
    font-family: Fredoka, sans-serif;
    align-self: center;
}

.many_to_many > div > p {
    font-weight: bold;
    margin-top: 1em;
}

.many_to_many .foreign-item {
    font-weight: normal;
    margin: 0 0 0 .5em;
}


input[type=text], input[type=email], input[type=password] {
    padding: .5em;
    border: 1px solid #bbb;
    border-radius: 4px;
    flex: 1 1 90%;
    align-self: flex-start;
    font-size: 1em;
}

button:not(.btn-checkbox):not(.note-btn), .bouton, .form-button, input[type=submit] {
    border: 1px solid #F20070;
    background-color: white;
    font-weight: 500;
    font-size: 1em;
    padding: .5em 2em;
    cursor: pointer;
    text-decoration: none;
    color: #F20070;
    text-align: center;
    border-radius: 100px;
    display: inline-block;
    margin: .5em 0;
    font-family: Fredoka, sans-serif;
    transition: .5s all ease;
}

button:not(.btn-checkbox):hover, .bouton:hover {
    text-decoration: none;
    color: white;
    background-color: #F20070;;
    transform: scale(1.05);
}

.btn-checkbox {
    border: 0;
    background: transparent;
}

.btn-checkbox i.yes {
    color: #5e9605;
}

.btn-checkbox i {
    color: darkred;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    .form {
        width: 95%;
        flex-direction: column;
    }

    .form p {
        flex-direction: column;
        justify-content: flex-start;
    }

    .form label {
        display: block;
        width: 100%;
    }

    .form input {
        width: 100%;
    }
}

/* ESPERLUETTE
***************************************************************************************************/
.esp-grid {
    margin: 5vh 2vw;
    font-weight: 400;
}

.esp-grid th {
    font-family: Fredoka, sans-serif;
    color: grey;
    font-size: 70%;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    table.grid tr td:first-child {
        flex: 0 0 100%
    }

    #compte.reservations table.grid tr {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

    #compte.reservations table.grid tr td:nth-child(2) {
        flex: 0 0 70%;
    }

    #compte.reservations table.grid tr td:nth-child(6),
    #compte.reservations table.grid tr td:nth-child(7) {
        flex: 0 0 8%;
        padding: 0;
    }

}

.total {
    text-align: right;
    width: 90vw;;
    margin:10px auto;
    font-weight: 900;
    font-family: Fredoka;
    font-size: 140%;
}

.btn.disabled, .btn:disabled {
    background-color: white;
    opacity: .2;
    border-color: silver
}

.erreur {
    text-align: center;
    margin: .5em;
    color: #F20070;
    font-family: Fredoka, sans-serif;
    font-weight: 700;
}

#filter-form button {
    padding: 0;
    margin: 0 0 0 20px;
    width: 2em;
}

#search-form button {
    width: 2em;
    padding: 0;
    margin: 0;
}

#search-form .input-group-btn {
    font-size: 100%;
    padding: 0;
    margin: 0;
}

.details-list, #compte.tournees .col_sql {
    font-size: 70%;
    line-height: 1.3em;
    list-style: none;
}

#esp-form {
    display: flex;
    width: 90vw;
    margin: 5vh 5vw;
    flex-wrap: wrap;
    background: #f0f0f0;
    padding: 1em;
    border-radius: 20px;
}

#esp-form .col-wrapper {
    display: flex;
    justify-content: space-between;
}

#esp-form .left-col {
    width: 65%;
}

#esp-form .right-col {
    width: 30%;
}

#esp-form h2, .separator {
    font-family: Fredoka;
    font-weight: 700;
    width: 100%;
    font-size: 120%;
    margin: 0.2em 0 .5em;
    text-transform: uppercase;

}

#esp-form h4 {
    border-bottom: 1px dotted silver
}

#esp-form .fieldContainer {
    display: flex;
    flex-wrap: wrap;
}

#esp-form .hidden {
    display: none;
}

#esp-form .field {
    padding: .2em;
}

#esp-form .field.full {
    flex: 1 1 100%;
}

#esp-form .field.half {
    flex: 1 1 50%;
}

#esp-form .field.third {
    flex: 1 1 33%;
}

#esp-form .field.two-third {
    flex: 1 1 66%;
}

#esp-form .field.quarter {
    flex: 1 1 25%;
}

#esp-form .field.three-quarters {
    flex: 1 1 75%;
}


#esp-form > label {
    font-weight: 500;
    margin-bottom: .5em;
}

#esp-form label span {
    display: block;
}


#esp-form .separator {

}

#esp-form .button-bar {
    flex: 1 1 100%;
    margin-top: 2em;
    border-top: 1px dotted silver;
    padding: 2em 0 0 0;
}

#esp-form .main-col {
    flex: 1 1 60%;
    padding: 0 1em;
    /*display: flex;*/
    flex-wrap: wrap;
}

#esp-form .secondary-col {
    flex: 1 1 30%;
    padding: 0 1em;
}

form.form-edit {
    width: 1030px;
    border-radius: 4px;
    border: 1px solid #f0f0f0;
    padding: 20px;
}

.callout.success {
    border-radius: 8px;
    background: green;
    color: white;
    text-align: center;
    width: 90vw;
    margin: 5vh auto;
    padding: .5em;
}

.field {

}



.status {
    font-size: 60%;
    font-weight: 900;
    display: inline-block;
    padding: .1em .5em;
    border-radius: 100px;
}

.green {
    color: white;
    background: green;
}

.red {
    color: white;
    background: maroon;
}

.hidden {
    display: none;
}


#fld_comptes_id[type=text], #fld_prix, #compte.reservations #fld_nombre_affiches {
    display: none;
}

#fld_zones label {
    display: none;
}

label {
    /*font-weight: bold*/
}

form em.remarque {
    font-size: 12px;
}

.help_text {
    font-weight: 400;
    font-size: 70%;
    color: #AAA;
    margin: 4px 0 0 0;
}

.print {
    display: none
}

input[type=text], textarea, select, input[type=checkbox], input[type=file], input[type=email], input[type=number], input[type=password] {
    margin: 0;
    font-family: "Fredoka SemiCondensed", sans-serif;
    font-size: 80%;
}

.input-group .form-control {
    width: 100%;
}


.error {
    display: none;
}

textarea {
    width: 100%;
    height: 8em;
}

.error > label > small {
    text-transform: none;
}

small.error {
    margin-bottom: 0;

}

.field > label {
    width: 100%;
    padding: em 0 .5em 0;
}

.btn {
    text-transform: lowercase;
    border-radius: 100px;
    font-family: Fredoka, sans-serif;
    transition: .5s all ease;
}

.btn:hover {
    transform: scale(1.05);
}

.btn-primary {
    border-color: #5B9EC8;
    color: #5B9EC8;
    background-color: white;
}

.btn-primary:hover {
    border-color: #5B9EC8;
    color: white;
    background-color: #5B9EC8;
    transform: scale(1.05);
}

.btn-info, .btn-success {
    border-color: #F20070;
    color: #F20070;
    background-color: white;
}

.btn-info:hover, .btn-success:hover {
    color: white;
    background-color: #F20070;
    border-color: #F20070;
    transform: scale(1.05);
}

.btn-danger {
    border-color: grey;
    color: grey;
    background-color: white;
}

.btn-danger:hover {
    border-color: grey;
    color: white;
    background-color: grey;
    transform: scale(1.05);
}

#tournee-info-wrapper {
    width: 100%;

    background-color: rgba(255, 255, 255, .5);
    padding: 20px;
    border-radius: 10px;
}

.tournee-info-titre {
    display: flex;
    justify-content: space-between;
    font-family: Fredoka;
    font-size: 24px;
    font-weight: 900;
    margin: 1em 0 2em;

}

.tournee-info-zone {
    display: flex;
    flex-wrap: nowrap;
    margin: 20px 0;
    border-bottom: 1px dotted grey;
    padding: 1em 0;
}

.tournee-info-zone h5 {
    font-size: 24px;
    line-height: 1em;
    border: 0;
    font-weight: 800;
    margin-bottom: .5em;
}

.tournee-info-zone-nom {
    flex: 0 0 35%;
    font-size: 24px;
}

.tournee-info-zone-clients {
    flex: 0 0 50%;
    font-size:16px;
    line-height: 1.1em;
}

.tournee-info-zone-clients .remarque {
    color:#F20070;
}

#tournees-boutons {

    margin: 10px 0;
    text-align: right;
    width: 100%;
}

#tournees-boutons a {
    margin: 0px 0 0 15px;
    color: #5B9EC8;
    cursor: pointer;
}

#tournees-boutons a:hover {
    color: white;
}

@keyframes fade-border {
    0% {
        border: 1px solid #F20070;
        box-shadow: 0 10px 20px rgba(242, 0, 112, 0.18);
    }
    100% {
        border: 1px solid #bbb;
        box-shadow: 0;
    }
}

.input-fade-border {
    animation: fade-border 2s ease-out;
    border: 2px solid transparent;
    transition: border 3s ease-out;
    outline: none;
}

#reservations-cols-wrapper {
    display: flex;
    justify-content: space-between;
    margin-top: 3vh;
    width: 100%;
}

#reservations-cols-wrapper > div {
    flex: 0 0 48%;
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {
    #reservations-cols-wrapper {
        flex-direction: column;
    }

    .hide_on_mobile {
        display: none;
    }
}

/* FOOTER
***************************************************************************************************/
#footer {
    margin-top: 10vh;
    background: #f0f0f0;
    padding: 2em;
    display: flex;
    flex-wrap: wrap;
    color: #666;
    border-top: 4px solid black;
    border-bottom: 4px solid black;
}

#footer > div {
    flex: 0 0 50%
}

#footer > #credits {
    flex: 0 0 100%;
    font-size: 70%;
    text-align: right;
    margin-top: 2em;
    font-weight: 200;
}

#footer > #credits a {
    color: #666
}

@media screen and (min-device-width: 320px) and (max-width: 768px) {


    #footer {
        flex-direction: column;
        font-size: 16px;
    }

    #footer > div {
        flex: 0 0 100%
    }

    #footer > #credits {
        font-size: 60%;
        text-align: center;
    }

}

/* STATISTIQUES
***************************************************************************************************/
#stats-wrapper {
    width: 90vw;
    margin: 5vh auto;
}

#stats-wrapper h3 {
    font-size: 200%;
    font-weight: 500;
    font-family: Fredoka, sans-serif;
    margin-bottom: 1em;
    text-align: center;
}

#stats-wrapper h3 span {
    font-weight: 500;
    color: #F20070;

}

#stats-wrapper h4 {
    font-size: 120%;
    font-weight: 500;
    font-family: Fredoka, sans-serif;
}

#stats-wrapper table {
    margin: 2vh 4vh;

}

#stats-wrapper table td {
    font-weight: bold;
    text-align: right;
    width: 2em;
    padding: .5em;
}

#stats-wrapper table tr {
    border-top: 1px dotted silver
}

#stats-wrapper table tr.total {
    border-top: 1px solid black
}

#stats-wrapper table th {
    width: 40em;
}

#stats-wrapper #filter {
    display: flex;
    margin: 0 auto 20px;
    background: #f0f0f0;
    width: fit-content;
    border-radius: 10px;
}

#stats-wrapper #filter div {
    margin: 1em;
    align-self: center;
}

#stats-wrapper #filter input {
    margin: 0;
    padding: 0
}

/* SPONSORS
*********************************************************/
#soutiens-wrapper {
    display: flex;
}

.soutiens-item {
    width: 15vw;
}

.soutiens-item img {
    width: 100%;
}


/* LISTE AFFICHEUR
*********************************************************/
.vertical {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    min-height:15em;
    min-width: 2em;
}

td.checkbox {
    width: 2em;
    height: 1em;
    border:1px solid black
}

table.checkboxes {
    width: 100%;
}

table.checkboxes td {
    padding: 0em .2em;
    border-bottom: 1px dotted grey;
    font-size: 10px;
}

table.checkboxes td.small {
    width: 3em;
    text-align: center;
}

table.checkboxes td.strong {
    font-weight: bold;
}

table.checkboxes th {
    font-weight: bold;
    font-size: 70%;
}

table.checkboxes th.checkbox {
    width: 2em;
}

table.checkboxes tr:nth-child(even) {
    background-color: rgba(91, 158, 200, 0.47);
}

table.checkboxes tr.liste-titre {
    background: transparent;
}

table.checkboxes tr.liste-titre h4 {
    color: #F20070;
    font-family: Fredoka;
    font-weight: 900;
    font-size: 14px;
    padding: .5em 0 .2em;
}

.tournee-infos {
    display: flex;
    justify-content: space-between;
    font-size: 16px;
    width: 20cm;
    color: #F20070;
    font-family: Fredoka, sans-serif;
}
.tournee-info-wrapper {
    /*border: 1px dotted red;*/
}

#compte.lieux input.form-control[type=radio] {
    border: 1px dotted red;
    display: inline-block;
    width: 1em;
}