a {
  text-decoration: none;
  color: #444444;
}

html, body {
  z-index: -1;
}

body {
  font-size: 16px;
  margin: 0;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  color: #444444;
}

h3 {
  margin-top: 0;
}

li {
  list-style-type: none;
}

#site-wrapper {
  display: flex;
  /*&.adjust-for-instore{
    height: 100%; // this setting is important for getting flex to fill height of browser instead of exceeding it
  }*/
}

#nav-wrapper {
  width: 215px;
}

/*
#navigation{
  position: fixed; // keep the sidebar where it when the page is being scrolled
  //float: left;
  height: 100vh;
  //width: $nav-width;
  //min-width: 190px;
  width: $nav-width; //190px;
  background-color: $supermacs-red;
  //display: table-cell;

  ul{
    padding-left: 0;
    margin-top: 0;
  }

  a{
    color: #ffffff;
  }

  a li{
    text-align: center;
    padding: 10px 0;
  }

  li:hover, li.active{
    box-shadow: 0 0 5px 2px #0F3DB6 inset;
    background-color: #1148CD;
  }

  // remove outline from anchor but ensure that focus highlights navigation for accessiblity
  a:focus{
    outline: 0; // remove blue outline around logout button
    li{
      box-shadow: 0 0 5px 2px #0F3DB6 inset;
      background-color: #1148CD;
    }
  }

  // logout button
  ul:last-child{
    #logout{
    //input[type=submit]{
      width: 100%;
      cursor: pointer;
      background-color: unset;
      border: none;
      font-size: $body-size;
      color: #ffffff;
      padding: 10px 0;

      // remove outline from last child but ensure that focus highlights logout button for accessiblity
      &:focus{
        outline: 0; // remove blue outline around logout button
        box-shadow: 0 0 5px 2px #0F3DB6 inset;
        background-color: #1148CD;
      }
    }
  }

  #supermacs-logo{
    width: 90%; //100%;
    padding: 10px;
  }
}*/
#navigation {
  position: fixed;
  height: 100vh;
  width: 215px;
  background-color: whitesmoke;
  overflow-y: auto;
  /* Style the collapsible content. Note: hidden by default */
}
#navigation ul {
  padding-left: 10px;
  padding-right: 10px;
  margin-top: 0;
}
#navigation a {
  font-weight: bold;
}
#navigation a li {
  padding: 10px 0;
  padding-left: 10px;
}
#navigation li:hover, #navigation li.active {
  background-color: #1b5ee4;
  color: #ffffff;
}
#navigation li:hover a, #navigation li.active a {
  color: #ffffff;
}
#navigation a:focus {
  outline: 0;
}
#navigation a:focus li {
  box-shadow: 0 0 5px 2px #0F3DB6 inset;
  background-color: #1148CD;
}
#navigation #logout {
  width: 100%;
  cursor: pointer;
  background-color: #39ae3e;
  border: none;
  font-size: 16px;
  color: #ffffff;
  font-weight: bold;
  padding: 10px 0;
  text-align: center;
}
#navigation #logout:focus {
  outline: 0;
  box-shadow: 0 0 5px 2px #0F3DB6 inset;
  background-color: #1148CD;
}
#navigation #supermacs-logo {
  width: 90%;
  padding: 10px;
}
#navigation .content {
  display: none;
  overflow: hidden;
}

#supermacs-logo-fixed {
  width: 100%;
  padding: 10px;
}

#content {
  width: calc(100vw - 215px - 52px);
  padding: 15px 15px 75px 15px;
  overflow: auto;
}

#restaurantData .dataTable {
  width: 100% !important;
}

#table-wrap {
  float: right;
  width: 100%;
  padding: 15px 0;
  /*h2{
    margin: 0;
  }*/
  /*.note{
    margin-bottom: 12px;
  }*/
}
#table-wrap h2.no-note {
  margin: 0 0 12px 0;
}

table.dataTable {
  /*tr.till-error, tr.till-error tr.sorting_1{
    background-color: #89b5f5;

    .button{
      color: #89b5f5;
    }

  }*/
}
table.dataTable thead th, table.dataTable thead td {
  border-bottom: 0 !important;
  text-align: left;
  padding-left: 10px !important;
}
table.dataTable.no-footer {
  border-bottom: 0 !important;
}
table.dataTable .deleted, table.dataTable .deleted .sorting_1 {
  color: #b3b3b3;
}
table.dataTable .deleted .button, table.dataTable .deleted .sorting_1 .button {
  color: #b3b3b3;
}

.pixelpoint-error {
  background-color: #1b5ee4;
  color: white;
}

/*
.myClass div{
  color: darkgreen;
  font-weight: bold;
}*/
/*
body > div.DTED.DTED_Lightbox_Wrapper > div > div > div > div.DTE.DTE_Action_Edit > div.DTE_Body > div > form > div > div.DTE_Field.DTE_Field_Type_selectize.DTE_Field_Name_pixelpoint_product_id > div > div.DTE_Field_InputControl > div > div > div > div{
  color: blue;
}*/
#login-container {
  display: flex;
  display: -webkit-flex;
  /* Safari */
  height: 100vh;
  align-items: center;
  background-color: #1b5ee4;
}

#login {
  border-radius: 24px;
  /*width: 50vw;
  min-height: 50%;*/
  margin-left: auto;
  margin-right: auto;
  background-color: #ffffff;
  padding: 20px 0 20px 0;
  display: flex;
  display: -webkit-flex;
  /* Safari */
  align-items: center;
  /* Safari */
  flex-direction: column;
  /* Safari */
  justify-content: space-between;
}
@media screen and (max-width: 1280px) {
  #login {
    width: 95%;
    height: 85%;
  }
}
@media screen and (min-width: 1281px) {
  #login {
    width: 50%;
    height: 50%;
  }
}
@media screen and (max-height: 300px) {
  #login #supermacs-logo {
    width: 7vw;
  }
  #login footer {
    font-size: 10px;
  }
}
@media screen and (min-height: 301px) {
  #login #supermacs-logo {
    width: 15vw;
  }
}

