/* Site Helpers */

.pad-top-10{
    padding-top: 10px;
}

.pad-top-20{
    padding-top: 20px;
}

.pad-bottom-10{
    padding-bottom: 10px;
}

.pad-bottom-20{
    padding-bottom: 20px;
}

.pad-left-5{
    padding-left: 5px;
}
.pad-left-10{
    padding-left: 10px;
}
.pad-left-50{
    padding-left: 50px;
}
.pad-left-20{
    padding-left: 20px;
}
.pad-right-5{
    padding-top: 5px;
}

.margin-bottom-5{
    margin-bottom: 5px;
}

.text-strong{
    font-weight: bold;
}

.img-center{
    margin: 0 auto;
}

.margin-top-10{
    margin-top: 10px;
}

.border-top{
    border-top-style: solid;
    border-top-color: rgb(211, 211, 211);
    border-top-width: 1px;
}

.borderless td, .borderless th {
    border: none;
}

.glyphicon.spinning {
    animation: spin 1s infinite linear;
    -webkit-animation: spin2 1s infinite linear;
}

.img-thumbnail {
    height: 140px;
    width: auto;
}

.vertical-align {
    display: flex;
    align-items: center;
}

@keyframes spin {
    from { transform: scale(1) rotate(0deg); }
    to { transform: scale(1) rotate(360deg); }
}

@-webkit-keyframes spin2 {
    from { -webkit-transform: rotate(0deg); }
    to { -webkit-transform: rotate(360deg); }
}

body{
    background-color: white;
}

/* Absolute Center Spinner */
.loading {
  display: block;
  position: fixed;
  z-index: 2147483647;
  height: 2em;
  width: 2em;
  /* overflow: show; */
  margin: auto;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
/* Transparent Overlay */
.loading:before {
  content: '';
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.3);
}
/* :not(:required) hides these rules from IE9 and below */
.loading:not(:required) {
  /* hide "loading..." text */
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.loading:not(:required):after {
  content: '';
  display: block;
  font-size: 10px;
  width: 1em;
  height: 1em;
  margin-top: -0.5em;
  -webkit-animation: spinner 1500ms infinite linear;
  -moz-animation: spinner 1500ms infinite linear;
  -ms-animation: spinner 1500ms infinite linear;
  -o-animation: spinner 1500ms infinite linear;
  animation: spinner 1500ms infinite linear;
  border-radius: 0.5em;
  -webkit-box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.5) -1.5em 0 0 0, rgba(0, 0, 0, 0.5) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
  box-shadow: rgba(0, 0, 0, 0.75) 1.5em 0 0 0, rgba(0, 0, 0, 0.75) 1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) 0 1.5em 0 0, rgba(0, 0, 0, 0.75) -1.1em 1.1em 0 0, rgba(0, 0, 0, 0.75) -1.5em 0 0 0, rgba(0, 0, 0, 0.75) -1.1em -1.1em 0 0, rgba(0, 0, 0, 0.75) 0 -1.5em 0 0, rgba(0, 0, 0, 0.75) 1.1em -1.1em 0 0;
}
@-webkit-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-moz-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-o-keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spinner {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}



/* Home */

.menu-button > a{
    color: rgb(51, 51, 51);
    text-decoration: none;
}

.menu-button > a:hover{
    color: goldenrod;
    text-decoration: none;
}

/* Validation */

.has-error{
    border-color: red;
    color: red;
}

.has-success{
    border-color: #00C851;
    color: #00C851;
}

.form-control-feedback {
    top: 25px;
    right: 15px;
}

tr.text-center > th {
    text-align: center !important;
}

/* Create Customer - Progress Arrows */

#progress-arrows {
    box-sizing: border-box;
    padding: 0;
    list-style-type: none;
    font-family: arial;
    font-size: 12px;
    clear: both;
    line-height: 1em;
    margin: 0 -1px;
    text-align: center;
}

#progress-arrows li {
    float: left;
    padding: 10px 30px 10px 40px;
    background: #333;
    color: #fff;
    position: relative;
    border-top: 1px solid #666;
    border-bottom: 1px solid #666;
    width: 32%;
    margin: 0 1px;
}

#progress-arrows li:before {
    content: '';
    border-left: 16px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: 0;

}
#progress-arrows li:after {
    content: '';
    border-left: 16px solid #333;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 20;
}

#progress-arrows li.active {
    background: #555;
}

#progress-arrows li.active:after {
    border-left-color: #555;
}

/* Order Dash */

.row.affix {
     top:0;
     width: 100%;
     z-index: 9999 !important;
     background-color: white;
     border-bottom-style: solid;
     border-bottom-width: 3px;
     border-bottom-color: black;
 }

/* Order Dash - Export Tables */

table.export-table tr.invalid td{
    text-decoration: line-through;
    color: red;
}

table.export-table tr.valid td{
    color: green;
}

table.export-table tr td span{
    text-decoration: none;
}

/* Login Screen */
#google-sign-in{
    display: inline-block;
     background: white;
     color: #444;
     width: 190px;
     border-radius: 5px;
     border: thin solid #888;
     box-shadow: 1px 1px 1px grey;
     white-space: nowrap;
}

#google-sign-in span.google-icon{
    background: url('../img/btn_google_dark_normal_ios.png');
    background-repeat: no-repeat;
     display: inline-block;
     vertical-align: middle;
     width: 46px;
     height: 46px;
}
#google-sign-in:hover span.google-icon{
    background: url('../img/btn_google_dark_focus_ios.png');
    background-repeat: no-repeat;
     display: inline-block;
     vertical-align: middle;
     width: 46px;
     height: 46px;
}
#google-sign-in:active span.google-icon{
    background: url('../img/btn_google_dark_pressed_ios.png');
    background-repeat: no-repeat;
     display: inline-block;
     vertical-align: middle;
     width: 46px;
     height: 46px;
}

#google-sign-in span.google-button-text{
    display: inline-block;
      vertical-align: middle;
      padding-left: 10px;
      padding-right: 10px;
      font-size: 14px;
      font-weight: bold;
      /* Use the Roboto font that is loaded in the <head> */
      font-family: 'Roboto', sans-serif;
}

/* Bread Crumbs */

.breadcrumb {
     background-color: white;
     border-radius: 0;
     -moz-border-radius: 0;
     -webkit-border-radius: 0;
     -o-border-radius: 0;
     margin-bottom: 3px;
}

/* Order Generator - Home */
.form-group.partner-data{
    margin-bottom:0px;
}
.btn-file-input-dsi{
    width: 96px;
}
.import-dsi{
    margin-right:4px;
}

.door-summary .panel-title{
    margin-top:7px;
}

#doors-summary-rule-dt .active th{
    text-transform: uppercase;
}
