.estimer-title-container {
    width: 100%;
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    overflow: hidden;
}
@media screen and (max-width: 550px) {
    .estimer-title-container {
        min-height: 200px!important;

    }
}
.estimer-title-content {
    width: calc(100% - 20px);

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.estimer-line {
    height: 2px;
    min-width: 20px;
    width: 40%;
    max-width: 250px;

    background-color: var(--main-blue);
}
.estimer-title {
    font-family: "Source Sans Pro";
    font-size: 50px;
    font-style: normal;
    font-weight: 300;
    line-height: 63px;
    text-align: center;
    color: #2B5C73;
    text-transform: uppercase;

    margin: 0;
}
@media screen and (max-width: 550px) {
    .estimer-title {
        font-size: 40px;
        line-height: 50px;

    }
}
@media screen and (max-width: 450px) {
    .estimer-title {
        font-size: 30px;
        line-height: 40px;

    }
}
@media screen and (max-width: 350px) {
    .estimer-title {
        font-size: 20px;
        line-height: 30px;

    }
}
.estimer-title span {
    color: var(--variant-blue-02);
    font-weight: bold;
}


.etape-container {
    width: 100%;

    margin-top: 75px;
    margin-bottom: 200px;

    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 100px;
}

/* Formulaire */
.estimer-main-container {
    width: 100%;

    align-items: center;
}
.form-section {
    width: 100%;
    max-width: 1365px;

    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.form-section .title {
    width: 100%;
    height: 50px;

    background-color: #2B5C73;

    display: flex;
    justify-content: center;
    align-items: center;
}
.form-section .title p {
    margin: 0;

    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;

    font-family: "Source Sans Pro";
    font-size: 30px;
    color: white;
    text-transform: uppercase;
}
@media screen and (max-width: 500px) {
    .form-section .title p {
        font-size: 20px;

        padding: 0 10px;
    }
}

.estimer-main-container .form-content {
    width: 80%;
    max-width: 740px;

    padding-top: 20px;
    padding-bottom: 100px;

    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.estimer-main-container label {
    width: 330px;

    margin-top: 25px;
    margin-bottom: 25px;

    font-family: "Source Sans Pro";
    font-size: 20px;
    color: #2B5C73;

    display: inline-block;
    padding: 5px 10px;
    cursor: pointer;
}
.estimer-main-container input[type=radio], input[type=checkbox] {
    display: none;
}
.estimer-main-container label span {
    position: relative;
    line-height: 22px;
}
.estimer-main-container label span:before,
.estimer-main-container label span:after {
    content: '';
}

.estimer-main-container label span:before {
    border: 1px solid #2B5C73;
    width: 20px;
    height: 20px;
    margin-right: 20px;
    display: inline-block;
    vertical-align: top;
}

.estimer-main-container label span:after {
    background: #2B5C73;
    width: 14px;
    height: 14px;
    position: absolute;
    top: 5px;
    left: 4px;
    transition: 300ms;
    opacity: 0;
}

.estimer-main-container label input:checked+span:after {
    opacity: 1;
}

.inline {
    width: 100%;

    display: flex;
    justify-content: center;
    align-items: center;
}
.estimer-main-container .textarea-style {
    width: calc(100% - 90px);

    font-size: 15px;
}
@media screen and (max-width: 450px) {
    .estimer-main-container .textarea-style {
        width: calc(100% - 40px);

    }
}
.estimer-main-container .textarea-style textarea {
    width: 100%;
    height: 150px;
    min-height: 40px;
    min-width: 300px;

    resize: vertical;

    border: 1px solid #2B5C73;
}
@media screen and (max-width: 450px) {
    .estimer-main-container .textarea-style textarea {
        min-width: auto;
    }
}

.estimer-main-container .select-style {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;

    font-size: 15px;
    color: #9AA1A5;
}
.estimer-main-container .select-style select {
    height: 44px;
    width: 311px;

    margin-top: 2px;

    border: 1px solid #2B5C73;

    text-align-last: center;

    font-size: 20px;
    color: #2B5C73;
}
.estimer-main-container .select-style select option {
    text-align: center;
}

.estimer-main-container .input-text-style {
    font-size: 15px;
    color: #9AA1A5;
}
@media screen and (max-width: 450px) {
    .estimer-main-container .input-text-style {
        width: 100%;
    }
}
.estimer-main-container .input-text-style input {
    height: 40px;
    width: 290px;

    margin-top: 2px;
    padding-left: 7px;

    border: 1px solid #2B5C73;

    font-size: 15px;
    color: black;
}
@media screen and (max-width: 450px) {
    .estimer-main-container .input-text-style input {
        width: 96%;
    }
}
.estimer-main-container .input-text-style input::-webkit-input-placeholder {
    color: #9AA1A5;
}
.estimer-main-container .input-text-style input:-ms-input-placeholder {
    color: #9AA1A5;
}
.estimer-main-container .input-text-style input:-moz-placeholder {
    color: #9AA1A5;
}

.form-content.big {
    width: 100%;
    max-width: 100%;
}

.title-section {
    width: 95%;
    max-width: 1300px;
}
.title-section p {
    font-family: "Source Sans Pro";
    font-size: 30px;
    color: #2B5C73;

    margin: 0;
}
.title-section .line {
    width: 100%;
    height: 1px;

    background-color: var(--main-blue);
}

.estimer-main-container .checkbox-list-container {
    width: 100%;

    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
}
.estimer-main-container .checkbox-list {
    max-width: 1075px;

    margin-left: 50px;
}

.cap {
    text-transform: capitalize;
}

label.long {
    width: 100%;
}

.image-container {
    height: 700px;
    width: 100%;

    overflow: hidden;

    position: relative;
}
.image-container img {
    height: 110%;

    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}

.estimer-main-container button.button-container {
    height: fit-content;
    width: fit-content;

    background: none;

    border: none;

    cursor: pointer;

    padding: 0;
}

.space-in-form {
    width: 100%;
}
.warning {
    font-family: "Source Sans Pro";
    font-size: 15px;
    color: #CA4E4E;
}

@media screen and (max-width: 500px) {
    .last-check span {
        font-size: 17px;
    }
}

.estimer-main-container .indice-container {
    width: 95%;
    max-width: 1300px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}
.estimer-main-container .indice-container > div {
    width: 100%;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}
.indice-container .barre-indice {
    width: 585px;
    height: fit-content;

    margin-top: 50px;

    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: row;
    flex-wrap: wrap;
}
.indice-container .barre-indice .indice-box {
    width: 65px;
    height: 40px;

    display: flex;
    justify-content: center;
    align-items: center;
}
.indice-container .barre-indice .indice-box.color-1 {
    background-color: #128134;
}
.indice-container .barre-indice .indice-box.color-2 {
    background-color: #50A243;
}
.indice-container .barre-indice .indice-box.color-3 {
    background-color: #88B440;
}
.indice-container .barre-indice .indice-box.color-4 {
    background-color: #DEDD3B;
}
.indice-container .barre-indice .indice-box.color-5 {
    background-color: #FFF539;
}
.indice-container .barre-indice .indice-box.color-6 {
    background-color: #FEB436;
}
.indice-container .barre-indice .indice-box.color-7 {
    background-color: #FD732B;
}
.indice-container .barre-indice .indice-box.color-8 {
    background-color: #F03D23;
}
.indice-container .barre-indice .indice-box.color-9 {
    background-color: #C51326;
}

.estimer-main-container .indice-container input[type=radio] {
    display: inline-block;
}
.estimer-main-container .indice-container label span:before, .estimer-main-container .indice-container label span:after {
    content: none;
}
.estimer-main-container .indice-container label span {
    font-family: "Source Sans Pro";
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    color: white;

    padding-left: 10px;
}
.estimer-main-container .indice-container label span.not-white {
    color: #2B5C73;
    font-weight: normal;
    text-transform: none;
}
.estimer-main-container .indice-container label.long {
    width: 500px;
}
.estimer-main-container .center-container {
    width: 95%;
    max-width: 1300px;

    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.center-container #description {
    width: 90%;
    height: 350px;
    resize: vertical;

    margin: 20px 0;
}
