.inner_page {
    padding-top: 100px;
}


body {
    font-family: "Nunito", sans-serif;
}

.profile_link {
    background-color: transparent;
    color: #fff;
    border-radius: inherit;
    margin-bottom: .5rem;
}

.profile_link.active {
    background-color: #fff;
    color: initial;
    border-radius: inherit;
    margin-bottom: .5rem;
}

.profile_image {
    position: relative;
}

.profile_image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
    border: 3px solid #000;
    border-radius: 50%;
}

.profile_user_text {
    width: 150px;
    height: 150px;
    padding: 1rem;
    text-transform: uppercase;
    font-size: 3rem;
    border-radius: 50%;
}

.is_hidden {
    display: none !important;
}

.is_shown {
    display: block !important;
}

.question_number_cont {
    position: absolute;
    right: 1rem;
    top: 1rem;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right top, #051937, #002d64, #004295, #0058c8, #0d6efd);
}

.current_question {
    font-size: 1.5rem;
    position: relative;
    top: -0.3rem;
    left: -0.5rem;
    font-weight: 700;

}

.current_question::after {
    content: "";
    width: 2px;
    height: 1.5rem;
    background: #fff;
    position: absolute;
    top: 12px;
    right: -4px;
    transform: rotate(20deg);
}

.total_questions {
    position: relative;
    top: 0.3rem;
    left: 0.3rem;
}

.question_cont {
    font-weight: 700;
    font-size: 2rem;
    margin-top: 4rem;
    padding-bottom: 1rem;
}

.answer_item {
    width: 80%;
    margin: auto;
    padding: 0.5rem;
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    border-radius: 2rem;
    border: 1px solid rgb(3 93 212 / 30%);
    cursor: pointer;
    transition: all 250ms ease-in-out;
}

.answer_item.active,
.answer_item:hover {
    color: #fff;
    background: #002d64;
}