 
.em-form section {
    margin-bottom: 20px;
}
.em-form {
  margin: 0;
  outline: none;
  /*box-shadow: 0 0 20px rgba(0,0,0,.3);*/
  font: 13px/1.55 'Open Sans', Helvetica, Arial, sans-serif;
  color: #666;
}
.em-form header {
  display: block;
  padding: 0; 
  /*border-bottom: 1px solid rgba(0,0,0,.1);*/
  /*background: #fff;*/
  font-size: 25px;
  font-weight: 300;
  color: #232323;
  overflow: hidden;
}
.em-form fieldset {
  display: block; 
 
  border: none;
  background: rgba(255,255,255,.9);
}
.em-form fieldset + fieldset {
  border-top: 1px solid rgba(0,0,0,.1);
}
.em-form section {
  margin-bottom: 20px;
}
.em-form footer {
  display: block;
  padding: 15px 0px 15px;

  background: rgba(248,248,248,.9);
}
.em-form footer:after {
  content: '';
  display: table;
  clear: both;
}
.em-form a {
  color: #2da5da;
}
.em-form .label {
  display: block;
  margin-bottom: 6px;
  line-height: 19px;
  font-weight: 400;
}
.em-form .label.col {
  margin: 0;
  padding-top: 10px;
}
.em-form .note {
  margin-top: 6px;
  padding: 0 1px;
  font-size: 11px;
  line-height: 15px;
  color: #999;
}
.em-form .input,
.em-form .select,
.em-form .textarea,
.em-form .radio,
.em-form .checkbox,
.em-form .toggle,
.em-form .button {
  position: relative;
  display: block;
}
.em-form .input input,
.em-form .select select,
.em-form .textarea textarea {
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  width: 100%;
  height: 39px;
  padding: 6px 10px;
  outline: none;
  border-width: 2px;
  border-style: solid;
  border-radius: 0;
  background: #fff;
  font: 15px/23px 'Open Sans', Helvetica, Arial, sans-serif;
  color: #404040;
  appearance: normal;
  -moz-appearance: none;
  -webkit-appearance: none;
}
.em-form .progress {
  float: right;
  margin-top: 10px;
  line-height: 39px;
  color: #232323;
}
.em-form button::-moz-focus-inner {
  padding: 0;
  border: 0;
}


/**/
/* captcha inputs */
/**/
.em-form .input-captcha img {
  position: absolute;
  top: 2px;
  right: 2px;
  border-left: 1px solid #e5e5e5;
}


/**/
/* file inputs */
/**/
.em-form .input-file .button {
  position: absolute;
  top: 4px;
  right: 4px;
  float: none;
  height: 31px;
  margin: 0;
  padding: 0 20px;
  font-size: 13px;
  line-height: 31px;
}
.em-form .input-file .button:hover {
  box-shadow: none;
}
.em-form .input-file .button input {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0;
  font-size: 30px;
  cursor: pointer;
  opacity: 0;
}


