/* Laptop */
@media only screen and (max-width:1440px) {

}

/* Touch devices */
@media only screen and (max-width:1180px) {
    /* Visibility Classes */
    .hidden-touch-devices {display:none;}
    .show-touch-devices {display:block;}
}

/* Tablet horizontal */
@media only screen and (max-width:1024px) {
    /* Visibility Classes */
    .hidden-tablet-h {display:none;}
    .show-tablet-h {display:block;}
}

/* Tablet vertical */
@media only screen and (max-width:768px) {
    /* Visibility Classes */
    .hidden-tablet-v {display:none;}
    .show-tablet-v {display:block;}
}

/* Mobile */
@media only screen and (max-width:480px) {
    /* Button primary */
    [class*="btn_primary"] {min-height:54px; min-width:120px;}

    /* List */
    .wpb_text_column ul ul, .wpb_text_column ol ol {padding-top:10px;}
    .mceContentBody ul > li:not(:last-child), .wpb_text_column ul > li:not(:last-child),
    .mceContentBody ol > li:not(:last-child), .wpb_text_column ol > li:not(:last-child) {margin-bottom:10px;}
    ul.custom_ul > li {padding-left:30px; text-align:left;}
    ul.custom_ul > li:before {
        --bb-size-16:14px;
        top:.15em;
    }

    /* Visibility Classes */
    .hidden-mobile {display:none;}
    .show-mobile {display:block;}
}