.cartcontainer {
  padding: 30px 10px 100px 10px;
}
.carttitle {
  font-size: 24px;
  margin: 0 0 30px 0;
}
#CART {
  border-top: 1px solid #00000030;
  border-bottom: 1px solid #00000030;
  padding: 50px 0;
  width: 100%;
  margin-bottom: 100px;
}
.cart-item {
  padding: 50px 0;
  border-top: 1px solid #000000;
  margin-bottom: 50px;
  position: relative;
}
.cart-item:first-child {
  padding: 0 0 50px 0;
  border-top: none;
}
.cart-item:last-child {
  margin-bottom: 0;
}
.cart-item-row {
  display: flex;
}
.cart-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 0 10px 0 20px;
}
.cart-item-img {
  margin: 0 20px;
}
.productimg {
  height: 100px;
}
.quantity-selector {
  display: flex;
  margin: 10px 0 5px 0;
  position: relative;
}
.MaxSpan {
  position: absolute;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
}
.quantity-selector button {
  width: 30px;
  height: 30px;
  background-color: #245719;
  color: #ffffff;
  border: none;
  font-size: 18px;
}
.quantity-selector button:disabled {
  background-color: #24571980;
}
.quantity-selector button:nth-child(1) {
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.quantity-selector button:nth-child(4) {
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.quantity-selector p {
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.remove-btn {
  position: absolute;
  bottom: 0;
  right: 10px;
  padding: 3px 20px;
  border: 1px solid #686868;
  border-radius: 15px;
}
#CARTBRIEF {
  height: 300px;
  border: 2px solid #000000;
  border-radius: 20px;
  padding: 30px 20px;
  position: sticky;
  top: 160px;
  right: 30px;
}
.summary {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 30px;
}
.brief {
  display: flex;
  justify-content: space-between;
  margin-bottom: 7px;
  padding: 0 10px;
}
#checkout {
  display: block;
  margin: 40px auto 0 auto;
  padding: 15px 60px;
  border: none;
  border-radius: 40px;
  background-color: #245719;
  color: #ffffff;
  cursor: pointer;
}
#checkout:disabled {
  background-color: #24571985;
}
.RELATED,
.MORE {
  padding: 50px 0 0 0;
  position: relative;
  border-top: 1px solid #00000030;
  margin-bottom: 100px;
  margin-top: 70px;
}
.RELATED {
  margin-top: 100px;
}
.RELATED a,
.MORE a {
  color: #000000;
  text-decoration: none;
  margin-left: 30px;
}
.RELATED a:nth-child(1),
.MORE a:nth-child(1) {
  margin-left: 0;
}
.RELATED h3,
.MORE h3 {
  padding-left: 20px;
  color: #000000;
  font-size: 24px;
  font-weight: 900;
  text-align: left;
}
.otherproducts,
.toppicks {
  position: relative;
}
.relatedbody,
.morebody {
  display: flex;
  flex-direction: column;
  align-content: flex-start;
  height: 400px;
  flex-wrap: wrap;
  margin-top: 30px;
  overflow: hidden;
  padding: 10px 20px;
}
.slidebtn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
  z-index: 2;
  cursor: pointer;
}
.slidebtnleft {
  left: 5px;
}
.slidebtnright {
  right: 5px;
}
.slidebtn img {
  height: 20px;
}
.pickhead {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 300px;
  border: none;
  border-radius: 20px;
  -moz-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 3px 2px rgba(0, 0, 0, 0.1);
}
.pickhead img {
  height: 220px;
}
.pickbody {
  margin-top: 20px;
}
.pickprice {
  display: flex;
  margin-top: 7px;
}
.pickprice div {
  display: flex;
}
.pickprice div p {
  font-weight: 600;
}
.pickprice div p:nth-child(2) {
  font-size: 30px;
}

@media (min-width: 1024px) {
  .cartcontainer {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: 0 auto;
  }
  .cartcolumn {
    width: calc(100% - 450px);
  }
  #CARTBRIEF {
    width: 350px;
    margin-top: 62px;
    position: sticky;
    top: 200px;
    right: 0;
  }
  .RELATED,
  .MORE {
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 100px;
  }
}

@media (min-width: 1100px) {
  .cartcontainer {
    padding: 30px;
  }
}
