/*** FONTS ***/
@import url(https://fonts.googleapis.com/css?family=Montserrat:900|Raleway:400,400i,700,700i);
/*** VARIABLES ***/
/* Colors */
/*** EXTEND ***/
/* box-shadow */
.btn {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.05), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.05);
}

.btn.action:hover {
  box-shadow: 0.25rem 0.25rem 0.6rem rgba(0, 0, 0, 0.15), 0 0.5rem 1.125rem rgba(75, 0, 0, 0.15);
}

/*** STYLE ***/
*,
*:before,
*:after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #fafafa;
  color: #1d1f20;
  font-family: "Raleway", sans-serif;
  overflow-x: hidden;
}

::-webkit-scrollbar {
  width: 0.3em;
}

::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #1d1f20;
}

::-webkit-scrollbar-thumb {
  background-color: #83e4e2;
  border-radius: 5px;
}

@keyframes priority-blink {
  0% {
    color: #d00;
    background-color: rgba(255, 0, 0, 0.15);
  }
}
.priority-blink {
  animation: priority-blink 3s cubic-bezier(0.25, 1, 0, 1.25) infinite;
}

#addBtn {
  display: none;
  cursor: pointer;
  position: absolute;
  top: 1px;
  left: 1px;
}

main {
  display: block;
  margin: 0 auto;
  max-width: 40rem;
  padding: 1rem;
}

#search-bar {
  position: absolute;
  top: 200px;
  left: 30%;
  margin: auto;
  color: #fafafa;
  border-radius: 0.8rem;
}
#search-bar #form-search input#query {
  display: none;
  transition: ease-in-out 0.3s;
}
#search-bar #form-search span.btn-search {
  border-radius: 50%;
  display: none;
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
#search-bar #form-search span.btn-search:hover {
  opacity: 0.8;
}

a {
  text-decoration: none;
}

.flow-pane {
  overflow-y: auto;
  border: 1px solid #1d1f20;
}
.flow-pane div {
  background-color: #a2ed56;
  border-radius: 0.3rem;
  width: 100%;
  padding: 0.05rem 1rem;
}

.float-left {
  float: left;
}

.float-right {
  float: right;
}

.clickable {
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.clickable:hover {
  color: #2689cc !important;
}

.option-menu {
  position: fixed;
  min-width: 150px;
  max-width: 200px;
  background: linear-gradient(90deg, #fff, #ddd);
  padding: 0;
  border: 1px solid #ccc;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.5);
  z-index: 97;
  display: none;
}
.option-menu .fa {
  width: 20px;
}

div.menu-option {
  border: none;
  border-bottom: 1px solid #ccc;
  color: #2b303b;
  margin: 0;
  cursor: pointer;
  padding-left: 5px;
}
div.menu-tip {
  background-color: #2b303b;
  color: #eee;
  padding: 5px;
}
div.menu-option:hover {
  opacity: 0.9;
  background-color: #999;
  color: #fff;
}

.btn.action {
  cursor: pointer;
  display: inline-block;
  border-radius: 0.6rem;
  transition: ease-in-out all 0.36s;
}
.btn.action:hover {
  transform: translate(0, -2px);
}

#dsp-orders .card-body {
  max-height: calc(100vh - 125px);
  overflow: auto;
}
#dsp-orders::-webkit-scrollbar {
  width: 0.3em;
}
#dsp-orders::-webkit-scrollbar-track {
  box-shadow: inset 0 0 6px #1d1f20;
}
#dsp-orders::-webkit-scrollbar-thumb {
  background-color: #83e4e2;
  border-radius: 5px;
}
#dsp-orders .fa-bars {
  cursor: pointer;
  transition: ease-in-out 0.365s;
}
#dsp-orders .fa-bars:hover {
  color: #2689cc;
}
#dsp-orders [data-for=status], #dsp-orders [data-for=priority] {
  font-weight: bold !important;
}
#dsp-orders th[data-for=summary] {
  min-width: 100px;
}
#dsp-orders th[data-for=description] {
  min-width: 300px;
}
#dsp-orders span.has-info-tip {
  cursor: pointer;
}
#dsp-orders span.has-info-tip:hover {
  opacity: 0.9;
}
#dsp-orders tr.just-changed {
  background-color: rgba(50, 50, 50, 0.8);
  color: #fafafa;
}

