<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">#section-1 {
    background: no-repeat center;
    background-image: url('../../img/test/basic-test/cover.png');
    background-size: cover;
}

#section-2 {
    background-color: #f8fafb;
}

#section-3-1 img {
    width: 120px;
}

#section-3-3 img {
    width: 120px;
}

#section-3-4 img {
    width: 120px;
}

/* toggle switch */
.switch_1 {
    width: 40px;
    height: 20px;
    top: 2px;
    position: relative;
    cursor: pointer;
    display: inline-block;
}

.switch_1 input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch_1_slider {
    background-color: #ddd;
    border-radius: 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch_1_slider:before {
    height: 12px;
    width: 12px;
    left: 5px;
    bottom: 4px;
    background-color: white;
    border-radius: 50%;
    position: absolute;
    content: "";
    -webkit-transition: .4s;
    transition: .4s;
}

.switch_1 input:checked+.switch_1_slider {
    background-color: rgba(38, 143, 182, 1);
}

.switch_1 input:focus+.switch_1_slider {
    box-shadow: 0 0 1px rgba(38, 143, 182, 1);
}

.switch_1 input:checked+.switch_1_slider:before {
    -webkit-transform: translateX(18px);
    -ms-transform: translateX(18px);
    transform: translateX(18px);
}

.button_quiz label .pointer {
    width: 82%;
}

.soal-pg {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 18px;
}

.jawaban-pg {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px;
}</pre></body></html>