.ccm-page-quiz {
    text-align: center;
    margin: 30px 0;
    padding: 50px 30px;
    box-shadow: 0 0 0 10px #f4f1f1 inset;
    position:relative;
    border-radius:12px;
}
.ccm-page-quiz.correct{
   box-shadow: 0 0 0 10px #8ebc73 inset;
}
.ccm-page-quiz.incorrect{
   box-shadow:0 0 0 10px #ce4141 inset;
}
.ccm-page-quiz .question-number{
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 50px;
    background-color: #242424;
    color: #fff;
    font-weight: 600;
    font-size: 1.25em;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-5px, -5px);
    border-radius: 12px 3px 12px 3px;
}
.ccm-page-quiz .correct-incorrect{
    text-transform: uppercase;
    font-weight: 600;
    font-size: 1.5em;
}

.ccm-page-quiz .answers-text, .ccm-page-quiz .answers-feedback {
    margin: 0 auto;
    max-width: 600px;
}
.ccm-page-quiz .image{
   width:100%;
   height:0;
   padding-bottom:56.25%;
   background-size:cover;
   background-position:center center;
   margin-bottom:30px;
}
.ccm-page-quiz .title {
    margin-bottom: 20px;
    font-size: 1.5em;
    font-weight:500;
    max-width: 540px;
    margin: 0 auto 20px auto;
}

/** QUIZ RESULTS **/
#quiz-results{
    text-align: center;
    background: var(--cyan-color);
    padding: 20px 10px;
    border-radius: 12px;
}
#quiz-results h2{
    color:#fff;
    margin:0;
}
#quiz-results p{
    font-weight: 600;
    background: #fff;
    width: fit-content;
    margin: 10px auto 0 auto;
    color: #0c2131;
    padding: 5px 20px;
    border-radius: 12px;
}
/** THE LIST OF ANSWERS **/
.ccm-page-quiz .answers-text {
    
}
.ccm-page-quiz .answers-text strong{
    font-weight:600;
}

.ccm-page-quiz .answers-text .answer {
    margin: 2px 0;
    padding: 5px;
    text-align: center;
    font-size: 1.2em;
}

.ccm-page-quiz .answers-text .answer.inactive {
    opacity: 0.3;
}



/** BUTTONS **/
.ccm-page-quiz .answers-buttons{
    display:flex;
    width:100%;
    justify-content:center;
    margin:30px 0;
}
.ccm-page-quiz .answers-buttons .answer {
    outline: 0;
    text-decoration: none;
    font-size: 1.25em;
    width:60px;
    height:60px;
    display:flex;
    align-items:center;
    justify-content:center;
    color: #fff;
    font-weight: bold;
    background-color:#ccc;
    margin:0 5px;
    border-radius:5px;
    transition:all 0.6s;
}
.ccm-page-quiz .answers-buttons .answer:hover{
    background-color: var(--cyan-color);
}

.ccm-page-quiz .answers-buttons .answer.incorrect {
    background-color: #cd123a;
    outline:2px solid #cd123a;
}

.ccm-page-quiz .answers-buttons .answer.correct {
    background-color: #8ebc73;
    outline:2px solid #8ebc73;
}
.ccm-page-quiz .answers-buttons .answer.answered {
    outline-offset:2px;
}


/** TEXT YOU SEE WHEN YOU CLICK ON A BUTTON **/
.ccm-page-quiz .answers-feedback {

}

.ccm-page-quiz .answers-feedback .answer {
    transition: opacity 250ms ease 0s;
    opacity: 0;
    position: absolute;
    left: 99999px;
}

.ccm-page-quiz .answers-feedback .answer.active {
    opacity: 1;
    position: static;
    left: auto;
}