.checkout_section {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
}
.checkout_orange_box {
  border-radius: 20px;
  background-color: rgba(255, 85, 26, 1);
  color: #ffffff;
  width: 90%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 312px;
}
.checkout_orange_box_back {
  position: absolute;
  top: 30px;
  right: 55px;
  width: 200px;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
  text-align: right;
}
.checkout_orange_box_back:hover {
  color: #222222;
}

.checkout_orange_box_checkout {
  font-size: 32px;
  font-weight: 700;
}
.checkout_orange_box_image {
  position: absolute;
  bottom: 0px;
  left: 0px;
}
.checkout_orange_box_back_arrow {
  position: absolute;
  top: 33px;
  right: 25px;
  left: auto !important;
}
.checkout_orange_box img {
  position: absolute;
  left: 0px;
  bottom: 0px;
  border-radius: 0px 0px 0px 20px;
}
.checkout_payment_container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin-top: 30px;
  margin-bottom: 45px;
  padding: 0px 60px 0px 60px;
}
.checkout_payment_promo {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
}
.checkout_payment_promo_title {
  font-size: 30px;
  font-weight: 700;
  width: 100%;
  text-align: right;
}
.checkout_promo_code {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 20px;
  background-color: #222222;
  padding: 25px 30px 30px 30px;
  width: 100%;
}
.checkout_promo_code_title {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  text-align: right;
}
.checkout_promo_code_input_container {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.checkout_promo_code_input_container button {
  width: 140px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 85, 26, 1);
  color: #ffffff;
  outline: none;
  border-radius: 10px;
  border: 1px solid rgba(255, 85, 26, 1);
}
.checkout_promo_code_input_container input {
  max-width: 350px;
  width: 60%;
  height: 50px;
  font-size: 18px;
  font-weight: 400;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 5px;
  margin-left: auto;
  padding-right: 20px;
  background-color: rgba(255, 255, 255, 0);
  margin-right: 8px;
  text-align: right;
}
.checkout_payment_method {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  border-radius: 20px;
  background-color: #222222;
  padding: 25px 30px 30px 30px;
  width: 100%;
  margin-top: 22px;
}
.checkout_payment_method_title {
  font-size: 20px;
  font-weight: 700;
  width: 100%;
  text-align: right;
}
.checkout_payment_method_image_container {
  max-width: 350px;
  text-align: right;
}
.checkout_payment_method_image_container img {
  margin-top: 5px;
  cursor: pointer;
}
.checkout_summary {
  width: 100%;
  padding-right: 10px;
}
.checkout_summary_title {
  font-size: 30px;
  font-weight: 700;
  width: 100%;
  text-align: right;
}
.checkout_table_container {
  display: flex;
  width: 100%;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 20px 40px 40px 30px;
}
.checkout_summary_row_title {
  font-size: 18px;
  font-weight: 400;
  margin-left: auto;
}
.checkout_summary_row_number {
  font-size: 20px;
  font-weight: 700;
  color: rgba(255, 85, 26, 1);
  width: 60px;
  margin-left: 10px;
}
.checkout_summary_row_total {
  font-size: 20px;
  font-weight: 700;
  margin-left: auto;
  text-align: right;
}
.checkout_summary_row {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.checkout_summary_dashed_line {
  border: 1px dashed rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  width: 100%;
}
.checkout_summary_solid_line {
  border: 1px solid rgba(255, 255, 255, 0.5);
  margin-bottom: 20px;
  width: 100%;
}
.checkout_footer {
  width: 100%;
  background-color: rgba(255, 85, 26, 1);
  height: 100px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: sticky;
  bottom: 0px;
  /* margin-top: 20px; */
}
.checkout_footer button {
  width: 225px;
  height: 60px;
  background-color: #ffffff;
  border-radius: 10px;
  color: rgba(255, 85, 26, 1);
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  margin-left: 80px;
  font-size: 20px;
  font-weight: 700;
  text-align: right;
}
@media only screen and (max-width: 1100px) {
  .checkout_orange_box_checkout {
    align-self: flex-end;
    margin-right: 50px;
  }
  .checkout_payment_container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }
}
@media only screen and (max-width: 767px) {
  .checkout_orange_box {
    border-radius: 10px;
    width: 95%;
    height: 150px;
  }
  .checkout_orange_box_checkout {
    font-size: 20px;
    margin-left: 16px;
    margin-bottom: 0px;
  }
  .checkout_orange_box_back_arrow {
    top: 13px;
    right: 11px;
    max-width: 18px;
  }
  .checkout_orange_box_back {
    top: 12px;
    right: 30px;
    font-size: 14px;
    text-align: right;
  }
  .checkout_orange_box_image {
    max-height: 123px;
  }

  .checkout_payment_container {
    padding: 0px 16px 0px 16px;
    margin-bottom: 25px;
  }
  .checkout_payment_promo_title {
    font-size: 20px;
  }
  .checkout_promo_code {
    border-radius: 10px;
    padding: 15px 10px 20px 10px;
  }
  .checkout_promo_code_title {
    font-size: 18px;
    font-weight: 400;
  }
  .checkout_promo_code_input_container {
    justify-content: flex-start;
  }
  .checkout_promo_code_input_container button {
    width: 110px;
    height: 40px;
    border-radius: 0px 5px 5px 0px;
  }
  .checkout_promo_code_input_container input {
    max-width: 240px;
    width: 60%;
    height: 40px;
    font-size: 16px;
    border-radius: 5px 0px 0px 5px;
    margin-right: 0px;
    padding-left: 15px;
    margin-left: 8px;
  }
  .checkout_payment_method {
    border-radius: 10px;
    padding: 15px 10px 20px 10px;
    margin-top: 22px;
  }
  .checkout_payment_method_title {
    font-size: 18px;
  }
  .checkout_payment_method_image_container {
    max-width: 2750px;
  }
  .checkout_payment_method_image_container img {
    max-width: 90px;
  }
  .checkout_summary {
    width: 100%;
    padding-left: 10px;
    margin-top: 15px;
  }
  .checkout_summary_title {
    font-size: 20px;
    margin-bottom: 0px;
  }
  .checkout_table_container {
    padding: 20px 0px 20px 0px;
  }
  .checkout_summary_row_title {
    font-size: 16px;
  }
  .checkout_summary_row_number {
    font-size: 18px;
  }
  .checkout_summary_row_total {
    font-size: 16px;
  }
  .checkout_footer {
    height: 70px;
  }
  .checkout_footer button {
    width: 165px;
    height: 45px;
    margin-left: 15px;
    font-size: 16px;
  }
  .checkout_orange_box img {
    position: absolute;
    left: 0px;
    bottom: 0px;
    border-radius: 0px 0px 0px 10px;
    width: 185px;
  }
}
