@charset "UTF-8";
.hidden_alp {
  display: none;
}
.alphabetic-list {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-pack: start;
  justify-content: center;
  margin-bottom: 10px;
}
.alphabetic-list,
.alphabetic-list__item {
  -ms-flex-align: center;
  align-items: center;
  display: -ms-flexbox;
  display: flex;
}
.alphabetic-list__item {
  border: 0 solid transparent;
  border-radius: 50%;
  color: #900900;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  width: 30px;
  height: 30px;
  -ms-flex-pack: center;
  justify-content: center;
  margin: 0 0 10px;
  text-transform: uppercase;
  transition: all 0.25s, color 0.25s;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.alphabetic-list__item.active {
  border: 3px solid #979797;
  color: #4a4a4a;
}
.alphabetic-container {
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 0 9px 0 rgba(0, 0, 0, 0.08);
  margin: 20px 0;
  padding: 10px 10px 5px;
}
