.order_summary {
    width: 520px;
    background-color: var(--beaver);
    color: var(--black);
    padding: 20px;
    border-radius: 10px;
    box-sizing: border-box;
}

.summary_heading {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 0 -10px;
    color: var(--black);
    text-transform: uppercase;
}

.summary_heading i {
    margin-top: -4px;
    color: var(--black);
    font-size: 20px;
}

.reservation_notice {
    font-weight: 200;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

#timer {
    background-color: var(--white);
    padding: 5px 10px;
    color: var(--black);
    font-weight: 500;
    border-radius: 5px;
    margin: 0 10px;
    width: max-content;
    transition: 0.2s all ease-in-out;
}

.separator {
    width: 100%;
    height: 2px;
    background-color: var(--black);
    opacity: 0.25;
    margin: 20px 0;
}

.promo_message {
    display: none;
}

.order_summary .subtotals p {
    font-weight: 400;
    margin: 10px 0;
}

.order_summary .subtotals h4 {
    font-family: 'Roboto', sans-serif !important;
    color: var(--black);
    font-size: 24px;
    font-weight: 500;
    margin: 10px 0 -10px;
}

.details_review {
    background-color: var(--black);
    color: var(--white);
    padding: 20px;
    box-sizing: border-box;
    margin-bottom: 20px;
    border-radius: 10px;
}

.details_review h5 {
    font-family: 'Brockmann' !important;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 20px;
    margin-top: -5px;
    margin-bottom: 0;
    color: var(--white);
}

.extras_review {
    background-color: rgba(34, 51, 59, 0.6);
}

.contact_review {
    background-color: rgba(34, 51, 59, 0.3);
}
  
.details_review .flex_heading {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: -5px;
}
  
.details_review p {
    margin: 2px 0;
    opacity: 0.8;
}
  
.details_review p:last-of-type {
    margin-bottom: -5px;
}

.sign_in_button {
    background-color: var(--brown);
    padding: 5px 10px;
    color: var(--white);
    font-weight: 500;
    margin-left: 15px;
    border-radius: 5px;
    width: max-content;
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}

.sign_in_button:hover {
    background-color: #6B5D4B;
    transition: 0.2s all ease-in-out;
}

.address_review .sign_in_button {
    background-color: var(--beaver);
}

/****************** Coupon Codes ********************/
.applied_coupon {
    display: flex;
    align-items: center;
    cursor: auto;
}
  
.applied_coupon p {
    margin: 0;
}
  
.applied_coupon .coupon_code {
    margin-right: 30px;
}
  
.applied_coupon .coupon_saving {
    font-weight: 700;
}
  
.applied_coupon i {
    margin-left: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: var(--black);
    color: var(--white);
    cursor: pointer;
    transition: 0.2s all ease-in-out;
}
  
.applied_coupon i:hover {
    opacity: 0.8;
    transition: 0.2s all ease-in-out;
}
  
.applied_coupon i:active {
    transform: scale(0.96);
    opacity: 1;
    background-position: 500px;
    transition: 0.1s all ease-in-out;
    outline: none;
}
  
.discounted {
    text-decoration: line-through;
    opacity: 0.5;
}
  
.order_summary .checkout_form_field {
    color: var(--white);
    background-color: var(--trans-white);
    border: solid 2px var(--white);
    height: 46px;
    width: 100%;
    padding-left: 15px;
    border-radius: 5px;
    font-size: 16px;
    box-sizing: border-box;
    outline: none;
    font-family: 'Roboto', sans-serif !important;
    font-weight: 500;
}
  
.order_summary .checkout_form_field::placeholder {
    color: var(--white);
}
  
.order_summary .checkout_form_field:focus {
    outline: var(--white);
}

.coupon_form {
    display: flex;
}
  
#coupon_code {
    margin: 0;
}
  
#promo-button {
    width: max-content;
    margin: 0 0 0 20px;
}

@media(max-width: 1150px) {
    .order_summary {
        width: calc((100% - 20px) / 2);
    }
}

@media(max-width: 950px) {
    .order_summary {
        width: 100%;
    }
}