@media screen and (max-width: 600px) {
  .my-cart-card {
    flex-flow: column;
    row-gap: 1rem;
  }
  .left-card-side {
    width: 100%;
  }
  .left-card-side .my-cart-info h4 {
    font-size: 18px;
    line-height: 1;
    padding-bottom: 0.5rem;
  }
  .left-card-side .my-cart-img a img {
    height: 100px;
  }
  .right-card-side {
    width: 100%;
    justify-content: space-around;
  }
  .right-card-side .my-cart-close-area {
    display: flex;
    flex-direction: column;
    font-size: 28px !important;
  }
  .right-card-side .my-cart-close-area .hide-in-big-screen {
    display: block !important;
    font-size: 18px !important;
  }
  .right-card-side .my-cart-close-area:hover {
    background-color: unset !important;
    color: red;
  }
}
.slider-header {
  margin-bottom: unset !important;
  padding: 1rem 0.5rem;
}

.content-wrapper {
  min-height: 60vh;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-bottom: 2rem;
}

.my-cart-card {
  background-color: var(--whiteColor);
  box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12) !important;
  padding: 20px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: var(--edge-radius);
  margin-bottom: 30px;
  position: relative;
}
.my-cart-card .left-card-side {
  display: flex;
  column-gap: 1rem;
  min-width: 300px;
  width: 50%;
  flex-grow: 1;
}
.my-cart-card .left-card-side .my-cart-img {
  display: flex;
  align-items: center;
  min-width: 100px;
}
.my-cart-card .left-card-side .my-cart-img a {
  width: 100%;
}
.my-cart-card .left-card-side .my-cart-img a img {
  width: 100%;
  height: 60px;
}
.my-cart-card .left-card-side .my-cart-info h4 {
  margin-bottom: unset !important;
}
.my-cart-card .left-card-side .my-cart-info h4 a {
  color: black !important;
}
.my-cart-card .left-card-side .my-cart-info .money-wrapper {
  padding-left: 10px;
  padding-right: 10px;
}
.my-cart-card .right-card-side {
  display: flex;
  align-items: center;
}
.my-cart-card .right-card-side .my-cart-close-area {
  font-size: 24px;
  color: red;
  margin: 0 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.my-cart-card .right-card-side .my-cart-close-area .hide-in-big-screen {
  display: none;
}
.my-cart-card .right-card-side .my-cart-close-area:hover {
  background-color: rgba(255, 0, 0, 0.368627451);
  color: white;
  cursor: pointer;
}

.checkout-area {
  display: flex;
  justify-content: space-between;
}

.payment-info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#update-btn {
  animation: glowing 1300ms infinite;
}

@keyframes glowing {
  0% {
    background-color: rgb(231, 186, 6);
    box-shadow: 0 0 3px rgb(231, 186, 6);
  }
  50% {
    background-color: rgb(244, 202, 33);
    box-shadow: 0 0 15px rgb(244, 202, 33);
  }
  100% {
    background-color: rgb(231, 186, 6);
    box-shadow: 0 0 3px rgb(231, 186, 6);
  }
}