/*
* Scut, a collection of Sass utilities
* to ease and improve our implementations of common style-code patterns.
* v2.0.0
* Docs at http://ramseyinhouse.github.io/scut
*/
.sn_table_stores__table {
  overflow-x: auto;
  width: calc(100% + 2.75rem);
  margin: 0 -1.375rem;
}
@media only screen and (min-width: 62em) {
  .sn_table_stores__table {
    margin: 0;
    width: 100%;
  }
}
.sn_table_stores__table table thead {
  border-bottom: 0.25rem solid #000;
  display: none;
}
@media only screen and (min-width: 62em) {
  .sn_table_stores__table table thead {
    display: table-header-group;
  }
}
.sn_table_stores__table table thead tr th {
  font-weight: 700;
}
.sn_table_stores__table table th.__only_desktop,
.sn_table_stores__table table td.__only_desktop {
  display: none;
}
@media only screen and (min-width: 62em) {
  .sn_table_stores__table table th.__only_desktop,
  .sn_table_stores__table table td.__only_desktop {
    display: table-cell;
  }
}
.sn_table_stores__table table svg-sprite {
  color: #e20714;
  width: 1.875rem;
  height: 1.875rem;
}
.sn_table_stores__table table a {
  color: currentColor;
}