/* Couleurs

Vert/bleu : rgba(0, 100, 98, 1); ou #006462;
Rouge : rgba(167, 34, 39, 1); ou #a72227;
Vert : rgba(128, 200, 98, 1); ou #80c862;
Gris : rgba(50,50,50,1);

   ---------*/


/* ---------------- */

/* ETENDRE/MODIFIER KNACSS */

.grid-1 {
    width: calc(100% - 1em - .01px);
}

/* pour le textarea */
.flex-item-4-5 {
	width: calc(100% * 4 / 5 - 2rem - .01px);
}
@media (max-width: 640px) {
	.flex-item-4-5 {
		width: calc(100% - 2rem - .01px);
	}
}

a {
	color: rgba(0, 100, 98,1);
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}
.content-a:hover figure {
	overflow: hidden;
}
.content-a:hover .content-image {
    transition: transform 0.2s;
    transform: scale(1.05);
}

.flex-vcenter {
	align-self: center;
}

.w50,
.w25 {
	justify-content: center;
}

/* ELEMENTS COMMUNS */

/* * { transition: all 0.5s ease; } */

.debug {
    border: 1px solid red;
}

.no-wrap {
    white-space: nowrap;
}

pre {
    width: 100%;
    text-align: center;
    background-color: #eee;
    padding: 10px;
    margin: 20px 0 10px 0;
}

.tdn {
    text-decoration: none;
}

textarea,
input {
    outline: none;
}

.gras {
    font-weight: bold;
}

.bt1 { border-top: 1px solid rgba(0, 0, 0, 0.2); }
.br1 { border-right: 1px solid rgba(0, 0, 0, 0.2); }
.bordurebas, .bb1 { border-bottom: 1px solid rgba(0, 0, 0, 0.2); }
.bl1 { border-left: 1px solid rgba(0, 0, 0, 0.2); }

.demigras {
    font-weight: 500;
}

.wrapper {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: calc(100% - 2rem - .01px);
}

.wrapper-small {
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: calc(100% - 2rem - .01px);
}

.wrapper-tiny {
	max-width: 634px;
    margin-left: auto;
    margin-right: auto;
    clear: both;
    width: calc(100% - 2rem - .01px);
}

.masquer {
    display: none;
}
.font-size-0 {
    font-size: 0;
}