/**/
/* selects */
/**/
.em-form .select i {
  position: absolute;
  top: 2px;
  right: 6px;
  width: 28px;
  height: 35px;
  background: #fff;
  pointer-events: none;
}
.em-form .select i:after,
.em-form .select i:before {
  content: '';
  position: absolute;
  right: 10px;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.em-form .select i:after {
  bottom: 12px;
  border-top: 4px solid #404040;
}
.em-form .select i:before {
  top: 12px;
  border-bottom: 4px solid #404040;
}
.em-form .select select {
  padding-right: 28px;
}
.em-form .select-multiple select {
  height: auto;
}


/**/
/* textareas */
/**/
.em-form .textarea textarea {
  height: auto;
  resize: none;
}
.em-form .textarea-resizable textarea {
  resize: vertical; 
}
.em-form .textarea-expandable textarea {
  height: 39px;
}
.em-form .textarea-expandable textarea:focus {
  height: auto;
}


/**/
/* radios and checkboxes */
/**/
.em-form .radio,
.em-form .checkbox
{
  margin-bottom: 4px;
  padding-left: 27px;
  font-size: 15px;
  line-height: 27px;
  color: #404040;
  cursor: pointer;
   
  margin-right:30px;
}

.em-form .radio:last-child,
.em-form .checkbox:last-child {
  margin-bottom: 0;
}
.em-form .radio input,
.em-form .checkbox input {
  position: absolute;
  left: -9999px;
}
.em-form .radio i,
.em-form .checkbox i {
 position: absolute;
    top: 4px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #fff;
    border: 1px solid #5C5C5C;
    border-radius: 4px;
}
.em-form .radio i {
  border-radius: 50%;
}
.em-form .radio input + i:after,
.em-form .checkbox input + i:after {
  position: absolute;
  opacity: 0;
  -ms-transition: opacity 0.1s;
  -moz-transition: opacity 0.1s;
  -webkit-transition: opacity 0.1s;
}
.em-form .radio input + i:after {
  content: '';
  top: 4px;
  left: 4px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}
.em-form .checkbox input + i:after {
    content: '\f00c';
    top: -1px;
    left: -1px;
    width: 26px;
    height: 15px;
    font: normal 20px / 25px FontAwesome;
    text-align: center;
}
}
.em-form .radio input:checked + i:after,
.em-form .checkbox input:checked + i:after {
  opacity: 1;
}
.em-form .inline-group {
  margin: 0 -30px -4px 0;
}
.em-form .inline-group:after {
  content: '';
  display: table;
  clear: both;
}
.em-form .inline-group .radio,
.em-form .inline-group .checkbox {
  float: left;
  margin-right: 30px;
}
.em-form .inline-group .radio:last-child,
.em-form .inline-group .checkbox:last-child {
  margin-bottom: 4px;
}


/**/
/* toggles */
/**/
.em-form .toggle {
  margin-bottom: 4px;
  padding-right: 61px;
  font-size: 15px;
  line-height: 27px;
  color: #404040;
  cursor: pointer;
}
.em-form .toggle:last-child {
  margin-bottom: 0;
}
.em-form .toggle input {
  position: absolute;
  left: -9999px;
}
.em-form .toggle i {
  content: '';
  position: absolute;
  top: 4px;
  right: 0;
  display: block;
  width: 49px;
  height: 17px;
  border-width: 2px;
  border-style: solid;
  border-radius: 12px;
  background: #fff;
}
.em-form .toggle i:after {
  content: 'OFF';
  position: absolute;
  top: 2px;
  right: 8px;
  left: 8px;
  font-style: normal;
  font-size: 9px;
  line-height: 13px;
  font-weight: 700;
  text-align: left;
  color: #5f5f5f;
}
.em-form .toggle i:before {
  content: '';
  position: absolute;
  z-index: 1;
  top: 4px;
  right: 4px;
  display: block;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  opacity: 1;
  -ms-transition: right 0.2s;
  -moz-transition: right 0.2s;
  -webkit-transition: right 0.2s;
}
.em-form .toggle input:checked + i:after {
  content: 'ON';
  text-align: right;
}
.em-form .toggle input:checked + i:before {
  right: 36px;
}


/**/
/* ratings */
/**/
.em-form .rating {
  margin-bottom: 4px;
  font-size: 15px;
  line-height: 27px;
  color: #404040;
}
.em-form .rating:last-child {
  margin-bottom: 0;
}
.em-form .rating input {
  position: absolute;
  left: -9999px;
}
.em-form .rating label {
  display: block;
  float: right;
  height: 17px;
  margin-top: 5px;
  padding: 0 2px;
  font-size: 17px;
  line-height: 17px;
  cursor: pointer;
}


/**/
/* buttons */
/**/
.em-form .button {
    color: #ffffff;
    text-decoration: none;
    font-family: Montserrat, Arial, Helvetica, sans-serif;
    font-weight: 500;
    background: #3E3636;
    border: 1px solid #ffffff;
    transition: all 0.2s ease-in-out;
    font-size: 0.9rem;
    line-height: 1.1rem;
    padding: 16px 55px;
    border-radius: 80px;
    -webkit-appearance: button;
    position: relative;
    overflow: hidden;
    align-items: center;
    justify-content: center;
    display: table;
    margin: 15px 0;
    cursor: pointer;
}
.em-form .button-uploading {
  position: relative;
  color: transparent;
  cursor: default;
}
.em-form .button-uploading:after {
  content: 'Uploading...';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: #fff;
  -o-animation: blink 1s linear infinite;
  -ms-animation: blink 1s linear infinite;
  -moz-animation: blink 1s linear infinite; 
  -webkit-animation: blink 1s linear infinite;
}
@-o-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}
@-ms-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}
@-moz-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}
@-webkit-keyframes blink
{
  0% {opacity: 1}
  50% {opacity: 0.3}
  100% {opacity: 1}
}


