form, fieldset { padding: 0px; margin: 0px; }

.email_verif { display: none; }
.empty { border: 2px solid #ff0000 !important; }

.formerror {
	font-size: 1rem;
	font-weight: 600;
	color: #ff0000;

	background-color: #e8e8e8;
	border-left: 5px solid #bbbbbb;

	padding: 20px;
	margin-left: 20px;
	margin-bottom: 20px;
}


.formMsgErreur, .formMsgEnvoye {
	font-size: 1rem;
	font-weight: 500;
	text-align: center;
	padding: 10px;
	/*border: 1px solid #ff0000;*/
	margin-bottom: 10px;
}

.formMsgErreur { color: #ff0000; }
.formMsgEnvoye { color: #61B329; }

.formMsgErreur i { font-size: 2rem; color: #ff0000; }
.formMsgErreur_str { padding: 0px 20px; }


/* iOS Style checkboxes */
input[type="checkbox"].ios-switch:not(:checked),
input[type="checkbox"].ios-switch:checked {
	position: absolute;
	opacity: 0;
}

input[type="checkbox"].ios-switch + label {
	width: 47px;
	height: 23px;
	border-radius: 999px;
	background: #cccccc;
	overflow: hidden;
	transition-duration: .4s;
	transition-property: padding, width, background-color;
	margin-top: 4px;

	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
}

input[type="checkbox"].ios-switch:checked + label {
	padding-left: 24px;
	width: 23px;
	background-color: #97CD74;

	-webkit-box-sizing: content-box;
	        box-sizing: content-box;
}

input[type="checkbox"].ios-switch + label:before {
	content: '';
	display: block;
	width: 17px;
	height: 17px;
	margin: 3px;
	border-radius: inherit;
	background: white;
}

input[type="checkbox"].ios-switch:active + label,
input[type="checkbox"].ios-switch:focus + label {
	box-shadow: 0 0 .3em 1px lightgray,
							0 1px 1px hsla(0, 0%, 100%, .8);
}
/* /iOS Style checkboxes */


/* Input wrapper */
.input_wrapper { position: relative; }

.input_wrapper .placeholder {
	color: #aaaaaa;
	font-size: 1rem;

	pointer-events: none;
	position: absolute;
	top: 0;
	left: 0;
	padding: 10px;

	-webkit-transition: all 0.2s ease 0s;
	        transition: all 0.2s ease 0s;
}

.input_wrapper .placeholder i.fa-asterisk { color: #ff0000; font-size: 12px; vertical-align: middle; margin-bottom: 4px; }

.form_fs .input_wrapper input,
.form_fs .input_wrapper input[type="text"],
.form_fs .input_wrapper textarea,
.form_fs .input_wrapper input.filled,
.form_fs .input_wrapper input[type="text"].filled,
.form_fs .input_wrapper textarea.filled,
.input_wrapper input,
.input_wrapper input[type="text"],
.input_wrapper input.filled,
.input_wrapper input[type="text"].filled,
.input_wrapper textarea,
.input_wrapper textarea.filled { padding-top: 16px; padding-bottom: 4px; }

.input_wrapper input:focus ~ .placeholder,
.input_wrapper input.filled ~ .placeholder,
.input_wrapper textarea:focus ~ .placeholder,
.input_wrapper textarea.filled ~ .placeholder { padding: 0 10px; top: -1px; font-size: 11px; color: #aaaaaa; }

.input_wrapper input:focus ~ .placeholder i.fa-asterisk,
.input_wrapper input.filled ~ .placeholder i.fa-asterisk,
.input_wrapper textarea:focus ~ .placeholder i.fa-asterisk,
.input_wrapper textarea.filled ~ .placeholder i.fa-asterisk { font-size: 9px; }
/* /Input wrapper */


/* form_fs */
.form_fs label {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	font-weight: bold;
	color: #000000;
	letter-spacing: 1px;
	line-height: 130%;

	margin-bottom: 10px;
}

.form_fs input[type="text"], .form_fs input[type="password"], .form_fs textarea, .form_fs select {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	background-color: #ffffff;
	color: #333333;
	letter-spacing: 0px;
	line-height: 130%;

	display: inline;
	border: 1px solid #aaaaaa;

	-webkit-box-sizing: border-box;
					box-sizing: border-box;

	-webkit-border-radius: 3px;
					border-radius: 3px;

	margin-bottom: 20px;
	padding: 10px;
	width: 100%;
}

.form_fs input[type="text"].medium,  .form_fs select.medium { width: 130px; }
.form_fs input[type="text"].small, .form_fs select.small { width: 90px; }

.form_fs input[type="text"]::-webkit-input-placeholder,
.form_fs textarea::-webkit-input-placeholder {
	/* WebKit browsers */
  color:    #d5d5d5;
}
.form_fs input[type="text"]:-moz-placeholder,
.form_fs textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
  color:    #d5d5d5;
  opacity:  1;
}
.form_fs input[type="text"]::-moz-placeholder,
.form_fs textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
  color:    #d5d5d5;
  opacity:  1;
}
.form_fs input[type="text"]:-ms-input-placeholder,
.form_fs textarea:-ms-input-placeholder {
	/* Internet Explorer 10+ */
  color:    #d5d5d5;
}

.form_fs input[type="text"]:focus, .form_fs input[type="password"]:focus, .form_fs textarea:focus, .form_fs select:focus {
	border: 1px solid #58595b;
	-moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	box-shadow:  0 0 3px rgba(0,0,0,.2);
}
/* /form_fs */


/* Recherche de produits */
.topsearch_container { width: 300px; float: right; }

#topsearch_form {
	width: 0%;
	height: 30px;
	min-width: 30px;

	position: relative;
	float: right;
	overflow: hidden;

-webkit-transition: width 0.3s;
   -moz-transition: width 0.3s;
    -ms-transition: width 0.3s;
     -o-transition: width 0.3s;
        transition: width 0.3s;
}

#topsearch_form input[type="text"] {
	height: 30px;
	width: 100%;
	top: 0;
	right: 0;
	border: 0;
	outline: 0;
	margin: 0;
	padding-left: 10px;
	background-color: #ffffff;

	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-size: 1rem;
	color: #333333;

-webkit-box-sizing: border-box;
	 -moz-box-sizing: border-box;
				box-sizing: border-box;

-webkit-border-radius: 3px;
	 -moz-border-radius: 3px;
				border-radius: 3px;
}

#topsearch_form input[type="text"]::-webkit-input-placeholder { color: #a5a5a5; }
#topsearch_form input[type="text"]:-moz-placeholder { color: #a5a5a5; }
#topsearch_form input[type="text"]::-moz-placeholder { color: #a5a5a5; }
#topsearch_form input[type="text"]:-ms-input-placeholder { color: #a5a5a5; }

#topsearch_form.topsearch_form-open { width: 100%; }

#topsearch_form .topsearch_searchicon {
	width: 28px;
	height: 28px;
	line-height: 28px;

	display: block;
	position: absolute;
	top: 0;
	right: 0;
	padding: 0px;
	margin: 0px;
	border: 1px solid #fff;
	outline: 0px;
	text-align: center;
	cursor: pointer;
	background-color: #4e7422;
}
/* /Recherche de produits */

/* INFOLETTRE */
.infolettre_fs input[type="text"],
.infolettre_fs textarea {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	background-color: #ffffff;
	color: #333333;
	letter-spacing: 0px;
	line-height: 130%;

	display: inline;
	border: 1px solid #aaaaaa;

	-webkit-box-sizing: border-box;
					box-sizing: border-box;

	-webkit-border-radius: 3px;
					border-radius: 3px;

	margin-bottom: 20px;
	padding: 10px;
	width: 100%;
	max-width: 450px;
	display: inline-block;
}

.infolettre_fs input[type="text"]::-webkit-input-placeholder,
.infolettre_fs textarea::-webkit-input-placeholder {
	/* WebKit browsers */
  color:    #999999;
}
.infolettre_fs input[type="text"]:-moz-placeholder,
.infolettre_fs textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
  color:    #999999;
  opacity:  1;
}
.infolettre_fs input[type="text"]::-moz-placeholder,
.infolettre_fs textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
  color:    #999999;
  opacity:  1;
}
.infolettre_fs input[type="text"]:-ms-input-placeholder,
.infolettre_fs textarea:-ms-input-placeholder {
	/* Internet Explorer 10+ */
  color:    #999999;
}

