@media screen and (orientation: portrait) {


    .container {
        gap: 12px;
        height: fit-content;
    }

    input {
        color: var(--primary-text-color);
        background: var(--input-color);
        border: none;
        caret-color: var(--primary-text-color);

        height: 28px;
        font-size: 18px;
    }

    .adaptive-container {
        flex-direction: column;
    }


    .answer-input-field {
        padding: 8px 12px !important;
        width: calc(100% - 24px) !important;
    }

    textarea {
        background: var(--input-color);
        color: var(--primary-text-color);
        border: none;
        caret-color: var(--primary-text-color);
        height: 56px;
        font-size: 18px;
    }

    .phone-only-gap {
        height: 128px !important;
        min-height: 128px !important;
        max-height: 128px !important;
    }

    .max-width-mobile {
        width: 100%;
    }

    .hide-mobile {
        display: none !important;
    }

    .visible-mobile {
        display: flex !important;
    }

}