/* general styles */
body {
    font: 15px 'Lato', Tahoma, sans-serif;
    line-height: 1.5;
    margin: 0;
    padding: 0;
}

h1,h2,h3,h4 {
    font-family: Arvo, sans-serif;
    font-weight: 400;
}

input[type="phone"],
input[type="date"],
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"] {
    padding: 6px;
    border-radius: 4px;
    border: 1px solid #bbb;
    background-color: #ffffff;
}

textarea {
    border: 1px solid #bbb;
    border-radius: 4px;
}

select {
    border: 1px solid #bbb;
    /* submit.css didn't have these heights set ? */
    /*height: 28px;
    line-height: 28px;*/
    padding: 7px 4px;
    color: #555;
    border-radius: 4px;
    background-color: #fff;
}

/* equalize top/bottom header margins in table cells */
td h3 {
    margin: 10px;
}

/* darken green/success buttons for WCAG contrast */
.btn-success {
    background-color: #0B8A13;
    border-color: #377137;
}

.badge {
    background-color: #595959;
}

.notification p {
    margin-bottom: 15px;
}

/**
  * bootstrap-switch - Turn checkboxes and radio buttons into toggle switches.
  *
  * @version v3.3.5
  * @homepage https://bttstrp.github.io/bootstrap-switch
  * @author Mattia Larentis <mattia@larentis.eu> (http://larentis.eu)
  * @license MIT
  */