/**/
/* icons */
/**/
.em-form .icon-append,
.em-form .icon-prepend {
  position: absolute;
  top: 5px;
  width: 29px;
  height: 29px;
  font-size: 15px;
  line-height: 29px;
  text-align: center;
}
.em-form .icon-append {
  right: 5px;
  padding-left: 3px;
  border-left-width: 1px;
  border-left-style: solid;
}
.em-form .icon-prepend {
  left: 5px;
  padding-right: 3px;
  border-right-width: 1px;
  border-right-style: solid;
}
.em-form .input .icon-prepend + input,
.em-form .textarea .icon-prepend + textarea {
  padding-left: 46px;
}
.em-form .input .icon-append + input,
.em-form .textarea .icon-append + textarea {
  padding-right: 46px;
}
.em-form .input .icon-prepend + .icon-append + input,
.em-form .textarea .icon-prepend + .icon-append + textarea {
  padding-left: 46px;
}


/**/
/* grid */
/**/
.em-form .row {
  margin: 0 -15px;
}
.em-form .row:after {
  content: '';
  display: table;
  clear: both;
}
.em-form .col {
  float: left;
  min-height: 1px;
  padding-right: 15px;
  padding-left: 15px;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
}
.em-form .col-1 {
  width: 8.33%;
}
.em-form .col-2 {
  width: 16.66%;
}
.em-form .col-3 {
  width: 25%;
}
.em-form .col-4 {
  width: 33.33%;
}
.em-form .col-5 {
  width: 41.66%;
}
.em-form .col-6 {
  width: 50%;
}
.em-form .col-7 {
  width: 58.33%;
}
.em-form .col-8 {
  width: 66.67%;
}
.em-form .col-9 {
  width: 75%;
}
.em-form .col-10 {
  width: 83.33%;
}
.em-form .col-11 {
  width: 91.66%;
}
.em-form .col-12 {
  width: 100%;
}
@media screen and (max-width: 600px) {
  .em-form .col {
    float: none;
    width: 100%;
  }
}


/**/
/* tooltips */
/**/
.em-form .tooltip {
  position: absolute;
  z-index: 1;
  left: -9999px;
  padding: 2px 8px 3px;
  font-size: 11px;
  line-height: 16px;
  font-weight: 400;
  background: rgba(0,0,0,0.9);
  color: #fff;
  opacity: 0;
  -ms-transition: margin 0.3s, opacity 0.3s;
  -moz-transition: margin 0.3s, opacity 0.3s;
  -webkit-transition: margin 0.3s, opacity 0.3s;
}
.em-form .tooltip:after {
  content: '';
  position: absolute;
}
.em-form .input input:focus + .tooltip,
.em-form .textarea textarea:focus + .tooltip {
  opacity: 1; 
}

