.container {
    position: absolute;
    height: 100vh;
    width: 100%;
    display: none;
    transition: all 0.5s ease;
}

.container.container_active {
    display: block;
}
.container.container_next {
    display: block;
    transform: translateY(100%);
}
.container.container_previous {
    display: block;
    transform: translateY(-100%);
}

.main {
    position: absolute;
    width: 90%;
    max-width: 550px;
    top: 52%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.sub_heading {
    font-size: 20px;
    color: #ccc;
}

.other_text {
    color: #ccc;
    margin: 20px 0;
    text-align: center;
}

.heading {
    -webkit-animation: loadskeleton 1.25s ease infinite;
    animation: loadskeleton 1.25s ease infinite;
    background: linear-gradient(90deg, black, #1b1b1b, black);
    background-size: 200%;
    min-height: 60px;
    margin-bottom: 20px;
    pointer-events: none;
}

.option {
    width: 100%;
    margin: 10px 0;
    background: #333;
    -webkit-animation: loadskeleton 1.25s ease infinite;
    animation: loadskeleton 1.25s ease infinite;
    background: linear-gradient(90deg, black, #1b1b1b, black);
    background-size: 200%;
    border: 1px solid #333;
    display: flex;
    align-items: center;
    padding: 15px;
}

.check_box {
    height: 30px;
    width: 30px;
    border: 2px solid #fff;
    border-radius: 3px;
}

.content {
    margin-left: 10px;
    font-size: 16px;
}

.skip_question {
    display: block;
    font-size: 16px;
    margin: auto;
    margin-top: 20px;
    background: none;
    border: none;
    border-bottom: 1px solid #888;
    outline: none;
    color: #888;
    /* text-decoration: underline; */
    padding-bottom: 2px;
    cursor: pointer;
}
.submit_button {
    padding: 10px 30px;
    background: var(--celebrityschool-purple);
    border: none;
    color: #fff;
    border-radius: 5px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 20px;
    font-weight: 500;
    font-size: 1rem;
}
.continue_button {
    width: 100%;
    padding: 15px 0;
    border: none;
    background: var(--gradient);
    outline: none;
    color: #fff;
    border-radius: 7px;
    cursor: pointer;
    font-size: 16px;
    font-family: "Poppins";
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
}
.continue_button:active {
    transform: scale(0.98);
}

@media screen and (max-width: 1050px) {
    .main {
        top: 52%;
    }
}

@media screen and (max-width: 750px) {
    .sub_heading {
        font-size: 18px;
    }
    .heading {
        font-size: 24px;
    }
    .option {
        padding: 10px;
    }
}

@keyframes loadskeleton {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: -200% 0;
    }
}
