.cartview-page-container {
  display: flex;
}

.cartview-container {
  padding: 20px;
  width: -webkit-fill-available;
}

.cartview-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cartview-subheading {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
}

.cart-selectall,
.cart-subtotal-price {
  padding: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: bold;
}

.cart-subtotal-price {
  justify-content: space-between;
  white-space: nowrap;
}

.cart-checkbox {
  height: 18px;
  width: 18px;
}

.cart-proceed-to-button {
  background-color: var(--secondary-color);
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  padding: 10px 35px;
  width: 100%;
}

.cart-proceed-to-button:hover {
  background-color: var(--primary-color);
}

.label-proceed-buy {
  font-weight: bold;
  font-size: 1.2em;
  line-height: 1.2;
}

.cartview-border {
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
}

.cart-product-item-container {
  padding: 12px;
  border: 1px solid #e7e7e7;
  border-left: none;
  border-right: none;
  border-top: none;
}

.cart-product-item {
  display: flex;
  margin-top: 10px;
}

.cart-img-container {
  display: flex;
  align-items: center;
}

.text-separator-line {
  margin: -2px 0.67375em 0;
  width: 1px;
  background-color: #ddd;
  height: 14px;
}

.cart-product-item-img {
  margin: 0 40px 0px 40px;
  width: 10rem;
}

.cart-product-item-label {
  margin-bottom: 0.5rem;
}

.cart-product-item-label h1 {
  margin: 0;
  letter-spacing: 0;
  font-size: 18px;
}

.cart-product-item-price-percentage {
  color: #fff;
  background-color: var(--secondary-color);
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  border-radius: 5px;
  max-width: 50px;
}

.cart-pdt-deal {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: 10px;
  font-weight: bold;
  color: var(--primary-color);
}

.cart-product-quantity {
  width: 90px;
  border: #ccc 1px solid;
  display: flex;
}
.cart-increment-decrement {
  padding: 5px 0px;
  background: #e2e2e2;
  width: 30px;
  text-align: center;
  cursor: pointer;
  user-select: none;
}
.product-input-quantity {
  border: none;
  width: 30px;
  text-align: center;
  cursor: auto;
}

.delete-product {
  cursor: pointer;
  font-size: 16px;
}

.cartview-description {
  width: 30%;
  padding: 0 20px;
  border-left: 1px solid #ddd;
  margin: 20px 0;
}

.cartview-desc-list {
  display: flex;
  flex-direction: column;
  margin: 10px 0;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.cartview-desc-heading {
  font-weight: bold;
  margin-bottom: 10px;
}

.cartview-services-provided {
  display: flex;
  flex-wrap: wrap;
}

.service-container {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 5px;
  flex-basis: calc(50% - 10px);
  text-align: center;
  justify-content: flex-start;
  padding: 5px;
  font-size: 14px;
}

.service-image {
  border: #aaaaaa 1px solid;
  border-radius: 50%;
  width: 45px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.service-image img {
  width: 60%;
}

@media (max-width: 1024px) {
  .cartview-page-container {
    flex-direction: column;
  }

  .cartview-description {
    width: auto;
    border-left: none;
  }

  .service-container {
    flex-basis: calc(25% - 10px);
  }
}

@media (max-width: 699px) {
  .cartview-heading {
    display: block;
  }

  .cartview-subheading {
    flex-direction: column-reverse;
    align-items: unset;
  }

  .cart-product-item {
    flex-direction: column;
  }

  .cart-product-item-img {
    margin: 0 20px 20px 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .service-container {
    flex-basis: calc(50% - 10px);
  }
}