#search-results {
  box-shadow: #1d1f20 3px 3px 5px;
  border: 2px #1d1f20 solid;
  border-radius: 5px;
  background-color: rgba(90, 90, 90, 0.8);
  min-width: 60%;
  max-width: 90%;
  max-height: 80%;
  display: none;
  overflow: auto;
  position: absolute;
  top: 333px;
  left: 50%;
  cursor: pointer;
  transform: translate(-50%, 0);
  padding: 0.3rem;
}
#search-results .fa-times {
  position: absolute;
  top: 10px;
  right: 10px;
}
#search-results * {
  color: #fafafa;
}
#search-results ul {
  padding: 0.1rem;
}
#search-results li {
  display: block;
  cursor: pointer;
  padding: 0.3rem;
  margin: 0.1rem 0;
  border: 1px solid rgba(90, 90, 90, 0.3);
  transition: ease-in-out 0.25s;
}
#search-results li:hover {
  background-color: rgba(50, 50, 50, 0.9);
  color: #eee;
  border: 1px solid rgba(200, 200, 200, 0.3);
}
#search-results span.result {
  font-weight: bold;
  text-decoration: underline;
  background-color: rgba(220, 220, 0, 0.7);
}

#net-indicator i {
  transition: all ease-in-out 0.3s;
}

.fa.online {
  -webkit-animation: pulse-animation 2s infinite linear;
  color: #00ff67;
}

@-webkit-keyframes pulse-animation {
  0% {
    -webkit-transform: scale(1);
  }
  25% {
    -webkit-transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.2);
  }
  75% {
    -webkit-transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
#table-ord-report {
  max-height: calc(100vh - 200px);
  overflow: auto;
}

img.thumb {
  width: 50px;
  border: 1px solid #1d1f20;
}

#upload-widget {
  position: fixed;
  left: 50%;
  top: 50%;
  z-index: 999999999;
  display: none;
}

.counter {
  color: #628900;
  background: linear-gradient(to bottom, #628900 49%, transparent 50%);
  font-family: "Poppins", sans-serif;
  text-align: center;
  width: 80px;
  height: 80px;
  padding: 5px 5px 8px;
  margin: 0 auto;
  border: 8px solid #628900;
  border-radius: 100% 100%;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.3);
}
.counter .counter-value {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  display: block;
  margin: 0 0 8px;
}
.counter h3 {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 0;
}
.counter.red {
  color: #e3213c;
  background: linear-gradient(to bottom, #e3213c 49%, transparent 50%);
  border-color: #e3213c;
}
.counter.orange {
  color: #fb8603;
  background: linear-gradient(to bottom, #fb8603 49%, transparent 50%);
  border-color: #fb8603;
}
.counter.blue {
  color: #1f8bc1;
  background: linear-gradient(to bottom, #1f8bc1 49%, transparent 50%);
  border-color: #1f8bc1;
}

#order-img-preview {
  display: none;
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-height: calc(100vh - 20%);
  max-width: calc(100vw - 20%);
  overflow: auto;
  opacity: 1;
  background-color: #1d1f20;
}
#order-img-preview img {
  max-width: 80%;
  max-height: 80%;
}
#order-img-preview .btn {
  position: absolute;
  top: 5px;
  right: 47px;
  /*width: 25px;
  height: 25px;*/
}
#order-img-preview .btn.close {
  right: 5px;
}

#info-tip {
  display: none;
  background-color: #1d1f20;
  opacity: 0.8;
  color: #fafafa;
  cursor: pointer;
  z-index: 999999999999;
  position: absolute !important;
  max-width: 280px;
  height: auto;
}

