html {
  height: 100%;
}

section {
  height: 100%;
  padding-bottom: 0;
}

.checkoutPageDiv {
  display: flex;

  @media (max-width: 480px) {
    flex-direction: column;
    height: 100%;
  }
}


.checkoutPageCartList {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  padding: 32px;

  @media (max-width: 480px) {
    padding: 12px;
    padding-top: 80px;
    overflow-y: scroll;
  }
}

.checkoutPageCartItem {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-bottom: 1px solid #494949;
  padding: 12px;

  @media (max-width: 480px) {
    padding: 8px;
    flex-direction: column;
  }
}

.checkoutPageCartItemLeft {
  display: flex;
  align-items: center;
  @media (max-width: 480px) {
    padding: 8px;
    flex-direction: column;
  }
}

.checkoutCartItemImage {
  width: 90px;

  @media (max-width: 480px) {
    width: 90px;
    
  }
}

.checkoutCartInfo {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 24px;

  p {
    font-size: 28px;
    font-weight: 100;
    letter-spacing: 2px;
  }

  @media (max-width: 480px) {
    margin-left: 12px;
    p {
      font-size: 20px;
    }
    
  }
}

.removeItem {
  width: 12px;
  height: 16px;
  cursor: pointer;
}

.checkoutPageCartItemRight {
  display: flex;
  align-items: center;
}


.checkoutConfirmation {
  padding: 32px 16px;
  margin-top: 32px;
  height: 100%;
  width: 520px;
  border: 1px solid #494949;
  border-radius: 12px;

  @media (max-width: 480px) {
    height: auto;
    position: sticky;
    padding: 16px 8px;
    width: 100%;
    bottom: 0px;
    right: 0px;
    border: none;
    border-radius: 0px;
    background: linear-gradient(180deg, #101010 30%, #202020 100%);
  }
}

.checkoutInfos {
  display: flex;
  justify-content: space-between;
  font-weight: bold;
  margin-bottom: 12px;
}

.checkoutShippingPriceText {
  font-weight: normal;
}

.checkoutShippingPriceValue {
  font-weight: normal;
}

.checkoutTotalPaymentPrice {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #ffffff;

}

.placeOrderButton {
  margin: 0;
  width: 100%;
  margin-top: 24px;
  border: 1px solid #35ff2e;

  &:hover {
    background-color: #35ff2e;
    box-shadow: 0px 10px 30px -15px #35ff2e;
    color: #000;
  }

  @media (max-width: 480px) {
    margin-top: 12px;
  }
}

.checkoutCartQuantityController {
  padding: 8px;
  border: 1px solid #494949;
  border-radius: 12px;
  margin-right: 24px;
  

}

.checkoutQuantityChange {
  font-weight: bold;
  font-size: 18px;
  padding: 0px 4px;
  background-color: transparent;
  border: none;
  cursor: pointer;

}

.checkoutQuantityNumber {
  font-weight: bold;
  padding: 0px 8px;
  font-size: 18px;
  border-right:2px solid #494949;
  border-left:2px solid #494949;
}

.checkoutProductPrice {
  display: flex;
  margin-right: 12px;
  justify-content: end;
  min-width: 100px;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 1.25px;

  @media (max-width: 480px) {
    font-size: 20px;  
  }
}
