/*
* 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 {
  position: relative;
}
.sn_table_stores__table table thead {
  display: none;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  background-color: var(--block-background, #fff);
}
.sn_table_stores__table table thead:after {
  content: "";
  display: block;
  width: 100%;
  height: 0.25rem;
  background-color: #000;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
@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: #E9560D;
  width: 1.875rem;
  height: 1.875rem;
}
.sn_table_stores__table table a {
  color: currentColor;
}