#login-form {
  width: 50%;
}
#login-form input {
  width: 100% !important;
  margin-bottom: 20px;
  height: 5.5vh !important;
  border-radius: 5px;
  border: 2px solid #b8b8b8;
  padding-left: 14px;
  font-weight: 600;
  box-sizing: border-box;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #8f8f8f;
  font-weight: 600;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #8f8f8f;
  font-weight: 600;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #8f8f8f;
  font-weight: 600;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #8f8f8f;
  font-weight: 600;
}

input:not(#logout):not(.radio-group-button):not([type=radio]):not([type=checkbox]), select {
  border-radius: 5px;
  border: 2px solid #b8b8b8;
  height: 30px;
  font-weight: 600;
  width: 200px;
  box-sizing: border-box;
  display: block;
  margin-bottom: 10px;
  margin-top: 3px;
}

input:not(#logout):not(.radio-group-button):not([type=radio]):not([type=checkbox]).wide, select.wide {
  width: 400px;
}

#radio-component input#new-zone-input {
  display: inline;
}

input:not([type=submit]) {
  padding-left: 6px;
}

.error-message {
  color: red;
  padding-left: 0;
  margin-top: 0;
}

.highlight {
  border: 2px solid red !important;
}

#restaurant-contact {
  margin-bottom: 20px;
  overflow: auto;
}

#contact-input {
  width: 50%;
  display: inline-block;
  float: left;
}

#address-input {
  width: 44%;
  display: inline-block;
  position: absolute;
}

/*label.dropdown{
  display: block;
}*/
input#uploader, input#supermacs_uploader, input#papajohns_uploader, input#app_uploader, input#icon_uploader, input#banner_uploader, input[id^=uploader-] {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

input#uploader, label#uploaderLabel, input#supermacs_uploader, label#supermacsUploaderLabel, input#papajohns_uploader, label#papajohnsUploaderLabel, input#app_uploader, label#appUploaderLabel, input#icon_uploader, label#iconUploaderLabel, input#banner_uploader, label#bannerUploaderLabel, input[id^=uploader-], input[type=submit]:not(#logout), .button {
  background-image: linear-gradient(to bottom, #fff 0%, #e9e9e9 100%);
  border: 1px solid #999;
  cursor: pointer;
  border-radius: 2px;
}
input#uploader:hover, label#uploaderLabel:hover, input#supermacs_uploader:hover, label#supermacsUploaderLabel:hover, input#papajohns_uploader:hover, label#papajohnsUploaderLabel:hover, input#app_uploader:hover, label#appUploaderLabel:hover, input#icon_uploader:hover, label#iconUploaderLabel:hover, input#banner_uploader:hover, label#bannerUploaderLabel:hover, input[id^=uploader-]:hover, input[type=submit]:not(#logout):hover, .button:hover {
  border: 1px solid #666;
  background-color: #e0e0e0;
  background-image: linear-gradient(to bottom, #f9f9f9 0%, #e0e0e0 100%);
}

.button {
  padding: 5px;
  text-align: center;
}
.button.large {
  padding: 7px;
  font-size: 18px;
}
.button.action-button {
  color: #ffffff;
  background-image: linear-gradient(to bottom, #80ffe8 0%, #00BE9C 100%);
}
.button.action-button:hover {
  color: #ffffff;
  border: 1px solid #666;
  background-image: linear-gradient(to bottom, #00e6bb 0%, #00997d 100%);
}

table.reports-table .button {
  display: block;
}

table#tblGeneratedReports a {
  color: #3097D1;
}

.button#removeImageButton, .button#removeSupermacsLandingButton, .button#removePapaJohnsLandingButton, .button.helper-button, .button#removeBannerButton {
  display: inline-block;
}

.button.helper-button {
  margin: 0 5px 5px 0;
}

label#uploaderLabel, label#supermacsUploaderLabel, label#papajohnsUploaderLabel, label#appUploaderLabel, label#iconUploaderLabel, label#bannerUploaderLabel {
  padding: 5px;
}

img#preview, img#supermacs_preview, img#papajohns_preview, img#app_preview, img#icon_preview, img#banner_preview, .image-preview {
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  width: auto;
  max-height: 208px;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
.selectize-control {
  margin-top: 3px;
  margin-bottom: 10px;
}

#categoryForm .selectize-control, #rewardForm .selectize-control {
  position: static;
}

#zone-selection-layout {
  display: grid;
  grid-template-columns: 25% 25% auto;
  grid-template-areas: "zones pricing";
  grid-column-gap: 15px;
}
#zone-selection-layout #zones-container {
  grid-area: zones;
  background: mediumturquoise;
  color: white;
}
#zone-selection-layout #pricing-container {
  grid-area: pricing;
  background: cornflowerblue;
  color: white;
}

.editable-radio-button-layout {
  display: grid;
  grid-template-columns: 60% 40%;
}

#zones-container, #pricing-container {
  width: auto;
  padding: 15px;
}

#map {
  height: 600px;
  width: 100%;
}

#map:after {
  content: "";
  display: none;
  position: absolute;
  /* could also be absolute */
  height: 600px;
  width: 100%;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.2);
}

#map.show-map-overlay:after {
  display: block;
}

#delivery-time-input {
  color: #444444;
}

#delivery-time-input.not-selected {
  color: #999999;
}

ul.remove-indent {
  padding-left: 0;
}

.subheading {
  font-weight: 600;
  padding: 5px 0;
}

h4 {
  margin: 6px 0 0 0;
}

#product_select_chosen.chosen-container-active .chosen-drop {
  position: initial;
}

#report .chosen-container .chosen-results {
  max-height: 200px;
}

#table-wrap .buttons-excel {
  background-image: url("/images/excel.png");
  background-repeat: no-repeat;
  background-position-x: 96%;
  background-position-y: 3px;
  padding-right: 35px;
}

#table-wrap #customersTable_wrapper .dt-buttons {
  float: none;
}

#loyaltyInformationTable tr {
  vertical-align: top;
}
#loyaltyInformationTable tr #loyaltyHistoryTable > thead > tr > th {
  padding-top: 0px !important;
}
#loyaltyInformationTable tr #loyaltyHistoryTable > thead > tr > th.sorting_asc, #loyaltyInformationTable tr #loyaltyHistoryTable > thead > tr > th.sorting {
  background-position: top right;
}

.customer-details-table {
  border-collapse: collapse;
}
.customer-details-table td {
  padding-bottom: 10px;
}

#reportPlaceholder h2 {
  margin: 0 0 6px 0;
}

