* {
    font-family: "Lucida Sans", "Lucida Sans Regular", "Lucida Grande",
        "Lucida Sans Unicode", Geneva, Verdana, sans-serif;
    box-sizing: border-box;
    text-decoration: none;
}

body {
    padding: 0;
    margin: 0;
}

.container {
    padding: 0;
    margin: 0;
    height: 650px;
    width: 1350px;
    background-color: rgb(145, 255, 253);
    border: none;
}

.navbar {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 10%;
    width: 100%;
    background-color: #8860d0;
    padding-left: 10px;
    padding-right: 10px;
}

.nav-brand-link,
.nav-link {
    color: white;
    text-align: center;
}

.nav-brand-link {
    font-size: x-large;
    font-weight: 900;
}

.nav-brand {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.nav {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
}

.analytics {
    display: flex;
    align-items: center;

    width: 100%;
    height: 15%;
    background-color: white;
    border: 0.5px solid rgb(199, 197, 197);
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
}

.qa-cont {
    width: 100%;
    height: 75%;
    display: flex;
    flex-direction: row;

}

.qa-block {
    width: 80%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 8px;
    padding-right: 4px;
    background-color: rgb(216, 237, 255);
}

.qa-question {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    background-color: white;
    border: transparent;
    border-radius: 5px;
}

.qa-que {
    margin: 3px 10px 0 20px;
}

.qa-que p {
    color: black;
    font-size: large;
}

.qa-answer-block {
    width: 100%;
    height: 80%;
    display: flex;
    flex-direction: column;
    background-color: white;
    border: transparent;
    border-radius: 5px;
    margin-top: 5px;
}

.qa-table {
    width: 20%;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 8px;
    padding-left: 4px;
    background-color: rgb(216, 237, 255);
}

.qa-count {
    width: 100%;
    height: 15%;
    border: transparent;
    border-radius: 5px;
    margin: 3px;
    margin-top: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
}

.qa-num {
    width: 100%;
    height: 70%;
    display: flex;
    flex-wrap: wrap;
    border: transparent;
    border-radius: 5px;
    padding: 10px;
    padding-left: 20px;
    margin: 3px;
    box-shadow: 0 2px 5px 0 rgb(0 0 0 / 20%), 0 3px 10px 0 rgb(0 0 0 / 19%);
    background-color: white;
    align-content: flex-start;
    justify-content: flex-start;
}

.nxt-prev {
    width: 100%;
    height: 15%;
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    border: transparent;
    border-radius: 5px;
    margin: 3px;
    margin-bottom: 0;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2), 0 3px 10px 0 rgba(0, 0, 0, 0.19);
    background-color: white;
}

/* Doing the stepper stepper for the level1 and level2 */

.stepper {
    width: 70%;
    display: flex;
}

.stepper li {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    width: 33%;
    position: relative;
    text-align: center;
}

.stepper li:before {
    content: " ";
    position: relative;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    display: block;
    text-align: center;
    margin: 0 auto 10px;
    background-color: white;
    z-index: 2;
    cursor: pointer;
}

.stepper li:after {
    content: " ";
    position: absolute;
    width: 100%;
    height: 4px;
    border: 1px solid #ddd;
    background-color: #ddd;
    top: 15px;
    left: -50%;
    z-index: 0;
}

.stepper li:first-child:after {
    content: none;
}

.stepper li.active {
    color: #8860d0;
}

.stepper .active:before {
    background-color: #8860d0;
    border-color: #8860d0;
}

.stepper .active:after {
    background-color: #8860d0;
}

/* Circular Progress Bar */
.ui-progressbar {
    position: relative;
    color: #000;
}

.progress-label {
    position: absolute;

    font-weight: bold;
    text-shadow: 1px 1px 0 rgb(194, 106, 106);
}


/*  Question Count */

/* .qa-count {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    height: 100%;
} */

.que {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgb(168, 168, 168);
    background-color: rgb(215, 215, 215);
    color: white;
    text-align: center;
    margin: 15px;
    cursor: pointer;
}

.attemted {
    background-color: #8860d0;
    border-color: #fff;
}

/* Adding the check-box type answer */
.checkbox-type {
    width: 100%;
    height: 100%;

}

.ui-controlgroup {
    margin: 10px;
    padding: 10px;
    width: 60%;
}

.ui-button {
    background-color: white;
    background: white;
    padding: 20px;
}

.ui-icon-background,
.ui-state-active .ui-icon-background {
    border: 1px solid #8860d0;
    background-image: none;
    background-image: none;
    background-color: #8860d0;
}

.ui-icon-background {
    border: 1px solid #0d0c0c;
}

.ui-checkboxradio-radio-label.ui-checkboxradio-checked .ui-icon,
.ui-checkboxradio-radio-label.ui-checkboxradio-checked:hover .ui-icon {
    background-image: none;
    width: 20px;
    height: 20px;
    border-width: 10px;
    border-style: solid;
}

.ui-icon,
.ui-icon:hover {
    background-image: none;
    background-color: white;

}

