/* TIME */

#sb-delivery-time {
    text-align: center;
    margin-bottom: 10px;
}
#sb-delivery-time > .sb-strong {
    color: #feb216;
    font-weight: 400;
}

/* FORM */

#sb-delivery-options-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 10px;
}

/* BUTTONS */

#sb-delivery-option-buttons {
    display: flex;
    flex-direction: row;
}
#sb-delivery-option-buttons button {
    flex: 1 0 1%;
    border: none;
    display: block;
    cursor: pointer;
    padding: 1em;
    font-size: inherit;
    background: #0d0d0d;
    color: #555;
    margin-bottom: 10px;
    transition: all 0.3s;
    font-weight: 400;
}
#sb-delivery-option-buttons button[disabled] {
    cursor: not-allowed;
}
#sb-delivery-option-buttons button:hover {
    transform: none;
}
#sb-delivery-option-buttons button:focus {
    outline: none;
}
#sb-delivery-option-buttons button:first-child {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
#sb-delivery-option-buttons button:last-child {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
#sb-delivery-option-buttons button.sb-delivery-active {
    color: #feb216;
    background: rgb(72 70 66);
    font-weight: 600;
    cursor: initial;
}
#sb-delivery-option-buttons button:hover:not(.sb-delivery-active):not([disabled]) {
    background: #151515;
}

/* POSTAL CODE INPUT */

#sb-postal-code-input-group {
    display: flex;
    flex-direction: row;
    margin-bottom: 10px;
}
#sb-postal-code-input-group input {
    background: rgb(72 70 66);
    border: none;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
    padding: 10px;
    font-size: inherit;
    flex: 1 0 auto;
    color: #ffffff;
}
#sb-postal-code-input-group button {
    display: block;
    flex: 0 0 auto;
    border: none;
    border-top-right-radius: 3px;
    border-bottom-right-radius: 3px;
    cursor: pointer;
    font-size: inherit;
    padding: 10px 15px;
    background: #feb216;
}
#sb-delivery-info {
    display: none;
    padding: 8px 15px;
    background-color: rgb(249 178 22 / 10%);
    border-radius: 3px!important;
    line-height: 1.5em;
}
#sb-min-delivery-amount, #sb-delivery-fee, #sb-delivery-surtax {
    color: #feb216;
}
#sb-postal-code-error {
    display: none;
    color: #f17676;
}

/* DELIVERY INFOS */

#sb-content-pickup {
    display: none;
    text-align: center;
}
#sb-content-pickup i {
    color: #feb216;
}