.reportTable {
  width: 100%;
}
.reportTable th {
  text-align: left;
  background-color: #ffffff;
}
.reportTable th:first-of-type {
  font-weight: 600;
  width: 15%;
}
.reportTable tr:nth-of-type(odd) {
  background-color: #f1f1f1;
}
.reportTable td:first-of-type {
  width: 15%;
}
.reportTable tr.report-name, .reportTable tr.subheading {
  background-color: #dff4d7;
}
.reportTable td.report-name, .reportTable td.subheading {
  font-weight: 600;
}
.reportTable .up {
  color: #008000;
}
.reportTable .down {
  color: #cc0000;
}

#availability-table {
  border-spacing: 0;
}
#availability-table th {
  text-align: left;
}
#availability-table th, #availability-table td {
  padding: 5px;
}
#availability-table th:not(:last-child), #availability-table td:not(:last-child) {
  border-right: 1px solid #f1f1f1;
}
#availability-table td:not(:first-child) {
  border-bottom: 1px solid #f1f1f1;
}
#availability-table tr:nth-child(even) {
  background-color: #f1f1f1;
}
#availability-table .within-hours {
  background-color: green;
  color: #ffffff;
  text-align: center;
}
#availability-table .out-of-hours {
  background-color: #bf0000;
  color: #ffffff;
  text-align: center;
}

.remove-ul-margin {
  margin-top: 0;
  margin-bottom: 0;
}

.top-td {
  vertical-align: top;
}

td.details-control {
  background: url("/images/open.png") no-repeat center center;
  cursor: pointer;
}

tr.shown td.details-control {
  background: url("/images/close.png") no-repeat center center;
  cursor: pointer;
}

.child-row table {
  border-collapse: collapse;
  vertical-align: top;
}
.child-row .child-row-columns {
  display: inline-block;
  vertical-align: top;
}
.child-row:hover {
  background-color: #ffffff;
}

.shown tr:hover {
  background-color: #ffffff;
}

#order-contact-details {
  margin-bottom: 10px;
}

#order-details, #order_history, #printer-receipt {
  border-top: solid 1px #ddd;
}
#order-details th, #order_history th, #printer-receipt th {
  text-align: left;
}
#order-details td, #order_history td, #printer-receipt td {
  vertical-align: top;
}
#order-details .order-product-details, #order_history .order-product-details, #printer-receipt .order-product-details {
  font-weight: 100;
}
#order-details .order-product, #order_history .order-product, #printer-receipt .order-product {
  font-size: 14px;
}
#order-details .order-product-subheading, #order_history .order-product-subheading, #printer-receipt .order-product-subheading {
  padding-left: 20px;
}
#order-details .order-question, #order_history .order-question, #printer-receipt .order-question {
  padding-left: 68px;
  font-weight: 600;
}
#order-details .order-selection, #order_history .order-selection, #printer-receipt .order-selection {
  padding-left: 20px;
}
#order-details .order-font, #order_history .order-font, #printer-receipt .order-font {
  font-size: 12px;
}

.indent-content {
  padding-left: 20px;
}

.xml-indent {
  padding-left: 20px;
}

.providers-table {
  border-collapse: collapse;
}
.providers-table td {
  padding-bottom: 10px;
}

.basic-table {
  border: 1px solid #ddd;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 5px;
  margin-bottom: 15px;
  overflow: auto;
  width: 100%;
  background-color: white;
}
.basic-table td {
  border-right: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  padding: 5px;
  vertical-align: top;
}
.basic-table td:last-child {
  border-right: none;
}
.basic-table tr:last-child td {
  border-bottom: none;
}
.basic-table td {
  padding-bottom: 10px;
}

#save-success, #save-fail {
  position: fixed;
  bottom: 0;
  left: 45%;
  border-radius: 5px 5px 0 0;
  width: 200px;
  z-index: 2;
}

#save-success {
  background-image: linear-gradient(to bottom, #e9e9e9 0%, #fff 100%);
  box-shadow: 1px -1px 0 #1b5ee4, 1px 0px 0 0px #1b5ee4 inset;
}

#save-fail {
  background-image: linear-gradient(to bottom, #1b5ee4 0%, #F04842 100%);
  color: #ffffff;
}

.animate-alert {
  -webkit-animation-name: save-alert;
          animation-name: save-alert;
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: alternate;
          animation-direction: alternate;
  -webkit-animation-iteration-count: 2;
          animation-iteration-count: 2;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-play-state: running;
          animation-play-state: running;
}

#save-text {
  text-align: center;
  padding-top: 45px;
}

#fail-text {
  text-align: center;
  padding-top: 40px;
}

@-webkit-keyframes save-alert {
  /*from {height: 0;}
  to {height: 100px;}*/
  0% {
    height: 0;
  }
  50% {
    height: 100px;
  }
  100% {
    height: 100px;
  }
}

@keyframes save-alert {
  /*from {height: 0;}
  to {height: 100px;}*/
  0% {
    height: 0;
  }
  50% {
    height: 100px;
  }
  100% {
    height: 100px;
  }
}
#checkbox-group .lbl-chkbox, #delete-cb .lbl-chkbox, #checkbox-default .lbl-chkbox {
  display: table;
  margin: 8px 0 8px 0;
}
#checkbox-group .lbl-chkbox input[type=checkbox],
#delete-cb .lbl-chkbox input[type=checkbox],
#terminal_new_column-cb .lbl-chkbox input[type=checkbox],
#checkbox-default .lbl-chkbox input[type=checkbox] {
  float: left;
  width: initial;
  height: initial;
}

#radio-group label, #product-radio-group label {
  display: block;
}
#radio-group input[type=number], #product-radio-group input[type=number] {
  display: inline;
}
#radio-group input[type=radio], #product-radio-group input[type=radio] {
  width: initial;
  height: initial;
  display: inline;
}

#product-radio-group select {
  display: inline;
}
#product-radio-group .selectize-control {
  display: inline-block;
  vertical-align: middle;
}

.selectize-input {
  width: 200px !important;
  border-radius: 5px !important;
  border: 2px solid #b8b8b8 !important;
  font-weight: 600;
}

.selectize-dropdown .active {
  background-color: #9dd3fa !important;
}

