.cart {
  margin-top: 86px;
  margin-bottom: 64px;
}
@media (max-width: 768px) {
  .cart {
    padding: 32px 16px 32px 16px;
  }
}
@media (max-width: 767px) {
  .cart {
    padding: 16px 16px 32px 16px;
    margin-top: 0px;
    margin-bottom: 0px;
  }
}
.cart .breadcrumbs .home {
  display: flex;
  align-items: center;
}
.cart .breadcrumbs ul {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.cart .breadcrumbs li {
  list-style-type: none;
}
.cart .breadcrumbs li a {
  font-size: 14px;
  line-height: 20px;
  color: white;
  padding: 16px 0px;
  cursor: pointer;
}
@media (max-width: 767px) {
  .cart .breadcrumbs li a {
    padding: 0px;
  }
}
.cart .breadcrumbs li a:hover {
  text-decoration: underline;
}
.cart .breadcrumbs .breadcrumbs-item {
  color: rgb(105, 171, 228);
  font-weight: 600;
}
.cart .breadcrumbs .breadcrumbs-item:hover {
  text-decoration: none;
}
.cart .flex {
  display: flex;
  gap: 32px;
  margin-top: 24px;
}
@media (max-width: 767px) {
  .cart .flex {
    flex-direction: column;
  }
}
.cart .coupon-code {
  background-color: var(--grey-black);
  color: white;
  padding: 16px;
  border: 1px solid rgb(73, 80, 87);
  border-radius: 16px;
  max-width: 379px;
  width: 100%;
}
@media (max-width: 767px) {
  .cart .coupon-code {
    max-width: none;
  }
}
.cart .coupon-code table {
  width: 100%;
  font-size: 14px;
  line-height: 20px;
  color: rgb(228, 233, 239);
  border-top: 1px solid rgb(73, 80, 87);
  border-spacing: 0px 16px;
}
.cart .coupon-code .capsule {
  font-size: 10px;
  line-height: 14px;
  font-weight: 600;
  border: 1px solid rgb(173, 181, 189);
  border-radius: 8px;
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px;
  margin: 16px 0px;
  max-width: 63px;
}
.cart .coupon-code .sub-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid rgb(73, 80, 87);
  font-weight: 600;
  padding: 16px 0px;
  font-size: 16px;
  line-height: 24px;
  border-bottom: 1px solid rgb(73, 80, 87);
  margin-bottom: 16px;
}
.cart .coupon-code .link {
  display: flex;
  justify-content: center;
}
.cart .coupon-code .link a {
  color: rgb(251, 253, 255);
  font-size: 14px;
  line-height: 20px;
  padding-top: 10px;
  border-bottom: 1px solid transparent;
}
.cart .coupon-code .link a:hover {
  border-color: white;
}
.cart .coupon-code input {
  background-color: #0F1113;
  padding-left: 44px;
  padding-top: 12px;
  padding-bottom: 12px;
  padding-right: 92px;
  border-radius: 24px;
  width: 100%;
  color: #ADB5BD;
  font-size: 14px;
  line-height: 20px;
  border: 1px solid transparent;
}
@media (max-width: 767px) {
  .cart .coupon-code input {
    border-color: rgb(73, 80, 87);
  }
}
.cart .coupon-code input:hover {
  border-color: #ADB5BD;
}
.cart .coupon-code input ::placeholder {
  color: #ADB5BD;
}
.cart .coupon-code .email {
  position: relative;
}
.cart .coupon-code .email button {
  background-color: var(--light-blue);
  border-radius: 16px;
  padding: 8px;
  color: #FFFFFF;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  border: none;
  position: absolute;
  left: auto;
  top: 50%;
  right: 12px;
  transform: translateY(-50%);
  cursor: pointer;
}
.cart .coupon-code .email button:hover {
  background-color: rgb(75, 152, 234);
}
.cart .coupon-code .email img {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 12px;
}
.cart .coupon-code .right-align {
  text-align: right;
}
.cart .product-table {
  font-size: 14px;
  line-height: 20px;
  color: white;
  flex: 1;
}
.cart .product-table h2 {
  font-size: 20px;
  line-height: 28px;
  font-family: manrope;
}
@media (max-width: 767px) {
  .cart .product-table h2 {
    margin-bottom: 24px;
  }
}
.cart .product-table h2 span {
  color: var(--light-blue);
}
.cart .product-table table {
  width: 100%;
  color: rgb(228, 233, 239);
  margin-top: 24px;
  border-collapse: collapse;
}
@media (max-width: 767px) {
  .cart .product-table table {
    display: none;
  }
}
.cart .product-table table th {
  color: rgb(173, 181, 189);
  text-align: left;
}
.cart .product-table table td {
  padding: 8px 0px;
  border-bottom: 1px solid rgb(73, 80, 87);
}
.cart .product-table table tr:last-child td {
  border: none;
}
.cart .product-table table .product {
  display: flex;
  gap: 16px;
}
.cart .product-table table .product h4 {
  font-weight: 600;
  word-wrap: break-word;
}
.cart .product-table table .product .product-description {
  display: flex;
  gap: 16px;
  font-size: 12px;
  line-height: 16px;
}
.cart .product-table table .product .color-name {
  display: flex;
  gap: 4px;
}
.cart .product-table table .product .color {
  height: 16px;
  width: 16px;
  border-radius: 24px;
  border: 1px solid rgb(228, 233, 239);
}
.cart .product-table table .product .product-img {
  border-radius: 16px;
  background-color: white;
  padding: 4px;
  overflow: hidden;
}
.cart .product-table table .product .product-img img {
  aspect-ratio: 1;
  object-fit: contain;
}
.cart .product-table table .quantity {
  border: 1px solid rgb(73, 80, 87);
  border-radius: 24px;
  background-color: var(--grey-black);
  padding: 6px 8px;
  max-width: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .cart .product-table table .quantity {
    margin-bottom: 16px;
  }
}
.cart .product-table table .quantity:hover {
  border: 1px solid white;
}
.cart .product-table table .quatity-flex {
  display: flex;
  gap: 8px;
  align-items: center;
}
.cart .delete {
  border: 1px solid transparent;
  border-radius: 50px;
  padding: 6px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.4s ease-in-out;
}
.cart .delete:hover {
  border: 1px solid white;
}

