

.delivery-option-title, .delivery-type {
  cursor: pointer;
}

#checkout-items {
  margin-bottom: 1em;
  width: 45%;
}

#checkout-content {
  width: 100%;
  margin-bottom: 3em;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
}

#delivery-payment {
  width: 45%;
}

#delivery-info {
  padding-bottom: 2em;
}


#payment-summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: calc(750px - 4em);
  font-size: 0.8rem;
  background-color: var(--white);
  border: 1px solid black;
  border-radius: 0.4em;
  text-align: center;
  padding: 2em;
  margin: 2em 0;
}

#paypal-button-container {
  padding-bottom: 2em;
}

#payment-divider {
  width: 100%;
  height: 1px;
  background-color: var(--black);
}


#continue-payment {
  font-size: 1.25rem;
  padding: 0.5em 1em;
  margin: 0.5em auto;
  width: 75%;
}

.money-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.delivery-option-title {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.delivery-option-title h2 {
  margin-left: 0.5em;
  font-weight: 500
}

.delivery-option-extra {
  margin-left: 2em;
  display: none;
}

#click-collect-extra {
  display: block;
}

.delivery-type {
  display: flex;
  flex-direction: row;
  justify-content: left;
  align-items: center;
}

.delivery-type h2 {
  padding-left: 0.2em;
  font-size: 1.2rem;
}

.delivery-option p {
  font-size: 1.2rem;
}

.delivery-content {
  margin: 0;
}

#postcodeEntry {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1.2em;
  margin-top: 0.5em;
  margin-bottom: 0.3em;
}

#postcode {
  margin: 0;
  font-size: 1rem;
  height: 1.5em;
}

#submitPostcode {
  height: 2em;
  font-size: 1rem;
  padding: 0 0.5em;
  margin: 0 0.5em;
}

#postcodeError {
  display: none;    
  font-size: 1em;
  color: var(--error);
  margin: 0;
  margin-top: 0.4em;
}

#express-text, #standard-text {
  margin: 0.4em 0.3em;
}


@media only screen and (max-width: 1300px) {
  #checkout-content {
    flex-direction: column;
  }

  #checkout-items, #delivery-payment {
    width: 100%;
  }

  #checkout-items {
    margin: 1em 0;
  }
  
  #payment-summary {
    width: calc(100% - 4em);
    padding: 2em;
  }

}

