@media screen and (orientation: portrait) {
    .app {
        min-width: 0;
        width: calc(100vw - 24px);
        max-width: calc(100vw - 24px);
        padding: 12px;
        height: calc(100vh - 24px);
        min-height: calc(100vh - 24px);
        gap: 12px;
    }

    .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;
    }

    select {
        color: var(--primary-text-color);
        background: var(--input-color);
        border: none;
        caret-color: var(--primary-text-color);

        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;
    }

}