/* ---- Media quiries ---- */

@media only screen and (min-width: 1600px) {

    .container {
        max-width: 1600px;
    }
}

@media only screen and (max-width: 1366px) {}

@media only screen and (max-width: 1024px) {}

@media only screen and (max-width: 992px) {

    .container {
        padding: 0 30px;
    }

    .col-1 {
        width: unset;
        margin-right: 20px
    }

    .survey-container .question> :first-child::before {
        width: 28px;
        height: 28px;
        left: -28px;
        top: 10px;
        font-size: 10px;
        padding-top: 4px;
    }

    .input-group {
        padding: 0
    }

}

@media only screen and (max-width: 480px) {}


/* ---- Lock portrait ---- */
@media screen and (max-device-aspect-ratio: 1/1) and (orientation: portrait) {

    .portrait_rotation,
    .message_tablet {
        display: flex;
    }

}

@media only screen and (max-width: 991px) and (max-height: 480px),
only screen and (max-width: 480px) and (max-height: 991px) {
    .message_tablet {
        display: none;
    }

    .portrait_rotation,
    .message_disktop {
        display: flex;
    }
}