/*
 * Visual Composer Fallback Styles
 * Basic CSS for when Visual Composer plugin is not available
 */

/* Row styles */
.vc_row {
    width: 100%;
    display: block;
    margin-bottom: 20px;
}

.vc_row:after {
    content: "";
    display: table;
    clear: both;
}

/* Column styles */
.vc_column {
    float: left;
    padding: 0 15px;
    box-sizing: border-box;
}

/* Column widths */
.vc_col-sm-12 { width: 100%; }
.vc_col-sm-9 { width: 75%; }
.vc_col-sm-8 { width: 66.66666667%; }
.vc_col-sm-6 { width: 50%; }
.vc_col-sm-4 { width: 33.33333333%; }
.vc_col-sm-3 { width: 25%; }

/* Column text wrapper */
.vc_column_text .wpb_wrapper {
    padding: 10px 0;
}

/* Custom CSS classes from VC */
.vc_custom_1427848442170 {
    margin-bottom: 25px !important;
    padding-top: 10px !important;
    padding-right: 10px !important;
    padding-bottom: 10px !important;
    padding-left: 10px !important;
    background-color: #fdb915 !important;
}

/* Responsive styles */
@media (max-width: 768px) {
    .vc_column {
        width: 100% !important;
        float: none;
        margin-bottom: 20px;
    }
}