@media screen and (max-width: 990px) {
  .counter {
    margin-bottom: 20px;
  }
}
@media (min-width: 768px) {
  .jconfirm .jconfirm-box div.jconfirm-content-pane::-webkit-scrollbar {
    width: 7px;
  }
}
@media (max-device-width: 576px) {
  #search-bar {
    top: 300px;
    left: 40%;
  }

  #search-results {
    top: 425px;
    width: 90%;
  }

  #dsp-orders thead {
    display: none;
  }
  #dsp-orders tr {
    display: block;
    width: 100%;
    /*td {
      padding: .25rem !important;
    }*/
  }
  #dsp-orders tr td {
    display: block;
    width: 100%;
    padding-left: 35%;
    position: relative;
  }
  #dsp-orders tr td:before {
    white-space: nowrap;
    padding-right: 10px;
    font-weight: bold;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 35%;
  }
  #dsp-orders tr td:first-of-type {
    padding-left: 0.4rem;
    background-color: #1d1f20;
    display: inline-block;
    border-bottom: none;
    padding-bottom: 2px;
    margin-bottom: -2px;
  }
  #dsp-orders tr td:first-of-type span {
    color: #fafafa;
  }
  #dsp-orders tr td:nth-of-type(2) {
    font-weight: bold;
    background-image: linear-gradient(90deg, #1d1f20 85%, #333);
    color: #fafafa;
    padding-left: 0.4rem;
    display: inline-block;
    border-top: none;
    padding-top: 2px;
    margin-top: -2px;
  }
  #dsp-orders tr td:nth-of-type(3):before {
    content: "Detail:";
  }
  #dsp-orders tr td:nth-of-type(4):before {
    content: "Design File(s):";
  }
  #dsp-orders tr td:nth-of-type(5):before {
    content: "Posted:";
  }
  #dsp-orders tr td:nth-of-type(6):before {
    content: "Priority:";
  }
  #dsp-orders tr td:nth-of-type(7):before {
    content: "Status:";
  }

  #table-ord-report thead {
    display: none;
  }
  #table-ord-report tr {
    display: block;
    width: 100%;
    /*td {
      padding: .25rem !important;
    }*/
  }
  #table-ord-report tr td {
    display: block;
    width: 100%;
    padding-left: 35%;
    position: relative;
  }
  #table-ord-report tr td:before {
    white-space: nowrap;
    padding-right: 10px;
    font-weight: bold;
    position: absolute;
    top: 6px;
    left: 6px;
    width: 35%;
  }
  #table-ord-report tr td:first-of-type {
    padding-left: 0.4rem;
    background-color: #1d1f20;
    display: inline-block;
    border-bottom: none;
    padding-bottom: 2px;
    margin-bottom: -2px;
  }
  #table-ord-report tr td:first-of-type span {
    color: #fafafa;
  }
  #table-ord-report tr td:nth-of-type(2) {
    font-weight: bold;
    background-image: linear-gradient(90deg, #1d1f20 85%, #333);
    color: #fafafa;
    padding-left: 0.4rem;
    display: inline-block;
    border-top: none;
    padding-top: 2px;
    margin-top: -2px;
  }
  #table-ord-report tr td:nth-of-type(3):before {
    content: "Date:";
  }
  #table-ord-report tr td:nth-of-type(4):before {
    content: "Customer:";
  }
  #table-ord-report tr td:nth-of-type(5):before {
    content: "Pickup Point:";
  }
  #table-ord-report tr td:nth-of-type(6):before {
    content: "Detail:";
  }
  #table-ord-report tr td:nth-of-type(7):before {
    content: "Status:";
  }

  .jconfirm-box-container {
    max-width: 100%;
    margin: auto;
    padding-left: 5px;
    padding-right: 5px;
  }

  .jconfirm-box {
    padding: 30px 5px 10px !important;
  }

  .jconfirm-title {
    font-size: 0.9rem !important;
  }

  #counters .row > * {
    width: unset !important;
  }

  #upload-widget {
    width: 80% !important;
  }

  button.close {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
  }
}

/*# sourceMappingURL=style.css.map */
