.dynamicFormComponent-checkbox_label > p > a {
    color: #00395c;
    font-family: Nunito Sans;
    font-size: 11px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    text-decoration-line: underline
}

.dynamicFormComponent-select {
    color: var(--bravoauto-Mid-Grey,#575756);
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("/figmaResources/forms/selectArrow/selectArrow.png");
    background-repeat: no-repeat;
    background-position-x: 90%;
    background-position-y: 50%
}

.dynamicFormComponent-range {
    -webkit-appearance: none;
    outline: 0;
    background: linear-gradient(to right,#65a1d7 0,#65a1d7 0,#878786 0,#878786 100%);
    height: 6px;
    border-radius: 3px
}

    .dynamicFormComponent-range::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 28px;
        height: 28px;
        background: #fff;
        filter: drop-shadow(-3px 0px 8px rgba(0, 0, 0, .18));
        border-radius: 50%
    }

    .dynamicFormComponent-range::-moz-range-thumb {
        -webkit-appearance: none;
        width: 28px;
        height: 28px;
        background: #fff;
        filter: drop-shadow(-3px 0px 8px rgba(0, 0, 0, .18));
        border-radius: 50%
    }

.popupForm-checkbox_input {
    width: 18px;
    height: 13px
}

.upload-section {
    margin: 20px;
}
    .upload-section h2{
        font-size: 28px;
        font-weight: 600;
    }
    .upload-section p {
        font-size: 13px;
        font-weight: 400;
        position:absolute;
    }

.upload-button {
    display: inline-block;
    padding: 9px 19px;
    background-color: #ccc;
    border-radius: 25px;
    cursor: pointer;
    margin-top: 4rem;
    margin-bottom: .6rem;
    width: 80%;
    max-width: 20rem;
    text-align: center;
}
    .upload-button span {
        font-size: 18px;
        display: flex;
        gap: 1rem;
        justify-content: center;
        color: #00395c;
    }
    .upload-button:hover {
        background-color: #bbb;
    }

.file-name {
    color: orange;
    font-size: 13px;
    font-weight: 400;
}

@media only screen and (max-width: 600px) {
    .upload-button {
        width: 100%;
        max-width: inherit;
        margin-top: 3rem;
    }
    .upload-section {
        margin: 20px 0;
    }
}