body {
    background-color: #e5edef;
    margin: 0;
    font-family: "Open Sans", sans-serif;
}

/* Bandeau supérieur */

.bandeau_titre {
    background-color: white;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
    position: relative;
    padding: 5px 15px;
    align-items: center;
    max-width: 100% !important;
    justify-content: space-between;
    display: flex;
}

h2 {
    text-align: center;
    font-size: 1.75rem;
    margin-top: 0;
    margin-bottom: 0.5rem;
    font-family: DejaVu Sans Mono, monospace;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
    vertical-align: middle;
}

.logo {
    width: 247px;
    object-fit: contain;
    vertical-align: middle;
}

.bouton_codeco {
    text-decoration: none;
    background-color: #fff;
    padding: 15px;
    margin: 10px;
    text-align: center;
    border-radius: 5px;
    font-size: 20px;
    border-style: none;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
    color: #777;
    height: 20px;
    white-space: nowrap; /* interdiction de passer à la ligne */
    line-height: 20px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
    text-decoration: none;
}

.bouton_codeco:hover {
    background-color: #377d87;
    color: #fff;
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* bloc formulaire et liens sur la gauche*/
.bloc_form_liens {
    display: flex;
    width: 100%;
}

.liens {
    width: 25%;
}

.bouton_liens {
    display: inline-block;
    text-decoration: none;
    background-color: #fff;
    padding: 15px;
    margin: 10px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
    color: #777;
    height: 75px;
    width: 85%;
    white-space: nowrap; /* interdiction de passer à la ligne */
    line-height: 75px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.bouton_liens:hover {
    background-color: #377d87;
    color: #fff;
    -webkit-transform: scale(1.04);
    transform: scale(1.04);
}

/*bloc principal*/
.bloc_principal {
    width: 75%;
}
/* Formulaire de recherche */
.formulaire {
    width: 80%;
    background-color: white;
    padding: 20px;
    margin: 30px;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
}

.bouton_rechercher {
    width: 80%;
    padding: 20px;
    margin: 30px;
}

/* Checkboxes */

.toggler-wrapper {
    display: block;
    width: 45px;
    height: 25px;
    cursor: pointer;
    position: relative;
}

.toggler-wrapper input[type="checkbox"] {
    display: none;
}

.toggler-wrapper input[type="checkbox"]:checked + .toggler-slider {
    background-color: #44cc66;
}

.toggler-wrapper .toggler-slider {
    background-color: #ccc;
    position: absolute;
    border-radius: 100px;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.toggler-wrapper .toggler-knob {
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.toggler-wrapper.style-4
    input[type="checkbox"]:checked
    + .toggler-slider
    .toggler-knob {
    left: calc(100% - 19px - 3px);
}

.toggler-wrapper.style-4 .toggler-knob {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    left: 0;
    top: 0;
    background-color: #fff;
    -webkit-box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
    box-shadow: 0 2px 6px rgba(153, 153, 153, 0.75);
}

.badge {
    margin: 10px;
}

.checkbox {
    display: inline-block;
}

/* Lignes de liste déroulante + champs texte + boutons */

.liste_deroulante {
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 1px 2px 2px 0 rgb(197 197 197 / 50%);
    max-height: 325px;
    height: 40px;
    border-style: none;
    font-weight: normal;
    color: black;
    font-size: 15px;
    margin: 5px;
}

.champs_texte {
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 1px 2px 2px 0 rgb(197 197 197 / 50%);
    max-height: 325px;
    height: 40px;
    border-style: none;
    font-weight: normal;
    color: black;
    font-size: 15px;
    margin: 5px;
}

.bouton {
    margin: 5px;
    height: 40px;
    width: 40px;
    background-color: #f8f8f8;
    border-radius: 5px;
    box-shadow: 1px 2px 2px 0 rgb(197 197 197 / 50%);
    border-style: none;
    color: black;
    font-size: 15px;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.1s ease-in-out;
    transition: 0.1s ease-in-out;
}

.bouton:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    background-color: #377d87;
    color: #fff;
}

/* Boutons ajouter champ retirer champ et rechercher */

#add,
#recherche {
    background-color: #008000;
}

#remove {
    background-color: #c43a2f;
}

#add,
#remove,
#recherche {
    color: white;
    padding: 10px;
    margin: 10px;
    border-radius: 5px;
    border: none;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

#add:hover,
#remove:hover,
#recherche:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

/* Bouton retour menu */

.bouton_acceuil {
    text-decoration: none;
    background-color: #fff;
    padding: 15px;
    margin: 30px;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
    color: #777;
    height: 50px;
    white-space: nowrap; /* interdiction de passer à la ligne */
    line-height: 50px;
    display: block;
    -webkit-transform: scale(1);
    transform: scale(1);
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
}

.bouton_acceuil:hover {
    background-color: #377d87;
    color: #fff;
    -webkit-transform: scale(1.02);
    transform: scale(1.02);
}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

.modal-content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    height: 3000px;
}

.title {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

.content {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    color: #ccc;
    padding: 10px 0;
    height: 100%;
    word-wrap: break-word;
}

/* The Close Button */
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: 0.3s;
}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* resultat formulaire */

#resultats_form{
	width:80%;
}
#resultats_form>a>div{
			box-shadow: rgb(189 189 189 / 50%) 0px 2px 4px 0px;
			background-color: white;
			height:auto;
			margin: 10px 0px;
			border-radius: 10px;
			-webkit-transform: scale(1);
			transform: scale(1);
			-webkit-transition: .1s ease-in-out;
			transition: .1s ease-in-out;
			padding:10px;
		}
		
#resultats_form>a>div:hover{
			-webkit-transform: scale(1.01);
			transform: scale(1.01);
		}

#resultats_form>a{
    text-decoration:none;
    color: black;
    }


/* recherche par emplacement */
.wrapper {
    position: relative;
    margin: 0 auto;
    clear: both;
    padding-top: 20px;
    padding-bottom: 50px;
}

.menu-area {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 200px;
}

.menu-area li {
    position: relative;
    list-style: none;
    padding: 15px;
    margin: 10px;
    background-color: #fff;
    text-align: center;
    border-radius: 5px;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
    color: #777;
    height: 50px;
}

.menu-area li:hover {
    background-color: #377d87;
}

.menu-area li a {
    text-align: center;
    position: relative;
    display: block;
    text-decoration: none;
    font-size: 15px;
    color: black;
}

.menu-area li a:hover {
    color: #fff;
}

.menu-area li ul,
.menu-area li ul li ul {
    visibility: hidden;
    transition: 300ms;
    left: 280px;
    top: 0;
    list-style: none;
    position: absolute;
    width: 200px;
    padding: 0;
    margin: 0;
}

.menu-area li:hover > ul,
.menu-area li ul li:hover > ul {
    display: block;
    visibility: visible;
    left: 200px;
}

.menu-area li ul li a {
    padding: 10px;
    text-align: center;
}

.menu-area li ul li ul {
    left: 200px;
    top: 0;
    border: 0;
}

/* Pied de page / crédits */

footer {
    background-color: white;
    box-shadow: 0 2px 6px 0 rgb(189 189 189);
    padding: 10px 50px;
    align-items: center;
    max-width: 100% !important;
    justify-content: space-between;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
}

.copyright {
    text-decoration: none;
    color: #777;
}

#copyright:hover {
    color: black;
    font-weight: bold;
}
