/*
 * The plugin loads this file only when the mobile_content_fallback feature
 * flag is enabled.
 * It addresses WPBakery columns that reserve space while a flip animation
 * leaves them at opacity: 0 on training single pages at mobile widths.
 */
@media (max-width: 767px) {
    body.single-trainings .trng_content .flip-in-vertical-wrap .wpb_column {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }
}
