.basket {
  display: none;
  position: fixed;
  right: 15px;
  top: 100px;
  width: 100%;
  max-width: 400px;
  z-index: 1000;
}
.basket-button {
  background-color: #0238aa;
  padding: 10px;
  position: absolute;
  right: 0;
  left: auto;
  display: flex;
  align-items: center;
  color: #fff;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.4);
  max-width: 250px;
}
.basket-goods {
  overflow-y: auto;
  position: relative;
  overflow-x: hidden;
}
.basket-goods-wrap {
  position: absolute;
  right: 0;
  top: 45px;
  width: 100%;

  background-color: #ffffff;
  display: none;
  flex-direction: column;
  justify-content: start;
  padding: 10px;
  overflow-y: auto;
  max-height: 70vh;
  border: 1px solid rgba(255, 255, 255, 0.4);
  box-shadow: 5px 5px 15px rgba(70, 70, 70, 0.5);
}
.basket-goods-wrap h4 {
  width: 100%;
  text-align: center;
}

.basket-goods-wrap h4::after {
  margin-top: 10px;
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.basket-summ-wrap {
  text-align: right;
  margin-top: 5px;
}
.basket-summ-wrap p {
  margin: 1px;
}
.basket-summ-wrap a {
  display: inline-block;
  text-decoration: none;
  color: #ffffff;
  margin-top: 5px;
  padding: 10px;
  background-color: #0238aa;
}
.basket-span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  position: absolute;
  width: 15px;
  height: 15px;
  background: rgb(255, 0, 0);
  border-radius: 100px;
  bottom: 1px;
  right: 1px;
  font-size: 10px;
}
.goods-item {
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  background: #3898ec1e;
}

.goods-item .item-title {
  width: 60%;
}
.goods-item a {
  text-decoration: none;
  color: rgb(97, 97, 97);
}

.item-img {
  max-width: 50px;
}
.item-count {
  max-width: 30px;
  height: 20px;
  text-align: center;
  color: #000;
}

@media (max-width: 765px) {
  .basket {
    right: 0;
  }

  .item-title {
    font-size: 12px;
  }
}
