/*!
 * Visual Composer v4.3.4 (http://vc.wpbakery.com)
 * Copyright 2011-2014 Michael M - WPBakery.com
 */

// Fixes for theme css to enable correct representation of the page controls.
@import "config/variables.less";
// Some css fixes for WP themes.
html.js_active { margin-top: 0 !important; }
// Default state for some html objectes for editor
.vc_no-content-helper {
    display: none;
}
.vc_catcher {
    background-color: #E8ECB8
}
.vc_hidden-placeholder {
    display: none !important;
}
@import "modules/vc_welcome.less";
.vc_welcome {
    display: none;
}
.vc_controls {
    display: none;
}
.compose-mode {
    // Controls
    @import "lib/controls.less";
    // Vc element settings
    @import "lib/frontend_vc_elements.less";
    // Custom shortcodes settings
    @import "lib/frontend_editor_controls.less";
    // Helper information
    .vc_welcome {
        display: block;
    }
    // usefull classes for drag&drop/sorting activity
    @import "lib/frontend_draganddrop.less";

    .vc_hidden-xs {
        @media (max-width: @screen-xs-max) {
            .vc_frontend-editor-invisibility-settings;
        }
    }
    .vc_hidden-sm {
        @media (min-width: @screen-sm-min) and (max-width: @screen-sm-max) {
            .vc_frontend-editor-invisibility-settings;
        }
    }
    .vc_hidden-md {
        @media (min-width: @screen-md-min) and (max-width: @screen-md-max) {
            .vc_frontend-editor-invisibility-settings;
        }
    }
    .vc_hidden-lg {
        @media (min-width: @screen-lg-min) {
            .vc_frontend-editor-invisibility-settings;
        }
    }
    &.vc_non_responsive {
        .vc_row {
            .vc_hidden-md {
                .vc_frontend-editor-invisibility-settings;
            }
        }
    }
}