/***********************************************************************************************************************************/
/* INSCRIPTION *********************************************************************************************************************/
/***********************************************************************************************************************************/

/***********************************************************************************************************************************/
/* BACKGROUNDS *********************************************************************************************************************/
/***********************************************************************************************************************************/

#global{
	background-color: #b6b28d;
	overflow-x: hidden;
}
.nopub div.body-background,
.nopub div.body-background-left,
.nopub div.body-background-right{
	top: 0;
}
div.body-background.body-background{
	background-image:url(/media/equideo/image/background/body/inscription/background-inscription.jpg);
}
div.body-background::before{
	content:"";
	display:block;
	position: absolute;
	top:240px;
	width: 100%;
	background:url(/media/equideo/image/background/body/inscription/overlay-v5.png) no-repeat center top;
	height: 529px;
}
html[lang='fr'] div.body-background::before{
	top:387px;
}
body.body--error div.body-background::before{
	content:none;
}


/***********************************************************************************************************************************/
/* INSCRIPTION ANIMATIONS **********************************************************************************************************/
/***********************************************************************************************************************************/

.inscription-breeds-list{
	position:relative;
	animation: inscriptionPopLeft .75s;
	-webkit-animation: inscriptionPopLeft .75s;
	-moz-animation: inscriptionPopLeft .75s;
	-ms-animation: inscriptionPopLeft .75s;
	-o-animation: inscriptionPopLeft .75s;
}
.inscription-robe-list{
	position:relative;
	animation: inscriptionPopRight .75s;
	-webkit-animation: inscriptionPopRight .75s;
	-moz-animation: inscriptionPopRight .75s;
	-ms-animation: inscriptionPopRight .75s;
	-O-animation: inscriptionPopRight .75s;
}
div.body-background::before{
	-webkit-animation: inscriptionZoomIn .75s;
	-moz-animation: inscriptionZoomIn .75s;
	-ms-animation: inscriptionZoomIn .75s;
	-o-animation: inscriptionZoomIn .75s;
	animation: inscriptionZoomIn .75s;
}
@keyframes inscriptionZoomIn {
    from { transform:scale(2); }
    to   { transform:scale(1); }
}
@keyframes inscriptionPopLeft {
    from {left:-99em; transform:scale(0);}
    to   {left:0; transform:scale(1);}
}
@keyframes inscriptionPopRight {
    from {right:-99em; transform:scale(0);}
    to   {right:0; transform:scale(1);}
}


/***********************************************************************************************************************************/
/* INSCRIPTION TEXTS ***************************************************************************************************************/
/***********************************************************************************************************************************/

.inscription-legend{
	margin: 5px 0 10px;
	font-weight: bold;
}
.inscription .header-login{
	position: absolute;
	top: -150px;
	right: 0;
}

/***********************************************************************************************************************************/
/* INSCRIPTION FORM ****************************************************************************************************************/
/***********************************************************************************************************************************/

.inscription-fieldset{
	width: 345px;
	color: #fff;
}
#inscriptionContent{
	padding-top: 20px;
}
#inscriptionRaces{
	padding-bottom: 13px;
}

#messagedoSignUpStrength{
	background-image: url(/media/sowcle/image/objects/gradient.jpg);
	background-repeat: no-repeat;
	background-position: 0 50%;
	width: 30px;
	margin-right: 3px;
	height: 16px;
	display:none;
}
#wrapperdoSignUpPassword{
	display: none;
}
#messagedoSignUpPassword:empty + #wrapperdoSignUpPassword{
	display: table;
}

/** inscription-horse **************************************************************************************************************/
.inscription-horse{
	width: 300px;
	height: 435px;
	padding: 120px 0 15px;
	box-sizing: border-box;
}


/***********************************************************************************************************************************/
/* INSCRIPTION-BREEDS **************************************************************************************************************/
/***********************************************************************************************************************************/
.inscription .header--connexion{
	position: inherit;
	right: 0;
}
.inscription-breeds .radio{
	visibility: hidden;
}
li.inscription-breeds-item{
	float: right;
	text-align: right;
}
li.inscription-breeds-item:nth-of-type(1){
	right:-21px;
}
li.inscription-breeds-item:nth-of-type(2){
	right:25px;
}
li.inscription-breeds-item:nth-of-type(3){
	right:56px
}
li.inscription-breeds-item:nth-of-type(4){
	right:75px;
}
li.inscription-breeds-item:nth-of-type(5){
	right:87px;
}
li.inscription-breeds-item:nth-of-type(6){
	right:91px;
}
li.inscription-breeds-item:nth-of-type(7){
	right:89px;
}
li.inscription-breeds-item:nth-of-type(8){
	right:79px;
}
li.inscription-breeds-item:nth-of-type(9){
	right:63px;
}
li.inscription-breeds-item:nth-of-type(10){
	right:36px;
}
.inscription-breeds-item-more{
	right:-5px;
}

