.header_cart {
  position: relative;
}
@media (max-width: 992px) {
  .header_cart_link svg {
    height: 30px !important;
  }
}
.header_cart_list {
  position: absolute;
  top: auto;
  right: 0;
  width: 500px;
  background: #fff;
  z-index: 100;
  padding: 15px;
  box-shadow:  0px 12px 36px rgba(0, 0, 0, 0.1);
  border-radius: var(--radius1);
  display: none;
}
.header_cart:hover .header_cart_list {
  display: block;
}

@media (max-width: 992px) {
  .header_cart_list {
    display: none !important;
  }
}
.header_cart_item {
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  margin: 5px 0px;
  border-bottom: var(--border_dotted);
  position: relative;
}
.header_cart_item a {
    display: flex;
    align-items: center;
    font-size: 14px;
    flex: 1;
    text-decoration: none;
    padding: 10px;
    border: 1px solid #E0E2E3;
    border-radius: 15px;
}
.header_cart_item_pict {
  width: 100px;
  height: 100px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.header_cart_item_name {
  padding: 0px 10px;
  flex: 1;
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
}
.header_cart_item_price {
  position: relative;
  color: #888888;
  display: block;
  margin-top: 5px;
}
.header_cart_item_price del {
  font-size: 12px;
  color: #900;
}
.header_cart_item_summ {
  color: var(--c1);
  width: 130px;
  text-align: right;
}
.header_cart_item button {
  padding: 0;
  background: none;
  color: red;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 1px;
  border-radius: 100%;
  left: 1px;
  border: 1px var(--c4) solid;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--animation1);
  font-size: 12px;
}
.header_cart_item button:hover {
  color: var(--c0);
}

.header_cart_list_footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0px;
}
.header_cart_list_footer a {
  margin-top: 0;
}

/*# sourceMappingURL=style.css.map */
