.step1_click,
.step2_click,
#delivery_summary_box,
#shipping_summary_box {
  cursor: pointer;
}

.guest_checkout_container {
  display: inline-block;
}

.guest_checkout_container .shipping_address_column {
  padding: 0 !important;
}

.guest_checkout_container .checkout_item_cart {
  position: sticky;
  top: 10%;
}

.guest_checkout_box {
  width: 100%;
  display: inline-block;
  border: 1px #ddd solid;
  margin-bottom: 15px;
  position: relative;
}

.guest_checkout_box_special {
  width: 100%;
  display: inline-block;
  padding: 0px 20px 20px;
  position: relative;
}

#delivery_summary_box,
#shipping_summary_box {
  width: 100%;
  display: inline-block;
  padding: 5px;
  border: 1px #ddd solid;
  position: relative;
}

.guest_checkout_edit {
  position: absolute;
  right: 5px;
  top: 15px;
}

.guest_checkout_hide {
  display: none;
}

.checkout_subtitle {
  padding: 10px 0px 0px 15px;
}

.loading_box {
  position: fixed;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  background: none;
  max-width: 400px;
  min-width: 300px;
  z-index: 10010;
  display: none;
}

.guest_checkout_discount_overlay {
  opacity: .5;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  display: none;
  width: 100vw;
  height: 100vh;
  background-color: #000;
  transition: opacity .15s linear;
}

.guest_checkout_discount_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1060;
  display: none;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  outline: 0;
  transition: opacity .15s linear;
}

.guest_checkout_discount_modal_scrollable {
  position: relative;
  width: auto;
  height: calc(100% - 3.5rem);
  max-width: 500px;
  margin: 1.75rem auto;
  pointer-events: none;
  transition: transform .3s ease-out;
  display: flex;
  align-items: center;
}

.guest_checkout_discount_modal_content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, .2);
  border-radius: .3rem;
  outline: 0;
  max-height: 100%;
  overflow: hidden;
}

.guest_checkout_discount_modal_header {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(.3rem - 1px);
  border-top-right-radius: calc(.3rem - 1px);
}

.guest_checkout_discount_modal_body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  overflow-y: auto;
}

.guest_checkout_discount_modal_exit {
  display: inherit;
  width: 20px;
}