.fond.chauve-souris {
    background: url('../img/bg-container.jpg') repeat center center;
}
.fond.shna {
    background-image: url('../img/bg-container-fb.jpg');
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

.p14 {
    font-size: 1.4rem;
    line-height: 1.4rem;
    display: inline-block;
    transform: translateY(1px);
}

.p18 {
    font-size: 1.8rem;
    line-height: 1.8rem;
    display: inline-block;
    transform: translateY(1px);
}

.p24 {
    font-size: 2.4rem;
    line-height: 2.4rem;
    display: inline-block;
    transform: translateY(2px);
}

.p30 {
    font-size: 3rem;
    line-height: 3rem;
    display: inline-block;
    transform: translateY(8px);
}

.p36 {
    font-size: 3.6rem;
    line-height: 3.6rem;
    display: inline-block;
    transform: translateY(6px);
}

.h10p {
    min-height: 10px;
}

.h20p {
    min-height: 20px;
}

.h30p {
    min-height: 30px;
}

.h40p {
    min-height: 40px;
}

.h50p {
    min-height: 50px;
}

.h60p {
    min-height: 60px;
}

.h70p {
    min-height: 70px;
}

.h80p {
    min-height: 80px;
}

.h90p {
    min-height: 90px;
}

.h100p {
    min-height: 100px;
}

/* Les Messages
   --------------*/

.msg {
	background-color: rgba(0, 100, 98,1);
	padding: 1rem;
}

.msg--text {
	margin: 0;
	text-align: center;
}

.msg.info .msg--text {
	color: #ffffff;

}


/* Progress Bar
   ------------*/

.progress{
	display: none;
	border: 1px solid #aaa;
}
.progress.active{
	display: block;
}
.progress .progress-bar{
	width: 0;
	height: 100%;
	text-align: center;
}
.progress .progress-bar span{
	font-size: 24px;
	color: rgba(0,0,0,0.5);
}
.progress-bar {
	background: #ddd;
}


/* Formulaire
   ------------*/

.form-input {
    border: 1px solid rgba(210, 210, 210, 1);
    height: 4rem;
    line-height: 4rem;
    border-radius: 0;
    background: #fff linear-gradient( to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.05) 100%);
    padding-left: 1rem;
    margin-bottom: 1rem;
    width: 100%;
}

.form-exemple {
	margin: 0;
	opacity: 0.5;
	line-height: 1.2rem;
	font-size: 1.2rem;
	margin-bottom: 1rem;
}

.form-textarea {
    border: 1px solid rgba(210, 210, 210, 1);
    border-radius: 0;
    background: #fff linear-gradient( to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.05) 100%);
    padding-left: 1rem;
    margin-bottom: 1rem;
    width: 100%;
    height: 150px;
    max-height: 50vh;
}

.form-input:focus,
.form-textarea:focus {
    border-color: rgba(0, 100, 98, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 100, 98, 0.5);
}

.form-select--label, .form-input--label {
	display: block;
}

.form-select {
    border: 1px solid rgba(210, 210, 210, 1);
    height: 4rem;
    line-height: 4rem;
    border-radius: 0;
    overflow: hidden; /* */
    background: url(../img/arrow-b.png), #fff linear-gradient( to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.05) 100%);
    background-repeat: no-repeat, no-repeat;
    background-position: calc(100% - 16px) 50%, center;
    background-size: 21px auto, auto;
    margin-bottom: 1rem;
    padding-right: 21px;
}

.form-select select {
    line-height: normal;
    padding-left: 1rem;
    width: calc(100% + 21px);
    padding-right: 45px;
    border: none;
    box-shadow: none;
    background-color: transparent;
    background-image: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.form-select select {
    height: calc(4rem - 2px);
    border-radius: 0;
    transform: translateY(-2px);
    border: 1px solid rgba(0, 100, 98, 0);
}
.form-select select::-ms-expand {
    display: none;
}
.form-select select:focus {
    outline: none;
    border-color: rgba(0, 100, 98, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 100, 98, 0.5);
    z-index: 100;
}
.form-select.form-select--multi {
	overflow: visible;
	padding: 0;
}
.form-select.form-select--multi .form-select--menu {
	position: relative;	
}
.form-select.form-select--multi .form-select--lib {
	display: inline-block;
	width: 100%;
	line-height	: calc(4rem - 2px);
	color: #000;
	padding-left: 1rem;
	padding-right: 45px;
	border: 1px solid rgba(255, 255, 255, 1);
	overflow: hidden;
}
.form-select.form-select--multi .form-select--lib:focus {
	outline: none;
	border: 1px solid rgba(0, 100, 98, 1);
    box-shadow: 0px 0px 10px 0px rgba(0, 100, 98, 0.5);
    z-index: 100;
}
.form-select.form-select--multi .form-select--list {
	display: none;
	position: absolute;
	left: 0;
	top: 4rem;
	list-style: none;
	font: inherit;
	line-height: normal;
	border: 1px solid rgba(210, 210, 210, 1);
	margin: 0;
	padding: 0.5rem 0 0.5rem 2rem;
	width: 100%;
	background-color: #fff;
	z-index: 100;
}
.form-select.form-select--multi .form-select--list li {
	padding: 3px 0;
}
.form-select.form-select--multi .form-select--list input {
	margin-right: 0.5rem;
}
.form-select.form-select--multi .form-select--list label {
	margin: 0;
	line-height: normal;
}
.form--double {
    width: calc(100% * 2 / 5 - 1em - .01px);
}

.form-checkbox {
	display: none;
}
.form-checkbox + .form-checkbox--label span {
	display: inline-block;
	vertical-align: middle;
	border: 1px solid rgba(210, 210, 210, 1);
    height: 2rem;
    width: 2rem;
    background: #fff linear-gradient( to bottom, rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 0.05) 100%);
    margin-right: 1rem;
}

.form-checkbox:checked  + .form-checkbox--label span {
	/* background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" x="0px" y="0px" viewBox="206 -135.3 512 371.3" width="15" height="15"><path d="M380.7,236c-8.6,0-17.2-3.3-23.8-9.9L216.2,85.4c-13.2-13.2-13.2-34.5,0-47.6c13.2-13.2,34.5-13.2,47.6,0l116.9,116.9 l280.1-280.1c13.1-13.2,34.5-13.2,47.6,0c13.2,13.2,13.2,34.5,0,47.6L404.5,226.1C398,232.7,389.3,236,380.7,236z"/></svg>')  no-repeat center center; */
	background: url('../img/ico-select-arrow.svg')  no-repeat center center;
}

@media (max-width: 768px) {
    .form--double {
        width: calc(100% - 1em - .01px);
    }
}

/* Les Boutons
   ------------*/

/* Boutons simple (sans icon) */

.bouton {
    font-family: 'Barlow', sans-serif;
    text-decoration: none;
    /* display: inline-block; */
    display:  -ms-inline-flexbox;
    display: inline-flex;
    align-items: center;
    white-space: normal;
}

@media (max-width: 768px) {
	.bouton.rwd {
        margin: 0.5rem 0;
    }
}

.bouton--wrapper {
	display:  -ms-flexbox;
    display: flex;
    align-items: center;
    height: 100%;
}

.bouton--icon {
    line-height: 0;
    width: 40px;
    max-width: none;
}

.bouton--desc {

}

/* Bouton de type tiny */

.bouton.tiny {
	font-family: arial, 'sans-serif';
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 500;
    cursor: pointer;
    padding: 0.5rem;
}

.bouton.tiny .bouton--icon {
    width: 1rem;
    height: calc(1rem - 2px);
}

.bouton.tiny .bouton--desc {
    padding-left: 0.25rem;
}

/* Bouton de type petit */

.bouton.petit {
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: 500;
    cursor: pointer;
    padding: 1rem;
	border-radius: 5px;
}

.bouton.petit .bouton--icon {
    width: 2rem;
    height: calc(2rem - 2px);
}

.bouton.petit .bouton--desc {
    padding-left: 0.5rem;
}


/* Bouton de type grand */

.bouton.grand {
    padding: 1rem;
    font-weight: bold;
    font-size: 1.8rem;
    line-height: 1.8rem;
    cursor: pointer;
}

.bouton.grand .bouton--icon {
    width: 3rem;
    height: 3rem;
}

.bouton.grand .bouton--desc {
    padding-left: 1rem;
    height: 3rem;
}


/* Bouton de type mega */

.bouton.mega {
    padding: 1rem;
    font-weight: normal;
    font-size: 3rem;
    line-height: 3rem;
    cursor: pointer;
}

.bouton.mega:after {
    /* content: "";
    width: 100%; */
}

.bouton.mega .bouton--icon {
    width: 40px;
    height: 4rem;
}

.bouton.mega .bouton--desc {
    padding-left: 1rem;
    min-height: 4rem;
    flex: 1;
}

/* bouton rond */
.bouton.rond {
	padding-bottom: 1.3rem;
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 1.3rem;
	justify-content: center;
	align-items: center;
}

/* Couleur orange plein */

.bouton.orange {
	transition: background 0.5s;
    /* background: linear-gradient(to bottom, rgba(242, 150, 41, 1) 0%, rgba(167, 34, 39, 1) 100%); */
	background-color: rgba(167, 34, 39, 1);
    border: 1px solid rgba(167, 34, 39, 1);
    color: rgba(255, 255, 255, 1);
}

.bouton.orange .bouton--icon {
    fill: rgba(255, 255, 255, 1);
}

.bouton.orange:hover {
	transition: background 0.5s;
    /* background: linear-gradient(to bottom, rgba(167, 34, 39, 1) 0%, rgba(242, 150, 41, 1) 100%); */
	background-color: rgba(139, 26, 29, 1);
    color: rgba(255, 255, 255, 1);
}


/* Couleur orange contour */

.bouton.orangelight {
	transition: fill 1s;
    border: 1px solid rgba(167, 34, 39, 1);
    color: rgba(167, 34, 39, 1);
    transition: background-color 1s, color 0.2s;
}

.bouton.orangelight .bouton--icon {
    fill: rgba(167, 34, 39, 1);
}

.bouton.orangelight:hover {
    background-color: rgba(167, 34, 39, 1);
    color: rgba(255, 255, 255, 1);
    transition: background-color 1s, color 0.2s;
}

.bouton.orangelight:hover .bouton--icon {
    fill: rgba(255, 255, 255, 1);
	transition: fill 0.2s;
}

/* Couleur vert plein */

.bouton.vert,
.bouton-promo.vert {
	transition: background 0.5s;
    /* background: linear-gradient(to bottom, rgba(0, 100, 98, 1) 0%, rgba(0, 150, 88, 1) 100%); */
	background-color: rgba(0, 100, 98, 1);
    border: 1px solid rgba(0, 100, 98, 1);
    color: rgba(255, 255, 255, 1);
}

.bouton.vert .bouton--icon {
    fill: rgba(255, 255, 255, 1);
}

.bouton.vert:hover {
    /* background: linear-gradient(to bottom, rgba(0, 150, 88, 1) 0%, rgba(0, 100, 98, 1) 100%); */
	background-color: rgba(1, 63, 62, 1);
    color: rgba(255, 255, 255, 1);
	transition: background 0.5s;
}


/* Couleur vert contour */

.bouton.vertlight {
	transition: fill 1s;
    border: 1px solid rgba(0, 100, 98, 1);
    color: rgba(0, 100, 98, 1);
    transition: background-color 1s, color 0.2s;
}

.bouton.vertlight .bouton--icon {
    fill: rgba(0, 100, 98, 1);
    transition: fill 0.2s;
}

.bouton.vertlight:hover {
    background: linear-gradient(to bottom, rgba(0, 150, 88, 1) 0%, rgba(0, 100, 98, 1) 100%);
    color: rgba(255, 255, 255, 1);
    transition: background-color 0.2s, color 0.2s;
}

.bouton.vertlight:hover .bouton--icon {
	fill: rgba(255, 255, 255, 1);
	transition: fill 0.2s;
}


/* Couleur options */

.bouton.noborder {
    border-color: rgba(255, 255, 255, 0);
}

.bouton.fondblanc {
    background-color: rgba(255, 255, 255, 1);
}


/* Section
   --------*/

.separateur {
    background: no-repeat center center;
    background-size: auto 18px;
    height: 50px;
	background-image: url('../img/separateur.png');
}

/*
.separateur.gauche {
    background-image: url('../img/separateur-g.png');
}

.separateur.droite {
    background-image: url('../img/separateur-d.png');
}
*/

.section-titre,
.section-sous-titre {
    font-family: 'Barlow', serif;
    font-size: 2.4rem;
    line-height: 2.4rem;
    font-weight: normal;
    margin-bottom: 0.5em;
    color: rgba(50, 50, 50, 1);
    text-align: center;
}
.section-sous-titre {
	font-size: 2.6rem;
    line-height: 2.6rem;
	color: rgba(0, 100, 98,1);
}

/* Thumbs
   ------------*/

.thumbs {
    position: relative;
    display: block;
}

.thumbs:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.thumbs.fond {
    background-color: rgba(0, 0, 0, 0.05);
}

.thumbs--img {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0 auto;
    max-width: 100%;
    max-height: 100%;
}
.thumbs--mention {
	position: absolute;
    top: 0;
    right: -11px;
}

@media only screen and (max-width: 480px) {
    .thumbs.rwd {
        text-align: center;
    }
    .thumbs.rwd:before {
        content:'';
        padding-top: 0;
    }
    .thumbs--img.rwd {
        position: relative;
        max-height: 50vh;
    }
}

.thumbs--img.hcenter {
    top: 0;
    margin: auto;
}



/* FIN DES ELEMENTS COMMUNS */


/* STYLES */


/* header
   -----------*/

.header {}


/* header-options
   -----------*/

.header--options {
    background-color: #a72227;
    padding: 0;
}
.header--options .bouton.petit {
	color: #fff;
	padding: 0.7rem;
}
.header--options .bouton.petit .bouton--icon {
	fill: #fff;
	width: 2.4rem;
	height: auto;
}


/* opiton-item (login)
   ----------*/

.option-item {
    display: inline-table;
    text-decoration: none;
    padding: 10px;
}

.option-item--icon {
    display: table-cell;
    vertical-align: middle;
    padding-right: 5px;
}

.option-item--label {
    display: table-cell;
    vertical-align: middle;
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(167, 34, 39, 1);
}

.option-item--svg {
    fill: rgba(167, 34, 39, 1);
    height: 25px;
    width: 25px;
    display: block;
}

.option-item:hover {
    color: rgba(167, 34, 39, 1);
    background-color: rgba(255, 255, 255, 0.5);
}


/* logo
   -----*/

.logo--ct {
    padding-right: 1rem;
}

.logo {
	background: url('../img/Logo_OFAB final.png') no-repeat center center;
	background-size: contain;
    /* background: url('../img/ico-logo.svg') no-repeat center center; */
    width: 168px;
    height: 86px;
    display: block;
    font-size: 0;
    transition: transform 1s;
}

.logo:hover {
	transform: scale(1.1);
	transition: transform 1s;
}


/* Header-nav
   -----------*/

.header--nav {
    padding: 2rem 0 2rem 0;
}

@media (max-width: 768px) {
	.header--nav--ct {
		flex-direction: column;
		align-items: center;
	}
}


/* Navigation principale
   ----------------------*/

.nav {
    display: -ms-flexbox;
    display: flex;
    padding: 0;
    margin: 0;
}

.nav--item {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 70px;
    background: url('../img/bg-menu-item.png') no-repeat center bottom;
    background-size: 150px;
    text-decoration: none;
}

.nav--wrapper {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav--label {
    font-family: 'Barlow', sans-serif;
    font-size: 1.3rem;
    line-height: 1.4rem;
    font-weight: bold;
    color: rgba(50, 50, 50, 1);
    opacity: 0.5;
    text-transform: uppercase;
    padding-left: 5px;
    transition: opacity 0.5s, color 0.5s;
}

.nav--svg {
    width: 30px;
    height: 30px;
    fill: #a3a4a8;
    opacity: 0.5;
    transition: fill 0.5s, opacity 0.5s;
}

.nav--item .nav--svg.active {
    opacity: 1;
    fill: #006462;
}

/* survol */

.nav--item:hover,
.nav--item.active {
    background: url('../img/bg-menu-item-hover.png') no-repeat center bottom;
    background-size: 150px;
    cursor: pointer;
    transition: background 1s;
}

.nav--item:hover .nav--svg,
.nav--item.active .nav--svg {
	opacity: 1;
    fill: rgba(0, 100, 98, 1);
    transition: fill 1s, opacity 1s;
}

.nav--item:hover .nav--label,
.nav--item.active .nav--label {
    opacity: 1;
    color: rgba(0, 100, 98, 1);
    transition: opacity 0.5s, color 0.5s;
}


/* Navigation secondaire
   ----------------------*/

.snav {
    margin-top: 10px;
    display: flex;
    align-items: center;
	justify-content: space-between;
}
.snav--label {
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 1.7rem;
    line-height: 1.8rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.6);
    text-transform: uppercase;
    margin-right: 1rem;
    transition: color 0.5s;
    padding-top: 0.5rem;
	text-align: center;
}
.snav--label:hover, .snav--label.active {
    color: rgba(0, 100, 98, 1);
    transition: color 0.5s;
}

.snav--search {
    position: relative;
    display: inline-block;
    /* background: linear-gradient(to bottom, rgba(167, 34, 39,1) 0%, rgba(242,150,41,1) 100%); */
	background-color: rgba(167, 34, 39,1);
    height: 3rem;
    width: 3rem;
    border: 1px solid #a72227;
}
.snav--search:hover {
    /* background: linear-gradient(to top, rgba(167, 34, 39,1) 0%, rgba(242,150,41,1) 100%); */
	background-color: rgba(139, 26, 29, 1);
}
.snav--search:before {
    content:'';
    height: inherit;
    width: inherit;
    position: absolute;
    display: block;
    background: url(../img/ico-search.svg) no-repeat center center;
    background-size: 2rem;
}
.snav--search span {
    display: none;
}

.snav--search--input {
    padding-top: 1rem;
}


/* Megaenu
   --------*/

.megamenu {
    position: absolute;
    top: 200px;
    width: 100%;
    display: none;
}

.megamenu-wrapper {
    max-width: 960px;
    width: 100%;
    background: linear-gradient(rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 1) 25%);
    padding: 20px;
    border-bottom: 5px solid rgba(0, 100, 98, 1);
    margin-left: auto;
    margin-right: auto;
}

.megamenu--titre {
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: bold;
    margin: 0;
    padding: 20px 0 0 0;
    text-align: center;
    color: rgba(167, 34, 39,1);
}

.megamenu--ssnav { }

.megamenu--ssnav--titre{
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    text-align: center;
}
.megamenu--ssnav--titre a {
    font-family: 'Barlow', serif;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: normal;
    padding: 10px 0;
}
/*
.megamenu--ssnav--titre > a {
	color:#222;
}
*/
.megamenu--ssnav--item {
    text-decoration: none;
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: normal;
    display: block;
    background-color: rgba(0, 100, 98, 0);
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0) 66%, rgba(255, 255, 255, 0.5) 100%);
    padding: 5px 10px 5px 0;
    transition: padding-left 1s, color 0.2s, background-color 0.2s;
}

