body.pagi {
  min-height: calc(100vh - 57px);
  height:auto;
  overflow:auto;
  background-image: linear-gradient(to top, #000000, #090909, #111111, #161616, #1b1b1b, #202020, #252525, #2a2a2a, #303030, #373636, #3d3d3d, #444343);
}

.childUPCs.isParent::before {
  content: "Child UPCs";
  font-size: 12px;
  color: #111111;
  display: block;
  width: auto;
  margin-right: 5px;
}

.childUPCs.isChild::before {
  content: "Parent UPC";
  font-size: 12px;
  color: #111111;
  display: block;
  width: auto;
  margin-right: 5px;
}

@keyframes gradient {
  0% {
      background-position: 0% 0%;
  }
  50% {
      background-position: 100% 100%;
  }
  100% {
      background-position: 0% 0%;
  }
}
/* 
.wave {
  background: rgb(255 255 255 / 25%);
  border-radius: 1000% 1000% 0 0;
  position: fixed;
  width: 200%;
  height: 12em;
  animation: wave 10s -3s linear infinite;
  transform: translate3d(0, 0, 0);
  opacity: 0.8;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.wave:nth-of-type(2) {
  bottom: -1.25em;
  animation: wave 18s linear reverse infinite;
  opacity: 0.8;
}

.wave:nth-of-type(3) {
  bottom: -2.5em;
  animation: wave 20s -1s reverse infinite;
  opacity: 0.9;
}

@keyframes wave {
  2% {
      transform: translateX(1);
  }

  25% {
      transform: translateX(-25%);
  }

  50% {
      transform: translateX(-50%);
  }

  75% {
      transform: translateX(-25%);
  }

  100% {
      transform: translateX(1);
  }
} */

.container-wrapper {
  min-height: calc(100vh - 57px);
  height:100%;
  overflow:auto;
  padding-bottom:60px;
}

footer {
    background: #111111;
    margin-top: 30px;
    position: fixed;
    width: 100%;
    bottom: 0;
    top: auto;
    left: 0;
    right: auto;
    }
    .inv__states.hasrefund {
    background: #f8cacb;
    padding: 2px 5px;
    border-radius: 4px;
    border: 1px solid #7a5e1a;
    font-weight: bold;
    text-transform: uppercase;
    position: relative;
    margin: 5px;
    margin-left:0;
    color: #932304;
    }
    ::placeholder  {
    color: #000000;
    }
    .row.line__item {
    border-bottom: 0.5px solid #ddd;
    position: relative;
    }
    .cnfrmd {
    pointer-events: none;
    background: #d2edd2;
    border: 2px solid green;
    border-bottom: 2px solid green!important;
    }
    .cnfrmd:last-child {
    border-top:0!important;
    }
    .order__card a:hover, .order__card a:active, .order__card a {
    text-decoration:none!important;
    color:#111111!important;
    }
    .order__card-wrapper {
    margin:10px;
    padding:5px;
    border:1px solid;
    border-radius:4px;
    text-decoration:none;
    background:#ffffff;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 6px -1px, rgba(0, 0, 0, 0.06) 0px 2px 4px -1px;
    position:relative;
    }
    .order__card-wrapper:hover {
    border: 1px solid #007bff;
    background:#007bff;
    color: #ffffff;
    }
    .order__card-wrapper.refund:hover {
    border: 1px solid #751515;
    background:#ce6b6b;
    }
    .order__card-wrapper:hover a {
    color: #ffffff!important;
    }
    .fulled .order__card-wrapper:hover a h2, .fulled .order__card-wrapper:hover a div {
    color: #111111;
    }
    .fulled .order__card-wrapper a h2, .fulled .order__card-wrapper a div {
    color: #8d8d8d;
    }
    .fulled .order__card-wrapper {
    background: #f1f1f1;
    border-color: #bbb;
    }
    .order__card-wrapper.refund {
    background:#e9c1c1;
    }
    .collapse .card-body.note, .collapse.show .card-body.note , .collapsing .card-body.note {
    padding: 0;
    border: 0;
    margin-top: 10px;
    }
    .inv_inner-wrap {
    border: 1px solid #646464;
    border-radius: 4px;
    background:#ffffff;
    }

    .inv_inner-wrap.addr {
    border: 1px solid #686868;
    }
    .inv_inner-wrap div span:first-of-type {
    font-weight: bold;
    padding-right: 5px;
    }

    .inv-head > div div:last-of-type {
    margin-bottom:10px;
    }
    .list-group-item span {
    display: block;
    font-weight:bold;
    }
    .noinv {
    color: white;
    border: 2px solid red;
    padding: 10px;
    background: red;
    font-weight: 900;
    font-size: 150%;
    display: inline-block;
    margin: 10px;
    width: 50px;
    }
    .noinv.xfer {
    background: orange;
    border: 2px solid orange;
    color:#111111;
    }
    .noinv.xfer-accpt {
    background: green;
    border: 2px solid green;
    color:#ffffff;
    }
    .list-group-horizontal .list-group-item {
    margin-right: -1px;
    margin-bottom: 0;
    width: 100%;
    max-width: 100px;
    margin: 0px 5px 10px;
    }
    .loader {
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid #3498db;
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
    position:relative;
    top:40%;
    left:50%;
    margin-left:-50px;
    }
    /* Safari */
    @-webkit-keyframes spin {
    0% {
    -webkit-transform: rotate(0deg);
    }
    100% {
    -webkit-transform: rotate(360deg);
    }
    }
    @keyframes spin {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
    }
    .loader-wrapper {
    position: absolute;
    background: #ffffff !important;
    width: 100%;
    z-index: 9999;
    height: 100%;
    -webkit-animation: fadeout .5s ease-in;
    -moz-animation: fadeout .5s ease-in;
    animation: fadeout .5s ease-in;
    animation-delay: 1.25s;
    animation-fill-mode: forwards;
    overflow:hidden;
    }
    .loader-wrapper:before {
    content: "Loading Order";
    position:absolute;
    top:20%;
    left:50%;
    display:block;
    font-size:2rem;
    width:300px;
    margin-left:-150px;
    text-align:center;
    color:grey;
    }
    @-webkit-keyframes fadeout {
    0% {
    opacity: 1;
    height:100%
    }
    100% {
    opacity: 0;
    height:0
    }
    }
    @-moz-keyframes fadeout {
    0% {
    opacity: 1;
    height:100%;
    }
    100% {
    opacity: 0;
    height:0;
    }
    }
    @keyframes fadeout {
    0% {
    opacity: 1;
    height:100%;
    }
    100% {
    opacity: 0;
    height: 0;
    }
    }
    .refund__stamp {
    display: inline-block;
    background: #efbcbc;
    border-radius: 4px;
    font-weight: 500;
    color: #1c0000;
    padding: 0 5px;
    margin: 0;
    }
    .refund {
    background: #ffefef;
    }
    .order__card-wrapper {
    background: #ffffff;
    margin: 10px;
    padding: 10px;
    border: 0.5px solid #0c61c1;
    border-radius: 5px;
    }
    .card__grid .card a {
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    }
    .card__grid .card:hover a, .card__grid .card:focus a, .card__grid .card:active a {
    box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
    }
    a.filter#refunds:before {
    content: url(inc/filter-icons/REFUND.png);
    display: inline-block;
    position: relative;
    left: 0;
    scale: 66%.666666;
    height: 50px;
    }
    a.filter#xfers:before {
    content: url(inc/filter-icons/XFER.png);
    display: inline-block;
    position: relative;
    left: 0;
    scale: 66%.666666;
    height: 50px;
    }
    a.filter#completed:before {
    content: url(inc/filter-icons/COMPLETED.png);
    display: inline-block;
    position: relative;
    left: 0;
    scale: 66%.666666;
    height: 50px;
    }
    a.filter#incompletes:before {
    content: url(inc/filter-icons/INCOMPLETE.png);
    display: inline-block;
    position: relative;
    left: 0;
    scale: 66%.666666;
    height: 50px;
    }
    a.filter#changes:before {
    content: url(inc/filter-icons/CHANGE.png);
    display: inline-block;
    position: relative;
    left: 0;
    scale: 66%.666666;
    height: 50px;
    }
    a.filter#accounted:before {
    content: url(inc/filter-icons/ACCOUNTED.png);
    display: inline-block;
    position: relative;
    left: 0;
    scale: 66%.666666;
    height: 50px;
    }
    a.filter {
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    color: #000000;
    border: 0.5px solid #ababab;
    font-weight: bold;
    align-items: center;
    position: relative;
    transition: .3s ease-in-out;
    box-shadow: rgb(99 99 99 / 20%) 0px 2px 8px 0px;
    display:flex;
    align-items: center;
    }
    a.filter:hover, a.filter:focus, a.filter:active {
    box-shadow: rgb(0 0 0 / 15%) 1.95px 1.95px 2.6px;
    }
    .check__label:before {
    content: "";
    display: block;
    border: 1px solid;
    background: #fafafa;
    float: left;
    }
    .check__label.sm:before {
    width: 10px;
    height: 10px;
    margin-right: 4px;
    }
    .check__label.lg:before {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    }
    .vrp_mod div div div span {
    display:flex;
    align-items:center;
    }
    a:hover, a:focus {
    text-decoration:none!important;
    }

    #ytable_wrapper {
      min-height: 520px;
      height: 72vh;
      overflow-y: auto;
      overflow-x:hidden;
    }
      .bi-gift-fill {
          top: 0px;
      }

    .dash__head h2 {
    font-size: 2.3rem;
    font-weight:bold;
    }
    .dates__tabs li {
    border:1px solid #e2e2e2;
    }
    .navbar-nav.flex-row li.nav-item {
    background: #343a40;
    padding: 0 10px;
    margin-right:2px;
    }
    .navbar-nav.flex-row li.nav-item a {
    color:#ffffff;
    text-decoration: none;
    }
    tr a {
    text-decoration: none;
    color: unset;
    }
    .dates__nav .form-control {
    margin-left: 2px;
    margin-right:2px;
    }
    .dates__nav .form-control:first-of-type {
    margin-left:0;
    }
    .dates__nav .form-control:last-of-type {
    margin-right:0;
    }
    .dates__nav .form-control {
    height: auto;
    line-height: 1;
    padding: 10px 0;
    font-weight: 500;
    border: 0;
    outline: none;
    cursor: pointer;
    }
    .dates__range .form-control {
    height: auto;
    line-height: 1;
    font-weight: 500;
    border: 0;
    outline: none;
    cursor: pointer;
    }
    .cardDark {
    padding: 10px 10px 15px;
    border: 1px solid #ffffffa1;
    border-radius: 8px;
    background: rgb(0 0 0 / 48%);
    color:#d9d9d9;
    cursor:pointer;
    margin:10px 0;
    }
    .cardDark .slice__ a {
    display:block;
    color:#d9d9d9;
    }
    .cardDark:hover {
    background: rgb(0 0 0 / 75%);
    color:#ffffff;
    }
    .cardDark:hover a {
    color:#ffffff;
    }
    .cardDark.noteOrders {
    border-color:#a24ad9;
    }
    .cardDark.refundOrders {
    border-color:#ffb4b4;
    }
    .cardDark.transferOrders {
    border-color:#ffff00;
    }
    .cardDark.completeOrders {
    border-color: #48c248;
    }
    .cardDark.packOrders {
    border-color: #FFB500;
    }
    .cardDark.fulfillOrders {
    border-color: #145bc7;
    }
    .chart-container {
    position: relative;
    max-width:85px;
    margin: 0 10px;
    }
    .slice__ a.slice__filter {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    }
    a.slice-filter {
    color:#000000;
    font-weight:500;
    }
    .slice__label h4 {
    font-size: 1.3rem;
    }
    .nav-link {
    font-weight:400;
    }
    .ordersPane {
    overflow-y: scroll;
    height: 95%;
    position: fixed;
    right: 0;
    top:60px;
    left: auto;
    padding-right:15px!important;
    }
    .noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently
    supported by Chrome, Edge, Opera and Firefox */
    }
    .glow {
    color: #ffffff;
    text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #0ba9ca, 0 0 30px #0ba9ca, 0 0 40px #0ba9ca, 0 0 50px #0ba9ca;
    -webkit-animation: blink 1.5s infinite alternate;
    animation: blink 1.5s infinite alternate;
    }
    @-webkit-keyframes blink {
    100% {
    text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #0ba9ca, 0 0 70px #0ba9ca, 0 0 80px #0ba9ca;
    }
    }
    @keyframes blink {
    100% {
    text-shadow: 0 0 2px #ffffff, 0 0 10px #ffffff, 0 0 20px #ffffff, 0 0 40px #0ba9ca, 0 0 70px #0ba9ca, 0 0 80px #0ba9ca;
    }
    }
    #loader {
    border: 10px solid #007bff;
    border-radius: 50%;
    border-top: 10px solid #444444;
    width: 100px;
    height: 100px;
    animation: spin 1s linear infinite;
    }
    .center {
    position: fixed;
    top: 5%;
    bottom: 0;
    left: calc(50% - 50px);
    right: auto;
    margin: auto;
    z-index: 999999999;
    }
    @keyframes spin {
    100% {
    transform: rotate(360deg);
    }
    }
    .line__item {
    margin: 5px 0;
    }
    .modal.fade:not(.in).bottom .modal-dialog {
    -webkit-transform: translate3d(0, 25%, 0);
    transform: translate3d(0, 25%, 0);
    }
    .header__row {
    line-height: 2;
    }
    .inv_inner-wrap span {
    font-weight: bold;
    margin-right: 5px;
    }
    .invoice__page {
    background:#ffffff;
    box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 2px 6px 2px;
    padding: 50px 30px;
    }
    .item-acctd::before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='25' height='25' fill='green' viewBox='0 0 24 24'%3E%3Cpath d='M20.285 2l-11.285 11.567-5.286-5.011-3.714 3.716 9 8.728 15-15.285z'/%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    z-index: 9;
    height: 30px;
    left: -11px;
    background: #ffffff;
    padding: 2px;
    width: 30px;
    }
    .refund, .refund.item-acctd.item-pckd {
    background: #fbcbcb!important;
    }
    .refund:before {
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' class='svg-icon' viewBox='0 0 20 20'%3E%3Cpath fill='red' d='M11.469,10l7.08-7.08c0.406-0.406,0.406-1.064,0-1.469c-0.406-0.406-1.063-0.406-1.469,0L10,8.53l-7.081-7.08 c-0.406-0.406-1.064-0.406-1.469,0c-0.406,0.406-0.406,1.063,0,1.469L8.531,10L1.45,17.081c-0.406,0.406-0.406,1.064,0,1.469 c0.203,0.203,0.469,0.304,0.735,0.304c0.266,0,0.531-0.101,0.735-0.304L10,11.469l7.08,7.081c0.203,0.203,0.469,0.304,0.735,0.304 c0.267,0,0.532-0.101,0.735-0.304c0.406-0.406,0.406-1.064,0-1.469L11.469,10z'%3E%3C/path%3E%3C/svg%3E");
    position: absolute;
    top: 0;
    z-index: 9;
    height: 30px;
    left: -11px;
    background: #ffffff;
    padding: 2px;
    width: 30px;
    }
    .linesku_note {
    text-decoration: underline;
    font-weight:bold;
    }
    .linesku_note:after {
    display:inline-block;
    content: "(See Note)";
    }
    .line__item {
    position:relative;
    border-bottom:4px solid #ffffff;
    }
    .xfer__item:nth-child(even) {
    margin-right:5px;
    }
    .xfer__item:nth-child(even) {
    background:#dbdbdb;
    }
    .xfer__item:nth-child(odd) {
    background:#e4e4e4;
    }
    .inv50 {
    background: #c2f9c2ba;
    }
    .xfer-accpt {
    background: #ffff0038;
    }
    .item-acctd {
    background: #a9f3a9;
    }
    .item-over-acctd {
    background: #9affde;
    }
    .item-over-pckd {
    background: #9affde;
    }
    img.line__upc {
    max-width:150px;
    width:100%;
    height:auto;
    }
    .card__vrp-inv {
    border:0;
    outline:0!important;
    }
    .here {
    background:green;
    }
    .nothere {
    background: red;
    }
    .line__thumbnail{
    width:100%; max-width:120px; height:auto;background:#ffffff;
    }
    .detail__bits {
    display: flex;text-align: left;flex-direction: column;
    }
    .order__barcode {
    max-width:200px;
    height:48px;
    width: 100%;
    }
    .addr {
    cursor: pointer;
    }
    /* .inv__notes textarea {
    background: #e5e5e5;
    border: 0;
    outline: none!important;
    font-weight: bold;
    color:#000000;
    } */
    #combineSearch {
    font-size: 2rem;
    margin: 15px auto;
    font-weight: bold;
    text-transform: uppercase;
    border:1px solid #000000;
    color: #111111;
    max-width: 480px;
    margin-left: 0;
    transition: all .3s ease-in-out;
    }
    #combineSearch::placeholder {
    color:#111111;
    }
    input.form-control::placeholder, input.form-control-lg::placeholder {
    color:#000000;
    }
    input.form-control:focus, input.form-control-lg:focus {
    color: #fafafa;
    background-color: #000000;
    border: 1px solid black;
    outline: 0;
    box-shadow: none;
    }
    input.form-control:focus::placeholder, input.form-control-lg:focus::placeholder {
    color:#fafafa;
    }
    .searchInput input.form-control:focus, .searchInput input.form-control-lg:focus {
    color: #fafafa;
    background-color: #111111;
    border-color: #ffffff;
    outline: 0;
    box-shadow: none;
    }
    #combineSearch:focus, #combineSearch:focus::placeholder {
    color:#fafafa;
    }
    #textareaID1, #textareaID2 {
    width: 100%;
    min-height: 75vh;
    text-align: center;
    font-size: 2rem;
    border: 0;
    outline: none;
    color: #0858af;
    }
    #itemsAccount .modal-dialog {
    -webkit-transform: none;
    transform: none;
    margin-right: 0;
    margin-top: 0;
    max-width: 17em;
    top: 75px;
    }
    #textareaID1::placeholder, #textareaID2::placeholder {
    color: #f8ffc3;
    opacity: 1; /* Firefox */
    }
    #textareaID1:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #f8ffc3;
    }
    #textareaID1::-ms-input-placeholder { /* Microsoft Edge */
    color: #f8ffc3;
    }
    .xfer-partial {
    background: #e1df97!important;
    }
    .xfer-success {
    background: #76d972!important;
    }
    .xfer-danger {
    background: #ff9999!important;
    }
    .fa-sticky-note:before {
    color: #232323;
    font-size: 20px;
    }
    .line__note {
    display:inline-block;
    background:#e2e2e2;
    font-weight:bold;
    border:1px solid #454545;
    border-radius:3px;
    padding:0 5px;
    }
    .item-pckd {
    background: #ffb5009c!important;
    border: 2px solid green;
    color: #351C15;
    font-weight: bold;
    }
    .item-acctd.item-pckd {
    background: #ffb5009c!important;
    border: 2px solid green;
    color: #351C15;
    font-weight: bold;
    }
    .qmerge:nth-of-type(2n) .accLine {
    display:none!important;
    }
    .qmerge:nth-of-type(2n) .lineItem__upc:after  {
    content: "See additional UPC";
    display:inline-block;
    font-weight:bold;
    margin-right:4px;
    background: yellow;
    }
    .item-pckd {
    background: #ffb5009c!important;
    border: 2px solid green;
    color: #351C15;
    font-weight: bold;
    }
    .mtpl_qty {
    background: yellow;
    padding: 10px;
    font-weight: bold;
    display: inline-block;
    border: 1px solid #9e9e00;
    }
    .camp__item, .item-pckd.camp__item, .item-acctd.camp__item, .item-acctd.item-pckd.camp__item  {
    background: #CCCCFF!important;
    }
    body.modal-open {
    overflow: scroll !important;
    }
    .state__pills {
    display:flex;
    flex-wrap: wrap;
    }
    .lineItem_carat {
      font-size:1rem;
    font-weight: 900;
    font-family: "bootstrap-icons";
    transition:.3s all ease;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display,inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 30px;
    text-rendering: auto;
    }
    .item__name .lineItem_carat.opened::before {
    content: "\F1C6";
    }
    .item__name .lineItem_carat::before {
    content: "\F1BC";
    }
    .itemPullbk, .clearAccnt {
    background:#e2e2e2!important;
    color:red!important;
    }
    .itemScnnd {
    background: #f3f3f3!important;
    color: #004f95!important;
    }
    .itemPckd {
    background: #ffb5009c!important
    }
    .lineNote {
    background: #f5eea9!important;
    }
    .lineNote.cleared {
    color: red!important;
    }
    .eventRow {
    border-bottom: .5px solid #bdbdbd;
    }
    .modal-dialog-slideout2 {min-height: calc(100% - 56px); margin: 56px auto 0 0; background: #fff;}
    .modal.fade .modal-dialog.modal-dialog-slideout2 {-webkit-transform: translate(-100%,0);transform: translate(-100%,0);}
    .modal.fade.show .modal-dialog.modal-dialog-slideout2 {-webkit-transform: translate(0,0);transform: translate(0,0);flex-flow: column;}
    .modal-dialog-slideout2 .modal-content{border: 0;}
    .eventRow:nth-child(even) {
    background:#e2e2e2;
    }
    .mngrCntrls li {
    list-style-type: nnone;
    display: block;
    padding: 0;
    margin-right: 8px;
    }
    .mngrCntrls li i {
    font-size: 16px;
    }
    .mngrCntrls form {
    margin:0;
    }
    .invoice__page {
    margin-bottom:90px;
    }
    ::-webkit-scrollbar {
    width: 4px;
    height:4px;
    }
    ::-webkit-scrollbar-track {
    /* -webkit-box-shadow: inset 0 0 10px rgba(255,255,255,1); */
    background-color: #e2e2e2;
    }
    ::-webkit-scrollbar-thumb {
    background-color: #000000;
    outline: none;
    }
    .searchInput {
    flex-direction:column;
    }
    .btn-dark {
    color: #fafafa;
    background-color: #111111;
    border-color: #000000;
    }
    .btn-dark:hover, .btn-dark:focus {
    color: #fafafa;
    background-color: #000000;
    border-color: #000000;
    }
    .btn-primary.focus, .btn-primary:focus, .btn-dark:hover, .btn-dark:focus {
    box-shadow:none!important;
    border:0important;
    outline:0important;
    }
    .bodyInner {
    height: 100%;
    min-height: calc(100vh - 60px);
    }

    @media screen and (max-width: 992px) {
      #ytable_wrapper {
        min-height: auto;
        height: auto;
      }
        #combineSearch {
        margin:10px auto;;
        display:inline-block;
        }
        .screenHeight {
        height:85vh;
        position:relative;
        }
        .screenY50 {
        max-width: 100%;
        margin: 0 auto;
        margin: 0 auto;
        }
        .invoice__page {
        padding:15px;
        }
        /* .line__thumbnail {
        max-width: 60px;
        } */
    }

    @media screen and (max-width: 768px) {
      .mobileHide {
        display:none;
      }
        .ordersList {
        position: fixed;
        height: auto;
        top: 0px;
        bottom: 0;
        overflow: auto;
        }
        .ordersPane {
        bottom:0;
        height:auto;
        top:0px;
        /* .ordersPane also carries Bootstrap's .p-0 (padding:0 !important),
           so this needs !important too or it's silently discarded. */
        padding-top:56px!important;
        border-top:none;
        z-index: 99;
        background:#fafafa;
        }
        /* Show list or detail full-screen, one at a time, instead of a 50/50
           split. Pages using this pattern (orders/, refunds/, transfers-automation/)
           add "has-selection" to the .row wrapper server-side when ?name= is set. */
        .row.has-selection .ordersList {
        display: none;
        }
        .row:not(.has-selection) .ordersPane {
        display: none;
        }
        footer small .divider-right:nth-child(1):after {
        display:none;
        }
        footer small .divider-right:nth-child(1) {
        display:block;
        width:100%;
        margin:0 auto;
        }
        h1, .h1 {
        font-size: 2rem;
        }
        h2, .h2 {
        font-size: 1.8rem;
        }
        h3, .h3 {
        font-size: 1.5rem;
        }
        h4, .h4 {
        font-size: 1.3rem;
        }
        #cnfm {
        font-size:0;
        }
        #acct {
        font-size:0;
        }
        .line__item, .header__row {
        font-size: 12px;
        }
        img.line__upc {
        display: none;
        }
        .order__barcode {
        max-width: 144px;
        height: 40px;
        }
        #itemsAccount .modal-dialog {
        transform: none;
        max-width: 45%;
        }
        #combineSearch {
        margin: 0 15px 0 0;
        display: inline-block;
        font-size: 1.3rem;
        padding: 10px;
        }
        .searchInput {
        flex-direction:row;
        }
        .searchInput .btn-lg {
        padding:10px 15px;;
        }
        .fixFoot {
        font-size:0px;
        }
        .fixFoot i {
        font-size: 1rem;
        }

      footer {
        font-size:12px;
        bottom: 0;
        top: auto;
        position:fixed;
        }
    }

    @media (max-width: 576px){
        .modal-dialog.modal-dialog-slideout2 {
        width: 80%;
        }
    }



    .post-it {
        background: #ffa;
        overflow: hidden;
        padding:10px;
        min-height:120px;
        padding-bottom: 30px;
        border-radius: 0 0 0 30px/45px;
        font-family: 'Permanent Marker', cursive;
        line-height: 1.7em;
        font-size: 19px;
        color: #130d6b;
        position:relative;
        box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 15px -3px, rgba(0, 0, 0, 0.05) 0px 4px 6px -2px;
      }


    .post-it:before {
    content:"";
    display:block;
    position:absolute;
    width:20px;
    height:25px;
    background:#ffa;
    box-shadow: 3px -2px 4px rgba(0, 0, 0, 0.2), inset 12px -15px 15px rgba(0, 0, 0, 0.1);
    left:0;
    bottom:0;
    z-index:2;
    transform:skewX(25deg);
    }

    .post-it textarea, .post-it textarea:focus {
      resize:none;
      width: 100%;
      border: 0px;
      background: transparent;
      outline:none;
    }

