.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;
    margin-top: 10px;
}

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

.heading {
    font-size: 32px;
    font-weight: 300;
    margin: 20px 0;
}

.option {
    width: 100%;
    display: flex;
    align-items: center;
    border: 1px solid #888;
    border-radius: 5px;
    padding: 15px 20px;
    margin: 10px 0;
    cursor: pointer;
    background: none;
    outline: none;
    color: #fff;
}
.option:hover {
    border: 1px solid var(--celebrityschool-purple);
}
.option:hover .number {
    border: 2px solid var(--celebrityschool-purple);
}

.option.selected {
    background: var(--celebrityschool-purple);
}
.option.selected:hover {
    border: 1px solid #888;
}
.option.selected:hover .number {
    border: 2px solid #fff;
}

.number {
    font-size: 16px;
    border: 2px solid #fff;
    /* padding: 3px 8px; */
    height: 30px;
    width: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    border-radius: 5px;
}

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

.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;
    }
}
@media screen and (max-width: 550px) {
    .heading {
        font-size: 18px;
    }

    .sub_heading {
        font-size: 16px;
    }

    .option {
        /* padding: 10px; */
    }

    .number {
        font-size: 14px;
    }

    .content {
        font-size: 14px;
    }
}
