.contenu {
	position: relative;
}
.site {
	max-width: 1150px;
	margin:25px auto;
}
h2 {
    font-size:2em;
    font-weight: 600;
}
body.modal-open {
	overflow: auto;
}
.selector-for-some-widget {
	box-sizing: content-box;
}

.business-header {
  height: 12vh;
  /*min-height: 300px; */
	/*background: url('http://placehold.it/1920x400') center center no-repeat scroll;*/
	-webkit-background-size: cover;
	-moz-background-size: cover;
	background-size: cover;
	-o-background-size: cover;
}

/* BASIC */
.connecte h1 {
	margin:60px 30px 50px 30px;
}
.pageVote h1 {
	margin-top:40px;
}
.bienvenue {
	text-align: center;
	margin:60px 30px 30px 30px;
	color:#FFF;
	font-size:1.1em;
}
.pageVote .bienvenue p {
	display: inline;
}
.fieldDate {
	color:#18A1B8;
	margin:5px 0px 15px 0px;
}
.box {
	padding:30px 60px;
	border-radius:3px;
        margin-bottom:10px;
}
.boxBlc {
	background: #FFF;
        box-shadow: 0px 0px 8px rgba(37,51,80,0.18);
}
/* STRUCTURE */

.wrapper {
  display: flex;
  align-items: center;
  flex-direction: column; 
  justify-content: center;
  width: 100%;
  min-height: 100%;
  padding: 20px;
  margin: 2%;
}

#formContent {
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  background: #fff;
  width: 90%;
  max-width: 450px;
  position: relative;
  padding: 0px;
  -webkit-box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  box-shadow: 0 30px 60px 0 rgba(0,0,0,0.3);
  text-align: center;
}

#formFooter {
  background-color: #f6f6f6;
  border-top: 1px solid #dce8f1;
  padding: 25px;
  text-align: center;
  -webkit-border-radius: 0 0 10px 10px;
  border-radius: 0 0 10px 10px;
}


/* TABS */

h2.inactive {
  color: #cccccc;
}

h2.active {
  color: #0d0d0d;
  border-bottom: 2px solid #5fbae9;
}

.title-alert{
  color: #17a2b8;
}
.vote-start-btn {
  margin-bottom: 0px;
}
/* FORM TYPOGRAPHY*/
.submit,
input[type=button], input[type=submit], input[type=reset]  {
  background-color: #17a2b8;
  border: none;
  color: white;
  padding: 10px 30px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  font-size: 13px;
	font-weight: 600;
  -webkit-box-shadow: 4px 4px 5px 0 rgba(45,126,183,0.4);
  box-shadow: 4px 4px 5px 0 rgba(45,126,183,0.4);
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
  margin: 5px 20px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.home input[type=button], .home input[type=submit], .home input[type=reset]  {
	padding: 15px 80px;
	margin: 5px 20px 40px 20px;
}
.submit:hover,
input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover, button:hover  {
  background-color: #0082B5;
}
.submit:hover {
	color:#FFFFFF;
	text-decoration: none;
}
input[type=button]:active, input[type=submit]:active, input[type=reset]:active  {
  -moz-transform: scale(0.95);
  -webkit-transform: scale(0.95);
  -o-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95);
}

input[type=text], input[type=password] {
  background-color: #f6f6f6;
  color: #0d0d0d;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 5px;
  width: 85%;
  border: 2px solid #f6f6f6;
  -webkit-transition: all 0.5s ease-in-out;
  -moz-transition: all 0.5s ease-in-out;
  -ms-transition: all 0.5s ease-in-out;
  -o-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
  -webkit-border-radius: 5px 5px 5px 5px;
  border-radius: 5px 5px 5px 5px;
}
input[type=text]:focus, input[type=password]:focus {
  background-color: #fff;
  border-bottom: 2px solid #5fbae9;
}

input[type=text]:placeholder, input[type=password]:placeholder {
  color: #cccccc;
}



/* ANIMATIONS */