.navbar .notifications button {
  font-size: 1.25rem;
}
#unreadNotesCounter > span {
  position: absolute;
  left: 30px;
  top: -2px;
}
.bg-notify {
  background: #ff3b30;
  color: #ffffff;
  font-weight: 700;
  border-radius: 50%;
  padding: 0;
  width: 20px;
  height: 20px;
  position: absolute;
  text-align: center;
  line-height: 22px;
  font-size:.85rem;
}

.orderUnread {
  margin-bottom:1px;
}

.newNotify {
  -webkit-animation: notifyInvert 1s forwards;
  animation: notifyInvert 1s forwards;
}

@keyframes notifyInvert {
  0%, 100%  { -webkit-filter: invert(0); }
  50% { -webkit-filter: invert(100); }
}

.pulsating-circle {
  position: absolute;
  left: auto;
  top: 25px;
  line-height: 50px;
  right: -25px;
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  z-index: 99;
  text-align: center;
}
.pulsating-circle:before {
  content: "";
  position: absolute;
  display: block;
  width: 300%;
  height: 300%;
  box-sizing: border-box;
  margin-left: -100%;
  margin-top: -100%;
  border-radius: 50%;
  background-color: purple;
  -webkit-animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
  animation: pulse-ring 1.25s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}
.pulsating-circle:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: purple;
  border-radius: 25px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  -webkit-animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
  animation: pulse-dot 1.25s cubic-bezier(0.455, 0.03, 0.515, 0.955) -0.4s infinite;
}

@-webkit-keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}

@keyframes pulse-ring {
  0% {
    transform: scale(0.33);
  }
  80%, 100% {
    opacity: 0;
  }
}
@-webkit-keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}
@keyframes pulse-dot {
  0% {
    transform: scale(0.8);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.8);
  }
}.inv0 {
    background: #f9c2c2ba !important;
}