.infolettre_fs input[type="text"]:focus,
.infolettre_fs textarea:focus {
	border: 1px solid #999999;
}
/* INFOLETTRE */

/* Booking form */
.steps_fs label {
	display: inline-block;
	font-weight: normal;
}

.steps_fs input[type="text"], .steps_fs textarea, .steps_fs select {
	font-family: 'Roboto', Helvetica, Arial, sans-serif;
	font-weight: 400;
	font-size: 1rem;
	background-color: #ffffff;
	color: #333333;
	letter-spacing: 0px;
	line-height: 100%;

	display: inline;
	border: 1px solid #aaaaaa;
	margin-bottom: 0px;
	padding: 6px 12px;

	-webkit-border-radius: 3px;
	   -moz-border-radius: 3px;
	        border-radius: 3px;

	-webkit-box-sizing: border-box;
		 -moz-box-sizing: border-box;
					box-sizing: border-box;

	width: 100%;
	max-width: 400px;
}

.steps_fs select { padding: 3px 8px; }

.steps_fs input[type="text"].medium,  .steps_fs select.medium { width: 130px; }
.steps_fs input[type="text"].small, .steps_fs select.small { width: 90px; }

.steps_fs input[type="text"]::-webkit-input-placeholder,
.steps_fs textarea::-webkit-input-placeholder {
	/* WebKit browsers */
  color:    #d5d5d5;
}
.steps_fs input[type="text"]:-moz-placeholder,
.steps_fs textarea:-moz-placeholder {
	/* Mozilla Firefox 4 to 18 */
  color:    #d5d5d5;
  opacity:  1;
}
.steps_fs input[type="text"]::-moz-placeholder,
.steps_fs textarea::-moz-placeholder {
	/* Mozilla Firefox 19+ */
  color:    #d5d5d5;
  opacity:  1;
}
.steps_fs input[type="text"]:-ms-input-placeholder,
.steps_fs textarea:-ms-input-placeholder {
	/* Internet Explorer 10+ */
  color:    #d5d5d5;
}

