
/* Global Stylings */
label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.input-group input {
  display: block;
  width: 100%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 8px;
}
.btn-next{
  border:1px solid #2fa4ff !important;
  color: #fff !important;
  display: inline-block;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: .375rem .75rem;
    font-size: 17px;
    border-radius: 5px;
      background:#2fa4ff;


}
.btn-next:hover {
  background:#2fa4ff;
  border:none;
   color: #fff !important;
}

.btn-prev{
  border:1px solid #dcdcdc !important;
  color: #000 !important;
  display: inline-block;
    font-weight: 400;
    line-height: 25px;
    text-align: center;
    vertical-align: middle;
    cursor: pointer;
    padding: .375rem .75rem;
    font-size: 17px;
    border-radius: 5px;
      background:#dcdcdc !important;

}
.btn-prev:hover {
  background:#dcdcdc !important;
  border:none;
   color: #000 !important;
}

.width-50 {
  width: 50%;
}

.ml-auto {
  margin-left: auto;
}

.text-center {
  text-align: center;
}

/* Progressbar */
.progressbar {
  position: relative;
  display: flex;
  justify-content: space-between;
  counter-reset: step;
  margin: 2rem 2rem 5rem;
}

.progressbar::before,
.progress {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 4px;
  width: 100%;
  background-color: #dcdcdc;
  z-index: -1;
}

.progress {
  background-color: var(--primary-color);
  width: 0%;
  transition: 0.3s;
}

.progress-step {
  width: 3.1875rem;
  height: 3.1875rem;
  background-color: #dcdcdc;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}

.progress-step::before {
  counter-increment: step;
  content: counter(step);
}

.progress-step::after {
  content: attr(data-title);
  position: absolute;
  top: calc(100% + 0.5rem);
  font-size: 13px;
  color: #666;
}

.progress-step-active {
  background-color: #2fa4ff;
  color: #f3f3f3;
}

/* Form */
.form {
  width: 60%;
  margin: 5% auto;
  border: 1px solid #ccc;
  border-radius: 0.35rem;
  padding: 1.5rem;
}

.form-step {
  display: none;
  transform-origin: top;
  animation: animate 0.5s;
}

.form-step-active {
  display: block;
}

.input-group {
  margin: 20px 20px 50px 20px;
}

.input-group {
  
    width: 95% !important;
    margin:auto;
}

@keyframes animate {
  from {
    transform: scale(1, 0);
    opacity: 0;
  }
  to {
    transform: scale(1, 1);
    opacity: 1;
  }
}

/* Button */
.btns-group {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.btn {
  padding: 0.75rem;
  display: block;
  text-decoration: none;
  background-color: var(--primary-color);
  color: #f3f3f3;
  text-align: center;
  border-radius: 0.25rem;
  cursor: pointer;
  transition: 0.3s;
}
.btn:hover {
  box-shadow: 0 0 0 2px #fff, 0 0 0 3px var(--primary-color);
}

/*custom font*/
@import url(http://fonts.googleapis.com/css?family=Montserrat);

/*basic reset*/
* {margin: 0; padding: 0;}

input, select {
        padding: 10px;
        width: 98%;
        font-size: 17px;
        font-family: Raleway;
        border: 1px solid #bbb;
        border-radius: 5px;
        margin-bottom: 10px;
        line-height: 30px;
    }

body {
  font-family: montserrat, arial, verdana;
}
/*form styles*/
#msform {
  width: auto;
  margin: 100px auto;
  text-align: center;
  position: relative;
}
#msform fieldset {
  background: ;
  border: 0 none;
  border-radius: 3px;
  box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  box-sizing: border-box;
  width: 80%;
  margin: 0 10%;
  
  /*stacking fieldsets above each other*/
  position: relative;
}
/*Hide all except first fieldset*/
#msform fieldset:not(:first-of-type) {
  display: none;
}
/*inputs*/
#msform input, #msform textarea {
  padding: 15px;
  border: 1px solid #ccc;
  border-radius: 3px;
  margin-bottom: 10px;
  width: 100%;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2C3E50;
  font-size: 13px;
}
/*buttons*/
#msform .action-button {
  width: 100px;
  background: #15b7ff;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 1px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px;
}
#msform .action-button:hover, #msform .action-button:focus {
  box-shadow: 0 0 0 2px white, 0 0 0 3px #15b7ff;
}
/*headings*/
.fs-title {
  font-size: 15px;
  text-transform: uppercase;
  color: #2C3E50;
  margin-bottom: 10px;
}
.fs-subtitle {
  font-weight: normal;
  font-size: 13px;
  color: #666;
  margin-bottom: 20px;
}
/*progressbar*/
#progressbar {
  margin-bottom: 30px;
  overflow: hidden;
  /*CSS counters to number the steps*/
  counter-reset: step;
}
#progressbar li {
  list-style-type: none;
  color: #111;
  text-transform: uppercase;
  font-size: 9px;
  width: 33.33%;
  float: left;
  position: relative;
}
#progressbar li:before {
  content: counter(step);
  counter-increment: step;
  width: 20px;
  line-height: 20px;
  display: block;
  font-size: 10px;
  color: #333;
  background: white;
  border-radius: 3px;
  margin: 0 auto 5px auto;
}
/*progressbar connectors*/
#progressbar li:after {
  content: '';
  width: 100%;
  height: 2px;
  background: white;
  position: absolute;
  left: -50%;
  top: 9px;
  z-index: -1; /*put it behind the numbers*/
}
#progressbar li:first-child:after {
  /*connector not needed before the first step*/
  content: none; 
}
/*marking active/completed steps green*/
/*The number of the step and the connector before it = green*/
#progressbar li.active:before,  #progressbar li.active:after{
  background: #3498db;
  color: white;
}
.border{
  

    
    border-width: 1px;
    border-color: #9C9C9C !important;
    border-style: solid; 
    cursor: pointer;
    padding: 20px;
    text-align: center;
    margin: 0px auto 7px;
    line-height: 200%;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -o-border-radius: 3px;
    -ms-border-radius: 5px;
    border-radius: 3px;
   height: 300px;
  width: 100%;
    float: none !important;
    line-height: 30px;
    font-size: 16px;
    color: #111;


}

