/*
 * Breakpoint mixins to ease development conditiosn
 */
form.slideform-form {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }
  form.slideform-form .title-sm {
    font-size: 22px;
    text-align: center;
    color: #FFF;
}
form.slideform-form small {
    display: block;
    text-align: center;
}
  form.slideform-form .slideform-track {
    overflow: hidden;
    width: 100%;
	height: auto;}
  form.slideform-form .slideform-wrapper {}
  form.slideform-form .slideform-slide {
   padding: 0;width: 100%;position: absolute;
top: 0;
left: 50px;
height: 0;
opacity: 0;
visibility: hidden;}
 form.slideform-form .slideform-slide.visible {
  transition-property: all;
  transition-duration: 0.25s;
  transition-timing-function: cubic-bezier(0.2, 1.13, 0.38, 1.43);
  transition-delay: 0s;
  left: 0;
  height: auto;
  opacity: 1;
  visibility: visible;
}
    /*form.slideform-form .slideform-slide.active {
      display: block;animation: slide-in 0.5s forwards;
    -webkit-animation: slide-in 0.5s forwards; }*/
    @media screen and (max-width: 767px) {
      /*form.slideform-form .slideform-slide {
        display: block; }*/ }
  /*form.slideform-form .slideform-group {
    max-width: 600px;
    padding: 30px 15px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box; }*/
    @media screen and (max-width: 767px) {
      form.slideform-form .slideform-group {
        margin: auto; } }
  form.slideform-form .slideform-btn {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    height: 35px;
    padding: 0 20px;
    font-size: 16px;
    margin-right: 10px;
    margin-top: 10px;
    border-radius: 6px;
    background: var(--secondary-color);
border: 1px solid var(--primary-color);
    color: #fff;
    -webkit-transition: all .15s ease;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    outline: none;
	width: 100%;
	max-width: none;
	text-transform: uppercase;
	font-weight: 700;
	margin-bottom: 30px;	}
    form.slideform-form .slideform-btn:active {
      border-color: #dd6600;
      background: #dd6600; }
    form.slideform-form .slideform-btn:disabled {
    background: #d5d5d5;
border: 1px solid #d8d8d8;
color:#919191;cursor: not-allowed;
}
  form.slideform-form input[type='text'], form.slideform-form input[type='email'], form.slideform-form input[type='tel'], form.slideform-form input[type='number'], form.slideform-form textarea {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
    border-radius: none;
    background: #FFF;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    color: #777777; }
    form.slideform-form input[type='text']:focus, form.slideform-form input[type='email']:focus, form.slideform-form input[type='tel']:focus, form.slideform-form input[type='number']:focus, form.slideform-form textarea:focus {
      border-bottom: 1px solid #ffb677; }
  form.slideform-form input[type='text'], form.slideform-form input[type='email'], form.slideform-form input[type='tel'], form.slideform-form input[type=number] {
    height: 40px; }
    form.slideform-form input[type='text'].small, form.slideform-form input[type='email'].small, form.slideform-form input[type='tel'].small, form.slideform-form input[type=number].small {
      height: 40px;
      padding: 10px 15px;
      font-size: 16px; }
  form.slideform-form .options-list label {
    display: block;
    margin: 0;
    padding: 10px 0; }
  form.slideform-form .options-list input[type=checkbox], form.slideform-form .options-list input[type=radio] {
    position: absolute;
    z-index: -1;
    visibility: hidden;
    width: auto;
    height: auto; }
    form.slideform-form .options-list input[type=checkbox]:checked + span:after, form.slideform-form .options-list input[type=radio]:checked + span:after {
      opacity: 1;
      -webkit-transform: scale(1);
      transform: scale(1); }
    form.slideform-form .options-list input[type=checkbox] + span, form.slideform-form .options-list input[type=radio] + span {
      display: inline-block;
      position: relative;
      font-weight: 600; }
      form.slideform-form .options-list input[type=checkbox] + span:before, form.slideform-form .options-list input[type=radio] + span:before {
        content: '';
        margin-right: 10px;
        display: inline-block;
        width: 30px;
        height: 30px;
        vertical-align: middle;
        background: #f6f6f6;
        border: 1px solid #E0E0CE; }
      form.slideform-form .options-list input[type=checkbox] + span:after, form.slideform-form .options-list input[type=radio] + span:after {
        font-family: 'slideform' !important;
        display: inline-block;
        content: '\f00c';
        font-size: 22px;
        color: #FF7F11;
        width: 30px;
        height: 30px;
        position: absolute;
        left: 0;
        text-align: center;
        line-height: 30px;
        opacity: 0;
        -webkit-transform: scale(3);
        transform: scale(3);
        -webkit-transition: all .3s ease;
        transition: all .3s ease; }
  form.slideform-form .options-list input[type=radio] + span:before {
    border-radius: 50%; }
  form.slideform-form .options-list input[type=radio] + span:after {
    content: '';
    width: 16px;
    height: 16px;
    background: #FF7F11;
    border-radius: 50%;
    top: 8px;
    left: 8px; }
  form.slideform-form .options-buttons label {
    margin: 0 5px 15px 0;
    display: inline-block;
    text-transform: none; }
  form.slideform-form .options-buttons input[type=radio], form.slideform-form .options-buttons input[type=checkbox] {
    position: absolute;
    left: -9999px; }
    form.slideform-form .options-buttons input[type=radio]:checked + span, form.slideform-form .options-buttons input[type=checkbox]:checked + span {
      background: #FF7F11;
      border: 1px solid #FF7F11;
      color: #fff; }
  form.slideform-form .options-buttons input[type=checkbox] + span, form.slideform-form .options-buttons input[type=radio] + span {
    font-size: 16px;
    line-height: 20px;
    display: inline-block;
    background: #f6f6f6;
    border: 1px solid #E0E0CE;
    padding: 5px 20px;
    width: auto;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
    border-radius: 4px;
    font-weight: 600; }
  form.slideform-form span.error {
    color: #FFC18A;
    display: block;
    font-size: 14px;
    margin-top: 2px;
    text-transform: none; }
  form.slideform-form .slideform-condition {
    display: none; }
  form.slideform-form .slideform-footer {
    background: #fff;
    padding: 0 15px;
    border-top: 1px solid #f6f6f6;
    z-index: 1000;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 50px; }
    form.slideform-form .slideform-footer .slideform-btn {
      height: 30px;
      display: inline-block;
      line-height: 30px;
      font-size: 20px;
      margin: 0 5px; }
  form.slideform-form .slideform-progress-bar {
    height: 10px;
    border-radius: 5px;
    max-width: 200px;
    background: #f6f6f6;
    display: inline-block;
    overflow: hidden;
    line-height: 0;
    -webkit-box-flex: 1;
    -ms-flex: 1;
    flex: 1;
    margin-right: 20px; }
    form.slideform-form .slideform-progress-bar span {
      display: inline-block;
      width: 0%;
      height: 100%;
      background: #FF7F11;
      -webkit-transition: all 0.5s ease;
      transition: all 0.5s ease; }

.lp-input-group {
 margin-top:10px;
 background:#fff;
 position:relative;
 padding:5px 40px 5px 12px;
 -webkit-border-radius:6px;
 border-radius:6px;
 overflow:hidden;
 min-height:50px;
 display:-webkit-box;
 display:-webkit-flex;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-align:center;
 -webkit-align-items:center;
 -ms-flex-align:center;
 align-items:center;
 border:2px solid #e3e3e3
}
.lp-input-group:hover {
  background: #68ff00;
  border:2px solid #5de102;
}
.lp-input-group:first-child {
 margin-top:0
}
.lp-input-group.centered span {
 -webkit-box-flex:1;
 -webkit-flex-grow:1;
 -ms-flex-positive:1;
 flex-grow:1;
 text-align:center
}
.lp-input-group .lp-input-arrow {
 width:18px;
 height:18px;
 background:url(../img/shape2.png) center no-repeat;
 -webkit-background-size:cover;
 background-size:cover;
 margin-left:auto
}
.lp-input-group .lp-input-label {
 display:-webkit-box;
 display:-webkit-flex;
 display:-ms-flexbox;
 display:flex;
 -webkit-box-flex:1;
 -webkit-flex-grow:1;
 -ms-flex-positive:1;
 flex-grow:1;
 -webkit-box-align:center;
 -webkit-align-items:center;
 -ms-flex-align:center;
 align-items:center
}
.lp-input-group .lp-input-label span {
 color:#333;
 margin-left:21px;
 font-size: 15px;
 font-weight:500
}
.lp-input-group .lp-input-label img {
 display:inline-block;
 width:auto;
 max-width:37px;
 height:auto;
 max-height:40px
}
.lp-input-group label {
 width:100%;
 height:100%;
 display:block;
 position:absolute;
 cursor:pointer;
 top:0;
 left:0
}
.lp-input-group input {
 visibility:hidden;
 width: 0;
}

@font-face {
  font-family: 'slideform';
  src: url("../fonts/slideform.eot?p7vt47");
  src: url("../fonts/slideform.eot?p7vt47a#iefix") format("embedded-opentype"), url("../fonts/slideform.ttf?p7vt47") format("truetype"), url("../fonts/slideform.woff?p7vt47") format("woff"), url("../fonts/slideform.svg?p7vt47#slideform") format("svg");
  font-weight: normal;
  font-style: normal; }

[class^="icon-"], [class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'slideform' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }


.icon-coin-euro:before {
  content: "\e93c";
}
.icon-user-check:before {
  content: "\e975";
}
.icon-gift:before {
  content: "\e99f";
}
.icon-clipboard:before {
  content: "\e9b8";
}
.icon-circle-right:before {
  content: "\ea42";
}
.icon-checkbox-checked:before {
  content: "\ea52";
}
.icon-checkbox-unchecked:before {
  content: "\ea53";
}


.step1_reply {
  display: none;
}
.selected-formation {
    text-align: center;
    background: rgba(255,255,255,0.4);
    padding: 10px 0;
}

#lead {
  min-height: 500px;
}

.radiobtn {
  position: relative;
  display: block;
}
.radiobtn label {
  display: block;
  background: #FFF;
  color: #444;
  padding: 10px 20px;
  border: none;
  margin-bottom: 5px;
  cursor: pointer;
}
.radiobtn label:after, .radiobtn label:before {
  content: "";
  position: absolute;
  right: 11px;
  top: 11px;
  width: 20px;
  height: 20px;
  border-radius: 3px;
  background: var(--secondary-color);
}
.radiobtn label:before {
  background: transparent;
  -webkit-transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
  transition: 0.1s width cubic-bezier(0.075, 0.82, 0.165, 1) 0s, 0.3s height cubic-bezier(0.075, 0.82, 0.165, 2) 0.1s;
  z-index: 2;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: 13px;
  background-position: center;
  width: 0;
  height: 0;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNS4zIDEzLjIiPiAgPHBhdGggZmlsbD0iI2ZmZiIgZD0iTTE0LjcuOGwtLjQtLjRhMS43IDEuNyAwIDAgMC0yLjMuMUw1LjIgOC4yIDMgNi40YTEuNyAxLjcgMCAwIDAtMi4zLjFMLjQgN2ExLjcgMS43IDAgMCAwIC4xIDIuM2wzLjggMy41YTEuNyAxLjcgMCAwIDAgMi40LS4xTDE1IDMuMWExLjcgMS43IDAgMCAwLS4yLTIuM3oiIGRhdGEtbmFtZT0iUGZhZCA0Ii8+PC9zdmc+);
}
.radiobtn input[type="radio"] {
  display: none;
  position: absolute;
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.radiobtn input[type="radio"]:checked + label {
  background: var(--secondary-color);
  color: #FFF;
}
.radiobtn input[type="radio"]:checked + label:after {
  background: var(--primary-color);
}
.radiobtn input[type="radio"]:checked + label:before {
  width: 20px;
  height: 20px;
}

@-webkit-keyframes blink {
  0% {
    background-color: #fdcb77;
  }
  10% {
    background-color: #fdcb77;
  }
  11% {
    background-color: #fdd591;
  }
  29% {
    background-color: #fdd591;
  }
  30% {
    background-color: #fdcb77;
  }
  50% {
    background-color: #fdd591;
  }
  45% {
    background-color: #fdcb77;
  }
  50% {
    background-color: #fdd591;
  }
  100% {
    background-color: #fdcb77;
  }
}

@keyframes blink {
  0% {
    background-color: #fdcb77;
  }
  10% {
    background-color: #fdcb77;
  }
  11% {
    background-color: #fdd591;
  }
  29% {
    background-color: #fdd591;
  }
  30% {
    background-color: #fdcb77;
  }
  50% {
    background-color: #fdd591;
  }
  45% {
    background-color: #fdcb77;
  }
  50% {
    background-color: #fdd591;
  }
  100% {
    background-color: #fdcb77;
  }
}

.lead-form-header {
  padding-top: 10px; margin-bottom: 0px; padding-left: 10px;padding: 10px;line-height: 30px;text-align: left;text-transform: uppercase;color: #FFF;
}
.lead-form-header strong {
    background: var(--secondary-color);
    padding: 0px 10px;
    color: #FFF;
}

.radiobtn label p {
    margin: 0 !important;
    color: #807e7e;
}

.select_wrap{
  width: 100%;
  margin: 15px auto;
  position: relative;
  user-select: none;
}

.select_wrap ul {
  list-style: none !important;
}
.select_wrap .default_option{
  background: #fff;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
}

.select_wrap .default_option li{
    padding: 10px 20px;
}

.select_wrap .default_option:before{
    content: "";
    position: absolute;
    top: 18px;
    right: 18px;
    width: 6px;
    height: 6px;
    border: 2px solid;
    border-color: transparent transparent #555555 #555555;
    transform: rotate(-45deg);
}

.select_wrap .select_ul{
  position: absolute;
  top: 55px;
  left: 0;
  width: 100%;
  background: #fff;
  display: none;
}

.select_wrap .select_ul li{
  padding: 10px 20px;
  cursor: pointer;
}

.select_wrap .select_ul li:first-child:hover{
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}

.select_wrap .select_ul li:last-child:hover{
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px;
}

.select_wrap .select_ul li:hover{
  background: #fff4dd;
}

.select_wrap .option{
  display: flex;
  align-items: center;
}

.select_wrap .option .left_icon{
  background: url('https://i.imgur.com/oEZu0sK.png') no-repeat 0 0;
  width: 32px;
  height: 32px;
  margin-right: 15px;
}

.select_wrap .option.pizza .left_icon{
  background-position: 0 0;
}

.select_wrap .option.burger .left_icon{
  background-position:  0 -35px;
}

.select_wrap .option.ice .left_icon{
  background-position: 0 -72px;
}

.select_wrap .option.fries .left_icon{
 background-position: 0 -111px;
  width: 25px;
}

.select_wrap.active .select_ul{
  display: block;
}

.select_wrap.active .default_option:before{
  top: 25px;
  transform: rotate(-225deg);
}

.politique {
    color: #FFF;
    font-size: 13px;
    text-align: justify;
}

.text-md {
    font-size: 14px;
    color: #FFF;
    text-align: center;
}


.checkbox,
.radio {
    display: inline-block;
    margin-bottom: 15px;
}
.checkbox:hover,
.radio:hover {
    cursor: pointer;
}
.checkbox .fa,
.radio .fa {
    width: 1em;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px/1 slideform;
        font-size: 14px;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.indent {
    padding-left: 25px;
}
.indent .fa {
    margin-left: -50px;
    margin-right: 3px;
}
.checkbox input[type="checkbox"],
.radio input[type="radio"] {
    visibility: hidden;
}
.checkbox input[type="checkbox"] + i:before,
.radio input[type="radio"] + i:before {
    content: "\ea53";
    position: relative;
    bottom: -4px;
    margin-right: 5px;
    color: #FFF;
}
.checkbox:hover input[type="checkbox"] + i:before,
.radio:hover input[type="radio"] + i:before {
    color: white;
}
.checkbox input[type="checkbox"]:checked + i:before,
.radio input[type="radio"]:checked + i:before {
    content: "\ea52";
    color: white;
}
.checkbox input[type="checkbox"]:disabled + i:before,
.checkbox input[type="checkbox"]:disabled:checked + i:before,
.radio input[type="radio"]:disabled + i:before,
.radio input[type="radio"]:disabled:checked + i:before {
    color: #ddd;
}
.radio input[type="radio"] + i:before {
    content: "\f1db";
}
.radio input[type="radio"]:checked + i:before {
    content: "\f058";
}
.checkbox-xs input[type="checkbox"] + i:before,
.radio-xs input[type="radio"] + i:before {
    bottom: 0;
}
.checkbox-xs.indent,
.radio-xs.indent {
    padding-left: 20px;
}
.checkbox-xs.indent .fa,
.radio-xs.indent .fa {
    margin-left: -20px;
}

.interactive-form__text-input-row {
    margin-bottom: 10px;
}

.interactive-form__text-input-row label {
    color: #FFF;
}

.slideform-slide h5 {
    color: #FFF;
}
