* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #8854C0;
    --box-shadow: 0px 3px 5px 0px rgba(0, 0, 0, 0.1);
    --white: #FFFFFF;
    --subColor: #F6F6F6;
    --bg: #F5F5F5;
    --border: #E3E3E3;
    --anotherColor: #d3b1fafb;
    --red: #ED2939;
    --border-2: #B7B7B7;
    --goback: #b785fe7f;
    --border3: #C6C6C6;
}


#full-create-contents {
    background-color: #f2f2f2;
    width: 100%;
}

#full-create-contents .upper-create {
    margin-bottom: 5%;
}

#full-create-contents .upper-create .upper-upper-create {
    width: 70%;
    display: flex;
    justify-content: space-around;
}

#full-create-contents .upper-create .upper-upper-create input {
    background-color: white;
    border-radius: 3px;
}

#full-create-contents .upper-create .upper-lower-create input:focus {
    box-shadow: none;
    border: 1px solid var(--blue);
}

#full-create-contents .upper-create .upper-lower-create select:focus {
    box-shadow: none;
    border: 1px solid var(--blue);
}

#full-create-contents .upper-create .upper-upper-create input:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--blue);
}

#full-create-contents .upper-create .upper-upper-create select:focus {
    box-shadow: none;
    outline: none;
    border: 1px solid var(--blue);
}

#full-create-contents .upper-create .upper-lower-create {
    width: 70%;
    display: flex;
    justify-content: space-around;
    margin-top: 2%;
}

#full-create-contents .upper-create .upper-lw-create {
    width: 70%;
    margin-top: 2%;
}

#full-create-contents .upper-create .upper-lw-create .filelabel {
    width: 120px;
    border: 1px solid var(--border-2);
    border-radius: 5px;
    display: block;
    padding: 5px;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    background-color: white;
}

#full-create-contents .upper-create .upper-lw-create .filelabel span:hover {
    color: #8854C0 !important;
}

#full-create-contents .upper-create .upper-lw-create .filelabel:hover {
    border: 1px solid var(--blue);
    color: #8854C0;
}

#full-create-wrapper .lower-create .lower-single-question {
    background-color: white;
    width: 70%;
    border-radius: 4px;
    box-shadow: 0px 2px 5px 0px rgba(0, 0, 0, 0.2);
    margin-top: 3%;
}

#full-create-wrapper .create-title {
    /* width: 70%; */
    margin: 2% auto 3% auto;
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    color: var(--blue);
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-upper {
    background-color: #F9F9F9;
    border-radius: 4px 4px 0px 0px;
    padding: 5px;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-upper .lower-single-question-control button {
    border-radius: 3px;
    border: 1px solid var(--border);
    padding: 3px 15px;
    background-color: white;
    font-size: 14px;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-upper .lower-single-question-control button:focus {
    box-shadow: none;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-upper .lower-single-question-control button:hover {
    background-color: rgba(252, 252, 252, 0.862);
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid {
    padding: 1rem 10px;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid .question-answer {
    padding-left: 10px;
    font-size: 15px;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid .divider-question {
    font-size: 14px;
    padding-left: 10px;
    color: gray;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid .question-main {
    padding-left: 10px;
    font-weight: 500;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid .lower-single-question-option .single-option .option-circle {
    padding: 10px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
}


#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid .lower-single-question-option .single-option .option-red {
    background-color: var(--red) !important;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-mid .lower-single-question-option .single-option .option-green {
    background-color: #20bf6b;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-lower {
    background-color: #F9F9F9;
    border-radius: 0px 0px 4px 4px;
    padding: 5px;
}

#full-create-wrapper .lower-create .lower-single-question .lower-single-question-lower button {
    font-size: 13px;
    border-radius: 3px;
    border: 1px solid var(--border);
    padding: 3px 7px;
}

#create-new-question-btn {
    background-color: var(--blue);
    border-radius: 3px;
    font-size: 14px;
    color: white;
    transition: all 0.1s ease;
}

#create-new-question-btn:focus {
    box-shadow: none;
}

#create-new-question-btn:active {
    transform: scale(0.98);
}

#save-exit-btn {
    background-color: var(--blue);
    border-radius: 3px;
    font-size: 14px;
    color: white;
    transition: all 0.1s ease;
    padding: 5px 20px;
}

#save-exit-btn:focus {
    box-shadow: none;
}

#save-exit-btn:active {
    transform: scale(0.98);
}

#create-quizModalLabel {
    color: black;
}

#save-cng-quiz {
    background-color: var(--blue);
    border: none !important;
    border-radius: 2px !important;
    font-size: 15px;
    padding: 5px 20px;
    color: white;
}

#save-cng-quiz:focus {
    box-shadow: none;
}

#save-cng-quiz:active {
    transform: scale(0.99);
}

/* #create-quizModal .modal-header{
    background-color: #8854c063;
} */

#create-quiz-tool-box {
    padding: 1rem;
    background-color: #bd7effc6;
    border-radius: 5px;
    width: 80%;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
}

#left-tool-box {
    border-right: 1px solid var(--border-2);
}

#right-text-editor {
    background-color: white;
    padding: 1rem;
    border-radius: 5px;
    height: 200px;
}

#right-text-editor .ql-editor {
    min-height: 100px;
}

#right-tool-box {
    padding: 10px 10px 10px 25px;
}

/* new */
#right-options .user-options {
    width: 40%;
    background-color: white;
    border: 1px solid var(--border3);
    font-size: 14px;
    border-radius: 2px;
    padding: 2rem 10px;
    font-size: 1.2rem;
}


#right-options .user-options:focus {
    box-shadow: none;
    border: 1px solid var(--anotherColor);
    background-color: var(--bg);
}

#right-options .check-input-option {
    cursor: pointer;
    border-radius: 2px !important;
    border: 1px solid var(--border3) !important;
    margin-right: 2%;
    padding: 10px;
}

#right-options .check-input-option:focus {
    box-shadow: none;
}

#right-options .quiz-option-delete {
    margin-left: 3%;
    cursor: pointer;
}

#right-options .quiz-option-delete:active {
    transform: scale(0.97);
}

#right-options .radio-input-option {
    margin-right: 2%;
    cursor: pointer;
    padding: 10px;
}

#right-options .radio-input-option:focus {
    box-shadow: none;
}

#add-option-btn {
    background-color: var(--blue);
    padding: 5px 15px;
    border-radius: 2px;
    font-size: 14px;
    color: white;
}

#left-tool-box .filelabel {
    width: 120px;
    border: 2px dashed white;
    border-radius: 5px;
    display: block;
    padding: 5px;
    transition: border 300ms ease;
    cursor: pointer;
    text-align: center;
    margin-left: 20%;
}

#left-tool-box .filelabel i {
    display: block;
    font-size: 30px;
    padding-bottom: 5px;
}

#left-tool-box .filelabel i,
#left-tool-box .filelabel .title {
    color: white;
    transition: 200ms color;
}

#left-tool-box .filelabel:hover {
    border: 2px solid white;
}

#left-tool-box .filelabel:hover i,
.filelabel:hover .title {
    color: white;
}

#FileInput {
    display: none;
}

/* modal style */
#create-quizModal {
    width: 100%;
    min-height: 100vh;
    background-color: rgb(253, 253, 253);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 10000000;
}

#full-create-contents .show-modal {
    display: block !important;
}

#full-create-contents .hid-modal {
    display: none !important;
}

#close-modal-create {
    cursor: pointer;
    color: #8854C0;
}

#custom-modal-content .custom-modal-footer {
    margin-top: 3%;
}