﻿.quiz_background_color {
    background: #00919B;
    color: white;
}

/*.quiz_header {
    color: rgb(255, 255, 255);
    padding: 35px 25px 25px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    opacity: 0.95;
    margin-bottom: 20px;
    margin-right:200px;
    float:right;
    padding:20px!important;
}

.quiz_body {
    width: 930px;
    margin: 10px 0 10px 0;
    float: left;
    background: rgba(255,255,255,0.9);
    box-shadow:2px 2px 10px #666;
    color: #222;
    padding: 10px 20px;

}*/


.quiz_header {
    color: rgb(255, 255, 255);
    padding: 35px 25px 25px;
    border-top-left-radius: 60px;
    border-bottom-right-radius: 60px;
    opacity: 0.95;
    margin-bottom: 30px;
    padding:0!important;
}

.quiz_body {
    height: 410px;
    width: 100%;
    margin: 10px 0;
    float: none;
    background: rgba(255,255,255,0.9);
    box-shadow: 2px 2px 10px #666;
    color: #222;
    padding: 20px;

}




.quiz_question {
    width: 100%;
	float: left;
}
.quiz_question_text {
    float:left;
    width: 580px;
    font-size: 16px;
    font-weight: bold;
    color: #1E1E1E;
    padding: 10px 0;
}
.quiz_question_options {
    width:235px;
    float:right;
}

.quiz_question_button_50.selected {
    background: #CF0072;
    border: 3px solid #CF0072;
    width: 100px;
    float: left;
    padding: 5px;
    color: white;
    margin: 0 5px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.quiz_question_button_50 {
    background: white;
    border: 3px solid #1E1E1E;
    width: 100px;
    float: left;
    padding: 5px;
    color: #CF0072;
    margin: 0 5px;
    font-size: 16px;
    font-weight: bold;
    text-align:center;
    cursor: pointer;
}
.quiz_submit {
    background: #CF0072;
    border: 3px solid #1E1E1E;
    width: 100px;
    float: right;
    padding: 5px;
    color: white;
    margin-right: 20px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    margin-top: 5px;
}

.quiz_showafter {
    display: none;
}
.quiz_feedback {
    opacity: 1;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px!important;
    z-index: 9999999;
    display: none;
    font-size: 16px;
    overflow-y: scroll;
}
.feedback_text{
    bottom:0;
}
.close-button {
    background: #CF0072;
    color: white;
    font-size: 18px;
    left: 824px;
    border: 2px solid white;
    border-radius: 12px;
    position: relative;
}
.close-:hover {
    background: rgb(0, 163, 173);
    color: white;
    border: none;
    font-size: 18px;
}
.correct-feedback-answer {
    border-left: 10px solid green;
    padding: 0 10px;
    margin: 20px 0;
}

.correct-feedback-answer span {
    color: black;
    font-weight: bold;
    font-size: 18px;
	position: inherit;




}

.incorrect-feedback-answer {
    border-left: 10px solid darkred;
    padding: 0 10px;
    margin: 20px 0;
}

.incorrect-feedback-answer span {
    color: black;
    font-weight: bold;
    font-size: 18px;
	position: inherit;
}



/* Drag and Drop */
p.pink{
    color:#CF0072;
    font-weight:bold;
}


.quiz_body.dnd {
    float:none;
    width: 100%;
    box-shadow:none;
    margin: 10px 0 10px 0;
    color: #222;
    padding: 10px 20px;
}

.drag-drop-question {
    display: none;
   text-align: center;
}

.drag-drop-question:first-child {
    display: block;
}

.drag-drop-draggable {
    background: url('../images/drag-icon.png') no-repeat;
    width: 171px;
    height:174px;
    cursor:pointer;
    display: inline-block;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    float:left;
}

.drag-drop-dropzone {
    background: #CF0072 url('../images/dropzone.png') no-repeat;
    width: 300px;
    height:77px;
    display: inline-block;
    color: white;
    margin: 20px 55px 40px 5px;
    padding:20px;
    font-weight: bold;
    text-align: center;
    font-size: 28px;
}

.no-mr{
    margin-right:0;
}

.drag-drop-statements {
    border: solid 3px hsl(0, 0%, 20%);
    border-radius: 255px 15px 225px 15px/15px 225px 15px 255px;
    margin-left: 210px;
    padding: 30px 10px;
    text-align: left;
    min-height: 170px;
}

.drag-drop-statements ul li{
    margin-bottom: 15px;
}
.drag-drop-statements ul li:last-child{
    margin-bottom:0;
}



@media screen and (max-width:1199px) {
    .drag-drop-dropzone {
        width: 270px;
        margin: 20px 6px 40px 5px;
    }
}

@media screen and (max-width:991px) {
    .drag-drop-dropzone {
        display: block;
        margin: 20px auto;
    }
}

