body{
    font-family: 'Open Sans', sans-serif;
}
#cotationForm {
    max-width: 800px;
    background-color: #ffffff;
    margin: 40px auto;
    padding: 40px;
    box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
    border-radius: 12px;
}
#cotationForm .form-header {
    gap: 5px;
    text-align: center;
    font-size: .9em;
}
#cotationForm .form-header .stepIndicator {
    position: relative;
    flex: 1;
    padding-bottom: 30px;
}
#cotationForm .form-header .stepIndicator.active {
    font-weight: 600;
}
#cotationForm .form-header .stepIndicator.finish {
    font-weight: 600;
    color: #009688;
}
#cotationForm .form-header .stepIndicator::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    z-index: 9;
    width: 20px;
    height: 20px;
    background-color: #d5efed;
    border-radius: 50%;
    border: 3px solid #ecf5f4;
}
#cotationForm .form-header .stepIndicator.active::before {
    background-color: #a7ede8;
    border: 3px solid #d5f9f6;
}
#cotationForm .form-header .stepIndicator.finish::before {
    background-color: #009688;
    border: 3px solid #b7e1dd;
}
#cotationForm .form-header .stepIndicator::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 8px;
    width: 100%;
    height: 3px;
    background-color: #f3f3f3;
}
#cotationForm .form-header .stepIndicator.active::after {
    background-color: #a7ede8;
}
#cotationForm .form-header .stepIndicator.finish::after {
    background-color: #009688;
}
#cotationForm .form-header .stepIndicator:last-child:after {
    display: none;
}
#cotationForm input {
    padding: 15px 20px;
    width: 100%;
    font-size: 1em;
    border: 1px solid #e3e3e3;
    border-radius: 5px;
}
#cotationForm input:focus {
    border: 1px solid #009688;
    outline: 0;
}
#cotationForm .invalid {
    border: 1px solid #ffaba5;
}
#cotationForm .step {
  display: none;
}
#cotationForm .form-footer{
    overflow:auto;
    gap: 20px;
}
#cotationForm .form-footer button{
    background-color: #009688;
    border: 1px solid #009688 !important;
    color: #ffffff;
    border: none;
    padding: 13px 30px;
    font-size: 1em;
    cursor: pointer;
    border-radius: 5px;
    flex: 1;
    margin-top: 5px;
}
#cotationForm .form-footer button:hover {
  opacity: 0.8;
}

#cotationForm .form-footer #prevBtn {
    background-color: #fff;
    color: #009688;
}

.intl-tel-input {
    display: table-cell;
  }
  .intl-tel-input .selected-flag {
    z-index: 4;
  }
  .intl-tel-input .country-list {
    z-index: 5;
  }
  .input-group .intl-tel-input .form-control {
    border-top-left-radius: 4px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 4px;
    border-bottom-right-radius: 0;
  }

  .error {
    font-size: 10px;
    color : red 
  }

  @media only screen and (max-width: 600px) {
    #cotationForm {
        max-width: 100%;
        background-color: #ffffff;
        margin: 40px auto;
        padding: 10px;
        box-shadow: 0px 6px 18px rgb(0 0 0 / 9%);
        border-radius: 12px;
        overflow: scroll;
    }
    .prix_mobile{
        font-size: 15px;
        font-weight: bolder;
        text-align : right;
    }
  }