.em-form .tooltip-top-right {
  bottom: 100%;
  margin-bottom: 15px;
}
.em-form .tooltip-top-right:after {
  top: 100%;
  right: 16px;  
  border-top: 4px solid rgba(0,0,0,0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.em-form .input input:focus + .tooltip-top-right,
.em-form .textarea textarea:focus + .tooltip-top-right {
  right: 0;
  left: auto;
  margin-bottom: 5px;
}

.em-form .tooltip-top-left {
  bottom: 100%;
  margin-bottom: 15px;
}
.em-form .tooltip-top-left:after {
  top: 100%;
  left: 16px;
  border-top: 4px solid rgba(0,0,0,0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
.em-form .input input:focus + .tooltip-top-left,
.em-form .textarea textarea:focus + .tooltip-top-left {
  right: auto;
  left: 0;
  margin-bottom: 5px;
}

.em-form .tooltip-right {
  top: 9px;
  white-space: nowrap;
  margin-left: 15px;
}
.em-form .tooltip-right:after {
  top: 6px;
  right: 100%;
  border-top: 4px solid transparent;
  border-right: 4px solid rgba(0,0,0,0.9);
  border-bottom: 4px solid transparent;
}
.em-form .input input:focus + .tooltip-right,
.em-form .textarea textarea:focus + .tooltip-right {
  left: 100%;
  margin-left: 5px;
}

.em-form .tooltip-left {
  top: 9px;
  white-space: nowrap;
  margin-right: 15px;
}
.em-form .tooltip-left:after {
  top: 6px;
  left: 100%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 4px solid rgba(0,0,0,0.9);
}
.em-form .input input:focus + .tooltip-left,
.em-form .textarea textarea:focus + .tooltip-left {
  right: 100%;
  left: auto;
  margin-right: 5px;
}

.em-form .tooltip-bottom-right {
  top: 100%;
  margin-top: 15px;
}
.em-form .tooltip-bottom-right:after {
  bottom: 100%;
  right: 16px;  
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0,0,0,0.9);
  border-left: 4px solid transparent;
}
.em-form .input input:focus + .tooltip-bottom-right,
.em-form .textarea textarea:focus + .tooltip-bottom-right {
  right: 0;
  left: auto;
  margin-top: 5px;
}

.em-form .tooltip-bottom-left {
  top: 100%;
  margin-top: 15px;
}
.em-form .tooltip-bottom-left:after {
  bottom: 100%;
  left: 16px;
  border-right: 4px solid transparent;
  border-bottom: 4px solid rgba(0,0,0,0.9);
  border-left: 4px solid transparent;
}
.em-form .input input:focus + .tooltip-bottom-left,
.em-form .textarea textarea:focus + .tooltip-bottom-left {
  right: auto;
  left: 0;
  margin-top: 5px;
}


/**/
/* normal state */
/**/
.em-form .input input,
.em-form .select select,
.em-form .textarea textarea,
.em-form .radio i,
.em-form .checkbox i,
.em-form .toggle i,
.em-form .icon-append,
.em-form .icon-prepend {
  border-color: #e5e5e5;
  -ms-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
}
.em-form .toggle i:before {
  background-color: #2da5da;  
}
.em-form .rating label {
  color: #ccc;
  -ms-transition: color 0.3s;
  -moz-transition: color 0.3s;
  -webkit-transition: color 0.3s;
}
}
.em-form .button.button-secondary {
  background-color: #b3b3b3;
}
.em-form .icon-append,
.em-form .icon-prepend {
  color: #ccc;
}


/**/
/* hover state */
/**/
.em-form .input:hover input,
.em-form .select:hover select,
.em-form .textarea:hover textarea,
.em-form .radio:hover i,
.em-form .checkbox:hover i,
.em-form .toggle:hover i,
.em-form .ui-slider-handle:hover {
  border-color: #8dc9e5;
}
.em-form .rating input + label:hover,
.em-form .rating input + label:hover ~ label {
  color: #2da5da;
}
.em-form .button:hover {
    opacity: 1;
    color: #3E3636;
    text-decoration: none;
    background: #FFFFFF;
    border: 1px solid #3E3636;
}
}


/**/
/* focus state */
/**/
.em-form .input input:focus,
.em-form .select select:focus,
.em-form .textarea textarea:focus,
.em-form .radio input:focus + i,
.em-form .checkbox input:focus + i,
.em-form .toggle input:focus + i {
  border-color: #2da5da;
}


/**/
/* checked state */
/**/
.em-form .radio input + i:after {
  background-color: #2da5da;  
}
.em-form .checkbox input + i:after {
  color: #2da5da;
}
.em-form .radio input:checked + i,
.em-form .checkbox input:checked + i,
.em-form .toggle input:checked + i {
  border-color: #2da5da;  
}
.em-form .rating input:checked ~ label {
  color: #2da5da; 
}

.em-form .checkbox input:disabled + i +.label_checkbox{
  opacity: 0.7;  
}

/**/
/* error state */
/**/
.em-form .state-error input,
.em-form .state-error select,
.em-form .state-error select + i,
.em-form .state-error textarea,
.em-form .radio.state-error i,
.em-form .checkbox.state-error i,
.em-form .toggle.state-error i,
.em-form .toggle.state-error input:checked + i {
  background: #fff0f0;
}
.em-form .state-error + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #ee9393;
}
.em-form .rating.state-error + em {
  margin-top: -4px;
  margin-bottom: 4px;
}


