/*  Big tables to 1200px (widths smaller that 1140px row)   */
@media only screen and (max-width: 1200px){

}

/*  Small tables to big tables: 768 to 1023px   */
@media only screen and (max-width: 1023px){

}

/*  Small phones to small tables: 481 to 767px  */
@media only screen and (max-width: 767px){

}

/*  Small phones: from 0 to 480px   */
@media only screen and (max-width: 480px){

}