.salesrooms {
    .create_question_legend {
        display: flex;
        justify-content: space-between;

        &::before {
            display: none;
        }
    }

    .create_question {
        #input_question {
            max-height: 100px;
            min-height: 100px;
            white-space: unset;
        }
        a.button_save {
            width: 100%;
        }
    }

    .question {
        border-bottom: 1px solid var(--pico-form-element-border-color);
        padding-bottom: 5px;
        position: relative;
        &:hover {
            .footer {
                display: flex;
            }
        }
        .footer {
            gap: 10px;
            margin-top: 10px;
            display: none;
            position: absolute;
            top: 0px;
            right: 0px;
            .question_edit {
                border-color: var(--pico-background-success);
                background: var(--pico-background-success);
                font-size: 10px;
                line-height: 10px;
                border: 50% !important;
                padding: 7px;
            }
            .button_delete {
                font-size: 10px;
                line-height: 10px;
                border: 50% !important;
                padding: 7px;
            }
        }
    }
}