.tag-rail {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  overflow: hidden;
  padding: 0;
  white-space: nowrap;
}
.rail-container {
  overflow: hidden;
  height: 36px;
  padding-top: 6px;
  cursor: pointer;
  scroll-behavior: smooth;
}
.tag {
  background: #090909;
  border-radius: 8px;
  padding: 3px 8px 4px;
  margin: 5px 4px;
  color: #fff;
  font-weight: 500;
  user-select: none;
  border: 1px solid #090909;
  transition-duration: 0.25s;
  white-space: nowrap;
}
.tag:first-child {
  margin-left: 16px;
}
.tag:last-child {
  margin-right: 16px;
}
.tag:hover {
  background: #fd7e14;
}
.tag:active {
  background: #fd7e14;
}
.tag-selected {
  background: #fd7e14;
  color: #fff;
  border: 1px solid #fd7e14;
}
.tag-selected:hover {
  background: #fd7e14;
  color: #fff;
}
.tag-selected:active {
  background: #fd7e14;
  color: #fff;
}
.btn-left-con,
.btn-right-con {
  position: absolute;
}
.btn-right-con {
  right: 0;
}
.btn-left,
.btn-right {
  height: 32px;
  width: 32px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 24px !important; 
  border-radius: 100%;
  cursor: pointer;
  transition-duration: 0.25s;
  box-shadow: 0 0 16px 24px #111;
  background: #111;
}
.btn-left {
  margin-left: 2px;
}
.btn-right {
  margin-right: 2px;
}
.btn-left:hover,
.btn-right:hover {
  background: #f2f2f2;
}
.btn-left:active,
.btn-right:active {
  background: #d9d9d9;
}
.d-none {
  display: none;
}
