@font-face {
  font-family: 'T1 Body Font Bold';
  src: url(fonts/toyota-display/ToyotaType-Semibold.eot);
  src: url(fonts/toyota-display/ToyotaType-Semibold.woff2) format('woff2'),
    url(fonts/toyota-display/ToyotaType-Semibold.woff) format('woff'),
    url(fonts/toyota-display/ToyotaType-Semibold.ttf) format('truetype'),
    url(fonts/toyota-display/ToyotaType-Semibold.svg) format('svg');
  font-weight: 400;
}
@font-face {
  font-family: 'T1 Body Font Regular';
  src: url(fonts/toyota-display/ToyotaType-Regular.eot);
  src: url(fonts/toyota-display/ToyotaType-Regular.woff2) format('woff2'),
    url(fonts/toyota-display/ToyotaType-Regular.woff) format('woff'),
    url(fonts/toyota-display/ToyotaType-Regular.ttf) format('truetype'),
    url(fonts/toyota-display/ToyotaType-Regular.svg) format('svg');
  font-weight: 400;
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}

/*------------------------------ REINIT INPUT CSS ------------------------------*/

@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}

body {
  background-color: #ffffff;
}
h2 {
  font-family: 'T1 Body Font Regular';
  font-size: 28px;
  color: #282830;
  line-height: 40px;
  text-align: left;
  text-transform: none;
}
h3 {
  font-family: 'T1 Body Font Regular';
  font-size: 21px;
  color: #282830;
  line-height: 30px;
  text-align: left;
  text-transform: none;
}
p {
  font-family: 'T1 Body Font Regular';
  font-size: 15px;
  color: #282830;
  line-height: 21px;
  text-indent: 0;
}
.bold {
  font-family: 'T1 Body Font Bold';
}
.select {
  font-size: 20px;
  line-height: normal;
}
.small {
  font-size: 13px;
  line-height: 19px;
}
.extrasmall {
  font-size: 11px;
  color: #a7a7a7;
  line-height: 1.1;
}
.icon {
  color: #e50000;
}
h2.underline {
  border-bottom: 2px solid #e50000;
  width: fit-content;
  padding-bottom: 20px;
  line-height: 1.3;
  margin-top: 20px;
}
.title {
  padding: 15px 0 70px 0;
}
#choixmodele h2.underline {
  margin-top: 30px;
}
#choixmodele .title {
  padding: 40px 0 40px 0;
}
.numberlist {
  color: #e50000;
  display: block;
  border-radius: 50px;
  border: 2px solid #e50000;
  height: 40px;
  width: 40px;
  text-align: center;
  float: left;
  margin-right: 10px;
  line-height: 1.1;
}

/*------------------------------ TABS FORM -----------------------------*/

/* Hide all steps by default: */
.tab {
  display: none;
}
/* Make circles that indicate the steps of the form: */
.step {
  height: 10px;
  width: 10px;
  margin: 0 2px;
  background-color: #eff0f0;
  border: none;
  border-radius: 50%;
  display: inline-block;
}

.step.active {
  background-color: #cecfd0;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #e50000;
}

.form-errors {
  font-size: 13px;
  background-color: #ffdddd;
  font-weight: 700;
  color: #e50000;
  text-align: center;
  display: inline;
  padding: 7px 15px;
  position: absolute;
  right: 15px;
  top: -44px;
  display: none;
}

/*------------------------------ NAV FORM -----------------------------*/

#nextBtn,
#prevBtn,
#start,
#retoursite,
#retourmodeles {
  background-color: #e50000;
  color: #ffffff;
  border: none;
  border-radius: 1000px;
  padding: 0 30px;
  height: 46px;
  min-width: 120px;
  text-align: center;
  text-overflow: ellipsis;
  font-size: 16px;
  line-height: 46px;
  cursor: pointer;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

#nextBtn:disabled {
  background-color: rgb(182, 77, 84);
}

#nextBtn:not(:disabled):hover,
#start:hover,
#retoursite:hover {
  background-color: #ba020d;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#prevBtn,
#retourmodeles {
  background-color: #eff0f0;
  color: #282830;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#prevBtn:hover,
#retourmodeles:hover {
  background-color: #cecfd0;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
#navglobal {
  position: fixed;
  bottom: 20px;
}
#nav {
  width: 100%;
}
#navsteps {
  text-align: center;
  margin-top: 15px;
}
#navnext {
  text-align: right;
}

/*------------------------------ INPUTS -----------------------------*/

/*------ TEXT ------*/

