/*@import url("bootstrap.min.css");*/

/* 
    Created on : 21 août 2015, 09:22:49
    Author     : Laurent
	Modified on : 01/02/2016
	Modifié le : 12/12/2018
*/

/*le fond (overlay)*/
.alertOverlay{
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    /*opacity: 0.6;*/
    z-index: 9001;
    background-color: rgba(102,102,102,0.6);
	display: inline-flex;
}

/*la barre des milieu des popups*/
.modal-body{
    background-color: #E8F2FF;
	max-height: 70vh;
    overflow-y:  auto
}
/*limitation de la taille des images*/
.modal-body *{
    max-width : 100%;
}
/*images*/
.modal-body img{
	margin-right: 10px;
}
/*taille de h1 à h6*/
.modal-body h1{
  font-size: 36px;
}
.modal-body h2{
  font-size: 30px;
}
.modal-body h3{
  font-size: 24px;
}
.modal-body h4{
  font-size: 18px;
}
.modal-body h5{
  font-size: 14px;
}
.modal-body h6{
 font-size: 12px;
}
/*le bouton OK en bas des popus*/
.modal-footer button{
    background-color: #E8F2FF;
}

/*la fenêtre*/
.alertBox{
	z-index:9998;
	/*top: 50%;*/
	/*vertical-align: middle;*/
	/*font-family: Arial!important;*/
	color: #000000;
}
/*liens en bleu*/
.alertBox a{
  color: #0000FF!important;
}
/*le titre*/
.alertTitle{
	font-size: 18px!important;
	color: #000000;
	/*evite de dépasser sur le bouton à droite*/
	width: calc(100% - 18px);
}

/*le bouton fermer*/
.alertBtClose{
	position: absolute;
	width: 24px;
	height: 24px;
	right: 12px;
	top:10px;   
	-webkit-appearance: none;
	border-radius: 12px;
	padding-top: 0px !important;
	padding-left: 1px !important;
	padding-right: 0px !important;
	padding-bottom: 1px !important;
	font-family: Arial !important;
	/*background: 0 0 !important;*/
	border: 0;
	cursor: pointer;
	z-index: 9999;  
	float: right;
	font-size: 21px;
	font-weight: 700;
	line-height: 1;
	color: #000;
	text-shadow: 0 1px 0 #fff;
	filter: alpha(opacity=20);
	opacity: .2;
}

.alertBtClose:hover {
	filter: alpha(opacity=50);
	opacity: .5;
}
/* css from bootstrap*/

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  border-radius: 8px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  box-shadow: 0 3px 9px rgba(0,0,0,.5);
}

.modal-header {
  min-height: 16.43px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  border-top-left-radius: 6px;
border-top-right-radius: 6px;
}

.modal-title {
  margin: 0;
  line-height: 1.42857143;
}

.modal-body {
  position: relative;
  padding: 15px;
}

.modal-dialog {
	/*rq : les !important permet d'avoir une compatibilité avec bootstrap (Blagnac)*/
  position: relative;
  width: 100% !important;
  margin: auto 10px !important;
  max-width: initial !important;
}
@media (min-width: 768px){
	.modal-dialog {
	  width: 600px !important;
	  margin: auto !important;
	}
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
  background-color: #E8F2FF;
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.btn {
  display: inline-block;
  padding: 0px 12px !important;
  min-width: 60px;
  min-height: 36px;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.42857143;
  text-align: center;
  white-space: nowrap;
  vertical-align: middle;
  -ms-touch-action: manipulation;
  touch-action: manipulation;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  background-image: none;
  border: 1px solid transparent;
  border-radius: 4px;
 
}

.btn.focus,.btn:focus,.btn:hover{
	color:#333;
	text-decoration:none
}

.btn-default.focus,.btn-default:focus,.btn-default {
	color: #333;
	background-color: #fff !important;
	border-color: #ccc;
}

.btn-default:hover{
	color:#333;
	background-color:#e6e6e6!important;
	border-color:#adadad
}

/*popup sablier (coins arrondis)*/
.sablier .modal-body, .sablier .modal-content{
  border-radius: 8px !important;
  background-color: #fff !important;
}

