@import url(https://fonts.googleapis.com/css?=Poppins:100,100italic,200,200italic,300,300italic,regular,italic,500,500italic,600,600italic,700,700italic,800,800italic,900,900italic);
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #8a7663;
}

.container {
    position: fixed;
    width: 100%;
    max-width: 500px;
    background-color: #1f0691;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(22, 9, 9);
}

.heading {
    text-align: center;
    font-size: 45px;
    color: #ece3e3;
    margin-bottom: 40px;
}

label {
    display: block;
    font-size: 12px;
    margin-bottom: 18px;
    color: #fff;
    text-transform: uppercase;
}

select {
    width: 100%;
    padding: 12px;
    text-transform: uppercase;
    border-radius: 10px;
    margin-bottom: 30px;
    background-color: #ffe1e1;
    color: #1f2847;
    font-size: 14px;
}

.btn {
    width: 100%;
    height: 60px;
    border-radius: 10px;
    background-color: #0c80ef;
    color: #fff;
    font-size: 18px;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s linear;
    margin-top: 50px;
}

.btn:hover {
    background-color: #0a6bc5;
}

.btn:disabled {
    cursor: not-allowed;
    background-color: #576081;
}

.hide {
    display: none;
}

.timer {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.timer .progress {
    width: 100%;
    height: 40px;
    position: relative;
    background-color: transparent;
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 10px;
    border: 3px solid #3f4868;
}

.timer .progress .progress-bar {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    overflow: hidden;
    background: linear-gradient(to right, #ff0e52, #5fe23e);
    transition: 1s linear;
}

.timer .progress .progress-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
}

.question-wrapper .number {
    color: #a2aace;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 20px;
}

.question-wrapper .number .total {
    color: #576081;
    font-size: 20px;
}

.question-wrapper .question {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.answer-wrapper .answer {
    width: 100%;
    height: 60px;
    padding: 20px;
    border-radius: 10px;
    color: #fff;
    border: 3px solid #3f4868;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    cursor: pointer;
    transition: 0.3s linear;
}

.answer .checkbox {
    width: 20px;
    height: 20px;
    font-size: 18px;
    border-radius: 50%;
    border: 3px solid #3f4868;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.answer .checkbox .icon {
    opacity: 0;
}

.answer:hover:not(.checked) .checkbox,
.answer.selected .checkbox {
    background-color: #0c80ef;
    border-color: #0c80ef;
}

.answer.selected.checkbox.icon {
    opacity: 1;
}

.answer.correct {
    border-color: #1beb37;
}

.answer.wrong {
    border-color: #ff0505;
}

.question-wrapper,
.answer-wrapper {
    margin-bottom: 50px;
}

.btn.next {
    display: none;
}

.end-screen .score {
    color: #fff;
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 80px;
    text-align: center;
}

.end-screen .score-text {
    color: #a2aace;
    font-size: 18px;
    margin-bottom: 120px;
}

@media(max-width: 486) {
    .container {
        min-height: 100vh;
        max-width: 100%;
        border-radius: 0;
    }
}