@media  screen and (max-width: 1024px){
    .no-mob {
        display: none;
    }

    .no-desk {
        display: flex;
    }

    .content-dashboard {
        flex-direction: column;
        justify-content: center;
        min-height: unset;
    }

    .register-preferences {
        justify-content: center;
        align-items: unset;
        height: auto;
        overflow-y: auto;
    }

    .register-preferences::-webkit-scrollbar {
        display: none;
    }

    .rp-content {
        width: 80%;
        height: max-content;
        padding: 100px 0;
    }

    .rp-content > p {
        width: 100%;
        font-size: clamp(10px, 4vw, 30px);
        margin-bottom: 10%;
    }

    .qa-content {
        width: 100%;
    }

    .question {
        height: 80px;
    }

    .question > div > h4 {
        font-size: clamp(8px, 3.5vw, 25px);
    }

    .answer {
        width: 80%;
        gap: 4%;
    }

    .answer > input {
        width: 20px;
        height: 20px;
    }

    .answer > p {
        font-size: clamp(8px, 3.5vw, 25px);
    }

    .line-btn-container {
        width: 80%;
    }

    .rp-content .line {
        width: 100%;
    }

    .rp-btn {
        width: 100%;
        font-size: clamp(8px, 3.5vw, 25px);
        height: 80px;
    }

}

@media  screen and (max-width: 768px){
    .question {
        height: 40px;
    }

    .answer > input {
        width: 15px;
        height: 15px;
    }

    .rp-btn {
        height: 55px;
    }
}

@media  screen and (max-width: 480px){
    .answer > input {
        width: 10px;
        height: 10px;
    }

    .rp-btn {
        height: 40px;
    }
}