.megamenu--ssnav--item:hover {
    padding-left: 10px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(0, 100, 98, 1);
    transition: padding-left 1s, color 0.2s, background-color 0.2s;
}

.megamenu--search--input {
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(215, 215, 215, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 1);
    font: bold 1.8rem/1.8rem Barlow, serif;
    color: rgba(50, 50, 50, 0.5);
    padding: 0.6rem 1rem 0 1rem;
}
.megamenu--search--input:focus {
    color: rgba(50, 50, 50, 1);
}

.megamenu--search--btn {
    float: right;
    width: 40px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(242, 150, 41, 1) 0%, rgba(167, 34, 39, 1) 100%);
    border: 1px solid rgba(167, 34, 39, 1);
    color: rgba(255, 255, 255, 1);
    font: bold 1.4em/1.4em 'Barlow', sans-serif;
    padding: 0.6rem 1rem 0 1rem;
    line-height: 0;
    white-space: nowrap;
}

/* Breadcrumbs */

.breadcrumbs {
    overflow: hidden;
    list-style: none;
    padding-left: 0;
    display: block;
}

.breadcrumbs--item {
    float: left;
    color: white;
}

.breadcrumbs--item:after {
    content: '/';
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumbs--item:last-child:after {
    content: '';
}

.breadcrumbs--lien {
    color: rgba(167, 34, 39, 1);
    text-decoration: none;
}

.breadcrumbs--lien:hover {
    color: rgba(167, 34, 39, 1);
    text-decoration: underline;
}


/* Titre page */

.header_titre {
	padding-top: 4rem;
    padding-bottom: 4rem;
}

.titre-page {
    background: url('../img/separateur-g.png') no-repeat;
    background-size: auto 12px;
    background-position: calc(50% - 500px) 1rem;
    margin: 20px 0;
    overflow: hidden;
}

.titre-page--h1 {
    font-family: 'Barlow', sans-serif;
    font-size: 3.6rem;
    line-height: 3.6rem;
    font-weight: bold;
    color: white;
    margin: 0 0 0.5rem 0;
}

.titre-page--h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 2.4rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: white;
    margin: 0;
    font-style: italic;
}