/** inscription-breeds-item ********************************************************************************************************/

[class^="inscription-breeds-item"]{
	position: relative;
	display: table;
	width: 100%;
    height: 40px;
}
[class^="inscription-breeds-item"] .label{
	display: table-cell;
	width: 100%;
	vertical-align: middle;
	padding-right: 20px;
}
[class^="inscription-breeds-item"]::before,
[class^="inscription-breeds-item"]::after{
	content: "";
	position: absolute;
	top:10px;
    right:0;
    border-width: 2px;
	border-style: solid;
	box-sizing:border-box;
	transition:all 0.15s ease-in-out;
	-webkit-transition:all 0.15s ease-in-out;
	-moz-transition:all 0.15s ease-in-out;
	-ms-transition:all 0.15s ease-in-out;
	-o-transition:all 0.15s ease-in-out;
}

/** radio tick *********************************************************************************************************************/
.inscription-breeds-item::before {
	z-index: 1;
    width: 22px;
    height:22px;
    border-color: #fff;
    border-radius: 50%;
	transform:scale(0);
	-webkit-transform:scale(0);
	-moz-transform:scale(0);
	-ms-transform:scale(0);
	-o-transform:scale(0);
}

/** radio background ***************************************************************************************************************/
.inscription-breeds-item::after {
	background: #fff;
	width: 22px;
	height: 22px;
	cursor: pointer;
	border-color: #d0d0d0;
	border-radius: 50%;
}
.inscription-breeds-item:hover::after{
	background:#c6cedf;
	border-color: #fff;
}

/** inscription-breeds-item selected ************************************************************************************************/
.inscription-breeds-item.selected label{
	font-weight: bold;
	font-size: 18px;
}
.inscription-breeds-item.selected::before {
	border: 5px solid #203561;
	transform:scale(1);
	-webkit-transform:scale(1);
	-moz-transform:scale(1);
	-ms-transform:scale(1);
	-o-transform:scale(1);
}
.inscription-breeds-item.selected::after{
	border-color: #fff;
}

/** inscription-more ****************************************************************************************************/
.inscription-more::before,
.inscription-more::after{
	background-image: url(/media/equideo//image/interface/header/sprite-header.png);
	background-position: right -91px;
	background-repeat: no-repeat;
	content:"";
	position: absolute;
	width: 22px;
	height: 22px;
	border:none;
}
.inscription-more::before{
	background-color:rgba(255, 255, 255, 0.4);
	border-radius: 50%;
}
.inscription-breeds-item-more .label{
	padding-right:40px;
}


/***********************************************************************************************************************************/
/* INSCRIPTION-ROBE ****************************************************************************************************************/
/***********************************************************************************************************************************/

.inscription-robe-list li:nth-of-type(1){
	margin-left: -27px;
}
.inscription-robe-list li:nth-of-type(2){
	margin-left: 27px;
}
.inscription-robe-list li:nth-of-type(3){
	margin-left: 57px;
}
.inscription-robe-list li:nth-of-type(4){
	margin-left: 71px;
}
.inscription-robe-list li:nth-of-type(5){
	margin-left: 73px;
}
.inscription-robe-list li:nth-of-type(6){
	margin-left: 60px;
}
.inscription-robe-list li:nth-of-type(7){
	margin-left: 35px;
}
.inscription-robe-list li:nth-of-type(8){
	margin-left: -9px;
}

/** inscription-robe-icon ***********************************************************************************************************/
.inscription-robe-icon{
	background-repeat: no-repeat;
	background-position: center center;
	position: absolute;
	left:4px;
	top:10px;
	display:block;
	width: 32px;
	height: 32px;
	border-radius: 50%;
	border-width: 2px;
	border-style: solid;
	border-color: #3d251b;
	overflow: hidden;
	box-sizing:border-box;
	transition:all 0.15s;
}
.horse-choice-picto:not(.disabled):hover .inscription-robe-icon{
	border-color: rgba(255, 255, 255, 0.5);
}
.disabled > .inscription-robe-icon{
	background: rgba(255, 255, 255, 0.4);
	border-width: 0;
}
.selected > .inscription-robe-icon{
	left:0;
	top:6px;
	width: 40px;
	height: 40px;
	border-color: #fff;
}

/** inscription-robe-text *********************************************************************************************************/
.inscription-robe-text{
	display: table-cell;
	padding-left: 50px;
	vertical-align: middle;
}

/** horse-choice-picto ************************************************************************************************************/
.horse-choice-picto{
	display: table;
}
.horse-choice-picto.selected{
	font-weight: bold;
}
.horse-choice-picto,
.horse-choice-more{
	position: relative;
	height: 56px;
}


/** horse-choice-more *************************************************************************************************************/
.horse-choice-more{
	line-height: 52px;
	text-indent: 35px;
}
.horse-choice-more::before,
.horse-choice-more::after{
	left: 0;
	top: 15px;
}

/** inscription-competence ********************************************************************************************************/
.inscription-competence{
	background: rgba(74, 84, 58, 0.4);
	display: inline-block;
	height:60px;
	padding: 7px 30px;
	border-radius: 30px;
	box-sizing:border-box;
	color: #fff;
}
.inscription-competence h3{
	font-size: 15px;
	font-weight: inherit;
}
.inscription-competence strong{
	font-size: 18px;
}


/***********************************************************************************************************************************/
/* INSCRIPTION-PROFILE *************************************************************************************************************/
/***********************************************************************************************************************************/

.inscription-profile .input,
.inscription-submit{
	width: 360px;
}
.inscription-profile .select{
	width: 111px;
}
.inscription-profile-login,
.inscription-profile-password,
.inscription-profile-mail,
.inscription-profile-parentmail,
.inscription-profile-birthdate,
.inscription-profile-referer,
.inscription-submit{
	margin-left: 315px;
}
#wrapperdoSignUpEmailSuggestion,
#wrapperdoSignUpParentEmailSuggestion{
	clear: both;
	margin-left: 315px;
	color: #fff;
}

