/* -------------------------------- 
xpopup 
-------------------------------- */
.cd-popup {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(94, 110, 141, 0.9);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0.3s;
  transition: opacity 0.3s 0s, visibility 0s 0.3s;
  z-index: 999;
}
.cd-popup.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transition: opacity 0.3s 0s, visibility 0s 0s;
  -moz-transition: opacity 0.3s 0s, visibility 0s 0s;
  transition: opacity 0.3s 0s, visibility 0s 0s;
}
.cd-popup-container {
  position: relative;
  /*max-width: 500px;*/
  margin: 4em auto;
  background: #FFF;
  border-radius: .25em .25em .4em .4em;
  text-align: center;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
  -webkit-transform: translateY(-40px);
  -moz-transform: translateY(-40px);
  -ms-transform: translateY(-40px);
  -o-transform: translateY(-40px);
  transform: translateY(-40px);
  -webkit-backface-visibility: hidden;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 0.3s;
  -moz-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
.cd-popup-container p {
  padding: 3em 1em;
}
.cd-popup-container .cd-buttons:after {
  content: "";
  display: table;
  clear: both;
}
.cd-popup-container .cd-buttons li {
  float: left;
  width: 50%;
}
.cd-popup-container .cd-buttons a {
  display: block;
  height: 60px;
  line-height: 60px;
  text-transform: uppercase;
  color: #FFF;
  -webkit-transition: background-color 0.2s;
  -moz-transition: background-color 0.2s;
  transition: background-color 0.2s;
}
.cd-popup-container .cd-buttons li:first-child a {
  background: #fc7169;
  border-radius: 0 0 0 .25em;
}
.no-touch .cd-popup-container .cd-buttons li:first-child a:hover {
  background-color: #fc8982;
}
.cd-popup-container .cd-buttons li:last-child a {
  background: #b6bece;
  border-radius: 0 0 .25em 0;
}
.no-touch .cd-popup-container .cd-buttons li:last-child a:hover {
  background-color: #c5ccd8;
}
.cd-popup-container .cd-popup-close {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 30px;
  height: 30px;
}
.cd-popup-container .cd-popup-close::before, .cd-popup-container .cd-popup-close::after {
  content: '';
  position: absolute;
  top: 12px;
  width: 14px;
  height: 3px;
  background-color: #8f9cb5;
}
.cd-popup-container .cd-popup-close::before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 8px;
}
.cd-popup-container .cd-popup-close::after {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
  right: 8px;
}
.is-visible .cd-popup-container {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
@media only screen and (min-width: 1170px) {
  .cd-popup-container {
    margin: 8em auto;
  }
}

/**************************
	GLOBAL
**************************/
* {
	padding: 0;
	margin: 0;
	border: 0;
}

body, html {
	color: #000;
	font-size: 12px;
	height: 100%;
	font-family: 'Open Sans', sans-serif;
}
body {
	font-size: 100%;
	min-width: 1100px;
	height:auto;
	width:auto;
}
body#login {
	height:auto;
	width:auto;
	background: #f4f4f4 url("../images/admin/csx_img/login-bg.jpg") no-repeat scroll center center / cover;
}
.clear {
	clear: both; 
}
fieldset{ position:relative;}
img{ border:none;}
#mainContainer {
	width:1060px;
	margin:70px auto 15px auto;
	min-height: 100%;
}
* html #mainContainer {
	height: 100%; 
}
/**************************
	PAGE LOGIN
**************************/
#cadre-login{
	width: 355px;
    min-height:235px;
	position:absolute; 
	top:40%; 
	margin-top:-165px;
	left:47%; 
	margin-left:-230px;
	
}
#cadre-login #flashMessage{
	clear:both;
	}
#login-zone {
	background-color: #fff;
	width: 100%;
	clear: both;
	padding-top: 15px;
	border-bottom: 10px solid #8ed3ef;
}
#logo-zone {
	width: 200px;
    height:205px;
    float:left;
    display:inline-block;
    margin-left:10px; padding-top: 10px;
    -moz-box-shadow: 10px 0px 15px -15px #656565;