.chosen-choices {
  border-radius: 5px;
  border: 2px solid #b8b8b8 !important;
  margin-bottom: 5px !important;
}

#menu_select_chosen {
  min-width: 200px;
  width: auto !important;
}

.select2-search.select2-search--inline > input {
  min-width: 200px;
}

textarea {
  display: block;
  margin-bottom: 5px;
  width: 200px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid #b8b8b8;
}

.radio-group label {
  display: block;
}
.radio-group input[type=number] {
  display: inline;
}
.radio-group input[type=radio] {
  width: initial;
  height: initial;
  display: inline;
}

#product-details {
  margin-bottom: 20px;
  overflow: auto;
}
#product-details input, #product-details textarea, #product-details select {
  width: 300px;
}

#product-left, .section-left {
  width: 50%;
  display: inline-block;
  float: left;
}

#product-right, .section-right {
  width: 44%;
  display: inline-block;
}

#product-left input:not(.default), #product-left textarea, #product-left .chosen-container, #product-left select, #product-right input:not(.default), #product-right textarea, #product-right .chosen-container, #product-right select {
  margin-bottom: 10px;
}

.note {
  font-style: italic;
  font-size: 12px;
  margin-bottom: 5px;
}
.note.large {
  font-size: 16px;
}

.table-family-border {
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 18px 10px 5px 10px;
  margin-bottom: 15px;
  overflow: auto;
  width: calc(100% - 20px);
  background-color: white;
  box-shadow: 3px 3px 5px lightgrey;
  /*&:first-of-type{
    &:not(h2){
      padding-top: 18px;
    }

  }*/
  /*
  &:first-of-type{
    padding-top: 18px;*/
  /*
  h2{
    margin: 0;
  }
  */
  /*&.instore{
    margin: 20px;
  }*/
}
.table-family-border#product-details-section {
  padding-top: 18px;
}
.table-family-border h2 {
  color: #1b5ee4;
  margin-top: 0px;
}
.table-family-border.report-border {
  padding-bottom: 30px;
}

#phoneOrderForm > div.selectize-control {
  position: inherit;
}

#optionsWrap, #extrasWrap, #childOptionsGroupsWrap, #childOptionsWrap, #childExtrasGroupsWrap, #childExtrasWrap {
  display: none;
}

/*#optionsTable, #extrasTable, #childOptionsGroupsTable, #childOptionsTable{
  width: 100% !important;
}*/
#optionsWrap #table-wrap {
  width: 94%;
}
#optionsWrap #table-wrap #optionsTable.dataTable {
  margin: 0;
  width: 100% !important;
}

#childOptionsGroupsWrap #table-wrap {
  width: 88%;
}
#childOptionsGroupsWrap #table-wrap #childOptionsGroupsTable.dataTable {
  margin: 0;
  width: 100% !important;
}

#childOptionsWrap #table-wrap {
  width: 82%;
}
#childOptionsWrap #table-wrap #childOptionsTable.dataTable {
  margin: 0;
  width: 100% !important;
}

#extrasWrap #table-wrap {
  width: 94%;
}
#extrasWrap #table-wrap #extrasTable.dataTable {
  margin: 0;
  width: 100% !important;
}

#childExtrasGroupsWrap #table-wrap {
  width: 88%;
}
#childExtrasGroupsWrap #table-wrap #childExtrasGroupsTable.dataTable {
  margin: 0;
  width: 100% !important;
}

#childExtrasWrap #table-wrap {
  width: 82%;
}
#childExtrasWrap #table-wrap #childExtrasTable.dataTable {
  margin: 0;
  width: 100% !important;
}

.infoWindowTable {
  border-spacing: 20px 5px;
}
.infoWindowTable th {
  text-align: left;
}
.infoWindowTable td {
  text-align: left;
}

#autoaddress_search > div > div.autoaddress-autocomplete {
  position: inherit !important;
}

#autoaddress_search > div > button.autoaddress-button {
  height: 30px;
  visibility: hidden;
}

#optional_address_fields {
  display: none;
}

input[type=submit]#save-button {
  bottom: 0;
  position: fixed;
  margin-left: 47%;
  left: 0;
  height: 48px !important;
  width: 120px !important;
  color: #ffffff;
  border-radius: 5px !important;
  border: none !important;
  font-size: 16px;
  box-shadow: 5px 5px 5px #b8b8b8 !important;
  z-index: 1;
  background: #1b5ee4;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1b5ee4), color-stop(25%, #f02f17), color-stop(67%, #ea4943), color-stop(100%, #ea4943));
  background: linear-gradient(to bottom, #1b5ee4 0%, #f02f17 25%, #ea4943 67%, #ea4943 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1b5ee4", endColorstr="#ea4943", GradientType=0 );
}
input[type=submit]#save-button:enabled:hover {
  box-shadow: 0 0 18px 0 #1B5EE4 inset;
  border: none;
  background: #1b5ee4;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1b5ee4), color-stop(25%, #f02f17), color-stop(67%, #ea4943), color-stop(100%, #ea4943));
  background: linear-gradient(to bottom, #1b5ee4 0%, #f02f17 25%, #ea4943 67%, #ea4943 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1b5ee4", endColorstr="#ea4943", GradientType=0 );
}
input[type=submit]#save-button:disabled {
  border: none;
  background: #e2e2e2;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #e2e2e2), color-stop(33%, #dbdbdb), color-stop(75%, #d1d1d1), color-stop(100%, #f2f2f2));
  background: linear-gradient(to bottom, #e2e2e2 0%, #dbdbdb 33%, #d1d1d1 75%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e2e2e2", endColorstr="#f2f2f2", GradientType=0 );
}

