/* GENERAL STYLES */
#client-choice {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    width: 1400px;

    gap: 20px;
    box-sizing: border-box;
    padding: 20px;
    margin: 20px 0;
    Border: 1px solid lightblue;
    border-radius: 10px;

    background-color: white;
}

#client-choice-title{
    font-weight: bold;
    font-family: Arial, Helvetica, sans-serif;
}

#client-choice-option {
    display: flex;
    align-items: center;
    justify-content: space-evenly;

    width: 1350px;
}

#ae-client-choice-image {
    width: 40px;
    margin-right: 10px;
}

#private-client-choice-image {
    width: 45px;
    margin-right: 10px;
}

#business-client-choice-image {
    width: 40px;
    margin-right: 10px;
}


#client-choice-tease {
    text-align: center;
    padding: 10px;
    background-color: aliceblue;
    border-radius: 10px;
    border: 1px solid lightblue;
    width: 1280px;
    box-sizing: border-box;
}


/*AUTOENTREPRENEUR CHOICE */
#ae-client-choice{
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100px;
    width: 400px;

    box-sizing: border-box;

    border: 2px solid blue;
    border-radius: 5px;
}

#ae-client-choice:hover{
    background-color: aliceblue;
    cursor: pointer;}

#ae-client-choice-line-1{
    font-size: 16px;
    font-weight: bold;
}

#ae-client-choice-line-2{
    font-size: 14px;
}


/* PRIVATE CLIENT CHOICE */
#private-client-choice {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100px;
    width: 400px;

    box-sizing: border-box;

    border: 2px solid blue;
    border-radius: 5px;
}

#private-client-choice:hover {
    background-color: aliceblue;
    cursor: pointer;
}

#private-client-choice-line-1 {
    font-size: 16px;
    font-weight: bold;
}

#private-client-choice-line-2 {
    font-size: 14px;
}


/* BUSINESS CLIENT CHOICE */
#business-client-choice {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 100px;
    width: 400px;

    box-sizing: border-box;

    border: 2px solid blue;
    border-radius: 5px;
}

#business-client-choice:hover {
    background-color: aliceblue;
    cursor: pointer;
}

#business-client-choice-line-1 {
    font-size: 16px;
    font-weight: bold;
}

#business-client-choice-line-2 {
    font-size: 14px;
}



/* STYLES WHEN ACTIVE */
#ae-client-choice.active {
    border: 2px solid blue;
    background-color: aliceblue;
}

#private-client-choice.active {
    border: 2px solid blue;
    background-color: aliceblue;
}

#business-client-choice.active {
    border: 2px solid blue;
    background-color: aliceblue;
}








/* MOBILE section in form_choice.txt */
@media screen and (max-width: 500px) {

    #client-choice {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;

        width: 350px;
        padding: 10px; 
        gap: 10px;
        box-sizing: border-box;
    }

    #client-choice-title {
        font-size: 12px;
        font-weight: bold;
    }

    #client-choice-option {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 10px;
    }

    #ae-client-choice,
    #private-client-choice,
    #business-client-choice {
        display: flex;
        align-items: center;
        justify-content: center;

        height: 60px;
        width: 320px;

        border-width: 1px !important;
        margin: 0 auto;
        box-sizing: border-box;       
    }

    #ae-client-choice-image {
        width: 30px;
        margin-right: 10px;
    }

    #private-client-choice-image {
        width: 35px;
        margin-right: 10px;
    }

    #business-client-choice-image {
        width: 30px;
        margin-right: 10px;
    }

    #ae-client-choice-line-1,
    #ae-client-choice-line-2,
    #private-client-choice-line-1,
    #private-client-choice-line-2,
    #business-client-choice-line-1,
    #business-client-choice-line-2 {

        font-size: 10px;

    }

    #client-choice-tease {
        font-size: 10px;
        width: 320px;
        border: 1px solid lightblue;
    }

}