body.open-mini-cart {
  overflow: hidden;
}

@media (min-width: 768px) {
  body.open-mini-cart {
    overflow: auto;
  }
}
.menu-cart {
  background: #ed3224;
  padding: 12px 41px;
}

.menu-cart__button {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 !important;
}

.menu-cart__button .raq-items-number,
.menu-cart__button > span {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
}

@media (max-width: 991px) {
  .menu-cart {
    padding: 8px 22px;
  }
  .menu-cart__button .raq-items-number,
  .menu-cart__button > span {
    font-size: 12px;
    font-weight: 600;
  }
}
.menu-cart__content {
  display: none;
  position: absolute;
  background: #FFF;
  text-align: center;
  padding-bottom: 30px;
  height: 100vh;
  width: 100vw;
  top: -65px;
  right: -30px;
  z-index: 100;
}

@media (min-width: 768px) {
  .menu-cart__content {
    min-width: 320px;
    top: unset;
    right: 6%;
    height: unset;
    width: unset;
    z-index: unset;
    box-shadow: 0px 2px 8px rgba(128, 128, 128, 0.7490196078);
  }
}
.menu-cart__content--open {
  display: block;
}

.menu-cart__content.spinner::before {
  content: "";
  position: absolute;
  background: rgba(67, 76, 86, 0.2196078431);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  border-radius: 15px 0px 0px 15px;
}

.menu-cart__content.spinner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 30px;
  height: 30px;
  border: 4px solid #efeded;
  border-radius: 50%;
  border-left-color: elementor(accent);
  animation: spinner 1s linear infinite;
}

.menu-cart__content > .title {
  padding: 20px 20px 0 20px;
  display: flex;
  justify-content: end;
}

/* .menu-cart__content > .title h4 {
  color: elementor(accent);
  font-family: Montserrat, sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin: 0;
} */
.menu-cart__content > .title .close {
  color: #ed3224;
  font-weight: 700;
}

.menu-cart__content .messaje-empty {
  padding: 50px 0;
  height: calc(100vh - 355px);
}

@media (min-width: 768px) {
  .menu-cart__content .messaje-empty {
    height: auto;
  }
}
.menu-cart__content .items-list {
  padding: 0 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: calc(100vh - 355px);
  overflow: auto;
}

@media (min-width: 768px) {
  .menu-cart__content .items-list {
    height: auto;
    max-height: 400px;
  }
}
.menu-cart__content .items-list__item {
  display: flex;
  border: solid 1px rgba(66, 66, 66, 0.3019607843);
  column-gap: 45px;
  align-items: center;
  padding: 15px;
  justify-content: space-between;
}

.menu-cart__content .items-list__item .item-container {
  display: flex;
  column-gap: 27px;
}

.menu-cart__content .items-list__item .item-container div {
  display: flex;
}

.menu-cart__content .items-list__item .product-image {
  width: 61px;
  max-width: 61px;
  height: 50px;
  border-radius: 6px;
}

.menu-cart__content .items-list__item .product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  margin: auto;
}

.menu-cart__content .container__product-info {
  align-items: center;
  justify-content: space-between;
}

.menu-cart__content .items-list__item .product-info {
  flex-direction: column;
  justify-content: center;
  text-align: left;
  min-width: 219px;
}

.menu-cart__content .items-list__item .product-info__subtitle {
  color: #434C56;
  font-family: "Nunito Sans";
  font-size: 10px;
  font-weight: 400;
  margin: 0;
}

.menu-cart__content .items-list__item .product-info__title {
  color: #424243;
  font-family: Montserrat;
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.menu-cart__content .items-list__item .product-quantity {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #000;
  width: 56px;
  height: 27px;
}

.menu-cart__content .items-list__item .product-quantity__text {
  font-size: 12px;
  font-weight: 700;
  border-radius: 10px;
  color: elementor(text);
  font-family: "Nunito Sans", Sans-serif;
  text-transform: uppercase;
  line-height: 24px;
  margin: 0;
}

.menu-cart__content .items-list__item .product-quantity__container {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  color: #000;
  width: 70px;
  height: 32px;
  border-radius: 80px;
  text-align: center;
  font-family: Montserrat;
  font-size: 15px;
  font-style: normal;
  font-weight: 600;
}

.menu-cart__content .items-list__item .product-quantity__container a {
  color: #000;
}

.menu-cart__content .items-list__item .product-remove {
  width: 15px;
  color: #ed3224;
}

.menu-cart__content .counting-list {
  list-style: none;
  padding: 20px;
  border-top: 1px solid #013574;
}

.menu-cart__content .counting-list__item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5px;
}

.menu-cart__content .counting-list__item .title {
  color: #434C56;
  font-family: "Nunito Sans";
  font-size: 13px;
  font-weight: 400;
}

.menu-cart__content .counting-list__item .number {
  color: #434C56;
  font-family: "Nunito Sans";
  font-size: 14px;
  font-weight: 400;
}

.menu-cart__content .counting-list__total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.menu-cart__content .counting-list__total .title {
  color: #434C56;
  font-family: "Nunito Sans";
  font-size: 13.051px;
  font-weight: 700;
}

.menu-cart__content .counting-list__total .number {
  color: #434C56;
  font-family: "Nunito Sans";
  font-size: 14.791px;
  font-weight: 700;
}

.menu-cart__content .button-cart {
  display: block;
  background-color: #ed3224;
  padding: 12.75px 20px;
  color: #FFF;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
}

.menu-cart__content .button-cart-vaciar {
  display: block;
  background-color: #fff;
  padding: 12.75px 20px;
  color: #ed3224;
  text-align: center;
  font-family: Montserrat;
  font-size: 12px;
  font-weight: 500;
  border: 0.747px solid #ED3224;
}

.menu-cart__content .button-cart:hover {
  background-color: elementor(primary);
}

.menu-cart__content .btn__cotizacion-container {
  padding: 0 25px;
  display: flex;
  justify-content: space-between;
}

/* .menu-cart__content .btn__cotizacion-container {
  padding: 0 25px;
} */
@keyframes spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