input[type=submit]#save-button-non-sticky {
  /*bottom: 0;
  position: fixed;
  margin-left: 47%;
  left: 0; // to ensure that button position at very left of window (instead of within container)*/
  height: 48px !important;
  width: 120px !important;
  color: #ffffff;
  border-radius: 5px !important;
  border: none !important;
  font-size: 16px;
  box-shadow: 5px 5px 5px #b8b8b8 !important;
  z-index: 1;
  background: #1b5ee4;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1b5ee4), color-stop(25%, #f02f17), color-stop(67%, #ea4943), color-stop(100%, #ea4943));
  background: linear-gradient(to bottom, #1b5ee4 0%, #f02f17 25%, #ea4943 67%, #ea4943 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1b5ee4", endColorstr="#ea4943", GradientType=0 );
}
input[type=submit]#save-button-non-sticky:enabled:hover {
  box-shadow: 0 0 18px 0 #1B5EE4 inset;
  border: none;
  background: #1b5ee4;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #1b5ee4), color-stop(25%, #f02f17), color-stop(67%, #ea4943), color-stop(100%, #ea4943));
  background: linear-gradient(to bottom, #1b5ee4 0%, #f02f17 25%, #ea4943 67%, #ea4943 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#1b5ee4", endColorstr="#ea4943", GradientType=0 );
}
input[type=submit]#save-button-non-sticky:disabled {
  border: none;
  background: #e2e2e2;
  background: -webkit-gradient(left top, left bottom, color-stop(0%, #e2e2e2), color-stop(33%, #dbdbdb), color-stop(75%, #d1d1d1), color-stop(100%, #f2f2f2));
  background: linear-gradient(to bottom, #e2e2e2 0%, #dbdbdb 33%, #d1d1d1 75%, #f2f2f2 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e2e2e2", endColorstr="#f2f2f2", GradientType=0 );
}

#spinner-container, [id^=spinner-container-] {
  height: 30px;
  width: 30px;
}

.custom-spinner {
  position: relative !important;
}

#simple-horizontal-container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  align-items: center;
}

#simple-horizontal-container > input {
  width: auto !important;
  height: auto !important;
  margin-top: 10px !important;
  padding: 10px;
}

.spacer {
  margin-right: 10px;
}

table#nav-buttons {
  margin: 10px;
}

.nav-button {
  height: 50px;
  width: 135px;
  border-radius: 5px;
  font-size: 18px;
}
.nav-button.green {
  background-color: #00BE9C;
  color: white;
  border: none;
  width: 100%;
}
.nav-button.white {
  background-color: white;
  border: 1px solid #00BE9C;
  color: #00BE9C;
}
.nav-button.green-without-rounding-corners {
  background-color: #00BE9C;
  color: white;
  border: none;
  border-radius: 0;
  flex: 1;
  width: 100%;
}

#no-drivers {
  flex: 1;
  display: none;
  align-items: center;
}
#no-drivers div {
  width: 100%;
  text-align: center;
  font-size: 20px;
}

#phoneOrderForm > div.columns-wrapper > div.column label {
  font-size: 20px;
}

#phoneOrderForm > div.columns-wrapper > div.column input[type=text], #phoneOrderForm > div.columns-wrapper > div.column input[type=number] {
  width: 300px;
  height: 50px;
  font-size: 20px;
}

.columns-wrapper {
  display: flex;
  margin: 20px 0;
}
.columns-wrapper .column {
  flex: 1;
}
.columns-wrapper .column .autoaddress-control {
  margin: 0;
}

#status-container .status-button {
  cursor: pointer;
  justify-content: center;
  padding-bottom: calc(0.375em - 1px);
  padding-left: 0.75em;
  padding-right: 0.75em;
  padding-top: calc(0.375em - 1px);
  text-align: center;
  white-space: nowrap;
  border-radius: 4px;
  height: 2.25em;
}
#status-container .status-button.normal {
  background-color: #23d160;
  border-color: transparent;
  color: #fff;
}
#status-container .status-button.busy {
  background-color: #ffdd57;
  border-color: transparent;
  color: #fff;
}
#status-container .status-button.very-busy {
  background-color: #ff3860;
  border-color: transparent;
  color: #fff;
}

#productsTable {
  width: 100% !important;
}

/* The snackbar - position it at the bottom and in the middle of the screen */
#snackbar {
  visibility: hidden;
  /* Hidden by default. Visible on click */
  min-width: 250px;
  /* Set a default minimum width */
  margin-left: -125px;
  /* Divide value of min-width by 2 */
  background-color: #333;
  /* Black background color */
  color: #fff;
  /* White text color */
  text-align: center;
  /* Centered text */
  border-radius: 2px;
  /* Rounded borders */
  padding: 16px;
  /* Padding */
  position: fixed;
  /* Sit on top of the screen */
  z-index: 1;
  /* Add a z-index if needed */
  left: 50%;
  /* Center the snackbar */
  bottom: 30px;
  /* 30px from the bottom */
}

/* Show the snackbar when clicking on a button (class added with JavaScript) */
#snackbar.show {
  visibility: visible;
  /* Show the snackbar */
  /* Add animation: Take 0.5 seconds to fade in and out the snackbar.
  However, delay the fade out process for 2.5 seconds */
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

/* Animations to fade the snackbar in and out */
@-webkit-keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@keyframes fadein {
  from {
    bottom: 0;
    opacity: 0;
  }
  to {
    bottom: 30px;
    opacity: 1;
  }
}
@-webkit-keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
@keyframes fadeout {
  from {
    bottom: 30px;
    opacity: 1;
  }
  to {
    bottom: 0;
    opacity: 0;
  }
}
#loyalty-cards-top-buttons-container-grid {
  display: grid;
  grid-template-columns: auto auto;
  width: 320px;
}

.grid-item {
  width: 50px;
}

@font-face {
  font-family: Anonymous_Pro;
  src: url("/Anonymous_Pro.ttf");
  font-weight: normal;
  font-style: normal;
}
.delete, .modal-close {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background-color: rgba(10, 10, 10, 0.2);
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  pointer-events: auto;
  display: inline-block;
  flex-grow: 0;
  flex-shrink: 0;
  font-size: 0;
  height: 20px;
  max-height: 20px;
  max-width: 20px;
  min-height: 20px;
  min-width: 20px;
  outline: none;
  position: relative;
  vertical-align: top;
  width: 20px;
}

.delete::before, .modal-close::before, .delete::after, .modal-close::after {
  background-color: white;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform-origin: center center;
}

.delete::before, .modal-close::before {
  height: 2px;
  width: 50%;
}

.delete::after, .modal-close::after {
  height: 50%;
  width: 2px;
}

.delete:hover, .modal-close:hover, .delete:focus, .modal-close:focus {
  background-color: rgba(10, 10, 10, 0.3);
}

.delete:active, .modal-close:active {
  background-color: rgba(10, 10, 10, 0.4);
}

