/* start cart  page*/
.display {
  display: flex;
  align-items: center;
  margin-top: 4rem;
  padding: 4rem 0;
}
.display table {
  font-size: 2rem;
  text-align: center;
  color: var(--white-color);
}
.display th {
  padding: 3rem;
}
.display td {
  text-align: center;
  padding: 2rem;
  margin: auto 0;
  height: 100% !important;
}
.product__img span {
  font-size: 1.5rem;
}
.td {
  padding-top: 2rem;
}
.display span {
  color: var(--white-color);
}
.display img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
.quantity__container {
  display: flex;
  align-items: center;
  justify-content: center;
}
.quantity__container button {
  color: var(--white-color);
}
.mini__cart {
  color: var(--white-color);
  font-size: 1.6rem;
}
.order__summary {
  border-bottom: 1px solid var(--white-color);
  padding-top: 1rem;
}
.order__summary h5 {
  font-size: 2rem;
  font-weight: bold;
}
.total__price {
  display: flex;
  justify-content: center;
  align-items: center;
}
.total__price__taxes {
  border-bottom: 1px solid var(--white-color);
  border-top: 1px solid var(--white-color);
}
.checkOut__btn a {
  text-decoration: none;
  color: var(--white-color);
}
.checkOut__btn {
  background-color: var(--main-color);
  border-radius: 30px;
  font-size: 1.4rem;
}
.wrapper {
  width: 40%;
  margin: auto;
}
.summary {
  font-size: 3rem;
  font-weight: bold;
  color: var(--main-color);
  padding-top: 5rem;
}
.checkOut {
  font-size: 2rem;
  padding: 2rem 0;
  color: var(--white-color);
  border-bottom: 1px solid var(--white-color);
}
.total {
  font-size: 1.8rem;
  color: var(--white-color);
  padding-top: 1rem;
}
.wrapper p {
  font-size: 1.8rem;
  margin-top: 3rem;
}
.wrapper button {
  width: 100%;
  font-size: 1.8rem;
  background-color: var(--main-color);
  padding: 1.5rem;
  color: var(--white-color);
  border: none;
  outline: none;
  border-radius: 2px;
}
@media screen and (man-width: 1200px) {
  .display th {
    padding: 2rem;
    color: var(--white-color);
    font-size: 2rem;
  }
  .display td {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 992px) {
  .display table {
    font-size: 1.2rem;
  }
  .display th {
    color: var(--main-color);
    font-size: 1.8rem;
  }
  .display th {
    padding: 1.6rem;
  }
  .display td {
    font-size: 1.2rem;
  }
  .display img {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 768px) {
  .display table {
    font-size: 1.2rem;
    padding: 1rem 0;
  }

  .display th {
    padding: 1.4rem;
    font-size: 1.6rem;
  }
  .display td {
    font-size: 1.2rem;
    padding: 1rem;
  }
  .display img {
    width: 43px;
    height: 43px;
  }
}

@media screen and (max-width: 576px) {
  .display table {
    font-size: 1rem;
    padding: 0;
  }
  .display th {
    padding: 1.4rem;
    font-size: 1.4;
  }
  .display td {
    font-size: 1.2rem;
    padding: 0.5rem;
  }
  .display img {
    display: none;
  }
  .wrapper {
    width: 60%;
  }
}
@media screen and (max-width: 300px) {
  .display table {
    font-size: 1rem;
  }
  .display th {
    padding: 1rem;
    color: var(--main-color);
    font-size: 1rem;
  }
  .display td {
    font-size: 1rem;
  }
  .product__img {
    justify-content: center;
  }
}
