/******* Polyfills *******/
/******* Functions *******/
/******* Mixins *******/
/******* Bootstrap Variables *******/
.locations-list a.disabled {
  cursor: default;
  color: var(--gray-400);
}
.locations-list a.disabled:hover {
  color: var(--gray-400);
}
.locations-list .table-col {
  position: relative;
  overflow: scroll;
}

.states-locations-listing {
  padding-top: 0;
}
.states-locations-listing:first-of-type {
  padding-top: 0;
}
.states-locations-listing h3 {
  position: relative;
  margin-bottom: 2rem;
}
.states-locations-listing h3:before {
  position: absolute;
  content: "";
  display: block;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #32353c;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transform-origin: left;
}
.states-locations-listing h3:hover:before {
  transform: scaleX(1);
}
.states-locations-listing h3:before {
  transform: scaleX(1);
}
.states-locations-listing table td:first-of-type {
  padding-left: 0;
}
.states-locations-listing ul > li {
  margin-bottom: 1.25rem;
}
.states-locations-listing ul ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.states-locations-listing ul ul > li {
  margin-bottom: 0.25rem;
}
.states-locations-listing ul a {
  display: inline-block;
  position: relative;
}
.states-locations-listing ul a:before {
  position: absolute;
  content: "";
  display: block;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 2px;
  border-bottom: 1px solid #32353c;
  transform: scaleX(0);
  transition: all 0.5s ease;
  transform-origin: left;
}
.states-locations-listing ul a:hover:before {
  transform: scaleX(1);
}
.states-locations-listing ul h4,
.states-locations-listing ul h5 {
  display: inline-block;
  margin: 0;
}
.states-locations-listing ul h4 {
  font-family: "Barlow", sans-serif;
  font-weight: 300;
}
.states-locations-listing ul h5 {
  font-weight: 600;
}
