.leaflet-top{
	display : none;
}

/* outils droits */
.outils-droite{
	position: absolute;
	width: 195px;
    background: #fff;
    padding: 5px 0 5px 0;
    border-radius: 0px;
    z-index: 100000;
    box-shadow: -2px 2px 15px rgba(0, 0, 0, .5);
	right: 0px;
	color : #b82014;
	display : flex;
	overflow : hidden;
}
#liste-couches{
    top: 120px;
	height: 210px;
}
#liste-legendes{
    bottom: 100px;
	height: 130px;
}
.clic-outils-droite{
	position: relative;
    transform: rotate(180deg);
    font-size: 15px;
    cursor: pointer;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    padding: 30px 5px 0 5px;
    
}
.clic-outils-droite-fleche1::after{
	content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    top: 8px;
    left: 13px;
    border-right: 3px solid #9d9d9d;
    border-bottom: 3px solid #9d9d9d;
    border-radius: 2px;
    transform: rotate(135deg);
}
.clic-outils-droite-fleche2::after{
	content: '';
    width: 7px;
    height: 7px;
    position: absolute;
    top: 8px;
    left: 9px;
    border-right: 3px solid #9d9d9d;
    border-bottom: 3px solid #9d9d9d;
    border-radius: 2px;
    transform: rotate(-45deg);
}
.clic-outils-txt{
	padding: 7px 0px 0 0px;
    border-top: 3px solid #b82014;
    margin: 0 0 0 0;
    display: block;
    position: relative;
}
#couches, #legende{
	border-left: 1px solid silver;
    padding: 10px 0 10px 10px;
	width : 160px;
}
#legende div{
	color: #777777;
	font-size : 13px;
	position : relative;
	padding : 0 0 0 25px;
}
#legende div::after{
	content: '';
    width: 8px;
    height: 8px;
    position: absolute;
    top: 4px;
    left: 5px;
    border-radius: 10px;
    border: 1px solid #4d4d4d;
}
#legende .legende-rouge::after{
	background : #c92d0e !important;
}
#legende .legende-vert::after{
	background : #448936 !important;
}
#legende .legende-orange::after{
	background : #f49615 !important;
}
#legende .legende-bleu::after{
	background : #4788a6 !important;
}
#legende .legende-violet::after{
	background : #8200be !important;
}
#legende .legende-brun::after{
	background : #807041 !important;
}
/* outils zoom */
#outils-zoom{
	position: absolute;
    background: #fff;
    padding: 0;
    border-radius: 0px;
    z-index: 100000;
    box-shadow: 2px 2px 15px rgba(0, 0, 0, .5);
	left : 0px;
	top : 120px;
	color : #000;
}
.outil-zoom{
	width : 40px;
	height : 40px;
	display : flex;
	align-items : center;
	justify-content : center;
	font-size : 22px;
	border : 1px solid #656565;
	margin : 10px;
	background : #f5f5f5;
	cursor : pointer;
	transition : all 0.2s;
}
.outil-zoom:hover{
	background : silver;
}

/* btn ajout obs */
#btn-ajout-obs-saisie{
	font-weight : bold;
	font-size : 26px;
	color : #fff;
	padding : 10px 50px 10px 20px;
	box-shadow: 2px 2px 15px rgba(0, 0, 0, .5);
	background : linear-gradient(40deg, #8f150b, #b82014);
	position : absolute;
	bottom : 100px;
	left : 50%;
	transform: translateX(-50%);
	 z-index: 100000;
	 /* transition : all 0.2s; */
	 cursor : pointer;
}
#btn-ajout-obs-saisie::before{
    content: '';
    background: url(../images/fleche-btn.png) no-repeat;
    background-size: cover;
    background-position: center center;
    position: absolute;
    top: calc(50% - 11px);
    right: 20px;
    width: 15px;
    height: 23px;
}
#btn-ajout-obs-saisie:hover{
	background : #7d150d;
}
/* checkbox */
.control {
	width : 140px;
	color : #777777;
	display: block;
	position: relative;
	padding-left: 30px;
	margin-bottom: 7px;
	margin-right: 10px;
	padding-top: 0;
	cursor: pointer;
	font-size: 13px;
}
.control input {
	position: absolute;
	z-index: -1;
	opacity: 0;
}
.control_indicator {
	position: absolute;
	top: 1px;
	left: 0;
	height: 20px;
	width: 20px;
	background: #e6e6e6;
	border: 0px solid #000000;
	border-radius: 0px;
}
.control:hover input ~ .control_indicator,
.control input:focus ~ .control_indicator {
	background: #cccccc;
}
	
.control input:checked ~ .control_indicator {
	background: #b82014;
}
.control:hover input:not([disabled]):checked ~ .control_indicator,
.control input:checked:focus ~ .control_indicator {
	background: #0e6647d;
}
.control input:disabled ~ .control_indicator {
	background: #e6e6e6;
	opacity: 0.6;
	pointer-events: none;
}
.control_indicator:after {
	box-sizing: unset;
	content: '';
	position: absolute;
	display: none;
}
.control input:checked ~ .control_indicator:after {
	display: block;
}
.control-checkbox .control_indicator:after {
	left: 7px;
	top: 2px;
	width: 4px;
	height: 9px;
	border: solid #ffffff;
	border-width: 0 3px 3px 0;
	transform: rotate(45deg);
}
.control-checkbox input:disabled ~ .control_indicator:after {
	border-color: #7b7b7b;
}

/*  */

.separateur{
	border-bottom: 1px solid silver;
    padding-bottom: 9px;
}

.custom-icon div {
    font-size: 8px;
    text-align: center;
    border-radius: 5px;
	white-space: nowrap;
	width : max-content;
	background : #ffffffd6;
	padding : 0 5px;
	/* margin-top : 28px; */
}


/* popupcharge */
.popupcharge{
	position: fixed;
    top: 50%;
    left: 50%;
    background: #fff;
    color: #575757;
    font-size: 12px;
    padding: 10px 20px 0 20px;
    z-index: 100;
    transform: translate(-50%, -50%);
    border: 1px solid #b9b9b9;
	width : 270px;
	text-align : center;
}
.popupcharge p{
	padding-left : 15px;
}


/* logos bas */
#bas-logos{
	position: fixed;
    z-index: 100000;
    bottom: 0;
    left: 0;
    background: linear-gradient(303deg, #8f150b, #b82014);
    display: flex;
    padding: 10px;
}
.bas-logo {
    background: #fff;
    border: 0px solid #a9a9a9;
    width: 55px;
    height: 55px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
	margin: 0 4px;
    font-size: 10px;
    margin-top: -45px;
}
.bas-logo img {
    width: 85%;
    height: auto;
    display: block;
}
.logo-t1 {
    width: 60% !important;
}