/* Have fun adding your style here :) - PS: At all times this file should contain a comment or a rule, otherwise opera might act buggy :( */

/* General Custom CSS */


.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem .wpProQuiz_sortable {
    background-color: white !important;
}

.learndash-wrapper .wpProQuiz_content .wpProQuiz_questionListItem .wpProQuiz_sortable:Hover {
    background-color: #fecd65 !important;
}

.KeysRadio1 {
    min-height: 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
}

.KeysRadio2 {
    min-height: 31.5px !important;
    width: 31.5px !important;
    min-width: 31.5px !important;
    height: 31.5px !important;
}

.KeysRadio3 {
    min-height: 27px !important;
    width: 27px !important;
    min-width: 27px !important;
    height: 27px !important;
}

.KeysRadio4 {
    min-height: 22.5px !important;
    width: 22.5px !important;
    min-width: 22.5px !important;
    height: 22.5px !important;
    padding-bottom: 10px;
}

.KeysRadio5 {
    min-height: 27px !important;
    width: 27px !important;
    min-width: 27px !important;
    height: 27px !important;
}

.KeysRadio6 {
    min-height: 31.5px !important;
    width: 31.5px !important;
    min-width: 31.5px !important;
    height: 31.5px !important;
}

.KeysRadio7 {
    min-height: 36px !important;
    width: 36px !important;
    min-width: 36px !important;
    height: 36px !important;
}

.learndash-wrapper .wpProQuiz_content input.wpProQuiz_questionInput {
    /*min-height: 36px !important;*/
    /*width: 36px !important;*/
    /*min-width: 36px !important;*/
    /*height: 36px !important;*/

    -webkit-transition: transform .2s ease-in-out;
    -moz-transition:transform .2s ease-in-out;
    -ms-transition:transform .2s ease-in-out;
    transition:all ease-in 0.2s;

    /*appearance: none !important;*/

    border: 1px solid #555555;
    border-radius: 50%;
    background-clip: content-box;
    padding: 3px;
    background-color: white;
}


.learndash-wrapper .wpProQuiz_content input.wpProQuiz_questionInput:hover {
    -ms-transform: scale(1.3); /* IE */
    -moz-transform: scale(1.3); /* FF */
    -webkit-transform: scale(1.3); /* Safari and Chrome */
    -o-transform: scale(1.3); /* Opera */
    transform: scale(1.3);

    background-color: #fecd65;

    -webkit-transition: transform .2s ease-in-out;
    -moz-transition:transform .2s ease-in-out;
    -ms-transition:transform .2s ease-in-out;
    transition:all ease-in 0.2s;

}

.learndash-wrapper .wpProQuiz_content input.wpProQuiz_questionInput:checked {
    background-color: #fecd65;
}


.learndash-wrapper .wpProQuiz_questionListItem h6 {
    display: flex;
    align-self: center;
    align-items: center;
}

.wpProQuiz_content .wpProQuiz_reviewQuestion li.wpProQuiz_reviewQuestionSolved {
    background-color: #118fe2 !important;
}

.wpProQuiz_content .wpProQuiz_reviewLegend {
    visibility: hidden;
    height: 0px !important;
}

.wpProQuiz_content .wpProQuiz_reviewDiv {
    padding-bottom: 0em !important;
}


.learndash-wrapper .ld-quiz-actions .quiz_continue_link {
    visibility: hidden !important;
}

.wpProQuiz_question_page {
    display: contents !important;
}


/*
Desktop Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the desktop view of your site */

@media only screen and (min-width: 768px) {
  /* Add your Desktop Styles here */

}



/*
Mobile Styles
================================================== */
/* Note: Add new css to the media query below that you want to only effect the Mobile and Tablet Portrait view */

@media only screen and (max-width: 767px) {
  /* Add your Mobile Styles here */

}