/**/
/* success state */
/**/
.em-form .state-success input,
.em-form .state-success select,
.em-form .state-success select + i,
.em-form .state-success textarea,
.em-form .radio.state-success i,
.em-form .checkbox.state-success i,
.em-form .toggle.state-success i,
.em-form .toggle.state-success input:checked + i {
  background: #f0fff0;
}
.em-form .state-success + em {
  display: block;
  margin-top: 6px;
  padding: 0 1px;
  font-style: normal;
  font-size: 11px;
  line-height: 15px;
  color: #ee9393;
}
.em-form .note-success {
  color: #6fb679;
}


/**/
/* disabled state */
/**/
.em-form .input.state-disabled input,
.em-form .select.state-disabled,
.em-form .textarea.state-disabled,
.em-form .radio.state-disabled,
.em-form .checkbox.state-disabled,
.em-form .toggle.state-disabled,
.em-form .button.state-disabled {
  cursor: default;
  opacity: 0.5;
}
.em-form .input.state-disabled:hover input,
.em-form .select.state-disabled:hover select,
.em-form .textarea.state-disabled:hover textarea,
.em-form .radio.state-disabled:hover i,
.em-form .checkbox.state-disabled:hover i,
.em-form .toggle.state-disabled:hover i {
  border-color: #e5e5e5;
}


/**/
/* submited state */
/**/
.em-form .message {
  display: none;
  color: #6fb679;
}
.em-form .message i {
  display: block;
  margin: 0 auto 20px;
  width: 81px;
  height: 81px;
  border: 1px solid #6fb679;
  border-radius: 50%;
  font-size: 30px;
  line-height: 81px;
}
.em-form.submited fieldset,
.em-form.submited footer {
  display: none;
}
.em-form.submited .message {
  display: block;
  padding: 25px 30px;
  background: rgba(255,255,255,.9);
  font: 300 18px/27px 'Open Sans', Helvetica, Arial, sans-serif;
  text-align: center;
}


/**/
/* datepicker */
/**/
.ui-datepicker {
  display: none;
  padding: 10px 12px;
  background: rgba(255,255,255,0.9);
  box-shadow: 0 0 10px rgba(0,0,0,.3);
  font: 13px/1.55 'Open Sans', Helvetica, Arial, sans-serif;
  text-align: center;
  color: #666;
}
.ui-datepicker a {
  color: #404040;
}
.ui-datepicker-header {
  position: relative;
  margin: -10px -12px 10px;
  padding: 10px;
  border-bottom: 1px solid rgba(0,0,0,.1);
  font-size: 15px;
  line-height: 27px;
}
.ui-datepicker-prev, 
.ui-datepicker-next {
  position: absolute;
  top: 0;
  display: block;
  width: 47px;
  height: 47px;
  font-size: 15px;
  line-height: 47px;
  text-decoration: none;
  cursor: pointer;
}
.ui-datepicker-prev {
  left: 0;
}
.ui-datepicker-next {
  right: 0;
}
.ui-datepicker-calendar {
  border-collapse: collapse;
  font-size: 13px;
  line-height: 27px;
}
.ui-datepicker-calendar th {
  color: #999;
}
.ui-datepicker-calendar a,
.ui-datepicker-calendar span {
  display: block;
  width: 31px;
  margin: auto;
  text-decoration: none;
  color: #404040;
}
.ui-datepicker-calendar a:hover {
  background: rgba(0,0,0,.05);  
}
.ui-datepicker-calendar span {
  color: #bfbfbf;
}
.ui-datepicker-today a {
  font-weight: 700;
}
.ui-datepicker-calendar .ui-state-active {
  background: rgba(0,0,0,.05);
  cursor: default;  
}
.ui-datepicker-inline {
  border: 2px solid #e5e5e5;
  background: #fff;
  box-shadow: none;
}
.ui-datepicker-inline .ui-datepicker-header {
  line-height: 47px;
}
.ui-datepicker-inline .ui-datepicker-calendar {
  width: 100%;
}


