.get-started {
    margin-top: var(--header-height);
    padding-top: 40px;
    margin-bottom: var(--header-height);
}


#footer-top.getstarted{
    display: none;
}

div.container-fluid{
    overflow-x: hidden;
}
form#getStarted{
    width: 930px;
    height: fit-content;
    margin: 0 auto;
    padding-bottom: 1rem;
    background: #FFFFFF;
    box-shadow: 0 4px 25px rgba(87, 52, 0, 0.07);
    border-radius: 16px;

}

form fieldset{
    background-color: #ffffff;
}

form legend{
    font-style: normal;
    font-weight: 700;
    font-size: 18px;
    line-height: 22px;
    color: var(--text-color);
}

fieldset > ul{
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 0;
}

label{
    display: inline-block;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    color: var(--text-color);
    width: 100%;
    margin: 14px 0;
}

label > abbr[title]{
    text-decoration: none;
}
form > input[type="submit"].progress-bar-animated {
    pointer-events: none;
}
fieldset#personal_info{
    padding: 20px 20px 10px;
    margin-top: 48px;
    position: relative;
    background: none;
}

fieldset#personal_info > ul > li {
    display: inline-block;
    width: 50%;
    position: relative;
    padding: 0 10px;
}
fieldset#personal_info > ul > li.half {
    width: 25%;
}
fieldset#personal_info > ul > li.line {
    margin: 1.5rem 10px 0;
    height: 2px;
    background: #F6F6F6;
}

fieldset#personal_info p{
    position: absolute;
    bottom: 25px;
    font-size: 14px;
    font-style: italic;
    line-height: 1.29;
    color: #575757;
}

fieldset#plan_of_interest > ul,
fieldset#select_region > ul {
    padding-left: 10px;
}

fieldset#plan_of_interest > ul label,
fieldset#select_region > ul label {
    color: var(--text-color);
}


fieldset#plan_of_interest > ul > li,
fieldset#select_region > ul > li {
    display: inline-block;
}



fieldset#plan_of_interest,
fieldset#select_region {
    font-size: 19px;
    font-weight: 600;
    line-height: 0;
    text-align: center;
    color: #000000;
    position: relative;
    padding: 0 70px;
}

fieldset#plan_of_interest input[type="radio"],
fieldset#select_region input[type="radio"] {
    width: 30px;
    height: 30px;
    object-fit: contain;
    background-color: #ece8e4;
    display: flex;
    justify-content: center;
    margin: 0;
}

fieldset#plan_of_interest label,
fieldset#select_region label {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 18px;
    color: #575757;
}

fieldset#personal_info label + div.invalid-feedback{
    position: relative;
    margin-top: -6px;
}

input, select {
    width: 100%;
    height: 45px;
    border: none;
    margin-top: 0.75rem;
    padding: 0 14px;
    background: #F7F7F7;
    border-radius: 8px;
}
select:focus {
    border: none;
    outline: none;
    box-shadow: none;
}
.caret:after {
    content: '';
    width: 25px;
    height: 25px;
    position: absolute;
    background-image: url(/dist/images/arrow-caret.svg);
    background-repeat: no-repeat;
    background-size: auto;
    background-position: center;
    bottom: 25px;
    right: 20px;
    pointer-events: none;
}
form > input[type="submit"]{
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
    margin: 1rem auto;
    width: fit-content;
    height: 50px;
    border-radius: 8px;
    background-color: var(--color);
    border: 0;
    font-style: normal;
    font-weight: 700;
    font-size: 16px;
    line-height: 22px;
    color: #ffffff;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    cursor: pointer;
}

/*CUSTOM RADIO BUTTONS*/
[type="radio"]:checked,
[type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}
[type="radio"]:checked + label,
[type="radio"]:not(:checked) + label
{
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}
[type="radio"]:checked + label:before,
[type="radio"]:not(:checked) + label:before {
    content: '';
    position: absolute;
    top: -3px;
    width: 27px;
    height: 27px;
    border: none;
    border-radius: 100%;
    background-color: #F7F7F7;
    left: -8px;
}

[type="radio"]:checked + label:after,
[type="radio"]:not(:checked) + label:after {
    content: '';
    width: 17px;
    height: 17px;
    background: #f28806;
    position: absolute;
    left: -3px;
    top: 2px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
[type="radio"]:not(:checked) + label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}
[type="radio"]:checked + label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

@media (max-width: 1199px) {
    form#getStarted {
        width: 100%;
    }
}

@media (max-width: 749px) {
    fieldset#plan_of_interest > ul > li,
    fieldset#select_region > ul > li {
        width: 50%;
        display: flex;
        justify-content: center;
    }

    fieldset#personal_info > ul > li,
    fieldset#personal_info > ul > li.half {
        width: 100%;
    }

    fieldset#plan_of_interest label,
    fieldset#select_region label {
        width: 100%;
        justify-content: flex-start;
        padding-left: 55px;
    }

    [type="radio"]:checked + label::before,
    [type="radio"]:not(:checked) + label::before {
        left: 15px;
    }

    [type="radio"]:checked + label::after,
    [type="radio"]:not(:checked) + label::after {
        left: 20px;
    }
}

@media (max-width: 479px) {

    form#getStarted{
        max-width: 370px;
    }

    form > input[type="submit"] {
        width: calc(100% - 60px);
    }


    label{
        font-size: 15px;
    }

    fieldset#plan_of_interest > ul > li,
    fieldset#select_region > ul > li {
        width: 50%;
        padding: 0;
    }

    [type="radio"]:checked + label::before,
    [type="radio"]:not(:checked) + label::before {
        left: 0;
    }

    [type="radio"]:checked + label::after,
    [type="radio"]:not(:checked) + label::after {
        left: 5px;
    }

    fieldset#plan_of_interest label,
    fieldset#select_region label {
        padding-left: 40px;
        font-size: 14px;
    }

    /*fieldset#personal_info {*/
        /*padding: 50px 40px 45px 40px;*/
    /*}*/

    fieldset#plan_of_interest,
    fieldset#select_region{
        padding: 0 40px 30px 40px;
    }
}


@media (max-width: 379px) {
    form#getStarted{
        max-width: 310px;
    }

    fieldset#plan_of_interest > ul,
    fieldset#select_region > ul {
        padding-left: 0;
    }

    fieldset#plan_of_interest label,
    fieldset#select_region label {
        padding-left: 32px;
        font-size: 13px;
    }
}
