/*
    TILLY ===============================================================================================================================================================
*/
.show-tilly-button,
.show-tom-button,
.pop-up.tilly,
.pop-up.tom {
    height: 0;
    opacity: 0;
}

.show-tilly-button.open,
.show-tom-button.open,
.pop-up.tilly.open,
.pop-up.tom.open {
    animation: 2s fadePopup;
    animation-fill-mode: forwards;
}

.pop-up.tilly.demo-intro.open {
    animation: 2s fadePopupDemo;
    animation-fill-mode: forwards;
}

/*
    MINIQUIZZES ===============================================================================================================================================================
*/
ul.mq-answers svg#icon-tick,
ul.mq-answers svg#icon-cross {
    display: none;
    width: 40px;
    flex-shrink: 0;
    margin-right: 1.5rem;
}

.mq-question.answered.incorrect ul.mq-answers .selected svg#icon-cross {
    display: block;
}

.mq-question.answered.correct ul.mq-answers svg#icon-cross {
    display:block;
}

.mq-question.answered.correct ul.mq-answers .selected svg#icon-cross {
    display:none;  
}

.mq-question.answered.correct ul.mq-answers .selected svg#icon-tick {
    display: block;
}

ul.mq-answers {
    padding: 0 2rem;
    margin: 0;
}

ul.mq-answers li {
    list-style-type: none;
}

.mq-answers li div {
    display: flex;
    display: -webkit-flex;
    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    padding: 0.5rem 2rem;
    font-weight: 600;
    background: #EDEDED;
    color: #666666;
    border-radius: 15px;
    transition: 0.7s;
}

.mq-answers li span:hover {
    cursor: pointer;
}

.mq-controls {
    font-weight: 600;
}

.mini-quiz-container .mq-submit {
    background: #999999;
    color: #FFFFFF;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 1.2rem;
    text-align: center;
    width: 180px;
    justify-content: center;
    margin: 2rem;
    transition: 0.7s;
}

.mini-quiz-container .submittable .mq-submit {
    background: #d71000;
}

.mini-quiz-container .submittable .mq-submit:hover {
    background: #009245;
    cursor: pointer;
}

.abc-quiz .mq-answers ul {
    padding: 0;
}

.mq-answers li div,
.abc-quiz .mq-answers li div {
    position: relative;
    display: flex;
    display: -webkit-flex;
    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    line-height: 1.5rem;
    padding: 1rem 1.5rem 1rem 1.5rem;
}

.abc-quiz .mq-answers li div::before {
    content: "A";
    display: block;
    color: #d71000;
    text-align: center;
    font-size: 3rem;
    margin-right: 1.5rem;
    line-height: 1;
}

.abc-quiz .mq-answers li.selected div::before {
    color: #FFFFFF;
}

.abc-quiz .mq-answers li:nth-of-type(2) div::before {
    content: "B";
}

.abc-quiz .mq-answers li:nth-of-type(3) div::before {
    content: "C";
}

.abc-quiz .mq-answers li:nth-of-type(4) div::before {
    content: "D";
}

.mq-question.answered.correct .mq-answers li div::before {
    display: none;
}

.mq-question.answered.incorrect .mq-answers li.selected div::before {
    display: none;
}

.mq-answer-text {
    display: none;
}

.answered.correct .mq-answer-text {
    display: block;
    background: #2f2c60;
    color: #FFFFFF;
    line-height: 1.5rem;
    padding: 1rem 1.5rem 1rem 1.5rem;
    font-weight: 200;
    border-radius: 15px;
    transition: 0.7s;
    width: calc(100% - 3rem);
    margin: 1.5rem;
}

.mq-answer-incorrect {
    display: none;
    background: #d71000;
    color: #FFFFFF;
    line-height: 1.5rem;
    padding: 1rem 1.5rem 1rem 1.5rem;
    font-weight: 200;
    border-radius: 15px;
    transition: 0.7s;
    width: calc(100% - 3rem);
    margin: 1.5rem;
}

.mq-answer-incorrect.show {
    display: block;
}

.mini-quiz-container h2 {
    display: none;
}

.question-number {
    font-size: 3rem;
    color: #d71000;
    margin-right: 1rem;
}

.v2 h4.quiz-question {
    display: flex;
    display: -webkit-flex;
    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    margin: 0.5rem 0 2rem 1rem;
}

.mini-quiz-container ul.mq-answers {
    padding: 0 1.5rem;
    margin: 0;
}

.mq-answers .selected div {
    background: #2f2c60;
    color: #FFFFFF;
}

.answered.correct .mq-answers div,
.answered .mq-answers .selected div {
    color: #d71000;
    background: #fceded;
}

.answered .mq-answers .selected.correct div {
    color: #009749;
    background: #dfece7;
}

