.sidebar-nav {
  padding: 8px 8px 8px 8px;
}

.table thead th {
  white-space: nowrap;
}

.table td.price {
  text-align: right;
}

.table td.numeric {
  text-align: right;
}

.datetimewidget-container {
}

.datetimewidget-label {
}

.datetimewidget-dow {
  width: 2em;
  display: inline-block;
}

.datetimewidget-dow-text {
  width: 1em;
  font-weight: bold;
  display: inline-block;
}

.datetimewidget-sun .datetimewidget-dow-text {
  color: #dd1100;
}

.datetimewidget-sat .datetimewidget-dow-text {
  color: #0000dd;
}

.modal.big {
  width: 75%;
  margin-left: -37%;
  margin-right: -37%;
}

.modal-body {
  max-height: 366px;
  overflow: auto;
}

.checkbox-set {
  margin-left: 1em;
}

.checkbox-set-item {
  display: block;
}

.checkbox-set-item label {
  display: inline-block;
}

label.inline {
  display: inline-block;
}

label.required:after {
  color: #BA0000;
  padding-left: 5px;
  padding-right: 5px;
  font-size: 150%;
  vertical-align: top;
  content: "*";
}

.fraud_suspect {
  background-color: #d9534f;
}

tr.price_error {
  background-color: #f2dede;
}

td.price_error {
  background-color: #f2dede;
  color: #dd1100;
  font-weight: bold;
}

select[multiple] {
  resize: auto;
  height: 15em;
}

td.performance_product_name {
  width:200px;
  word-break: break-all;
  word-wrap: break-word;
}

#search table {
  border-collapse: separate;
  width: 100%;
  border-spacing: 4px;
  margin-left: -4px;
  margin-bottom: -4px;
}

#search table tbody td,
#search table tbody th {
  padding: 4px 4px;
}

#search table tbody th {
  width: 7em;
  text-align: left;
  vertical-align: middle;
  background-color: #eee;
  border-radius: 4px;
  text-align: nowrap;
}

#search .packed-checkboxes .checkbox-set {
  overflow: hidden;
  width: 40em;
}

#search .packed-checkboxes .checkbox-set .checkbox-set-item {
  float: left;
  width: 10em;
}

.form-inline {
  margin: 10px;
}

.form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
}

.form-group {
    margin-bottom: 15px;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
}

.form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
    margin-right: 10px;
    padding: 5px;
}

.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -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;
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    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,-webkit-box-shadow ease-in-out .15s;
}

.inline-wrapper {
  display: inline;
}

.snackbar {
  visibility: hidden;
  transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  background-color: #888888;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 14px;
}

.snackbar.show {
  visibility: visible;
  -webkit-animation: snackbarFadein 0.5s, snackbarFadeout 0.5s 2.5s;
  animation: snackbarFadein 0.5s, snackbarFadeout 0.5s 2.5s;
}

@-webkit-keyframes snackbarFadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@keyframes snackbarFadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes snackbarFadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

@keyframes snackbarFadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}

.align-middle {
  vertical-align: middle !important;
}

.mt-10px {
  margin-top: 10px !important;
}

.mb-10px {
  margin-bottom: 10px !important;
}

.flex-wrap {
  display: -webkit-box;
  display: flex;
  display: -webkit-flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}