body {
  font-family: "Montserrat", sans-serif;
  box-sizing: border-box;
}

h1 {
  font-weight: 600;
  font-size: 24px;
}

.checkout {
  margin-top: 1rem;
}

.checkout__product {
  background-color: #f2f2f2;
  border-radius: 12px;
  height: 35rem;
}

.checkout__section {
  display: flex;
  padding: 2rem 1rem 0 2rem;
}

.checkout__image img {
  height: 9rem;
  width: 8rem;
  border-radius: 15px;
  margin-right: 1.5rem;
}

.product__title {
  font-size: 12px;
  font-weight: 600;
}

.product__price {
  font-size: 14px;
  color: #f2994a;
}

.product__price span {
  color: #4e5150;
  text-decoration: line-through;
}

.checkout__quantity {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
  border: 1px solid #828282;
  border-radius: 12px;
  padding: 1rem;
  width: 60%;
  height: 10%;
}

.quantity__button {
  background-color: #e0e0e0;
  padding: 0.3rem;
  border-radius: 4px;
  color: #828282;
  margin-top: -2rem;
  margin-left: -0.5rem;
}

.plus {
  margin-left: 0.1rem;
}

.checkout__border {
  border-bottom: 1px solid #bdbdbd;
}

.flex {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  margin: 0 1rem;
}

.checkout__form {
  margin: 1rem;
}

.checkout__contact h3,
.checkout__shipping h3 {
  font-size: 14px;
  font-weight: 600;
  color: #333333;
}

.checkout__form input {
  padding: 1rem 0 1rem 2.5rem;
  margin-bottom: 0.5rem;
  border: 1px solid #828282;
  border-radius: 12px;
  width: 85%;
  outline: none;
  background: transparent;
}

label {
  color: #4f4f4f;
  font-size: 10px;
  font-weight: 600;
}

::placeholder {
  font-size: 12px;
  color: #828282;
  font-weight: 600;
}

.checkout__shipping i,
.checkout__contact i {
  position: absolute;
}

.icon {
  padding: 1rem 2rem 1rem 1rem;
  min-width: 40px;
  color: #828282;
}

.form__flex {
  display: flex;
}

.form__flex input {
  width: 70%;
}

.checkout__shipping {
  margin-top: 2rem;
}

.checkout__checkbox {
  margin-top: 1rem;
}

.checkout__checkbox input {
  width: 5%;
  margin: 0;
}

button {
  background-color: #f2994a;
  padding: 1rem;
  width: 40%;
  border-radius: 12px;
  outline: none;
  margin-left: 12rem;
  border: none;
  color: #ffffff;
  font-family: "Montserrat", sans-serif;
}

@media (min-width: 1200px) {
  h1 {
    margin-left: 13rem;
  }

  .checkout {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-left: 12rem;
  }

  .checkout__product {
    margin-right: 10rem;
  }

  .checkout__form input {
    width: 100%;
  }

  .form__flex input {
    width: 70%;
    margin-right: 2rem;
  }

  button {
    margin-left: 19rem;
  }
}