.answered.incorrect {
}

.mq-controls .mq-nav {
    display: flex;
    display: -webkit-flex;
    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    justify-content: flex-end;
    width: 100%;
    align-items: center;
}

.mq-controls .mq-nav button {
    background: transparent;
    opacity: 0.25;
    width: 30px;
    padding: 0;
    margin: 0 0.5rem 0 0;
}

.mq-controls .mq-nav button svg {
    width: 30px;
}

.mq-controls .mq-nav button.mq-next {
    transform: rotate(-180deg);
}

.mq-controls button.active {
    opacity: 1;
}

.mq-answer-incorrect {
    opacity: 0;
    transition: opacity ease 1s;
}

.mq-answer-incorrect.show {
    opacity: 1;
}

.mqc-complete.mqc-complete .mq-nav button {
    width: 80px;
}

.media-player {
    position: relative;
}

.elearn-course .mqc-complete.mqc-complete .mq-nav button.mq-refresh {
    background: #2f2c60;
    color: #FFFFFF;
    padding: 0.5rem 1rem;
    width: 140px;
    border-radius: 45px;
    gap: 8px;
}

.elearn-course .mqc-complete.mqc-complete .mq-nav button.mq-continue {
    background: #009749;
    color: #FFFFFF;
    padding: 0.5rem 0.5rem 0.5rem 1rem;
    width: 140px;
    border-radius: 45px;
}

.elearn-course .mqc-complete.mqc-complete .mq-nav button.mq-continue svg {
    transform: rotate(-180deg);
    margin-left: 0.25rem;
}

.widget-tf {
    padding: 1rem;
    border: 3px solid #0071bc;
    border-radius: 8px;
    position: relative;
}

.widget-tf .controls {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    display:-webkit-flex;
    
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    flex-direction: column;
    width: 73px;
}

.electric-shock-high-low .widget-tf .controls {
    display:block;
}

.widget-tf .controls button {
    width: 100%;
    border-radius: 8px;
    background: #f4b821;
    margin: 0px 0 1rem 0;
    padding: 0.5rem;
    max-height: 60px;
}


.electric-shock-high-low .widget-tf .controls button {
    display:block;
}

.widget-tf .controls button.selected {
    background: #009749;
}

.widget-tf .controls button svg#lowVoltage,
.widget-tf .controls button svg#highVoltage {
    fill: #2f2c60;
    width: 56px;
    height: 45px;
}

.widget-tf .controls button.selected svg#lowVoltage,
.widget-tf .controls button.selected svg#highVoltage {
    fill:#FFF;
}

.widget-tf .controls button img {
    display:block;
    width:100%;
}

/* DRAG DROP */
.drag-drop-activity.backpack,
.drag-drop-activity.first-aid-kit-rotfa {
    gap: 16px;
}


.dd-options-grid {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    flex-wrap: wrap;
    margin: 1rem 1rem 1rem 0;
    padding: 1rem;
    border: 2px solid #f4f3ea;
    border-radius: 8px;
}

.dd-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    margin: 0;
    padding: 16px;
    position:relative;
    z-index:200;
}

.drag-drop-activity.drabc .dd-options-grid {
    grid-template-columns: 1fr 1fr;
}

.drag-drop-activity.drabc .dd-target {
    width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 16px;
    background: #ffffff;
    margin: 16px 0;
    border-radius: 5px;
}

.minor-injuries-treatment .dd-options-grid {
    flex-wrap: nowrap;
}

.drag-drop-activity {
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: stretch;
    min-height: 50vh;
    flex-wrap: wrap;
    gap:16px;
}

.drag-drop-activity.fainting-04,
.drag-drop-activity.fainting-06,
.drag-drop-activity.fainting-11 {
    min-height:unset;
}

.drag-drop-activity .dd-options {
    width: calc(50% - 16px);
}

.drag-drop-activity .dd-options p {
    width:90%;
}

.drag-drop-activity .dd-options.selected {
    width: 100%;
    margin: 2rem 0 0 0;
}

.drag-drop-activity .dd-targets {
    width: calc(50% - 16px);
    padding: 16px;
    display: flex;
    display:-webkit-flex;
    display:-moz-flex;
    display:-moz-box;
    display:-ms-flexbox;
    flex-direction: column;
    justify-content: flex-end;
    background: #f4f3ea;
    border-radius: 8px;
}

.drag-drop-activity .dd-option {
    display: inline-block;
    width: 190px;
    text-align: center;
    border-radius:8px;
    padding:0.5rem;
}

.drag-drop-activity.fainting-04 .dd-option,
.drag-drop-activity.fainting-06 .dd-option,
.drag-drop-activity.fainting-11 .dd-option {
    width: 300px;
    min-height: 320px;
}

