.tab_sm .tab__link {
  min-width: 253px
}
.tab__link-block {
  display: flex;
  background: #f3f3f3;
  border-radius: 20px;
  padding: 5px;
  overflow-x: auto
}
.tab__link-block::-webkit-scrollbar {
  height: 5px;
  border-radius: 50%
}
.tab__link-block::-webkit-scrollbar-track {
  background-color: #d9d9d9;
  border-radius: 2.5px
}
.tab__link-block::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 2.5px
}
.tab__link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 172px;
  height: 40px;
  padding: 5px;
  background: 0 0;
  color: #0e0e0e;
  border-radius: 15px;
  white-space: nowrap
}
.tab__link.invisible {
  opacity: .4
}
.tab__link.active,
.tab__link.active:hover {
  background: #fff
}
.tab__link:hover {
  background: rgba(255,255,255,.5)
}
.tab__link span {
  margin-left: 10px;
  padding: 5px 8px 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 15px;
  color: #f8f8f8;
  background: #e81b23;
  border-radius: 10px;
  pointer-events: none
}
.tab__content-wrap {
  padding-top: 20px;
  width: 100%
}
.tab__content {
  display: none
}
.tab__content.active {
  display: block
}
@media (max-width:1023px) {
  .tab__link {
    height: 36px;
    min-width: auto;
    padding-left: 12px;
    padding-right: 12px;
    font-size: 14px;
    line-height: 18px
  }
}
@media (max-width:700px) {
  .tab_sm .tab__link-block {
    width: 100%
  }
  .tab_sm .tab__link {
    width: 50%;
    min-width: auto
  }
}