/* CSS pour la boite de dialogue demandant si l'utilisateur veut participer à un sondage PIM-6425 */

#surveyModal.fadein {
	bottom: 0;
	-webkit-transition: opacity 0.3s linear, bottom 0.5s ease-out;
	-moz-transition: opacity 0.3s linear, bottom 0.5s ease-out;
	-o-transition: opacity 0.3s linear, bottom 0.5s ease-out;
	transition: opacity 1s linear, bottom 1s ease-out; 
}

#surveyModal {
	position: fixed;
	bottom: -320px;
	right: 0;
	z-index: 999;
	margin-right: 30px;
	margin-bottom: 0px;
	width: 300px;
        background: #eff0f2;
}


.modal-title {
  font-weight: bold;
  font-size: 14px;
  display: block;
  margin-bottom: 12px;
}

.modal-body {
  font-size: 14px;
  color: black;
  display: block;
  margin-bottom: 12px;
  position: relative;
  padding: 15px;  
}

.modal-footer {
  padding: 15px;
  text-align: right;
  border-top: 1px solid black;
}

.modal-content {
  border: none;
  position: relative;
  border: 1px solid #999;
  border: 1px solid rgba(0,0,0,.2);
  -webkit-box-shadow: 0 3px 9px rgba(0,0,0,.5);
  outline: 0;  
}

.modal-dialog {
	position: relative;
	width: auto;
	margin: 0.5rem;
	pointer-events: auto;
}