.accountQ {
  display: flex;
}

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

.checkoutItem {
  display: grid;
  grid-template-columns: 1fr 2fr 0.5fr;
  margin-top: 2rem;
}

.checkoutItemImage {
  max-width: 5vw;
  height: auto;
}

.checkoutItemInfo {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  margin-left: 5%;
  margin-right: 2%;
}

.checkoutItemName {
  font-size: 1rem;
  color: #EA9F1C;
  font-family: myRegularFont;
}

.checkoutItemPrice {
  display: flex;
  align-items: flex-end;
  padding-bottom: 5%;
  font-size: 1rem;
  color: white;
  font-family: myBoldFont;
}

.checkoutItemQuantity {
  font-size: 1rem;
  color: white;
  font-family: myRegularFont;
}

.edit {
  color: #EA9F1C;
}

#innerBox {
  display: flex;
  background-color: #EA9F1C;
  width: 1rem;
  height: 1rem;
  border-radius: 0.2rem;
}

.layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 5%;
  margin-bottom: 5%;
}

.loginQ {
  color: #EA9F1C; 
  margin-left: 0.5rem;
  cursor: pointer;
}

.orLayout {
  display: flex;
  margin-top: 2rem;
  width: 80%;
  align-items: center;
}

.orLine {
  height: 2px;
  width: 80%;
  background-color: rgba(255, 255, 255, 0.3);
}

.orText {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.3);
  font-family: myRegularFont;
  margin-left: 1rem;
  margin-right: 1rem;
}

.outerBox {
  border: 2px solid white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
}

.pastInfo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 1.5rem;
}

.pastInfoBold {
  font-size: 1.2rem;
  color: white;
  font-family: myBoldFont;
}

.pastInfoCont {
  width: 80%;
}

.payments {
  width: 20%;
  height: auto;
  cursor: pointer;
}

.sectionHeader {
  font-family: myBoldFont;
  font-size: 1.5rem;
  color: white;
}

.sectionHeaderCont {
  width: 80%;
  margin-top: 2rem;
}

.selection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.7rem;
  width: 80%;
}

.selectionText {
  font-size: 1.1rem;
  font-family: myRegularFont;
  color: white;
  margin-left: 1rem;
}

.shippingCont {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
}

.shippingPrice {
  font-size: 1rem;
  color: white;
  font-family: myBoldFont;
}

::-webkit-calendar-picker-indicator {
  filter: invert(1);
}

@media screen and (max-width: 600px) {
  .payments {
    width: 50%;
  }
}