-webkit-box-shadow: 10px 0px 15px -15px #656565;
-o-box-shadow: 10px 0px 15px -15px #656565;
box-shadow: 10px 0px 15px -15px #656565;
filter:progid:DXImageTransform.Microsoft.Shadow(color=#656565, Direction=90, Strength=15);
}
#login-zone #login-top {
	height:43px;
	
}
#login-zone #login-footer {
	text-align:center;
}
#login-zone #login-footer input.button {
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-image: linear-gradient(bottom, rgb(255,85,0) 16%, rgb(255,144,89) 58%, rgb(255,148,94) 79%);
	background-image: -o-linear-gradient(bottom, rgb(255,85,0) 16%, rgb(255,144,89) 58%, rgb(255,148,94) 79%);
	background-image: -moz-linear-gradient(bottom, rgb(255,85,0) 16%, rgb(255,144,89) 58%, rgb(255,148,94) 79%);
	background-image: -webkit-linear-gradient(bottom, rgb(255,85,0) 16%, rgb(255,144,89) 58%, rgb(255,148,94) 79%);
	background-image: -ms-linear-gradient(bottom, rgb(255,85,0) 16%, rgb(255,144,89) 58%, rgb(255,148,94) 79%);

	background-image: -webkit-gradient(
		linear,
		left bottom,
		left top,
		color-stop(0.16, rgb(255,85,0)),
		color-stop(0.58, rgb(255,144,89)),
		color-stop(0.79, rgb(255,148,94))
	);
	height:25px;
	padding: 0 15px 0px 15px;
	font-size:10px !important;
	color:#fff;
	text-transform:uppercase;
	font-size:12px;
	cursor:pointer;
}
#login-zone #login-top #logo_admin{ 
	background-color: #96cf2d;
	clear:both;
	color:#ffffff;
	text-align:center;
    font-size: 14px;
    font-weight: normal;
    height:30px;
    line-height:30px;
    text-transform: uppercase;
    margin-top:10px;
}
#login-zone #login-content {
	background-color:#fff;
	padding: 0px 24px 10px 24px;
	color:#2b2b2b;
	position: relative;
}
#login-zone #login-content #show_hide_pwrd{
	background: url("../images/admin/csx_img/eye.png") no-repeat scroll 0 0 #f3f3f3;
    cursor: pointer;
    display: inline-block;
    height: 16px;
    position: absolute;
    right: 9%;
    top: 41%;
    width: 16px;
    z-index: 999;
}
#login .attention{
	background: url('../images/admin/csx_img/picto_attention.png') no-repeat 6px 8px #ffcece;
	border: solid 1px #df8f8f;
	color: #fb2c2c;
	padding: 10px 12px 10px 27px;
  margin: 5px 0 10px 0;
}
#login-zone #login-content .validation{
	background: url('../images/admin/csx_img/picto_validation.png') no-repeat 5px 6px #E8FFCA;
	border: solid 1px #BBBBBB;
	padding:5px 10px 5px 29px;
}					
#login-zone #login-content p {
	padding: 0 0 15px;
}
#login-zone #login-content label {
	/*display: none;*/
    font-weight: bold;
    height: 10px;
    width: 130px;
    color: #919191;
}			
#login-zone #login-content input.input-login-text, #login-zone #login-content input.input-login-password, #login-zone #login-content .password {
	padding: 3px 5px 4px 5px;
	font-size: 12px;
	background-color: #f3f3f3;
	border: 1px solid #f3f3f3;
	border-bottom-right-radius: 5px;
    border-top-right-radius: 5px;
	-webkit-border-bottom-right-radius: 5px;
    -webkit-border-top-right-radius: 5px;
	-moz-border-bottom-right-radius: 5px;
    -moz-border-top-right-radius: 5px;
	color: #888888;
	width: 240px !important;
	height: 36px !important;
}
#login-zone #login-content input.input-login-password, #login-zone #login-content .password { background: url('../images/admin/csx_img/puce_password.jpg') 128px center left no-repeat #f3f3f3; }