.is-small.delete, .is-small.modal-close {
  height: 16px;
  max-height: 16px;
  max-width: 16px;
  min-height: 16px;
  min-width: 16px;
  width: 16px;
}

.is-medium.delete, .is-medium.modal-close {
  height: 24px;
  max-height: 24px;
  max-width: 24px;
  min-height: 24px;
  min-width: 24px;
  width: 24px;
}

.is-large.delete, .is-large.modal-close {
  height: 32px;
  max-height: 32px;
  max-width: 32px;
  min-height: 32px;
  min-width: 32px;
  width: 32px;
}

.box:not(:last-child), .content:not(:last-child), .notification:not(:last-child), .progress:not(:last-child), .table:not(:last-child), .table-container:not(:last-child), .title:not(:last-child),
.subtitle:not(:last-child), .block:not(:last-child), .breadcrumb:not(:last-child), .level:not(:last-child), .message:not(:last-child), .pagination:not(:last-child), .tabs:not(:last-child) {
  margin-bottom: 1.5rem;
}

.notification {
  background-color: whitesmoke;
  border-radius: 4px;
  position: relative;
  padding: 1.25rem 2.5rem 1.25rem 1.5rem;
}

.notification a:not(.button):not(.dropdown-item) {
  color: currentColor;
  text-decoration: underline;
}

.notification strong {
  color: currentColor;
}

.notification code,
.notification pre {
  background: white;
}

.notification pre code {
  background: transparent;
}

.notification > .delete {
  right: 0.5rem;
  position: absolute;
  top: 0.5rem;
}

.notification .title,
.notification .subtitle,
.notification .content {
  color: currentColor;
}

.notification.is-white {
  background-color: white;
  color: #0a0a0a;
}

.notification.is-black {
  background-color: #0a0a0a;
  color: white;
}

.notification.is-light {
  background-color: whitesmoke;
  color: rgba(0, 0, 0, 0.7);
}

.notification.is-dark {
  background-color: #363636;
  color: #fff;
}

.notification.is-primary {
  background-color: #00d1b2;
  color: #fff;
}

.notification.is-primary.is-light {
  background-color: #ebfffc;
  color: #00947e;
}

.notification.is-link {
  background-color: #485fc7;
  color: #fff;
}

.notification.is-link.is-light {
  background-color: #eff1fa;
  color: #3850b7;
}

.notification.is-info {
  background-color: #3e8ed0;
  color: #fff;
}

.notification.is-info.is-light {
  background-color: #eff5fb;
  color: #296fa8;
}

.notification.is-success {
  background-color: #48c78e;
  color: #fff;
}

.notification.is-success.is-light {
  background-color: #effaf5;
  color: #257953;
}

.notification.is-warning {
  background-color: #ffe08a;
  color: rgba(0, 0, 0, 0.7);
}

.notification.is-warning.is-light {
  background-color: #fffaeb;
  color: #946c00;
}

.notification.is-danger {
  background-color: #f14668;
  color: #fff;
}

.notification.is-danger.is-light {
  background-color: #feecf0;
  color: #cc0f35;
}