input[type='text'],
textarea {
  border: none;
  border-radius: 4px;
  background: #f0f0f0;
  caret-color: #e50000;
  height: 41px;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  width: 100%;
  padding-left: 15px;
}
textarea {
  height: auto;
  border-radius: 0px 0px 4px 4px;
  outline: 2px solid #eff0f0;
  outline-offset: -1px;
}
::placeholder {
  color: #282830;
  opacity: 0.5;
}
input[type='text']:focus,
textarea:focus {
  background: #fff;
  -webkit-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  -moz-box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.15);
  outline: none;
}

/*------ RADIO ------*/

input[type='radio'] {
  position: relative;
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #e6e6e6;
  cursor: pointer;
  margin-right: 12px;
  float: left;
}
input[type='radio']:checked,
input[type='radio']:focus {
  width: 18px;
  height: 18px;
  border-radius: 100%;
  border: 2px solid #e50000;
  outline: none;
}
input[type='radio']:checked:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  left: 4px;
  top: 4px;
  background: #e50000;
  border-radius: 100%;
}

/*------ CHECKBOX ------*/

input[type='checkbox'] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 2px solid #e6e6e6;
  cursor: pointer;
  margin-right: 12px;
  top: 3px;
}
input[type='checkbox']:checked {
  width: 18px;
  height: 18px;
  border: 2px solid #e50000;
}
input[type='checkbox']:focus {
  outline: none;
}
input[type='checkbox']:checked:before {
  content: '';
  position: absolute;
  width: 6px;
  height: 6px;
  left: 4px;
  top: 4px;
  background: #e50000;
}

/*------ CHECKBOX MOTIFS ------*/

/*------ DROPDOWN ------*/

.dropdown {
  background-color: #eff0f0;
  border-radius: 4px;
  cursor: pointer;
  margin-bottom: 20px;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.dropdown-toggle {
  padding: 11px 18px 15px;
  display: block;
  width: 100%;
}
.dropdown-toggle .icon {
  width: 20px;
  font-size: 20px;
  line-height: 46px;
  position: absolute;
  top: 0;
  right: 10px;
}
.dropdown:hover a {
  text-decoration: none;
}
.dropdown:hover {
  background: #e4e4e4;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.dropdown.show {
  background: #e4e4e4;
  border-radius: 4px 4px 0 0;
}
.dropdown-menu {
  width: 100%;
  background-color: #f0f0f0;
  border: none;
  border-radius: 0;
  margin-top: 0;
  padding: 0;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.dropdown-menu li {
  -webkit-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.05);
  -moz-box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.05);
  box-shadow: inset 0 -1px 0 0 rgba(0, 0, 0, 0.05);
}
.dropdown-item,
.dropdown-menu > li > a {
  display: block;
  padding: 11px 18px 15px;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.dropdown-menu > li > a:focus,
.dropdown-menu > li > a:hover {
  background-color: #e4e4e4;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}

/*------ LABEL ------*/

label {
  cursor: pointer;
  font-weight: inherit;
}
label p {
  display: inline;
}

/*------ ERRORS ------*/

input.invalid {
  background-color: #ffdddd;
}
#errors {
  color: #e50000;
  font-size: 13px;
  margin-top: 20px;
  font-weight: 800;
}
.errmsg {
  color: #e50000;
  font-size: 13px;
  opacity:0;
}
.errmsg.active{
  opacity:1;
}


/*------------------------------ HOME -----------------------------*/

.bg {
  background-color: #eff0f0;
  width: 45%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
#homepage .title {
  margin-top: 60px;
}
.actions {
  margin-bottom: 67px;
  text-align: center;
}
.actions img {
  margin-bottom: 15px;
}
.ctastart {
  position: fixed;
  bottom: 20px;
}
.ctastart h2 {
  margin-bottom: 25px;
}
.ctastart #textinside {
  margin-bottom: 25px;
}

/*------------------------------ CHOIX MODELE -----------------------------*/

.modele li {
  height: 125px;
}
#choixmodele label p {
  display: block;
}
#form ul li img {
  height: 48px;
  display: block;
  margin: 0 auto;
  margin-bottom: 13px;
  width: 100%;
  height: auto;
}

.dropdown.modele li {
  height: auto;
}
ul.dropdown-menu.show {
  transform: translate3d(0px, 50px, 0px) !important;
}

/*------------------------------ CHOIX CONCESSIONNAIRE -----------------------------*/

.map {
  -webkit-transition: fill 0.3s ease-out;
  -moz-transition: fill 0.3s ease-out;
  -o-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}
.map:hover {
  cursor: pointer;
  fill: #cecfd0;
  -webkit-transition: fill 0.3s ease-out;
  -moz-transition: fill 0.3s ease-out;
  -o-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}