.clearfix:after {
	content: ".";
	display: block;
	clear: both;
	visibility: hidden;
	line-height: 0;
	height: 0;
}
 
.clearfix {
	display: inline-block;
	position: relative;
}

.login-box-left {display: inline-block;float: left;height: 45px;margin: 0;padding: 0 !important;width: 51px;}
.login-box-left-text {background-color: #8ed3ef;}
.login-box-left-password {background-color: #919191;}
.login-top-default-text {color: #919191;font-size: 13px;margin: 0 24px 10px;}
.person-circle {background: rgba(0, 0, 0, 0) url("../images/admin/csx_img/person-circle.png") no-repeat scroll 0 0;display: block;height: 25px;margin-left: 25%;margin-top: 20%;width: 28px;}
.pass-lock {background: rgba(0, 0, 0, 0) url("../images/admin/csx_img/pass-lock.png") no-repeat scroll 0 0;display: block;height: 25px;margin-left: 25%;margin-top: 20%;width: 28px;}
.login-input-wrapper {margin-bottom: 15px;}
.login-btn-submit {background: #8ed3ef url("../images/admin/csx_img/checked.png") no-repeat scroll 8px 8px;color: #fff;height: 35px;width: 125px;}
.remember-me {float:right; margin-top: 10px;}
.locked_icon {background: rgba(0, 0, 0, 0) url("../images/admin/csx_img/lock.jpg") no-repeat scroll 0 0;height: 21px;vertical-align: middle;width: 21px;display: inline-block;}
.fl_r {float: right;}
.login-identifier-text {background-color: #fff;color: #919191;height: 35px;line-height: 34px;padding-left: 7px;width: 86px;}
.login-identifier-wrapper {margin-top: 80px;}

#feedback1 a {
  display: block;
  position: fixed;
  z-index: 998;
  bottom: 0px;
  left: 10px;
}

#feedback1 img {
  width:212px;
}

/*animation error*/
.ahashakeheartache {
  -webkit-animation: kf_shake 0.6s 1 linear;
  -moz-animation: kf_shake 0.6s 1 linear;
  -o-animation: kf_shake 0.6s 1 linear;
}
@-webkit-keyframes kf_shake {
  0% { -webkit-transform: translate(30px); }
  20% { -webkit-transform: translate(-30px); }
  40% { -webkit-transform: translate(15px); }
  60% { -webkit-transform: translate(-15px); }
  80% { -webkit-transform: translate(8px); }
  100% { -webkit-transform: translate(0px); }
}
@-moz-keyframes kf_shake {
  0% { -moz-transform: translate(30px); }
  20% { -moz-transform: translate(-30px); }
  40% { -moz-transform: translate(15px); }
  60% { -moz-transform: translate(-15px); }
  80% { -moz-transform: translate(8px); }
  100% { -moz-transform: translate(0px); }
}
@-o-keyframes kf_shake {
  0% { -o-transform: translate(30px); }
  20% { -o-transform: translate(-30px); }
  40% { -o-transform: translate(15px); }
  60% { -o-transform: translate(-15px); }
  80% { -o-transform: translate(8px); }
  100% { -o-origin-transform: translate(0px); }
}

/*animation buton connexion*/
.twoToneButton {
  padding:10px 20px;
  background: #8ed3ef;
  border-radius: 4px;
  border: 1px solid darken(#8ed3ef,30%);
  position: relative;
  transition: padding-right .3s ease;
  font-weight: 700;
  color: #fff;
}

.twoToneButton.spinning {
  background-color: #8ed3ef;
  padding-right: 40px;
}

.twoToneButton.spinning:before {
  content: "";
  width: 0px;
  height: 0px;
  border-radius: 50%;
  right: 6px;
  top: 50%;
  position: absolute;
  border: 2px solid darken(#8ed3ef,40%);
  border-right: 3px solid #27ae60;
  animation: rotate360 .5s infinite linear, exist .1s forwards ease ;
}

@keyframes rotate360 { 
  100% {
      transform: rotate(360deg);
  }
}
@keyframes exist { 
  100% {
    width: 15px;
    height: 15px;
    margin: -8px 5px 0 0;
  }
}