.drag-drop-activity.asthma-triggers .dd-option {
    width:150px;
}

.drag-drop-activity.asthma-triggers .dd-target {
    width:100%;
}

.drag-drop-activity.anaphylaxis-triggers .dd-option {
    width: 120px;
}

.drag-drop-activity.poisons-ways-of-entry .dd-options-grid .dd-option {
    width:264px;
}

.widget-poisons .drag-drop-activity .dd-options.selected .dd-option {
    width:100%;
}

.widget-extreme-temperatures-adult-heat-stroke-treatment .drag-drop-activity .dd-option,
.widget-extreme-temps .drag-drop-activity .dd-option,
.widget-extreme-temperatures-heat-stroke-treatment .drag-drop-activity .dd-option {
    width:190px;
    min-height: 240px;
}

.widget-fractures .drag-drop-activity .dd-option {
    margin: 0 auto;
    height: auto !important;
}

.drag-drop-activity.extreme-temperatures-08,
.drag-drop-activity.fractures {
    align-items: unset;
    gap:0;
}

.dd-options.selected {
    display: flex;
    display: -webkit-flex;
    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    flex-wrap: wrap;
}

.drag-drop-activity .dd-options.selected .dd-option {
    padding:0.5rem;
    position:relative;
}

.drag-drop-activity.asthma-triggers .dd-options.selected .dd-option {
    width:140px;
}

.drag-drop-activity .dd-options.selected .dd-option.correct:after {
    display:block;
    content:"";
    background-image:url('/images/e-learning/widget-tick.svg');
    background-repeat:no-repeat;
    position:absolute;
    top: 50%;
    right: 24px;
    width: 60px;
    height: 60px;
}

