.disc-questions {
    /* display: none; */
  font-family: Inter, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.42857143;
  color: #000000;
  position: relative;
  background: #B7D8F2;
  padding: 50px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.42857143;
}

.nowrap {
    white-space: nowrap;
}

/*#region quesions*/
.disc-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 40px;
    text-align: center;
    color: #fff;
    text-transform: uppercase;
}

.disc-desc {
    font-family: Inter Medium, Arial, sans-serif;
    font-size: 35px;
    text-align: center;
    color: #fff;
    margin-bottom: 32px;
}

.disc-questions .question {
    background-color: #C4DCEF;
    padding: 32px 60px 36px;
    border-radius: 50px;
    margin-bottom: 50px;
}

.question-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 25px;
    margin-bottom: 36px;
}

.question-title.error {
    color: red;
}

.disc-questions .answers {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.disc-questions .answers label {
    flex: 1 1 calc(50% - 30px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50%;
    gap: 30px;
    position: relative;
    cursor: pointer;
    padding: 9px 20px;
    border-radius: 60px;
    font-weight: unset;
    margin-bottom: 0;
    background-color: #fff;
}

.disc-questions .answers input[type="radio"] {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}   

.custom-radio {
    display: none;
    width: 18px;
    height: 18px;
    background-color: #3D9FEB;
    border-radius: 50%;
}

.answers input[type=radio]:checked + .custom-radio {
    display: block;
}

.disc-questions .answers label.active, 
.disc-questions .answers label:hover {
    background-color: #003E5C;
}

.disc-questions .answers label.active .answer-text,
.disc-questions .answers label:hover .answer-text {
    color: #fff;
}

.answer-text {
    font-size: 22px;
}

button#quiz-submit {
    display: block;
    margin: 0 auto;
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 30px;
    border: none;
    border-radius: 70px;
    padding: 16px 64px;
    background-color: rgba(8, 90, 153, .97);
    color: #fff;
}

.questions-alert {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, .6);
    color: #fff;
}

.questions-alert-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 99%;
    max-width: 800px;
    display: flex;
    gap: 60px;
    background-color: #3D9FEB;
    border-radius: 20px;
    padding: 80px 55px;
}

.alert-image {
    flex-shrink: 0;
}

.alert-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 34px;
    text-align: center;
    margin-bottom: 30px;
    text-transform: uppercase;
}

.alert-desc {
    font-family: Inter Medium, Arial, sans-serif;
    font-size: 22px;
    text-align: justify;
}

.alert-btn a {
    display: block;
    color: #fff;
    font-size: 20px;
}

a.retry-btn {
    font-family: Inter Bold, Arial, sans-serif;
    padding: 8px 50px;
    background-color: rgba(8, 90, 153, .97);
    border-radius: 60px;
    width: fit-content;
    margin: 30px auto 20px;
}

a.back-btn {
    font-family: Inter Medium, Arial, sans-serif;
    display: flex;
    align-items: start;
    max-width: 180px;
    margin: 0 auto;
    text-align: center;
    gap: 8px;
}

a.back-btn img {
    width: 30px;
}

@media (max-width: 979px) {
    .disc-title {
        font-size: 32px;
    }

    .disc-desc {
        font-size: 20px;
    }

    .disc-questions .question {
        padding: 30px;
        margin-bottom: 30px;
    }

    .question-title {
        font-size: 20px;
        margin-bottom: 28px;
    }

    .disc-questions .answers {
        gap: 20px;
    }

    .disc-questions .answers label {
        flex: 1 1 calc(50% - 20px);
    }

    .answer-text {
        font-size: 18px;
    }

    button#quiz-submit {
        font-size: 24px;
    }

    .questions-alert-content {
        padding: 40px;
    }
}

@media (max-width: 767px) {
    .disc-title {
        font-size: 28px;
    }

    .disc-desc {
        font-size: 18px;
    }

    .question-title {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .disc-questions .answers label {
        width: 100%;
        flex: unset;
        gap: 10px;
    }

    .answer-text {
        font-size: 16px;
    }

    .disc-questions .question {
        padding: 15px;
        border-radius: 20px;
    }

    button#quiz-submit {
        font-size: 20px;
    }

    .questions-alert-content {
        flex-direction: column;
        align-items: center;
        padding: 30px;
        gap: 20px;
    }

    .alert-title {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .alert-desc {
        font-size: 18px;
    }
}
/*#endregion*/

/*#region result*/
.disc-results  {
    display: none;
  font-family: Inter, Arial, sans-serif;
  font-size: 20px;
  line-height: 1.42857143;
  color: #fff;
  position: relative;
  background-color: #B7D8F2;
  padding: 50px 0;
}

.disc-results-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 35px;
    color: #FFFF68;
    text-align: center;
    margin-bottom: 30px;
}

.disc-results-flex {
    display: flex;
    align-items: center;
    gap: 45px;
}

.disc-results-img {
    flex-shrink: 0;
}

.result-header {
    font-size: 25px;
    margin-bottom: 10px;
}

.result-title {
    font-family: Inter Bold, Arial, sans-serif;
    font-size: 30px;
    color: #FFFF68;
    margin-bottom: 30px;
}

.result-des p {
    font-family: Inter Medium, Arial, sans-serif;
    color: #fff;
    margin-bottom: 20px;
}

.result-cta {
    display: flex;
    align-items: center;
    gap: 40px;
    line-height: 1.2;
}

a.detail-btn {
    display: inline-block;
    padding: 14px 60px;
    font-family: Inter Bold, Arial, sans-serif;
    color: #fff;
    background-color: rgba(8, 90, 153, .97);
    border-radius: 60px;
}

a.home-btn {
    display: inline-block;
    font-family: Inter Bold, Arial, sans-serif;
    color: #000;
    display: flex;
    align-items: center;
    gap: 16px;
}

@media (min-width: 980px) {
    .result-cta {
        margin-top: 30px;
    }
}

@media (min-width: 1300px) {
    .disc-results .container {
        width: 1270px;
    }
}

@media (max-width: 979px) {
    .disc-results {
        padding: 40px 0;
        font-size: 18px;
    }

    .disc-results-flex {
        flex-direction: column;
        gap: 30px;
    }

    .disc-results-title {
        font-size: 28px;
    }

    .result-title {
        font-size: 25px;
    }

    .result-header {
        font-size: 20px;
    }
}

@media (max-width: 767px) {
    .disc-results {
        font-size: 16px;
    }
    
    .result-cta {
        flex-direction: column;
        gap: 20px;
    }
}
/*#endregion*/

/*#region popup form*/
.disc-form {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.disc-form-content {
    position: relative;
    width: 95%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: 500px;
}

.disc-form-close {
    width: fit-content;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
}
/*#endregion*/