/**/
/* slider */
/**/
.em-form .ui-slider {
  position: relative;
  height: 3px;
  border: 2px solid #e5e5e5;
  background: #fff;
  margin: 12px 6px 26px;
}
.em-form .ui-slider-handle {
  position: absolute;
  width: 15px;
  height: 15px;
  margin: -8px 0 0 -8px;
  border: 2px solid #e5e5e5;
  outline: none;
  background: #fff;
  -ms-transition: border-color 0.3s;
  -moz-transition: border-color 0.3s;
  -webkit-transition: border-color 0.3s;
}


/**/
/* modal */
/**/
.em-form-modal {
  position: fixed;
  z-index: 1;
  display: none;
  width: 400px;
}
.em-form-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
}


/**/
/* bootstrap compatibility */
/**/
.em-form *,
.em-form *:after,
.em-form *:before {
  margin: 0;
  padding: 0;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
}
.em-form .label {
  border-radius: 0;
  font-size: 100%;
  text-align: left;
  white-space: normal;
  color: inherit;

  font-size:16px;

}
.em-form .radio,
.em-form .checkbox {
  font-weight: 400;
}
.em-form .radio + .radio,
.em-form .checkbox + .checkbox {
  margin-top: 0;
}


/************/

.em-form header footer {text-align: center;}
.em-form header footer  img{}
.em-form header footer  h1 img{display:block;}
.em-form header footer  p.slogan{
  margin-top:17px;
  color: #e74e14;
  text-transform: uppercase;
  font-size: 20px;
  font-weight: 600;
  padding-bottom: 10px;
}

.em-form .radio{clear: both;}

.footer_page{
  padding: 10px 20px;
  font-size: 11px;
  font-family: arial,sans-serif;
  max-width: 1000px;
  margin: 0 auto;
  color: #fff;
  /*background: #fff;
  background: rgba(255,255,255,0.8);*/
}
.footer_page p{
	background:#fff;
    background: rgba(255,255,255,0.8);
    color: #6B6B6B;
    padding: 8px;
    border-radius: 5px;
}

img.wide{width: 100%;}
.text_center{text-align:center;}


table{width: 100%;font-size: 13px;}
table tr.header{background: #fd7337; text-align: center;font-size: 1.3em;padding:5px;color: #fff;}
table tr td{padding:3px 5px !important;}
table tr td.dept{text-align: center;}


.em-form table tr td .checkbox i{top:-9px;left:22px;}

tr:nth-child(even) {background: #ececec}
tr:nth-child(odd) {background: #fff}


.em-form .row.explications{margin-top: 30px;text-align: center;}
.em-form .row.explications label,
.titre_explication{

  font-weight: 600;

}

.em-form ul li{
 margin-left: 10px;
  margin-top: 6px;
}
.iti__country-name {
    margin-right: 6px !important;
}
.iti {
    position: relative;
    display: inline-block;
    width: 100%;
}

input#phoneformat{
	padding-left:45px;
}
.em-form .checkbox{clear:both;}
.em-form .all_checkbox{font-weight: bold;}



.em-form .illu_mail,
.em-form .illu_courrier,
.em-form .illu_sms{
  padding-left:60px;
  background: no-repeat left 0;
  line-height: 32px;
}
.em-form .illu_mail{background-image: url(../images/picto1.png);}
.em-form .illu_courrier{background-image: url(../images/picto2.png);}
.em-form .illu_sms{background-image: url(../images/picto3.png);}

.em-form .illu_mail i,
.em-form .illu_courrier i,
.em-form .illu_sms i{
  left: 37px;
  top:8px;
}

.confirmation{text-align: center;font-size:16px;}


@media screen and (max-width: 600px) {
  .body {
    padding: 20px;
  }

  .em-form header footer  {text-align: center;}
  .em-form header  footer h1 img{float:none;width:100%;}
  .em-form header footer  p.slogan{
    margin-top:0;
    color: #e74e14;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 25px;
  }
}