.drag-drop-activity.drabc .dd-options.selected .dd-option.correct:after {
    display: block;
    content: "";
    background-image: url(/images/e-learning/widget-tick.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 10px;
    right: -75px;
    width: 39%;
    height: 40%;
}

.anaphylaxis-triggers .dd-target {
    margin:auto;
}

.widget-poisons .drag-drop-activity .dd-options.selected .dd-option.correct:after {
    right: 0;
    width: 60px;
    height: 60px;
}

.widget-poisons .drag-drop-activity .dd-options.selected .dd-option::after {
    top: 12px;
    right: -15px;
    width: 60px;
}

.dd-inplace-review {
    margin:0 auto;
}

.dd-inplace-review span {
    display:block;
    font-weight:600;
    text-align:center;
    margin:0 0 1rem 0;
}

.dd-inplace-review button {
    font-weight: 600;
    text-align: center;
}

.widget-fractures .drag-drop-activity .dd-options.selected .dd-option.correct::after {
    top: unset;
    right: -8px;
    width: 60px;
    height: 60px;
    bottom: 8px;
}

.drag-drop-activity.bites-stings .dd-target {
    text-align: center;
    margin: 0 auto;
}

.drag-drop-activity.bites-stings .dd-target img {
    max-height: 400px;
    margin: 0 auto;
    width: 200px;
}

.drag-drop-activity.bites-stings .dd-option {
    cursor:grab;
}

.drag-drop-activity .dd-options.selected .dd-option::after {
    display:block;
    content:"";
    background-image:url('/images/e-learning/widget-cross.svg');
    background-repeat:no-repeat;
    position:absolute;
    top: 50%;
    right: 0;
    width: 60px;
    height: 60px;
}

.drag-drop-activity.drabc .dd-options.selected .dd-option::after {
    display: block;
    content: "";
    background-image: url(/images/e-learning/widget-cross.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 12px;
    right: -75px;
    width: 39%;
    height: 40%;
}

.widget-fractures .drag-drop-activity .dd-options.selected .dd-option::after {
    top: unset;
    right: -12px;
    width: 60px;
    height: 60px;
    bottom: 0;
}   

.drag-drop-activity .dd-option img {
    display: block;
    width: 100%;
    max-width: 160px;
    margin: 0 auto;
}

.drag-drop-activity.fainting-04 .dd-option img,
.drag-drop-activity.fainting-06 .dd-option img {
    max-width:300px;
}

.widget-fractures .drag-drop-activity .dd-option img {
    max-width: 260px;
}

.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-option img,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-option img,
.drag-drop-activity.drowning .dd-option img,
.drag-drop-activity.minor-injuries-treatment .dd-option img {
    max-width: 100%;
}

.drag-drop-activity.drowning .dd-option img {
    margin:0.5rem 0;
}

.drag-drop-activity .dd-option-markup {
    background: #2f2c5f;
    color: #ffffff;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 500;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    text-align: left;
}


.drag-drop-activity.minor-injuries-treatment .dd-option-markup {
    background:none;
    flex-wrap:wrap;
    gap:6px;
}

.drag-drop-activity.minor-injuries-treatment .selected .dd-option-markup {
    flex-wrap:nowrap;
    gap:32px;
    padding: 0;
}

.drag-drop-activity.minor-injuries-treatment .dd-option-markup img {
    max-width:300px;
    border:none;
    max-height: 200px;
}

.drag-drop-activity.minor-injuries-treatment .dd-option-markup p {
    max-width:300px;
    margin:0 2rem;
}

.drag-drop-activity.fainting-04 .dd-option-markup,
.drag-drop-activity.fainting-06 .dd-option-markup,
.drag-drop-activity.fainting-11 .dd-option-markup {
    display:block;

}

.drag-drop-activity.fainting-04 .dd-option-markup,
.drag-drop-activity.fainting-06 .dd-option-markup {
    background:none;
    padding: 0;
}

.drag-drop-activity.poisons-ways-of-entry .dd-option-markup {
   min-height:90px;
}

.widget-fractures .drag-drop-activity .dd-option-markup {
    padding:0.5rem;
}

.widget-extreme-temps .drag-drop-activity.extreme-temperatures-donts .dd-option-markup {
    border:5px solid #cc0910;
    background: #FFF;
    color:#2f2c5f;
}

.drag-drop-activity.extreme-temperatures-donts .dd-option-markup {
    padding: 1rem;
    border-radius: 12px;
    font-weight: normal;
    text-transform: unset;
    text-align: left;
    line-height: 1.3rem;
    font-size: 1rem;
}

.drag-drop-activity.extreme-temperatures-08 .dd-option-markup,
.drag-drop-activity.fractures .dd-option-markup {
    background: #FFF;
    color: #2f2c60;
    border: 5px solid #d71000;
}

.drag-drop-activity .dd-target-markup {
    background: #7cbfb5;
    color: #ffffff;
    padding: 5px 10px;
    border-radius: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.drag-drop-activity.drowning .dd-target-markup,
.drag-drop-activity.minor-injuries-treatment .dd-target-markup {
    background: #f4b821;
    padding: 0;
    font-size: 2rem;
    text-align: center;
    font-weight: 600;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 3rem;
    flex-shrink: 0;
}

.drag-drop-activity.drabc .dd-target-markup {
    background: #ffffff;
    color: #2f2c60;
    padding: 6px 16px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    width: fit-content;
    text-align: center;
    border: 2px solid #2f2c60;
}

.drag-drop-activity.drabc .dd-options.selected {
    width: 100%;
    margin: 0;
}

.drag-drop-activity.drabc .dd-options.selected .dd-option {
    padding: 0;
    position: relative;
}

.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-target-markup,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-target-markup {
    background:#cc0000;
}

.w-et-heat .drag-drop-activity .dd-option {
    border: 3px solid #cc0000;    
}

.w-et-heat .drag-drop-activity .selected .dd-option {
    border: 3px solid #7cbfb5;
    top:-20px;
}

.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-option,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-option {
    border: 3px solid #cc0000;    
}

.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .selected .dd-option,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .selected .dd-option {
    border: 3px solid #cc0000;
    top:-15px;
}

.w-et-heat .drag-drop-activity .selected .dd-option img {
    margin-top:1.5rem;
}

.drag-drop-activity .dd-target.ui-droppable-dropping .dd-target-markup {
    box-shadow: 0 0 0px 5px rgba(54, 80, 76, 0.89);
}

.dd-option.ui-draggable.ui-draggable-handle.ui-draggable-dragging {
    width: 128px;
    height: 128px;
}

.drag-drop-activity .dd-option.ui-draggable {
    cursor:pointer;
}

.dd-controls,
.dd-results {
    width: 100%;
    text-align: center;
    justify-content: center;
    margin: 2rem 0 0 0;
}

.first-aid-kit-rotfa .dd-controls,
.backpack .dd-controls {
    position: relative;
    z-index: 300;
    width: fit-content;
    text-align: center;
    justify-content: center;
    margin: 2rem auto;
}

.elearn-course .dd-controls button,
.elearn-course .dd-results button {
    border-radius: 8px;
    padding: 1rem;
    margin: 1rem auto 0.5rem auto;
    font-family: Ubuntu, sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    text-align: center;
    max-width: 240px;
    background: #d71000;
    color: #FFFFFF;
    display: block;
    transition: 0.7s;
}

.elearn-course .drag-drop-activity.drowning .dd-controls,
.elearn-course .drag-drop-activity.minor-injuries-treatment .dd-controls {
    width: 200px;
    text-align: center;
    justify-content: center;
    margin: 0rem auto;
    position: relative;
    top: unset;
    right: unset;
}

.elearn-course .drag-drop-activity.drowning .dd-controls, 
.elearn-course .drag-drop-activity.minor-injuries-treatment .dd-controls {
    top:0;
}

.elearn-course .dd-controls button:hover,
.elearn-course .dd-results button:hover {
    cursor: pointer;
    background: #145a72;
    color: #FFFFFF;
}

.elearn-course .asthma-triggers .dd-controls button {
    background: #d4145a;
}

.elearn-course .drowning .dd-controls button,
.elearn-course .minor-injuries-treatment .dd-controls button {
    background: #145a72;
}

.elearn-course .asthma-triggers .dd-results button {
    background: #145a72;
}

.elearn-course .asthma-triggers .dd-controls button:hover {
    background: #d06e42;
}

.elearn-course .drowning .dd-controls button:hover,
.elearn-course .minor-injuries-treatment .dd-controls button:hover {
    background: #d06e42;
}

.elearn-course .asthma-triggers .dd-results button:hover {
    background: #d06e42;
}

.dd-results .incorrect,
.dd-results .correct {
    padding: 1rem;
    border-radius: 10px;
}

.dd-results .incorrect p,
.dd-results .correct p {
    color: #FFF;
    font-weight: 600;
}

.widget-try-again {
    display:block;
    padding:0.5rem;
    font-weight:500;
}

.dd-results .incorrect {
    background: #d06e42;
}

.dd-results .incorrect button {
    background:rgba(0,0,0,0.1);
}

.asthma-triggers .dd-results .incorrect {
    background: #d4145a;
}
   
.dd-results .correct {
    background: #009749;
}

.drag-drop-activity.poisons-ways-of-entry,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment,
.drag-drop-activity.minor-injuries-treatment,
.drag-drop-activity.drowning {
    flex-direction: column;
}

.drag-drop-activity.poisons-ways-of-entry .dd-targets,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets,
.drag-drop-activity.minor-injuries-treatment .dd-targets,
.drag-drop-activity.drowning .dd-targets {
    flex-direction: row;
    justify-content: flex-start;
    width: 100%;
    margin: 2rem 0;
    flex-wrap: wrap;
}


.drag-drop-activity.poisons-ways-of-entry .dd-targets .dd-target {
    width: 25%;
    flex-grow: 0;
    flex-shrink: 0;
}

.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-options-grid,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-options-grid,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options .dd-options-grid,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-options-grid,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-options-grid,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options .dd-options-grid,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets,
.drag-drop-activity.minor-injuries-treatment .dd-options .dd-options-grid,
.drag-drop-activity.minor-injuries-treatment .dd-targets,
.drag-drop-activity.drowning .dd-options-grid,
.drag-drop-activity.drowning .dd-targets {
    justify-content: space-between;
}

.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options .dd-option,
.drag-drop-activity.drowning .dd-targets .dd-target,
.drag-drop-activity.drowning .dd-options .dd-option {
    width: 225px;
    flex-grow: 0;
    flex-shrink: 0;
}

.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option {
    width:188px;
    min-height: 145px;
}

.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options .dd-option {
    min-height: 160px;
}

.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-targets .dd-target,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target,
.drag-drop-activity.drowning .dd-targets .dd-target {
    width: calc(25% - 1rem);
}


.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options .dd-option{
    background:#FFF;
}

.drag-drop-activity.drowning .dd-options .dd-option {
    min-height:170px;
    background:#FFF;
}

.submit-right {
        display:block;
        padding-right:20rem;
    }

.drag-drop-activity.minor-injuries-treatment .dd-targets .dd-target,
.drag-drop-activity.minor-injuries-treatment .dd-options .dd-option {
    width:100%;
    flex-grow: 0;
    flex-shrink: 0;
    padding:0;
    min-height:142px;
    margin:0.5rem;
    display: flex;
    gap: 16px;
    background: #FFFFFF;
}

.drag-drop-activity.minor-injuries-treatment .dd-targets .dd-target {
    padding: 16px;
    border-radius: 8px;
}

.drag-drop-activity.minor-injuries-treatment .dd-options .dd-option {
    background:#FFF;
}

.drag-drop-activity.minor-injuries-treatment .dd-options .dd-option img,
.drag-drop-activity.drowning .dd-options .dd-option img {
    border-radius:8px;
}

.drag-drop-activity.drowning .dd-options.selected .dd-option,
.drag-drop-activity.minor-injuries-treatment .dd-options.selected .dd-option {
    width:100%;
    margin: 0;
    background: #fff;
}

.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-target .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-target .dd-options .dd-option,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-target .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-target .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-target .dd-options .dd-option,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-target .dd-options .dd-option,
.drag-drop-activity.drowning .dd-target .dd-options .dd-option {
    width: 100%;
    min-height:200px;
}

.drag-drop-activity.poisons-ways-of-entry .dd-targets .dd-target img,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-target img,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-target img,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-target img,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-target img,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-target img,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-target img,
.drag-drop-activity.minor-injuries-treatment .dd-target img,
.drag-drop-activity.drowning .dd-target img {
    width: 100%;
}

.drag-drop-activity.poisons-ways-of-entry .dd-options,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-options,
.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-options,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options,
.drag-drop-activity.minor-injuries-treatment .dd-options,
.drag-drop-activity.drowning .dd-options {
    width: 100%;
}

.drag-drop-activity.minor-injuries-treatment .dd-options,
.drag-drop-activity.minor-injuries-treatment .dd-options.selected {
    margin:0;
}

.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-target-markup,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-target-markup,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-target-markup,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-target-markup,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-target-markup,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-target-markup,
.drag-drop-activity.drowning .dd-target-markup {
    font-size: 48px;
    height: 120px;
    display: flex;
    display: -webkit-flex;
    
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    align-items: center;
    justify-content: center;
}

.drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-target:last-child .dd-target-markup,
.drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-target:last-child .dd-target-markup,
.drag-drop-activity.extreme-temperatures-adult-heat-exhaustion-treatment .dd-target:last-child .dd-target-markup,
.drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-target:last-child .dd-target-markup,
.drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-target:last-child .dd-target-markup,
.drag-drop-activity.oi-extreme-temperatures-adult-heat-exhaustion-treatment .dd-target:last-child .dd-target-markup{
    margin-right: 0;
}

.image-multi-choice .imc-images .controls svg {
    width: 100%;
}

.mq-score-container {
    padding:1rem;
}

.mq-score {
    font-size:2rem;
    font-family: Ubuntu, sans-serif;
}
.drag-drop-activity.extreme-temperatures-08 > div,
.drag-drop-activity.fractures > div {
    width: 33% !important;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
}

.backpack div.widget-intro,
.first-aid-kit-rotfa div.widget-intro,
.first-aid-kit div.widget-intro,
.first-aid-kit-pupo div.widget-intro,
.drag-drop-activity.extreme-temperatures-08 > div.widget-intro,
.drag-drop-activity.fractures > div.widget-intro,
.widget-unresponsive  div.widget-intro,
.fainting-04 div.widget-intro,
.fainting-06 div.widget-intro,
.fainting-11 div.widget-intro,
.anaphylaxis-triggers div.widget-intro {
    width: 100% !important;
    margin: 0 0 1rem 0;
}

.drag-drop-activity.fainting-04 .dd-targets,
.drag-drop-activity.fainting-04 .dd-options,
.drag-drop-activity.fainting-06 .dd-targets,
.drag-drop-activity.fainting-06 .dd-options,
.drag-drop-activity.fainting-11 .dd-targets,
.drag-drop-activity.fainting-11 .dd-options,
.widget-unresponsive .drag-drop-activity .dd-targets,
.widget-unresponsive .drag-drop-activity .dd-options {
    width:30%;
}

.drag-drop-activity.fainting-04 .dd-options.selected,
.drag-drop-activity.fainting-06 .dd-options.selected,
.drag-drop-activity.fainting-11 .dd-options.selected,
.widget-unresponsive .drag-drop-activity .dd-options.selected {
    width:100%;
}

.drag-drop-activity.fainting-04 .dd-option.correct,
.drag-drop-activity.fainting-06 .dd-option.correct,
.drag-drop-activity.fainting-11 .dd-option.correct,
.widget-unresponsive .drag-drop-activity .dd-option.correct {
    width:100%;
}

.drag-drop-activity.fainting-04,
.drag-drop-activity.fainting-06,
.drag-drop-activity.fainting-11,
.widget-unresponsive .drag-drop-activity {
    justify-content: space-between;
    align-items: center;
}

.drag-drop-activity.backpack .dd-targets,
.drag-drop-activity.first-aid-kit-rotfa .dd-targets {
    width: calc(50% - 32px);
    justify-content: flex-start;
}

.drag-drop-activity.backpack .dd-targets .dd-target,
.drag-drop-activity.first-aid-kit-rotfa .dd-targets .dd-target {
    position: relative;
    width: 100%;
}

.drag-drop-activity.backpack .dd-targets .dd-target > img,
.drag-drop-activity.first-aid-kit-rotfa .dd-targets .dd-target > img {
    width: 100%;
}

.drag-drop-activity.backpack .template-container,
.drag-drop-activity.first-aid-kit-rotfa .template-container {
    width: 100%;
    margin: 0 auto;
    height: calc(100% + 132px);
}

.dd-targets.position-0 {}
.dd-targets.position-1 {}

.drag-drop-activity.backpack .dd-options.selected,
.drag-drop-activity.first-aid-kit-rotfa .dd-options.selected {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    padding: 20% 10%;
    position: absolute;
    top: 0;
    left: 0;
    height:100%;
}

.fainting-04 .dd-target,
.fainting-06 .dd-target,
.fainting-11 .dd-target,
.widget-unresponsive .dd-target {
    margin:0 auto;
}

.drag-drop-activity .template-container {
    width: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    flex-wrap:wrap;
}

.drag-drop-activity.fainting-04 .template-container, 
.drag-drop-activity.fainting-06 .template-container, 
.drag-drop-activity.fainting-11 .template-container  {
    display:block;
}

.drag-drop-activity.extreme-temperatures-08 .template-container,
.drag-drop-activity.fractures .template-container {
    width: 100%;
    height: 100%;
    display: block;
}

.drag-drop-activity .dd-targets img {
    width: 100%;
    display: block;
}

.drag-drop-activity.extreme-temperatures-08 .dd-options-grid,
.drag-drop-activity.fractures .dd-options-grid {
    align-self: center;
    margin: 1rem auto;
}

.drag-drop-activity.extreme-temperatures-08 .dd-targets img,
.drag-drop-activity.fractures .dd-targets img {
    width: 100%;
    display: block;
    max-width: 180px;
    margin: 1rem auto;
    align-self: center;
}

.drag-drop-activity.extreme-temperatures-08 .dd-option-markup,
.drag-drop-activity.fractures .dd-option-markup {
    height: auto;
    cursor: grab;
    max-width:300px;
    margin:1rem auto;
}

.first-aid-kit-pupo .dd-target,
.first-aid-kit .dd-target,
.drag-drop-activity.extreme-temperatures-08 .dd-target,
.drag-drop-activity.fractures .dd-target {
    margin: 0 auto;
    width: 100%;
    height: 100%;
    display: flex;
    display: -webkit-flex;
    display: -moz-flex;
    display: -moz-box;
    display: -ms-flexbox;
    flex-wrap: wrap;
}

.drag-drop-activity.extreme-temperatures-08 .dd-options-grid,
.drag-drop-activity.fractures .dd-options-grid {
    border: none;
    grid-template-columns: 1fr;
}

.drag-drop-activity.extreme-temperatures-08 .dd-targets,
.drag-drop-activity.fractures .dd-targets {
    padding: 0;
}

.drag-drop-activity.extreme-temperatures-08 .dd-options p,
.drag-drop-activity.fractures .dd-options p {
    width: 100%;
}

.drag-drop-activity.extreme-temperatures-08 .dd-results,
.drag-drop-activity.fractures .dd-results {
    margin: 0;
    font-weight: 600;
}
/*
    COMMON  ===============================================================================================================================================================
*/
@keyframes fadePopup {
    0% {
        height: auto;
        opacity: 0;
    }

    100% {
        height: auto;
        opacity: 1;
    }
}

@keyframes fadePopupDemo {
    0% {
        height: auto;
        opacity: 0;
    }

    100% {
        height: 100vh;
        opacity: 1;
    }
}

@media all and (max-width: 1280px) {

    .drag-drop-activity .dd-options {
        width: 100%;
    }

    .dd-options-grid {
        justify-content: center;
        margin: 1rem 0;
        padding:0;
    }

    .drag-drop-activity.backpack .dd-targets,
    .drag-drop-activity.first-aid-kit-rotfa .dd-targets,
    .drag-drop-activity .dd-targets {
        width: 100%;
    }

    .drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target, 
    .drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option, 
    .drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target, 
    .drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options .dd-option, 
    .drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target, 
    .drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option, 
    .drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target, 
    .drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options .dd-option, 
    .drag-drop-activity.drowning .dd-targets .dd-target, 
    .drag-drop-activity.drowning .dd-options .dd-option {
        width: calc(50% - 1rem);
        margin: 0.5rem;
    }

    .drag-drop-activity.poisons-ways-of-entry .dd-targets, 
    .drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets, 
    .drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets, 
    .drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets, 
    .drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets, 
    .drag-drop-activity.minor-injuries-treatment .dd-targets, 
    .drag-drop-activity.drowning .dd-targets {
        flex-wrap:wrap;
    }

    .elearn-course .drag-drop-activity.drowning .dd-controls, 
    .elearn-course .drag-drop-activity.minor-injuries-treatment .dd-controls {
        width:150px;
    }

}

@media all and (max-width: 1048px) {

    .drag-drop-activity.extreme-temperatures-08 > div,
    .drag-drop-activity.fractures > div {
        width: 100% !important;
    }

    .drag-drop-activity.extreme-temperatures-08 > div,
    .drag-drop-activity.fractures > div,
    .dd-options-grid {
        display: block;
        text-align:center;
    }

    .dd-inplace-review button {
        width: 200px;
        margin: 0 auto;
        display: block;
    }

    .drag-drop-activity.poisons-ways-of-entry .dd-options {
        width: 50%;
        margin: 0;
        padding: 0;
    }

    .drag-drop-activity.poisons-ways-of-entry .dd-options.selected {
        width:100%;
    }
    
    .drag-drop-activity.poisons-ways-of-entry .dd-targets {
        width:50%;
        margin:0;
        padding:1rem;
    }

    .drag-drop-activity.poisons-ways-of-entry .dd-options-grid .dd-option {
        width: 175px;
    }

    .drag-drop-activity.poisons-ways-of-entry .dd-options-grid {
        margin:0;
        padding: 1rem 0;
    }

    .drag-drop-activity.poisons-ways-of-entry {
        flex-direction:row;
    }

    .drag-drop-activity.poisons-ways-of-entry .dd-targets .dd-target {
        width: 80%;
        margin: auto;
    }

}

@media all and (max-width: 960px) {

    .minor-injuries-treatment .dd-options-grid {
        flex-wrap: wrap;
    }

    .v2 h4.quiz-question {
        display:block;
    }
    
    .question-number {
        font-size: 2rem;
        width: 100%;
        display: block;
        margin-bottom: 0.5rem;
    }

    .mq-answers li div, .abc-quiz .mq-answers li div {
        padding: 1rem 1rem 0.5rem 1rem;
    }

    .abc-quiz .mq-answers li div::before {
        font-size: 2rem;
    }

    .mini-quiz-container ul.mq-answers {
        padding: 0;
    }

    .mq-answers li div, 
    .abc-quiz .mq-answers li div {
        align-items:flex-start;
    }

    .mq-answers li div, 
    .abc-quiz .mq-answers li div {
        display:block;
    }

    .abc-quiz .mq-answers li div::before {
        text-align:left;
    }

    .mini-quiz-container .mq-submit,
    .answered.correct .mq-answer-text,
    .mq-answer-incorrect {
        margin:0;
        width:100%;
    }

    .mq-controls .mq-nav {
        padding:1rem 0.5rem;
    }

    .mq-controls .mq-nav {
        flex-wrap:wrap;
        justify-content: center;
    }

    .elearn-course .mqc-complete.mqc-complete .mq-nav button.mq-refresh,
    .elearn-course .mqc-complete.mqc-complete .mq-nav button.mq-continue {
        height: 45px;
        margin-bottom: 1rem;
    }

    .drag-drop-activity.minor-injuries-treatment .dd-targets .dd-target, .drag-drop-activity.minor-injuries-treatment .dd-options .dd-option {
        width: calc(100% - 1rem);
    }

    .submit-right {
        padding-right:0rem;
    }

    .elearn-course .drag-drop-activity.drowning .dd-controls, .elearn-course .drag-drop-activity.minor-injuries-treatment .dd-controls {
        margin: 2rem auto;
        position: relative;
        top: unset;
        right: unset;
    }

}

@media all and (max-width: 640px) {

    .drag-drop-activity.fainting-04 .dd-targets,
    .drag-drop-activity.fainting-04 .dd-options,
    .drag-drop-activity.fainting-06 .dd-targets,
    .drag-drop-activity.fainting-06 .dd-options,
    .drag-drop-activity.fainting-11 .dd-targets,
    .drag-drop-activity.fainting-11 .dd-options,
    .widget-unresponsive .drag-drop-activity .dd-targets,
    .widget-unresponsive .drag-drop-activity .dd-options,
    .drag-drop-activity.poisons-ways-of-entry .dd-targets .dd-target {
        width: 100%;
    }
    
    .drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target, 
    .drag-drop-activity.oi-extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
    .drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target, 
    .drag-drop-activity.oi-extreme-temperatures-heat-stroke-treatment .dd-options .dd-option,
    .drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-targets .dd-target, 
    .drag-drop-activity.extreme-temperatures-heat-exhaustion-treatment .dd-options .dd-option,
    .drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-targets .dd-target, 
    .drag-drop-activity.extreme-temperatures-heat-stroke-treatment .dd-options .dd-option,
    .drag-drop-activity.drowning .dd-targets .dd-target, .drag-drop-activity.drowning .dd-options .dd-option 
    {
        width: 100%;
    }

    .widget-tf .controls {
        width:60px;
    }

    .widget-tf .controls button {
        width: 100%;
        margin: 0px 0 0.5rem 0;
        padding: 0rem;
    }

    .v2 h4.quiz-question {
        margin: 0.5rem 0 2rem 0rem;
    }
}