/* Adding the Next and Previous buttons */
.btn {
    width: 40%;
    height: 70%;
    border: 1px solid rgb(247, 243, 243);
    background-color: #8860d0;
    border-radius: 5px;
    color: white;
    font-size: larger;
    cursor: pointer;
}

.btn:disabled {
    background-color: #c1a1fe;
}

/* levelCount */

.qa-count {
    display: flex;
    align-items: center;
    justify-content: center;
}

.qa-count span {
    color: #8860d0;
    font-size: x-large;
    font-weight: 900;
}

.drag-option {
    width: 50%;
    height: 100%;
}

fieldset {
    width: 100%;
    height: 100%;
}

.dragDrop {
    display: flex;
    width: 100%;
    height: 100%;
}

.drag-options {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-left: 20px;
    width: 80%;
    height: 60px;
    background-color: white;
    border: 1px solid rgb(201, 193, 193);
    border-radius: 5px;
    margin: 3px;
}

.drag-options span {
    font-size: larger;
    font-weight: 700;
}

.droppable {
    height: 50%;
    width: 50%;
    background-color: #ddd;
    border: 1px solid rgb(247, 243, 243);
    border-radius: 5px;
}

/* Selectable */
.selectableBox {
    width: 100%;
    height: 90%;

}

#feedback {
    font-size: 1.4em;
    margin: 5px
}

.selectable-option {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 20%;
    width: 100%;
    padding-left: 20px;
    margin: 3px;
    border: 1px solid rgb(205, 204, 204);
    border-radius: 5px;
}

/* .selectable-option span {} */

#selectable .ui-selecting {
    background: #8860d0;
}

#selectable .ui-selected {
    background: #8860d0;
    color: white;
}

#selectable {
    list-style-type: none;
    margin: 0;
    padding: 0;
    height: 100%;
    width: 50%;
}

/* adding date picker */

.datePickerBox {
    width: 100%;
    height: 100%;
}

.datePickerBox p {
    width: 100%;
    height: 100%;
    font-size: large;
}

.datePickerBox p input {
    height: 15%;
    width: 25%;
    color: #8860d0;
    font-size: large;
}

.ui-datepicker {
    margin-top: 300px;
    margin-left: 20%;
}

/* Slider option */

.ui-slider {
    background-color: white;
}

.ui-widget-header {
    background: #8860d0;
}

.ui-state-hover,
.ui-widget-content .ui-state-hover {
    cursor: pointer;

}

/* Select Menu */
.selectMenuBox {
    margin-top: 3%;
    margin-left: 2%;
}

.ui-selectmenu-menu .ui-menu {
    background-color: #8860d0;
    color: white;
}

.ui-selectmenu-text {
    color: #8860d0;
}

/* spinner */
.spinnerBox {
    width: 100%;
    height: 100%;
    padding: 5%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Firefox */
input[type=number] {
    -moz-appearance: textfield;
}

#qaAnswerBlock>fieldset>div>span>a.ui-button {
    width: 20%;
    padding: 0;
}


#qaAnswerBlock>fieldset>div>span {
    height: 25%;
    width: 40%;
}

#spinner {
    width: 80%;
    height: 100%;
    margin: 0;
    border: none;
    padding-left: 20px;
    text-align: center;
    color: #8860d0;
}

/* sortable */
#sortable {
    list-style-type: none;
    margin: 0;
    padding: 0;
    width: 60%;
}

#sortable li {
    margin: 0 3px 3px 3px;
    padding: 0.4em;
    padding-left: 1.5em;
    font-size: 1.4em;
    height: 20%;
}

#sortable li span {
    position: absolute;
    margin-left: -1.3em;
}

.ui-state-highlight {
    background: none;
    background-color: #8860d0;

}

#errorDialog {
    display: none;
}

.ui-dialog-titlebar.ui-corner-all.ui-widget-header.ui-helper-clearfix.ui-draggable-handle {
    background-color: red;
}

/* add Progress bar */

.progress-bar {
    width: 30%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.progress-bar p {
    text-align: center;
}

#progressbar {
    display: flex;
    width: 80%;
    height: 30%;
    align-items: center;
}

.progress-label {
    margin-left: 50%;
}

#resultModal {
    /* display: none; */
    display: flex;
    align-items: center;
    justify-content: center;
    width: 1360px;
    height: 640px;
}

#resultBox {
    display: flex;
    flex-direction: column;
    width: 70%;
    height: 70%;
    background-color: rgb(242, 242, 242);
    border-radius: 5px;
    box-shadow: inset;
    border: 1px solid #8860d0;
    align-items: center;
    justify-content: center;
}

#resultBox>p {
    font-size: 100px;
    font-weight: bold;
    color: #8860d0;
}

#resultBox h3 {
    font-size: xx-large;
    margin: 0;
    padding: 0;
}

body>div:nth-child(4)>div.ui-dialog-titlebar.ui-corner-all.ui-widget-header.ui-helper-clearfix.ui-draggable-handle {
    background-color: #8860d0;
}

#ui-id-2 {
    text-align: center;
    color: white;
    font-size: xx-large;
}

#resultBox>span {
    font-size: larger;
    font-weight: 900;
}