/* Insert your custom override CSS in this file */
 
:root {

  --main-color: #82c91e;
  --second-color: #649b18;
  --map-maille-border-color: #999;
  --map-maille-lastobs-border-color: #666;
  --map-territory-border-color: #649b18;
  /*--map-area-border-width: 3px;
  --map-area-border-color: var(--second-color);
  --scrollbarBG: #cfd8dc;
  --thumbBG: var(--main-color);*/
}

body{
	background-color : #7d8182;
	font-family: "Century Gothic";
	font-size: 15px;
}

/*#page{
	padding-left: 60px;
	margin-top: 10px;
}*/

.navbar-default .navbar-brand{
	color: #000000;
	font-weight: bold;
}

.navbar-left{
	float: right !important;
}

.navbar{
	background-color: rgb(187,216,154) !important;
	height: 50px;
	border-bottom-color: rgb(187,216,154);
}

#sideBar{
	background-color: rgb(187,216,154);
	width: 50px;
}

.btn.btn-default{
	border-color: rgb(64,173,99);
	background-color: rgb(64,173,99) !important;
}

#sidebar_menu{
	margin-top: 40px;
}

.logoStructure{
	height: 220px;
	max-height: 220px;
	margin-left: -65px;
	/*margin-top: -100px;*/
}

.titreAppli{
	line-height: 20px;
	font-weight: bold;
}

.textIntroduction h1{
	font-size: 24px;
	font-weight: bold;
	text-align: right;
	margin-top: 40px;
	margin-bottom: 20px;
}

p{
	margin: 0 0 20px;
}

.bouton{
	text-align: right !important;
}

.glyphicon-camera:before{
	content: url('/atlas/static/custom/images/app_photo.png');
}

.glyphicon-question-sign:before{
	content: url('/atlas/static/custom/images/point_interro.png');
}

.glyphicon-home:before{
	content: url('/atlas/static/custom/images/maison.png');
}

.glyphicon-pnr:before{
	content: url('/atlas/static/custom/images/logo_pnr_blanc.png');
}

.slidepartenaireindex img {
	max-height: 150px;
}

.title-spaced img {
	height: 23px;
}

.panel-default > .panel-heading {
	padding-left: 1rem;
}

.btn.btn-default.btn-no-desc {
    background-color: transparent !important; 
    border:1px solid silver;
} 
.btn.btn-default.btn-no-desc:hover {
    background-color: var(--second-color) !important; 
}



/* Gestion de la popup pour donner des explications sur les localisations approximatives */
.content {
    background-color: pink;
    width: 40%;
    padding: 30px;
    opacity: 0;
    visibility: hidden;
}

.content:target {
    opacity: 1;
    visibility: visible;
}

.overlay_popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  visibility: hidden;
  opacity: 0;
}
.overlay_popup:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  top: 50%;
  transition: all 5s ease-in-out;
  max-height: 30%;
  overflow: auto;
  line-height: 18px;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}
.popup .close:hover {
  color: #06D85F;
}