

/* 01 Alerts */
/* 01.1 Alerts Style Page Headers */


/* 01 Alerts */
.wp-alert-container {
  padding: 15px;
  display: flex;
  align-items: center;
}

.wp-alert-container .fa-exclamation-square::before {
  text-shadow: 1px 1px 5px #0202021a;
}

.wp-alert-button {
  padding: 10px 15px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #455964;
  height: 100%;
  max-width: 180px;
  color: #ffffff;
  font-size: 13px;
  margin-left: auto;
  font-family: 'metropolissemi_bold';
  text-align: center;
}

.alert-stripe {
  background: repeating-linear-gradient( 
45deg, #ffa72675, #ffa7268a 10px, #fdb03b7a 10px, #fdb03b5e 20px)!important;
}

.wp-address-alert {
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #455964;
  color: #ffffff;
}

.wp-alert-button:hover {
  background: #7b8388;
}

.wp-alert-warning {
  background: #ffa000c4;
  border: solid 1px #ffc107b0;
  border-radius: 8px;
}

.wp-alert-title {
  font-size: 17px;
  font-family: 'metropolissemi_bold';
  color: #455964;
}

.wp-alert-content {
  font-size: 12px;
  font-family: 'metropolisregular';
  color: #455964;
}

.alert-card {
  background: linear-gradient(to bottom, #F44336, #F4511E)!important;
  /* border-left: 5px solid #BF360C!important; */
  border-radius:8px;
}

.alert-background {
  background: linear-gradient(to bottom, #F44336, #F4511E)!important;
  transition: all 0.4s ease;
}

.info-card {
  background: #00B4DB;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #0083B0, #00B4DB); 
  background: linear-gradient(to bottom, #0083B0, #00B4DB);
  border-left: 5px solid #00678a!important;
}
.alert-fade {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation-delay: 0.25s;
  padding: 2px 7px 2px 7px;
  border-radius: 4px;
}
.name-fade {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation-delay: 0.25s;
}

.value-fade {
  -webkit-animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation-delay: 0s; 
  display: block!important;
}

.text-fade span {
  -webkit-animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation: fade-in 0.5s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  animation-delay: 0.4s;
}

.alert-warning {
  border-radius: 10px;
  border: none;
}

.dynamic-alert-error {
  padding: 10px;
  font-family: 'metropolissemi_bold';
  font-size: 12px;
  background: #fa7070;
  border-radius: 15px;
  border: 2px solid #fc5454;
  display: flex;
  align-items: center;
}

.dynamic-alert-warning {
  padding: 15px;
  font-family: 'metropolissemi_bold';
  font-size: 12px;
  background: #ffa000a6;
  border-radius: 15px;
  border: 1px solid #ffc107;
  display: flex;
  align-items: center;
}

.dynamic-alert-info {
  padding: 15px;
  font-family: 'metropolissemi_bold';
  font-size: 12px;
  background: #ffa000a6;
  border-radius: 15px;
  border: 1px solid #ffc107;
  display: flex;
  align-items: center;
}

/* 01 Page Loaders */
.page-loading {
  /* background: linear-gradient(167deg, rgba(27,25,27,1) 0%, rgba(56,60,63,1) 100%)!important; */
  background: linear-gradient(140deg, rgb(174, 188, 197) 0%, #cad9e2 100%)!important;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
}
.page-loading-desktop {
  background: #a0b1ba!important;
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 10000;
}

.loading-searchbar-icon {
  color: #607d8b;
    position: absolute;
    right: 0;
    top: 0;
    padding: 15px;
}

.login-dropdowns {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items:center;
}

@media (max-width: 430px)  {
  .login-dropdowns {
    position: relative;
    display: flex;
    flex-direction: column;
  }
}

.logo-loader {
  animation: fade-in 2s 0.2s ease both;
  width: 100%;
  position: relative;
  height: 55px;
}

.logo-loader.light {
  background: url(/assets/img/WolfPak_long.svg) no-repeat;
}

.logo-loader.dark {
  background: url(/assets/img/WolfPak_long_blue.svg) no-repeat;
}

.logo-loader-page-switch {
  width:200px!important;
}

.show-spinner-qty::after{
  content: "  ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #00678a;
  border-radius: 50%;
  border-top-color: #00b4db;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}
/* Spinner */
.show-spinner-body::after{
  content: "  ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #00678a;
  border-radius: 50%;
  border-top-color: #00b4db;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}
.loading-orders {
  display: inline-block;
  position: fixed;
  left: calc(50% - 45px);
  top: calc(50% + 30px);
  z-index: 1;
}

.login-background {
  width: 100%;
  height: 120vh;
  background: linear-gradient(to bottom right, #a2b9c5, #e2ebf0)!important;
  position: absolute;
  animation: fade-in 1.3s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  z-index: -2;
}

.login-background-overlay {
  background-image: url(/assets/img/overlay.png);
  width: 100%;
  height: 100%;
  top: 0;
  position: fixed;
  z-index: -1;
  opacity: 70%;
}

.desktop-background {
  /* background: #c6d5dd!important */
  background: #d8e3e9!important
}

.default-background {
  background: #d8e9f5;
} 


@media (max-width: 450px) {
  .default-background {
    background: #0d2c36;
  } 
}

.default-background-admin {
  background: #0d2c36;
}

.forgot-pass {
  color: #607d8b;
  font-size: 10px;
  font-family: 'metropolislight'!important;
  padding: 0px;
  text-align: right;
  cursor: pointer;
}
.back-to-login {
  color: #607d8b;
  font-size: 10px;
  font-family: 'metropolislight'!important;
  padding: 0px;
  text-align: left;
  cursor: pointer;
}
.organisation-tag {
  position: fixed;
  top: 0;
  right: 0;
  margin: 20px;
  font-family: 'metropolissemi_bold';
  padding: 9px 13px;
  border-radius: 8px;
  background-color: #37474f;
  display:none;
  min-height: 37px;
  transition: all 1s ease-in-out;
  user-select: none;
}

th, td { white-space: nowrap;
}

/* To be depreciated */
#focus-overlay {
  height: 100%;
  position: absolute;
  background-color: #242223d1;
  width: 100%;
  z-index: 100000;
  transition: 0.4s ease-in-out
}


.warn-card {
  background: linear-gradient(to bottom, #EF6C00, #F57C00)!important;
  border-left: 5px solid #cf4f00!important;
}
.pulsate-fwd {
	-webkit-animation: pulsate-fwd 2s ease-in-out 3s infinite both;
	        animation: pulsate-fwd 2s ease-in-out 3s infinite both;
}

 @-webkit-keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

.root-button {
  background: #ffffff!important;
}

.root-button.fw {
  min-width: 100%!important;
}

.pulsate-fwd-orange {
	-webkit-animation: pulsate-fwd-orange 2s ease-in-out 3s infinite both;
          animation: pulsate-fwd-orange 2s ease-in-out 3s infinite both;
          transition: all 0.2s ease-in-out;
}

 @-webkit-keyframes pulsate-fwd-orange {
  0% {
    color: #ff9800; 
    -webkit-transform: scale(1);
            transform: scale(1);      
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    color: #ffffff; 
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd-orange {
  0% {
    color: #ff9800; 
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
  100% {
    color: #ffffff; 
    -webkit-transform: scale(1);
            transform: scale(1);

  }
}


.pulsate-fwd-alert-orange {
	-webkit-animation: pulsate-fwd-orange2s ease-in-out 2s infinite both;
          animation: pulsate-fwd-orange 2s ease-in-out 2s infinite both;
          transition: all 0.2s ease-in-out;
}

 @-webkit-keyframes pulsate-fwd-orange {
  0% {
    color: #ff9800; 
    -webkit-transform: scale(1);
            transform: scale(1);      
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    color: #ffffff; 
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-fwd-orange {
  0% {
    color: #ff9800; 
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    color: #ffffff; 
    -webkit-transform: scale(1);
            transform: scale(1);

  }
}

.heartbeat {
  background: #ffa726!important;
	-webkit-animation: heartbeat 1.5s ease-in-out 5s 3 both;
	        animation: heartbeat 1.5s ease-in-out 5s 3 both;
}

.heartbeat span {
  color: #37474f;
}

@-webkit-keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}
@keyframes heartbeat {
  from {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: center center;
            transform-origin: center center;
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  10% {
    -webkit-transform: scale(0.91);
            transform: scale(0.91);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  17% {
    -webkit-transform: scale(0.98);
            transform: scale(0.98);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  33% {
    -webkit-transform: scale(0.87);
            transform: scale(0.87);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  45% {
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
}

.brand-color {
  color:#00b4db;
}

.badge-wp {
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
}

.badge-wp-header {
  background: #3e474c;
  padding: 5px 15px;
  border-radius: 9px;
  font-family: 'metropolisregular';
  line-height: 30px;
  font-size: 15px;
}

.pick-ref-wp-header {
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
  padding: 5px 15px;
    border-radius: 9px;
    font-family: 'metropolisbold';
    line-height: 30px;
    font-size: 15px;
}
@media (min-width: 435px)  {
  .desktop-pick-width {
    width: 400px!important;
  }
}

.badge-order-number{
  color: #6d7379!important;
  font-family: 'metropolisbold';
  font-size: 17px;
}

.badge-updated-order-number{
  color: #959da5!important;
  font-family: 'metropolisregular';
  font-size: 15px;
}

.badge-title {
  color: white;
  background: #9e9e9e78;
  font-size: 15px;
  padding: 5px 10px;
  border-radius: 8px;
}

.badge {
  font-weight: 300!important;
}

.pick-back-button-parent {
  transition: all 0.2s ease-in-out
}

.pick-back-button {
  background-color: #607d8b4f;
  font-size: 14px;
  height: 55px;
  font-family: 'metropolisregular';
  width: 100%;
  color: #455b64;
  border-radius: 15px;
  border: none;
  transition: width 1s ease-in-out;
}

.clip-text {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 180px;
}

.clip-text-large {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 280px;
}

@media (max-width: 430px)  {
  .clip-text {
    max-width: 230px!important;
  }  
}

.clip-text-small {
  white-space: break-spaces;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 140px;
}

.gen-table-title {
  color: #434c50;
    font-family: 'metropolissemi_bold';
    font-size: 15px;
}

.pick-order-button {
  background-color: #8bc34a;
  font-size: 14px;
  height: 55px;
  font-family: 'metropolisbold';
  width: 100%;
  color: #ffffff;
  border-radius: 15px;
  border: none;
}

.desktop-pick-outer {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.8);
}

.full-screen-overlay {
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.4);
}

@media (min-width: 435px) {
  .picking-desktop {
    width: 30vw;
  }
}

.view-order-button {
  background-color: #99abb6;
  color: #ffffff;
  border: none;
  height: 20px;
  font-size: 11px!important;
  border-radius: 8px!important;
  font-family: metropolisregular!important;
}

.product-listed-name{
  color: #959da5!important;
  font-family: 'metropolisregular';
  font-size: 15px;
}

.product-line-qty-approve {
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
  padding: 3px 10px;
  border-radius: 9px;
  font-family: 'metropolisbold';
  line-height: 27px;
  font-size: 12px;
  color:#ffffff
}

.awaiting-invoice-header {
    display: inline-grid;
    position: absolute;
    right: 0;
    top: 0;
    padding: 3rem !important;
}

.awaiting-invoice-text-header {
  font-size: 25px;
  font-family: 'metropolisbold';
  text-align: right;
  color: #323538!important;
  border: solid;
  padding: 5px 10px;
  border-radius: 10px;
  margin-bottom: 10px;
  line-height: 30px;
}

.pl-15 {
padding-left: 15px;
}

.pr-15 {
  padding-right: 15px;
}

.btn-backorder {
  background: #fa7071 !important;
}

.wp-modal-btn {
  background-color: rgb(96, 125, 139);
}

.btn-primary {
  background-color: #00B4DB!important;
  border-color: #00B4DB!important;
  color: #ffffff!important;
}
@media (max-width: 770px) {
  .alert-login-container {
    display: none;  } }

.center-div {
  margin: 0 auto;
}
.slide-fwd-center {
	-webkit-animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
	        animation: slide-fwd-center 0.45s cubic-bezier(0.250, 0.460, 0.450, 0.940) 2s both;
}
@-webkit-keyframes slide-fwd-center {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(160px);
            transform: translateZ(160px);
  }
}
@keyframes slide-fwd-center {
  0% {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  100% {
    -webkit-transform: translateZ(160px);
            transform: translateZ(160px);
  }
}

.auth-card .form-side {
  padding: 80px 20px 80px 20px!important;
}

.credits img:first-child {
  max-height: 25px;
}

@media (max-width: 767px) {
  .credits img:first-child {
    max-height: 25px;  } }


@media (min-width: 1440px) {
  .login-box {
    width: 30%;
    margin: 0 auto; } }

@media (max-width: 1100px) {
  .login-box {
    width: 40%;
    margin: 0 auto;  } }
@media (max-width: 1024px) {
  .login-box {
    width: 40%;
    margin: 0 auto;  } }
@media (max-width: 767px) {
  .login-box {
    width: 90%;
    margin-top: -50px;  } }

.login-box {
  background-color:#232223c4;
  opacity: 0%;
  animation: alertwelcome 1s ease-in-out 1 forwards;
  animation-delay: 0.5s;
  box-shadow: 0 1px 25px rgba(0, 0, 0, 0.25), 0 1px 10px rgba(0, 0, 0, 0.1);
}

.card-locked .pack-overlay {
  background: #ff98009e;
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: inherit;
  pointer-events: none
}

.progress-banner {
  background: linear-gradient(to right bottom, #0083B0, #00B4DB)!important;
  width: 400px;
  height:400px;
}

.pack-card {
  background: linear-gradient(to right bottom, #0083B0, #00B4DB)!important;
  height: 200px;
  transition: 0.4s ease-in-out
}

.mobile-pack-list {
  background: #d8e9f5;
  padding: 15px;
  border-radius: 0px;
  border-bottom: 1px solid #cadae2;
}

@media (max-width: 430px) {
  .pack-card-mobile {
    height: 110px!important;
  }
}

.pack-card-animate {
  width: 100vw;
  opacity: 1;
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  display: inline-table!important;
}

.pack-card-animate[data-urgent="true"] .mobile-pack-list {
  background-color: #ffc062!important;
}

.revealButtonLeft {
  position: absolute;
  top: 0;
  left: -100px;
  width: 100px;
  height: 100%;
  background-color: #35B4DB;
  color: #ffffff;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.revealButtonLeft a {
  height: 100%;
  align-content: center;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.revealButtonRight a {
  height: 100%;
  align-content: center;
  color: #ffffff;
  width: 100%;
  text-align: center;
}

.revealButtonLeft.show-left {
  transform: translateX(100%);
}

.revealButtonRight {
  position: absolute;
  top: 0;
  right: -100px;
  width: 100px;
  height: 100%;
  background-color: #fa7070;
  color: #ffffff;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.revealButtonRight a {
  height: 100%;
  align-content: center;
  color: #ffffff;
}

.revealButtonRight.show-right {
  transform: translateX(-100%);
}

.moveElement {
  transition: transform 0.3s ease;
}

.moveElement.show-left {
  transform: translateX(-100px); /* Move to the right side */
}
.moveElement.show-right {
  transform: translateX(100px); /* Move to the right side */
}

.pack-content {
  padding: 10px;
}

.progress-banner .lead {
  font-family: 'metropolissemi_bold';
}

.progress-banner .lead {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.text-white {
  color: #ffffff !important;
}

@media (min-width: 435px) {
  .hide-mobile {
    display:none!important;
  }
}
@media (max-width: 550px) {
  .hide-half-desktop {
    display:none!important;
  }
}
@media (max-width: 430px) {
  .hide-desktop {
    display:none!important;
  }
}
@media (max-width: 1024px) {
  .hide-tablet {
    display:none!important;
  }
}

@media (min-width: 1025px) {
  .show-tablet-only {
    display:none!important;
  }
}

@media (max-width: 430px) {
  .delivery-descriptions {
    width: 180px;
  }
}

.desktop-shadow {
    -webkit-box-shadow: 0 2rem 5rem rgba(0,0,0,0.4) !important;
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.3) !important;
    transition: 0.4s ease-in-out
}

.desktop-shadow:hover {
  -webkit-box-shadow: 0 2rem 5rem #2b3338 !important;
  box-shadow: 0 4rem 5rem #2b3338 !important;
  transition: 0.2s ease-in-out;
}

.card-blue {
  background: #25809c;
  transition: 0.s ease-in-out

}

.card-urgent {
  background: linear-gradient(to right bottom, #ffa920, #fb8c00)!important;
  transition: 0.4s ease-in-out;

}

.pack-card-shadow {
  -webkit-box-shadow: 0 1rem 3rem rgba(0,0,0,0.4) !important;
  box-shadow: 0 1rem 3rem rgba(0,0,0,0.4) !important;
  transition: 0.4s ease-in-out
}

.pack-card-shadow:hover {
  box-shadow: 0 0.2rem 2rem #2b3338 !important;
box-shadow: 0 0.2rem 2rem #2b3338 !important;
-webkit-transition: all 0.3s ease-in-out;
-o-transition: all 0.3s ease-in-out;
transition: all 0.3s ease-in-out;
}

.approve-card-shadow:hover {
box-shadow: 0 0.2rem 2rem #2b3338 !important;
box-shadow: 0 0.2rem 2rem #2b3338 !important;
transition: 0.2s ease-in-out;
opacity:80%;
}

.pack-card-customer {
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-family:'metropolisbold';
  font-size: 10px;
  text-transform: uppercase;
}


@media (max-width: 425px) {
  .pick-card-picker-round {
    position: absolute;
    right: 0px;
    top: 0;
    padding: 0.5rem;
    background: #455A64;
    border-radius: 200px 200px 50px 200px;
    font-size: 10px;
    line-height: 12px;
    margin-top: 10px;
    font-family: 'metropolissemi_bold';
    color: #ffffff;
    margin-right: 13px;
  }
}
@media (min-width: 426px) {
  .pick-card-picker-round {
    position: absolute;
    right: 0px;
    top: 0;
    padding: 0.5rem;
    background: #455A64;
    border-radius: 200px;
    font-size: 10px;
    line-height: 12px;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'metropolissemi_bold';
    color: #ffffff;
  }
}

@media (min-width: 426px) {
  .has-notes-badge {
    position: absolute;
    right: 0px;
    padding: 0.5rem;
    border-radius: 200px;
    font-size: 17px;
    line-height: 12px;
    margin-right: 10px;
    margin-top: 10px;
  }
}


@media (max-width: 425px) {
  .has-notes-badge {
    position: absolute;
    right: 0px;
    padding: 0.5rem;
    border-radius: 200px;
    font-size: 17px;
    line-height: 12px;
    margin-right: 10px;
    margin-top: 20px;
  }
}


@media (min-width: 990px) {
  .pick-ref-no {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    font-size: 50px;
    line-height: 35px;
    font-family: metropolisextra_bold;
    color: #ffffff;
    opacity: 20%;
  }
}
@media (max-width: 990px) {
  .pick-ref-no {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 60px;
  line-height: 45px;
  font-family: metropolisextra_bold;
  color:#ffffff;
  opacity: 20%;
  }
}

@media (max-width: 425px) {
  .pick-ref-no {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 50px;
  line-height: 30px;
  font-family: metropolisextra_bold;
  color:#ffffff;
  opacity: 20%;
  }
}

@media (min-width: 1440px) {
  .pick-ref-no {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    font-size: 60px;
    line-height: 45px;
    font-family: metropolisextra_bold;
    color: #ffffff;
    opacity: 20%;
  }
}

@media (min-width: 1800px) {
  .pick-ref-no {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 90px;
  line-height: 70px;
  font-family: metropolisextra_bold;
  color:#ffffff;
  opacity: 20%;
  }
}

@media (min-width: 990px) {
  .pick-ref-no-approve {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    font-size: 30px;
    line-height: 35px;
    font-family: metropolisextra_bold;
    color: #27a5db;
  }
}
@media (max-width: 990px) {
  .pick-ref-no-approve {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 50px;
  line-height: 45px;
  font-family: metropolisextra_bold;
  color:#27a5db;
  }
}

@media (max-width: 425px) {
  .pick-ref-no-approve {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 30px;
  line-height: 30px;
  font-family: metropolisextra_bold;
  color:#27a5db;
  }
}

@media (min-width: 1440px) {
  .pick-ref-no-approve {
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 10px;
    font-size: 50px;
    line-height: 45px;
    font-family: metropolisextra_bold;
    color: #27a5db;
  }
}

@media (min-width: 1800px) {
  .pick-ref-no-approve {
  position: absolute;
  bottom: 0;
  right: 0;
  padding: 10px;
  font-size: 80px;
  line-height: 70px;
  font-family: metropolisextra_bold;
  color:#27a5db;
  }
}

.pick-card-urgent {
  position: absolute;
  right: 0px;
  padding-right: 20px;
  background: #ff9800!important;
  border-radius: 200px 0px 0px 200px;
  font-size: 10px;
  line-height: 12px;
  margin-top: 30px;
  font-family: 'metropolissemi_bold';
  color: #ffffff!important;
}

@media (min-width: 991px) {
  .desktop-margin {
    margin-left: 100px;
    margin-right: 50px;
    padding-top: 30px;
  }
}

.time-header {
  font-family: 'metropolissemi_bold';
  font-size:50px;
}
.welcome-header {
  font-family: 'metropolissemi_bold';
  font-size:18px;
  min-height:28px;
}
.wp-index-right-col > .row {
  margin-right: unset!important;
}

.wp-index-right-col > .row ~ .row{
  margin-right: -15px;
}
.graph-title {
  position: absolute;
  right: 20px;
  padding: 25px 5px 25px 25px;
  top: 20px;
  font-family: 'metropolissemi_bold';
}

.load-quote {
  animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  width: 100%;
  top: 45%;
  position: absolute;
  text-align: center;
  font-family: 'metropolissemi_bold';
  color: #455a64a8;
}

#login .load-quote {
  animation: fade-in 1s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  text-align: center;
  color: #455A64;
  font-size: 12px;
  font-family: 'metropolislight'!important;
  width: unset;
  top: unset;
  position: unset;
}

.login-subtitle {
  text-align: center;
  color: #455A64;
  font-size: 16px;
  font-family: 'metropolissemi_bold';
}

.login-links {
  position: fixed;
  bottom: 0;
  color: #455A64;
  z-index: 99999999;
  padding: 30px;
  right: 0;
}

@media (min-width: 991px) {
  .login-subtitle {
    top: 40%;
  }
}

@media (max-width: 1024px) {
  #searchDatatableOrders::placeholder {
    font-size:12px!important;
  }
}

@media (max-width: 1024px) {
  #searchDatatable::placeholder {
    font-size:12px!important;
  }
}

#password::placeholder {
  color: #607d8b9c;
}

@media (max-width: 1024px) {
  .tablet-header {
    font-size:13px!important;
  }
}

#user-input-desktop::placeholder {
  color: #607d8b9c;
}

.login-close-button {
  text-align: right;
  padding: 5px 15px;
  border-left: 1px solid #d7dfe2;
  position: absolute;
    margin-left: -30px;
}

.search-title-page {
  top: 105px;
  position: absolute;
  padding: 30px;
  font-family: 'metropolisbold';
  font-size: 20px;
  text-align: center;
  width: 100%;
}

.mobile-search-overlay {
  position: fixed;
  height: 100%;
  width: 100%;
  background: #2632389c;
  z-index: 9998;
}

.index-card-animate:hover {
  transform: rotate3d(-30, 30, 0, -15deg);
}


@font-face {
  font-family: Cocogoose;
  src: "/assets/font/cocogoose/Cocogoose Pro.ttf";
}
@font-face {
  font-family: Cocogoose-semilight;
  src: "/assets/font/cocogoose/Cocogoose Pro Semilight.ttf";
}


@font-face {
  font-family: UniSansHeavy;
  src: url(/assets/font/uni-sans/UniSansHeavy.otf);
}

@font-face {
  font-family: UniSansLight;
  src: url(/assets/font/uni-sans/UniSansThin.otf);
}

@font-face {
  font-family: 'metropolisblack';
  src: url('/assets/font/metropolis/metropolis-black-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-black-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'metropolisblack_italic';
  src: url('/assets/font/metropolis/metropolis-blackitalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-blackitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisbold';
  src: url('/assets/font/metropolis/metropolis-bold-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-bold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisbold_italic';
  src: url('/assets/font/metropolis/metropolis-bolditalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-bolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisextra_bold';
  src: url('/assets/font/metropolis/metropolis-extrabold-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-extrabold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisextra_bold_italic';
  src: url('/assets/font/metropolis/metropolis-extrabolditalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-extrabolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisextra_light';
  src: url('/assets/font/metropolis/metropolis-extralight-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-extralight-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisextra_light_italic';
  src: url('/assets/font/metropolis/metropolis-extralightitalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-extralightitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolislight';
  src: url('/assets/font/metropolis/metropolis-light-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-light-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolislight_italic';
  src: url('/assets/font/metropolis/metropolis-lightitalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-lightitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolismedium';
  src: url('/assets/font/metropolis/metropolis-medium-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-medium-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolismedium_italic';
  src: url('/assets/font/metropolis/metropolis-mediumitalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-mediumitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}
@font-face {
  font-family: 'metropolisregular';
  src: url('/assets/font/metropolis/metropolis-regular-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-regular-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: fallback;
}

@font-face {
  font-family: 'metropolisregular_italic';
  src: url('/assets/font/metropolis/metropolis-regularitalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-regularitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolissemi_bold';
  src: url('/assets/font/metropolis/metropolis-semibold-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-semibold-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolissemi_bold_italic';
  src: url('/assets/font/metropolis/metropolis-semibolditalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-semibolditalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisthin';
  src: url('/assets/font/metropolis/metropolis-thin-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-thin-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}

@font-face {
  font-family: 'metropolisthin_italic';
  src: url('/assets/font/metropolis/metropolis-thinitalic-webfont.woff2') format('woff2'),
       url('/assets/font/metropolis/metropolis-thinitalic-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;

}



.time-since-order {
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  float:right;

}

.moa {
  margin: 0 auto;
}

.no-pad {
  padding:0px;
}


.customer-name-orders {
  font-size: 10px;
  border: 1px solid white;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 70%;
}



.show-spinner-qty::after{
  content: "  ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #00678a;
  border-radius: 50%;
  border-top-color: #00b4db;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

.qty-loading {
  background: #607d8bd4;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1050;
}

.wp-banner-logo {
  background-image: url(/assets/img/WolfPak_head_white.svg);
  height: 45px;
  background-repeat: no-repeat;
  padding: 20px 10px 20px 10px;
  margin: 0 auto;
  width: 70px;
  margin-top: 10px;
  margin-left: 13px;
  margin-bottom:20px;
}

.loading-orders {
  display: inline-block;
  position: fixed;
  left: calc(50% - 45px);
  top: calc(50% + 30px);
  z-index: 1;
}

.text-blue {
  color: #00B4DB;
}

.under-menu {
  padding-top: 11vh; 
}

@keyframes slidedown {
  from {top: -200px;}
  to {top: 0px;}
}

@keyframes slideuplogin {
  from {top: 0px;}
  to {top: -400px;}
}

.slideup {
  -webkit-animation: slideuplogin 0.5s 1; /* Safari 4.0 - 8.0 */
  animation: slideuplogin 0.5s 1 ease-in-out;
  top:-400;
}

.slide-out-top {
	-webkit-animation: slide-out-top 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) both;
	        animation: slide-out-top 1s cubic-bezier(0.860, 0.000, 0.070, 1.000) both;
}

@-webkit-keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-top {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  30% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
}


@media (max-width: 768px) {
  .slide-in-bottom {
    -webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both!important;
	        animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both!important;
  } }

@media (max-width: 768px) {
    .slide-out-bottom {
      -webkit-animation: slide-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both!important;
      animation: slide-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both!important;
    } }

.slide-out-right {
	-webkit-animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}
.slide-in-right {
	-webkit-animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-right 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-bottom {
	-webkit-animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-bottom 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-in-bottom-slow {
	-webkit-animation: slide-in-bottom-slow 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
	        animation: slide-in-bottom-slow 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

.slide-in-right-slow {
          animation: slide-in-right 1.5s ease-in-out 0.5s both, pulsate-fwd 2s ease-in-out 3s infinite both;
          
}

.slide-out-bottom {
	-webkit-animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-right 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
}

.slide-out-bottom-alert {
	-webkit-animation: slide-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
	        animation: slide-out-bottom 0.5s cubic-bezier(0.550, 0.085, 0.680, 0.530) both;
          display: block!important;
}

@-webkit-keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-right {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
}


@-webkit-keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-right {
  0% {
    -webkit-transform: translateX(1000px);
            transform: translateX(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


@-webkit-keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}
@keyframes slide-out-bottom {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
}


@-webkit-keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-bottom {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-in-bottom-slow {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  70% {
    opacity: 0%;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 100%;
  }
}
@keyframes slide-in-bottom-slow {
  0% {
    -webkit-transform: translateY(1000px);
            transform: translateY(1000px);
    opacity: 0;
  }
  70% {
    opacity: 0%;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 100%;
  }
}


@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}


.slide-in-left {
	-webkit-animation: slide-in-left 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
	        animation: slide-in-left 0.4s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}

.slide-in-left-slow {
	-webkit-animation: slide-in-left 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
	        animation: slide-in-left 1s cubic-bezier(0.645, 0.045, 0.355, 1.000) both;
}


.gradient-blue {
  background: #00B4DB;  /* fallback for old browsers */
  background: -webkit-linear-gradient(to bottom, #0083B0, #00B4DB);  /* Chrome 10-25, Safari 5.1-6 */
  background: linear-gradient(to bottom, #0083B0, #00B4DB); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
}

.admin-menu-container {
  min-height: 90vh;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
    -webkit-box-shadow: 0px 6px 16px -10px rgba(0,0,0,0.78);
    -moz-box-shadow: 0px 6px 16px -10px rgba(0,0,0,0.78);
    box-shadow: 0px 6px 30px -10px rgba(0,0,0,0.78);
    position :relative;
  -webkit-animation: slidedown 1s 1; /* Safari 4.0 - 8.0 */
  animation: slidedown 1s 1;
}

.admin-menu-container-fh {
  min-height: 100vh;
  position :relative;
}

@media (max-width: 430px) {
  .admin-menu-container-fh {
    background: #33383c;
  }
}


.admin-menu-container-fh-na {
  min-height: 100vh;
  position :relative;
}

@media (min-width: 1440px) {
  .admin-menu-container-fh {
    padding-top: 100px; } }
@media (max-width: 1439px) {
  .admin-menu-container-fh {
    padding-top: 90px; } }
@media (max-width: 1199px) {
  .admin-menu-container-fh {
    padding-top: 80px; } }
@media (max-width: 1024px) {
  .admin-menu-container-fh {
    padding-top: 80px; } }
@media (max-width: 767px) {
  .admin-menu-container-fh {
    padding-top: 70px; } }

    @media (min-width: 1440px) {
      .admin-menu-container-fh-na {
        padding-top: 100px; } }
    @media (max-width: 1439px) {
      .admin-menu-container-fh-na {
        padding-top: 90px; } }
    @media (max-width: 1199px) {
      .admin-menu-container-fh-na {
        padding-top: 80px; } }
    @media (max-width: 1024px) {
      .admin-menu-container-fh-na {
        padding-top: 80px; } }
    @media (max-width: 767px) {
      .admin-menu-container-fh-na {
        padding-top: 70px; } }

        @media (min-width: 1440px) {
          .admin-menu-container-fs {
            padding-top: 100px; } }
        @media (max-width: 1439px) {
          .admin-menu-container-fs {
            padding-top: 90px; } }
        @media (max-width: 1199px) {
          .admin-menu-container-fs {
            padding-top: 80px; } }
        @media (max-width: 1024px) {
          .admin-menu-container-fs {
            padding-top: 80px; } }
        @media (max-width: 767px) {
          .admin-menu-container-fs {
            padding-top: 70px; } }


.gradient-back {
background: rgb(27,25,27);
background: linear-gradient(167deg, rgba(27,25,27,1) 0%, rgba(56,60,63,1) 100%);
}

.grey-back {
  background: #34383b;
}


.navbar-center {
  position: absolute;
  left: 50%;
  transform: translatex(-50%);
}

@media (max-width: 767px) {
  .alert-login-animate {
    display: none; } }

 @-webkit-keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}



@keyframes alertwelcome {
  0% {
    clip-path: circle(0% at 70% 50%);
    opacity: 0%;
  }
  100% {
    clip-path: circle(75%);
    opacity: 100%;
  }
}


@keyframes alerterror {
  0% {
    clip-path: circle(0% at 70% 50%);
    opacity: 0%;
  }
  100% {
    clip-path: circle(75%);
    opacity: 100%;
  }
}

@-webkit-keyframes bounce {
  0% {
    top: 0;
    animation-timing-function: ease-out;
  }
  17% {
    top: 15px;
    animation-timing-function: ease-in;
  }
  34% {
    top: 0;
    animation-timing-function: ease-out;
  }
  51% {
    top: 8px;
    animation-timing-function: ease-in;
  }
  68% {
    top: 0px;
    animation-timing-function: ease-out;
  }
  85% {
    top: 3px;
    animation-timing-function: ease-in;
  }
  100% {
    top: 0;
  }
}


.hover-bounce-right { 
  position: relative;
}

.hover-bounce-right.animated { 
  -moz-animation: bounce-right 1s;
  -webkit-animation: bounce-right 1s;
  animation: bounce-right 1s;
}

.bounce-right {
	-webkit-animation: bounce-right 1s ease-in both;
	        animation: bounce-right 1s ease-in both;
}

@-webkit-keyframes bounce-right {
  0% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

@keyframes bounce-right {
  0% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
    opacity: 1;
  }
  24% {
    opacity: 1;
  }
  40% {
    -webkit-transform: translateX(6px);
            transform: translateX(6px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  65% {
    -webkit-transform: translateX(2px);
            transform: translateX(2px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  82% {
    -webkit-transform: translateX(1px);
            transform: translateX(1px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  93% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-animation-timing-function: ease-in;
            animation-timing-function: ease-in;
  }
  25%,
  55%,
  75%,
  87%,
  98% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
  }
  100% {
    -webkit-transform: translateX(0px);
            transform: translateX(0px);
    -webkit-animation-timing-function: ease-out;
            animation-timing-function: ease-out;
    opacity: 1;
  }
}

.urgent-number {
  color: #ff9800!important;
  }


.hide {
  display: none;
}

.card-light {
  background:#333333;
}


.card-green {
  background: #8bc34a!important;
  transition: all 1s ease-in-out!important;
}

.icon-green {
  color: #8bc34a!important;
}

.default-tag {
  background: #ffffff;
  padding: 2px 5px;
  border-radius: 8px;
  font-family: 'metropolisbold';
  margin-left: 5px;
  font-size: 10px;
}

.icon-dark-green {
  color: #1b5e20;
}

.icon-red {
  color: #FF5722!important;
}

.icon-grey {
  color: #607d8b;
}
.icon-light-grey {
  color: #607d8b70;
}

.card-light-index {
  background:#607d8b;
}

.inline {
  display: inline-block;
}

.w-100 {
  width: 100%;
}

.fr {
  float: right;
}

.btn-success {
  color: #ffffff!important;
}

.btn-waiting {
  background-color: #ffa726;
  border-color: #ffa726;
  color: #ffffff!important;
}

.password-rule.passed {
  color: #dedede!important;
  transition: all 0.5s ease-in-out!important;
}

body {
  color: #ffffff!important;
}

.plus-minus-input {
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  align-items: center;
  display: inline-block;
}
.quantity-selector-card {
  padding: 0px 0px 20px 0px;
  text-align: center;
  width: 100%;
  margin: 0 auto;
}

.tag-card {
  background: #607d8b!important;
}

.restricted-card {
  background-color: #fa7070!important;
}

.wholesale-card {
  background-color: #2a84aa!important;
}

.btn-green {
  border: solid 1px #8bc34a9e;
  background: #8bc34a9e!important;
}

.wp-input-pass {
  padding: 5px 15px;
  border-left: 1px solid #d7dfe2;
}

.plus-minus-input .input-group-field {
  text-align: center;
  margin-left: 0.5rem;
  margin-right: 0.5rem;
  padding: 1rem;
  width: 70px;
  color: #ffffff;
  background-color: #232223;
}

.input-group-text {
  background-color: rgba(35, 34, 35, 0.1);
  border: none;
  color: #454545;
  font-size: 0.8rem;
  padding: 0.5rem 0.75rem 0.5rem 0.75rem;
  line-height: 1 !important;
  border-top-right-radius: 5px!important;
  border-bottom-right-radius: 5px!important;
}

.input-group-buttons {
  align-items: center;
  display: inline-block;
}

.plus-minus-input .input-group-field::-webkit-inner-spin-button,
.plus-minus-input .input-group-field ::-webkit-outer-spin-button {
  -webkit-appearance: none;
          appearance: none;
}

.plus-minus-input .input-group-button .circle {
  border-radius: 50%;
  padding: 0.25em 0.8em;
}

.btn-circle-qty {
  border-radius: 5px;
  height: 5rem;
  width: 5rem;
  font-size: 1rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border: 1px solid #4caf50;
  background-color: #232223;
  color: #4caf50;
}

.inactive-po-field {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: #545454;
  margin-left: 10px;
}

.pulled-weight-automatically::after {
  content: "\e2ca";
  font-family: 'Font Awesome 6 Pro';
  display: inline-block;
  font-weight: 900;
  color: #00a4c7;
  z-index: 99999999999;
  opacity: 1;
  margin-left: -30px;
  margin-top: 10px;
}


.hidden {
  display:none!important;
}

.name {
  color: #969696;
}

.logo {
  width: 175px;
  height: 50px;
  background: url("/assets/img/WolfPak_long.svg") no-repeat;
  background-position: center center;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .logo {
      width: 80px; } }

.logo-v2 {
  width: 200px;
  height: 100px;
  background: url("/assets/img/WolfPakV2.svg") no-repeat;
  background-position: center center;
  display: block;
  margin: 0 auto; }
  @media (max-width: 767px) {
    .logo {
      width: 140px; } }

.logo-mobile-v2 {
  width: 20px;
  height: 35px;
  background: url("/assets/img/WolfPakV2.svg") no-repeat;
  background-position: center center;
}

.logo-mobile-text {
  width: 20px;
  height: 35px;
  background: url("/assets/img/wolfpak-logo-text.svg") no-repeat;
  background-position: center center;
}

.auth-card .image-side {
  background: url("/assets/img/blue.svg") no-repeat center top;
  background-size: cover;
  padding: 80px 40px; }

  .auth-card .form-side {
    width: 100%;
  }

  .text-align-center {
    text-align: center;
  }


.m0w130 {
  margin: 0 auto;
  width: 130px;
}

.center-form {
  text-align: center;
}

.margin-fix {
  margin: 0!important;
  padding-top: 80px;
}

.margin-fix-login {
  margin: 0!important;
}

.build-version {
  font-size: 11px;
  letter-spacing: 2px;
  color: #ffffff;
  background-color:#00B4DB;
  width: 125px;
  text-align: center;
  margin: 0 auto;
  border-radius: 5px;
  margin-top: -20px;
  margin-bottom: 40px;
  padding-top: 5px;
  padding-bottom: 3px;
}

.mobile-top-swal {
  bottom: unset!important;
  left: 0!important;
  align-items: revert!important;
  justify-content: center!important;
  width: 100%!important;
  margin: 0 auto!important;
}

  body.swal2-toast-shown .swal2-container.swal2-top {
    top: 5%!important;
  }


@media (max-width: 770px) {
  .welcome-message {
    text-align: center;
    font-size: 16px;
    opacity: 1;
  } }

  @media (min-width: 771px) {
    .welcome-message {
      text-align: center;
      font-size: 16px;
      opacity: 1;
    } }

    .welcome-message {
      margin-left: 20px;
      margin-right: 20px;
      text-align:left;
    }


.logo-mobile {
    width: 120px;
    height: 30px;
    background: url("/assets/img/WolfPak_long.svg") no-repeat!important;
    background-position: center center;
}

.logo-mobile-blue-text {
  width: 120px;
  height: 20px;
  background: url("/assets/img/WolfPak_long_blue_text.svg") no-repeat!important;
  background-position: center center;
}

.order-number {
  padding: 6px 10px 6px 10px;
  font-size: 15px;
}

.order-number-dt {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.customer-name-pick {
  text-transform: uppercase;
  font-size: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  background-color: #00B4DB;
  box-shadow: 0 1px 15px rgba(0, 0, 0, 0.14), 0 1px 8px rgba(0, 0, 0, 0.17);
}

.customer-name {
  padding: 4px 6px 2px 6px;
  text-transform: uppercase;
}

.listedorders .swal2-container .swal2-popup.swal2-toast.swal2-show {
width:90%!important;

}

.listedorders .swal2-container {
width:100%;

}

.card-locked .card:active {
  transition: transform calc(var(--toggle) * .15s) ease-in-out;
  animation: swal2-toast-show .5s;
  border: solid 1.5px #ff9800;
}

.card-locked .card {
  border: solid 2px #ff9800;
}

.pulsate-bck {
	-webkit-animation: pulsate-bck 2s ease-in-out infinite both;
	        animation: pulsate-bck 2s ease-in-out infinite both;
}


@-webkit-keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes pulsate-bck {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  50% {
    -webkit-transform: scale(0.95);
            transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}




 @-webkit-keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}
@keyframes shake-horizontal {
  0%,
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70% {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px);
  }
  20%,
  40%,
  60% {
    -webkit-transform: translateX(10px);
            transform: translateX(10px);
  }
  80% {
    -webkit-transform: translateX(8px);
            transform: translateX(8px);
  }
  90% {
    -webkit-transform: translateX(-8px);
            transform: translateX(-8px);
  }
}

.shake-horizontal:active {
	-webkit-animation: shake-horizontal 0.5s linear both;
	        animation: shake-horizontal 0.5s linear both;
}

.shake-horizontal-once {
	-webkit-animation: shake-horizontal 1s ease-in-out both;
	        animation: shake-horizontal 1s ease-in-out both;
}

.swal2-container.swal2-bottom.swal2-fade.swal2-shown {
  width:80%;
}
.keyboard-padding {
  margin-top:10%!important;
}

body.swal2-toast-shown .swal2-container.swal2-top-end, body.swal2-toast-shown .swal2-container.swal2-top-right {
  top: 110px;
  right: 30px;
  bottom: auto;
  left: auto;
}


.lets-get-started {
  top: 45%;
  position:absolute;
  padding-left:15px
}

@media (min-width: 768px) {
  .lets-get-started {
    top: 47vh;
    position: absolute;
    padding-left: 15px;
  } }

  @media (min-width: 1440px) {
    .login-tagline {
    position: absolute;
    margin-top:3px;
    font-family:metropolisblack;
    font-size: 50px!important;
    width: 500px;
    } }
    @media (min-width: 1440px) {
      .lets-get-started {
        padding-left: 100px!important;
      } }
    
    @media (min-width: 1440px) {
      .login-cta {
        margin-top: 80px!important;
        font-size: 17px!important;
      } }

      @media (min-width: 1440px) {
        .login-logo-wp {
          width: 60%!important;
          margin-bottom: 5px;
        } }

  .login-tagline {
    position: absolute;
    margin-top:3px;
    font-family:metropolisblack;
    font-size: 25px;
  }
  @media (max-width: 1024px) {
  #version-logo {
    display:none;
  }
}

  .login-cta {
    font-family: metropolislight;
    margin-top: 40px;
  }

  .pre-login-box {
    background-image: url(/assets/img/login-background.svg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: 70%;
    height: 135%;
    position: fixed;
    left: 0;
    width: 100%;
  }

  .login-page-overlay {
    display:none;
    background: #37474f8c;
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: 10;
  }

  .login-users-list {
    display:none;
    margin-top: 15px;
    background-color: #144c7f;
    width: 100%;
    position: fixed;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 35px 20px 20px 20px;
    bottom: 0;max-height: 95%;
    overflow-y: auto;
  }

  @media (min-width: 768px) {
    .login-users-list {
      display: none;
      margin-top: 15px;
      background-color: #144c7f;
      width: 40%;
      position: fixed;
      border-top-left-radius: 20px;
      padding: 20px 20px 20px 30px;
      right: 0;
      max-height: 95%;
      overflow-y: auto;
      border-bottom-left-radius: 20px;
      border-top-right-radius: 0px;
      bottom: auto;
    } }

    #userslist:before {
      content: " ";
      border-top: solid 2px #ffffff;
      width: 40px;
      height: 5px;
      position: absolute;
      margin: 0 auto;
      text-align: center;
      left: calc(50vw - 20px);
      top: 10px;
      border-radius: 10px;
      opacity: 60%;
    
    }


    #userslist:after {
    content: "YOUR TEAM";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    text-align: center;
    left: calc(50vw - 50px);
    top: 20px;
    border-radius: 10px;
    font-family: 'metropolisbold';
    opacity: 60%;
    font-size: 10px;
    letter-spacing: 1px;
    
    }

    @media (min-width: 768px) {
      #userslist:after {
        border: none;
        content: none;
      } }

    @media (min-width: 768px) {
      #userslist:before {
        border: none;
        content: none;
      } }
      
.slide-in-left {
	-webkit-animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
	        animation: slide-in-left 0.5s cubic-bezier(0.250, 0.460, 0.450, 0.940) both;
}

.slide-out-left {
	-webkit-animation: slide-out-left 0.2s linear both;
	        animation: slide-out-left 0.2s linear both;
}

.slide-out-left-slow {
	-webkit-animation: slide-out-left 1s linear both;
	        animation: slide-out-left 1s linear both;
}

@-webkit-keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slide-in-left {
  0% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@-webkit-keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}
@keyframes slide-out-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: translateX(-1000px);
            transform: translateX(-1000px);
    opacity: 0;
  }
}

.wp-h1 {
  color: #0283b0;
  font-family: 'metropolissemi_bold';
  font-size: 15px;
}

.wp-h1-white {
  color: #ffffff;
  font-family: 'metropolissemi_bold';
  font-size: 20px;
}

.wp-h1-subheading {
  color: #0283b0;
  font-size: 12px;
  font-family: 'metropolisregular'; 
}

.valid {
  border: 1px solid #8BC34A;
}

.valid > span {
  color:#8BC34A
}
.valid > input {
  color:#8BC34A
}

.invalid {
  border: 1px solid #f44336;
}

.invalid > span {
  color:#f44336
}
.invalid > input {
  color:#f44336
}

.valid:after {
  content: "\f058";
  font-family: Font Awesome\ 5 Free;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  position: absolute;
  top: 17px;
  right: -20px;
  height: 100%;
  color: #8BC34A;
}

.invalid:after {
  content: "\f057";
  font-family: Font Awesome\ 5 Free;
  display: inline-block;
  vertical-align: middle;
  font-weight: 900;
  position: absolute;
  top: 17px;
  right: -20px;
  height: 100%;
  color: #f44336;
}

.wp-btn {
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf)!important;
  color: white!important;
  border: none!important;
  font-size: 15px;
}

.shipping-validate {
    margin: 0 auto;
    position: absolute;
    top: 0;
    width:100%;
    height: 100%;
    background-color: #868686d1;
    z-index: 1060;
}

.suggested-address-card {
    width: 100%;
    margin-top: 10px;
    padding: 10px;
    margin: 0 auto;
    background: #37474F;
    border-radius: 10px;
}

.suggested-address-button {
  right: 0;
  position: absolute;
  bottom: 0;
  margin: 15px;
  padding: 5px 9px 5px 9px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #c4dbe7;
  height: 35px;
  max-width: 180px;
  color: #37474f!important;
  font-family: 'metropolisregular';
}

#invalid_address_warning_content {
  font-weight: 100;
}

.success-card {
  background: #8BC34A;
}
.error {
  color: #F44336;
}
.error-address-title {
  color: #F44336;
  font-size: 15px;
  position: absolute;
  top: 0;
  margin-top: -30px;
  left: 0;
}

.sw-main.sw-theme-default2 > ul.step-anchor > li.active > a::before {
  content: " ";
  position: absolute;
  background: #0083B0;
  width: 10%;
  border-radius: 10px;
  height: 5px;
  top: 0;
  transform: translateX(-50%);
  margin-left: 4%;
}

.wp-swal-blue-tick .swal2-success-line-tip{
 background-color:#39addf!important;
}

.wp-swal-blue-tick .swal2-success-line-long{
  background-color:#39addf!important;
 }

.wp-swal-blue-tick .swal2-success-ring {
  border: .25em solid #00B4DB!important;
 }



.form-control, .bootstrap-tagsinput {
  color:#0083B0!important;
  font-weight: 600;
  font-size: 15px;
}


.timepicker .form-control {
  color: #050505!important;
  font-weight: 600;
  font-size: 15px;
}

.sw-main > ul.step-anchor > li.active > a {
  color:#0083B0!important
}

.linecompleted .card-body-pick {
  background-color: #8BC34A!important;
  transition: all 0.2s ease-in-out;
}

.linecompleted {
  -webkit-order: 1; /* Safari 6.1+ */
  order: 1;
}

.flash-line {
  background-color:#8BC34A!important;
  transition: all 0.1s ease-in-out;
}

.flash-line-red {
  background-color:#FF5722!important;
  
}

.pack_complete_shipped {
  background: #37474f;
  height: 100vh;
  top: 0px;
  position: absolute;
  z-index: 10;
}

.urgent-pack-card {
  background-color:#ff9800!important;
}

.add-padding-10-top {
  padding-top: 10px;
}

.line-item-parent-line {
  border-left: solid 1px white!important
}

.index-card-desktop {
  background: linear-gradient(to right bottom, #0083B0, #00B4DB)!important;
  transition: 0.5s;
  background-size: 200% auto;
  cursor: pointer;
}

.orders-searchbox-menu {
  display:none;
}


.pack-violations {
  padding-top:25px!important
}

.show-spinner-body-lines::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #00678a;
  border-radius: 50%;
  border-top-color: #00b4db;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  z-index: 1;
  left: 50%;
  position: absolute;
  top: 100%;

}

.show-spinner-stats::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  opacity: 70%;
  border: 2px solid #00678a;
  border-radius: 50%;
  border-top-color: #00b4db;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  z-index: 1;
  display: block;
  margin: 0 auto;
}

@media (max-width: 430px) {
  .orderheader-mobile {
    position: absolute!important;
    top: -10px!important;
    padding: 0px!important;
    height: 70px!important;
  }
}
@media (max-width: 430px) {
  .shipping-header-mobile {
    padding-left:0px!important;
  }
}
@media (max-width: 430px) {
  .package-calc-mobile {
    display:none
  }
}

.toolbar-package-calc {
  color: #ffffff!important;
  font-weight: 900;
  border: 1px solid;
  border-radius: 3px;
  padding: 1px 3px 1px 3px;
  margin: 2px 2px 2px 2px;
  font-family: 'metropolisbold';
}

@media (min-width: 435px) {
  #package-calc-step {
    display:none!important;
  }
}

@media (min-width: 435px) {
  .package-calc-desktop {
    color: #424242;
    text-align: center;
    background: #e9ecef;
    padding: 15px;
    margin: 10px;
    border-radius: 8px;
    font-family: 'metropolissemi_bold';
  }
}

@media (max-width: 430px) {
  .height-mobile-95 {
    min-height: 95%;
    border-bottom-left-radius: 0px!important;
    border-bottom-right-radius: 0px!important;
  }
}
@media (max-width: 430px) {
  .services-mobile {
    margin-top: 20px;
    padding: 10px;
  }
}

@media (max-width: 430px) {
  .services-mobile-padding {
    min-height: 80px!important;
  }
}

.service-code.active {
  border: 1px solid #e8e8e8!important;
  /* background: repeating-linear-gradient( 45deg, #8bc34a66, #8bc34a66 10px, #9ccc658c 10px, #9ccc658c 20px); */
  background: #9ccc658c;
  opacity: 100%!important;
}

.addon-code.active {
  border: 1px solid #e8e8e8!important;
  /* background: repeating-linear-gradient( 45deg, #8bc34a66, #8bc34a66 10px, #9ccc658c 10px, #9ccc658c 20px); */
  background: #9ccc658c;
  opacity: 100%!important;
}


@media (max-width: 430px) {
  .service-price {
    min-width: 80px;
    margin-left: 0px;
  }
}


@media (max-width: 430px) {
  .orderlines-mobile {
    margin-top: 105px;
  }
}

@media (max-width: 430px) {
  .mobile-pack-line {
    height: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding-right: 5px;
}
}
@media (max-width: 430px) {
  .hide-on-line-completed-mobile {
    display:none;
  }
}

@media (max-width: 430px) {
  .pack-line-item-completed {
    padding:0px!important;
  }
}

@media (max-width: 430px) {
  .sku-line-mobile {
    width: 140px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    /* margin-left: 10px; */
}
}

@media (max-width: 430px) {
  .text-white-mobile {
    color:#ffffff!important;
}
}

@media (max-width: 430px) {
  .pl-3-mobile {
    padding-left: 0.7rem !important;
}
}

.swal2-container .swal2-top {
  z-index: 10000!important;
  width: 95%;
}

@media (max-width: 430px) {
  .mb-30-mobile {
    padding-bottom: 70px!important;
}
}

@media (max-width: 430px) {
  .mobile-shipping-toolbar {
    margin-bottom: 10px!important;
    position: fixed;
    bottom: 0px;
    width: calc(100% - 44px);
    flex-direction: row;
    margin: 7px;
    z-index: 10;
}
}

.br-8 {
  border-radius:8px
}

.step-toolbar-bottom {
  color: #ffffff;
  font-family: 'metropolissemi_bold';
  padding: 5px 10px;
  background: none;
  border: none;
}

@media (max-width: 430px) {
  .step-border-left {
    border-left: 1px solid #ffffff47;
    border-radius: 3px;
    padding-left: 20px;
    margin-left: auto;
  }
}
@media (max-width: 430px) {
.full-width-mobile {
  width: 100%;
}
}

@media (max-width: 430px) {
.step-border-right {
  border-right: 1px solid #ffffff47;
  border-radius: 3px;
  padding-right: 20px;
}
}
@media (min-width: 450px) {
.desktop-shipping-button-align {
  margin: 0px 10px 0px auto;
}
}
@media (max-width: 450px) {
  .shipping-next-buttons-mobile {
    background: #39addf;
    transition: 0.4s ease-in-out;
    border: initial;
    box-shadow: 0 1px 15px rgb(0 0 0 / 10%), 0 1px 8px rgb(0 0 0 / 10%);
    -webkit-appearance: unset;
  }
}
@media (min-width: 450px) {
  .shipping-next-buttons-desktop {
    background: #39addf;
    transition: 0.4s ease-in-out;
    border: initial;
    box-shadow: 0 1px 15px rgb(0 0 0 / 10%), 0 1px 8px rgb(0 0 0 / 10%);
    -webkit-appearance: unset;
  }
}

@media (max-width: 450px) {
  .toolbar-print-ready-mobile {
    background: #dc3545;
  }
}

.toolbar-print-ready {
  background: #dc3545;
}
@media (max-width: 450px) {
.toolbar-print-ready {
  background: #dc3545;
}
}

@media (min-width: 450px) {
  .toolbar-print-ready-desktop {
    background: #dc3545;
  }
}

@media (max-width: 430px) {
  .text-center-mobile {
    text-align: center !important;
}
}

@media (max-width: 430px) {
  .package-name-mobile {
    height: 20px;
}
}

.mb-10 {
  margin-bottom: 5rem !important;
}


@media (max-width: 430px) {
  .ship-label-sub {
    font-size: 15px!important;
  }
}

.page-item .page-link.next {
  background: #99aab6;
  color: #ffffff;
  border: 1px solid #136eb900;
}

.page-item .page-link.prev {
  background: #99aab6;
  color: #ffffff;
  border: 1px solid #136eb900;
}

.page-item.active .page-link {
  background: transparent;
    border: 1px solid #65818e;
    color: #65818e!important;
}

.page-item.disabled .page-link {
  border-color: #99aab6;
  color: #99aab6;
  background: transparent;
}

.service-code-right {
  padding: 2px 7px 2px 8px;
  margin-right: 5px;
  width: 100%;
  display: inline-block;
  height: 24px;
  line-height: 20px;
  text-align: center;
  font-family: metropolisbold;
  background-color: #5a5a5a;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}

.service-price {
  min-width: 100px;
  height: 24px;
  text-align: center;
  font-family: metropolissemi_bold;
  background-color: #5a5a5a;
  border-radius: 5px;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: flex;
  justify-content: center;
  margin-left: 15px;
  line-height: 24px;
}

.packagetype {
  -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;
}

@media (max-width: 430px) {
  .pick-card-urgent {
    left: 0!important;
    bottom: 0!important;
    position: absolute;
    border-radius: 0px 200px 200px 150px!important;
    padding-right: 20px;
    background: #ff9800!important;
    font-size: 10px;
    line-height: 12px;
    margin-top: 30px;
    font-family: 'metropolissemi_bold';
    color: #ffffff!important;
    right: revert!important;
    padding-left: 15px;
}
}

.page-loader {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: 99999999;
}

.page-loader .loader {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
			-ms-transform: translate(-50%, -50%);
					transform: translate(-50%, -50%);
}

.page-loader svg {
	display: none;
}

.blobs {
	-webkit-filter: url(#goo);
					filter: url(#goo);
	width: 200px;
	height: 200px;
	position: relative;
	overflow: hidden;
	border-radius: 70px;
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
}

.blobs .blob-center {
	-webkit-transform-style: preserve-3d;
					transform-style: preserve-3d;
	position: absolute;
	background: #01c8f3;
	top: 50%;
	left: 50%;
	width: 30px;
	height: 30px;
	-webkit-transform-origin: left top;
			-ms-transform-origin: left top;
					transform-origin: left top;
	-webkit-transform: scale(0.9) translate(-50%, -50%);
			-ms-transform: scale(0.9) translate(-50%, -50%);
					transform: scale(0.9) translate(-50%, -50%);
	-webkit-animation: blob-grow linear 3.4s infinite;
					animation: blob-grow linear 3.4s infinite;
	border-radius: 50%;
	-webkit-box-shadow: 0 -10px 40px -5px #0083B0;
					box-shadow: 0 -10px 40px -5px #0083B0;
}

.blob {
	position: absolute;
	background: #01c8f3;
	top: 50%;
	left: 50%;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	-webkit-animation: blobs ease-out 3.4s infinite;
					animation: blobs ease-out 3.4s infinite;
	-webkit-transform: scale(0.9) translate(-50%, -50%);
			-ms-transform: scale(0.9) translate(-50%, -50%);
					transform: scale(0.9) translate(-50%, -50%);
	-webkit-transform-origin: center top;
			-ms-transform-origin: center top;
					transform-origin: center top;
	opacity: 0;
}

.blob:nth-child(1) {
	-webkit-animation-delay: 0.2s;
					animation-delay: 0.2s;
}

.blob:nth-child(2) {
	-webkit-animation-delay: 0.4s;
					animation-delay: 0.4s;
}

.blob:nth-child(3) {
	-webkit-animation-delay: 0.6s;
					animation-delay: 0.6s;
}

.blob:nth-child(4) {
	-webkit-animation-delay: 0.8s;
					animation-delay: 0.8s;
}

.blob:nth-child(5) {
	-webkit-animation-delay: 1s;
					animation-delay: 1s;
}

@-webkit-keyframes blobs {
	0% {
		opacity: 0;
		-webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
						transform: scale(0) translate(calc(-330px - 50%), -50%);
	}
	1% {
		opacity: 1;
	}
	35%,
	65% {
		opacity: 1;
		-webkit-transform: scale(0.9) translate(-50%, -50%);
						transform: scale(0.9) translate(-50%, -50%);
	}
	99% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
						transform: scale(0) translate(calc(330px - 50%), -50%);
	}
}

@keyframes blobs {
	0% {
		opacity: 0;
		-webkit-transform: scale(0) translate(calc(-330px - 50%), -50%);
						transform: scale(0) translate(calc(-330px - 50%), -50%);
	}
	1% {
		opacity: 1;
	}
	35%,
	65% {
		opacity: 1;
		-webkit-transform: scale(0.9) translate(-50%, -50%);
						transform: scale(0.9) translate(-50%, -50%);
	}
	99% {
		opacity: 1;
	}
	100% {
		opacity: 0;
		-webkit-transform: scale(0) translate(calc(330px - 50%), -50%);
						transform: scale(0) translate(calc(330px - 50%), -50%);
	}
}

@-webkit-keyframes blob-grow {
	0%,
	39% {
		-webkit-transform: scale(0) translate(-50%, -50%);
						transform: scale(0) translate(-50%, -50%);
	}
	40%,
	42% {
		-webkit-transform: scale(1, 0.9) translate(-50%, -50%);
						transform: scale(1, 0.9) translate(-50%, -50%);
	}
	43%,
	44% {
		-webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
						transform: scale(1.2, 1.1) translate(-50%, -50%);
	}
	45%,
	46% {
		-webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
						transform: scale(1.3, 1.2) translate(-50%, -50%);
	}
	47%,
	48% {
		-webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
						transform: scale(1.4, 1.3) translate(-50%, -50%);
	}
	52% {
		-webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
						transform: scale(1.5, 1.4) translate(-50%, -50%);
	}
	54% {
		-webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
						transform: scale(1.7, 1.6) translate(-50%, -50%);
	}
	58% {
		-webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
						transform: scale(1.8, 1.7) translate(-50%, -50%);
	}
	68%,
	70% {
		-webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
						transform: scale(1.7, 1.5) translate(-50%, -50%);
	}
	78% {
		-webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
						transform: scale(1.6, 1.4) translate(-50%, -50%);
	}
	80%,
	81% {
		-webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
						transform: scale(1.5, 1.4) translate(-50%, -50%);
	}
	82%,
	83% {
		-webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
						transform: scale(1.4, 1.3) translate(-50%, -50%);
	}
	84%,
	85% {
		-webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
						transform: scale(1.3, 1.2) translate(-50%, -50%);
	}
	86%,
	87% {
		-webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
						transform: scale(1.2, 1.1) translate(-50%, -50%);
	}
	90%,
	91% {
		-webkit-transform: scale(1, 0.9) translate(-50%, -50%);
						transform: scale(1, 0.9) translate(-50%, -50%);
	}
	92%,
	100% {
		-webkit-transform: scale(0) translate(-50%, -50%);
						transform: scale(0) translate(-50%, -50%);
	}
}

@keyframes blob-grow {
	0%,
	39% {
		-webkit-transform: scale(0) translate(-50%, -50%);
						transform: scale(0) translate(-50%, -50%);
	}
	40%,
	42% {
		-webkit-transform: scale(1, 0.9) translate(-50%, -50%);
						transform: scale(1, 0.9) translate(-50%, -50%);
	}
	43%,
	44% {
		-webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
						transform: scale(1.2, 1.1) translate(-50%, -50%);
	}
	45%,
	46% {
		-webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
						transform: scale(1.3, 1.2) translate(-50%, -50%);
	}
	47%,
	48% {
		-webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
						transform: scale(1.4, 1.3) translate(-50%, -50%);
	}
	52% {
		-webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
						transform: scale(1.5, 1.4) translate(-50%, -50%);
	}
	54% {
		-webkit-transform: scale(1.7, 1.6) translate(-50%, -50%);
						transform: scale(1.7, 1.6) translate(-50%, -50%);
	}
	58% {
		-webkit-transform: scale(1.8, 1.7) translate(-50%, -50%);
						transform: scale(1.8, 1.7) translate(-50%, -50%);
	}
	68%,
	70% {
		-webkit-transform: scale(1.7, 1.5) translate(-50%, -50%);
						transform: scale(1.7, 1.5) translate(-50%, -50%);
	}
	78% {
		-webkit-transform: scale(1.6, 1.4) translate(-50%, -50%);
						transform: scale(1.6, 1.4) translate(-50%, -50%);
	}
	80%,
	81% {
		-webkit-transform: scale(1.5, 1.4) translate(-50%, -50%);
						transform: scale(1.5, 1.4) translate(-50%, -50%);
	}
	82%,
	83% {
		-webkit-transform: scale(1.4, 1.3) translate(-50%, -50%);
						transform: scale(1.4, 1.3) translate(-50%, -50%);
	}
	84%,
	85% {
		-webkit-transform: scale(1.3, 1.2) translate(-50%, -50%);
						transform: scale(1.3, 1.2) translate(-50%, -50%);
	}
	86%,
	87% {
		-webkit-transform: scale(1.2, 1.1) translate(-50%, -50%);
						transform: scale(1.2, 1.1) translate(-50%, -50%);
	}
	90%,
	91% {
		-webkit-transform: scale(1, 0.9) translate(-50%, -50%);
						transform: scale(1, 0.9) translate(-50%, -50%);
	}
	92%,
	100% {
		-webkit-transform: scale(0) translate(-50%, -50%);
						transform: scale(0) translate(-50%, -50%);
	}
}

.selected-service {
  border: 1px solid #ff9800!important;
}

.not-selected-service {
  opacity: 50%;
  transition: all 0.5s ease-in-out;

}

.shipping-option-addon.selected-service {
  background: #fa706f;
  border:none!important;
}

.services-mobile {
  text-transform: capitalize;
}

.capitalise {
  text-transform: uppercase;
}

.service-code-right {
  text-transform: uppercase;
}

.modal {
  z-index: 10000;
}

.modal-content-wolfpak {
  background:#ffffff!important;
  margin: 0 auto!important;
  border-radius:0.5rem!important;
  width: 90%!important;
}

.modal-fullscreen {
  width: 100vw;
  max-width: none;
  height: 100%;
  margin: 0;
}

.modal-fullscreen .modal-content-wolfpak {
  width: 100%!important;
  height: 100%!important;
  border-radius: 0px!important;
}

.alert-icon-modal {
  color: #fa7070;
  font-size: 30px;
  margin: 0 auto;
  margin-top: 60px;
  background: #fa707038;
  padding: 10px 20px;
  border-radius: 14px;
}

.info-icon-modal {
  color: #00BCD4;
  font-size: 30px;
  margin: 0 auto;
  margin-top: 60px;
  background: #00bcd42b;
  padding: 10px 20px;
  border-radius: 14px;
}

.account-icon {
  color: #607d8b;
  font-size: 30px;
  margin: 0 auto;
  margin-top: 60px;
  background: #607d8b3b;
  border-radius: 100px;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'metropolisbold';
}

.wp-side-modal .modal-content {
  background: #ffffff!important;
}

.wp-side-modal .form-control:focus {
  background: #00b4db1a!important;
}

.wp-side-modal .form-control input::placeholder {
  color:#cdcdcd!important;
}

#swal2-content .form-control:focus {
  background: #ffffff!important;
}


.wp-side-modal .form-group {
  margin-bottom:0px!important;
}

.modal-content-wolfpak .modal-header {
  color: #161e2e!important;
  border:none!important;
}
.modal-content-wolfpak .modal-header .modal-title{
  font-size: 1.125rem!important;
  font-family:metropolissemi_bold!important;
  line-height: 1.5rem!important;
  text-align: center!important;
  width: 100%!important;
}

.modal-alert .modal-content-wolfpak .modal-header .modal-title{
  font-size: 23px!important;
  font-family: metropolissemi_bold!important;
  line-height: 1.5rem!important;
  text-align: center!important;
  width: 100%!important;
  color: #e85252;
}

.modal-info .modal-content-wolfpak .modal-header .modal-title{
  font-size: 23px!important;
  font-family: metropolissemi_bold!important;
  line-height: 1.5rem!important;
  text-align: center!important;
  width: 100%!important;
  color: #607D8B;
}

.modal-content-wolfpak .modal-body {
  color: #6b7280!important;
  border:none!important;
  padding-top: 0px!important;
  text-align: center;
}

.modal-content-wolfpak .modal-footer {
  background-color: #e8e8e8!important;
  border:none!important;
}

.modal-content-wolfpak .modal-footer .btn{
  width:100%!important;
  box-shadow: 0 2px 3px 0 rgba(0,5,6,.15)!important;
  padding-left: 1rem!important;
  padding-right: 1rem!important;
  border-radius: .375rem!important;
  font-size:1rem!important;
  line-height: 1.5rem!important;
}

.modal-content-wolfpak .modal-footer .btn-secondary{
  background: white!important;
  border: 0px!important;
  color: #37474F!important;
}

@media (max-width: 430px) {
  .modal-content-wolfpak-packtable {
    height:100vh;
  }
}

.modal-content-wolfpak-packtable {
  background:#ffffff!important;
  margin: 0 auto!important;
  border-radius:0.5rem!important;
  width: 100%!important;
  position: absolute;
  display: block;
}

.modal-content-wolfpak-packtable .modal-header {
  color: #161e2e!important;
  border:none!important;
}
.modal-content-wolfpak-packtable .modal-header .modal-title{
  font-size: 1.125rem!important;
  font-family:metropolissemi_bold!important;
  line-height: 1.5rem!important;
  text-align: center!important;
  width: 100%!important;
}

.modal-content-wolfpak-packtable .modal-body {
  color: #6b7280!important;
  border:none!important;
  padding-top: 0px!important;
  text-align: center;
}

.modal-content-wolfpak-packtable .modal-footer {
  border:none!important;
}

@media (max-width: 430px) {
  .modal-dialog-packtable {
    margin: 0!important;
    height: 100%;
  }
}

.modal-content-wolfpak-packtable .modal-footer .btn{
  width: 100%!important;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
  transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
  padding-left: 1rem!important;
  padding-right: 1rem!important;
  border-radius: .375rem!important;
  font-size: 1rem!important;
  line-height: 1.5rem!important;
  background-color: #00B4DB;
  border-color: #00B4DB;
  color: #ffffff;
  font-family: 'metropolissemi_bold';
  animation: fade-in 1s ease-in-out 1;
  padding: 0.5rem 1.25rem 0.5rem 1.25rem;
  display: inline-block;
  font-weight: 400;
  margin-right: 0.25rem;
  margin-left: 0.25rem;
}

.modal-content-wolfpak-packtable .modal-footer .btn-secondary{
  background: white!important;
  border: 0px!important;
  color: #37474F!important;
}
.card-shipping {
  border: initial;
  background: #ffffff;
  padding: 0px 15px;
}

@media (min-width: 450px) {
  .card-shipping {
    border-radius:10px;
  }
  }

.form-control, .bootstrap-tagsinput {
  background: #ffffff;
  border-radius: 5px;
  border: 1px solid #B0BEC5;
}

.has-top-label label, .has-top-label > span, .has-float-label label, .has-float-label > span {
  color: #607D8B!important;
}

.has-top-label label, .has-top-label > span:last-of-type {
  font-size: 80%;
}

.packagecalc .has-float-label label::after, .has-float-label > span::after, .has-float-label > span::after {
  background:#ffffff
}

.packagecalc .form-control:focus {
  background: #ECEFF1;
}

label .form-control:disabled {
  opacity: 30%!important
}

.form-group .disabled{
  opacity: 30%!important
}

#service_options .custom-switch .custom-switch-input + .custom-switch-btn:after {
    background: #ffffff;
}

#package_options .custom-switch .custom-switch-input + .custom-switch-btn:after {
  background: #ffffff;
}

#shipping-options .form-control:focus {
  background: #ECEFF1;
}

/* Sweet alert style changes */
.swal2-container.swal2-shown {
  padding: 20px;
}
.swal2-actions {
  width:95%
}

.swal2-title {
    font-size: 1.125rem!important;
    font-family: metropolisbold!important;
    line-height: 1.5rem!important;
    font-weight: 200;
    text-align: center!important;
    width: 100%!important;
    color: #263238!important;
    border: none!important;
    display: revert!important;
    -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

.swal2-html-container {
    color: #6b7280!important;
    border: none!important;
    padding-top: 0px!important;
    text-align: center!important;
    font-family: "Nunito", sans-serif!important;
    font-size: 0.8rem!important;
    font-weight: 400!important;
}

.swal2-html-container {
  overflow: unset!important;
}

.disable-select {
  -webkit-user-select: none;  
  -moz-user-select: none;    
  -ms-user-select: none;      
  user-select: none;
}

.enable-select {
  -webkit-user-select: revert!important;  
  -moz-user-select: revert!important;    
  -ms-user-select: revert!important;      
  user-select: revert!important;
}

.swal2-confirm {
  width: 100%!important;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    box-shadow: 0 2px 3px 0 rgba(0,5,6,.15)!important;
    padding-left: 1rem!important;
    padding-right: 1rem!important;
    border-radius: .375rem!important;
    font-size: 1rem!important;
    line-height: 1.5rem!important;
    background-color: #00B4DB!important;
    border-color: #00B4DB!important;
    color: #ffffff!important;
}

.swal2-deny {
  width: 100%!important;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .15s;
    transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
    box-shadow: 0 2px 3px 0 rgba(0,5,6,.15)!important;
    padding-left: 1rem!important;
    padding-right: 1rem!important;
    border-radius: .375rem!important;
    font-size: 1rem!important;
    line-height: 1.5rem!important;
    background-color: #707070!important;
    border-color: #707070!important;
    color: #ffffff!important;
}

.swal2-cancel {
  width: 100%!important;
  transition-timing-function: cubic-bezier(.4,0,.2,1);
  transition-duration: .15s;
  transition-property: background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;
  box-shadow: 0 2px 3px 0 rgba(0,5,6,.15)!important;
  padding-left: 1rem!important;
  padding-right: 1rem!important;
  border-radius: .375rem!important;
  font-size: 1rem!important;
  line-height: 1.5rem!important;
  background-color: #FF5722;
  color: #ffffff!important;
}


.customer-details-card-container {
  border-radius: 8px;
  padding: 10px;
  color: #37474F;
  background: repeating-linear-gradient( 45deg, #FFA726, #FFA726 10px, #fdb03b 10px, #fdb03b 20px)!important;
  -webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
height: 110px;
transition: background 0.1s ease-in-out;
}

.root-background {
  border-radius: 8px;
  padding: 10px;
  color: #37474F;
  background: repeating-linear-gradient( 45deg, #FFA726, #FFA726 10px, #fdb03b 10px, #fdb03b 20px)!important;
  -webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
transition: background 0.1s ease-in-out;
}

.customer-details-card-container-loading {
  padding: 10px;
  color: #37474F;
  -webkit-user-select: none; /* Safari */        
  -moz-user-select: none; /* Firefox */
  -ms-user-select: none; /* IE10+/Edge */
  user-select: none; /* Standard */
  height: 110px;
  transition: all 0.1s ease-in-out;
  background: linear-gradient(0.25turn, transparent, #ffffff4f, transparent), linear-gradient(#eee0, #eee0), radial-gradient(38px circle at 19px 19px, #eeeeee12 50%, transparent 51%), linear-gradient(#eeeeee80, #eeeeee75);
  background-repeat: no-repeat;
  background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
  animation: loading 1.5s infinite;
  background-color: #9eb2be;
  border-radius: 8px;
  animation-direction: alternate;
  opacity: 50%;
}

.customer-details-card-container-valid {
  border-radius: 8px;
  padding: 10px;
  color: #37474F;
  background: repeating-linear-gradient( 45deg, #8BC34A, #8BC34A 10px, #9CCC65 10px, #9CCC65 20px);
  -webkit-user-select: none; /* Safari */        
-moz-user-select: none; /* Firefox */
-ms-user-select: none; /* IE10+/Edge */
user-select: none; /* Standard */
height: 110px;
transition: background 0.5s ease-in-out;
}

.address-card-height {
  height: 40px!important;
  transition: all 0.1s ease-in-out;
}

.customer-details-card-container-override {
  border-radius: 8px;
  padding: 10px;
  color: #ffffff;
  background: repeating-linear-gradient( 45deg
, #607d8b, #607d8b 10px, #546e7a 10px, #546e7a 20px);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 110px;
  transition: all 0.1s ease-in-out;
}

.customer-card-icon {
    float: right;
    top: 0;
    margin-top: -30px;
    font-size: 20px;
    background: #FF9800;
    border-radius: 100px;
    padding: 10px;
    display: flex;
    margin-right: -10px;
}

.invalid-address-top-padding {
  margin-top: -65px!important;
}

.customer-card-icon-valid {
  background: #8BC34A!important;
}

.customer-card-icon-error {
  background: #F44336!important;
}

.customer-card-icon-override {
  background: #37474f!important;
  color: #ffffff;
}

#or-header {
  font-size: 14px;
  color: #607D8B;
  font-family: 'metropolisbold';
  text-align: center;
  padding: 0.5rem;
}

.abandon-label {
  color: #747474;
  position: absolute;
  right: 0;
  margin-right: 1.8rem;
  padding: 0.7rem;
  font-size: 15px;
  border-radius: 10px;
  margin-top: 30px;
  background: #f2f2f2;
  height: 43.5px;
  width: 43.5px;
  text-align: center;
  border: 1px solid #e7e7e7!important;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
}

.approval-card {
/* background: linear-gradient(to right bottom, #0083B0, #00B4DB)!important; */
background:#ffffff;
height: 110px;
transition: 0.4s ease-in-out;
}

.swal2-container {
  z-index: 9999999!important;
}

@media (max-width: 430px) {
body.swal2-toast-shown .swal2-container.swal2-top {
  width: 100%!important;
}
}

@media (min-width: 435px) {
  .swal2-popup.swal2-toast {
    margin: 30px;
    box-shadow:none!important;
  }
}

.pick-table-buttons {
  height:35px;
  font-size: 11px!important;
  border-radius:8px!important;
  font-family:metropolisregular!important;
}

.swal2-popup {
  justify-content: space-around!important;
}

.swal2-popup.swal2-toast {
  box-shadow: 0 0 0.625em #464646;
  font-size: 1.125rem!important;
  font-family: metropolissemi_bold!important;
  line-height: 1.5rem!important;
  text-align: center!important;
  width: 100%;
  color: #37474f!important;
}

.light-toast {
  width: 270px!important;
  box-shadow: 0 0 0.625em #607d8ba3!important
}

.toast-warning-title {
  color: #f8bb86!important;
}

.toast-hide-shadow {
  box-shadow: none!important;
}

.toast-extra-width {
  width: 270px!important;
}

.show-more-packages {
  color: orange;
    text-align: center;
    border: 1px solid;
    margin: 0.5rem;
    padding: 0.5rem;
    border-radius: 10px;
    margin-bottom: 20px;
    margin-top: 20px;
}

@media (max-width: 430px) {
  .shipping-height-mobile {
    height: 100vh;
  }
}


@media (max-width: 430px) {
  .shrink-package-list {
    height: 75vh;
    overflow: scroll;
  }
}

@media (min-width: 435px) {
  .shrink-package-list-desktop {
    height: 50vh;
    overflow: scroll;
  }
}

@media (min-width: 440px) {
  .ml-80-d {
    margin-left: 65px;
    width: 82%;
  }
}


@media (min-width: 440px) {
  .addons-desktop {
    flex-direction: row;
    margin-bottom: 20px;
    padding-top: 10px;
    border-radius: 8px;
  }
}


@media (max-width: 430px) {
  .addons-mobile {
    flex-direction: column;
    margin-bottom: 20px;
    border-radius: 8px;
    border: 1px solid #ff9800;
    box-shadow: 0 1px 8px #69808a5c;
    margin-top: 5px;
  }
}

.ff-bold {
  font-family: 'metropolisbold'
}
.btn-wp-pink {
  background-color:#fa7070!important;
  color:white!important;
  border-radius: 50px;
  outline: initial !important;
  box-shadow: none !important;
  box-shadow: initial !important;
  font-size: 0.8rem!important;
  padding: 0.7rem 1.4rem 0.7rem 1.4rem!important;
  transition: background-color box-shadow 0.1s linear;
  font-weight: 400!important;
  border:none!important;
  font-family: "Nunito", sans-serif!important;
}

.btn-wp-pink:hover {
  webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  color: #212529!important;
  text-decoration: none;
}

.dispatched-btn {
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
}


.rounded .data-table-rows table td {
  background: #455a64!important;
}

.dataTables_empty {
  text-align: center;
  font-family: 'metropolislight';
}

.buttons-csv {
  align-items: center!important;
  border-radius: 8px!important;
  cursor: pointer!important;
  transition: all 0.4s ease!important;
  background: #c4dbe7!important;
  height: 100%!important;
  max-width: 180px!important;
  border:none!important;
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
  margin-left:20px;
}

.remaining.success {
  font-family: 'metropolisbold';
  color: #6f8089;
}

.buttons-csv:hover {
box-shadow: 0 10px 36px -2px rgb(0 0 0 / 18%)!important;
color: #1c2021!important;
}

#pick-preview-container {
  background: #d7e7f4;
}

.order-items-list {
  background: #d7e7f4;
  border-radius: 8px;
  min-height: 80px;
  transition: all 0.2s ease-in-out;
}

.bundle-item-picked {
  opacity: 40%;
  transition: all 0.6s ease-in-out;
}

.bundle-item-qty {
  position: absolute;
  left: 21px;
  top: 9px;
  padding: 0px 10px;
  background: #8d8d8d;
  color: #ffffff;
  border-radius: 20px;
  font-family: 'metropolissemi_bold';
}

.pick-bundle-item {
  background-color: #8bc34a;
  font-size: 11px;
  height: 33px;
  font-family: 'metropolisbold';
  width: 100%;
  border-radius: 15px;
  border: none;
}

.date-picker-input {
  border: 0;
  outline: none;
  font-family: inherit;
  line-height: 20px;
  font-size: 16px;
  background: #c4dbe773;
  -webkit-appearance: none;
  border-radius: 5px;
  height:40px;
  padding-left: 10px;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
}

.datepicker .day {
  text-align: center;
}
.datepicker .disabled.day {
  opacity:40%;
}
.datepicker .dow {
  text-align: center;
}

.datepicker .datepicker-switch {
  text-align: center;
}

.dt-buttons {
  right: 0;
    top: 0;
    position: absolute;
    /* padding: 25px; */
}
/* 
.dt-colvis .dropdown-menu {
  transform:unset!important;
}

.dt-colvis .dropdown-item {
  background: none;
  padding: 0px;
}

.dt-colvis .dropdown-item span {
  padding: 0.8rem 1rem;
  color: #1c2021;
  font-family: 'metropolisregular' !important;
  font-size: 12px !important;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.dt-button {
  border-radius: 5px!important;
  font-size: 20px!important;
  font-weight: 500!important;
  color: #455a64!important;
  padding: 0 20px!important;
  background: #d8e3e9!important;
  line-height: 40px!important;
  height: 40px!important;
  cursor: pointer!important;
  display: flex!important;
  align-items: center!important;
  border: none!important;
}

.dt-button span {
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
  line-height: 40px;
} */

.buttons-datatables {
  align-items: center!important;
  border-radius: 8px!important;
  cursor: pointer!important;
  transition: all 0.4s ease!important;
  background: #c4dbe7!important;
  height: 100%!important;
  max-width: 180px!important;
  border:none!important;
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
  margin-left:20px;
}

.buttons-datatables:hover {
box-shadow: 0 10px 36px -2px rgb(0 0 0 / 18%)!important;
color: #1c2021!important;
}

.badge-orange-line {
  color: #ffffff;
  border: solid 1px #FF9800;
  background: #ff99008c;
  font-family: 'metropolisbold';
  min-width: 80%;
}

.badge-orange-line-shadow {
  color: #ffffff;
  border: solid 1px #FF9800;
  background: #ff99008c;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
  font-family: 'metropolisbold';
  min-width: 80%;
}

.badge-red-line {
  color: #ffffff;
  font-family: 'metropolisbold';
  border: solid 1px hsl(0, 60%, 51%);
  background: hwb(0 24% 0% / 0.803);
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;

}
.badge-yellow-line {
  color: #FFEB3B;
  font-family: 'metropolisbold';
  border: solid 1px #FFEB3B;
  background: #ffeb3b40;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;

}

.badge-dispatch {
  min-width: 90px!important;
}

.badge-blue-line {
  color: #cbf0ff;
  font-family: 'metropolisbold';
  border: solid 1px #21a1d970;
  background: #21a1d970;
  min-width: 80%;
}

.badge-green-line {
  color: #cbf0ff;
  font-family: 'metropolisbold';
  border: solid 1px #8bc34a9e;
  background: #8bc34a9e;
  min-width: 80%;
}

.badge-green-line-shadow {
  color: #ffffff;
  font-family: 'metropolisbold';
  border: solid 1px #8bc34a9e;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 15%) !important;
  background: #8bc34a9e;
  min-width: 80%;
}

.hover-bounce-right-animation {
  display: block;
  -webkit-animation: bounce-right 0.8s ease-in-out both;
	        animation: bounce-right 0.8s ease-in-out both;
}

.enable-status-true {
  color: #cbf0ff;
  font-family: 'metropolisbold';
  border: solid 1px #8bc34a9e;
  background: #8bc34a9e;
  min-width: 20%;
  padding: 5px;
  border-radius: .25rem;
  display: inline-block;
  text-align: center;
}

.enable-status-false {
  color: #cbf0ff;
  font-family: 'metropolisbold';
  border: solid 1px #607d8b;
  background: #607d8b70;
  min-width: 20%;
  padding: 5px;
  border-radius: .25rem;
  display: inline-block;
  text-align: center;
}

.badge-pink-line {
  color: #cbf0ff;
  font-family: 'metropolisbold';
  border: solid 1px #f9706f;
  background: #f9706f;
  min-width: 80%;
}

.badge-grey-line {
  color: #cbf0ff;
    font-family: 'metropolisbold';
    border: solid 1px #607d8b;
    background: #607d8b70;
    min-width: 80%;
}

.badge-grey {
  padding: 9px 10px;
  background: #70828b54;
  border-radius: 8px;
  min-width: 120px;
  color: #5555559c;
}

.badge-email {
  text-transform: lowercase;
  text-align: left;
  font-family: 'metropolislight';
  font-size: 13px;
}

.badge-website {
  text-transform: lowercase;
  padding: 9px 10px;
  background: #ffffff00;
  border-radius: 8px;
  min-width: 150px;
  border: 1px solid #6f808987;
}

.badge-dark-green {
  padding: 9px 10px;
  background: #88ac6f;
  border-radius: 8px;
  min-width: 120px;
  color: #ffffff;
}

.badge-dark-green-line {
  padding: 9px 10px;
  border-radius: 8px;
  min-width: 120px;
  color: #88ac6f;
  border: 1px solid #88ac6f;
}

.badge-blue {
  padding: 9px 10px;
  background: #21a1d970;
  border-radius: 8px;
  color: #ffffff;
  min-width: 120px;
}

.badge-orange {
  padding: 9px 10px;
  background: #ff9800b8;
  border-radius: 8px;
  color: #ffffff;
  min-width: 120px;
}

.badge-pink {
  padding: 9px 10px;
  background: #f9706f;
  border-radius: 8px;
  color: #ffffff;
  min-width: 120px;
}

.badge-white {
  padding: 9px 10px;
  background: #ffffff;
  border-radius: 8px;
  color: #465b65;
  min-width: 120px;
}

.badge-pink.badge-release {
  min-width: unset!important;
  padding: 5px 10px;
}

.badge-white.badge-release {
  min-width: unset!important;
  padding: 5px 10px;
}

.badge-pink-mini {
  background: #f9706f;
  border-radius: 8px;
  color: #ffffff!important;
  min-width:75px;
  font-family: 'metropolissemi_bold'!important;
  font-size: 10px!important;
  max-width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-grey-mini {
  background: #c3c3c380;
  border-radius: 8px;
  color: #818181!important;
  min-width: 75px;
  font-family: 'metropolissemi_bold'!important;
  font-size: 10px!important;
  max-width: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.badge-green {
  padding: 9px 10px;
  background: #8bc34a9e!important;
  border-radius: 8px;
  color: #ffffff;
  min-width: 120px;
}

.badge-green.badge-text-dark {
  color: #1e4011!important;
}
.badge-grey.badge-text-dark {
  color: #555555!important;
}

.white-icon {
  border-color: #ffffff!important;
  color: #ffffff!important;
}

.text-decoration-none {
  text-transform: none!important;
}

.pick-confirm-icon {
  margin-top: 24vh!important;
}

.assigned-stock {
  background-color: #b8ff677d!important;
  font-weight: 900;
}

/* Initially hide the assign-stock-label */
.assign-stock-label {
  display: none;
}

.assign-stock-label-manual {
  display: none;
}

#backorder-table tr.dtrg-group th {
  background-color: rgb(96 125 139 / 15%)!important;
  color: #465b65;
  font-family: 'metropolisbold';
  border-top-right-radius: 6px!important;
  border-top-left-radius: 6px!important;
  border-radius: 0px;
}

#backorder-table table.dataTable tbody th, table.dataTable tbody td {
  padding: 10px 10px!important;
}

/* Display assign-stock-label when its parent has assigned-stock */
.assigned-stock .assign-stock-label {
  display: block;
}

.assigned-stock-manual .assign-stock-label-manual {
  display: block;
}

.assigned-stock.assigned-stock-manual .assign-stock-label {
  display: none;
}



.wp-pink-button-hover:hover {
  background: none!important;
  color:#232223!important;
  cursor: pointer;
}

@media (max-width: 430px) {
  .h100-m {
    height: 100%;
  }
}

@media (max-width: 430px) {
  .vh100-m {
    min-height: 100vh;
  }
}

.bootstrap-datetimepicker-widget {
  color:grey!important;
  background:#ffffff!important
}

.bootstrap-datetimepicker-widget .table .td .span:before {
  color:grey!important;
}

.text-small {
  font-family: 'metropolisregular';
  font-size: 0.65rem !important;
}

.text-muted {
  color: #445a64 !important;
}

.address-changed {
  color: #ffa726!important;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  font-family: 'metropolisbold';
}

.address-changed-button {
  background: #ffa726!important;
}

.pick-card-urgent-invoice {
  position: absolute;
    left: 0px;
    padding-right: 20px;
    background: #ff9800!important;
    border-radius: 0px 200px 200px 0px;
    font-size: 10px;
    line-height: 12px;
    margin-top: 40px;
    font-family: 'metropolissemi_bold';
    color: #ffffff!important;
}

@media (max-width: 425px) {
  .pick-card-picker-round-invoice {
    top: 30px;
    font-size: 10px;
    padding: 4px 7px 4px 7px;
    position: absolute;
    right: 0px;
    border-radius: 200px;
    line-height: 12px;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'metropolissemi_bold';
    color: #455A64;
    max-width: 55%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (min-width: 426px) {
  .pick-card-picker-round-invoice {
    top: 30px;
    font-size: 10px;
    padding: 4px 7px 4px 7px;
    position: absolute;
    right: 0px;
    border-radius: 200px;
    line-height: 12px;
    margin-right: 10px;
    margin-top: 10px;
    font-family: 'metropolissemi_bold';
    color: #455A64;
    max-width: 55%;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}

@media (min-width: 435px) {
  .bottom-menu {
    display: none;
  }
}

.mobile-home {
  width: 375px;
}

.wave-wrap {
  position: relative;
  width: 100%;
  height: 33px;
  overflow: hidden;
  margin-bottom: -2px;
}
.wave-wrap #wave {
  position: absolute;
  width: 150px;
  transform-origin: bottom;
  transform: scaleY(0.8);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.wave-wrap #wave .path {
  fill: #00B4DB;
}

.list-wrap {
  display: flex;
  width: 100%;
  height: 80px;
  background: #00B4DB;
  list-style: none;
  justify-content: space-around;
  padding: 0 20px;
  /* padding-left: 55px;
  padding-right: 55px; */
}
.list-wrap li {
  cursor: pointer;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.list-wrap li i {
  position: relative;
  font-size: 1.5em;
  color: #ffffff;
  z-index: 5;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.list-wrap li:before {
  content: "";
  position: absolute;
  background: green;
  height: 80%;
  width: 80%;
  left: 10%;
  top: 10%;
  border-radius: 50%;
  z-index: 0;
  transform: scale(0);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}
.list-wrap li.active {
  margin-top: -10px;
}
.list-wrap li.active i {
  color: #2f3542;
}
.list-wrap li.active:before {
  transform: scale(1);
}
.list-wrap li:nth-child(1):before {
  background: #537895;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}
.list-wrap li:nth-child(2):before {
  background: #ff6b81;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}
.list-wrap li:nth-child(3):before {
  background: #7bed9f;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}
.list-wrap li:nth-child(4):before {
  background: #ffc107;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.mobile-menu-container {
  display: flex;
  align-items: flex-end;
  flex-direction: row;
  font-family: "Montserrat", sans-serif;
  justify-content: space-around;
  padding-bottom: 15px;
  padding-top: 15px;
  background: #ffffff;
  z-index: 0; /* Set a lower z-index */
}

#menu-item-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  z-index: 1;
  pointer-events: none;
  transition: all 0.3s ease-out;
  background-image: url(/assets/img/bottom-menu-item-highlight.svg);
  background-repeat: no-repeat;
}

.mobile-menu-item {
  background: #ffffff;
  border-radius: 100px;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  color:#607d8b;
  z-index: 10;
}
.mobile-menu-container .page {
  height: 100vh;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3em;
  color: rgba(0, 0, 0, 0.1);
  text-transform: uppercase;
  letter-spacing: 5pt;
  padding-top: 50px;
}

.shadow-inner {
  box-shadow: inset 0 0 10px 2px #00000047;
}

.card-body {
  padding: 1.1rem!important;
}

.card-queues-over {
  background: #f44336!important;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-family: 'metropolisbold';
  color: #e0e0e0;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  position: absolute;
  top: 12px;
  right: 12px;
}

.card-queues-over-floating {
  background: #f44336 !important;
  padding: 4px 6px;
  border-radius: 7px;
  font-size: 10px;
  font-family: 'metropolisbold';
  color: #e0e0e0;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  display:none;
}

.card-queues-under {
  background: #8bc34a!important;
  padding: 5px 8px;
  border-radius: 10px;
  font-size: 11px;
  font-family: 'metropolissemi_bold';
  color: #e0e0e0;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  position: absolute;
  top: 12px;
  right: 12px;
}
.rotate-45 {
  transform: rotate(45deg);
}

.left-nav-pad {
  padding: 5px 15px;
  cursor: pointer;
}

.wp-nav-button {
  /* background: #CFD8DC;
  color: #455A64;
  border-radius: 10px;
  display:flex;
  height:50px;
  width: 50px;
  -webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out; */

  z-index: 10;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
  font-weight: 400;
  color: rgb(104, 121, 146)!important;
  padding: 12px 27px;
}

.wp-nav-button-actions {
  background: #CFD8DC;
  color: #455A64;
  border-radius: 10px;
  display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 45px;
  width: 45px;
  box-shadow: 0 0.5rem 1rem rgb(0 0 0 / 7%) !important;
  -webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
}

.wp-nav-button-actions-no-expand {
  background: #e8e8e8e0;
  color: #455A64;
  border-radius: 10px;
  display:flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 35px;
  width: 35px;
  box-shadow: 2px 1px 3px rgb(0 0 0 / 7%) !important;
  -webkit-transition: all 0.2s ease-in-out;
	-o-transition: all 0.2s ease-in-out;
	transition: all 0.2s ease-in-out;
  font-size: 10px;
}

.wp-nav-button-actions-no-expand-lg {
  background: #CFD8DC;
  color: #455A64;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 45px;
  width: 45px;
  box-shadow: 2px 1px 3px rgb(0 0 0 / 7%) !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 13px;
}

.wp-nav-button-actions-no-expand-dark {
  background: #b0c4d0;
  color: #1c2021;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  height: 35px;
  width: 35px;
  box-shadow: 2px 1px 3px rgb(0 0 0 / 7%) !important;
  -webkit-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  font-size: 10px;
}

.wp-nav-button-actions-no-expand-dark:hover {
  background: #c3cbcf;
  color: #455A64;
  box-shadow: none !important;
}

.wp-menu-item {
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.wp-menu-item-expand.open {
  margin-top: 8px;
    max-height: 400px!important;
    transition: all 0.4s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
    opacity: 100%;
}
.wp-menu-item-expand {
  overflow: hidden;
    transition: all 0.2s cubic-bezier(0.65, 0.05, 0.36, 1) 0s;
    max-height: 0px;
    opacity: 0%;
}


.wp-menu-item-expand-inner {
  z-index: 10;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  flex-shrink: 0;
  font-family: inherit;
  color: rgb(126 141 162);
  padding: 4px 0px;
}

.wp-menu-item-expand-inner-text {
  display: flex;
  flex-direction: row;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: start;
  justify-content: flex-start;
  padding: 0px 0px 10px 0px;
  color: rgb(126 141 162);
}

.wp-menu-item-expand-inner-text-title {
  letter-spacing: 0.3px;
  font-size: 14px;
  line-height: 16px;
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin-left: 16px;
  font-weight: inherit;
  color: inherit;
  min-width: 100px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease 0s, color;
}

.wp-menu-item-expand-inner-text-placeholder {
  width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.wp-menu-item-expand-inner-text-placeholder.active {
  background: #0097d64a;
  border-radius: 30px;
}


.wp-menu-chevron-open {
  transition: opacity 0.2s ease 0s, transform 0.2s linear 0s;
  opacity: 1;
  transform: rotate(180deg);
}

.sidebar-chevron {
  transition: opacity 0.2s ease 0s, transform 0.2s linear 0s;
  opacity: 1;
}

.wp-menu-item-text {
  letter-spacing: 0.3px;
  font-size: 14px;
  line-height: 16px;
  -webkit-box-flex: 1;
  flex-grow: 1;
  margin-left: 16px;
  font-weight: inherit;
  color: inherit;
  min-width: 100px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease 0s, color;
  font-family: 'metropolisregular';
  text-wrap: nowrap;
  overflow: hidden;
}

.wp-menu-item-text.wp-text-light{
  font-family: 'metropolislight';
}

.wp-nav-button-actions-no-expand:hover {
  background: #c3cbcf;
  color: #455A64;
  box-shadow: none !important;
}

.wp-nav-button-actions-no-expand-lg:hover {
  background: #c3cbcf;
  color: #455A64;
  box-shadow: none !important;
}

.wp-nav-button-actions:hover {
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  width: 170px
}

.wp-nav-button-actions:hover .expand-menu-item-actions {
  opacity:1;
  display:grid;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}


.wp-nav-button-actions i {
  padding: 10px;
}

.wp-nav-button-actions-text {
  text-align: center;
  padding: 0 10px;
  line-height: 50px;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.no-expand-menu-item-actions {
  opacity:0;
  display: none;
  font-family: 'metropolissemi_bold';
  overflow: hidden;
  white-space: nowrap;
}

.wp-nav-button-actions:hover .no-expand-menu-item-actions {
  opacity:1;
  display:grid;
}

.expand-menu-item-actions {
  opacity:0;
  display: none;
  font-family: 'metropolissemi_bold';
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  overflow: hidden;
  white-space: nowrap;
}

.expand-menu-item {
  opacity:0;
  font-family: 'metropolissemi_bold';
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.wp-nav-icon {
  font-size: 20px!important;
  margin-left: 10px!important;
  line-height:50px!important;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.wp-nav-button-icon {
  text-align: center;
  font-size: 15px;
}

.wp-nav-button-text {
  text-align: center;
  padding: 0 10px;
  line-height: 50px;
}

.bottom-setting {
  bottom: 0!important;
  position: absolute!important;
  margin-bottom: 30px!important;
  width: 100%;
}

.list-unstyled .active .wp-nav-button {
  color: #ffffff;
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
  font-weight: 900;
}

.user-sidebar {
  bottom: 0;
  position: absolute;
  margin-bottom: 60%;
  width: 100%;
}

.breadcrumb {
  display:none
}

.wp-side-menu.open .wp-sidebar-logo {
  background-image: url(/assets/img/WolfPak_long_blue.svg);
  background-repeat: no-repeat;
  margin-top: 20px!important;
  height: 35px;
  margin-left: 25px;
  margin-bottom: 20px;
  width: 140px;
  background-size: cover;
}

.wp-sidebar-logo {
  background-image: url(/assets/img/WolfPak_long_blue.svg);
  background-repeat: no-repeat;
  margin-top: 20px!important;
  height: 35px;
  margin-left: 15px;
  margin-bottom: 20px;
  width: 140px;
  background-size: cover;
}

.user-topbar-outer {
  display: flex;
    flex-direction: column;
    -webkit-box-align: stretch;
    align-items: stretch;
    -webkit-box-pack: start;
    justify-content: flex-start;
}

.topbar-subtitle {
  font-family: 'metropolisregular'!important;
  font-size: 12px!important;
  font-weight: 100!important;
}

.user-topbar-inner {
  font-size: 14px;
  font-weight: 600;
  color: rgb(67, 83, 105);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 170px;
  font-family: 'metropolisregular';
}

#wp-topbar {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
}

.topbar-inner {
  display: flex;
    flex-direction: row;
    -webkit-box-pack: end;
    justify-content: flex-end;
    padding: 0px 32px;
    height: 66px;
    transition: box-shadow 0.2s ease 0s, background-color 0.2s ease 0s;
    background-color: rgb(255 255 255 / 77%);
    color: rgb(67, 83, 105);
}

.topbar-container-right-dropdown-inner {
  display: flex;
  flex-direction: row;
  width: 200%;
}

.dropDownHeader {
  display: flex;
  -webkit-box-pack: justify;
  -webkit-box-align: center;
  align-items: center;
  padding: 0px 24px;
  border-bottom: 1px solid rgb(229, 239, 255);
  height: 66px;
  font-size: 14px;
  cursor: pointer;
}

.dropdown-header-text {
  display: flex;
  flex-direction: column;
  -webkit-box-align: stretch;
  align-items: stretch;
  -webkit-box-pack: start;
  justify-content: flex-start;
}

.dropdown-head-text {
  font-size: 14px;
  font-weight: 600;
  color: rgb(67, 83, 105);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  max-width: 170px;
}

.dropdown-blocks {
  display: flex;
  flex-direction: column;
  padding: 9px 8px;
}

.dropdown-block-item {
  font-size: 14px;
  font-weight: 400;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  line-height: 16px;
  border-radius: 4px;
  color: rgb(104, 121, 146);
  padding: 8px 16px;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.dropdown-block-header {
  font-size: 14px;
  font-weight: 800;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  line-height: 16px;
  border-radius: 4px;
  color: rgb(104, 121, 146);
  padding: 8px 16px;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.dropdown-block-item:hover {
  color: #0097d6!important;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.wp-nav-button:hover {
  color: #0097d6!important;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.active .wp-nav-button:before {
  background-color: #0097d6;
  content: '';
  width: 5px;
  height: 20px;
  position: absolute;
  left: 0;
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.active .wp-nav-button {
  color: #0098d6;
  background: #0098d60f;
}

.topbar-container-right-dropdown-blocks {
  width: 50%;
  display: flex;
  flex-direction: column;
}

.topbar-title-container {
  display: flex;
  -webkit-box-flex: 1;
  flex-grow: 1;
  align-self: center;
  align-items: center;
}

.org-name-topbar {
  border: solid 1px;
  padding: 5px 10px!important;
  font-size: 14px!important;
  border-radius: 8px;
  font-family: 'metropolislight';
}

.topbar-container-right {
  position: relative;
  min-width: 80px;
  display: flex;
  align-items: center;
}

.topbar-container-right-inner {
  position: relative;
    display: flex;
    height: 100%;
    flex-direction: row;
    padding: 10px 24px;
    width: 258px;
    -webkit-box-align: center;
    align-items: center;
    opacity: 1;
    border-left: 1px solid rgb(104 121 146 / 13%);
    cursor: pointer;
}

.topbar-container-right-dropdown {
  overflow: hidden;
  position: absolute;
  z-index: 15;
  width: 258px;
  border-radius: 0px 0px 4px 4px;
  transition: all 0.2s ease 0s;
  box-shadow: rgb(150 196 255 / 30%) 0px 2px 12px 1px;
  border-right: 1px solid rgb(229, 239, 255);
  border-bottom: 1px solid rgb(229, 239, 255);
  border-left: 1px solid rgb(229, 239, 255);
  border-image: initial;
  background-color: rgb(255, 255, 255);
  border-top: none;
  height: 0px;
  opacity: 0;
  top: 0.5px;
}

.topbar-container-right-dropdown.open {
  height: auto;
  opacity: 1;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.topbar-user {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  margin-right: 16px;
  flex-shrink: 0;
}

.topbar-title {
  font-size: 18px;
  line-height: 18px;
  padding: 0px;
  margin: 0px;
  font-weight: 600;
  color: rgb(104, 121, 146);
}

.topbar-title-mini {
  font-size: 12px;
  font-family: 'metropolisextra_light';
  line-height: 18px;
  padding: 0px;
  margin: 0px;
  font-weight: 600;
  color: rgb(104 121 146 / 55%);
}

.wp-sidebar-divider {
  color: rgb(229, 239, 255);
  height: 1px;
  margin: 16px 0px;
  padding: 0px;
  flex-shrink: 0;
}

.text-muted {
  color: #445a64 !important;
}

.wp-sidebar-user {
  font-family: 'metropolissemi_bold';
  background-color:#fa7070;
  margin: 0 auto;
  max-height: 45px;
  max-width: 45px;
  font-size: 15px;
  margin-top: 10px!important;
}

.sidebar-button-adjust {
  padding-top: 5px;
  position: absolute;
  width: 100%;
}

.text-pink {
  color: #fa7070!important
}

.text-green {
  color: #8bc34a9e;
}

.text-orange {
  color: #ff9800e0!important;
}

.btn-wp-pink {
  background-color:#fa7070;
  color:white!important;
}

.btn-wp-white-outline {
  border:2px solid #ffffff;
  color:#ffffff!important;
}

.btn-wp-pink:hover {
  webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.wp-menu-bars {
  position: absolute;
  top: 0;
  z-index: 1030;
  padding: 15px;
}

@media (min-width: 500px) {
.wp-menu-bars {
  display:none
}
}

.consignment-buttons-container {
  right: 50px;
  display: flex;
  position: absolute;
  align-items: center;
  height: 94px;
}

.sidebar-menu {
  /* width: 80px;
  height: 100%;
  background: #ffffff;
  z-index: 3;
  position: fixed;
  padding-top: 10px;
  padding-bottom: 10px;
  left: 0;
  top:0; */
}

.expand-menu {
  position: absolute;
  left: 90px;
  top: 30px;
}

.wp-side-menu {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 750px;
  border-right: 1px solid rgb(229, 239, 255);
  background-color: rgb(255, 255, 255);
  box-shadow: rgb(229 239 255) 0px 1px 3px 0px;
  position: relative;
  z-index: 1001;
  transition: width 0.2s ease 0s;
  width:70px;
}

.wp-side-menu.open {
  width: 224px!important;
}

.wp-side-menu-items {
  -webkit-box-flex: 1;
    flex-grow: 1;
}

.sidebar-menu .active .wp-nav-button{
  background: #39addf;
  color:#ffffff
}

.index-sidebar-icon {
  /* font-size: 20px;
  text-align: center;
  width: 40px;
  line-height: 50px; */

  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.approval-card-customer {
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  color:#323538!important;
  text-overflow: ellipsis;
  font-family: 'metropolissemi_bold';
  font-size: 16px;
  text-transform: capitalize;
}

.approve-customer-left-border {
  width: 7px;
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
  height: 60px;
  position: absolute;
  left: 0;
  margin-top: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.approve-customer-left-border-urgent {
  width: 7px;
  background: linear-gradient(to right bottom, #ffa920, #fb8c00)!important;
  height: 60px;
  position: absolute;
  left: 0;
  margin-top: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
}

.urgent-icon-card {
  background: #ffffff;
    color: orange;
    font-size: 15px;
    margin-left: -13px;
    padding: 6px 6px;
    border-radius: 30px;
    margin-top: 16px;
    position: absolute;
    line-height: 14px;
}

.full-height-view {
  background:#769bac33;
  min-height: 100vh;
  top: 0;
  margin-top: 66px;
}

.orders-list-view {
  background:#769bac33;
  max-height: 100vh;
  top: 0;
  overflow: scroll;
}
.postage-details-approve {
  border-radius: 20px;
  background: #d8eaf5;
  display: flex;
  max-height: 350px;
}

.expand-menu-item {
  overflow: hidden;
  padding: 15px 5px 5px 5px;
  margin-left: 10px;
  white-space: nowrap;
}

.listedorders {
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.transition-all {
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.awaiting-order-placeholder {
  text-align: center;
  margin-top: 40vh;
  font-family: 'metropolissemi_bold';
  color: #8a8a8a;
  font-size: 15px;
}

.wp-input-form {
  background: #f2f2f2;
  border: 0px;
}

  @media (max-width: 430px) {
    .pt-20-vhm {
      margin-top: 20vh;
    }
  }

  @media (max-width: 430px) {
    .pt-10-vhm {
      margin-top: 10vh;
    }
  }

  @media (max-width: 430px) {
    .pt-title-shipping {
      margin-top: 15px;
    }
  }
  

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

@media (max-width: 430px) {
  .mobile-shipping-side-tab-20 {
    height: 55px;
    position: absolute;
    background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
    width: 10px;
    left: 0;
    top: 0;
    margin-top: calc(20vh + 16px);
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

@media (max-width: 430px) {
  .mobile-shipping-side-tab-10 {
    height: 55px;
    position: absolute;
    background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
    width: 10px;
    left: 0;
    top: 0;
    margin-top: 25px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
  }
}

.top-admin-strip {
  background: #20769b;
  left: 0;
  width: 100%;
  /* position: absolute; */
  padding: 15px 15px;
  font-size: 18px;
  display: flex;
  align-items: center;
}

#mobile-form-part-two {
  display:none
}

@media (max-width: 430px) {
  .index-height-wp {
    /* min-height: 100vh;
    padding-top: 70px; */
    background: #0d2c36;
  }
}

.container-height-wp {
  min-height: 100vh;
  padding-top: 80px;
}


@media (min-width: 431px) {
  .index-height-wp {
    /* min-height: 100vh;
    background: #8ba1ad; */

    display: flex;
    height: 100%;
    min-height: 100vh;
    background: #8ba1ad;
  }
}

.wp-index-right-col {
  /* background-color: #c6d5dd; */
  background-color: #d8e3e9;
  width: 100%;
  max-height: 100%;
  overflow: scroll;
}

.wp-index-left-col {
  position: fixed;
  top: 0;
  z-index: 50;
  left: 0;
  height: 100%;
}
@media (max-width: 431px) {
  #freshworks-container {
    z-index: -9999999999!important;
    position: absolute;
  }  
}

@media (min-width: 431px) {
  .dispatch-package-background {
    background: #f9f9f9;
    padding: 5px 10px;
    border-radius: 8px;
    margin-right:5px;
  } 
}

@media (min-width: 431px) {
  .package-selector-title {
    min-width: 230px!important;
  } 
}

.package-selector-title {
  min-width: 115px;
} 

.order-actions-circle {
  color: #607D8B;
  padding: 10px;
  background: #d8e3e9;
  border-radius: 25px;
  position: relative;
  z-index: 0;
}

.order-actions-circle::after {
  content: '';
  position: absolute;
  left: 48%;
  width: 2px;
  height: 30px;
  background-color: #d8e3e9;
  top: 90%;
}

.order-actions-circle::before {
  content: '';
  position: absolute;
  left: 48%;
  width: 2px;
  height: 30px;
  background-color: #d8e3e9;
  bottom: 100%;
}


.btn-wp-blue {
  background-image: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
  color:white!important;
  border-radius: 10px;
  outline: initial !important;
  box-shadow: none !important;
  box-shadow: initial !important;
  font-size: 0.8rem!important;
  padding: 0.7rem 1.4rem 0.7rem 1.4rem!important;
  transition: background-color box-shadow 0.1s linear;
  font-weight: 400!important;
  border:none!important;
  font-family: "Nunito", sans-serif!important;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
  cursor: pointer;
}

.btn-wp-blue:hover {
  webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  text-decoration: none;
}

.btn-wp-white-outline {
  background-image: none;
  color:white!important;
  border-radius: 10px;
  border: solid 1px #ffffff!important;
  outline: initial !important;
  box-shadow: none !important;
  box-shadow: initial !important;
  font-size: 0.8rem!important;
  padding: 0.8rem 1.4rem 0.7rem 1.4rem!important;
  transition: background-color box-shadow 0.1s linear;
  font-weight: 400!important;
  font-family: "Nunito", sans-serif!important;
  -webkit-transition: all 0.3s ease-in-out;
	-o-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.btn-wp-white-outline:hover {
  webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  color: #212529!important;
  text-decoration: none;
  border: solid 1px #212529!important;
}

.btn-wp-grey-outline:hover {
  webkit-box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
  color: #212529!important;
  text-decoration: none;
  border: solid 1px #212529!important;
}

.btn-wp-grey-outline {
  background-image: none;
  color: #7f7f7f!important;
  border-radius: 10px;
  border: solid 1px #7f7f7f!important;
  outline: initial !important;
  box-shadow: none !important;
  box-shadow: initial !important;
  font-size: 0.8rem!important;
  padding: 0.8rem 1.4rem 0.7rem 1.4rem!important;
  transition: background-color box-shadow 0.1s linear;
  font-weight: 400!important;
  font-family: "Nunito", sans-serif!important;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 430px) {
  .no-orders-heading {
    font-size:15px
  }
}

@media (min-width: 431px) {
  .no-orders-heading {
    font-size:20px
  }
}

.table-buttons:focus {
  background:#fa7070!important;
  border:solid 1px #fa7070!important;
  color:#ffffff!important;
}

.table-buttons {
  margin-bottom: 15px;
}

.table-buttons:focus-within::after {
  content: ' - Printing...';
}
.second-row-buttons {
  padding: 0px 15px;
  background: #b0c5d0!important;
}

.second-row-buttons .dt-refresh{
  font-size: 12px;
}

.card-dark-blue:hover {
  background: #495d67;
  -webkit-transition: all 0.5s ease-in-out;
	-o-transition: all 0.5s ease-in-out;
	transition: all 0.5s ease-in-out;
}

@media (min-width: 435px) {
  #user_avatar {
    background-color: #fa7070!important;
    color: white;
  }
}

.user-bottom-setting {
  font-family: metropolisbold;
  max-height: 45px;
  max-width: 45px;
  font-size: 15px;
  bottom: 0px;
  position: absolute!important;
  margin-bottom: 20px!important;
  width: 100%;
}

.desktop-fluid-body {
  max-width: 1300px;
  padding: 0 15px;
  margin: 0 auto;
  width: 100%;
}

@media (max-width: 1440px) {
  .desktop-fluid-body {
    max-width: 1100px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .desktop-fluid-body {
    max-width: 700px;
    padding: 0 15px;
    margin: 0 auto;
    width: 100%;
  }
}

.page-container {
  max-width: 2000px;
    padding: 15px 15px 15px 100px;
    margin: 0 auto;
    width: 100%;
}

@media (max-width: 2500px) {
  .page-container {
    max-width: 1900px;
    padding: 15px 15px 15px 100px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1950px) {
  .page-container {
    max-width: 1800px;
    padding: 15px 15px 15px 100px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1900px) {
  .page-container {
    max-width: 1650px;
    padding: 0px 0px 0px 90px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1700px) {
  .page-container {
    max-width: 1400px;
    padding: 0px 0px 0px 90px;
    margin: 0 auto;
    width: 100%;
  }
}


@media (max-width: 1440px) {
  .page-container {
    max-width: 1300px;
    padding: 0px 0px 0px 90px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1350px) {
  .page-container {
    max-width: 1080px;
    padding: 0px 0px 0px 90px;
    margin: 0 auto;
    width: 100%;
  }
}

@media (max-width: 1024px) {
  .page-container {
    max-width: 900px;
    padding: 0px 0px 0px 90px;
    margin: 0 auto;
    width: 100%;
  }
}

.page-container.expanded-menu {
  padding-left: 235px!important;
  transition: all 0.2s ease 0.2s;
  position: relative;
}

.welcome-header-container {
  padding: 25px 0;
}

.welcome-header-container.page-title {
  padding: 40px 0;
}

@media (max-width: 1024px) {
  .welcome-header-container {
    padding: 25px 0;
  }
}

.owl-carousel .owl-stage {
  /* height: calc(100vh - 150px); */
  /* height: calc(100vh - 70px); */
  height: 100vh;
  overflow-y: scroll!important;
}

progress[value] {
  /* Reset the default appearance */
  -webkit-appearance: none;
   appearance: none;
  height: 20px;
}

button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}


progress[value]::-webkit-progress-bar {
  background-color: rgb(83, 83, 83);
  border-radius: 2px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.25) inset;
}

progress[value]::-webkit-progress-value {
    background-color:#8bc34a!important;
    border-radius: 2px; 
    background-size: 35px 20px, 100% 100%, 100% 100%;
}


.publish-button {
  --color: #fff;
  --icon-color: #fff;
  --background-default: linear-gradient(to right top, #0096d6, #25a4da, #39addf);
  --text-normal-o: 1;
  --text-normal-y: 0px;
  --text-progress-o: 0;
  --text-progress-y: 0px;
  --text-done-o: 0;
  --text-done-y: 8px;
  --icon-arrow-offset: 0px;
  --icon-arrow-y: 0px;
  --icon-cloud-y: 0px;
  --icon-tick-offset: 11px;
  --icon-line-offset: 21px;
  --icon-circle-scale: 0;
  -webkit-tap-highlight-color: transparent;
  -webkit-appearance: none;
  outline: none;
  border: none;
  background: none;
  padding: 10px 20px 10px 12px;
  border-radius: 9px;
  overflow: hidden;
  margin: 0;
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
  color: var(--color);
  background: var(--background, var(--background-default));
  max-width: 160px!important;
  max-height: 40px!important;
}
.publish-button .icon {
  width: 20px;
  height: 20px;
  pointer-events: none;
  position: relative;
  margin-right: 8px;
}
.publish-button .icon:before {
  content: "";
  position: absolute;
  left: 1px;
  top: 1px;
  right: 1px;
  bottom: 1px;
  opacity: 0.25;
  border-radius: 50%;
  background: var(--icon-color);
  transform: scale(var(--icon-circle-scale)) translateZ(0);
}
.publish-button .icon svg {
  display: block;
  width: 20px;
  height: 24px;
  position: absolute;
  top: 0;
  left: 0;
}
.publish-button .icon svg.cloud {
  fill: var(--icon-color);
  fill-opacity: 0.25;
  transform: translateY(var(--icon-cloud-y)) translateZ(0);
}
.publish-button .icon svg:not(.cloud) {
  fill: none;
  stroke: var(--icon-color);
  stroke-width: 1.5;
  stroke-linecap: round;
}
.publish-button .icon svg:not(.cloud) path.line, .publish-button .icon svg:not(.cloud) path.arrow {
  transform: translateY(var(--icon-arrow-y)) translateZ(0);
}
.publish-button .icon svg:not(.cloud) path.line {
  stroke-dasharray: 13px;
  stroke-dashoffset: var(--icon-line-offset);
}
.publish-button .icon svg:not(.cloud) path.arrow {
  stroke-dasharray: 4px;
  stroke-dashoffset: var(--icon-arrow-offset);
}
.publish-button .icon svg:not(.cloud) path.tick {
  stroke-dasharray: 11px;
  stroke-dashoffset: var(--icon-tick-offset);
}
.publish-button .text {
  position: relative;
}
.publish-button .text span {
  display: block;
  opacity: var(--o, var(--text-normal-o));
  transform: translateY(var(--y, var(--text-normal-y))) translateZ(0);
}
.publish-button .text span:not(.normal) {
  position: absolute;
  left: 0;
  top: 20px;
}
.publish-button .text span.progress {
  --o: var(--text-progress-o);
  --y: var(--text-progress-y);
}
.publish-button .text span.done {
  --o: var(--text-done-o);
  --y: var(--text-done-y);
}

html {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
}
* {
  box-sizing: inherit;
}
*:before, *:after {
  box-sizing: inherit;
}

.priority-queue {
  padding: 0px 60px!important
}

#priorityOrdersShowing::before {
  background:#ffc107
}

#stats-page .owl-stage-outer {
  max-height: 65vh;
}

.opacity0 {
  opacity: 0%;
}

.card-dark-blue-outline {
  background:none;
  border: solid 2px #37474f;
}

.card-index-stats-number {
  right: 0;
  position: absolute;
  padding: 15px 30px;
  top: 15px;
  font-size: 25px;
  font-family: metropolisbold;
  color: #f34336;
}

.card-stats {
  border-radius: 1.5rem!important;
  max-width:100%;
  margin-top: -30px;
  justify-content:flex-start
}


@media (min-width: 435px) {
  .center-desktop-div {
    width: 40vw;
    height: 60vh;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20vw;
    margin-top: -30vh;
  }
}

@media (min-width: 1024px) {
  .center-desktop-div {
    width: 80vw;
    height: 60vh;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -40vw;
    margin-top: -30vh;
  }
}

@media (min-width: 1440px) {
  .center-desktop-div {
    width: 60vw;
    height: 60vh;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -30vw;
    margin-top: -30vh;
  }
}

@media (min-width: 2200px) {
  .center-desktop-div {
    width: 40vw;
    height: 60vh;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -20vw;
    margin-top: -30vh;
  }
}
@media (max-width: 430px) {
  .country-dropdown {
    flex-direction: column !important;
  }
}


.shipping-tag {
  border: solid 1px white;
  padding: 3px 5px;
  border-radius: 6px;
  font-size: 10px;
}

.no-select {
  -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;     
}

@media (min-width: 435px) {
  .desktop-print-btn {
    width: 45%!important;
    margin-top: 20px!important;
    color: #ffffff!important;
    float: right!important;
  }
}


@media (min-width: 435px) {
  .desktop-next-btn {
    width: 45%!important;
    margin-top: 20px!important;
  }
}

.wp-search {
  display: flex;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease 0.6s;
  box-shadow: 0 3px 14px -1px rgba(0, 0, 0, .18);
  background: #ffffff;
}
.wp-search svg {
  cursor: pointer;
  margin: 20px;
  width: 18px;
  height: 18px;
  display: block;
  color: #000;
  stroke-width: 2;
  transform: rotate(90deg);
  transition: all 0.3s ease 0.6s;
}
.wp-search > div {
  position: relative;
  width: 0;
  transition: all 0.5s cubic-bezier(0.51, 0.92, 0.24, 1.15) 0.5s;
}
.wp-search > div input {
  font-size: inherit;
  line-height: inherit;
  padding: 0 24px 0 0;
  border: 0;
  display: block;
  outline: none;
  font-family: inherit;
  position: absolute;
  line-height: 20px;
  font-size: 16px;
  background: #fff;
  -webkit-appearance: none;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
  transition: all 0s ease 0s;
}
.wp-search > div input::-webkit-input-placeholder {
  color: #000;
}
.wp-search > div input:-moz-placeholder {
  color: #000;
}
.wp-search > div input::-moz-placeholder {
  color: #000;
}
.wp-search > div input:-ms-input-placeholder {
  color: #000;
}
.wp-search > div > div {
  white-space: nowrap;
  color: #000;
  display: flex;
}
.wp-search > div > div span {
  line-height: 20px;
  font-size: 16px;
  opacity: 0;
  display: block;
  visibility: hidden;
  transform: translate(0, 12px);
  transition: all 0.4s ease;
}
.wp-search > div > div span:nth-child(1) {
  transition-delay: 0.4s;
}
.wp-search > div > div span:nth-child(2) {
  transition-delay: 0.2s;
}
.wp-search > div > div span:nth-child(3) {
  transition-delay: 0s;
}
.wp-search.open {
  cursor: default;
  border-radius: 8px;
  transition-delay: 0s;
  box-shadow: 0 10px 36px -2px rgba(0, 0, 0, .18);
}
.wp-search.open svg {
  opacity: 0.4;
  transform: rotate(0deg);
  transition-delay: 0s;
}
.wp-search.open > div {
  transition-delay: 0s;
  width: 200px;
}
.wp-search.open > div > div span {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.wp-search.open > div > div span:nth-child(1) {
  transition-delay: 0.4s;
}
.wp-search.open > div > div span:nth-child(2) {
  transition-delay: 0.45s;
}
.wp-search.open > div > div span:nth-child(3) {
  transition-delay: 0.5s;
}
.wp-search.open > div input {
  opacity: 1;
  visibility: visible;
  transition-delay: 0.75s;
}

.wp-search-datatables {
  display: flex;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #c4dbe700;
}
@media (max-width: 1024px) {
  .wp-search-datatables {
    display: flex;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.4s ease;
    background: #b0c6d0;
    box-shadow: 0 0 1rem 1px rgb(0 0 0 / 6%) !important;
  }
}
.wp-search-datatables svg {
  cursor: pointer;
  margin: 20px;
  width: 18px;
  height: 18px;
  display: block;
  color: #000;
  stroke-width: 2;
  transform: rotate(90deg);
  transition: all 0.4s ease;
}
.wp-search-datatables > div {
  position: relative;
  width: 0;
  transition: all 0.4s ease;
}

.datatables-order-complete-row td{
  /* color: #6e818999!important; */
  opacity: 50%;
}

.datatables-order-complete-row td:hover{
  opacity: 100%;
  transition: all 0.3s ease-in-out;
}

#order-specific-details .wp-search-datatables > div input {
  background: #d8e9f500!important;
}

#order-specific-details .wp-search-datatables > div input::placeholder {
  color: #455A64!important
}

#inwards-receipt-specific-details .wp-search-datatables > div input {
  background: #f1faff!important;
}

#inwards-receipt-specific-details .wp-search-datatables > div input::placeholder {
  color: #455A64!important
}

.wp-search-datatables > div input {
  font-size: inherit;
  line-height: inherit;
  padding: 0 24px 0 0;
  border: 0;
  display: block;
  outline: none;
  font-family: inherit;
  position: absolute;
  line-height: 20px;
  font-size: 16px;
  /* background: #b0c5d0; */
  -webkit-appearance: none;
  top: 0;
  width: 100%;
  opacity: 0;
  z-index: 1;
  visibility: hidden;
}
.wp-search-datatables > div input::-webkit-input-placeholder {
  color: #000;
}
.wp-search-datatables > div input:-moz-placeholder {
  color: #000;
}
.wp-search-datatables > div input::-moz-placeholder {
  color: #000;
}
.wp-search-datatables > div input:-ms-input-placeholder {
  color: #000;
}
.wp-search-datatables > div > div {
  white-space: nowrap;
  color: #000;
  display: flex;
}
.wp-search-datatables > div > div span {
  line-height: 20px;
  font-size: 16px;
  opacity: 0!important;
  display: block;
  visibility: hidden;
  transform: translate(0, 12px);
  transition: all 0.4s ease;
}
.wp-search-datatables.open {
  cursor: default;
  border-radius: 8px;
  border: solid 1px #b0c4d052;
}

table#pending-orders-dashboard tr:not(:last-child) {
  border-bottom: solid #f0f0f0 1px;
}

.wp-search-datatables.open svg {
  opacity: 0.4;
  transform: rotate(0deg);
}
.wp-search-datatables.open > div {
  width: 200px;
}
.wp-search-datatables.open > div > div span {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}

.wp-search-datatables.open > div input {
  opacity: 1;
  visibility: visible;

}

.search-orders-status {
  font-size: 13px;
  font-family: 'metropolissemi_bold';
  text-align: right;
  color: #37474f;
  padding: 8px 10px;
  border-radius: 10px;
  top: 22px;
  background: #ffffff;
}

.search-order-header {
    color: #3e474b!important;
    font-family: 'metropolissemi_bold';
    font-size: 20px;
}

.tracking-search {
  max-height: 50px;
  right: 40px;
  margin-top: 26px;
}

.mapboxgl-ctrl {
  display:none!important
}

.map-overlay {
  position: absolute;
  z-index: 100;
  padding: 30px;
  display: grid;
}

.wp-tab-active {
  font-family: 'metropolisbold';
  color: #29a4da;
  font-size: 15px;
  border-bottom: 2px #29a4da solid;
  padding-bottom: 10px;
  padding: 10px 5px;
}

.wp-tab {
  font-family: 'metropolisregular';
  color: #455A64;
  font-size: 15px;
}

.consignment-line-image {
  height: auto;
  width: 50px;
}

/* .consignment-invalid {
  //opacity: 30%!important;
} */

.consignment-invalid .nav-items {
  display:none!important
}



.carrier-tag {
  font-size: 10px;
  border: 1px solid;
  padding: 1px 5px;
  display: inline-block;
  border-radius: 5px;
  position: absolute;
  margin-top: 3px;
}

.purchase-order-tag {
  font-size: 10px;
  border: 1px solid;
  padding: 3px 12px;
  border-radius: 5px;
  line-height: 19px;
}

.carrier-tag-invalid {
  margin-top: 3px;
  color: white;
  border-radius: 5px;
  padding: 1px 5px;
  background: #ff9800;
  font-size: 10px;
  position: absolute;
  margin-left: 90px!important;
}
.carrier-tag-return {
display: revert;
margin-top: 3px;
color: white;
border-radius: 5px;
padding: 2px 5px;
background: #f9706f;
font-size: 10px;
position: absolute;
margin-left: 30px!important;
}

.carrier-tag-clone {
  display: revert;
  margin-top: 3px;
  color: white;
  border-radius: 5px;
  padding: 2px 5px;
  background: #8bc34a9e;
  font-size: 10px;
  position: absolute;
  margin-left: 90px!important;
}

.wp-control-buttons {
  margin-right: 15px;
  position: absolute;
  right: 0px;
  padding: 15px;
  display: inline-flex;
  margin-top: -80px;
}

.side-modal-title {
  color: #455A64!important;
  font-family: 'metropolissemi_bold';
  font-size:15px
}
.side-modal-page-title {
  color: #455A64!important;
  font-family: 'metropolissemi_bold';
  font-size:20px
}
.side-modal-subtitle {
  color: #455A64!important;
  font-family: 'metropolisregular';
  font-size:14px
}
.side-modal-body {
  color: #455A64!important;
  font-family: 'metropolisregular';
  font-size:15px
}
.user-avatar-page {
  background-color: #37474f;
  color: #ffffff;
  font-family: metropolisbold;
  height: 50px;
  width: 50px;
  font-size: 20px;
  margin: 0 auto;
  text-align: center;
  align-items: center;
  display: grid;
  margin-top: -100px;
}

.profile-name {
  position: absolute;
  text-align: center;
  width: calc(100% - 40px);
  font-family: metropolisbold;
  font-size: 13px;
}

/* AM CHARTS */
[aria-labelledby="id-68-title"] {
  display: none
}
[aria-labelledby="id-229-title"] {
  display: none
}

.pack-popup {
  font-family: 'metropolissemi_bold';
  font-size: 15px;
}

.rounded .data-table-rows .wolfpak-shipped td {
  background: none!important;
  color: #6e8189;
  padding: 8px;
  font-family: 'metropolissemi_bold';
  font-size: 14px;
  text-transform: capitalize;
  box-shadow: none;
}

.rounded .data-table-rows .wolfpak-shipped th {
  padding: 8px!important;
}

.data-table-rows .wolfpak-shipped tbody tr {
  box-shadow: none!important;
  background-color: transparent;
}

.wp-gen-table {
  background: #f1faff;
  padding: 20px;
  border-radius: 8px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.3)!important;
}

.data-table-rows .table-opaque tbody tr {
  opacity: 50%;
}

.rounded .data-table-rows .wp-gen-table td {
  background: none!important;
  color: #6e8189;
  padding: 8px;
  font-family: 'metropolissemi_bold';
  font-size: 14px;
  text-transform: capitalize;
}

.rounded .data-table-rows .wp-gen-table th {
  padding: 8px!important;
}

.data-table-rows .wp-gen-table tbody tr {
  box-shadow: none!important;
  background-color: transparent;
}

table.dataTable thead th, table.dataTable tfoot th {
  font-weight: 100!important;
}

table.dataTable.no-footer {
  border-bottom: 1px solid #b0c5d0!important;
  margin-bottom: 15px!important;
}

table.dataTable thead th, table.dataTable thead td {
  border-bottom: 1px solid #b0c5d0!important
}

/* table.dataTable tbody td.select-checkbox:before, table.dataTable tbody td.select-checkbox:after, table.dataTable tbody th.select-checkbox:before, table.dataTable tbody th.select-checkbox:after {
  display: block!important;
  position: absolute!important;
  top: 45%!important;
  left: 50%!important;
  width: 12px!important;
  height: 12px!important;
  box-sizing: border-box!important;
} */

.rounded .data-table-rows table td:first-child {
  border-top-left-radius: 8px!important;
  border-bottom-left-radius: 8px!important;
}

.rounded .data-table-rows table td:last-child {
  border-top-right-radius: 8px!important;
  border-bottom-right-radius: 8px!important;
}

table.dataTable>tbody>tr>td.select-checkbox:before, table.dataTable>tbody>tr>th.select-checkbox:before {
  content: '\f0c8'!important;
    font-family: 'Font Awesome 6 Pro'!important;
    font-weight: 400!important;
    color: #607c8a!important;
    font-size: 13px!important;
    margin-top: -7px!important;
    text-shadow: none!important;
    margin-left: -6px!important;
    border: revert !important;
    top:50%;
}

table.dataTable tr.selected td.select-checkbox::after, table.dataTable tr.selected th.select-checkbox::after  {
  content: '\f14a'!important;
    font-family: 'Font Awesome 6 Pro'!important;
    font-weight: 800!important;
    color: #607c8a!important;
    font-size: 13px!important;
    margin-top: -7px!important;
    text-shadow: none!important;
    margin-left: -6px!important;
    top:50%;
}

.data-table-rows table {
  border-spacing: 0px 5px;
}

table.dataTable tbody tr.selected {
  background-color: #ffffff!important;
}

table.dataTable thead .sorting {
  background-image: none!important;
}

table.dataTable thead .sorting_desc {
  background-image: none!important;
}

table.dataTable thead .sorting:before {
  display:none!important
}

table.dataTable thead .sorting:after {
  background-image: none;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 800;
  content: '\f0dc'!important;
  padding-left: 15px;
  color: #a1b5c0;
  text-shadow: none!important;
  position: unset!important;
  display: unset!important;
  opacity: unset!important;
}

table.dataTable thead .sorting_desc:after {
  background-image: none;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 800;
  content: '\f0dd'!important;
  padding-left: 15px;
  color: #607c8a;
  position: unset!important;
  display: unset!important;
  opacity: unset!important;
}

.dt-button-fix-live {
  display: none;
}

table.dataTable thead .sorting_asc:after {
  background-image: none;
  font-family: 'Font Awesome 6 Pro';
  font-weight: 800;
  content: '\f0de'!important;
  padding-left: 15px;
  color: #607c8a;
  position: unset!important;
  display: !important;
  opacity: unset!important;
}


.dt-button-actions {
  color: #ffffff;
  font-family: 'metropolisbold';
  background: #f9706f;
  padding: 0.6em 0.75em;
  font-size: 74%;
  border-radius: .25rem;
  cursor:pointer;
}

/* #recently-shipped-table .dt-buttons {
    right: unset;
    top: unset;
    position: unset;
    padding: unset;
    position: absolute;
    margin-top: -45px;
    margin-left: 190px;
} */

#all-orders-table .dt-buttons {
  right: unset;
    top: unset;
    position: unset;
    padding: unset;
    margin-bottom: 15px;
}

/* #recently-shipped-table .dt-buttons .btn{
  display: flex;
  align-items: center;
  border-radius: 8px!important;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #b0c4d0;
  height: 100%;
  max-width: 180px;
  color: #2e3638;
  border: none;
  margin-right: 10px;
  min-width: 150px;
  justify-content: space-evenly;
} */

#all-orders-table .dt-buttons .btn{
  display: flex;
  align-items: center;
  border-radius: 8px!important;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #b0c4d0;
  height: 100%;
  max-width: 180px;
  color: #2e3638;
  border: none;
  margin-right: 10px;
  min-width: 150px;
  justify-content: space-evenly;
}


.dt-buttons {
  display:none
}

#recently-shipped-table .dtsb-button {
  font-size: 0.8rem;
  height: 35.2px;
  min-width: 180px;
  justify-content: center;
} 
/* 
#recently-shipped-table .dt-buttons {
  min-width: 190px;
}  */


.pending-orders-sidebar {
  background: #b2bdc44f;
  padding: 2px 5px;
  border-radius: 8px;
  color: #596c785c;
  min-width: 22px;
  text-align: center;
}


.pending-messages-sidebar {
  background: #b2bdc44f;
  padding: 2px 5px;
  border-radius: 8px;
  color: #596c785c;
  min-width: 22px;
  text-align: center;
  min-height: 22.3px;
}

.unread-messages-sidebar {
  background: #fa706f!important;
  color: #ffffff!important;
  font-family: 'metropolissemi_bold';
}

.search-header-container {
  padding: 30px 20px;
  background: #b0c6d0;
  border-radius: 10px;
}

@media (max-width: 1024px) {
  .search-header-container {
    padding: 0px!important;
    background: none!important;
    border-radius: 10px;
  }
}

.refresh-datatable {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #bed4e0;
  height: 40px;
  max-width: 180px;
}
@media (max-width: 1024px) {
.refresh-datatable {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #b0c5d0;
  height: 100%;
  max-width: 180px;
  box-shadow: 0 0 1rem 1px rgb(0 0 0 / 6%) !important;

}

}.button-datatable {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #b0c5d0;
  height: 100%;
  max-width: 180px;
}
@media (max-width: 1024px) {
.button-datatable {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #c4dbe7;
  height: 100%;
  max-width: 180px;
  box-shadow: 0 0 1rem 1px rgb(0 0 0 / 6%) !important;

}
}

.auto-refresh-datatable {
  min-width: 130px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  height: 40px;
  max-width: 180px;
}

.datatable-buttons {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #c4dbe7;
  height: 100%;
  max-width: 180px;
}

.datatable-buttons-active {
  background: #607d8b!important;
  box-shadow: 0px 2px 0.5em 0px #607d8b8c;
  transition: all 0.4s ease;
}


.datatable-buttons-active .dt-refresh{
  color: #ffffff!important;
  transition: all 0.4s ease;
}

.datatable-buttons:hover {
  box-shadow: 0 10px 36px -2px rgb(0 0 0 / 18%);
}

.page-buttons {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #b0c5d0;
  /* height: 100%; */
  max-width: 180px;
}

.page-buttons-active {
  background: #607d8b!important;
  box-shadow: 0px 2px 0.5em 0px #607d8b8c;
  transition: all 0.4s ease;
}

.page-buttons-active .dt-refresh{
  color: #ffffff!important;
  transition: all 0.4s ease;
}

.page-buttons:hover {
  box-shadow: 0px 3px 7px -2px rgb(0 0 0 / 18%)
}

.refresh-datatable:hover {
  box-shadow: 0 10px 36px -2px rgb(0 0 0 / 18%);
}

.overdue-order {
  color: #f8706e;
  font-family: 'metropolisbold';
}


.dt-refresh {
  width: 100%;
  text-align: center;
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size:15px
}

.blade-action {
  width: 100%;
  text-align: center;
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size: 15px;
}

.update-address-blade {
  border: solid 1px;
  padding: 8px 10px;
  border-radius: 8px;
  margin-top: 15px;
  font-family: 'metropolissemi_bold';
  font-size: 15px;
}

@media (max-width: 1024px) {
  .dt-add-btns {
    width: 100%;
    text-align: center;
    color: #1c2021;
    font-family: 'metropolissemi_bold';
    font-size:12px;
    padding: 10px;
    border: 1px solid #86aabb69;
    border-radius: 8px;
  }
  
}

.nfc-background {
  background-color: white;
  height: 100%;
  /* position: absolute; */
  overflow: hidden;
}

.nfc-footer {
  top: 85vh;
  position: relative;
  margin: 0 auto;
  width: 250px;
  z-index: 100;
}

.nfc-headers {
  color: #455a64;
  font-family: metropolisblack;
  font-size: 25px;
  text-align: center;
  transition: all 0.4s ease;
}

.nfc-subtitles {
  color: #455a64;
  font-family: metropolislight;
  font-size: 15px;
  text-align: center;
  margin-top: 10px;
  transition: all 0.4s ease;
}

#nfc-data p {
  font-size: 7px;
  line-height: 10px;
  font-family: "Nunito", sans-serif;
  margin-bottom: 0px;
  opacity: 20%;
}

.id-device {
  margin-left: auto;
    margin-right: auto;
    margin-top: -10vh;
    display: block;
    transition: all 1.5s ease;
}

.id-card {
  width: 125px;
  height: 70px;
  border-radius: 10px;
  margin-left: auto;
  margin-right: auto;
  display: block;
  transition: all 1.5s ease;
}

@keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1, 1);
  }
  50% {
    opacity: 0.3;
  }
  100% {
    transform: scale(1.5);
    opacity: 0;
  }
}


.id-pulse {
  opacity: 0;
  animation: pulse 2s cubic-bezier(0.4, 0, 0.2, 1) 2s infinite;
  border: 5px solid #039dc75c;
  filter: blur(3px);
  width: 150px;
  height: 150;
  border-radius: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-top: -55vh;
  display: block;
  z-index:1;
}

.shipping-padding-mobile {
  padding: 20px 5px!important;
}

.qty-selector {
  display: flex;
  align-items: center;
  border: 1px solid #0283b0;
  border-radius: 8px;
  max-width: 105px;
  min-width: 105px;
  height:43px;
}

.edit-package-icon {
  min-width: 43px;
  max-width: 43px;
  text-align: center;
  color: #bfd0daab;
  width: 50px;
  overflow: hidden;
  max-height: 43px;
  background: #ffffff;
  border-radius: 8px;
  min-height: 43px;
  border: solid 1px #bfd0daab;
  justify-content: center;
  align-items: center;
}
.hide-package-edit-panel {
  display:none !important;
}

.qty-selector .form-control:focus {
  transition: all 0.3s ease-in-out;
  box-shadow: none!important;
  border: none!important;
  background: transparent!important;
  text-align: center;
  font-family: 'metropolisbold'
}

.qty-selector .form-control {
  transition: all 0.3s ease-in-out;
  box-shadow: none!important;
  border: none!important;
  background: transparent!important;
  text-align: center;
  font-family: 'metropolisbold'
}

.qty-increment {
  color: #0283b0;
  padding: 0px 15px;
  height: 100%;
}

#change-address-details .form-control, .bootstrap-tagsinput {
    color: #607D8B!important;
    font-weight: 600;
    font-size: 15px;
}

.login-buttons-container {
  display: flex;
}

.login-button-grey {
  margin: 0 auto;
  width: 100%;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
  font-size: 12px;
  /* opacity: 0; */
  background: #607d8b33;
  cursor: pointer;
  overflow: hidden;
}

.login-button-white {
  text-align: left!important;
  padding: 15px 20px;
  background: #ffffff;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
  font-size: 12px;
  color: #607d8b9c;
  cursor: pointer;
}

.login-button-pink {
  position: sticky;
  background: #fa7070;
  bottom: 120;
  margin: 0 auto;
  width: 85%;
  padding: 15px;
  text-align: center;
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
  font-size: 14px;
  opacity: 0;
  color: #ffffff;
}

.gen-validation-message {
  color: #fa7070;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
}

.gen-popup-input-login {
  display: flex;
  border-radius: 6px;
  border-color: #b0bec575;
  margin-top: 25px;
}

.gen-popup-actions-login {
  z-index: 0!important;
}

.settings-group-header {
  font-family: 'metropolissemi_bold';
  font-size: 20px;
  color:#455A64;
}

.setting-divider {
  border-bottom: solid 1px #c6d5dd5e;
  gap: 10%;
}

.stock-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  border: 1px solid var(--wolfpak_grey);
  padding: 10px 15px 10px 15px;
  border-radius: 8px;
}

.card-no-background {
  background: none!important;
}

.setting-container {
  background: #ffffff;
  padding: 35px;
  border-radius: 8px;
  box-shadow: 0px 0rem 0.4rem rgb(0 0 0 / 6%) !important;
  border: 1px solid rgb(229, 239, 255);
}

.setting-button {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #edf0f2;
  height: 100%;
  max-width: 120px;
  transition: all 0.3s ease;
}

.setting-button.enabled {
  background: #8bc34a9e!important;
  transition: all 0.3s ease;
}

.setting-button-text {
  width: 100%;
  text-align: center;
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size: 15px;
  transition: all 0.3s ease;
}

.service-provider-container {
  color: #455964;
  background: #e2e7ea;
  height: 180px;
  flex-grow: 1;
  padding: 15px;
  border-radius: 8px;
  opacity: 60%;
  transition: all 0.3s ease;
  max-width: 33.3%;
}

.setting-card-choice-container {
  color: #455964;
  background: #e2e7ea;
  flex-grow: 1;
  padding: 15px;
  border-radius: 8px;
  opacity: 60%;
  transition: all 0.3s ease;
}

.setting-card-choice-container.enabled {
  background: #8bc34a9e;
  opacity: 100%;
  transition: all 0.3s ease;
}

.selected-provider {
  border: solid 1px #e4e4e4;
  opacity: 100%!important;
  transition: all 0.3s ease;
}

.provider-selected-tick {
  color: #607d8b;
  margin-left: -37px;
  margin-top: 10px;
  font-size: 20px;
}

.not-selected-provider-tick {
  opacity: 0%;
}

.selected-provider-tick {
  opacity: 100%!important;
}

@media (min-width: 435px) {
  .provider-selected-tick {
    color: #607d8b;
    margin-top: 30px;
    font-size: 25px;
    position: absolute;
    right: 45px;
  }
}

.not-selected-provider {
  opacity: 50%;
  transition: all 0.3s ease;
}

.service-provider-container.enabled {
  background: #8bc34a9e;
  opacity: 100%;
  transition: all 0.3s ease;
}

.setting-title {
  color: #455A64;
  font-family: metropolissemi_bold;
  font-size: 17px;
  margin-bottom: 0px;
}

.settings-page-title {
  font-size:25px;
  font-family:metropolisbold;
  color: #455A64;
}
@media (max-width: 1024px) {
  .settings-page-title {
    font-size:19px!important;
    font-family:metropolisbold;
    color: #455A64;
  }
  
}

@media (max-width: 1024px) {
  .settings-page-subtitle {
    font-size:14px!important;
    font-family:metropolisregular;
    color: #455A64;
  }
  
}

.settings-page-subtitle {
  font-size:14px;
  font-family:metropolisregular;
  color: #455A64;
}

.page-background {
  background: #c6d5dd!important
}

.page-topbar-padding {
  padding-top: 80px;
}

@media (min-width: 435px) {
  .page-left-margin {
    margin-left: 90px;
  }
}

.settings-card-icon {
  width: 40px;
  height: 40px;
}

.orders-pick-icon {
  text-align: right;
  font-size: 25px;
}

.orders-pick-icon .success {
  color: #8bc34a;
}

.orders-pick-icon .fail {
  color: #f44336;
}

.settings-card-icon-right {
  font-size: 20px;
}

.setting-card-container {
  /* margin-left:65px; */
}

.graph-dot-pink {
  width: 15px;
  background: #f9706f;
  height: 15px;
  position: absolute;
  border-radius: 10px;
  margin-left:-20px;
  margin-top:1px;
}

.graph-dot-blue {
  width: 15px;
  background: #0096d6;
  height: 15px;
  position: absolute;
  border-radius: 10px;
  margin-left:-20px;
  margin-top:1px;
}

.circle-shape {
	position: absolute;
	top: -20%;
	left: -13%;
  max-height: calc(100vh + 20%);
}

.setting-card-item {
  border-radius: 1.5rem;
  max-width:100%;
  /* background: #b0c6d0; */
  background: #c2d3db;
}

.setting-item-title {
  font-size:25px;
  font-family:metropolisbold;
  color:#455A64
}

.setting-item-title-child {
  font-size:17px;
  font-family:metropolisbold;
  color:#455A64
}

.setting-item-subtitle {
  font-size:17px;
  font-family:metropolisregular;
  color:#455A64 
}

.setting-item-subtitle-child {
  font-size:12px;
  font-family:metropolisregular;
  color:#455A64 
}

.generic-page-subtitle {
  font-size:20px;
  font-family:metropolisregular;
  font-size:13px
}

.gen-input {
  padding: 11px;
  border-radius: 8px;
  border: none;
  background: #607d8b17;
  width: 100%;
}

.settings-input {
  text-align: left!important;
  padding: 15px 20px;
  background: #edf0f2;
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
  font-size: 12px;
  color: #607d8b9c;
  cursor: pointer;
}

.settings-input.blade {
  background: #ffffff!important;
}

.settings-input input {
  background: #edf0f2!important;
}

.settings-input-text {
  background: #edf0f2!important;
}

.settings-input-text {
  border:none;
  outline: none;
  width:100%
}

.settings-left-container {
  cursor:pointer;
  padding: 15px;
}

.settings-card {
  border-radius: 1.5rem;
  max-width:100%;
  border: 1px solid #ffffff4a;
}

.settings-card-title {
  font-family: metropolissemi_bold;
  font-size: 18px;
  margin-bottom: 5px;
}

.custom-switch .custom-switch-input + .custom-switch-btn:after {
  background: #ffffff!important;
}

.custom-switch.custom-switch-primary .custom-switch-input:checked + .custom-switch-btn {
  background: #0096d6;
  border: 1px solid #0096d6;
}

.pointer {
  cursor:pointer;
}


.dropdown {
  --max-scroll: 8;
  --text: #9ba5b5;
  --border: #cdd9ed;
  --borderActive: #23c4f8;
  --background: #fff;
  --arrow: #99a3ba;
  --arrowActive: #6c7486;
  --listText: #99a3ba;
  --listBackground: #fff;
  --listActive: #f5f9ff;
  --listTextActive: #6c7486;
  --listBorder: #e4ecfa;
  --textFilled: #455A64;
  width: 100%;
  position: relative;
}

#login .dropdown > span {
  border: none!important;
  background: none!important;
}

.dropdown select {
  display: none;
}

select.root ~ span.placeholder-title {
  background: repeating-linear-gradient( 45deg, #FFA726, #FFA726 10px, #fdb03b 10px, #fdb03b 20px)!important;
  color: #ffffff!important;
}

select.root ~ ul {
  background: repeating-linear-gradient( 45deg, #FFA726, #FFA726 10px, #fdb03b 10px, #fdb03b 20px)!important;
}
select.root ~ ul li a {
  color: #ffffff!important;
  font-family: 'metropolissemi_bold';
}


.dropdown > span {
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 6px;
  display: block;
  position: relative;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  transition: all 0.3s ease;
  min-height: 43.5px;
  line-height: 21px;
  text-align: left;
  font-family: 'metropolisregular';
}
.dropdown > span:before, .dropdown > span:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 35%;
  right: 15px;
  background: var(--arrow);
  transition: all 0.3s ease;
}

.dropdown > span.no-chevron:before, .dropdown > span.no-chevron:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 35%;
  right: 15px;
  background: none!important;
  transition: all 0.3s ease;
}
.dropdown > span:before {
  margin-right: 4px;
  transform: scale(0.96, 0.8) rotate(50deg);
}
.dropdown > span:after {
  transform: scale(0.96, 0.8) rotate(-50deg);
}

.dropdown.actions ul {
    width: 200px;
    left: revert!important;
}

.dropdown ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 42px);
  top: 42px;
  left: 0;
  z-index: 9999;
  right: 0;
  background: var(--listBackground);
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: 0 0;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transform: scale(0.8) translate(0, 4px);
  border: 1px solid var(--listBorder);
  box-shadow: 0px 0rem 1rem 1px #2b333829 !important;
}

.dropdown ul li {
  opacity: 0;
  transform: translate(6px, 0);
  transition: opacity 0.2s ease,transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}
.dropdown ul li a {
  cursor: pointer;
  display: block;
  padding: 10px 16px;
  color: var(--listText)!important;
  text-decoration: none;
  outline: none;
  position: relative;
}
.dropdown ul li a:hover {
  color: var(--listTextActive);
}
.dropdown ul li.active a {
  color: var(--listTextActive);
  background: var(--listActive);
}
/* .dropdown ul li.active a:before, .dropdown ul li.active a:after {
  --scale: 0.6;
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 17px;
  top: 50%;
  opacity: 0;
  background: var(--listText);
  transition: all 0.2s ease;
} */
.dropdown ul li.active a:before {
  transform: rotate(45deg) scale(var(--scale));
}
.dropdown ul li.active a:after {
  transform: rotate(-45deg) scale(var(--scale));
}
.dropdown ul li.active a:hover:before, .dropdown ul li.active a:hover:after {
  --scale: 0.9;
  opacity: 1;
}
.dropdown ul li:first-child a {
  border-radius: 6px 6px 0 0;
}
.dropdown ul li:last-child a {
  border-radius: 0 0 6px 6px;
}
.dropdown.filled > span {
  color: var(--textFilled);
}
.dropdown.open > span {
  border-color: var(--borderActive);
}
.dropdown.open > span:before, .dropdown.open > span:after {
  background: var(--arrowActive);
}
.dropdown.open > span:before {
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.dropdown.open > span:after {
  transform: scale(0.96, 0.8) rotate(50deg);
}
.dropdown.open ul {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(0, 12px);
  /* transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32); */
}
.dropdown.open ul li {
  opacity: 1;
  transform: translate(0, 0);
}
.dropdown.open ul li:nth-child(1) {
  transition-delay: 80ms;
}
.dropdown.open ul li:nth-child(2) {
  transition-delay: 160ms;
}
.dropdown.open ul li:nth-child(3) {
  transition-delay: 240ms;
}
.dropdown.open ul li:nth-child(4) {
  transition-delay: 320ms;
}
.dropdown.open ul li:nth-child(5) {
  transition-delay: 400ms;
}
.dropdown.open ul li:nth-child(6) {
  transition-delay: 480ms;
}
.dropdown.open ul li:nth-child(7) {
  transition-delay: 560ms;
}
.dropdown.open ul li:nth-child(8) {
  transition-delay: 640ms;
}
.dropdown.open ul li:nth-child(9) {
  transition-delay: 720ms;
}
.dropdown.open ul li:nth-child(10) {
  transition-delay: 800ms;
}
select {
  --text: #3f4656;
  --border: #2f3545;
  --background: #151924;
}
select.dropdown {
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  line-height: 22px;
  font-size: 16px;
  font-family: inherit;
  -webkit-appearance: none;
}

.shipping-inputs .dropdown > span {
  min-height: 54.8px!important;
  line-height: 35px!important;
  border: 1px solid #e7e7e7!important;
  background: #f2f2f2!important;
  font-weight: 600;
  font-size: 15px;
  color: #666666;
}

.gen-dropdown.small + ul {
  max-height:150px!important;
}

.gen-dropdown .dropdown > span:before, .dropdown > span:before {
  top: 50%!important;
}
.gen-dropdown .dropdown > span:before, .dropdown > span:after {
  top: 50%!important;
}

#address-autocompleteTab .shipping-inputs .dropdown > span:before, .dropdown > span:before {
  top: 50%!important;
}

#address-autocompleteTab .shipping-inputs .dropdown > span:before, .dropdown > span:after {
  top: 50%!important;
}

.shipping-inputs .dropdown > span:before, .dropdown > span:before {
  top: 50%!important;
}
.shipping-inputs .dropdown > span:before, .dropdown > span:after {
  top: 50%!important;
}

#fulfillment-location-switcher-modal > span:before, .dropdown > span:after {
  top: 35%;
}

#fulfillment-location-switcher-modal > span:before, .dropdown > span:before {
  top: 35%;
}

.shipping-inputs .dropdown ul {
  top: 50px!important;
  box-shadow: 0px 0rem 1rem 2px #2b33382e !important;
}

.dropdown-secondary {
  --max-scroll: 8;
  --text: #1e2224;
  --border: none;
  --borderActive: #23c4f8;
  --background: #b0c5d0;
  --borderRadius: 8px;
  --arrow: #99a3ba;
  --arrowActive: #6c7486;
  --listText: #99a3ba;
  --listBackground: #fff;
  --listActive: #f5f9ff;
  --listTextActive: #6c7486;
  --listBorder: #e4ecfa;
  --textFilled: #1e2224;
  width: 100%;
  position: relative;
}

#login .dropdown-secondary > span {
  border: none!important;
  background: none!important;
}

.dropdown-secondary select {
  display: none;
}
.dropdown-secondary > span {
  cursor: pointer;
  padding: 9px 16px;
  border-radius: 6px;
  display: block;
  position: relative;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  transition: all 0.3s ease;
  min-height: 40px;
  line-height: 21px;
  border-radius: 8px;
}

.dropdown-secondary > span:before, .dropdown-secondary > span:after {
  content: '';
  display: block;
  position: absolute;
  width: 8px;
  height: 2px;
  border-radius: 1px;
  top: 45%;
  right: 15px;
  background: var(--arrow);
  transition: all 0.3s ease;
}
.dropdown-secondary > span:before {
  margin-right: 4px;
  transform: scale(0.96, 0.8) rotate(50deg);
}
.dropdown-secondary > span:after {
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.dropdown-secondary ul {
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  max-height: calc(var(--max-scroll) * 42px);
  top: 42px;
  left: 0;
  z-index: 9999;
  right: 0;
  background: var(--listBackground);
  border-radius: 6px;
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: 0 0;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  transform: scale(0.8) translate(0, 4px);
  border: 1px solid var(--listBorder);
  box-shadow: 0px 0rem 1rem 2px #2b333869 !important;
}

.dropdown-secondary ul li {
  opacity: 0;
  transform: translate(6px, 0);
  transition: opacity 0.2s ease,transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
}
.dropdown-secondary ul li a {
  cursor: pointer;
  display: block;
  padding: 10px 16px;
  color: var(--listText)!important;
  text-decoration: none;
  outline: none;
  position: relative;
}
.dropdown-secondary ul li a:hover {
  color: var(--listTextActive);
}
.dropdown-secondary ul li.active a {
  color: var(--listTextActive);
  background: var(--listActive);
}
.dropdown-secondary ul li.active a:before, .dropdown-secondary ul li.active a:after {
  --scale: 0.6;
  content: '';
  display: block;
  width: 10px;
  height: 2px;
  position: absolute;
  right: 17px;
  top: 50%;
  opacity: 0;
  background: var(--listText);
  transition: all 0.2s ease;
}
.dropdown-secondary ul li.active a:before {
  transform: rotate(45deg) scale(var(--scale));
}
.dropdown-secondary ul li.active a:after {
  transform: rotate(-45deg) scale(var(--scale));
}
.dropdown-secondary ul li.active a:hover:before, .dropdown-secondary ul li.active a:hover:after {
  --scale: 0.9;
  opacity: 1;
}
.dropdown-secondary ul li:first-child a {
  border-radius: 6px 6px 0 0;
}
.dropdown-secondary ul li:last-child a {
  border-radius: 0 0 6px 6px;
}
.dropdown-secondary.filled > span {
  color: var(--textFilled);
}
.dropdown-secondary.open > span {
  border-color: var(--borderActive);
}
.dropdown-secondary.open > span:before, .dropdown-secondary.open > span:after {
  background: var(--arrowActive);
}
.dropdown-secondary.open > span:before {
  transform: scale(0.96, 0.8) rotate(-50deg);
}
.dropdown-secondary.open > span:after {
  transform: scale(0.96, 0.8) rotate(50deg);
}
.dropdown-secondary.open ul {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translate(0, 12px);
  /* transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32); */
}
.dropdown-secondary.open ul li {
  opacity: 1;
  transform: translate(0, 0);
}
.dropdown-secondary.open ul li:nth-child(1) {
  transition-delay: 80ms;
}
.dropdown-secondary.open ul li:nth-child(2) {
  transition-delay: 160ms;
}
.dropdown-secondary.open ul li:nth-child(3) {
  transition-delay: 240ms;
}
.dropdown-secondary.open ul li:nth-child(4) {
  transition-delay: 320ms;
}
.dropdown-secondary.open ul li:nth-child(5) {
  transition-delay: 400ms;
}
.dropdown-secondary.open ul li:nth-child(6) {
  transition-delay: 480ms;
}
.dropdown-secondary.open ul li:nth-child(7) {
  transition-delay: 560ms;
}
.dropdown-secondary.open ul li:nth-child(8) {
  transition-delay: 640ms;
}
.dropdown-secondary.open ul li:nth-child(9) {
  transition-delay: 720ms;
}
.dropdown-secondary.open ul li:nth-child(10) {
  transition-delay: 800ms;
}
select {
  --text: #3f4656;
  --border: #2f3545;
  --background: #151924;
}
select.dropdown-secondary {
  padding: 9px 16px;
  border-radius: 6px;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--background);
  line-height: 22px;
  font-size: inherit;
  font-family: inherit;
  -webkit-appearance: none;
}

.fulfillment-location select.dropdown {
  padding: 9px 16px;
  border-radius: 6px;
  color: #ffffff;
  border: none;
  background: none!important;
  line-height: 14px;
}

.dt-dropdowns {
  position: absolute!important;
  right: 0!important;
  width: 200px;
  margin-right: 15px;
}

.fulfillment-location .dropdown > span {
  padding: 9px 25px;
  border-radius: 6px;
  color: #ffffff;
  border: none;
  background: none!important;
  line-height: 14px;
  
}
.modal-footer .fulfillment-location {
  width: 100%;
}

#fulfillment-loader {
  position: absolute;
  margin-top: 8px;
}
#fulfillment-loader-mobile {
  position: absolute;
  margin-top: 8px;
}

.fulfillment-location-header-container {
  font-size: 13px;
  font-family: 'metropolissemi_bold';
  text-align: right;
  color: #ffffffab;
  padding: 8px 10px;
  border-radius: 10px;
  top: 22px;
  background: #a7a7a7a6;
}

.fulfillment-location-table {
  font-size: 13px;
  font-family: 'metropolissemi_bold';
  text-align: right;
  color: #ffffff;
  padding: 8px 10px;
  border-radius: 10px;
  background: #a7a7a7;
}

.switch {
  height: 20px;
  display: block;
  position: relative;
  cursor: pointer;
}
.switch input {
  display: none;
}
.switch input + span {
  padding-left: 38px;
  min-height: 20px;
  line-height: 20px;
  display: block;
  color: #3f4656;
  position: relative;
  white-space: nowrap;
}
.switch input + span:not(:empty) {
  padding-left: 46px;
}
.switch input + span:before, .switch input + span:after {
  content: '';
  display: block;
  position: absolute;
  border-radius: 10px;
}
.switch input + span:before {
  top: 0;
  left: 0;
  width: 38px;
  height: 20px;
  border: 1px solid #2f3545;
  transition: all 0.3s ease;
}
.switch input + span:after {
  width: 14px;
  height: 14px;
  background: #2f3545;
  top: 3px;
  left: 3px;
  transition: all 0.45s ease;
}
.switch input + span + svg {
  display: none;
}
.switch input:checked + span:before {
  background: #5628ee;
  border-color: #5628ee;
}
.switch input:checked + span:after {
  background: #fff;
  transform: translate(18px, 0);
}
.switch:hover input:not(:checked) + span:before {
  border-color: #23c4f8;
}
.input-hidden {
  color: #91a3ae!important;
  background: #bfd0da!important;
}

.action-topbar-container {
  /* background: #90a4ae; */
  background: #d8e3e9;
  height: 120px;
  padding: 10px;
  width: 100%;
}

.action-topbar-container.product-search {
  width: 100%;
  height: 100%;
}

.mobile-navbar__mobile-search {
  background: #74848d;
}

.stock-item {
  font-size: 12px;
}

.action-bottom-bar-container {
  background: #90a4ae;
  height: 120px;
  padding: 10px;
  bottom: 0;
  position: fixed;
  width: 100%;
}

.stock-description-header {
  color: #ffffff;
  font-size: 18px;
  font-family: metropolisbold;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.stock-move-card {
  border-bottom: solid 1px #90a3ae;
}

.stock-zone {
  background: #b0c5d0;
  padding: 15px;
  border-radius: 8px;
}

.wp-zone {
  background-color: #fa7070!important;
  color: white!important;
  border-radius: 8px;
  outline: initial !important;
  box-shadow: none !important;
  box-shadow: initial !important;
  font-size: 0.8rem!important;
  padding: 0.7rem 1.4rem 0.7rem 1.4rem!important;
  font-weight: 400!important;
  border: none!important;
  font-family: 'metropolisbold'!important;
}

.stock-move-remove {
  position: absolute;
  right: 0;
  padding-right: 15px;
  font-size: 25px;
  color:#fa7070;
  padding-top: 15px;
}

.stock-move-items {
  position: fixed;
  width: 100%;
  overflow: scroll;
  height: calc(100vh - 315px);
}

.action-topbar-title {
  font-size: 15px;
  font-family: 'metropolisbold';
  color: #ffffff;
  text-align: center;
}

.stock-move-title {
  font-family: 'metropolissemi_bold';
  color: #434c52;
  font-size: 14px;
  width:90%;
}

.stock-move-bincode {
  padding: 5px 10px;
  background: #8fa2ad;
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
}

.stock-move-uom {
  font-family: 'metropolissemi_bold';
  color: #434c52;
  display: inline-block;
}

.new-bincode {
  font-size: 25px;
  border: solid 1px;
  padding: 3px 8px;
  border-radius: 10px;
}

.override-bincode {
  font-size: 12px;
  padding: 4px 10px 5px 10px!important;
  border-radius: 8px;
  background-color: #607d8b;
  color: #ffffff;
  font-family: 'metropolisregular';
  border:none;
}

.override-data {
  font-family: 'metropolislight';
}

.sidebar-border {
  color: #455A64;
  border-radius: 10px;
  display: flex;
  height: 50px;
  width: 50px;
  border: 1px solid #455a6438;
}

.queue-more-orders {
  background: #0596b5;
  padding: 10px 20px 40px;
  text-align: center;
  font-family: 'metropolissemi_bold';
}

.form-group {
  width: 100%;
}

.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 */
}
.form-control.invalid {
  border: 1px solid #fa7070;
  background: #fa70701c!important;
}

input:invalid:required {
  border: 1px solid #fa7070;
  background: #fef0f0!important;
}

.form-control:focus {
  /* outline: none;
  box-shadow: 0 0 2px 1px #00b4db!important; */
  transition: all 0.3s ease-in-out;
  /* box-shadow: 0px 0rem 0.3rem 1px #2b33381f !important; */
  border: 1px solid #e7e7e7;
}

.wp-table tbody tr:hover {
  background-color: rgba(255, 255, 255, 0.137);
  transition: all 0.5s ease;
}
 
.wp-table tbody tr:hover > .sorting_1 {
  background-color: rgba(255, 255, 255, 0.137);
  transition: all 0.5s ease;
}

.wp-table {
  border-spacing: 0 0.5em!important;
  border-collapse: separate;
}

.wp-table input {
  padding: 11px;
  border-radius: 8px;
  border: none;
}

.shipping-options-container {
  display: flex;
  align-items: center;
  margin: 0 auto;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.bottom-menu-container {
  position: absolute;
  width: 70%;
  right: 0;
  height: 100%;
  z-index: 10;
}

.bottom-menu-container-buttons {
  height: 55%;
  margin: 10px;
  background: #537894;
  border-radius: 30px;
  padding: 15px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-right: 22px;
}

.bottom-menu-button {
  width: 40px;
  background: #9e9e9e;
  border-radius: 100px;
  height: 40px;
  text-align: center;
  padding-top: 11px;
}

.bundle-icon {
  position: absolute;
  padding: 5px 7px;
  background: #455a64;
  color: #ffffff;
  border-radius: 25px;
  margin-top: -3px;
  margin-left: -30px;
  font-size: 10px;
}

.bottom-menu-button-active {
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  background: #fa7070!important;
}

.loading-card {
  background: linear-gradient(0.25turn, transparent, #607d8b78, transparent), linear-gradient(#eee0, #eee0), radial-gradient(38px circle at 19px 19px, #eeeeee12 50%, transparent 51%), linear-gradient(#eee, #eee);
    background-repeat: no-repeat;
    background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
    background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
    animation: loading 1.5s infinite;
    background-color: #37474f;
}

.loading-card-light {
  background: linear-gradient(0.25turn, transparent, #ffffff78, transparent), linear-gradient(#eee0, #eee0), radial-gradient(38px circle at 19px 19px, #eeeeee12 50%, transparent 51%), linear-gradient(#eee, #eee);
    background-repeat: no-repeat;
    background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
    background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
    animation: loading 1.5s infinite;
}

.loading-card-extra-light {
  background: linear-gradient(0.25turn, transparent, #ffffff26, transparent), linear-gradient(#eee0, #eee0), radial-gradient(38px circle at 19px 19px, #eeeeee12 50%, transparent 51%), linear-gradient(#eee, #eee);
    background-repeat: no-repeat;
    background-size: 315px 250px, 315px 180px, 100px 100px, 225px 30px;
    background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
    animation: loading 1.5s infinite;
}
.loading-card-light-background {
  background: linear-gradient(0.25turn, transparent, #ffffff4f, transparent), linear-gradient(#eee0, #eee0), radial-gradient(38px circle at 19px 19px, #eeeeee12 50%, transparent 51%), linear-gradient(#eeeeee80, #eeeeee75);
    background-repeat: no-repeat;
    background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
    animation: loading 1.5s infinite;
    background-color: #cae0ed;
    border-radius: 8px;
    animation-direction: alternate;
    opacity: 50%;

}

.loading-card-summary {
  background: linear-gradient(0.25turn, transparent, #ffffff4f, transparent), linear-gradient(#eee0, #eee0), radial-gradient(38px circle at 19px 19px, #eeeeee12 50%, transparent 51%), linear-gradient(#eeeeee80, #eeeeee75);
    background-repeat: no-repeat;
    background-position: -315px 0, 0 0, 0px 190px, 50px 195px;
    animation: loading 1.5s infinite;
    background-color: #cae0ed;
    border-radius: 8px;
    animation-direction: alternate;
    opacity: 50%;

}

@keyframes loading {  
  to {
    background-position: 315px 0, 0 0, 0 190px, 50px 195px;
  }
}

.activity-score {
  background: #607d8b;
  width: 50%;
  text-align: center;
  border-radius: 8px;
  font-size: 15px;
  font-family: 'metropolissemi_bold';
}

.cursor-pointer {
  cursor: pointer;
}

.colour-selector {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 5px;
  top: 15px;
  right: 30px;
  border: 0.5px solid #bed1da;
}
#leaderboard table.dataTable tfoot th, table.dataTable tfoot td {
  border-top: 1px solid #fff0!important;
}

.section-container {
  /* background: #d8e9f5; */
  background: #f1faff;
  border-radius: 8px;
}

.section-container-light {
  background: #fbfeff;
  border-radius: 8px;
}

.dtsb-clearAll {
  display: none!important;
}

.dtsb-criteria {
  display: flex;
  align-content: center;
}

.dtsb-group .btn:hover {
  color: #252a2c;
  background: #b0c4d0;
  box-shadow: 0 10px 36px -2px rgb(0 0 0 / 18%);
}

.dtsb-searchBuilder {
  /* border-bottom: solid 1px #b0c5d0; */
  /* padding-bottom: 10px; */
}

div.dtsb-searchBuilder div.dtsb-group {
  margin-bottom: unset;
}

div.dtsb-searchBuilder {
  margin-bottom: unset;
}

.dtsb-logicContainer {
  display:none!important
}

.dtsb-group > button {
  display: flex!important;
  align-items: center;
  border-radius: 8px!important;
  cursor: pointer!important;
  transition: all 0.4s ease!important;
  background: #b0c5d0!important;
  max-width: 110px!important;
  color: #1e2224!important;
  border: none!important;
  margin-top: 10px!important;
}

.dtsb-titleRow > button {
  display: flex;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.4s ease;
  background: transparent;
  max-width: 180px;
  color: #1e2224;
  border: none;
  margin-bottom: 10px;
  border: solid 1px #607c8a;
}

.dtsb-titleRow .btn:hover {
  background: #b0c5d0!important;
  border: 1px solid #607c8a!important;
  color: #607c8a!important;
}

table.dataTable tbody tr {
  background-color: transparent;
}
.section-inner {
  padding: 25px;
}

.gen-title {
  font-family: 'metropolissemi_bold';
  font-size: 18px;
  min-height: 28px;
  color: #455A64;
}

.dynamic-alert-info .gen-title {
  font-size: 16px;
}

.dynamic-alert-info .gen-subtitle {
  font-size: 14px;
}

.gen-title-light {
  font-family: 'metropolissemi_bold';
  font-size: 18px;
  color: #ffffff;
}

.gen-title-mobile {
  font-family: 'metropolissemi_bold';
  font-size: 15px;
  color: #455A64;
}


@media (max-width: 430px) {
  .gen-title {
    font-family: 'metropolissemi_bold';
    font-size: 17px!important;
    min-height: 28px;
    color: #455A64;
  }
}

@media (max-width: 430px) {
  .gen-subtitle {
    font-family: 'metropolisregular';
    font-size: 13px!important;
    color: #455A64;
  }
}

@media (max-width: 430px) {
  .gen-subtitle-light {
    font-family: 'metropolisregular';
    font-size: 13px!important;
    color: #455964ab!important;
  }
}

.large-title {
    font-family: 'metropolissemi_bold';
    font-size: 30px;
    min-height: 28px;
    color: #455A64;
}

.small-title {
  font-family: 'metropolissemi_bold';
    font-size: 15px;
    color: #455A64;
}

.gen-subtitle {
  font-family: 'metropolisregular';
  font-size: 15px;
  /* min-height: 28px; */
  color: #455A64;
}

.gen-subtitle-light {
  font-family: 'metropolisregular';
  font-size: 14px;
  /* min-height: 28px; */
  color: #4559647a;
}
.gen-subtitle-mobile {
  font-family: 'metropolisregular';
  font-size: 11px;
  color: #455A64;
}

.bb-blue {
  border-bottom: 1px solid #7e7e7e36;
}

.gen-light-header {
  color: #45596475;
  font-family: 'metropolisregular';
}

.products-order-row {
  color: #4559647a;
  font-family: 'metropolisregular';
  font-size: 12px;
}

.products-order-row-subtitle {
  color: #455964;
  font-family: 'metropolisbold';
}

.products-order-status-strip-orange {
  height: 10px;
  background-color: #ff9800;
  border-radius: 10px;
}

.products-order-status-strip-green {
  height: 10px;
  background-color: #8bc34a;
  border-radius: 10px;
}

.products-order-status-strip-blue {
  height: 10px;
  background-color: #00a1ca;
  border-radius: 10px;
}

.products-order-status-strip-grey {
  height: 10px;
  background-color: #bfd0da;
  border-radius: 10px;
}

.purchase-order-line-qty {

}

.purchase-order-line-qty:disabled {
  outline: none;
  background-color:transparent;
  background:transparent;
}

.img-container-product {
  width: 50px;
  overflow: hidden;
  max-height: 50px;
  background: #ffffff;
  border-radius:8px;
  min-height: 50px;
  border: solid 1px #bfd0daab;
  display: flex;
}

table.dataTable.wolfpak-products td {
  border-bottom: 1px solid #bfd0daab!important
}

/* .dataTables_processing.card::after{
  content: "  ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid #00678a;
  border-radius: 50%;
  border-top-color: #00b4db;
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: absolute;
  z-index: 1;
} */

#products-table_wrapper table.dataTable.no-footer {
  border-bottom: 1px solid #ffffff00!important;
  margin-bottom: 20px!important;
}

#products-table_wrapper table.dataTable thead th, table.dataTable thead td {
  border-bottom: 1px solid #b0c5d070!important;
}

.dataTables_processing.card{
  margin-top: 20px;
  background:transparent;
  box-shadow: none;
}

.active-product-tab {
  border-bottom: solid #1d9fd99c;
  border-radius: 3px;
}

.hours-ago-badge {
  min-width: revert!important;
  min-height: revert;
  opacity: 60%;
  padding: 5px 10px;
  font-size: 15px;
  height:revert!important;
}

.existing-tag {
  border-radius: 8px;
  background: #d8eaf5;
  display: flex;
  max-height: 350px;
  padding: 15px;
  color: #455964;
}

.leaderboard-first {
  background: #ffeb3b3d!important;
}

.leaderboard-second {
  background: #ffeb3b1f!important;
}

.leaderboard-third {
  background: #ffeb3b0a!important;
}

.organisation-container {
  display: flex;
  justify-content: space-between;
}

.fulfillment-location {
  font-family: 'metropolisregular';
  width: 300px;
  font-size: 15px;
  cursor: pointer;
  padding: 5px 5px 5px 25px;
  background: #64778263;
  border-radius: 10px;
  color: #ffffffb8;
  height: 42px;
}

.modal-footer .fulfillment-location {
  font-family: 'metropolisregular';
  font-size: 15px;
  cursor: pointer;
  padding: 5px 5px 5px 25px;
  background: #ffffff;
  border-radius: 10px;
  color: #607d8b;
  height: 42px;
}

.fulfillment-location .dropdown::before {
  font-family: "Font Awesome 6 Pro";
  content: "\f54f";
  margin-top: 5px;
  position: absolute;
  margin-left: -8px;
  color: #dfdfdf;
  font-weight: 900;
}

.fulfillment-location .dropdown.open ul {
  /* width: 300px; */
  margin-left: -25px;
}

#org-switcher .dropdown > span {
  background:none!important;
  border: none!important;
  color:#ffffff!important;

}
.ml-a {
  margin-left: auto;
}

.warehouse-location-header {
  padding: 10px 11px;
  border-radius: 30px;
  color: #ffffff;
  font-family: metropolisbold;
  max-height: 45px;
  max-width: 45px;
  font-size: 15px;
  margin-top: 0px!important;
  width: 50px;
  height: 50px;
  text-align: center;
  margin-left: 19px;
  background-color: #00B4DB;
  line-height: 26px;
}

.user-circle {
  background-color: #00B4DB;
  color: #ffffff;
  font-family: metropolisbold;
  max-height: 45px;
  max-width: 45px;
  font-size: 15px;
  margin-top: 0px!important;
}
.user-circle-line {
  background-color: transparent;
  color: #ffffff;
  font-family: metropolisbold;
  max-height: 45px;
  max-width: 45px;
  font-size: 15px;
  margin-top: 0px!important;
  border: solid 1px
}
.location-active {
  background:#fa7070!important;
  color:#ffffff!important;
  border:none!important
}

.datepicker {
  background: #c4dbe7!important;
  padding: 25px!important;
  border-radius: 10px!important;
  text-align: center!important;
  box-shadow: 0 10px 36px -2px rgb(0 0 0 / 18%)!important;
}

.datepicker table tr td, .datepicker table tr th {
  color: #1c2021!important;
}

.datepicker .datepicker-switch:hover, .datepicker .next:hover, .datepicker .prev:hover, .datepicker tfoot tr th:hover {
  background: #bfd0da;
  border-radius: 0px!important;
}

.datepicker table tr td.day:hover, .datepicker table tr td.focused {
  background: #bfd0da;
  border-radius: 0px;
}

.datepicker table tr td.active.active, .datepicker table tr td.active.highlighted.active, .datepicker table tr td.active.highlighted:active, .datepicker table tr td.active:active {
  color: #ffffff!important;
  background-color: #009fc8;
  border:none!important;
  border-radius: 6px;
}

.datepicker .range-end {
  border-top-left-radius: 0px !important;
  border-bottom-left-radius: 0px !important;
}

.datepicker .range-start {
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
}

.datepicker table tr td.range {
  color: #ffffff!important;
  background-color: #009fc8;
  border:none!important;
  border-radius: 0px!important;
}

.datepicker table tr td.selected, .datepicker table tr td.selected.highlighted {
  background-color: #009fc8;
  border:none!important;
  border-radius: 0px;
}

.datepicker table tr td.today {
  background-color: #009fc8;
  color:#ffffff!important;
}

#deliveryAddressSuggestions div span{
  color: #99a3ba!important;
  border: none;
  font-size: 13px;
}

#deliveryAddressSuggestions div .address-row{
  padding: 10px;
}

#deliveryAddressSuggestions div .address-row:hover{
  padding: 10px;
  background: #f7f7f7;
  transition: all 0.3s ease;
}

.shipping-provider-logo-service {
  width: auto;
  height: 22px;
  padding-bottom: 5px;
  padding-top: 5px;
}

.product-search-fail {
  position: absolute;
  right: 60px;
  color: #dc3545!important;
  font-family: 'metropolisregular';
}

.nzpost-input-fail {
  position: absolute;
  top: 37%;
  right: 20px;
  color: #dc3545!important;
  font-family: 'metropolisregular';
}

.nzpost-address-container {
  z-index: 5;
  opacity: 1;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transform-origin: 0 0;
  transition: all 0.2s ease;
  border: 1px solid #e7e7e7;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0px 0rem 1rem 2px #2b33382e !important;
  max-height: 200px;
  overflow-y: scroll;
}

.toast-index {
  top: 40px!important;
  right:40px!important;
}

.recent-time {
  font-family: 'metropolisbold'!important;
}

.index-banner-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 8px;
  color: #596c78;
  width: 100%;
}

.index-banner-card-large {
  background-position-x: 67%;
  background-position-y: 18%;
  width: 100%;
  background-image: url(/assets/img/WolfPak_head_white.svg);
  background-repeat: no-repeat;
  background-size: 40%;
  background-attachment: fixed;
  min-height: 187px;
}


.notification {
  display: none;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.notification--active {
  background-color: #37474f;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  top: 30px;
  right: 35px;
  z-index: 10;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  box-shadow: 0 2px 9px 2px rgb(0 5 6 / 15%);
}

@media (max-width: 430px) {
  .notification--active {
    z-index: 999999999;
    position: relative!important;
    width: 60vw;
    margin: 0 auto;
    text-align: center;
    right: unset!important;
    top: 55px!important;
  }
}


.wolf-alert.enabled {
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
          display:flex!important;
  align-items: center;
}

/* .wolf-alert--active {
  background-color: #37474f;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  bottom: -50px;
  z-index: 10000000;
  box-shadow: 0 2px 9px 2px rgb(0 5 6 / 15%);
  position: fixed;
} */

.wolf-alert--active {
  background-color: #37474f;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  z-index: 10000000;
  box-shadow: 0 2px 9px 2px rgb(0 5 6 / 15%);
  margin: 3px;
}

.wolf-alert--active.wp-error {
  background-color: #fa7070!important; 
  }

.wolf-alert-button {
  border: solid 1px #ffffff3d;
    padding: 5px 10px;
    margin-left: 15px;
    font-family: 'metropolissemi_bold';
    display: none;
    background: #495e69;
    border-radius: 5px;
}

.wolf-alert-button.active {
    display:block!important;
    cursor:pointer;
}

@media (max-width: 430px) {
  .wolf-alert--active {
    z-index: 999999999;
    width: 60vw;
    text-align: center;
  }
}

.failedRequest {
  display: none;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
}

.failedRequest--active {
  background-color: #37474f;
  color: #fff;
  padding: 15px;
  border-radius: 10px;
  position: absolute;
  top: 30px;
  right: 35px;
  z-index: 10;
  -webkit-animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
	        animation: fade-in 1.2s cubic-bezier(0.390, 0.575, 0.565, 1.000) both;
  box-shadow: 0 2px 9px 2px rgb(0 5 6 / 15%);
}

@media (max-width: 430px) {
  .failedRequest--active {
    z-index: 999999999;
    position: relative!important;
    width: 60vw;
    margin: 0 auto;
    text-align: center;
    right: unset!important;
    top: 55px!important;
  }
}

.is-shown {
  display: revert;
}

.search-overlay-container {
  height: 100%;
  position: fixed;
  top: 0;
  background: #757575ba;
  z-index: 9999999;
  flex-direction: column;
}

.input-loading-header {
  margin-top: 70vh;
  font-family: 'metropolissemi_bold';
  font-size: 17px;
}

.false-input {
  background: #ffffff33;
  color: #ffffff!important;
  text-align: center;
  line-height: 24px;
  width: 60%;
  margin: 0 auto;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.company-subtitle {
  font-family: 'metropolislight';
  font-size:13px;
}

.address-mismatch-warn {
  font-family: 'metropolisbold';
  font-size: 13px;
  color: #607d8b;
}

.no-suggestions .address-mismatch-warn {
  display:none
}

.no-suggestions .approve-address {
  display:none
}

.no-suggestions-found-text {
  font-size: 11px;
    color: #fa7070;
    font-family: 'metropolisregular';
}

.no-suggestions .no-suggestions-found-text{
  display:block!important
}

.address-mismatch-ok {
  font-family: 'metropolisbold';
  font-size: 13px;
  color: #fa7070;
}

.address-mismatch-success {
  font-family: 'metropolislight';
  font-size: 13px;
}

.account-tag {
  padding: 5px 5px;
  color: white;
  background: #37474f;
  border-radius: 8px;
  font-family: 'metropolissemi_bold';
}

.dt-order-card {
  background: #607d8b;
  padding: 15px;
  border-radius: 8px;
  color: #ffffff;
}
.dt-company-subtitle {
  font-family: 'metropolislight';
  width: 50%;
  max-width: 60%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 10px;
  text-transform: uppercase;
}

#wolf-alert-container {
  padding-top: 30px;
  max-height: 183px;
  overflow: hidden;
  justify-content: flex-end;
  z-index: 9999999999;
}

.user-selector-container {
  padding: 8px!important;
  position: relative;
}

#pageLoading > div.user-selector-container.hide-desktop.login-button-white.login-button-username.shadow.col-lg-2.login-keyframe-2 > div > div > span {
border:none!important
}

#pageLoading select.dropdown {
  border:none!important;
  padding: 7px 13px!important;
}


#pageLoading .dropdown > span {
  color: #9eafb8;
  padding: 9px 9px;

}

.dtsb-data.dtsb-dropDown {
  cursor: pointer!important;
  padding: 9px 16px!important;
  border-radius: 6px!important;
  display: block!important;
  position: relative!important;
  border: 1px solid transparent!important;
  color: #1e2224!important;
  background: #ffffff!important;
  transition: all 0.3s ease!important;
  min-height: 42px!important;
  line-height: 21px!important;
  margin-right: 5px!important;
  border-right: 10px solid transparent!important;
  -webkit-appearance: none;
}


.dtsb-condition.dtsb-dropDown {
  cursor: pointer!important;
  padding: 9px 16px!important;
  border-radius: 6px!important;
  display: block!important;
  position: relative!important;
  border: 1px solid transparent!important;
  color: #1e2224!important;
  background: #ffffff!important;
  transition: all 0.3s ease!important;
  min-height: 42px!important;
  line-height: 21px!important;
  margin-right: 5px!important;
  border-right: 10px solid transparent!important;
  -webkit-appearance: none;
}

.dtsb-value {
  cursor: pointer!important;
  padding: 9px 16px!important;
  border-radius: 6px!important;
  display: block!important;
  position: relative!important;
  color: #1e2224!important;
  border: 1px solid transparent!important;
  background: #ffffff!important;
  transition: all 0.3s ease!important;
  min-height: 42px!important;
  line-height: 21px!important;
  margin-right: 5px!important;
  border-right: 10px solid transparent!important;
  -webkit-appearance: none;
} 

div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria div.dtsb-inputCont input.dtsb-value {
  width:unset!important;
}
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria div.dtsb-inputCont {
  flex:unset!important;
}
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria div.dtsb-buttonContainer {
  margin-left: unset!important;
}
div.dtsb-searchBuilder div.dtsb-group div.dtsb-criteria div.dtsb-buttonContainer button.dtsb-delete {
  height: 42px;
  background: #ffffff5e!important;
  border: none!important;
  border-radius: 7px;
}

div.dtsb-searchBuilder button.dtsb-button {
  min-height: 40px!important;
  /* margin-top: -5px!important; */
}

div.dtsb-searchBuilder select {
  cursor: pointer!important;
  padding: 9px 16px!important;
  border-radius: 6px!important;
  display: block!important;
  position: relative!important;
  border: 1px solid transparent!important;
  color: #1e2224!important;
  background: #ffffff!important;
  transition: all 0.3s ease!important;
  min-height: 42px!important;
  line-height: 21px!important;
  margin-right: 5px!important;
  border-right: 10px solid transparent!important;
}

.dtsb-value.form-control:focus {
  background: #ffffff!important;
  border: none!important;
}

.dtsb-buttonContainer .btn {
  background: #b0c4d0;
  color: #202526;
  border: none;
  height: 100%;
}

.dtsb-value.form-control.dtsb-input {
  max-width:400px!important
}

.dtsb-group.dtsb-vertical {
  display: flex!important;
  flex-direction: column!important;
  gap: 5px!important;
}

#override-modal .dropdown > span {
  color: #68747a!important;
  font-family: 'metropolisregular';
}

.order-search .dt-refresh {
  font-size: 13px;
}

.search-header-container.order-search {
  padding: 20px 20px!important;
}

.search-header-container.light {
  background: #b0c6d033!important;
}

.wp-search-datatables.order-search {
  height: 40px;
}

.wp-search-datatables.order-search #searchDatatable{
  font-size: 13px;
}

.wp-search-datatables.order-search #searchDatatableOrders::placeholder{
  font-size: 13px;
}

.wp-search-datatables.order-search #searchDatatableOrders{
  font-size: 13px;
}

.wp-search-datatables.order-search #searchDatatableOrders::placeholder{
  font-size: 13px;
}

/* .left-nav-pad:hover .wp-sidebar-dropdown-container, .left-nav-pad:hover .wp-sidebar-dropdown-container {
  opacity: 1;
} */

.left-nav-pad > div:nth-child(2) {
  opacity: 0;
  display: none;
}
.left-nav-pad:hover > div:nth-child(2) {
  opacity: 1;
  display: block;
  transition: opacity 3s ease;
  transition-delay: 2s;
}


.wp-sidebar-dropdown-container{
  display: none;
  opacity: 0;
  background: #CFD8DC;
  width: 120px;
  margin-left: 65px;
  padding: 15px 10px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  margin-top: -8px;
  position: absolute;
}

.wp-sidebar-dropdown-item {
  color: #37474f;
  padding: 5px;
}

.no-match-button {
  background: #f34336;
  padding: 10px;
  border-radius: 8px;
  text-align: center;
  font-family: 'metropolissemi_bold';
}

.filter-buttons {
  color: #455964;
}

.filter-buttons-container {
  justify-content: center;
  height: 35px;
  background: #d8e8f5;
}

#orders-pick-table > tbody td > div {
  padding: 5px 10px;
    border-radius: 8px;
    background: #b0c5d0;
}

#orders-pick-table > tbody td {
  padding: 4px 0px!important;
}

.filter-active {
  background: #37adde;
}

.filter-active .filter-buttons {
  color: #ffffff;
}

.reduce-opacity {
  opacity: 50%;
  transition: all 0.4s ease;
}

.bulk-pick-row-active {
  border: solid 1px #758891;
}

#order-picked-badge {
  background-color: #8bc34a;
  padding: 5px 9px;
  border-radius: 8px;
  color: #ffffff;
  font-size: 10px;
}

.tracking-btn-search {
  background: #c4dbe7;
  padding: 10px 10px;
  font-size: 15px;
  border-radius: 8px;
  color: #455964;
}



.gen-btn-dt.active {
  background: #b3d893!important;
  transition: all 0.4s ease;
  border: none!important;
}

.gen-btn-dt.small-text .gen-btn-dt-text {
  font-size: 12px!important;
  position: relative;
}

.gen-btn-dt.outline-only {
  background: unset;
  border: 1px solid #b0c4d052;
}

.gen-btn.small {
  max-width: 40px!important;
  min-width: 40px!important;
  height: 40px;
}

.gen-btn-dt {
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #455a64;
  padding: 0 20px;
  background: #d8e3e9;
  line-height: 40px;
  height: 40px;
  cursor: pointer;
}

.gen-btn-dt.dark {
  background: #c2def2;
}

.gen-btn-dt-text {
  color: #1c2021;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
  line-height: 40px;
}



.gen-location {
  align-items: center;
  border-radius: 8px;
  /* cursor: pointer; */
  transition: all 0.4s ease;
  background: #c2ecff;
  padding: 5px 10px;
  width: fit-content;
  border-bottom: 1px solid #9292921a;
  font-family: 'metropolissemi_bold';
  font-size: 13px;
}

.gen-dropdown-button {
  background: none!important;
  border: none!important;
  width: revert!important;
}

.gen-dropdown-button-title {
  background: none!important;
  border: none!important;
  width: revert!important;
}

.dropdown-menu {
  font-size: 0.8rem;
  border-radius: 8px!important;
  border-color: rgba(150, 150, 150, 0.15);
  transform: translate3d(30px, 43px, 0px)!important;
  max-width: 160px;
  min-width: 160px;
  overflow: hidden;
}

.dropdown-title {
  width: 100%;
  text-align: center;
  color: #596e75;
  font-family: 'metropolisregular';
  font-size: 12px;
}

.package-dropdown {
  border: 1px solid #d4d4d4cc;
}

.generic-dropdown-container {
  border-radius:8px;
  position: relative;
}

.generic-dropdown-container label.error {
  position: absolute;
  margin-top: 45px;
  left: 0;
}

/* .generic-dropdown-container:has(input:invalid:required) {
  border: 1px solid #fa7070;
  background: #fa70701c !important;
} */

.generic-dropdown-container .dropdown-input:focus-visible {
  outline: none!important;
}

.datepicker.dropdown-menu {
  max-width: unset!important;
  min-width: unset!important;
}

.dropdown-menu.blue {
  background: #607d8b!important;
  box-shadow: 0 0.5rem 0.5rem rgb(0 0 0 / 8%);
}

.dropdown-menu.light {
  background: #ffffff!important;
  box-shadow: 0 0.5rem 0.5rem rgb(0 0 0 / 8%);
}

.dropdown-menu.light .dropdown-item {
  padding: 0.5rem 1.25rem;
  color: #1c2021!important;
  font-family: 'metropolissemi_bold'!important;
  font-size: 12px!important;
}

.dropdown-menu.light .dropdown-item:hover {
  background-color: #f6f6f6!important;
}

.dropdown-menu.blue .dropdown-item:hover {
  background-color: #91a5af!important;
}


.dropdown-item {
  padding: 0.3rem 1.25rem;
  color: #f1f1f1!important;
  font-family: 'metropolissemi_bold'!important;
  font-size: 12px!important;
}

.dropdown-item.shrink span {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 430px)  {
  .dropdown-item.shrink {
    padding: 5px 10px 5px 15px!important;
    font-size: 11px!important;
  }
}

@media (max-width: 430px)  {
  .dropdown-item {
    padding: 5px 0px 5px 15px!important;
    font-size: 11px!important;
  }
}

.dropdown-divider {
  border-color: #c6d5dd!important;
}

.top-menu-bars {
  border-radius: 30px;
  color: #ffffff;
  font-family: metropolisbold;
  max-height: 40px;
  max-width: 40px;
  font-size: 15px;
  margin-top: 0px!important;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0d2c36;
}


.top-menu-bars.background {
  border-radius: 30px;
  color: #ffffff;
  font-family: metropolisbold;
  max-height: 40px;
  max-width: 40px;
  font-size: 15px;
  margin-top: 0px!important;
  width: 50px;
  height: 50px;
  text-align: center;
  line-height: 26px;
  display: flex;
  align-items: center;
  background: #d7e7f4;
  justify-content: center;
}

@media (max-width: 430px)  {
  .list-thumbnail-letters.small {
    width: 40px;
    height: 40px;
    font-size: 13px;
  }
  
}

.queue-card-height-6 {
  height:160px
}

.queue-card-height-3 {
  height:110px
}

.rotate-center {
	-webkit-animation: rotate-center 1s ease-in-out both;
	        animation: rotate-center 1s ease-in-out both;
}

@-webkit-keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotate-center {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

#input-loading {
  position: absolute;
    display:block;
    left: 0;
    margin-top: 13px!important;
    margin:0 auto;
    height: 4px;
    background-color: #ffffff;
    width: 0%;
    transition: width 2s;
}

.input-loading-container {
  overflow: hidden;
  width: 100%;
  height: 15px;
  position: absolute;
  margin-left: -15px;
  border-radius:7px
}

.input-loader {
	-webkit-animation: input-loader 2s ease-in-out infinite;
	        animation: input-loader 2s ease-in-out infinite;
}

.input-group > .form-control:not(:last-child), .input-group > .custom-select:not(:last-child) {
  background: #f1f1f1!important;
}

@-webkit-keyframes input-loader {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 1000%;
  }
}
@keyframes input-loader {
  0% {
    width: 0%;
    left: 0%;
  }
  50% {
    width: 100%;
    left: 0%;
  }
  100% {
    width: 0%;
    left: 1000%;
  }
}


.vibrate-1 {
	-webkit-animation: vibrate-1 0.3s linear infinite both;
	        animation: vibrate-1 0.3s linear infinite both;
}

@-webkit-keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-1px, 1px);
            transform: translate(-1px, 1px);
  }
  40% {
    -webkit-transform: translate(-1px, -1px);
            transform: translate(-1px, -1px);
  }
  60% {
    -webkit-transform: translate(1px, 1px);
            transform: translate(1px, 1px);
  }
  80% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}
@keyframes vibrate-1 {
  0% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
  20% {
    -webkit-transform: translate(-1px, 1px);
            transform: translate(-1px, 1px);
  }
  40% {
    -webkit-transform: translate(-1px, -1px);
            transform: translate(-1px, -1px);
  }
  60% {
    -webkit-transform: translate(1px, 1px);
            transform: translate(1px, 1px);
  }
  80% {
    -webkit-transform: translate(1px, -1px);
            transform: translate(1px, -1px);
  }
  100% {
    -webkit-transform: translate(0);
            transform: translate(0);
  }
}

.slide-in-top-arrow {
	-webkit-animation: slide-in-top-arrow  1s cubic-bezier(1.000, 0.000, 0.000, 1.000) infinite alternate both;
	        animation: slide-in-top-arrow  1s cubic-bezier(1.000, 0.000, 0.000, 1.000) infinite alternate both;
}

@-webkit-keyframes slide-in-top-arrow {
  0% {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(300);
            transform: translateY(300);
    opacity: 1;
  }
}
@keyframes slide-in-top-arrow  {
  0% {
    -webkit-transform: translateY(-300px);
            transform: translateY(-300px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(300);
            transform: translateY(300);
    opacity: 1;
  }
}

.slide-in-top-search {
  display: revert!important;
	-webkit-animation: slide-in-top-search 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
	        animation: slide-in-top-search 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
}

@-webkit-keyframes slide-in-top-search {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top-search {
  0% {
    -webkit-transform: translateY(-20px);
            transform: translateY(-20px);
    opacity: 0;
  }
  20% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}


.slide-in-top {
	-webkit-animation: slide-in-top 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
	        animation: slide-in-top 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
}

@-webkit-keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slide-in-top {
  0% {
    -webkit-transform: translateY(-1000px);
            transform: translateY(-1000px);
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
  }
}

.pink-fade-grey {
	-webkit-animation: pink-fade-grey 4s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
	        animation: pink-fade-grey 4s cubic-bezier(0.770, 0.000, 0.175, 1.000) both;
}

@-webkit-keyframes pink-fade-grey {
  0% {
    background: #fa7070;
  }
  100% {
    background: #fa707045;
  }
}
@keyframes pink-fade-grey {
  0% {
    background: #fa7070;
  }
  100% {
    background: #fa707045;
  }
}

.incorrect-password-warning-container {
  text-align: center;
  margin-top: 20px;
  font-family: 'metropolissemi_bold';
}

.incorrect-password-warning {
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 10px;
  background: #fa707045;
}

#return-warning {
  padding: 10px 25px;
  border-radius: 8px;
  background: #fa7070eb;
  margin-bottom:15px;
}

.index-subtitle-bold {
  font-family: 'metropolisextra_light';
  font-size: 12px;
}

.index-stat-bold {
  font-family: 'metropolisbold';
  font-size: 40px;
  height: 75px;
}

.index-stat-card {
  background-color: #607d8b4f;
  border-radius: 10px;
}
.slide-warning-container {
  text-align: center;
  margin-top: -5px;
  font-family: 'metropolissemi_bold';
}

.slide-warning {
  padding: 10px 25px;
  border-radius: 8px;
  font-size: 10px;
  background: #fa7070;
}

.tooltip-inner {
  padding: 0.5rem 0.75rem;
  color: #c3c3c3!important;
  background-color: #3e474b!important;
  border-radius: 8px!important;
}

.bs-tooltip-top .arrow::after, .bs-tooltip-auto[x-placement^="top"] .arrow::after {
  border-top-color: #3e474b!important;
}

.bs-tooltip-right .arrow::after, .bs-tooltip-auto[x-placement^="right"] .arrow::after {
  border-right-color: #3e474b!important;
}

.urgent-row {
  background-color: #ff980021!important;
  margin-bottom: 5px;
}

.carrier-table {
  padding: 9px 10px;
  /* background: #70828b54; */
  border-radius: 8px;
  justify-content: center;
  min-width: 80px;
  display: inline-flex;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  color:#607d8bd6!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:active {
  background-color: none!important;
  background: none!important;
  box-shadow: none!important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: transparent;
  border: 1px solid #65818e;
  color: #65818e!important;
  border-radius: 50px;
  min-width: 30px;
  font-size: 0.76rem;
  font-family: 'metropolisbold';
}

table.dataTable td.dt-control:before {
  height: 1em;
  width: 1em;
  margin-top: -9px;
  display: inline-block;
  color: #4c4c4c;
  border: none!important;
  border-radius: 1em;
  box-shadow: none!important;
  box-sizing: content-box;
  text-align: center;
  text-indent: 0 !important;
  line-height: 1em;
  content: "\f078"!important;
  background-color: unset!important;
  font-family: 'Font Awesome 6 Pro';
}

table.dataTable tr.dt-hasChild td.dt-control:before {
  content: "\f077"!important;
  font-family: 'Font Awesome 6 Pro';
}

th.sorting_disabled:before {
  display: none!important;
}
th.sorting_disabled::after {
  display: none!important;
}

/* .dataTables_paginate {
  float: unset!important;
  text-align: center!important;
} */


div.dataTables_processing div {
  display: none;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: transparent!important;
  color: #455b64!important;
  border: 1px solid transparent;
  border-radius: 100px;
}

.edit-address-title {
  color: #9cacb8;
}

.mobile-meta-overflow {
  text-align: right;
  width: 50px;
  letter-spacing: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.print-labels-popup {
  position: absolute;
  right: 5;
  padding: 15px 20px;
  margin-top: -40px;
  background: #607d8b;
  margin-right: 10px;
  border-radius: 50px;
  font-size: 18px;
}

.search-dropdown {
  /* width: 100%; */
  background: #f2faff;
  height: auto;
  border-radius: 8px;
  margin-top: 5px;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  z-index: 1;
}

.input-dropdown-option {
  color: #455964;
  padding: 15px;
  font-family: 'metropolissemi_bold';
}

.slash-title {
  font-family: 'metropolislight';
  background: #c4dae7;
  width: fit-content;
  padding: 3px 10px;
  border-radius: 7px;
  font-size: 9px;
}

.slash-placeholder {
  color: #455964;
  margin: 15px;
}

#input-slash-commands .slash-command:not(:last-child) {
  border-bottom: solid 1px #acc1cc57;
}

.slash-command {
  padding-bottom: 5px;
  padding-top: 10px;
}

.slash-command:hover {
  background-color: #b0c5d021;
  transition: all 0.4s ease;
}

.prod-search-result {
  padding-bottom: 15px;
  padding-top: 10px;
}

@media (max-width: 430px)  {
  .prod-search-result {
    padding:2px!important
  }
}

.prod-search-result:hover {
  background-color: #b0c5d021;
  transition: all 0.4s ease;
}


.wp-side-menu.chat {
  height: calc(100vh - 66px);
}

.wp-chat-input-container {
  width: 100%;
  height: 90px;
  background: #e6eaed;
  position: fixed;
  right: 0;
  bottom: 0;
  box-shadow: 0 1px 15px rgb(0 0 0 / 10%), 0 1px 8px rgb(0 0 0 / 10%);
  transition: padding 300ms;
  padding-left: 410px;
  padding-right: 340px;
}

.wp-chat-input-container input {
  border: initial;
  width: unset;
  height: 100%;
  padding-left: 0;
  display: inline-block;
  margin-left: 200px;
}

.wp-chat-input-container input:focus-visible {
  outline: none!important;
}

.wp-chat-message {
  background: white;
  border-radius: 8px;
}

.reply {
  background:#e7eaed!important;
}

.message-title {
  font-family: 'metropolissemi_bold';
  font-size: 14px;
  min-height: 28px;
  color: #455A64;
}

.dark-user {
  color: #607d8b!important;
}

.clip-message {
  width: 125px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  color: #445a6499;
}

.border-bottom-chat {
  border-bottom: 1px solid #31313121 !important;
}

.chat-unread {
  border-right: solid 4px #607d8b;
  border-radius: 8px;
}

.chat-read {
  opacity: 70%;
}

.messages-loading-placeholder {
  position: absolute;
  top: 0;
  padding: 15px;
  font-family: 'metropolissemi_bold';
  width: 100%;
  text-align: center;
  font-size: 18px;
}

.conversation-selected {
  background: #607d8b2b;
  border-radius: 8px;
}

.bin-choose-swal {
  font-size: 30px;
  background: #164C5C;
  border-radius: 8px;
  padding: 5px 10px;
  margin: 10px;
  font-family: 'metropolisbold';
  color: #ffffff;
}

.overridden-barcodes-products a {
  width:100%
}


.po-status {
  font-size: 13px;
  line-height: revert;
}

.faded-element {
  opacity:50%;
  transition: opacity 1s ease;
}

.gen-search {
  display: flex;
  align-items: center;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #c4dbe700;
}

.gen-search.border {
  border: 1px solid #81818145!important;
  border-radius: 8px;
  padding: 10px;
}

.gen-search input {
  padding: 0px 24px 0px 10px;
  border: 0;
  outline: none;
  font-family: inherit;
  line-height: 20px;
  font-size: 13px;
  background: #b0c5d000;
  -webkit-appearance: none;
  z-index: 1;
  width: 100%;
}

.gen-search-header-container {
  padding: 15px 20px;
  background: #ffffff;
  border-radius: 10px;
  z-index: 9999;
  position: absolute;
  width: 90%;
}

.gen-search-dropdown {
  width: 100%;
  background: #f2faff;
  height: auto;
  border-radius: 8px;
  margin-top: 5px;
  position: absolute;
  transition: opacity 0.2s ease, transform 0.3s cubic-bezier(0.4, 0.6, 0.5, 1.32);
  z-index: 9999;
  left: 0;
  overflow-y: scroll;
  max-height: 300px;
  overflow-x: hidden;
}

.gen-desktop-search {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all 0.4s ease;
  background: #f1faff;
  height: 45px;
  border-radius: 8px;
  color: #607D8B;
  border: solid 1px #607d8b4d;
}

.gen-desktop-search.border {
  border: 1px solid #81818145!important;
  border-radius: 8px;
  padding: 10px;
}

.gen-desktop-search input {
  padding: 0px 24px 0px 10px;
  border: 0;
  outline: none;
  font-family: inherit;
  font-size: 13px;
  background: #b0c5d000;
  -webkit-appearance: none;
  z-index: 1;
  width: 100%;
}

.desktop-index-strip {
  background-color: #8ba1ad;
  height: 25vh;
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
}
@media screen and (max-height: 1250px) {
  .desktop-index-strip {
    height: 315px!important;
  }
}
@media screen and (min-height: 1750px) {
  .desktop-index-strip {
    height: 445px!important;
  }
}

.permission-tag {
  padding: 4px 10px;
  background: #70828b54;
  border-radius: 8px;
  text-align: center;
  font-size: 10px;
  margin-left: 60px;
}

.desktop-stats {
  width: auto!important;
  position: relative;
  top: calc(30vh - 230px);
}

@media screen and (max-height: 1250px) {
  .desktop-stats {
    top: 160px!important;
  }
}

@media screen and (min-height: 1750px) {
  .desktop-stats {
    top: 280px!important;
  }
}

.menu-text-transition {
  transition: opacity 0.2s ease;
}

.dispatch-summary {
  background: #74848d;
    position: absolute;
    width: 100vw;
    height: 200px;
    padding: 20px;
    transform: translateY(-200px);
}

.summary-tab {
  display: block;
  background: #d8e9f5!important;
  z-index: 10;
  width: 100vw;
}

.dispatch-summary-container {
  position: absolute;
  top: 70px;
  width: 100%;
}

.dispatch-summary-subcontainer {
  padding: 20px;
  width: 100%;
  padding-top:0px;
  padding-bottom: 5px;
}

.summary-slide-tab {
  font-size: 12px!important;
  width: 100%;
  transition: all 1s ease;
  padding: 10px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 0.5rem 0.5rem rgb(0 0 0 / 8%);
}

.package-products-container.active {
  background: #8bc34a26;
  transition: background 0.5s ease;
}

.package-products-container {
  padding: 10px;
  border-radius: 8px;
  background: #d8e3e91f;
  border: 1px solid #d4d4d46e;
  margin-bottom: 10px;
}

.wp-drop-btn-container {
  background: white;
  border-radius: 8px;
  height: 43.5px;
  border-bottom: 1px solid #d4d4d4cc;
}

.wp-generic-dropdown-input {
  border-radius: 8px;
  height: 43.5px;
  width: 100%;
  color: #455a64;
  padding: 0 20px;
  cursor: pointer;
  align-items: center;
  outline: none;
  border: 1px solid #d4d4d4cc;
}

nav .wp-drop-btn {
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #455a64;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

nav .wp-drop-input {
  border-radius: 5px;
  color: #455a64;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

nav .wp-drop-btn-disabled {
  border-radius: 5px;
  font-size: 20px;
  font-weight: 500;
  color: #455a64;
  padding: 0 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  background: #f5f5f5;
}

nav .wp-drop-btn span {
    float: right;
    line-height: 50px;
    font-size: 28px;
    cursor: pointer;
}

nav .wp-dd-tooltip {
  position: absolute;
  right: 45px;
  bottom: -5px;
  height: 15px;
  width: 15px;
  background: #ffffff;
  transform: rotate(45deg);
  display: none;
  border-radius: 2px;
  z-index: 999999;
}

nav .wp-dd-tooltip.dt {
  position: absolute;
  right: 35px!important;
  bottom: unset!important;
  height: 15px;
  width: 15px;
  background: #ffffff;
  transform: rotate(45deg);
  display: none;
  border-radius: 2px;
  z-index: 100000000;
  margin-top: -6px;
}

nav .wp-dd-tooltip.show {
    display: block;
}

nav .dd-wrapper {
  position: absolute;
  top: 65px;
  display: flex;
  width: 200px;
  overflow: hidden;
  border-radius: 5px;
  display: none;
  transition: all 0.3s ease;
  right: 25px;
  z-index: 99999;
  background: #ffffff;
  box-shadow: 0 0.3rem 0.5rem rgb(0 0 0 / 15%);
}
nav .dd-wrapper.dt {
  position: absolute;
  top: unset!important;
  display: flex;
  width: 200px;
  overflow: hidden;
  border-radius: 5px;
  display: none;
  transition: all 0.3s ease;
  right: unset!important;
  z-index: 99999;
  background: #ffffff;
  box-shadow: 0 0.3rem 0.5rem rgb(0 0 0 / 15%);
}

nav .dd-wrapper.show {
    display: block;
    display: flex;
}
.dd-wrapper ul.supplier-dropdown {
  max-height: 300;
  overflow-y: scroll;
}

.dd-wrapper ul {
  width: 200px;
  list-style: none;
  padding: 0px;
  transition: all 0.3s ease;
  margin-bottom:0px;
  border-radius: 6px!important;
  /* border: 1px solid rgb(150 150 150 / 20%); */
  border: 1px solid #e4ecfa;
  color: #1c2021;
  box-shadow: 0px 0rem 1rem 1px #2b333829 !important;
}

.dd-wrapper ul li {
    line-height: 15px;
    margin-bottom: 0px;
}

.dd-wrapper ul li a {
  padding: 0.8rem 1rem;
  color: #1c2021;
  font-family: 'metropolisregular'!important;
  font-size: 12px!important;
  position: relative;
  font-size: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
}

.dataTables_length label {
  font-family: 'metropolisregular';
  font-size: 13px;
  color: #455A64;
}

.dataTables_length label select {
  margin-left: 5px;
  color: #61737c;
}

.dd-wrapper ul li:hover a {
    background: #eaeff6;
}

ul li a i {
    position: absolute;
    right: 10px;
    font-size: 25px;
    pointer-events: none;
}

.dd-wrapper ul.setting-drop,
.dd-wrapper ul.help-drop {
    display: none;
}

.dd-wrapper .arrow {
    padding-left: 10px;
    font-size: 20px;
    font-weight: 500;
    color: #b0b3b8;
    cursor: pointer;
}

.dd-wrapper .arrow span {
    margin-right: 15px;
}

.package-products {
  display: flex;
  flex-direction: column;
}
tr.divider {
  background-color: #f2f2f2; /* Set the background color for the divider row */
}

table.dataTable tr.dtrg-group th {
  background-color: rgb(96 125 139 / 27%)!important;
  color: #465b65;
  font-family: 'metropolisbold';
  border-radius: 6px;
}

.pick-order-container-preview {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 15px;
  background: #f1faff;
  z-index: 10;
}

.wp-table td:hover .min-stock {
  opacity: 50%;
  transition: all 0.4s ease;
}

/* Rest of your CSS remains the same */
.wp-table .min-stock {
  opacity: 0;
  transition: all 0.4s ease;
  cursor: pointer;
}



.pick-order-container-preview {
  position: fixed;
  width: 100%;
  bottom: 0;
  padding: 15px;
  background: #f1faff;
  z-index: 10;
}

.gen-popup-title {
  text-align: left!important;
  padding: 20px 20px 15px 30px!important;
  font-size: 21px!important;
}

.notification-popup-title {
  text-align: left!important;
  padding: 0px 20px 25px 20px!important;
  font-size: 21px!important;
  margin-top: -20px;
}

.gen-popup-subtitle {
  font-family: 'metropolisregular';
  font-size: 15px;
  color: #455A64;
}

.gen-popup-close {
  margin: 10px!important;
  font-size: 30px!important;
  color: #29353c96!important;
  position: absolute;
}

.gen-popup-actions {
  flex-flow: nowrap!important;
  flex-direction: row-reverse!important;
  justify-content: flex-start!important;
  z-index: 0;
}

.gen-popup-confirm {
  width: 200px!important;
}

.gen-popup-cancel {
  width: 200px!important;
}

.gen-popup-content {
  margin: 0px 5px 0px 5px!important;
}

.gen-popup-html-container {
  padding:10px!important
}

.notification-popup-html-container {
  padding: 0px!important;
  margin:0!important;
}

#products-found-from-supplier {
  max-height: 30vh;
  overflow-y: scroll;
  overflow-x: hidden;
}

.shipshot-image {
  width:50px;
  max-width: 50px;
  max-height: 37px;
  margin-left: 5px;
}

.shipshot-image img {
  width: -webkit-fill-available;
  border-radius: 10px;
}

.shipshot-placeholder {
  height: 37px;
  width: 50px;

  border: solid 1px #f0f0f0;
  border-radius: 8px;
  margin-left: 5px;
}

.shipshot-icon {
  margin-top: -7px;
  position: absolute;
  margin-left: -15px;
  background: #ffffff;
  border-radius: 10px;
}

.shipshot-order img {
  width: 200px;
  height:auto;
  margin-right: 10px;
  border-radius: 8px;
}

.shipshot-order {
  cursor: pointer;
}

.read-more-tag {
  color: #fa7070;
    margin-top: 15px;
    font-family: 'metropolissemi_bold';
    border: 1px solid #fa7070;
    width: fit-content;
    padding: 10px;
    border-radius: 8px;
    cursor:pointer;
}

.dispatch-summary-item {
  position: absolute;
  font-size:16px;
  font-family: metropolissemi_bold;
}

.process-order-weborder-alert {
  background: #fa707038;
  padding: 5px 10px;
  border-radius: 8px;
}

.wp-mobile-nav {
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  position: fixed;
  top: 0;
  padding:15px;
  z-index: 100;
}

.fade-scroll-elem {
  transition: opacity 0.3s ease;
}

.matched-orders-count {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  background: var(--wolfpak_pink);
  margin-top: -20px;
  padding-top: 30px;
  margin-bottom: 15px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding-left: 15px;
  padding-bottom: 10px;
  font-family: 'metropolisregular';
  font-size: 10px;
}

#batch-pick-orders-list span {
  padding: 5px;
  display: inline-table;
}

#batch-pick-orders-list {
  position: sticky;
  top: -1px;
  z-index: 1000;
  background-color: #0d2c36;
}

.start-batch-button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 5px 10px;
  color: #fa7070;
  font-family: 'metropolisbold';
}


.country-suggestions {
  float: right;
  text-align: left;
  max-height: 15vh;
  overflow-y: scroll;
  border: solid 1px #f2f2f2;
  border-radius: 8px;
  margin-top: 5px;
}

.country-suggestions .suggestion-item {
  padding:5px 0px;
}

.search-input-icon {
  color: #607D8B;
  font-size: 15px;
  padding: 15px;
}

.search-input {
  font-family: metropolisregular;
  font-size: 13px;
  height: 100%;
  background: unset;
}

div:where(.swal2-container).swal2-grow-column>.swal2-popup, div:where(.swal2-container).swal2-grow-fullscreen>.swal2-popup {
  display: block;
    align-content: center;
}

.dropzone {
  background: #f1faff !important;
  border: 2px dashed #bfd1da !important;
  display: flex;
  justify-content: center;
}

.dz-preview {
  background: none !important;
  border: unset !important;
  height: fit-content;
}

.dz-image {
  display: none;
}

.dz-progress {
  display: none !important;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
  background: #bfd1da!important;
  width: 200px;
}