/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {

}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {

}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    .hide-tablet {
        display: none;
    }
    
    div.col {
        float: none;
        margin-right: 0;
        width: auto;
    }
    
    .field_input select, .field_input input[type="text"], .field_input textarea {
        width: 100% !important;
        min-width: 100px;
    }
    
    .filter_cell label {
        display: none;
    }
    
    .column_data, .column_control {
        display: none;
    }
    
    button {
        width: 28px;
        overflow: hidden;
        text-overflow: clip !important;
    }
    
    button span {
        text-indent: -9999px;
        display: inline-block;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    .hide-mobile {
        display: none;
    }
}

/* Custom, iPhone Retina */ 
@media only screen and (max-width : 320px) {
    
}