



.container_dropdown h4{
    text-align: center;
}

.container_dropdown__flex{
    margin-top: 1.5em;
    display: flex;
    justify-content: space-around;
    align-items: center;
    
    flex-wrap: wrap;
}

.dropdown__flex{
    align-self: flex-start;
}

.dropdown_box{
    min-width: 400px;
    margin-top: .9em;
    align-self: flex-start;
    
    border-radius: 3px;
}


.question_dropdown{
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #d3d3d3;
    padding: .6em;
    color: #2F4480;
    border-radius: 3px;
    cursor: pointer;
    background-color: #fff;
}

.response_dropdown{
    padding: .6em;
    border: 1px solid #d3d3d3;
    margin-top: .4em;
    border-radius: 3px;
    max-width: 400px;
    background-color: #fff;
}

@media screen and (max-width: 500px){
    .dropdown_box{
        min-width: 250px;
    }
}
@media screen and (max-width: 250px){
    .dropdown_box{
        min-width: auto;
    }
}