.bootstrap-switch {
    display: inline-block;
    direction: ltr;
    cursor: pointer;
    border-radius: 4px;
    border: 1px solid;
    border-color: #ccc;
    position: relative;
    text-align: left;
    overflow: hidden;
    line-height: 8px;
    z-index: 0;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    vertical-align: middle;
    -webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.bootstrap-switch .bootstrap-switch-container {
    display: inline-block;
    top: 0;
    border-radius: 4px;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off,
.bootstrap-switch .bootstrap-switch-label {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    cursor: pointer;
    display: table-cell;
    vertical-align: middle;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 20px;
}
.bootstrap-switch .bootstrap-switch-handle-on,
.bootstrap-switch .bootstrap-switch-handle-off {
    text-align: center;
    z-index: 1;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-primary,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-primary {
    color: #fff;
    background: #337ab7;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-info,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-info {
    color: #fff;
    background: #5bc0de;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-success,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-success {
    color: #fff;
    background: #5cb85c;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-warning,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-warning {
    background: #f0ad4e;
    color: #fff;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-danger,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-danger {
    color: #fff;
    background: #d9534f;
}
.bootstrap-switch .bootstrap-switch-handle-on.bootstrap-switch-default,
.bootstrap-switch .bootstrap-switch-handle-off.bootstrap-switch-default {
    color: #000;
    background: #eeeeee;
}
.bootstrap-switch .bootstrap-switch-label {
    text-align: center;
    margin-top: -1px;
    margin-bottom: -1px;
    z-index: 100;
    color: #333;
    background: #fff;
}
.bootstrap-switch span::before {
    content: "\200b";
}
.bootstrap-switch .bootstrap-switch-handle-on {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.bootstrap-switch .bootstrap-switch-handle-off {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.bootstrap-switch input[type='radio'],
.bootstrap-switch input[type='checkbox'] {
    position: absolute !important;
    top: 0;
    left: 0;
    margin: 0;
    z-index: -1;
    opacity: 0;
    filter: alpha(opacity=0);
    visibility: hidden;
}
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-mini .bootstrap-switch-label {
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-small .bootstrap-switch-label {
    padding: 5px 10px;
    font-size: 12px;
    line-height: 1.5;
}
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-large .bootstrap-switch-label {
    padding: 6px 16px;
    font-size: 18px;
    line-height: 1.3333333;
}
.bootstrap-switch.bootstrap-switch-disabled,
.bootstrap-switch.bootstrap-switch-readonly,
.bootstrap-switch.bootstrap-switch-indeterminate {
    cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-on,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-handle-off,
.bootstrap-switch.bootstrap-switch-disabled .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-readonly .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-indeterminate .bootstrap-switch-label {
    opacity: 0.5;
    filter: alpha(opacity=50);
    cursor: default !important;
}
.bootstrap-switch.bootstrap-switch-animate .bootstrap-switch-container {
    -webkit-transition: margin-left 0.5s;
    -o-transition: margin-left 0.5s;
    transition: margin-left 0.5s;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-on {
    border-bottom-left-radius: 0;
    border-top-left-radius: 0;
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-inverse .bootstrap-switch-handle-off {
    border-bottom-right-radius: 0;
    border-top-right-radius: 0;
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-focused {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.bootstrap-switch.bootstrap-switch-on .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-off .bootstrap-switch-label {
    border-bottom-right-radius: 3px;
    border-top-right-radius: 3px;
}
.bootstrap-switch.bootstrap-switch-off .bootstrap-switch-label,
.bootstrap-switch.bootstrap-switch-inverse.bootstrap-switch-on .bootstrap-switch-label {
    border-bottom-left-radius: 3px;
    border-top-left-radius: 3px;
}

/*
*  Remodal - v1.1.0
*  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
*  http://vodkabears.github.io/remodal/
*
*  Made by Ilya Makarov
*  Under MIT License
*/

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
    overflow: hidden;

    -ms-touch-action: none;
    touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
    display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
    position: fixed;
    z-index: 9999;
    top: -5000px;
    right: -5000px;
    bottom: -5000px;
    left: -5000px;

    display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
    position: fixed;
    z-index: 10000;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;

    display: none;
    overflow: auto;

    text-align: center;

    -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
    display: inline-block;

    height: 100%;
    margin-left: -0.05em;

    content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
    position: relative;

    outline: none;

    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

.remodal-is-initialized {
    /* Disable Anti-FOUC */
    display: inline-block;
}

/*
 *  Remodal - v1.1.0
 *  Responsive, lightweight, fast, synchronized with CSS animations, fully customizable modal window plugin with declarative configuration and hash tracking.
 *  http://vodkabears.github.io/remodal/
 *
 *  Made by Ilya Makarov
 *  Under MIT License
 */

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
    background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
    -webkit-animation-name: remodal-overlay-opening-keyframes;
    animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
    -webkit-animation-name: remodal-overlay-closing-keyframes;
    animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
    padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 10px;
    padding: 35px;

    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);

    color: #2b2e38;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
    -webkit-animation-name: remodal-opening-keyframes;
    animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
    -webkit-animation-name: remodal-closing-keyframes;
    animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
    vertical-align: middle;
}

/* Close button */

.remodal-close {
    position: absolute;
    top: 0;
    left: 0;

    display: block;
    overflow: visible;

    width: 35px;
    height: 35px;
    margin: 0;
    padding: 0;

    cursor: pointer;
    -webkit-transition: color 0.2s;
    transition: color 0.2s;
    text-decoration: none;

    color: #95979c;
    border: 0;
    outline: 0;
    background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
    color: #2b2e38;
}

.remodal-close:before {
    font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
    font-size: 25px;
    line-height: 35px;

    position: absolute;
    top: 0;
    left: 0;

    display: block;

    width: 35px;

    content: "\00d7";
    text-align: center;
}

/* Keyframes
   ========================================================================== */

@-webkit-keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);

        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;

        opacity: 1;
    }
}

@keyframes remodal-opening-keyframes {
    from {
        -webkit-transform: scale(1.05);
        transform: scale(1.05);

        opacity: 0;
    }
    to {
        -webkit-transform: none;
        transform: none;

        opacity: 1;
    }
}

@-webkit-keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);

        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);

        opacity: 0;
    }
}

@keyframes remodal-closing-keyframes {
    from {
        -webkit-transform: scale(1);
        transform: scale(1);

        opacity: 1;
    }
    to {
        -webkit-transform: scale(0.95);
        transform: scale(0.95);

        opacity: 0;
    }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes remodal-overlay-opening-keyframes {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes remodal-overlay-closing-keyframes {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 1400px) {
    .remodal {
        max-width: 1300px;
    }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    .remodal {
        max-width: 1100px;
    }
}

@media only screen and (min-width: 1000px) and (max-width: 1199px) {
    .remodal {
        max-width: 900px;
    }
}

@media only screen and (min-width: 641px) and (max-width: 999px) {
    .remodal {
        max-width: 700px;
    }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
    background: #2b2e38;
}

.lt-ie9 .remodal {
    width: 700px;
}

/* End Remodal */

.remodal-close { /* right-align close icon */
    right: 0;
    left: auto;
}

/* ODN generic modal styling */
.odn-modal {
    max-width: 600px;
    padding: 0;
    text-align: left;
}

.odn-modal h2 {
    color: #fff;
    text-align: center;
    padding: 15px 0;
    margin: 0;
    font-size: 20px;
}

.odn-modal .remodal-close {
    color: #fff;
}

.odn-wrap {
    padding-bottom: 300px;
}

.odn-modal-content {
    padding: 30px;
    position: relative;
    background: #fff;
}

.order-modal-content {
	padding-bottom: 5px;
}

.item-modal-content, .info-modal-content, .crosssell-prompt, .order-modal-content,
.coupon-complete-prompt, .min-items-complete-prompt, #orders-history {
    background: #fff;
}

/* tipsy */
.tipsy { font-size: 14px; position: absolute; padding: 5px; z-index: 100000; }
.tipsy-inner { background-color: #000; color: #FFF; max-width: 250px; padding: 5px 8px 4px 8px; text-align: center; }

/* Rounded corners */
.tipsy-inner { border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; }

.tipsy-arrow { position: absolute; width: 0; height: 0; line-height: 0; border: 5px dashed #000; }

/* Rules to colour arrows */
.tipsy-arrow-n { border-bottom-color: #000; }
.tipsy-arrow-s { border-top-color: #000; }
.tipsy-arrow-e { border-left-color: #000; }
.tipsy-arrow-w { border-right-color: #000; }

.tipsy-n .tipsy-arrow { top: 0; left: 50%; margin-left: -5px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-nw .tipsy-arrow { top: 0; left: 10px; border-bottom-style: solid; border-top: none; border-left-color: transparent; border-right-color: transparent;}
.tipsy-ne .tipsy-arrow { top: 0; right: 10px; border-bottom-style: solid; border-top: none;  border-left-color: transparent; border-right-color: transparent;}
.tipsy-s .tipsy-arrow { bottom: 0; left: 50%; margin-left: -5px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
.tipsy-sw .tipsy-arrow { bottom: 0; left: 10px; border-top-style: solid; border-bottom: none;  border-left-color: transparent; border-right-color: transparent; }
.tipsy-se .tipsy-arrow { bottom: 0; right: 10px; border-top-style: solid; border-bottom: none; border-left-color: transparent; border-right-color: transparent; }
.tipsy-e .tipsy-arrow { right: 0; top: 50%; margin-top: -5px; border-left-style: solid; border-right: none; border-top-color: transparent; border-bottom-color: transparent; }
.tipsy-w .tipsy-arrow { left: 0; top: 50%; margin-top: -5px; border-right-style: solid; border-left: none; border-top-color: transparent; border-bottom-color: transparent; }

.well {
	min-height: auto;
	padding: 0;
	margin-bottom: 0;
	background-color: inherit;
	border: none;
	border-radius: 0;
	-webkit-box-shadow: none;
	box-shadow: none;
}

/* Account / reset password form and modal */
.account-form .field {
    padding: 8px 8px 8px 0;
}
.account-form .field label {
    display: block;
}
.account-form .field input {
    width: 230px;
}

.account-form .error {
    color: red;
    display: none;
    padding: 8px;
    margin-bottom: 5px;
}

.account-form .message {
    display: none;
}

.account-form .reset-success {
    margin-bottom: 10px;
}

#forgot-password-post-form .message {
    display: none;
}
#forgot-password-post-form .error {
    color: red;
}
#forgot-password-post-form .success {
    color: #51A351;
}

/* Account block */
#orders-history.dialog {
    width: 600px;
    max-width: 85%;
    background: #FFFFFF;
}

#orders-history h1 {
    color: #333 !important;
    font-size: 22px;
    font-weight: normal;
    margin: 0;
    padding: 0;
}
#orders-history sup {
    color: #A11E06;
}

#orders-history-container {
    overflow-y: auto;
    display: none;
}

.orders-history-table {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
}
.orders-history-table td {
    vertical-align: top;
    border: 0;
}

.orders-history-table thead td {
    padding: 0;
}

.orders-history-table tbody td {
    padding: 10px 20px; /* add padding around order rows */
}

.orders-history-table tr.type-row {
    display: none;
}
.orders-history-table td.type-col {
    width: 150px;
}
.orders-history-table td.button-col {
    width: 105px;
}
.orders-history-table span.o-amount {
    font-weight: bold;
}
.orders-history-table button.reorder.big {
    margin-right: 15px;
}
.orders-history-table button.reorder.small {
    display: none;
    white-space: nowrap;
}
.orders-history-table button.delete-order.big {
    margin-top: 15px;
}
.orders-history-table button.delete-order.small {
    display: none;
    white-space: nowrap;
}

@media (max-width: 767px) {
    .orders-history-table tr.type-row {
        display: table-row;
    }
    .orders-history-table td.type-col {
        display: none;
    }
    .orders-history-table td.button-col {
        width: 55px;
    }
    .orders-history-table button.reorder.big {
        display: none;
    }
    .orders-history-table button.reorder.small {
        display: block;
    }
    .orders-history-table button.delete-order.big {
        display: none;
    }
    .orders-history-table button.delete-order.small {
        display: block;
        margin-top: 15px;
    }
}

.order-history-row {
    border-bottom: 1px solid #EBEBEB;
}

.history-order-details {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}
.history-order-details .crossed {
    text-decoration: line-through;
}
.history-order-details .money {
    float: right;
    font-weight: bold;
    padding-right: 5px;
}
.history-order-details .h_item_details {
    color: #A11E06;
}
.history-order-details .h_item_options {
    font-style: italic;
}

img.expand-details {
    cursor: pointer;
}

#orders-loading {
    height: 150px;
    position: relative;
}
#orders-loading img {
    display: block;
    left: 50%;
    margin: -17px;
    position: absolute;
    top: 50%;
}

.login-container a {
    text-decoration: none;
}

.modal .close {
    background-image: url("/media/images/overlay/apple-close.png");
    cursor: pointer;
    height: 28px;
    position: absolute;
    right: -15px;
    top: -15px;
    width: 28px;
    opacity: 1;
}

.favorite-star {
    margin-bottom: 1px;
    padding-right: 3px;
    vertical-align: bottom;
    cursor: pointer;
}

.order-notes {
    padding: 20px 20px 10px 20px;
}

.footer {
    display: none;
}

.is-facebook .orders-history-table td.title {
   padding: 0 !important;
}

.is-facebook .orders-history-table h2 {
    color: #FFFFFF !important;
}
.is-facebook .footer {
    display: block !important;
    width: auto !important;
    padding: 6px 10px !important;
}

.is-facebook .login-container .btn-group {
    padding-bottom: 10px;
}

.is-facebook .logout-link {
    padding-left: 20px;
}

.is-facebook .footer button,
.is-facebook .dialog .reorder,
.is-facebook .dialog .delete-order {
    -moz-user-select: none;
    font-size: 13px;
    background-image: url(/media/images/button.png);
    background-position: 0 -48px;
    font-weight: bold;
    padding: 3px 6px;
    border-radius: 0;
    margin-left: 3px;
    border-style: solid;
    border-width: 1px;
    border-color: #29447E #29447E #1A356E;
    line-height: normal !important;
    display: inline-block;
    color: #fff;
    cursor: pointer;
    text-shadow: none;
}
.is-facebook .dialog .remodal-close {
    display: none;
}
.is-facebook .footer button:hover, .is-facebook .reorder:hover {
    background-image: url(/media/images/button.png);
    background-position: 0 -48px;
    color: #FFFFFF;
}
.is-facebook .reorder.disabled, .is-facebook .reorder[disabled] {
    background-image: none;
    background-color: #FFFFFF;
    color: #ADA9A6;
    text-shadow: none;
    opacity: 1;
}

.is-facebook .remodal-wrapper {
    text-align: center;
}


 .tableFloatingHeaderOriginal {
     background-color: #FFFFFF;
 }

 .dialog {
     z-index: 999;
     position: relative;
     padding: 0;
     text-align: left;

     width: 400px;
     border: 10px solid #666;
     border: 10px solid rgba(82, 82, 82, 0.698);

     -moz-border-radius: 8px;
     -webkit-border-radius: 8px;
 }

.dialog div.container {
    padding: 5px 10px 10px 10px;
    background-color: #fff;
}
.dialog h2 {
    color: #fff;
    background-color: #6D84B4;
    padding: 5px 10px;
    border: 1px solid #3B5998;
    font-size: 16px;
    font-weight: bold;
    margin: 0;
}
.dialog .footer {
    background-color: #F2F2F2;
    border-top: 1px solid #CCC;
    padding: 6px 10px;
    text-align: right;
}

/* Paytronix Registration */
.rf-field-row {
    margin-bottom: 15px;
    clear: both;
}
.rf-ml-row {
    float: left;
    margin: 10px;
}

.rf-field-boolean label {
    display: inline-block;
    font-size: 12px;
}

.rf-field-boolean .checkbox {
    display: inline-block;
    margin-right: 5px;
    top: 1px;
}

.rf-date-group span {
    margin: 0 5px;
}

.rf-date-group input {
    width: 50px;
}
.rf-date-group input.year-input{
    width: 75px;
}

/* Paytronix points rewards */
.reward-points-head {
    text-align: right;
    margin-bottom: 10px;
}

.reward-points-value {
    font-weight: 600;
}

.reward-points-value-row {
    font-size: 20px;
    line-height: 1;
}

.odn-modal .reward-points-head {
    text-align: center;
}

/* Curbside */
.curbside-button {
    margin-bottom: 10px;
}

.curbside-button .icon {
    /* center icon within button */
    position: relative;
    top: 2px;
}

.fire-button-area {
    margin-bottom: 25px;
}

/* Contactless Dining */
h4.contactless-dining-items-header {
    margin: 0 0 -5px 10px;
    padding-top: 15px;
    display: none;
}

.order-has-unsent-items h4.contactless-dining-items-header {
    display: block;
}

.order-items-sent h4 {
    margin-bottom: 15px;
}

.order-items-sent .order_item .odn-remove-item,
.order-items-sent .order_item .odn-edit-item,
.order-items-sent .order_item .odn-edit-combo-item,
.order-items-sent .odn-remove-combo {
    display: none;
}

.order-items-sent .order_item {
    font-style: italic;
    color: #999;
}

.checkout.contactless-dining #header {
    display: none;
}

.checkout.contactless-dining #content {
    margin-top: 0;
}