/* Simple CSS3 Fade-in-down Animation */
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  100% {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

/* Simple CSS3 Fade-in Animation */
@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fadeIn {
  opacity:0;
  -webkit-animation:fadeIn ease-in 1;
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fadeIn.first {
  -webkit-animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.fadeIn.second {
  -webkit-animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.fadeIn.third {
  -webkit-animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  animation-delay: 0.8s;
}

.fadeIn.fourth {
  -webkit-animation-delay: 1s;
  -moz-animation-delay: 1s;
  animation-delay: 1s;
}

/* Simple CSS3 Fade-in Animation */
.underlineHover:after {
  display: block;
  left: 0;
  bottom: -10px;
  width: 0;
  height: 2px;
  background-color: #56baed;
  content: "";
  transition: width 0.2s;
}

.underlineHover:hover {
  color: #0d0d0d;
}

.underlineHover:hover:after{
  width: 100%;
}

/* OTHERS */

*:focus {
    outline: none;
} 

#icon {
  width:30%;
}

#login-icon {
  width: auto;
  margin: 4% 0;
  max-height: 100px;
}

.intro{
  border-radius: 10px 10px 10px 10px;
  margin: 2%;
  text-align: center;
  height: auto;
  padding-bottom: 1px;
}

.alert-card-body {
  border-radius: 10px 10px 10px 10px;
  margin-bottom: 1%;
  margin-top: -2%;
  text-align: center;
  height: auto;
  padding-bottom: 4px;
  padding-top: 6px;
}

button {
  background-color: #17a2b8;
  color: white;
}

input[type=submit] {
  cursor: pointer;
}
.col-center {
  text-align: center;
}
.img-fluid-list {
  height: 167px;
}
.posteToVote {
background: #fff;
  background-clip: border-box;
  border: 3px solid #DFDFDF;
  border-radius: 4px;  
padding: 20px 60px;
  margin:10px 0px;
	opacity: 0.6;
	box-shadow: 2px 2px 4px rgba(0,50,70,0.3);
}
.itemPoste h2 {
  margin:0px;
	font-size:1.4em;
	font-weight: 600;
}
.itemPoste p {
  margin:0px;
	color:#666;
	line-height: 1.1em;
	margin-top:4px;
}
/*
.posteToVote:not(.active-container):hover {
  transform: scale(1.02);
	cursor: pointer;
}*/
.listeChoix {
	background: rgba(209,236,241,0.8);
	padding:22px;
	text-align:center;
	margin:10px 0px;
}
.listeChoix h3 {
	font-size:1.3em;
}
.posteVoted {
    background: #FFF;
    padding:30px 35px;
    margin-bottom: 10px;
    box-shadow: 1px 1px 3px rgba(0,0,0,0.2);
}
.posteChoix {
    width:32%;
	color:#17A2B8;
	text-align: right;
	padding-left:3%;
	white-space: nowrap;
}
.confirmVote p {
   color:#666;
	line-height: 1.1em;
}
.choix-item-container {
	border:0px;
  border-radius:5px;
  padding: 3px 10px;
  margin:8px 0px;
	font-weight: 600;
	color:#17A2B8;
}
.btn-termine-vote {
	text-align: center;
}
.vote-final-btn {
	margin:15px auto;
	padding:15px 35px;
	font-size: 1.4em;
	display: flex;
}
.listeChoix {
	background: rgba(209,236,241,0.8);
	padding:22px;
	text-align:center;
	margin:10px 0px;
}
.choix-item-container:hover {
  transform: scale(1.02);
	cursor: pointer;
	box-shadow: 1px 3px 3px rgba(0,60,80,0.3);
}
.posteToVote.active-container {
  opacity: 1;
	background-image: url('../images/common/fleche_vote.png');
	background-repeat: no-repeat;
	background-position: right center;
	border-color:#17A2B8;
}
.posteToVote.normal-container {
  opacity: 1;
  cursor: pointer;
}
.posteToVote.normal-container:hover {
  border-color:#17A2B8;
}
.postesFlex {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}
.candImg {
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	margin:auto;
	display: block;
	height: 208px;
	width: 175px;
}
.candidatToVote {
  /*background-clip:inherit;*/
  border-radius: 4px;  
  margin:8px;
  box-shadow:0px 0px 7px rgba(23,162,184,0.35);
  border:1px solid #E1E1E1;
  background-color: #FFF;
  width:271px;
	position: relative;
}
.intPoste {
	padding: 15px 15px 43px 15px;
}
.candidatToVote.active-container {
  background-repeat: no-repeat;
  background-position: right center;
  border-color:#FD4046;
	border-width: 2px;
}
/*
.candidatToVote:hover {
  transform: scale(1.02);
  cursor: pointer;
  box-shadow: 1px 3px 3px rgba(0,60,80,0.3);
}*/
.candidatToVote h4 {
  font-weight: 700;
	margin:10px 0px 5px 0px;
	font-size: 1.2em;
}
.candidatToVote .submit {
	padding:7px 19px;
	box-shadow: none;
	border-radius:2px;
	text-transform: none;
	margin:0px;
}
.candidatToVote:not(.active-container) .submit:hover {
	cursor: pointer;
	background-color: #FD4046;
  	box-shadow: 1px 3px 3px rgba(0,0,0,0.3);
}
.candidatToVote.active-container .submit {
	background-color: #FD4046;
}
.candidatToVote .actionVote {
	position: absolute;
	right: 6px;
	bottom:7px;
}
.listeChoix .acts .btn {
	display: block;
	margin-top:20px;
	width:100%;
}
.listeChoix .active-container {
  background: #FFC142;
	color:#000;
}
.confirmVote {
	line-height: 1.1em;
}
.confirmVote h2 {
	font-size:1.2em;
	margin:0px;
	font-weight: 600;
}
.confirmVote .list-group-item {
	color:#17A2B8;
	font-size:1.4em;
	font-weight: 600;
}
.list-poste-no-voted {
	margin: 25px 0px 45px 0px;
}
.large-btn {
  width: 85%;
}
.alert-modal {
  height: 50px;
}
.alert-header {
  margin-top: 1%;
  margin-bottom: 1%;
  text-align: center;
}
footer .container {
	padding:5px 0px;
	font-size:0.8em;
}
.siteFond {
	position: fixed;
	z-index: 0;
	background: url(../images/common/fond_connecte.jpg) no-repeat center;
	background-size: cover;
	width:100%;
	height:100%;
}
.home.public .siteFond {
	background-image: url(../images/common/fond.jpg);
}
/*
.connecte .siteFond:after {
	display: block;
	content:"";
	position: fixed;
	z-index: 1;
	background:#7D939F;
	opacity: 0.8;
	width:100%;
	height:100%;
}*/
.modal-body-candidat .list-group-item {
	border:0px;
}
.alert-info {
	max-width: 900px;
	margin:25px auto;
	text-align: center;
	padding:5px 25px;
}
.alert-info p {
	margin:8px 0px;
}
.colF {
	float:left;
	width:50%;
}
.pageVote .col1 {
	width:73%;
}
.pageVote .col2 {
	float:right;
	width:24%;
}
.boxTitre {
    text-align: center;
}
.pageVote .boxTitre .fieldDate,
.bInformations {
    display: inline-block;
}
.pageVote .dateLigne {
	display: inline-block;
}
h1 span {
	font-size:0.8em;
	}
.bUser,
.messageVotant {
	display: inline-block;
}
.boxUserHead {
	display: flex;
	align-items: center;
}
.messageVotant p {
	margin:0px;
	font-size: 13px;
}
.messageVotant {
	margin-right: 25px;
}
.bCandLire .act {
	margin:10px 0px 0px 0px;
}
.petitBouton:hover {
	box-shadow: 2px 2px 3px rgba(0,40,70,0.3);
}
.pageVote {
	padding-bottom: 160px;
}
.boxConfirm {
	position:relative;
	bottom: 0;
	left:0;
	width:100%;
	
	margin:auto;
}
.text {
	word-break: break-word;
}
.flexConfirm {
	display: flex;
	justify-content: space-around;
	align-items: center;
	max-width: 1300px;
	margin:auto;
	background: #FFF;
	border:4px solid #FD4046;
	padding:5px 50px;
}
@media all and (max-height:699px) {
	.boxConfirm .flexConfirm {
	border-bottom-width:4px;
	margin-top: 35px;
		box-shadow: 0px 5px 6px rgba(0,40,70,0.3);
}
}
@media all and (min-height:700px) {
	.boxConfirm {
	position: fixed;
	bottom: 0;
	left:0;
}
	.boxConfirm .flexConfirm {
	box-shadow: 0px -5px 6px rgba(0,40,70,0.3);
		border-bottom-width:0px;
}
}

.confirmText {
	color: #FD4046;
	font-size: 2em;
	font-weight: bold;
}
.confirmNom,
.confirmText,
.confirmAction {
	width:24%;
	flex-shrink: 0;
	margin:0px 2%;
}
.confirmNom {
	border-bottom:3px solid #1899B6;
	text-align: center;
	width:40%;
}
.confirmNom span {
	font-size: 1.6em;
	font-weight: bold;
}
.confirmAction .submit  {
	margin:3px 4px;
	padding:6px 15px;
	text-transform: none;
	font-size: 1.12em;
	border-radius: 3px;
}
.confirmAction .submit:hover  {
	cursor: pointer;
}