/** inscription-profile-terms *****************************************************************************************************/
.inscription-profile-terms .bogus-checkbox-style-0,
.inscription-profile-tuto .bogus-checkbox-style-0{
	display: inline;
}
.inscription-profile-tuto .bogus-checkbox-style-0{
	display: inline-block;
	position: relative;
	top: 6px;
}
.inscription-profile-terms,
.inscription-profile-tuto{
	position: relative;
	padding-top: 20px;
}
.inscription-profile-terms::before,
.inscription-profile-tuto::before{
	content:"....................................................................................................................................................";
	color:#3D251B;
	display: block;
	font-size: 18px;
	position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

/***********************************************************************************************************************************/
/* ELEVAGE / DEBUT (RESET ACCOUNT) *************************************************************************************************/
/***********************************************************************************************************************************/

body.disconnected.debut #header{
	padding-bottom: 95px;
}

/* FIX */
.fix-inscription-right {
	right: -7px;
}

/***********************************************************************************************************************************/
/* PASSWORD POLICY *************************************************************************************************/
/***********************************************************************************************************************************/

/** only show rules when input is focused *****************************************************************************************/
input:focus + .password-rules-v5{
	display: block;
}

/** password-rules-v5 *****************************************************************************************************/
.password-rules-v5 {
	display: none;
	background: #fdfff0;
	border-radius: 8px;
	position: absolute;
	left: 680px;
	width: 300px;
	color: #82685b;
	box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.password-rules-v5:not(:empty){
	min-height: 42px;
}
.password-rules-v5:not(:empty)::before{
	content: "";
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	transform: rotate(45deg);
	left: -5px;
	background: #fdfff0;
	top: 17px;
}
ul.password-rules-v5{
	padding: 10px;
}
.password-rules-v5 li{
	position: relative;
	padding: 5px 0px 5px 25px;
}
.password-rules-v5 .fieldErrorText{
	font-weight: normal;
	padding: 10px;
	color: #C93A3A;
}
.password-rules-v5 .valid{
	color: #849644;
}
.password-rules-v5 .error {
	color: #C93A3A;
}
.password-rules-v5 .error::before,
.password-rules-v5 .valid::before{
	position: absolute;
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	left: 7px;
	top: 8px;
}
.password-rules-v5 .valid::before{
	background: url(/media/equideo/image/components/fields/text/success.png);
	background-size: cover;
}
.password-rules-v5 .error::before {
	background: url(/media/equideo/image/components/fields/text/error.png);
	background-size: cover;
	opacity: .5;
}