.tabs {
  -webkit-overflow-scrolling: touch;
  align-items: stretch;
  display: flex;
  font-size: 1rem;
  justify-content: space-between;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.tabs a {
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  color: #4a4a4a;
  display: flex;
  justify-content: center;
  margin-bottom: -1px;
  padding: 0.5em 1em;
  vertical-align: top;
}

.tabs a:hover {
  border-bottom-color: #363636;
  color: #363636;
}

.tabs li {
  display: block;
}

.tabs li.is-active a {
  border-bottom-color: #3273dc;
  color: #3273dc;
}

.tabs ul {
  align-items: center;
  border-bottom-color: #dbdbdb;
  border-bottom-style: solid;
  border-bottom-width: 1px;
  display: flex;
  flex-grow: 1;
  flex-shrink: 0;
  justify-content: flex-start;
}

.tabs ul.is-left {
  padding-right: 0.75em;
}

.tabs ul.is-center {
  flex: none;
  justify-content: center;
  padding-left: 0.75em;
  padding-right: 0.75em;
}

.tabs ul.is-right {
  justify-content: flex-end;
  padding-left: 0.75em;
}

.tabs .icon:first-child {
  margin-right: 0.5em;
}

.tabs .icon:last-child {
  margin-left: 0.5em;
}

.tabs.is-centered ul {
  justify-content: center;
}

.tabs.is-right ul {
  justify-content: flex-end;
}

.tabs.is-boxed a {
  border: 1px solid transparent;
  border-radius: 4px 4px 0 0;
}

.tabs.is-boxed a:hover {
  background-color: whitesmoke;
  border-bottom-color: #dbdbdb;
}

.tabs.is-boxed li.is-active a {
  background-color: white;
  border-color: #dbdbdb;
  border-bottom-color: transparent !important;
}

.tabs.is-fullwidth li {
  flex-grow: 1;
  flex-shrink: 0;
}

.tabs.is-toggle a {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px;
  margin-bottom: 0;
  position: relative;
}

.tabs.is-toggle a:hover {
  background-color: whitesmoke;
  border-color: #b5b5b5;
  z-index: 2;
}

.tabs.is-toggle li + li {
  margin-left: -1px;
}

.tabs.is-toggle li:first-child a {
  border-radius: 4px 0 0 4px;
}

.tabs.is-toggle li:last-child a {
  border-radius: 0 4px 4px 0;
}

.tabs.is-toggle li.is-active a {
  background-color: #3273dc;
  border-color: #3273dc;
  color: #fff;
  z-index: 1;
}

.tabs.is-toggle ul {
  border-bottom: none;
}

.tabs.is-toggle.is-toggle-rounded li:first-child a {
  border-bottom-left-radius: 290486px;
  border-top-left-radius: 290486px;
  padding-left: 1.25em;
}

.tabs.is-toggle.is-toggle-rounded li:last-child a {
  border-bottom-right-radius: 290486px;
  border-top-right-radius: 290486px;
  padding-right: 1.25em;
}

.tabs.is-small {
  font-size: 0.75rem;
}

.tabs.is-medium {
  font-size: 1.25rem;
}

.tabs.is-large {
  font-size: 1.5rem;
}

.menu {
  font-size: 1rem;
}

.menu.is-small {
  font-size: 0.75rem;
}

.menu.is-medium {
  font-size: 1.25rem;
}

.menu.is-large {
  font-size: 1.5rem;
}

.menu-list {
  line-height: 1.25;
}

.menu-list a {
  border-radius: 2px;
  color: #4a4a4a;
  display: block;
  padding: 0.5em 0.75em;
}

.menu-list a:hover {
  background-color: #1b5ee4;
  color: #ffffff;
}

.menu-list a.is-active {
  background-color: #3273dc;
  color: #fff;
}

.menu-list li ul {
  border-left: 1px solid #dbdbdb;
  padding-left: 0.75em;
}

ul.menu-list {
  margin-bottom: 0px !important;
}

.menu-label {
  color: #7a7a7a;
  font-size: 1em;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding-left: 10px;
}

.menu-label:not(:first-child) {
  padding-top: 5px;
  margin-top: 5px;
}

.menu-label:not(:last-child) {
  padding-bottom: 5px;
  margin-bottom: 5px;
}

p.menu-label:hover {
  background-color: #444444;
  color: #ffffff;
  cursor: default;
}
p.menu-label:hover > img {
  filter: brightness(0) invert(1);
}

img.toggle-submenu {
  height: 12px;
  width: auto;
}

.delete-product {
  height: 30px;
  width: 100%;
  background: red;
}

/* Bulma Utilities */
/*
.file-cta, .file-name {
  -moz-appearance: none;
  -webkit-appearance: none;
  align-items: center;
  border: 1px solid transparent;
  border-radius: 4px;
  box-shadow: none;
  display: inline-flex;
  font-size: 1rem;
  height: 2.5em;
  justify-content: flex-start;
  line-height: 1.5;
  padding-bottom: calc(0.5em - 1px);
  padding-left: calc(0.75em - 1px);
  padding-right: calc(0.75em - 1px);
  padding-top: calc(0.5em - 1px);
  position: relative;
  vertical-align: top;
}

.file-cta:focus,
.file-name:focus, .is-focused.file-cta,
.is-focused.file-name, .file-cta:active,
.file-name:active, is-active.file-cta,
.is-active.file-name {
  outline: none;
}

.file-cta[disabled],
.file-name[disabled],
fieldset[disabled] .file-cta,
fieldset[disabled] .file-name {
  cursor: not-allowed;
}

.file {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}


.file {
  align-items: stretch;
  display: flex;
  justify-content: flex-start;
  position: relative;
}

.file.is-white .file-cta {
  background-color: white;
  border-color: transparent;
  color: #0a0a0a;
}

.file.is-white:hover .file-cta, .file.is-white.is-hovered .file-cta {
  background-color: #f9f9f9;
  border-color: transparent;
  color: #0a0a0a;
}

.file.is-white:focus .file-cta, .file.is-white.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 255, 255, 0.25);
  color: #0a0a0a;
}

.file.is-white:active .file-cta, .file.is-white.is-active .file-cta {
  background-color: #f2f2f2;
  border-color: transparent;
  color: #0a0a0a;
}

.file.is-black .file-cta {
  background-color: #0a0a0a;
  border-color: transparent;
  color: white;
}

.file.is-black:hover .file-cta, .file.is-black.is-hovered .file-cta {
  background-color: #040404;
  border-color: transparent;
  color: white;
}

.file.is-black:focus .file-cta, .file.is-black.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(10, 10, 10, 0.25);
  color: white;
}

.file.is-black:active .file-cta, .file.is-black.is-active .file-cta {
  background-color: black;
  border-color: transparent;
  color: white;
}

.file.is-light .file-cta {
  background-color: whitesmoke;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-light:hover .file-cta, .file.is-light.is-hovered .file-cta {
  background-color: #eeeeee;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-light:focus .file-cta, .file.is-light.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(245, 245, 245, 0.25);
  color: rgba(0, 0, 0, 0.7);
}

.file.is-light:active .file-cta, .file.is-light.is-active .file-cta {
  background-color: #e8e8e8;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-dark .file-cta {
  background-color: #363636;
  border-color: transparent;
  color: #fff;
}

.file.is-dark:hover .file-cta, .file.is-dark.is-hovered .file-cta {
  background-color: #2f2f2f;
  border-color: transparent;
  color: #fff;
}

.file.is-dark:focus .file-cta, .file.is-dark.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(54, 54, 54, 0.25);
  color: #fff;
}

.file.is-dark:active .file-cta, .file.is-dark.is-active .file-cta {
  background-color: #292929;
  border-color: transparent;
  color: #fff;
}

.file.is-primary .file-cta {
  background-color: #00d1b2;
  border-color: transparent;
  color: #fff;
}

.file.is-primary:hover .file-cta, .file.is-primary.is-hovered .file-cta {
  background-color: #00c4a7;
  border-color: transparent;
  color: #fff;
}

.file.is-primary:focus .file-cta, .file.is-primary.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(0, 209, 178, 0.25);
  color: #fff;
}

.file.is-primary:active .file-cta, .file.is-primary.is-active .file-cta {
  background-color: #00b89c;
  border-color: transparent;
  color: #fff;
}

.file.is-link .file-cta {
  background-color: #485fc7;
  border-color: transparent;
  color: #fff;
}

.file.is-link:hover .file-cta, .file.is-link.is-hovered .file-cta {
  background-color: #3e56c4;
  border-color: transparent;
  color: #fff;
}

.file.is-link:focus .file-cta, .file.is-link.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(72, 95, 199, 0.25);
  color: #fff;
}

.file.is-link:active .file-cta, .file.is-link.is-active .file-cta {
  background-color: #3a51bb;
  border-color: transparent;
  color: #fff;
}

.file.is-info .file-cta {
  background-color: #3e8ed0;
  border-color: transparent;
  color: #fff;
}

.file.is-info:hover .file-cta, .file.is-info.is-hovered .file-cta {
  background-color: #3488ce;
  border-color: transparent;
  color: #fff;
}

.file.is-info:focus .file-cta, .file.is-info.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(62, 142, 208, 0.25);
  color: #fff;
}

.file.is-info:active .file-cta, .file.is-info.is-active .file-cta {
  background-color: #3082c5;
  border-color: transparent;
  color: #fff;
}

.file.is-success .file-cta {
  background-color: #48c78e;
  border-color: transparent;
  color: #fff;
}

.file.is-success:hover .file-cta, .file.is-success.is-hovered .file-cta {
  background-color: #3ec487;
  border-color: transparent;
  color: #fff;
}

.file.is-success:focus .file-cta, .file.is-success.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(72, 199, 142, 0.25);
  color: #fff;
}

.file.is-success:active .file-cta, .file.is-success.is-active .file-cta {
  background-color: #3abb81;
  border-color: transparent;
  color: #fff;
}

.file.is-warning .file-cta {
  background-color: #ffe08a;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-warning:hover .file-cta, .file.is-warning.is-hovered .file-cta {
  background-color: #ffdc7d;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-warning:focus .file-cta, .file.is-warning.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(255, 224, 138, 0.25);
  color: rgba(0, 0, 0, 0.7);
}

.file.is-warning:active .file-cta, .file.is-warning.is-active .file-cta {
  background-color: #ffd970;
  border-color: transparent;
  color: rgba(0, 0, 0, 0.7);
}

.file.is-danger .file-cta {
  background-color: #f14668;
  border-color: transparent;
  color: #fff;
}

.file.is-danger:hover .file-cta, .file.is-danger.is-hovered .file-cta {
  background-color: #f03a5f;
  border-color: transparent;
  color: #fff;
}

.file.is-danger:focus .file-cta, .file.is-danger.is-focused .file-cta {
  border-color: transparent;
  box-shadow: 0 0 0.5em rgba(241, 70, 104, 0.25);
  color: #fff;
}

.file.is-danger:active .file-cta, .file.is-danger.is-active .file-cta {
  background-color: #ef2e55;
  border-color: transparent;
  color: #fff;
}

.file.is-small {
  font-size: 0.75rem;
}

.file.is-normal {
  font-size: 1rem;
}

.file.is-medium {
  font-size: 1.25rem;
}

.file.is-medium .file-icon .fa {
  font-size: 21px;
}

.file.is-large {
  font-size: 1.5rem;
}

.file.is-large .file-icon .fa {
  font-size: 28px;
}

.file.has-name .file-cta {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

.file.has-name .file-name {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.file.has-name.is-empty .file-cta {
  border-radius: 4px;
}

.file.has-name.is-empty .file-name {
  display: none;
}

.file.is-boxed .file-label {
  flex-direction: column;
}

.file.is-boxed .file-cta {
  flex-direction: column;
  height: auto;
  padding: 1em 3em;
}

.file.is-boxed .file-name {
  border-width: 0 1px 1px;
}

.file.is-boxed .file-icon {
  height: 1.5em;
  width: 1.5em;
}

.file.is-boxed .file-icon .fa {
  font-size: 21px;
}

.file.is-boxed.is-small .file-icon .fa {
  font-size: 14px;
}

.file.is-boxed.is-medium .file-icon .fa {
  font-size: 28px;
}

.file.is-boxed.is-large .file-icon .fa {
  font-size: 35px;
}

.file.is-boxed.has-name .file-cta {
  border-radius: 4px 4px 0 0;
}

.file.is-boxed.has-name .file-name {
  border-radius: 0 0 4px 4px;
  border-width: 0 1px 1px;
}

.file.is-centered {
  justify-content: center;
}

.file.is-fullwidth .file-label {
  width: 100%;
}

.file.is-fullwidth .file-name {
  flex-grow: 1;
  max-width: none;
}

.file.is-right {
  justify-content: flex-end;
}

.file.is-right .file-cta {
  border-radius: 0 4px 4px 0;
}

.file.is-right .file-name {
  border-radius: 4px 0 0 4px;
  border-width: 1px 0 1px 1px;
  order: -1;
}

.file-label {
  align-items: stretch;
  display: flex;
  cursor: pointer;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
}

.file-label:hover .file-cta {
  background-color: #eeeeee;
  color: #363636;
}

.file-label:hover .file-name {
  border-color: #d5d5d5;
}

.file-label:active .file-cta {
  background-color: #e8e8e8;
  color: #363636;
}

.file-label:active .file-name {
  border-color: #cfcfcf;
}

.file-input {
  height: 100%;
  left: 0;
  opacity: 0;
  outline: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.file-cta,
.file-name {
  border-color: #dbdbdb;
  border-radius: 4px;
  font-size: 1em;
  padding-left: 1em;
  padding-right: 1em;
  white-space: nowrap;
}

.file-cta {
  background-color: whitesmoke;
  color: #4a4a4a;
}

.file-name {
  border-color: #dbdbdb;
  border-style: solid;
  border-width: 1px 1px 1px 0;
  display: block;
  max-width: 16em;
  overflow: hidden;
  text-align: inherit;
  text-overflow: ellipsis;
}

.file-icon {
  align-items: center;
  display: flex;
  height: 1em;
  justify-content: center;
  margin-right: 0.5em;
  width: 1em;
}

.file-icon .fa {
  font-size: 14px;
}
*/


#skusTable tbody tr {
  cursor: move;
}