/* Eobs login */

.eobs-login {
    max-width: 600px;
    margin: auto;
    padding: 20px;
}

.ebos-login--ico-ebos {
    fill: rgba(255, 255, 255, 0.66);
    max-width: 120px;
    margin: auto;
    display: block;
}

.ebos-login--desc {
    color: white;
    font-size: 1.3rem;
}


/* Eobs carnet
   -----------*/

.eobs-carnet {}

.eobs-carnet--wrapper {
    background: url('../img/bg-carnet.jpg') no-repeat;
    background-size: 1000px;
    padding: 20px 0 20px 300px;
}

.eobs-carnet--titre {
    font-family: 'Barlow', sans-serif;
    font-size: 3rem;
    line-height: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
    color: white;
    position: relative;
    overflow: hidden;
}

.eobs-carnet--titre:after {
    content: '';
    position: absolute;
    overflow: hidden;
    width: 100%;
    height: 100%;
    background: url(/img/separateur-d2.png) no-repeat calc(0% + 10px) 0.75rem;
    background-size: 965px;
}

.eobs-carnet--desc {
    font-size: 1.3rem;
    color: white;
    padding-right: 20px;
}

@media (max-width: 768px) {
    .eobs-carnet--wrapper {
        background: url('../img/bg-container.jpg') repeat center center;
        background-size: auto;
        padding: 20px 0 20px 20px;
    }
}


/* Eobs Enquêtes
   --------------*/

.eobs-enquete--list {
    justify-content: center;
}

.eobs-enquete--item {
    text-align: center;
}

.eobs-enquete--lien {
    border-width: 2px;
	border-style: solid;
	border-color: rgba(167, 34, 39, 0);
    margin-bottom: 1rem;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    overflow: hidden;
}
.eobs-enquete--img {
	transition: transform 1s;
}
.eobs-enquete--item:hover .eobs-enquete--img {
    transform: scale(0.9);
    transition: transform 0.2s;
}
.eobs-enquete--item:hover .eobs-enquete--lien,
.eobs-enquete--item.active .eobs-enquete--lien {
	border-color: rgba(167, 34, 39, 1);
	transition: border-color 0.2s;
}

.eobs-enquete--legende {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
}
.eobs-enquete--item.active .eobs-enquete--legende {
	color: rgba(167, 34, 39, 1);
}


/* Eobs-dernieres
   ---------------*/

.eobs-dernieres--wrapper {
    overflow: hidden;
    width: 100%;
    margin: auto;
}

.eobs-dernieres--carousel {
    display: -ms-flexbox; display: -webkit-flex; display: flex;
    position: relative;
    left: 0px;
    /* Gérer en JQuery */
    padding: 20px;
}

.eobs-dernieres--espece {
    flex: 1 0 100%;
    order: 1;
    flex-basis: 160px;
    padding: 0 1rem;
    text-align: center;
    width: 160px;
}

.eobs-dernieres--espece--svg {
    width: 50px;
    max-height: 50px;
    fill: rgba(0, 100, 98, 1);
}

.eobs-dernieres--espece--titre {
    margin: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    line-height: 1.8rem;
    color: rgba(0, 100, 98, 1);
    padding-bottom: 10px;
    border-bottom: 5px solid rgba(0, 0, 0, 0.2);
    min-height: 4rem;
}

