@charset "UTF-8";
.contra-mini-cart {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px); /* 👈 BLUR */
  -webkit-backdrop-filter: blur(6px); /* Safari */
  z-index: 100000000000000000000000000000;
}

.contra-mini-cart > div {
  width: 35%;
  height: 100%;
  background-color: #ffffff;
  margin-left: auto;
  margin-right: 0;
}

.contra-mini-cart > div > ul {
  list-style: none;
  overflow-y: auto;
  height: 100%;
}

.contra-mini-cart > div > ul > li {
  margin-top: 0.5rem;
  display: flex;
  width: 100%;
}

.contra-mini-cart > div > ul > li > a {
  display: block;
  width: 100%;
}

.contra-mini-cart > div > ul > li > a > img {
  width: 20% !important;
  border-radius: 16px;
  float: left !important;
  margin-right: 0.5rem;
  height: auto;
}

.contra-mini-cart-button-close {
  border: none;
  outline: none;
  font-size: 24px;
  color: #9CA3AF;
  background-color: transparent;
}

.contra-mini-cart-button-close:hover > svg {
  stroke: #000000;
  fill: #000000;
}

.contra-mini-cart-link {
  border: none;
  outline: none;
  background: transparent;
}

.cart-count {
  display: flex !important;
  position: absolute;
  top: 0;
  right: 0;
  background: #000000;
  border: 1px solid #FFFFFF;
  border-radius: 9999px;
  font-family: "GeistMono";
  font-style: normal;
  font-weight: 700;
  font-size: 10px;
  line-height: 15px;
  /* or 150% */
  color: #FFFFFF;
  width: 18px;
  height: 18px;
}

.cart-count > span {
  margin: auto;
}

@media (max-width: 768px) {
  .contra-mini-cart > div {
    width: 100%;
  }
}/*# sourceMappingURL=mini-cart.css.map */