.map.active {
  fill: #e50000;
  -webkit-transition: fill 0.3s ease-out;
  -moz-transition: fill 0.3s ease-out;
  -o-transition: fill 0.3s ease-out;
  transition: fill 0.3s ease-out;
}
.concessionnaire.inputs {
  margin-bottom: 110px;
}

/*------------------------------ CHOIX MOTIF -----------------------------*/

.motif .row {
  margin-bottom: 30px;
}
.motif label,
.jesuis label {
  width: 100%;
  outline: 2px solid #eff0f0;
  outline-offset: -1px;
  position: relative;
  padding: 0;
}
.motif label {
  margin-bottom: 30px;
}
label#demandetextarea {
  margin-bottom: 0;
}
.motif label p,
.jesuis label p {
  display: block;
  text-align: center;
}
.motif p {
  font-size: 18px;
}
.motif input[type='checkbox'],
.jesuis input[type='radio'] {
  width: 0;
  height: 0;
  border: none;
}
.motif input[type='checkbox'] {
  position: initial;
  pointer-events: none;
}
.motif input[type='checkbox']:hover,
.jesuis input[type='radio']:hover {
  background-color: #eff0f0;
  -webkit-transition: background-color 0.3s ease-out;
  -moz-transition: background-color 0.3s ease-out;
  -o-transition: background-color 0.3s ease-out;
  transition: background-color 0.3s ease-out;
}
.motif input[type='checkbox']:checked,
.jesuis input[type='radio']:checked {
  border: none;
  margin: 0;
  width: 100%;
}
.motif input[type='checkbox']:checked:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0;
  width: 100%;
  height: 199px;
  background: transparent;
  border: 2px solid #e50000;
}
.iconsvg {
  text-align: center;
  margin-bottom: 20px;
}
.iconsvg img {
  height: 62px;
}
.labelcontenu {
  width: 85%;
  margin: 0 auto;
  height: 174px;
  flex-direction: column;
  display: flex;
  justify-content: center;
}
textarea#autredemande {
  width: 100%;
}
.mini {
  font-size: 11px;
  line-height: 1.4;
  text-align: center;
  background-color: #282830;
  color: #fff;
  padding: 12px;
  position: relative;
  border-radius: 7px;
}
.mini:before {
  content: '';
  display: inline-block;
  height: 0;
  width: 0;
  border-top: 15px solid transparent;
  border-left: 15px solid #282830;
  border-bottom: 15px solid transparent;
  position: absolute;
  left: 197px;
  top: calc(50% - 15px);
  bottom: 50px;
}
.tooltipform {
  position: absolute;
  top: 50px;
  right: 291px;
  width: 200px;
}

/*------------------------------ CHOIX COORDONNEES -----------------------------*/

#choixcoordonnees {
  margin-bottom: 90px;
}
#news label {
  margin-right: 15px;
}
.jesuis > div {
  margin-bottom: 25px;
}
.moyen > div {
  margin-bottom: 10px;
}
.jesuis div p,
.moyen div p {
  margin-bottom: 5px;
}
.jesuis > p,
.moyen > p {
  margin-bottom: 25px;
}
.align-self-end {
  float: right;
}

.jesuis .labelcontenu {
  height: 116px;
}
.jesuis input[type='radio']:checked:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0;
  width: 100%;
  height: 116px;
  background: transparent;
  border: 2px solid #e50000;
}
.jesuis .radio-inline + .radio-inline {
  margin-top: 0;
  margin-left: 0px;
}
.jesuis .custom-gutter > label:first-child {
  margin-right: 8px;
}
.jesuis .custom-gutter > .radio-inline + .radio-inline:last-child {
  margin-left: 8px;
}

.jesuis #status .labelcontenu {
  height: 164px;
}
.jesuis #status input[type='radio']:checked:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  border-radius: 0;
  width: 100%;
  height: 164px;
  background: transparent;
  border: 2px solid #e50000;
}
.jesuis #status.custom-gutter > label:first-child {
  margin-right: 4px;
}
.jesuis #status.custom-gutter > .radio-inline + .radio-inline:last-child {
  margin-left: 4px;
}
.jesuis .iconsvg {
  margin-bottom: 10px;
}

#choixcoordonnees .title {
  padding-bottom: 30px;
}

#tel {
  position: absolute;
  top: 28px;
  left: 18px;
  z-index: 1;
  background-color: #fff;
  padding: 9px;
}
input[type='text'].input-field {
  padding-left: 49px;
}
.adresse input[type='text'].input-field {
  padding-left: 10px;
  margin-bottom: 0;
}
#mail {
  position: absolute;
  top: 28px;
  left: 18px;
  z-index: 1;
  background-color: #fff;
  padding: 12px 9px;
}