.eobs-dernieres--espece--list {
    list-style: none;
    text-align: center;
    padding: 0;
    font-size: 1.2rem;
    line-height: 2rem;
}

.eobs-dernieres--espece--lien {
    cursor: pointer;
    text-decoration: none;
    margin-left: -5px;
    padding: 5px;
}

.eobs-dernieres--espece--lien:hover {
    background-color: rgba(0, 100, 98, 1);
    color: white;
}


/* Eobs-form
   -----------*/

.eobs-form {}

.eobs-form--ct {
	display: -ms-flexbox;display: -webkit-flex;display: flex;
	border-bottom: 1px solid rgba(0,0,0,0.2);
	padding: 10px 0 10px 0;
}
.eobs-form--gauche { flex: 1; }
.eobs-form--droite { flex: 7; }

@media (max-width: 480px) {
    .eobs-form--ct {
        display: block;
    }
}

.eobs-form--ct-plus { /* A supprimer */
	background: -webkit-linear-gradient(rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 20px, rgba(0,0,0,0) 100%);
	border-bottom: 1px solid rgba(0,0,0,0.1);
	border-top: 1px solid rgba(0,0,0,0.1);
	padding: 1rem;
}

.eobs-form--ct-legend {
	display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-align-items: center; -webkit-align-items: center; align-items: center;
    -ms-flex-wrap: wrap; -webkit-flex-wrap: wrap; flex-wrap: wrap;
    min-height: 4rem;
}
.eobs-form--legend {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(167, 34, 39, 1);
    line-height: 2.4rem;
}

.eobs-form--tabs {
    display: -ms-flexbox; display: -webkit-flex; display: flex;
    -ms-align-items: center; -webkit-align-items: center; align-items: center;
    -ms-flex-wrap: wrap; -webkit-flex-wrap: wrap; flex-wrap: wrap;
    min-height: 4rem;
}
.eobs-form--tabs--item {
	margin: 0;
	padding: 0;
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.5);
    line-height: 2.4rem;
    margin-right: 0.5rem;
    transition: color 1s;
    display: inline-block;
	padding: 0.2rem 0.4rem;
	border: 1px solid rgba(243, 243, 243, 1);	
}

.eobs-form--tabs--item:hover, .eobs-form--tabs--item.active {
    color: rgba(0, 100, 98, 1);
    cursor: pointer;
    transition: color 0.2s;
	border: 1px solid rgba(210, 210, 210, 1);	
}

.eobs-form--bloc-info {
    background-color: #f3f3f3;
    border-bottom: 1px solid #d1d1d1;
    padding: 10px;
    display: -ms-flexbox;display: -webkit-flex;display: flex;
    -ms-align-items: center; -webkit-align-items: center; align-items: center;
    justify-content: space-between;
    margin-bottom: 0rem;
    ;
}

/* Champs eobs en orange -> A remplacer par un bg avec coche ? */
.eobs-form .form-input,
.eobs-form .form-textarea,
.eobs-form .form-select select {
	/*color: rgba(167, 34, 39, 1);*/
}

.eobs-form .form-select select.gris {
	color: grey;
}

.eobs-form--bloc-info--desc {}

.eobs-form--bloc-info--btn {}

.eobs-form--ct-plus {
	/* Ombre interne : nécessaire ?

	background-image:
	linear-gradient(to bottom, rgba(0,0,0,0.1) 0px, rgba(0,0,0,0) 20px),
    linear-gradient(to top, rgba(0,0,0,0.05) 0px, rgba(0,0,0,0) 20px);

    */
}

/* Eobs-form Gmap */

.eobs-form--gmap {
    border: none;
    margin: 0;
    width: 100%;
    height: 50vh;
    margin: 1rem 0 0 0;
}

/* eobs-tab-valid--table
   -----------------------*/

.eobs-tab-valid--table {
    table-layout: auto;
    font-size: 1.1rem;
}
.eobs-tab-valid--table > thead > tr > th  {
    background-color: rgba(167, 34, 39, 1);
    color: white;
}
.eobs-tab-valid--table > thead > tr > th:nth-child(n+6)  {
    background-color: rgba(0, 100, 98, 1);
    color: white;
}
.eobs-tab-valid--table > tbody > tr > td:first-child {
    text-align: center;
    vertical-align: middle;
}
.eobs-tab-valid--table > tbody > tr > td:first-child > input {
    margin-bottom: 1rem;
}
.eobs-tab-valid--table > tbody > tr > td > span {
    opacity: 0.5;
}
.eobs-tab-valid--table--enquete {
    background: rgba(235, 235, 235, 1);
}