.checkout.contactless-dining-start #order-ready-time,
.checkout.contactless-dining-complete #order-ready-time,
.checkout.contactless-dining-start .submit-field-order-type,
.checkout.contactless-dining-complete .submit-field-order-type,
.checkout.contactless-dining-start .tip_row,
.checkout.contactless-dining-start .tip,
.checkout.contactless-dining-start .coupon-question,
.checkout.contactless-dining-start .gc-question,
.checkout.contactless-dining-start .loyalty-field,
.checkout.contactless-dining-complete .submit-field.custom-field {
    display: none !important;
}

.complete.contactless-dining .customer-details,
.complete.contactless-dining .order-info-display {
    display: none;
}

#confirmation_loading {
    display: inline-block;
}

/* SpinKit Spinner */
/* MIT License: https://github.com/tobiasahlin/SpinKit */
.sk-chase {
    width: 46px;
    height: 46px;
    position: relative;
    animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    animation: sk-chase-dot 2.0s infinite ease-in-out both;
}

.sk-chase-dot:before {
    content: '';
    display: block;
    width: 25%;
    height: 25%;
    background-color: #666;
    border-radius: 100%;
    animation: sk-chase-dot-before 2.0s infinite ease-in-out both;
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
    100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot {
    80%, 100% { transform: rotate(360deg); }
}

@keyframes sk-chase-dot-before {
    50% {
        transform: scale(0.4);
    } 100%, 0% {
          transform: scale(1.0);
      }
}