.steps_fs input[type="text"]:disabled, .steps_fs input[type="password"]:disabled, .steps_fs textarea:disabled, .steps_fs select:disabled {
	color: #bbbbbb;
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
}

.steps_fs input[type="text"]:read-only, .steps_fs input[type="password"]:read-only, .steps_fs textarea:read-only {
	color: #bbbbbb;
	background-color: #f5f5f5;
	border: 1px solid #cccccc;
}

.steps_fs input[type="text"]:focus, .steps_fs textarea:focus, .steps_fs select:focus {
	border: 1px solid #58595b;
	-webkit-box-shadow: 0 0 3px rgba(0,0,0,.2);
	   -moz-box-shadow: 0 0 3px rgba(0,0,0,.2);
	        box-shadow:  0 0 3px rgba(0,0,0,.2);
}

.steps_fs input[type="text"].dim_fields { width: 56px; }
.steps_fs input[type="text"].dim_fields::-webkit-input-placeholder { color: #c75407; font-weight: 600; }
.steps_fs input[type="text"].dim_fields:-moz-placeholder { color: #c75407; font-weight: 600; opacity: 1; }
.steps_fs input[type="text"].dim_fields::-moz-placeholder { color: #c75407; font-weight: 600; opacity: 1; }
.steps_fs input[type="text"].dim_fields:-ms-input-placeholder { color: #c75407; font-weight: 600; }


/* #Base 1008 Grid */
@media only screen and (min-width: 1008px) and (max-width: 1259px) {
}


/* #Base  756 Grid */
@media only screen and (min-width: 756px) and (max-width: 1007px) {
	.steps_fs input[type="text"], .steps_fs textarea, .steps_fs select { padding: 4px 8px; }
	.steps_fs select { padding: 1px 5px; }
}


/* #Mobile (Landscape) */
@media only screen and (min-width: 480px) and (max-width: 755px) {
	.steps_fs input[type="text"], .steps_fs textarea, .steps_fs select { padding: 4px 8px; }
	.steps_fs select { padding: 1px 5px; }
}


/*  #Mobile (Portrait) */
@media only screen and (max-width: 479px) {
	.steps_fs input[type="text"], .steps_fs textarea, .steps_fs select { padding: 3px 6px; }
	.steps_fs select { padding: 1px 4px; }
}

/* /Booking form */