/*///////////////////////////// Début RMP : BN-V3-8 / R882 : rmp fix column in eobs /////////////////////////*/
/* RMP : R985 : Commentaire spécial MERGE - UTF8 [é è] ! Ne pas supprimer */
.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-action, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-action {
	width: 6%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-valid, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-valid {
	width: 8%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-espece, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-espece {
	width: 11%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-obs, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-obs {
	width: 7%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-loca, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-loca {
	width: 14%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-comment, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-comment {
	width: 31%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-saisie, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-saisie {
	width: 6%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-autres, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-autres {
	width: 9%;
}

.eobs-tab-valid--table > thead > tr > th.rmp-table-fix-width-mise-en-avant, .eobs-tab-valid--table tbody tr td.rmp-table-fix-width-mise-en-avant {
	width: 8%;
}
/*//////////////////////////// FIN RMP V3-BN-8 / R882 : rmp fix column in eobs ///////////////////////////////////*/

/* Moteur de recherche
   --------------------*/

.search { }

.search-bar {
    width: 80%;
    margin: auto;
}

@media only screen and (max-width: 480px) {
	.search-bar {
		width: 100%;
    }
}

.search-bar--input {
    width: calc(100% - 40px);
    border: 1px solid rgba(167, 34, 39, 1);
    height: 40px;
    padding: 0.5rem 1rem;
}

.search-bar--input:focus {
    box-shadow: 0px 0px 10px 0px rgba(167, 34, 39, 0.5);
}

.search-bar--btn {
    float: right;
    width: 40px;
    height: 41px;
    /* background: linear-gradient(to bottom, rgba(242, 150, 41, 1) 0%, rgba(167, 34, 39, 1) 100%); */
    border: 1px solid rgba(167, 34, 39, 1);
    line-height: 0;	
	background-color: rgba(167, 34, 39,1);
}

.search-bar--btn--svg {
    fill: white;
}

.search-bar--btn:hover {
    /* background: linear-gradient(to bottom, rgba(167, 34, 39, 1) 0%, rgba(242, 150, 41, 1) 100%); */
	background-color: rgba(139, 26, 29, 1);
}


/* Filtres
   ------------*/

.search-filtre {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}


/* Gallery
   ------------*/
.gallery {
    padding: 0 2rem;
    margin: 0;
}

.gallery--edit {
	position: relative;
}

.gallery--item {
    margin-bottom: 20px;
    text-decoration: none;
}

.gallery--item--titre {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: bold;
    color: rgba(0, 100, 98, 1);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.gallery--item--sous-titre {
    font-family: Arial, sans-serif;
    font-size: 1.2rem;
    line-height: 1.8rem;
    font-weight: normal;
    color: rgba(0, 0, 0, 0.8);
    text-align: center;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
}


/* Fiche Espèce
   ------------------*/

.fiche {
    padding: 1rem 2rem;
}

.fiche--desc--legende--txt {}

.fiche--desc--legende--auteur {
    font-weight: bold;
}

.fiche--desc--legende {
    font-size: 1.2rem;
    color: rgba(0, 0, 0, 0.33);
    padding: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}

.fiche--desc--vignettes {
    display: -ms-flexbox;display: -webkit-flex;display: flex;
    -ms-justify-content: center; -webkit-justify-content: center; justify-content: center;
    -ms-align-items: center; -webkit-align-items: center; align-items: center;
    padding: 10px 0;
}

.fiche--desc--vignettes--item {
    width: 60px;
    height: 60px;
    margin: 0 5px;
}

/* Tableau info */

.fiche--desc--info { }

.fiche--desc--info--titre {
    font-family: 'Barlow', sans-serif;
    font-size: 2.4rem;
    line-height: 2.4rem;
    font-weight: 500;
    color: rgba(167, 34, 39,1);
    margin-bottom: 1rem;
}

.fiche--desc--info--table {
    display: table;
    padding: 0;
    width: 100%;
    border-top: 1px solid rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(0,0,0,0.2);
}
.fiche--desc--info--row {
    display: table-row;
}
.fiche--desc--info--row:nth-child(odd) {
    background-color: rgba(0,0,0,0.05);
}
.fiche--desc--info--cell {
    display: table-cell;
    padding: 0.5rem;
    font-size: 1.4rem;
}


/* Bibliographie
   --------------*/

.biblio {
    display: block;
    text-decoration: none;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.biblio:hover {
    color: rgba(0, 100, 98, 1);
}


/* sliderhome
   ------------*/

.slider {
	overflow: hidden;
}
.slider--list {
    list-style: none;
    padding: 0;
    display: -ms-flexbox;display: -webkit-flex;display: flex;
    -ms-justify-content: center; -webkit-justify-content: center; justify-content: center;
    overflow-x: hidden;
}
.slider--item { display: none; }
.slider--item.active { display: block; }


.slider--image {
    max-width: none;
    max-height: 540px;
}

@media screen and (max-width: 960px) {
    .slider--image {
        max-height: 50vw;
        max-width: calc(3.84 * 50vw);
    }
	.slider div.content_slider{
		margin-left: -50%;
		width: 200%;
	}
}

.slider--nav {
    display: block;
    text-align: center;
    padding: 10px 0 10px 0;
}
.slider--nav--item {
    width: 15px;
    height: 15px;
    display: inline-block;
    border-radius: 15px;
    border: 2px solid rgba(167, 34, 39, 1);
    margin: 0 2px;
	transition: background-color 1s;
}
.slider--nav--item:hover,
.slider--nav--item.active {
    background-color: rgba(167, 34, 39, 1);
    transition: background-color 0.2s;
}

/* promo revue
   ------------*/

.promo-revue {
    background-color: #fff;
    padding: 10px;
    display: table;
}

.promo-revue--visuel {
    width: 33%;
    display: table-cell;
}

.promo-revue--image {
    width: 100%;
}

.promo-revue--desc {
    display: table-cell;
    vertical-align: top;
    text-align: center;
    padding-left: 10px;
}

.promo-revue--titre {
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: bold;
    text-transform: uppercase;
    color: rgba(0, 100, 98, 1);
    margin: 2px 0 0.5rem 0;
    text-align: left;
}

.promo-revue--description {
    font-family: Arial, sans-serif;
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: normal;
    margin: 0;
    text-align: left;
}

.promo-revue--lien {
    display: block;
    text-decoration: none;
    font: bold 1.2rem/1.2rem Arial;
    color: rgba(167, 34, 39, 1);
}

.promo-revue--lien:hover {
    color: rgba(167, 34, 39, 1);
    text-decoration: underline;
}


/* promo liens
   ------------*/

.promo-liens {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
    padding: 20px;
}

@media (max-width: 768px) {
    .promo-liens {
        margin-top: 20px;
    }
}

/* Liste actu / agenda
   --------------------*/

.actu {
    margin-bottom: 2em;
    position: relative;
}

.actu--lien {
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.3);
    max-height: 160px;
    overflow: hidden;
    text-decoration: none;
    display: block;
}

.actu--accroche {
    padding: 1rem 0.5rem;
    min-height: 160px;
}

.actu--visu {
    float: left;
    height: 160px;
    overflow: hidden;
    position: relative;
    width: 160px;
}

.actu--date {
    display: inline-block;
    background-color: rgba(167, 34, 39, 1);
    padding: 0.25em 0.25em;
    color: rgba(255, 255, 255, 1);
    font-family: 'Barlow', sans-serif;
    font-size: 1.4rem;
    line-height: 1.4rem;
    font-weight: 500;
    margin-left: -0.5rem;
}

.actu--image {
    left: 50%;
    min-width: 160px;
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    transition: transform 1s ease 0s;
}

.actu--titre {
    margin: 1rem;
    font-family: 'Barlow', sans-serif;
    font-size: 1.8rem;
    line-height: 1.8rem;
    font-weight: bold;
    color: rgba(0, 100, 98, 1);
    text-decoration: none;
}

.actu--description {
    margin: 1rem;
    font-family: Arial, sans-serif;
    font-size: 1.3rem;
    line-height: 1.8rem;
    font-weight: normal;
	color: rgba(167, 34, 39, 1);
    text-decoration: none;
}

.actu--lien:hover .actu--image {
	transition: transform 0.2s;
    transform: scale(1.1) translate(-45%, -45%);
}

.actu--lien:hover {
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .actu {
        margin-bottom: 10px;
    }
    .actu--accroche {
        padding-top: 20px;
    }
    .actu--lien {
        max-height: none;
    }
    .actu--visu {
        min-width: 100%;
        max-height: calc(100vw * 0.66);
        text-align: center;
        background-color: #eee;
    }
}


/* Footer
    -------*/
.footer-coord {
	background-color: #00504f;
	color: #fff;
	margin-top: 30px;
}
.footer-coord .wrapper > div {
	justify-content:space-between;
}
.footer-coord .wrapper > div > div {
	width: auto;
}
.footer-coord img {
	margin-bottom: 8px;
}
.footer .wrapper {
	max-width: 1200px;
}

.footer--main {
    background-color: rgba(69, 59, 58, 1);
    margin-top: 20px;
    padding-bottom: 20px;
}
.footer--main.bn {
	margin-top: 90px;
}

.footer--main--wrapper {
    display: -ms-flexbox;display: -webkit-flex;display: flex;
    flex-wrap: wrap;
}

.footer--main--col--gauche.bn {
    order: 0;
}

.footer--main--col--centre.bn {
    order: 1;
}

.footer--main--col--droite.bn {
    order: 2;
}

.footer--main--col--centre,
.footer--main--col--gauche,
.footer--main--col--droite {
    flex: 1;
    padding: 20px 10px 20px 10px;
}

/* Footer bas nav */
.footer-nav {
	text-align: center;
	background-color: #013f3e;
}
.footer-nav a {
	color: #fff;
}

.footer-a--nav--item {
	font-size: 1.2rem;
	margin: 1rem 2rem;
}

@media only screen and (max-width: 768px) {

	/* Footer BN */
    .footer--main--col--centre.bn {
        width: 100%;
        order: 0;
    }
    .footer--main--col--gauche.bn,
    .footer--main--col--droite.bn {
        width: 50%;
    }

    /* Footer autres */
    .footer--main--col--gauche {
        width: 100%;
        order: 0;
    }
    .footer--main--col--centre,
    .footer--main--col--droite {
        width: 50%;
    }

    /* Footer commun */
    .footer--main--col--centre.bn,
    .footer--main--col--gauche.bn,
    .footer--main--col--droite.bn,
    .footer--main--col--centre,
    .footer--main--col--gauche,
    .footer--main--col--droite {
        flex: none;
    }
}

@media only screen and (max-width: 480px) {
	.eobs-form--tabs,
    .footer--main--col--centre.bn,
    .footer--main--col--centre {
        width: 100%;
        order: 0;
    }
    .footer--main--col--gauche.bn,
    .footer--main--col--droite.bn,
    .footer--main--col--gauche,
    .footer--main--col--droite {
        width: 100%;
    }
    .footer--main--col--centre.bn,
    .footer--main--col--gauche.bn,
    .footer--main--col--droite.bn,
    .footer--main--col--centre,
    .footer--main--col--gauche,
    .footer--main--col--droite {
        flex: none;
    }
}

.footer--main--titre {
    font: normal 2.4rem/2.4rem Barlow, serif;
    color: rgba(255, 255, 255, 1);
}

.footer-main--texte {
	color: white;
}

/* Newsletter */

.footer--main--newsletter {}

.footer--main--newsletter--titre {
    font: normal 1.8rem/1.8rem 'Barlow', sans-serif;
    color: rgba(167, 34, 39, 1);
    margin-bottom: 0.5rem;
}

.footer--main--newsletter--input {
    width: 100%;
    height: 40px;
    background: linear-gradient(to bottom, rgba(215, 215, 215, 1) 0%, rgba(255, 255, 255, 1) 100%);
    border: 1px solid rgba(255, 255, 255, 1);
    font: bold 1.8rem/1.8rem Barlow, serif;
    color: rgba(50, 50, 50, 0.5);
    padding: 0.6rem 1rem 0 1rem;
}

.footer--main--newsletter--input:focus {
    color: rgba(50, 50, 50, 1);
}

.footer--main--newsletter--btn {
    float: right;
    // width: 40px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(242, 150, 41, 1) 0%, rgba(167, 34, 39, 1) 100%);
    border: 1px solid rgba(167, 34, 39, 1);
    color: rgba(255, 255, 255, 1);
    font: bold 1.4em/1.4em 'Barlow', sans-serif;
    padding: 0.6rem 1rem 0 1rem;
    line-height: 0;
    white-space: nowrap;
    transition: background 0.5s;
}

.footer--main--newsletter--btn:hover {
    background: linear-gradient(to bottom, rgba(167, 34, 39, 1) 0%, rgba(242, 150, 41, 1) 100%);
    transition: background 0.5s;
}

/* Social */

.social {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    background-size: 3rem 3rem;
    font-size: 0;
    opacity: 0.5;
    margin: auto 0.5rem;
}

.social:hover {
    opacity: 1;
}

.social.fb {
    background: url('../img/ico-fb.svg') no-repeat center center;
}

.social.tw {
    background: url('../img/ico-tw.svg') no-repeat center center;
}


/* Footer Promo Revue */

.footer--main--promorevue {
    background: url('../img/bg-frevue.png') no-repeat center 40px;
    max-width: 320px;
    margin: auto;
}

.footer--main--promorevue--visuel {
    width: 220px;
    height: 160px;
    overflow: hidden;
    margin: auto;
    margin-top: -80px;
}

.footer--main--promorevue--titre {
    font: bold 2.4rem/2.4rem 'Barlow', sans-serif;
    color: rgba(0, 100, 98, 1);
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
}

.footer--main--promorevue--descriptif {
    font: normal 1.3rem/1.8rem Arial;
    color: rgba(255, 255, 255, 1);
    text-align: center;
    text-decoration: none;
    margin-top: 0;
}


/* Footer Partners
  -----------------*/

.footer-partner {
    padding: 20px 0;
    text-align: center;
}

.footer-partner--lien {
    align-self: center;
}

.footer-partner--logo {
    padding: 2rem;
    -webkit-filter: grayscale(1);
    -moz-filter: grayscale(1);
    -o-filter: grayscale(1);
    -ms-filter: grayscale(1);
    filter: grayscale(1);
    filter: gray;
    filter: progid: DXImageTransform.Microsoft.BasicImage(grayscale=1);
    opacity: 0.5;
    transition: opacity 1s, -webkit-filter 1s,-moz-filter 1s, -ms-filter 1s, filter 1s, transform 1s;
}

.footer-partner--logo:hover {
    -webkit-filter: grayscale(0);
    -moz-filter: grayscale(0);
    -o-filter: grayscale(0);
    -ms-filter: grayscale(0);
    filter: grayscale(0);
    filter: progid: DXImageTransform.Microsoft.BasicImage(grayscale=0);
    opacity: 1;
    transform: scale(1.1);
    transition: opacity 0.2s, -webkit-filter 0.2s,-moz-filter 0.2s, -ms-filter 0.2s, filter 0.2s, transform 0.2s;
}

/* Agenda Map
  -----------------*/

.agenda-map {}

agenda-map--ct {
	@media only screen and (max-width: 768px) {
		margin-bottom: 20px;
	}
}

.agenda-map--gmap {}

.agenda--content h2:first-child, 
.agenda--content h3:first-child, 
.agenda--content h4:first-child, 
.agenda--content h5:first-child, 
.agenda--content h6:first-child { 
	margin-top: 0; 
} 

/* Fiche revue
  -----------------*/

.revue--lien {
	text-decoration: none;
	color: rgba(0, 100, 98,1);
}

/* Gestion des contributions
  ---------------------------*/

.contrib-edit {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	opacity: 0;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
}

.contrib-edit:hover {
	opacity: 0.9
}

.contrib-edit--overlay {
	height: 100%;
	display: -ms-flexbox;display: -webkit-flex;display: flex;
	-ms-justify-content: center; -webkit-justify-content: center; justify-content: center;
	-ms-align-items: center; -webkit-align-items: center; align-items: center;
	-ms-flex-direction: row; -webkit-flex-direction: row; flex-direction: row;
	background-color: rgba(255,255,255,1);
}

.contrib-edit--lien {
	margin: 0 1rem;
}

/* Je mintéresse à
  -----------------*/

.interesse-a { }

.interesse-a-ct {
	display: -ms-flexbox; display: -webkit-flex; display: flex;
	-ms-align-items: center; -webkit-align-items: center; align-items: center;
}

.interesse-a--icon {
	width: 75px;
	fill: rgba(0, 100, 98,1);
}

.interesse-a--nav { }

.interesse-a--nav--item {
	margin-right:20px;
	color: rgba(0,0,0,0.66);
}

.interesse-a--nav--item:hover {
	color: rgba(0, 100, 98,1);
}

.interesse-a--nav--item.active {
	color: rgba(0, 100, 98,1);
}

/* Données communales
  --------------------*/

.donnees-communales--fiche {
	table-layout: auto;
	font-size: 1.3rem;
}

.donnees-communales--fiche td {
	vertical-align: middle;
}

.donnees-communales--fiche--titre {
	background: rgb(113, 181, 144);
}
.donnees-communales--fiche--titre > td {
	color: white;
	font-weight: bold;
	font-size: 1.8rem;
}

.donnees-communales--fiche--espece {
	font-weight: bold;
}

.donnees-communales--fiche--sousTitre {
	background: rgb(113, 181, 144);
	font-weight: bold;
	color: white;
}
.donnees-communales--fiche--sousTitre > td:first-child {
	font-size: 1.8rem;
}
.donnees-communales--fiche--grisGras {
	// background: -webkit-linear-gradient(#cccccc 0%, #ffffff 100%);
	background: #eee;
	font-weight: bold;
}

/* Ajouts
   -------*/

/* Contributions Medias */
.eobs-tab-valid--table--media {
	background-color: rgba(153, 204, 175, 1);
}

/* Message d'erreur création de compte */
.form_retour.invalid {
	color: red;
    font-weight: bold;
    padding: 1rem;
    border: 1px solid red;
    margin-bottom: 1rem;
    text-align: center;
}

.form_retour.valid {
	color: green;
    font-weight: bold;
    padding: 1rem;
    border: 1px solid green;
    margin-bottom: 1rem;
}

/* Légende */
.content-figure > figcaption {
	color: rgba(0,0,0,0.66);
	font-size: 1.2rem;
	font-style: italic
}
.content-figure figcaption {
	/*
	background-color: rgba(80, 80, 80, 0.75);
	color: #fff;
	*/
	visibility: hidden;
}
.content-figure:hover figcaption {
	visibility: visible;
}


/* Partage (share)
   ----------------*/
   
.share {
	text-align: center;
	margin-top: 2rem;
}   
.share--fb img,
.share--tw img,
.share--pin img {
	height:28px;
}


/* RMP : BN-V3-8 / R882 : EOBS STATS CSS */

.eobs-stat{
	display: flex;
	width: 100%;
	flex-direction: column;
	border: 1px grey dotted;
	margin-top: 20px;
	color: red;
}

.eobs-stat .grid-5{
	display: flex;
	flex-direction: row;
	width: 100%;
	margin:0px;
}

.eobs-stat .grid-5 div {
	display: flex;
	width: 20%;
	flex-direction: column-reverse;
	color: green;
	border: 0.5px grey dotted;
	font-style: italic;
	text-align: center;
	margin: 0px;
	justify-content: space-around;
	font-weight: bold;
}

.eobs-stat .grid-5 div span {

	font-size: 1.7em;
	font-weight: bold;
}


/* RMP : BN-V3-8 / R882 : EOBS STATS CSS FIN */






/* RMP : BN-V4-17 / R892 : SOCIAL BUTTONS CSS*/

#social-buttons {
	display:flex;
    justify-content: space-around;
    width: 300px;
}

#twitter-widget-0, .fb-share-button, span[class^='PIN'] {
	display: flex;
	z-index: 2;
}

span[class^='PIN']{
	height: 28px;
	align-items: center;
}

/* RMP : BN-V4-17 / R892 : SOCIAL BUTTONS CSS FIN*/

/* RMP : BN-V4-13 / R891 : LIBRAIRIES CSS */


/*orange color code : rgba(167, 34, 39,1)*/
/*green color code : rgba(0, 100, 98,1)*/

.container-librairies {
	display: flex;
	flex-wrap: wrap;
        margin: 0;
        padding: 0;
	justify-content: center;
	align-items: start;
}

.librairie-departement-titre {
        margin-top : 65px;
	min-width: 100%;
}

.librairie-departement-titre h4 {
	text-align: center;
}

.librairie {
	display: flex;
	flex-direction: column;
	width: 21%;
	justify-content: center;
	text-align: center;
	margin: 20px 2% 20px 2%;
	overflow: visible;
        padding: 0;
}

.librairies-visuels {
	display: flex;
	justify-content: center;
	width: 100%;
	margin-top: 10px;
	margin-bottom: 10px;
}


.librairie-horaire {
    // text-align: justify;
}

.librairie-visu-1, .librairie-visu-2, .librairie-visu-3 {
	margin-left: 5px;
	margin-right: 5px;
	max-width: 63px;
	max-height: 63px;
}

.librairie-contact{
	color: rgba(0, 100, 98,1);
	font-weight: bold;
}

.librairie-tel, .librairie-adresse1, .librairie-adresse2, .librairie-codepostal-ville {
	font-weight: bold;
}

.librairie-siteweb {
    margin: 0.3em 0 0.3em 0;
}

.librairie-siteweb a {
    color: rgba(167, 34, 39, 1);
    font-family: sans-serif;
    font-weight: bold;
    text-decoration: none;
    word-break: break-all;
}

#librairie-google-map {
	display: flex;
	width: 80%;
	margin: 0 auto;
}

@media (max-width:640px) {
	.librairie{
		width: 45%;
	}
}

@media (max-width:385px) {
	.librairie{
		width: 100%;
	}
}

.content_individu [class*="grid-6"] > *:first-child {
	width: calc(100% * 1.35 / 6 - 2rem - .01px);
}
.content_individu [class*="grid-6"] > *:last-child {
	width: calc(100% * 0.65 / 6 - 2rem - .01px);
}

/* RMP : BN-V4-13 / R891 : LIBRAIRIES CSS FIN */
