#question_anonymous {
    margin-top: 10px;
}

.question_bloc {
    margin-top: 2vh;
}

.question_group {
    border-left: 3px solid grey;
}

.question_fieldset {
    margin-top: 4vh;
    margin-bottom: 3vh;
}

.multi_responses {
    margin-left: 2vw;
}

.response-area {
    width: 90%;
    margin-left: 1vw;
}

.fake-select-wrapper {
    border: 1px solid #ccc;
    padding: 3px 6px;
    width: 100%;
    position: relative;
    background-color: white;
    border-radius: 4px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    min-height: 2.2em;
    display: flex;
    align-items: center;
}

.fake-select-display {
    pointer-events: none;
    padding-right: 1.2em;
}

.fake-select-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    border: 1px solid #ccc;
    background: white;
    z-index: 100;
    max-height: 150px;
    overflow-y: auto;
}

.fake-select-wrapper.open .fake-select-options,
.fake-select-wrapper.active .fake-select-options {
    display: block;
}

.fake-select-options label {
    display: block;
    padding: 5px 10px;
    margin-bottom: 0 !important;
    font-weight: normal;
}
.fake-select-options label:hover {
    background-color: #f0f0f0;
}
.hide-field {
    visibility: hidden;
    position: absolute;
}
.fake-select-options-chevron {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%) scaleY(1.5);
    pointer-events: none;
    font-size: 12px;
    color: #555;
}