.drag-handle {
  cursor: move;
  padding: 5px;
  color: #999;
}

.drag-handle:hover {
  color: #333;
}

.drag-hint {
  font-size: 0.8em;
  color: #999;
  font-style: italic;
}

#skusTable tbody tr.ui-sortable-helper {
  display: table;
  border: 1px dashed #ccc;
  background-color: #f9f9f9;
}

.ui-sortable-placeholder {
  visibility: visible !important;
  background-color: #f3f3f3;
  height: 40px;
}

/* Read-Only Banner */
#readonly-banner {
    background-color: #1b5ee4;
    color: #ffffff;
    text-align: center;
    padding: 8px;
    font-weight: bold;
    font-size: 12px;
    letter-spacing: 1px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Read-Only Mode - Hide all edit controls (except login page) */
#content .btn-save,
#content .btn-delete,
#content .btn-add,
#content button[type="submit"],
#content input[type="submit"],
#content .delete-btn,
#content .save-btn,
a[href*="/add"],
a[href*="/edit"] {
    display: none !important;
}

/* Disable form inputs visually (except login page and search fields) */
#content input:not([type="search"]):not(.dataTables_filter input),
#content select:not(.dataTables_length select),
#content textarea {
    pointer-events: none;
    background-color: #f5f5f5;
}
