.font-24 {
    font-size: 24;
}
.color-E9A42A {
    color: var(--primary-color);
}
.title {
    color: var(--primary-color);
    font-family: Aurora Regular;
    font-size: 32px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
}
.subtitle{
    font-family: Aurora Regular;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-align: center;
    color: var(--title-color);
}

.sub-title {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.88px;
    text-transform: capitalize;
    color: var(--title-color);
}

.continue_btn {
    padding: 18px 40px;
    border-radius: 100px;
    background: var(--btn-bg-color);
    line-height: 70px;
    color: var(--btn-text-color);
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    letter-spacing: 1.68px;
    text-transform: uppercase;
    width: auto;
}

.continue_btn:hover {
    text-decoration: none;
    background: var(--btn-bg--hover-color);
}

.description-text {
    font-family: 'Lato', sans-serif;
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 1.88px;
    line-height: 25px;
}

.select-birthdate select {
    text-align: center;
    min-height: 40px;
    margin: 5px 0;
    padding: 10px;
    font-size: 25px;
    background-color: transparent;
    border: solid 1px var(--option-border-color);
    cursor: pointer;
    color: #fff;
}

.select-birthdate select:focus {
    border: solid 1px var(--option-border-color);
    background-color: transparent;
    outline: 0;
}

.calculation-card {
    border-radius: 30px;
    background-color: transparent;
}

.discover_btn {
    animation: blink 1s infinite;
}

.discover_btn:hover {
    animation: none;
}

.question {
    text-align: center;
    font-family: 'Lato', sans-serif;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 2.88px;
    text-transform: capitalize;
    color: var(--title-color);
}

.question-option input {
    display: none;
}

.question-option label {
    box-sizing: border-box;
    min-height: 46px;
    padding: 10px 15px;
    color: var(--primary-color);
    background: transparent;
    border: solid 1px var(--option-border-color);
    position: relative;
    cursor: pointer;
    transition: .2s;
    font-size: 22px;
    font-weight: inherit;
    margin-top: 20px;
    display: inline-block;
    min-width: 500px;
    justify-content: center;
}
.question-option label:hover {
    background-color: var(--option-bg-color-hover);    
}

.my-progress-bar {
    position: relative;
}

.progress-percentage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 30px;
    font-family: verdana;
    font-weight: bold;
    color: var(--primary-color);
}

.results h4{
    margin-top: 20px;
}

.chakra_modal .modal-dialog .modal-content{
    background: var(--bg-image);
    background-size: cover;
    text-align: left;
}
.chakra_modal .modal-dialog .modal-content{
    border: 1px solid var(--option-border-color);
}
.chakra_modal .modal-title{
    background-color: transparent;
    padding: 0px;
    font-size: 26px;
}
.chakra_modal .modal-content .btn-close {
    position: absolute;
    right: 8px;
    top: 8px;
    opacity: 1;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    margin: 5px;
}
.discover-screen img {
    max-width: 100%
}

@media (max-width: 767px) {
    .title {
        font-size: 20px;
    }

    .sub-title {
        font-size: 14px;
    }

    .result {
        font-size: 20px;
    }

    .continue_btn {
        font-size: 12px;
    }

    .select-birthdate select {
        font-size: 14px;
    }
    .question-option label {
        min-width: 100%;
    }
}