/*------------------------------ THX PAGE -----------------------------*/

#thx .container {
  height: 100%;
}
#thx #ratings_form_container {
  margin-left: 50%;
  margin-top: 70px;
}
#thx #ratings_form_container #stars_form {
  margin-bottom: 20px;
}
.hoverStars {
  color: #e50000;
  cursor: pointer;
}
#thx #ratings_form_container #ratings_form_textarea {
  height: 90px;
}
.bgthx {
  background-image: url(img/concession.jpg);
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  background-size: cover;
  height: 100%;
  background-position: center;
}
#seller {
  position: fixed;
  bottom: 0;
  left: 90px;
}
#mercibloc {
  border-top: 1px solid #282830;
  border-bottom: 1px solid #282830;
  padding: 80px;
}
#mercibloc:after {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 70px 70px 0 0;
  border-color: #282830 transparent transparent transparent;
  bottom: -69px;
  left: 60px;
}
#mercibloc:before {
  content: '';
  position: absolute;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 68px 68px 0 0;
  border-color: #fff transparent transparent transparent;
  bottom: -67px;
  left: 61px;
  z-index: 1;
}
#mercibloc,
#mercibloc h2 {
  text-align: center;
}
#mercibloc h2 {
  margin-bottom: 15px;
}
#mercibloc p {
  margin-bottom: 45px;
}
#retoursite,
#retourmodeles {
  display: block;
  margin: 0 auto;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .d-none {
    display: none;
  }
  #mercicontainer {
    width: 100%;
    display: block;
    margin-top: 40px;
  }
  #choixmodele label p {
    font-size: 13px;
  }
  .dropdown.modele {
    display: block;
  }
  .inputs.modele {
    display: none;
  }
  #navglobal {
    position: fixed;
    bottom: 20px;
    width: calc(100% - 46px);
    z-index: 9;
  }
  #choixmotif {
    margin-bottom: 150px;
  }
  .moyen .col-sm-2.andor{
    padding-top: 15px;
    padding-bottom: 15px;
  }
  .form-errors {
    font-size: 13px;
    background-color: #ffdddd;
    font-weight: 700;
    color: #e50000;
    text-align: center;
    display: inline;
    padding: 7px 15px;
    position: absolute;
    right: 15px;
    top: -95px;
    display: none;
  }
  #navprev {
    padding-left: 0;
  }
  #navnext {
    padding-right: 0;
  }
  #choixcoordonnees {
    margin-bottom: 150px;
  }
}

@media (min-width: 768px) {
  .d-sm-block {
    display: block;
  }
  .d-sm-none {
    display: none;
  }
  #mercicontainer {
    width: 100%;
    margin-top: 40px;
  }
  #choixmodele label p {
    font-size: 13px;
  }
  .dropdown.modele {
    display: none;
  }
  .inputs.modele {
    display: block;
  }
  .moyen .col-sm-2.andor{
    padding-top: 38px;
    padding-bottom: 0;
  }
  .moyen .col-sm-2 p {
    text-align: center;
  }
  #choixmotif {
    margin-bottom: 100px;
  }
}

@media (min-width: 992px) {
  .d-md-block {
    display: block;
  }
  .d-md-none {
    display: none;
  }
  #mercicontainer {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 58%;
    height: 100%;
    margin-top: 0px;
  }
  #choixmotif {
    margin-bottom: 0px;
  }
}

@media (min-width: 1200px) {
  .d-lg-block {
    display: block;
  }
  .d-lg-none {
    display: none;
  }
  #choixmodele label p {
    font-size: 15px;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  #thx #ratings_form_container {
    margin-left: 30%;
    margin-bottom: 30px;
    width: 70%;
    margin-top: 30px;
  }
  #thx #ratings_form_container #stars_form {
    font-size: 28px;
    line-height: normal;
  }
  #thx #ratings_form_container p {
    font-size: 21px;
    line-height: normal;
  }
}
@media (max-width: 767px) {
  #thx #ratings_form_container {
    margin-left: 0%;
    margin-bottom: 30px;
    width: 100%;
    margin-top: 30px;
  }
  #seller {
    display: none;
  }
  #mercibloc:before,
  #mercibloc:after {
    content: '';
    display: none;
  }
  #thx #ratings_form_container #stars_form {
    text-align: center;
    font-size: 28px;
    line-height: normal;
  }
  #thx #ratings_form_container p {
    text-align: center;
    font-size: 21px;
    line-height: normal;
  }
  #mercibloc {
    padding: 20px 0;
  }
  #retourmodeles {
    font-size: 14px;
  }
}
