/* control all stylesheets */

/* import global stylesheets */
@import url("https://www.uwibookshop.com/sites/all/modules/herkimer/timber/web/css/tcc-global.css");

/* setup responsive breakpoints - works with css caching and aggregation ON */
@import url("tcc-narrow.css") (min-width: 740px) and (min-device-width: 740px);
@import url("tcc-normal.css") (min-width: 980px) and (min-device-width: 980px);
@import url("tcc-wide.css") (min-width: 1300px);

/* setup responsive breakpoints - works with css caching and aggregation OFF */
@media (min-width: 740px) and (min-device-width: 740px) {
  @import url("tcc-narrow.css");
}
@media (min-width: 980px) and (min-device-width: 980px) {
  @import url("tcc-normal.css");
}
@media (min-width: 1300px) {
  @import url("tcc-wide.css");
}