.get_quote {
    margin: 20px auto;
    padding: 30px 60px;
    background: white;
    box-shadow: 0 0 6px 0px #c0c0c0;
    border-radius: 50px;
}
.form-step {
    display: none
}
.form-step.active {
    display: block;
}
.form-step label span {
    width: 100%;
}
.form-step label {
    display: flex;
    flex-direction: column;
    gap:8px;
}
.form-step span input, .form-step span select, .form-step span textarea {
    display: block;
    width: 100%;
    background-color: #fff;
    background-image: none;
    box-shadow: 0 0 0 1px #c0c0c0;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    line-height: 50px;
    height: 50px;
    padding: 0 30px;
    font-size: 17px;
    color: #000;
    border-radius: 50px;
    border:0;
}
.form-step span textarea {
    display: block;
    width: 100%;
    background-color: #fff;
    background-image: none;
    box-shadow: 0 0 0 1px #c0c0c0;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    line-height: 50px;
    height: 250px;
    padding: 0 30px;
    font-size: 17px;
    color: #000;
    border-radius: 50px;
    border:0;
}
.form-step span select option {
    border-radius: 50px;
}

.form-step span input:focus, .form-step span select:focus {
    border: 1px solid #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)!important;
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6)!important;

}
.form-step span input.active {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: 0 0 0 1px #c0c0c0;
    box-shadow: 0 0 0 1px #c0c0c0
}

button.apply {
    float: left;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background: #00378E;
    line-height: 48px;
    padding: 0 35px;
    border-radius: 25px;
    margin-left: 25px;
    margin-top: 5px;
    cursor: pointer;
    border: 0;
}
.steps-bar {
    width: 100%;
    height: 10px;
    border: 1px #c0c0c0 solid;
    background-color: white;
}
.steps-bar p {
    width: 100%;
    display: block;
}
.steps-bar p span {
    display: block;
    position: relative;
    background: #00378E;
    height: 10px;
}
.steps-slide {
    margin-bottom: 30px;
}