#modal-question{
    height:100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 100;
    background: #fff;
    width: 100%;
}

#question-container{
    padding:0 50px;
}

#choice-container{
    padding-bottom:70px;
}

.choice-item-container{
    display:flex;
    justify-content:space-evenly;
    align-items:center;
    margin:20px 100px;
    column-gap: 20px;
}

.choice_answer{
   transform: scale(2);
}

.add_choice,
.remove_choice{
    font-size:35px;
    user-select: none;
    cursor:pointer;
}

.add_choice:hover{
    color:rgb(54, 54, 116);
    font-weight: bold;;
}

.remove_choice:hover{
    color:crimson;
    font-weight: bold;;
}

.editor-item{
    width:90%;
}

._quilljs_editor{
    box-shadow: 2px 6px 22px -8px rgba(0,0,0,0.29);
    -webkit-box-shadow: 2px 6px 22px -8px rgba(0,0,0,0.29);
    -moz-box-shadow: 2px 6px 22px -8px rgba(0,0,0,0.29);
}

.btnQuestionClose{
    cursor: pointer;
    outline: 0;
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    line-height: 0;
    background-color: transparent;
    border: 1px solid transparent;
    user-select: none;
}

.question-button-container{
    display:flex;
    justify-content: space-between;
    padding: 50px 90px;
    /* justify-content: flex-end;
    padding-top: 30px;
    padding-bottom: 40px;
    padding-right: 20px; */
}

.header-question-button-container{
    display:flex;
    justify-content: space-between;
    padding-top: 20px;
    padding-bottom: 40px;
    padding-right: 20px;
    padding-left: 50px;
    align-items: center;;
}

#modal-question-title{
    color: #5D87FF;
    font-size:1.5rem;
}

.button{
    cursor: pointer;
    outline: 0;
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    background-color: transparent;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    color: #0d6efd;
    border-color: #0d6efd;
}

.button:hover{
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.button-default{
    color: #fff;
    background-color: #0d6efd;
    border-color: #0d6efd;
    font-size: 1rem;
    padding: 6px 12px;
    cursor: pointer;
}

.button-red{
    color: #fff;
    background-color: crimson;
    /* border-color: crimson; */
    border:none;
    font-size: 1rem;
    padding: 6px 12px;
    cursor: pointer;
}

.button-white{
    color: #000;
    background-color: transparent;
    /* border-color: crimson; */
    border:1px solid #888;
    font-size: 1rem;
    padding: 6px 12px;
    cursor: pointer;
}


#alertDialog{
    border: 1px solid #ccc;
    width: 100%;
    max-width: 300px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    /* padding: 20px; */
}

.questions-list-content img{
    /* aspect-ratio: 16/9; */
    width:150px;
}

.questions-list-content p{
    margin:0;
}