.cart-grid {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 16px;
  padding-top: 8px;
  color: rgb(255, 255, 255);
  display: none;
  border-bottom: 1px solid rgb(73, 80, 87);
}
@media (max-width: 767px) {
  .cart-grid {
    display: grid;
  }
}
.cart-grid .delete {
  justify-content: right;
}
.cart-grid .price {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  text-align: right;
}
.cart-grid .price span {
  color: rgb(173, 181, 189);
  text-decoration: line-through;
  padding-right: 10px;
}
.cart-grid .product {
  display: flex;
  gap: 16px;
}
.cart-grid .product h4 {
  font-weight: 600;
  font-size: 12px;
  line-height: 16px;
  word-break: break-word;
}
.cart-grid .product .product-description {
  display: flex;
  gap: 16px;
  font-size: 12px;
  line-height: 16px;
}
@media (max-width: 320px) {
  .cart-grid .product .product-description {
    gap: 0px;
    flex-direction: column;
  }
}
.cart-grid .product .color-name {
  display: flex;
  gap: 4px;
}
.cart-grid .product .color {
  height: 16px;
  width: 16px;
  border-radius: 24px;
  border: 1px solid rgb(228, 233, 239);
}
.cart-grid .product .product-img {
  border-radius: 16px;
  background-color: white;
  padding: 4px;
  overflow: hidden;
}
.cart-grid .product .product-img img {
  aspect-ratio: 1;
  object-fit: contain;
}
.cart-grid .quantity {
  border: 1px solid rgb(73, 80, 87);
  border-radius: 24px;
  background-color: var(--grey-black);
  padding: 6px 8px;
  max-width: 84px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  transition: all 0.4s ease-in-out;
}
@media (max-width: 767px) {
  .cart-grid .quantity {
    margin-bottom: 16px;
  }
}
.cart-grid .quantity:hover {
  border: 1px solid white;
}
.cart-grid .quatity-flex {
  display: flex;
  gap: 8px;
  align-items: center;
}

/*# sourceMappingURL=cart.css.map */
