.artist-alphabet__letters {
  margin-top: 51px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 15px;
}

.artist-alphabet__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.artist-alphabet__row.search__content{
  flex-direction: column;
  align-items: center;
  position: relative;
}

.artist-alphabet__row .search__form {
  width: 100%;
  max-width: 50%;
}

.artist-alphabet__row .search__form-result{
  width: 100%;
  max-width: 100%;
  max-height: 350px;
  position: absolute;
  z-index: 5;
  top: 100%;
  left: 0;
  background-color: #fff;
  box-shadow: 0 15px 20px -30px rgba(0,0,0,0.2);
  overflow-y: visible;
}

.artist-alphabet__row .search__form-result-list{
  margin: 0 auto;
  padding-bottom: 20px;
  max-width: 50%;
  width: 100%;
  overflow: hidden;
  overflow-y: auto;
}


.artist-alphabet__row .search__form-result-list::-webkit-scrollbar {
  width: 3px;
}

.artist-alphabet__row .search__form-result-list::-webkit-scrollbar-thumb {
  background-color: #000;
}

.artist-alphabet__row .search__form-result-list::-webkit-scrollbar-track {
  background-color: #d2d2d2;
}

.artist-alphabet__row .search__form .search__form-label{
  width: 100%;
  max-width: 100%;
}

.artist-alphabet__col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 19px;
  line-height: 23px;
  text-align: center;
  text-transform: uppercase;
  color: #000;
  position: relative;
  white-space: nowrap;
}

.artist-alphabet__col.active {
  color: transparent;
}

.artist-alphabet__col.active:after {
  opacity: 1;
  visibility: visible;
}

.artist-alphabet__col:after {
  position: absolute;
  left: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  content: attr(data-hover-name);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  font-weight: 600;
  color: #000;
  text-transform: uppercase;
}

.artist-alphabet__col:hover {
  color: transparent;
}

.artist-alphabet__col:hover:after {
  opacity: 1;
  visibility: visible;
}

.artist-alphabet__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  row-gap: 19px;
  -webkit-column-gap: 50px;
  -moz-column-gap: 50px;
  column-gap: 50px;
  margin-top: 56px;
  margin-bottom: 76px;
}

@media (max-width: 992px) {
  .artist-alphabet__list {
    margin-bottom: 50px;
  }
}

.artist-alphabet__list li {
  width: calc(25% - 38px);
  padding: 0 10px 0 0;
}

@media (max-width: 992px) {
  .artist-alphabet__list li {
    width: 33.3333%;
  }
}

@media (max-width: 680px) {
  .artist-alphabet__list li {
    width: 50%;
  }
}

@media (max-width: 550px) {
  .artist-alphabet__list li {
    width: 100%;
  }
}

.artist-alphabet__list a {
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 142%;
  color: #000;
  position: relative;
  white-space: nowrap;
}

.artist-alphabet__list a:after {
  position: absolute;
  left: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  content: attr(data-hover-name);
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  font-weight: 600;
  color: #000;
}

.artist-alphabet__list a:hover {
  color: transparent;
}

.artist-alphabet__list a:hover:after {
  opacity: 1;
  visibility: visible;
}