.headerCartLink {
  color: #333333;
  font-size: 14px;
  transition: all .3s;
  white-space: nowrap;
  margin-right: 30px;
}

.headerCartIcon {
  position: relative;
  margin-right: 7px;
}

.headerCartCounter {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #55BCC8;
  color: #fff;
  font-size: 10px;
  position: absolute;
  right: -10px;
  top: -10px;
  z-index: 2;
}

.basketList {
  width: 370px;
  padding: 20px;
  border-radius: 2px;
}

.basketListHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 20px;
}

.basketListItems {
  max-height: 200px;
  overflow: auto;
  margin-right: -10px;
  padding-right: 10px;
  scrollbar-color: #E1E1E1 transparent;
  /* «цвет ползунка» «цвет полосы скроллбара» */
  scrollbar-width: thin;
}

.basketListItems::-webkit-scrollbar {
  width: 5px;
  /* ширина для вертикального скролла */
  background-color: transparent;
}

.basketListItems::-webkit-scrollbar-thumb {
  background-color: #E1E1E1;
  border-radius: 19px;
}

.basketListItem {
  display: flex;
  align-items: center;
  border-top: 1px solid #e1e1e1;
  padding: 10px 0;
}

.basketListImg {
  width: 50px;
  flex: none;
  margin-right: 10px;
}

.basketListName {
  font-size: 12px;
  margin-right: 10px;
  flex: 1;
}

.basketListName a {
  color: #333333;
}

.basketListPrice {
  font-weight: bold;
  font-size: 12px;
  white-space: nowrap;
  margin-right: 10px;
}

.basketListFooter {
  padding: 20px 0;
  box-shadow: 0px -11px 30px rgba(3, 85, 255, 0.05);
}

.clearBasket {
  color: #858585;
  font-size: 12px;
  line-height: 1.4;
  border-bottom: 1px solid #858585;
  transition: all .3s;
}

@media (min-width: 992px) {
  .headerCartLink:hover {
    color: #42E6F9;
    text-decoration: none;
  }

  .clearBasket:hover {
    color: #858585;
    border-bottom-color: transparent;
  }
}