.border:hover{box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; }
.border label {
    font-size: 18px;
    line-height: 23px;
    float: left !important;
    width: 100%;
    display: block;
    font-weight: 400;
    position: relative;
}
[type=radio] { 
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* IMAGE STYLES */
[type=radio] + img {
  cursor: pointer;
}

/* CHECKED STYLES */
[type=radio] +img + div {
  display: block;
  border-radius: 27px;
  border: 1px solid #2fa4ff;
  color: #2fa4ff;
  line-height: 35px;
  margin-top: 35px;
}

[type=radio]:checked +img + div {
  display: block;
  border-radius: 27px;
  background: #2fa4ff;
  color: #fff;
line-height: 35px;
}

* {
  box-sizing: border-box;
}





h1 {
  text-align: center;  
}

input {
  padding: 10px;
  width: 100%;
  font-size: 17px;
  font-family: Raleway;
  border: 1px solid #bbb;
  border-radius: 5px;
  margin-bottom: 10px
}

/* Mark input boxes that gets an error on validation: */
input.invalid {
  background-color: #ffdddd;
}

/* Hide all steps by default: */
.tab {
  display: none;
}

button {
  background-color: #ff3b5c;
  color: #ffffff;
  border: none;
  padding: 10px 20px;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  border-radius: 4px;
}
h2.titre {
  color: #111;
  border: none;
  padding: 10px 0;
  font-size: 17px;
  font-family: Raleway;
  cursor: pointer;
  text-align: center;
  margin-bottom: 20px
}

h2.titre div {
  display: block;
  border-radius: 5px;
  background: #3498db;
  color: #fff;
  line-height: 30px;
  margin: 0 auto 10px;
  width: 30px;
  text-align: center;
  }
button:hover {
  opacity: 0.8;
}

#prevBtn {
  background-color: #3498db;
  opacity: 50%;
}

/* Make circles that indicate the steps of the form: */
.step {
  height: 15px;
  width: 15px;
  margin: 0 2px;
  background-color: #ffb231;
  border: none;  
  border-radius: 50%;
  display: inline-block;
  opacity: 0.5;
}

.step.active {
  opacity: 1;
}

/* Mark the steps that are finished and valid: */
.step.finish {
  background-color: #ffb231;
}


#regForm {
  background-color: #ffffff;
  margin: 0 auto;
  font-family: Raleway;
  padding: 20px 0 20px 0;
 
}
.article{
  display: inline-block; width: 250px; text-align: left;
}
.prix{
    color: #06283d; display: inline-block; width: 100px; text-align: right; font-weight: bold;
}
@media only screen and (max-width: 700px)  {

.form {
  width: 100%;
  margin: 0 auto;
  border: 1px solid #ccc;
  border-radius: 0.35rem;
  padding: 1.5rem;
}
#regForm {
    background-color: #ffffff;
    margin: 0 auto;
    font-family: Raleway;
    padding: 20px 0 20px 0;
    
}


.col-lg-3best{
    width: 50% !important;
  }
  img, svg {
    vertical-align: middle;
    width: 100% !important;
}


.border{
   height: auto !important;
}

.les2{line-height: 18px !important;
}

#regForm {
    background-color: #ffffff;
    margin: none !important;
}
.logo
{
  width: 77% !important;
}
#regForm{
  margin-top: -60px !important;
}
}


