/* 
    Created on : Mar 19, 2014, 9:48:25 AM
    Author     : @arboshiki
*/
/* 
    Created on : Sep 19, 2014, 1:47:13 PM
    Author     : @arboshiki
*/
/*
    Author      : @arboshiki
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:600,700,400,300);
/* 
    Created on : Aug 11, 2014, 5:14:12 PM
    Author     : @arboshiki
*/
.animated-super-fast {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-fast {
  -webkit-animation-duration: 0.5s;
  animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated {
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animated-slow {
  -webkit-animation-duration: 1.3s;
  animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
@-webkit-keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}
@-webkit-keyframes jumpUp {
  0% {
    -webkit-transform: translate3d(0, calc(230%), 0) scale3d(0, 1, 1);
    -webkit-animation-timing-function: ease-in;
  }
  40% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(0.02, 1.1, 1);
    -webkit-animation-timing-function: ease-out;
  }
  70% {
    -webkit-transform: translate3d(0, -40px, 0) scale3d(0.8, 1.1, 1);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}
@keyframes jumpUp {
  0% {
    transform: translate3d(0, calc(230%), 0) scale3d(0, 1, 1);
    animation-timing-function: ease-in;
  }
  40% {
    transform: translate3d(0, 0, 0) scale3d(0.02, 1.1, 1);
    animation-timing-function: ease-out;
  }
  70% {
    transform: translate3d(0, -40px, 0) scale3d(0.8, 1.1, 1);
  }
  100% {
    transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  }
}
@-webkit-keyframes expandOpen {
  0% {
    -webkit-transform: scale(1.8);
  }
  50% {
    -webkit-transform: scale(0.95);
  }
  80% {
    -webkit-transform: scale(1.05);
  }
  90% {
    -webkit-transform: scale(0.98);
  }
  100% {
    -webkit-transform: scale(1);
  }
}
@keyframes expandOpen {
  0% {
    transform: scale(1.8);
  }
  50% {
    transform: scale(0.95);
  }
  80% {
    transform: scale(1.05);
  }
  90% {
    transform: scale(0.98);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes fadeInScale {
  0% {
    transform: scale(0);
    opacity: 0.0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes fadeInScale {
  0% {
    -webkit-transform: scale(0);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
  }
}
@-webkit-keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    opacity: 0;
    -webkit-transform: scale(0.3);
    -ms-transform: scale(0.3);
    transform: scale(0.3);
  }
  100% {
    opacity: 0;
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}
.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.zoomIn {
  -webkit-animation-name: zoomIn;
  animation-name: zoomIn;
}
.zoomOut {
  -webkit-animation-name: zoomOut;
  animation-name: zoomOut;
}
.bounce {
  -webkit-animation-name: bounce;
  animation-name: bounce;
}
.jumpUp {
  -webkit-animation-name: jumpUp;
  animation-name: jumpUp;
}
.expandOpen {
  animation-name: expandOpen;
  -webkit-animation-name: expandOpen;
}
.fadeInScale {
  animation-name: fadeInScale;
  -webkit-animation-name: fadeInScale;
}
/* 
    Created on : Sep 19, 2014, 1:47:04 PM
    Author     : @arboshiki
*/
body.lobibox-open {
  overflow: hidden;
}
.lobibox {
  position: fixed;
  z-index: 4001;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  -webkit-box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 20px 5px rgba(0, 0, 0, 0.5);
}
.lobibox * {
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
}
.lobibox .lobibox-header {
  font-size: 20px;
  padding: 5px 10px;
  color: #eeeeee;
}
.lobibox .lobibox-header .btn-close {
  float: right;
  background-color: transparent;
  cursor: pointer;
  border: none;
  outline: 0;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}
.lobibox .lobibox-header .btn-close:hover {
  text-shadow: 2px 2px 3px rgba(0, 0, 0, 0.7);
}
.lobibox .lobibox-body {
  overflow: hidden;
  display: table;
  position: relative;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(255, 255, 255, 0.98);
  font-size: 16px;
}
.lobibox .lobibox-body .lobibox-icon-wrapper {
  position: relative;
  height: 100%;
  display: table;
  font-size: 60px;
}
.lobibox .lobibox-body .lobibox-icon-wrapper .lobibox-icon {
  display: table-cell;
  vertical-align: middle;
}
.lobibox .lobibox-body .lobibox-body-text-wrapper {
  display: table-cell;
  vertical-align: middle;
  width: 100%;
  padding-left: 10px;
}
.lobibox .lobibox-footer {
  text-align: center;
  padding: 6px;
}
.lobibox .lobibox-footer > * {
  margin: 0 10px 0 0;
}
.lobibox .lobibox-footer.text-center {
  text-align: center;
}
.lobibox .lobibox-footer.text-left {
  text-align: left;
}
.lobibox .lobibox-footer.text-right {
  text-align: right;
}
.lobibox.lobibox-confirm {
  border: none;
}
.lobibox.lobibox-confirm .lobibox-header {
  color: #eeeeee;
  background-color: #3c2d2d;
}
.lobibox.lobibox-confirm .lobibox-body .lobibox-icon {
  color: #3c2d2d;
}
.lobibox.lobibox-confirm .lobibox-footer {
  background-color: #594343;
}
.lobibox.lobibox-success {
  border: 1px solid #29b87e;
}
.lobibox.lobibox-success .lobibox-header {
  color: #eeeeee;
  background-color: #29b87e;
}
.lobibox.lobibox-success .lobibox-body .lobibox-icon {
  color: #29b87e;
}
.lobibox.lobibox-success .lobibox-footer {
  background-color: #40d498;
}
.lobibox.lobibox-error {
  border: 1px solid #ca2121;
}
.lobibox.lobibox-error .lobibox-header {
  color: #eeeeee;
  background-color: #ca2121;
}
.lobibox.lobibox-error .lobibox-body .lobibox-icon {
  color: #ca2121;
}
.lobibox.lobibox-error .lobibox-footer {
  background-color: #e03e3e;
}
.lobibox.lobibox-info {
  border: 1px solid #2e79b4;
}
.lobibox.lobibox-info .lobibox-header {
  color: #eeeeee;
  background-color: #2e79b4;
}
.lobibox.lobibox-info .lobibox-body .lobibox-icon {
  color: #2e79b4;
}
.lobibox.lobibox-info .lobibox-footer {
  background-color: #4593d0;
}
.lobibox.lobibox-warning {
  border: 1px solid #ce812e;
}
.lobibox.lobibox-warning .lobibox-header {
  color: #eeeeee;
  background-color: #ce812e;
}
.lobibox.lobibox-warning .lobibox-body .lobibox-icon {
  color: #ce812e;
}
.lobibox.lobibox-warning .lobibox-footer {
  background-color: #d99a56;
}
.lobibox.lobibox-prompt {
  border: none;
}
.lobibox.lobibox-prompt .lobibox-header {
  color: #eeeeee;
  background-color: #3c2d2d;
}
.lobibox.lobibox-prompt .lobibox-body {
  padding: 20px;
}
.lobibox.lobibox-prompt .lobibox-body .lobibox-input {
  min-height: 38px;
  border: 1px solid #21cb91;
  width: 100%;
  padding: 5px;
  font-size: 18px;
  outline: 0;
}
.lobibox.lobibox-prompt .lobibox-body .lobibox-input:focus {
  background-color: #eeeeee;
}
.lobibox.lobibox-prompt .lobibox-body .lobibox-input.invalid {
  border-color: #dc2b2a;
}
.lobibox.lobibox-prompt .lobibox-body .lobibox-input-error-message {
  margin-top: 5px;
  margin-bottom: 0;
  font-size: 13px;
  color: #dc2b2a;
}
.lobibox.lobibox-prompt .lobibox-footer {
  background-color: #594343;
}
.lobibox.lobibox-progress .lobibox-header {
  background-color: #2f5d6d;
}
.lobibox.lobibox-progress .lobibox-body {
  padding: 15px;
  font-size: 16px;
}
.lobibox.lobibox-progress .lobibox-body .lobibox-progress-bar-wrapper {
  position: relative;
  height: 20px;
  border: 1px solid #c3c3c3;
  border-radius: 10px;
  background-color: #d5d5d5;
}
.lobibox.lobibox-progress .lobibox-body .lobibox-progress-bar-wrapper .lobibox-progress-bar {
  width: 0;
  border-radius: 10px;
  background-color: #468ba2;
  height: 100%;
  text-align: center;
}
.lobibox.lobibox-progress .lobibox-body .lobibox-progress-bar-wrapper .lobibox-progress-text {
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
.lobibox.lobibox-progress .lobibox-body .lobibox-progress-outer {
  margin-bottom: 0;
}
.lobibox.lobibox-progress .lobibox-body .lobibox-progress-outer .progress-bar {
  transition: none;
}
.lobibox.lobibox-progress .lobibox-body .lobibox-progress-outer [data-role="progress-text"] {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.7);
}
.lobibox.lobibox-window {
  border: 3px solid #225eb8;
  border-radius: 6px;
}
.lobibox.lobibox-window .lobibox-header {
  background-color: #225eb8;
  color: #eeeeee;
  font-size: 18px;
}
.lobibox.lobibox-window .lobibox-body {
  overflow: auto;
  display: block;
  font-size: 14px;
  padding: 15px;
  background-color: #f5f8fd;
}
.lobibox.lobibox-window .lobibox-footer {
  background-color: #8ab0e9;
}
.lobibox.lobibox-window :last-child {
  border-bottom-right-radius: 3px;
  border-bottom-left-radius: 3px;
}
.lobibox.draggable .lobibox-header {
  cursor: move;
}
.lobibox .lobibox-btn {
  display: inline-block;
  padding: 8px 14px;
  font-size: 14px;
  cursor: pointer;
  border: 1px solid transparent;
  border-radius: 2px;
  line-height: initial;
}
.lobibox .lobibox-btn.lobibox-btn-cancel {
  color: #ffffff;
  background-color: #ca2121;
  border-color: #ca2121;
}
.lobibox .lobibox-btn.lobibox-btn-cancel:hover,
.lobibox .lobibox-btn.lobibox-btn-cancel:focus,
.lobibox .lobibox-btn.lobibox-btn-cancel.focus,
.lobibox .lobibox-btn.lobibox-btn-cancel:active,
.lobibox .lobibox-btn.lobibox-btn-cancel.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-cancel {
  color: #ffffff;
  background-color: #9e1a1a;
  border-color: #951818;
}
.lobibox .lobibox-btn.lobibox-btn-cancel:active,
.lobibox .lobibox-btn.lobibox-btn-cancel.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-cancel {
  background-image: none;
}
.lobibox .lobibox-btn.lobibox-btn-cancel.disabled,
.lobibox .lobibox-btn.lobibox-btn-cancel[disabled],
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-cancel,
.lobibox .lobibox-btn.lobibox-btn-cancel.disabled:hover,
.lobibox .lobibox-btn.lobibox-btn-cancel[disabled]:hover,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-cancel:hover,
.lobibox .lobibox-btn.lobibox-btn-cancel.disabled:focus,
.lobibox .lobibox-btn.lobibox-btn-cancel[disabled]:focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-cancel:focus,
.lobibox .lobibox-btn.lobibox-btn-cancel.disabled.focus,
.lobibox .lobibox-btn.lobibox-btn-cancel[disabled].focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-cancel.focus,
.lobibox .lobibox-btn.lobibox-btn-cancel.disabled:active,
.lobibox .lobibox-btn.lobibox-btn-cancel[disabled]:active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-cancel:active,
.lobibox .lobibox-btn.lobibox-btn-cancel.disabled.active,
.lobibox .lobibox-btn.lobibox-btn-cancel[disabled].active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-cancel.active {
  background-color: #ca2121;
  border-color: #ca2121;
}
.lobibox .lobibox-btn.lobibox-btn-cancel .badge {
  color: #ca2121;
  background-color: #ffffff;
}
.lobibox .lobibox-btn.lobibox-btn-yes {
  color: #ffffff;
  background-color: #29b87e;
  border-color: #29b87e;
}
.lobibox .lobibox-btn.lobibox-btn-yes:hover,
.lobibox .lobibox-btn.lobibox-btn-yes:focus,
.lobibox .lobibox-btn.lobibox-btn-yes.focus,
.lobibox .lobibox-btn.lobibox-btn-yes:active,
.lobibox .lobibox-btn.lobibox-btn-yes.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-yes {
  color: #ffffff;
  background-color: #208e61;
  border-color: #1e865c;
}
.lobibox .lobibox-btn.lobibox-btn-yes:active,
.lobibox .lobibox-btn.lobibox-btn-yes.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-yes {
  background-image: none;
}
.lobibox .lobibox-btn.lobibox-btn-yes.disabled,
.lobibox .lobibox-btn.lobibox-btn-yes[disabled],
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-yes,
.lobibox .lobibox-btn.lobibox-btn-yes.disabled:hover,
.lobibox .lobibox-btn.lobibox-btn-yes[disabled]:hover,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-yes:hover,
.lobibox .lobibox-btn.lobibox-btn-yes.disabled:focus,
.lobibox .lobibox-btn.lobibox-btn-yes[disabled]:focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-yes:focus,
.lobibox .lobibox-btn.lobibox-btn-yes.disabled.focus,
.lobibox .lobibox-btn.lobibox-btn-yes[disabled].focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-yes.focus,
.lobibox .lobibox-btn.lobibox-btn-yes.disabled:active,
.lobibox .lobibox-btn.lobibox-btn-yes[disabled]:active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-yes:active,
.lobibox .lobibox-btn.lobibox-btn-yes.disabled.active,
.lobibox .lobibox-btn.lobibox-btn-yes[disabled].active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-yes.active {
  background-color: #29b87e;
  border-color: #29b87e;
}
.lobibox .lobibox-btn.lobibox-btn-yes .badge {
  color: #29b87e;
  background-color: #ffffff;
}
.lobibox .lobibox-btn.lobibox-btn-no {
  color: #ffffff;
  background-color: #0760b3;
  border-color: #0760b3;
}
.lobibox .lobibox-btn.lobibox-btn-no:hover,
.lobibox .lobibox-btn.lobibox-btn-no:focus,
.lobibox .lobibox-btn.lobibox-btn-no.focus,
.lobibox .lobibox-btn.lobibox-btn-no:active,
.lobibox .lobibox-btn.lobibox-btn-no.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-no {
  color: #ffffff;
  background-color: #054682;
  border-color: #054078;
}
.lobibox .lobibox-btn.lobibox-btn-no:active,
.lobibox .lobibox-btn.lobibox-btn-no.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-no {
  background-image: none;
}
.lobibox .lobibox-btn.lobibox-btn-no.disabled,
.lobibox .lobibox-btn.lobibox-btn-no[disabled],
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-no,
.lobibox .lobibox-btn.lobibox-btn-no.disabled:hover,
.lobibox .lobibox-btn.lobibox-btn-no[disabled]:hover,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-no:hover,
.lobibox .lobibox-btn.lobibox-btn-no.disabled:focus,
.lobibox .lobibox-btn.lobibox-btn-no[disabled]:focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-no:focus,
.lobibox .lobibox-btn.lobibox-btn-no.disabled.focus,
.lobibox .lobibox-btn.lobibox-btn-no[disabled].focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-no.focus,
.lobibox .lobibox-btn.lobibox-btn-no.disabled:active,
.lobibox .lobibox-btn.lobibox-btn-no[disabled]:active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-no:active,
.lobibox .lobibox-btn.lobibox-btn-no.disabled.active,
.lobibox .lobibox-btn.lobibox-btn-no[disabled].active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-no.active {
  background-color: #0760b3;
  border-color: #0760b3;
}
.lobibox .lobibox-btn.lobibox-btn-no .badge {
  color: #0760b3;
  background-color: #ffffff;
}
.lobibox .lobibox-btn.lobibox-btn-ok {
  color: #ffffff;
  background-color: #0760b3;
  border-color: #0760b3;
}
.lobibox .lobibox-btn.lobibox-btn-ok:hover,
.lobibox .lobibox-btn.lobibox-btn-ok:focus,
.lobibox .lobibox-btn.lobibox-btn-ok.focus,
.lobibox .lobibox-btn.lobibox-btn-ok:active,
.lobibox .lobibox-btn.lobibox-btn-ok.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-ok {
  color: #ffffff;
  background-color: #054682;
  border-color: #054078;
}
.lobibox .lobibox-btn.lobibox-btn-ok:active,
.lobibox .lobibox-btn.lobibox-btn-ok.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-ok {
  background-image: none;
}
.lobibox .lobibox-btn.lobibox-btn-ok.disabled,
.lobibox .lobibox-btn.lobibox-btn-ok[disabled],
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-ok,
.lobibox .lobibox-btn.lobibox-btn-ok.disabled:hover,
.lobibox .lobibox-btn.lobibox-btn-ok[disabled]:hover,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-ok:hover,
.lobibox .lobibox-btn.lobibox-btn-ok.disabled:focus,
.lobibox .lobibox-btn.lobibox-btn-ok[disabled]:focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-ok:focus,
.lobibox .lobibox-btn.lobibox-btn-ok.disabled.focus,
.lobibox .lobibox-btn.lobibox-btn-ok[disabled].focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-ok.focus,
.lobibox .lobibox-btn.lobibox-btn-ok.disabled:active,
.lobibox .lobibox-btn.lobibox-btn-ok[disabled]:active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-ok:active,
.lobibox .lobibox-btn.lobibox-btn-ok.disabled.active,
.lobibox .lobibox-btn.lobibox-btn-ok[disabled].active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-ok.active {
  background-color: #0760b3;
  border-color: #0760b3;
}
.lobibox .lobibox-btn.lobibox-btn-ok .badge {
  color: #0760b3;
  background-color: #ffffff;
}
.lobibox .lobibox-btn.lobibox-btn-default {
  color: #000000;
  background-color: #e2e2e2;
  border-color: #dadada;
}
.lobibox .lobibox-btn.lobibox-btn-default:hover,
.lobibox .lobibox-btn.lobibox-btn-default:focus,
.lobibox .lobibox-btn.lobibox-btn-default.focus,
.lobibox .lobibox-btn.lobibox-btn-default:active,
.lobibox .lobibox-btn.lobibox-btn-default.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-default {
  color: #000000;
  background-color: #c9c9c9;
  border-color: #bcbcbc;
}
.lobibox .lobibox-btn.lobibox-btn-default:active,
.lobibox .lobibox-btn.lobibox-btn-default.active,
.open > .dropdown-toggle.lobibox .lobibox-btn.lobibox-btn-default {
  background-image: none;
}
.lobibox .lobibox-btn.lobibox-btn-default.disabled,
.lobibox .lobibox-btn.lobibox-btn-default[disabled],
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-default,
.lobibox .lobibox-btn.lobibox-btn-default.disabled:hover,
.lobibox .lobibox-btn.lobibox-btn-default[disabled]:hover,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-default:hover,
.lobibox .lobibox-btn.lobibox-btn-default.disabled:focus,
.lobibox .lobibox-btn.lobibox-btn-default[disabled]:focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-default:focus,
.lobibox .lobibox-btn.lobibox-btn-default.disabled.focus,
.lobibox .lobibox-btn.lobibox-btn-default[disabled].focus,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-default.focus,
.lobibox .lobibox-btn.lobibox-btn-default.disabled:active,
.lobibox .lobibox-btn.lobibox-btn-default[disabled]:active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-default:active,
.lobibox .lobibox-btn.lobibox-btn-default.disabled.active,
.lobibox .lobibox-btn.lobibox-btn-default[disabled].active,
fieldset[disabled] .lobibox .lobibox-btn.lobibox-btn-default.active {
  background-color: #e2e2e2;
  border-color: #dadada;
}
.lobibox .lobibox-btn.lobibox-btn-default .badge {
  color: #e2e2e2;
  background-color: #000000;
}
.lobibox.lobibox-hidden {
  display: none;
}
.lobibox-backdrop {
  position: fixed;
  z-index: 4000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
/*
    Created on : Sep 19, 2014, 2:01:43 PM
    Author     : @arboshiki
*/
.lobibox-notify-wrapper {
  z-index: 5000;
  position: fixed;
}
.lobibox-notify-wrapper.top {
  top: 0px;
}
.lobibox-notify-wrapper.bottom {
  bottom: 0px;
}
.lobibox-notify-wrapper.left {
  left: 0px;
  margin-right: 0px;
}
.lobibox-notify-wrapper.right {
  right: 0px;
  margin-left: 0px;
}
.lobibox-notify-wrapper.right .lobibox-notify {
  margin-left: auto;
}
.lobibox-notify-wrapper.center {
  left: 50%;
}
.lobibox-notify-wrapper-large {
  z-index: 5000;
  position: fixed;
}
.lobibox-notify-wrapper-large.top {
  top: 0px;
}
.lobibox-notify-wrapper-large.bottom {
  bottom: 0px;
}
.lobibox-notify-wrapper-large.left {
  left: 0px;
}
.lobibox-notify-wrapper-large.left .lb-notify-tabs > li {
  float: left;
  margin-left: 0;
  margin-right: 2px;
}
.lobibox-notify-wrapper-large.right {
  right: 0px;
}
.lobibox-notify-wrapper-large .lb-notify-tabs {
  list-style: none;
  padding: 0;
  margin: 0 0 -5px 0;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li {
  float: right;
  margin-left: 2px;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li > a {
  text-align: center;
  display: table;
  text-decoration: none;
  font-size: 18px;
  height: 32px;
  color: #FFF;
  width: 28px;
  opacity: 0.6;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li > a:hover,
.lobibox-notify-wrapper-large .lb-notify-tabs > li > a:active,
.lobibox-notify-wrapper-large .lb-notify-tabs > li > a:focus,
.lobibox-notify-wrapper-large .lb-notify-tabs > li > a:hover:active {
  color: #FFF;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li > a .tab-control-icon {
  display: table-cell;
  vertical-align: middle;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-default > a {
  background-color: rgba(28, 28, 28, 0.9);
  border-color: #141414;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-default > a:hover {
  background-color: #1c1c1c;
  border-color: #0f0f0f;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-error > a {
  background-color: rgba(202, 33, 33, 0.9);
  border-color: #bd1f1f;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-error > a:hover {
  background-color: #ca2121;
  border-color: #b41d1d;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-success > a {
  background-color: rgba(41, 184, 126, 0.9);
  border-color: #26ab75;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-success > a:hover {
  background-color: #29b87e;
  border-color: #24a370;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-warning > a {
  background-color: rgba(206, 129, 46, 0.9);
  border-color: #c1792b;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-warning > a:hover {
  background-color: #ce812e;
  border-color: #b97429;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-info > a {
  background-color: rgba(46, 121, 180, 0.9);
  border-color: #2b71a8;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.lobibox-notify-info > a:hover {
  background-color: #2e79b4;
  border-color: #296ba0;
}
.lobibox-notify-wrapper-large .lb-notify-tabs > li.active > a {
  opacity: 1;
}
.lobibox-notify-wrapper-large .lb-notify-tabs:after {
  content: "";
  display: block;
  clear: both;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper {
  background-color: transparent;
  padding: 0;
  border: none;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper .lb-tab-pane {
  display: none;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper .lb-tab-pane.active {
  display: block;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper .lobibox-notify {
  min-height: 150px;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper .lobibox-notify .lobibox-notify-icon-wrapper {
  width: 100px;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper .lobibox-notify .lobibox-notify-icon > div .icon-el {
  font-size: 78px;
}
.lobibox-notify-wrapper-large .lb-notify-wrapper .lobibox-notify .lobibox-notify-body {
  margin: 13px 20px;
  margin-left: 130px;
}
.lobibox-notify {
  position: relative;
  min-height: 85px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-size: 14px;
  margin: 7px 0;
  border-radius: 0;
  border: 1px solid transparent;
  -webkit-box-shadow: 2px 2px 5px #aaaaaa;
  box-shadow: 2px 2px 5px #aaaaaa;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.lobibox-notify .lobibox-notify-icon-wrapper {
  position: absolute;
  left: 15px;
  width: 60px;
  height: 100%;
}
.lobibox-notify .lobibox-notify-icon {
  display: table;
  width: 100%;
  height: 100%;
}
.lobibox-notify .lobibox-notify-icon > div {
  display: table-cell;
  vertical-align: middle;
}
.lobibox-notify .lobibox-notify-icon > div > img {
  width: 100%;
  max-width: 100%;
  margin-top: 3px;
  border-radius: 4px;
}
.lobibox-notify .lobibox-notify-icon > div .icon-el {
  text-align: center;
  font-size: 55px;
}
.lobibox-notify .lobibox-notify-body {
  margin: 10px 20px;
  margin-left: 90px;
}
.lobibox-notify .lobibox-notify-title {
  font-size: 20px;
}
.lobibox-notify .lobibox-notify-msg {
  overflow: hidden;
}
.lobibox-notify .lobibox-close {
  position: absolute;
  text-align: center;
  border-radius: 50%;
  right: 10px;
  top: 10px;
  font-size: 20px;
  line-height: 19px;
  width: 19px;
  height: 19px;
  -webkit-transition: all 0.2s;
  -o-transition: all 0.2s;
  transition: all 0.2s;
}
.lobibox-notify .lobibox-close:hover {
  background-color: rgba(0, 0, 0, 0.5);
  font-weight: bold;
}
.lobibox-notify .lobibox-delay-indicator {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
}
.lobibox-notify .lobibox-delay-indicator > div {
  position: relative;
  height: 100%;
  width: 0;
  background-color: #e8e8e8;
}
.lobibox-notify.lobibox-notify-default {
  border-color: #0f0f0f;
  background-color: #1c1c1c;
  color: #ffffff;
}
.lobibox-notify.lobibox-notify-default:hover {
  background-color: #1c1c1c;
  border-color: #FFF;
}
.lobibox-notify.lobibox-notify-default .lobibox-close:hover {
  background-color: #4f4f4f;
}
.lobibox-notify.lobibox-notify-error {
  border-color: #b41d1d;
  background-color: #ca2121;
  color: #ffffff;
}
.lobibox-notify.lobibox-notify-error:hover {
  background-color: #ca2121;
  border-color: #FFF;
}
.lobibox-notify.lobibox-notify-success {
  border-color: #24a370;
  background-color: #29b87e;
  color: #ffffff;
}
.lobibox-notify.lobibox-notify-success:hover {
  background-color: #29b87e;
  border-color: #FFF;
}
.lobibox-notify.lobibox-notify-warning {
  border-color: #b97429;
  background-color: #ce812e;
  color: #ffffff;
}
.lobibox-notify.lobibox-notify-warning:hover {
  background-color: #ce812e;
  border-color: #FFF;
}
.lobibox-notify.lobibox-notify-info {
  border-color: #296ba0;
  background-color: #2e79b4;
  color: #ffffff;
}
.lobibox-notify.lobibox-notify-info:hover {
  background-color: #2e79b4;
  border-color: #FFF;
}
.lobibox-notify.rounded {
  border-radius: 30px;
}
.lobibox-notify:hover {
  cursor: pointer;
  -webkit-box-shadow: 3px 3px 10px #aaaaaa;
  box-shadow: 3px 3px 10px #aaaaaa;
}
.lobibox-notify.notify-mini {
  min-height: 36px;
}
.lobibox-notify.notify-mini .lobibox-notify-title {
  margin-top: -5px;
  font-size: 20px;
  line-height: 22px;
}
.lobibox-notify.notify-mini .lobibox-notify-msg {
  line-height: 16px;
}
.lobibox-notify.notify-mini .lobibox-notify-icon-wrapper {
  left: 12px;
  width: 32px;
}
.lobibox-notify.notify-mini .lobibox-notify-icon > div .icon-el {
  font-size: 32px;
}
.lobibox-notify.notify-mini .lobibox-notify-body {
  margin: 15px 30px 15px 56px;
}
.lobibox-notify.without-icon .lobibox-notify-body {
  margin-left: 20px;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
/* 3D Effects */
.swiper-container-3d {
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  touch-action: pan-x;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: $themeColor;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: $themeColor;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%24themeColor'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%24themeColor'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-lock {
  display: none;
}
.title.item {
  padding: .92857143em 1.14285714em !important;
}
.sidebar::-webkit-scrollbar {
  display: none !important;
}
.ui.sidebar {
  overflow: visible !important;
}
.icon {
  cursor: pointer !important;
}
.disabled-input {
  pointer-events: none !important;
  opacity: 0.5 !important;
  /* Optional: Apply a visual cue to indicate disabled state */
}
.impersonate-card {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9999;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid;
  border-radius: 2px;
}
.keepa-chart {
  width: 100%;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.keepa-chart .header {
  display: block;
  margin: 0;
  color: rgba(0, 0, 0, 0.87);
  font-size: 0.92857143em;
  font-weight: bold;
  text-transform: none;
}
.keepa-chart .canvas {
  height: 230px !important;
  width: 100%;
}
.keepa-chart .keepa-range-wrap {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.keepa-chart .keepa-range-wrap span {
  margin-right: 5px;
}
.keepa-chart .keepa-range-wrap select {
  width: 100px;
}
.keepa-chart .keepa-range-wrap select:focus {
  outline: none !important;
}
.lengendTooptip {
  position: absolute;
  display: none;
  padding: 2px;
  border: 1px solid #fdd;
  background-color: #fee;
  opacity: 0.99;
  z-index: 1075;
  color: #444;
  text-align: left;
}
.lengendTooptip .tip {
  white-space: nowrap;
}
.lengendTooptip > div {
  line-height: normal;
}
.lengendTooptip .tool_tip_btn {
  width: 8px;
  height: 8px;
  margin-right: 3px;
  border-radius: 50%;
  display: inline-block;
}
.lengendTooptip .tool_tip_btn.amazon {
  background: #5ac8fa !important;
}
.lengendTooptip .tool_tip_btn.newprice {
  background: black !important;
}
.lengendTooptip .tool_tip_btn.rank {
  background: #92bf91 !important;
}
.lengendTooptip .tool_tip_btn.buybox.diamond {
  width: 8px;
  height: 8px;
  background: none;
  border-radius: 0;
  border: 1px solid blue !important;
  padding: 0;
  transform: rotate(45deg);
}
.lengendTooptip .fbm.square {
  width: 8px;
  height: 8px;
  background: none;
  border-radius: 0;
  border: 1px solid green !important;
  padding: 0;
}
.lengendTooptip .tool_tip_btn.fba {
  position: relative;
  background: none;
}
.lengendTooptip .tool_tip_btn.fba .flot-triangle {
  position: absolute;
  width: 0;
  border-bottom: solid 10px red !important;
  border-right: solid 5px transparent !important;
  border-left: solid 5px transparent !important;
  right: -2px;
  top: -2px;
}
.lengendTooptip .tool_tip_btn.fba .flot-triangle .flot-empty {
  position: absolute;
  top: 1px;
  left: -4px;
  width: 0;
  border-bottom: solid 8px white !important;
  border-right: solid 4px transparent !important;
  border-left: solid 4px transparent !important;
}
.lengendTooptip .num {
  font-size: 11px;
}
.lengendTooptip .timetooltip {
  font-size: 12px;
  font-weight: bold;
  color: black;
  border-bottom: 1px solid #e3e3e3 !important;
  padding-bottom: 3px;
  padding-right: 3px;
  padding-left: 3px;
}
.lengendTooptip .hide {
  display: none !important;
}
.no-mb {
  margin-bottom: 0 !important;
}
.js-inventory-categories.ui.dropdown .menu {
  background: #fff !important;
}
.ui.dividing.header.customize {
  padding-bottom: 7px;
  margin-bottom: 9px;
  margin-top: 40px;
}
.ui.divider.customize {
  margin-top: 5px;
  margin-bottom: 5px;
}
.app-layout {
  background: #1b1c1d;
  height: 100vh;
}
.app-layout .main-container {
  position: relative;
  overflow: hidden;
  height: 100%;
  background: #ffffff;
}
.app-layout .main-container.menu-open {
  margin-left: 175px;
}
.app-layout .main-container.menu-closed {
  margin-left: 60px;
}
.app-layout .sidebar.menu-open {
  width: 175px !important;
}
.app-layout.iframed .ui.sidebar {
  display: none !important;
}
.app-layout.iframed .main-container {
  margin: 0 !important;
}
.grid-highlight-row {
  background: sandybrown !important;
}
.grid-error-row {
  background: #e64040 !important;
}
.dirty-ag-cell::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  border-color: transparent;
  border-style: solid;
  border-radius: 1px;
  border-left-color: red;
  border-top-color: red;
}
.ag-rich-select-list {
  width: 275px !important;
}
.clean-ag-cell::after {
  content: '';
}
.ag-cell {
  overflow: visible;
}
.no-border-radius {
  border-radius: 0 !important;
}
.th-adjusted-date-range {
  width: 13%;
}
.a-count-lable {
  float: right;
}
.ui.tab {
  display: none;
}
.highcharts-credits {
  display: none;
}
.ag-watermark {
  display: none;
}
.highcharts-range-selector-buttons {
  display: none;
}
.claim-count {
  font-size: 14px;
  float: right;
}
.inventory-satistics {
  text-align: center;
}
.select-cell {
  -webkit-user-select: all;
  /* Chrome 49+ */
  -moz-user-select: all;
  /* Firefox 43+ */
  -ms-user-select: all;
  /* No support yet */
  user-select: all;
  /* Likely future */
  text-overflow: clip;
  overflow: visible;
  white-space: normal;
}
.bg-grey {
  background: rgba(255, 255, 255, 0.15) !important;
}
#shipment-items-grid tr td {
  overflow: visible;
}
#strategy-grid tr td {
  overflow: visible;
}
#shipments-grid tr td {
  overflow: visible;
}
#container {
  width: 100%;
  margin-top: -30px;
}
.swiper-slide {
  background: whitesmoke;
  text-align: center;
  align-content: center;
}
.append-buttons {
  text-align: center;
  margin-top: 20px;
}
.catalog-tooltip [data-tooltip]:hover:after {
  width: 400px;
  white-space: pre-wrap;
}
.filter-inventory:hover {
  cursor: pointer;
  border: 1px solid black;
}
.lobybox-custon-yes {
  color: #ffffff;
  background-color: red;
  border-color: red;
}
.lobybox-custon-no {
  color: #ffffff;
  background-color: green;
  border-color: green;
}
.item-notifications:hover {
  background: lightgray !important;
}
.a-return-info {
  width: 50%;
  text-align: center;
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000;
}
.return_cantainer {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  align-items: center !important;
  min-height: 80vh !important;
}
.return_cantainer .icon {
  font-size: 10rem;
}
.ui.black.label {
  padding-left: 12px !important;
  padding-right: 12px !important;
}
.ui.btn_restart_background_jobs {
  margin-top: 7px;
  margin-left: 10px !important;
}
.ui.btn_restart_background_jobs:hover {
  cursor: pointer !important;
}
.ui.js-reduce-size {
  margin-top: 7px;
  margin-left: 10px !important;
}
.ui.js-reduce-size:hover {
  cursor: pointer !important;
}
.ui.js-reset-size {
  margin-top: 7px;
  margin-left: 1px !important;
}
.ui.js-reset-size:hover {
  cursor: pointer !important;
}
.sales-height-50 {
  height: 50% !important;
}
.sales-height-100 {
  height: 100% !important;
}
.sales-hidden {
  display: none !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay {
  width: 85% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay:hover {
  cursor: unset !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui.attached.segment.overflow__auto__y {
  padding: 8px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui.attached.segment.overflow__auto__y.ui-iframe {
  margin: 0;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui.attached.segment.overflow__auto__y.ui-iframe .first-field {
  width: 60%;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ten.wide.column.ui.attached.segment.loading .keepa-stats-wrapper.ui.segment.loading::before,
.ui.visible.right.overlay.sidebar.edit-product-overlay .ten.wide.column.ui.attached.segment.loading .keepa-stats-wrapper.ui.segment.loading::after {
  display: none;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .width-full {
  width: 100% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  min-height: 250px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .fields {
  margin: 0em -0.4em 1em;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .fields > .field {
  padding-left: 0.4em !important;
  padding-right: 0.4em !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field label {
  font-size: 11.5px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field input {
  padding: 0.67857143em 0.3em !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field.width-full {
  width: 100%;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field .multiple.dropdown input {
  padding: 0 !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .input > input {
  font-size: 13px;
  height: 38px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .input > input::placeholder {
  font-size: 12px;
  /* Set the desired font size */
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .text.default {
  font-size: 12px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .text.default::placeholder {
  font-size: 12px;
  /* Set the desired font size */
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.dropdown:not(.button) > .default.text {
  font-size: 12px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui[class*="left icon"].input > input {
  padding-left: 1.1em !important;
  padding-right: 0.5em !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui[class*="left icon barcode"].input > input {
  padding-left: 1.4em !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.icon.input > i.icon {
  width: 1.6em;
  font-size: 11px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.icon.input > i.icon.dollar {
  width: 1.2em;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.selection.dropdown.tax-code,
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.selection.dropdown.suppliers {
  min-width: auto;
  height: 33px;
  padding: 0.8em 0.3em !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.selection.dropdown.tax-code .text,
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.selection.dropdown.suppliers .text {
  width: 86%;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .min-max-sell-field {
  display: flex;
  height: 76px;
  justify-content: unset;
  align-items: end;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field.xs {
  width: 12%;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field.sm {
  width: 22%;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .field.lg {
  width: 31.99%;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .info-custom-fields .column {
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 7px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .info-custom-fields .add-custom-field {
  padding-left: 0;
  padding-right: 0;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .info-custom-fields .add-custom-field .js-add-fields {
  min-width: 100%;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields .ui.divider.customize {
  margin-top: 2px;
  margin-bottom: 2px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields input[type="number"]::-webkit-inner-spin-button,
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui-iframe-fields input[type="number"]:focus::-webkit-inner-spin-button {
  -webkit-appearance: textfield;
  margin: 0;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui.dividing.header.customize {
  margin-top: 0;
  font-size: 12px;
  margin-bottom: 14px;
  padding-bottom: 8px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .ui-iframe .ui.dividing.customize {
  margin-bottom: 8.2px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .align-left {
  text-align: left !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .align-right {
  text-align: right !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .align-center {
  text-align: center !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .text-blue {
  color: #198ee0 !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .is-table-responsive {
  max-height: 350px;
  overflow: auto;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper {
  position: relative;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table {
  margin-top: 0;
  font-size: 12px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table .ui.teal {
  font-size: 10px;
  line-height: 5px;
  background-color: #5ac8fa !important;
  border-color: #5ac8fa !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table a {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.87);
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table td {
  padding: 0.58571429em 0.78571429em;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table > tbody > tr:nth-of-type(even) {
  background-color: #f9fafb82;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table > tbody > tr.offer-fba {
  background-color: rgba(255, 255, 0, 0.05) !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-offers-wrapper .keepa-offers-table thead tr th {
  white-space: nowrap;
  padding: 0.52857143em 0.78571429em;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-offers-wrapper .keepa-offers-table tbody tr td {
  white-space: nowrap;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-offers-wrapper .keepa-offers-table tbody tr td:nth-child(5) {
  white-space: unset;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper {
  min-height: 250px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper.ui.segment {
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper .keepa-stats-table thead tr th {
  padding: 0.243em 0.78571429em;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper .keepa-stats-table tbody tr td {
  padding: 0.15em 0.78571429em !important;
  background: none;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper .keepa-stats-table .fotter-rating-wrap {
  display: flex;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper .keepa-stats-table .fotter-rating-wrap .rating-wrap {
  margin-right: auto;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-stats-wrapper .keepa-stats-table .fotter-rating-wrap .hazmat-btns-wrap a {
  text-decoration: none !important;
  margin-right: 5px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-chart-wrapper {
  margin-top: 0px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-chart-wrapper .keepa-range-wrap select {
  padding: 5px;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .keepa-chart-wrapper .keepa-chart .canvas {
  height: 330px !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '★★★★★';
  color: #ddd;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '★★★★★';
  color: #8bc53d;
  overflow: hidden;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-0:after {
  width: 0 !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-10:after {
  width: 10% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-20:after {
  width: 20% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-30:after {
  width: 30% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-40:after {
  width: 40% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-50:after {
  width: 50% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-60:after {
  width: 60% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-70:after {
  width: 70% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-80:after {
  width: 80% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-90:after {
  width: 90% !important;
}
.ui.visible.right.overlay.sidebar.edit-product-overlay .stars-container.stars-100:after {
  width: 100% !important;
}
body.dark-mode .ui.visible.right.overlay.sidebar.edit-product-overlay .lp-table-wrapper .inner-wrap table a {
  color: #198ee0 !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar {
  width: 85% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar:hover {
  cursor: unset !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .eleven.wide.ui.attached.segment.height__100 {
  padding-top: 5px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui.attached.segment.overflow__auto__y {
  padding: 8px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui.attached.segment.overflow__auto__y.ui-iframe {
  margin: 0;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui.attached.segment.overflow__auto__y.ui-iframe .first-field {
  width: 60%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui.attached.segment.loading .keepa-stats-wrapper.ui.segment.loading::before,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui.attached.segment.loading .keepa-stats-wrapper.ui.segment.loading::after {
  display: none;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .width-full {
  width: 100% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields {
  padding: 5px;
  border-radius: 5px;
  border: 1px solid #e3e3e3;
  min-height: 301px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .fields {
  margin: 0em -0.4em 1em;
  margin-bottom: 8px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .fields > .field {
  padding-left: 0.4em !important;
  padding-right: 0.4em !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .info-custom-fields {
  margin: 0;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .info-custom-fields .column {
  padding-left: 0;
  padding-bottom: 0;
  padding-right: 7px;
  padding-top: 0;
  padding-bottom: 10px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .info-custom-fields .add-custom-field {
  padding-left: 0;
  padding-right: 0;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .info-custom-fields .add-custom-field .js-add-fields {
  min-width: 100%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.divider.customize {
  margin-top: 4px;
  margin-bottom: 4px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .min-max-sell-field {
  display: flex;
  height: 70px;
  justify-content: unset;
  align-items: end;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields input[type="number"]::-webkit-inner-spin-button,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields input[type="number"]:focus::-webkit-inner-spin-button {
  -webkit-appearance: textfield;
  margin: 0;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.dividing.header.customize {
  margin-top: 0;
  font-size: 12px;
  margin-bottom: 10px;
  padding-bottom: 8px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.dividing.customize {
  margin-bottom: 8.2px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .field label {
  font-size: 11.5px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .field.width-full {
  width: 100%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .field .ui.labeled.input > .label {
  font-size: 1em;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .input > input,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields input {
  font-size: 13px;
  height: 38px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .input > input::placeholder,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields input::placeholder,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .input > input .text.default,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields input .text.default {
  font-size: 12px;
  /* Set the desired font size */
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.selection.dropdown.condition,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.selection.dropdown.tax-code,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.selection.dropdown.suppliers {
  min-width: auto;
  height: 33px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.selection.dropdown.condition .text,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.selection.dropdown.tax-code .text,
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.selection.dropdown.suppliers .text {
  width: 200px;
  height: 30px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .field.xs {
  width: 12%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .field.sm {
  width: 22%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .field.lg {
  width: 31.99%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe .ui-iframe-fields .ui.search.selection.dropdown.js-add-fields {
  min-width: 100%;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe div[data-tab="package-dimensions"] .ui.divider {
  margin: 0.5rem 0rem;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .ui-iframe div[data-tab="repricer"] .field.small {
  width: 40% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .mb-3 {
  margin-bottom: 3px !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .mr-0 {
  margin-right: 0 !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .align-left {
  text-align: left !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .align-right {
  text-align: right !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .align-center {
  text-align: center !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .text-blue {
  color: #198ee0 !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .is-table-responsive {
  max-height: 310px;
  overflow: auto;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper {
  position: relative;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table {
  margin-top: 0;
  font-size: 12px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table .ui.teal {
  font-size: 10px;
  line-height: 5px;
  background-color: #5ac8fa !important;
  border-color: #5ac8fa !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table a {
  text-decoration: underline;
  color: rgba(0, 0, 0, 0.87);
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table td {
  padding: 0.58571429em 0.78571429em;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table > tbody > tr:nth-of-type(even) {
  background-color: #f9fafb82;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table > tbody > tr.offer-fba {
  background-color: rgba(255, 255, 0, 0.05) !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-offers-wrapper .keepa-offers-table thead tr th {
  white-space: nowrap;
  padding: 0.52857143em 0.78571429em;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-offers-wrapper .keepa-offers-table tbody tr td {
  white-space: nowrap;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-offers-wrapper .keepa-offers-table tbody tr td:nth-child(5) {
  white-space: unset;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper {
  min-height: 250px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper.ui.segment {
  padding: 0 !important;
  border: none !important;
  margin: 0 !important;
  box-shadow: none !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper .keepa-stats-table thead tr th {
  padding: 0.5em 0.78571429em;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper .keepa-stats-table tbody tr td {
  padding: 0.353em 0.78571429em !important;
  background: none;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper .keepa-stats-table .fotter-rating-wrap {
  display: flex;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper .keepa-stats-table .fotter-rating-wrap .rating-wrap {
  margin-right: auto;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-stats-wrapper .keepa-stats-table .fotter-rating-wrap .hazmat-btns-wrap a {
  text-decoration: none !important;
  margin-right: 5px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-chart-wrapper {
  margin-top: 0px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-chart-wrapper .keepa-range-wrap select {
  padding: 5px;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .keepa-chart-wrapper .keepa-chart .canvas {
  height: 300px !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container {
  position: relative;
  display: inline-block;
  color: transparent;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container:before {
  position: absolute;
  top: 0;
  left: 0;
  content: '★★★★★';
  color: #ddd;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container:after {
  position: absolute;
  top: 0;
  left: 0;
  content: '★★★★★';
  color: #8bc53d;
  overflow: hidden;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-0:after {
  width: 0 !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-10:after {
  width: 10% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-20:after {
  width: 20% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-30:after {
  width: 30% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-40:after {
  width: 40% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-50:after {
  width: 50% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-60:after {
  width: 60% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-70:after {
  width: 70% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-80:after {
  width: 80% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-90:after {
  width: 90% !important;
}
.ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .stars-container.stars-100:after {
  width: 100% !important;
}
body.dark-mode .ui.visible.right.overlay.sidebar.add-product-to-batch-sidebar .lp-table-wrapper .inner-wrap table a {
  color: #198ee0 !important;
}
.settings__wrapper__outer__wrapper {
  max-width: 98%;
  margin: auto;
  margin-top: 7px;
}
.settings__wrapper__outer__wrapper .section-title {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 18px;
}
.settings__wrapper__outer__wrapper .parent_tabs {
  border-bottom: none !important;
}
.settings__wrapper__outer__wrapper .parent_tabs a.item {
  width: 100px;
  justify-content: center;
}
.settings__wrapper__outer__wrapper .settings__sidebar {
  width: 175px !important;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content {
  margin-bottom: 0 !important;
  border-bottom: none !important;
  padding: 0 !important;
  background: white !important;
  border: none;
  border-radius: 0;
  box-shadow: none;
  border-left: none !important;
  text-align: center;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item {
  position: relative;
  display: block;
  margin-bottom: -1px !important;
  background-color: #fff;
  border: 1px solid #e2e7eb !important;
  border-color: #e2e7eb;
  color: #575d63;
  padding: 10px 15px;
  margin-bottom: 0;
  border-bottom: none;
  z-index: 999;
  font-size: 12px;
  line-height: 1.42857143;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item .icon {
  display: inline-block;
  font-size: 18px;
  float: none !important;
  margin-right: unset !important;
  margin: auto !important;
  text-align: center;
  margin-top: 7px !important;
  margin-bottom: 7px !important;
  height: auto;
  width: auto;
  color: #058ce3;
  line-height: 18px;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item span {
  display: block;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item:hover {
  background: whitesmoke !important;
  color: #575d63;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item::before {
  display: none !important;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item:first-child {
  border-top-right-radius: 0 !important;
  border-top-left-radius: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item:last-child {
  border-bottom-right-radius: 0 !important;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item.active {
  background-color: #058ce3 !important;
  border-color: #058ce3 !important;
  color: #fff !important;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item.active::after {
  background: #058ce3 !important;
  width: 13px !important;
  height: 13px !important;
}
.settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item.active .icon {
  color: #fff !important;
}
.settings__wrapper__outer__wrapper .settings__main {
  width: calc(100% - 175px);
}
.settings__wrapper__outer__wrapper .settings__main .ui.tab {
  border: 1px solid #e2e7eb !important;
  min-height: 489px;
  padding: 20px !important;
}
.settings__wrapper__outer__wrapper .settings__main .ui.tab .ui.attached.segment {
  padding: 0 !important;
  margin-bottom: 10px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="sp-api"] .ui.attached.segment {
  background: none !important;
  border: none;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="sp-api"] .ui.attached.segment .ui.header {
  font-size: 14px;
  line-height: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="sp-api"] .ui.attached.segment .ui.header i {
  font-size: 14px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="sp-api"] .ui.attached.segment .ui.header .content {
  padding-left: 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.menu {
  background: none !important;
  border: none !important;
  min-height: auto !important;
  display: block;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.menu .ui.breadcrumb.item {
  padding: 0;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.menu .ui.breadcrumb.item .section:not(.active),
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.menu .ui.breadcrumb.item .divider,
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.menu .ui.breadcrumb.item:before {
  display: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.menu .ui.breadcrumb.item .section.active {
  line-height: 18px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="generic-settings"] .ui.attached.segment {
  background: none !important;
  border: none;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.attached.message {
  background: none !important;
  border: none !important;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.attached.message u {
  text-decoration: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.attached.message a {
  text-decoration: underline !important;
  color: #208ce3 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.attached.message .header {
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .four.wide.column {
  text-align: center !important;
  width: 33% !important;
  padding-right: 0 !important;
  padding-left: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .four.wide.column img {
  min-width: 150px !important;
  width: 50% !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .four.wide.column table th,
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .four.wide.column table td {
  font-size: 12px;
  padding: 5px 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .four.wide.column p {
  font-size: 11px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column {
  width: 67% !important;
  padding-right: 0;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column .ui.placeholder.segment {
  justify-content: flex-start;
  height: calc(100% - 10px) !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column .ui.placeholder.segment .ui.icon.header {
  font-size: 12px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column .ui.placeholder.segment .ui.icon.header::after {
  display: none;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column .ui.placeholder.segment .ui.icon.header .ui.yellow.button.lp-connect {
  font-size: 16px !important;
  margin-bottom: 10px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column .ui.placeholder.segment .ui.icon.header .ui.yellow.button.lp-connect .plus.circle.icon {
  margin: auto !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .twelve.wide.column .ui.placeholder.segment img {
  margin-bottom: 10px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.overflow__auto__y {
  height: 485px !important;
  margin-bottom: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup br {
  display: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.horizontal.divider.header {
  padding-right: 20px !important;
  padding-left: 20px !important;
  margin-top: 10px;
  margin-bottom: 15px !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.grid .eight.wide.column {
  width: 100% !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.grid .eight.wide.column > .fields {
  width: 100% !important;
  margin: 0 !important;
  margin-bottom: 1em !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.grid .eight.wide.column > .fields .field {
  width: 100% !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.grid .eight.wide.column:first-child {
  display: none;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="printer"] .ui.grid .js-printer-setup .ui.toggle.checkbox input + label {
  font-size: 12px !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.message {
  background: none !important;
  border: none !important;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.message u {
  text-decoration: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.message a {
  text-decoration: underline !important;
  color: #208ce3 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.message .header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment {
  background: none !important;
  padding: 0 !important;
  border-color: #e2e7eb !important;
  border: none !important;
  margin: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .ui.grid .selection.dropdown .text {
  white-space: nowrap;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .ui.grid > .three.wide.column {
  padding-right: 0;
  padding-left: 0;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .ui.grid .eleven.wide.column {
  padding-right: 0;
  padding-left: 0;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .ui.grid .eleven.wide.column .ten.wide.column .column {
  width: 100% !important;
  padding-right: 0;
  padding-left: 0;
  margin-bottom: 10px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .ui.grid .eleven.wide.column .three.wide.column {
  width: 25% !important;
  padding-left: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .ui.grid .eleven.wide.column .four.wide.column {
  margin-top: 0 !important;
  padding-left: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column {
  height: 322px !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.overflow__auto__y {
  height: 100% !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items {
  margin-top: 10px !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item {
  padding: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item > .content {
  padding: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item > .content .ui.grid {
  margin: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item .ui.header {
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
  line-height: 26px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item .remove-tag {
  padding: 5px;
  font-size: 12px;
  font-weight: normal;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item .ui.grid .column {
  padding-top: 0.35rem;
  padding-bottom: 0.35rem;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .ui.divided.items .item:first-child {
  border-top: 1px solid rgba(34, 36, 38, 0.15);
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:hover {
  cursor: move;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td {
  padding: 8px !important;
  /* dl:last-child{
                  &:after{
                    display:none;
                  }
                } */
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td dl {
  margin: 0;
  display: inline-flex;
  align-items: center;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td dl:after {
  content: "";
  font-family: 'Icons';
  font-style: normal;
  font-weight: normal;
  margin: 0 5px;
  color: #ccc;
  font-size: 12px;
  height: 38px;
  width: 1px;
  background: #e2e7eb;
  margin-top: -15px;
  margin-bottom: -15px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td dl dt {
  display: inline-block;
  font-weight: bold;
  margin-right: 5px;
  font-size: 12px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td dl dd {
  display: inline-block;
  margin: 0;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr .remove-tag {
  padding: 5px;
  font-size: 12px;
  font-weight: normal;
  margin-left: 0;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:first-child td:first-child {
  border-top-left-radius: 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:first-child td:last-child {
  border-top-right-radius: 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:last-child td:first-child {
  border-bottom-left-radius: 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:last-child td:last-child {
  border-bottom-right-radius: 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table thead th {
  padding: 8px 15px !important;
  font-size: 13px !important;
  background: #fff !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table tbody td {
  padding: 5px 15px !important;
  font-size: 13px !important;
  border-color: #dddddd !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table tbody tr:nth-child(odd) td {
  background: #fff !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table tbody tr:nth-child(even) td {
  background: #f9f9f9 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="custom-msku"] .ui.divider {
  display: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .ui.attached.message {
  background: none !important;
  border: none !important;
  box-shadow: none;
  padding: 0;
  margin-bottom: 10px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .ui.attached.message u {
  text-decoration: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .ui.attached.message a {
  text-decoration: underline !important;
  color: #208ce3 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .ui.attached.message .header {
  padding-bottom: 10px;
  margin-bottom: 10px;
  font-size: 14px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .js-submit-auto-price {
  border: none;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .js-submit-auto-price label {
  white-space: nowrap;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .js-submit-auto-price .inline.fields input[type="number"] {
  width: 90px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .js-submit-auto-price .inline.fields .field:nth-child(3) .auto-price-dropdown {
  width: 100px;
  min-width: 100px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .js-submit-auto-price .inline.fields .field:nth-child(4) .auto-price-dropdown {
  width: 130px;
  min-width: 130px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="auto-price-rule"] .js-submit-auto-price .inline.fields .field:nth-child(5) .auto-price-dropdown {
  width: 130px;
  min-width: 130px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] #best-by {
  position: relative;
  width: 100%;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] #best-by .ui.input {
  width: 100%;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] #best-by .calendar.icon {
  font-size: 1.2em;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.calendar .popup {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 5px !important;
  z-index: 1000;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.attached.message {
  background: none !important;
  border: none !important;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.attached.message u {
  text-decoration: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.attached.message a {
  text-decoration: underline !important;
  color: #208ce3 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.attached.message .header {
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .js-quick-labels {
  border: none;
  overflow: visible !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .js-quick-labels > label {
  margin-bottom: 5px;
  display: block !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .js-quick-labels > label + br {
  display: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .js-quick-labels > label + br + br {
  display: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.primary.submit.button {
  font-size: 14px !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="quick-labels"] .ui.primary.submit.button .icon {
  color: white !important;
  opacity: 1;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.message {
  background: none !important;
  border: none !important;
  box-shadow: none;
  padding: 0;
  margin-bottom: 20px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.message u {
  text-decoration: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.message a {
  text-decoration: underline !important;
  color: #208ce3 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.message .header {
  font-size: 14px;
  line-height: 18px;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e2e7eb !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.fluid.segment {
  border: none !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.segment {
  border-color: #e2e7eb !important;
  border-radius: 5px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .js-fields-form .inline.fields {
  align-items: center;
  margin-bottom: 0;
  height: 50px;
  padding: 0 20px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table {
  border-top: 1px solid #D4D4D5 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table thead th {
  padding: 8px 15px !important;
  font-size: 11px !important;
  background: #fff !important;
  border-radius: 0 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table thead th:nth-child(3) {
  width: 100px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table tbody td {
  padding: 5px 15px !important;
  font-size: 11px !important;
  border-color: #dddddd !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table tbody td .button.red.remove {
  padding: 5px 10px;
  font-size: 12px;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table tbody td:nth-child(3) {
  width: 100px;
  padding: 2px 10px !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table tbody tr:nth-child(odd) td {
  background: #f9f9f9 !important;
}
.settings__wrapper__outer__wrapper .settings__main div[data-tab="extra-fields"] .ui.attached.celled.table tbody tr:nth-child(even) td {
  background: #fff !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .section-title {
  color: #d0d0d0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .parent_tabs {
  background: #262626 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .parent_tabs .item {
  border-top-width: 1px !important;
  border-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .parent_tabs .item.active {
  background: #5b5b5b !important;
  border-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .parent_tabs .item:first-child {
  border-right: none;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item {
  background-color: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item span,
body.dark-mode .settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item .icon {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item.active {
  background-color: #191919 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__sidebar .settings__sidebar__content a.item.active::after {
  background: #191919 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.tab {
  background: #5b5b5b!important;
  border: 1px solid #3e3d3d !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.tab input,
body.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.tab .selection.dropdown {
  background: rgba(255, 255, 255, 0.25) !important;
  border: 1px solid transparent!important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.tab .selection.dropdown .menu .item {
  background: rgba(255, 255, 255, 0.25) !important;
}
body.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.tab .selection.dropdown .menu .item:hover {
  background: #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="sp-api"] .ui.attached.segment .ui.header {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="sp-api"] .ui.attached.segment .ui.header .content {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="sp-api"] .disconnect_btn {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="generic-settings"] .ui.attached.menu {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="generic-settings"] * {
  color: rgba(255, 255, 255, 0.6) !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="printer"] .ui.attached.message .header {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.message .header {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment {
  border-color: #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table {
  border-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td {
  border-color: #3e3d3d !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr td dl:after {
  background: #3e3d3d;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:first-child td:first-child {
  border-top-left-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:first-child td:last-child {
  border-top-right-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:last-child td:first-child {
  border-bottom-left-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:last-child td:last-child {
  border-bottom-right-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:nth-child(odd) td {
  background: #565656 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="custom-msku"] .ui.attached.fluid.segment .sixteen.wide.column .table .items > tr:nth-child(even) td {
  background: #5b5b5b !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="auto-price-rule"] .ui.attached.message .header {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="auto-price-rule"] .ui.attached.fluid.segment {
  border-color: #777575 !important;
  background: none !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="quick-labels"] .ui.attached.message .header {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="quick-labels"] .ui.attached.fluid.segment {
  border-color: #777575 !important;
  background: none !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.message .header {
  border-bottom: 1px solid #777575 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.segment {
  border-color: #777575 !important;
  background: none !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.fluid.segment {
  border-color: #777575 !important;
  background: none !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.celled.table {
  border-color: #3e3d3d !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.celled.table th {
  background: #5b5b5b !important;
  border-radius: 0 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.celled.table tbody td {
  border-color: #3e3d3d !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.celled.table tbody tr:nth-child(odd) td {
  background: #565656 !important;
}
body.dark-mode .settings__wrapper__outer__wrapper div[data-tab="extra-fields"] .ui.attached.celled.table tbody tr:nth-child(even) td {
  background: #5b5b5b !important;
}
.background-teal {
  background: teal !important;
  color: #fff;
}
.background-red {
  background-color: #d01919 !important;
  color: #fff;
}
.background-green-light {
  background-color: #a7bd0d !important;
  color: #fff;
}
.background-green-light-reverse {
  background-color: #a7bd0d !important;
}
.background-green-dark {
  background-color: green !important;
  color: #fff;
}
.background-green {
  background-color: #21ba45 !important;
  color: #fff;
}
.background-green-reverse {
  background-color: #21ba45 !important;
}
.background-blue {
  background-color: #2185d0 !important;
  color: #fff;
}
.background-blue-light {
  background-color: #00b5ad !important;
  color: #fff;
}
.background-blue-light-reverse {
  background-color: #00b5ad !important;
}
.background-blue-lighter {
  background-color: #6bc0bb !important;
  color: #fff;
}
.background-blue-lighter-reverse {
  background-color: #6bc0bb !important;
}
.background-blue-dark {
  background: #0b52bc !important;
  color: #fff;
}
.background-blue-dark-reverse {
  background: #5a90e2 !important;
}
.background-purple {
  background: #5f4bb6 !important;
  color: #fff;
}
.background-purple-light-reverse {
  background: #8073b6 !important;
}
.background-orange {
  background: #ffa500 !important;
  color: #fff;
}
.background-orange-light {
  background: #a5673f !important;
  color: #fff;
}
.background-gray-reverse {
  background: #dcddde !important;
}
.color__white {
  color: #fff !important;
}
.color__gray {
  color: #808080 !important;
}
:root {
  --backgroundColor: #262626;
  --backgroundColorDark: #131313;
  --backgroundColorHover: #0c0c0c;
  --textColor: #fff;
  --borderColor: #3e3d3d;
  --selectedItemBorder: #ffffff;
}
.dark-mode {
  /* OLD resync dark overrides — replaced by rn- design
  .resync_cantainer {
    background: #6b6b6b !important;
    color: black !important;
  }
  .ui.progress.sync-alert-progress{
    background-color: #3f3f3f !important;
  }
  */
  /* rn- dark mode — exact panel values (@d_bg=#333, @d_bg_loading=#454545, @d_border-color=#3e3d3d, @d_color=rgba(255,255,255,.6), @d_input_bg=rgba(255,255,255,.25)) */
}
.dark-mode * {
  border-color: var(--borderColor) !important;
}
.dark-mode ::selection {
  color: var(--textColor) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.dark-mode .ag-cell ::selection {
  color: var(--backgroundColor) !important;
  background-color: rgba(255, 255, 255, 0.1) !important;
}
.dark-mode .dark-mode,
.dark-mode .ag-theme-balham .ag-tab-header .ag-tab {
  background-color: var(--backgroundColorDark) !important;
  color: var(--textColor) !important;
}
.dark-mode .ui.form .field.field input:-webkit-autofill {
  -webkit-box-shadow: 0px 0px 0px 100px #000000 inset !important;
  box-shadow: 0px 0px 0px 100px #000000 inset !important;
  border-color: #D5C315 !important;
}
.dark-mode .ui.form .field.field input:-webkit-autofill:focus {
  -webkit-box-shadow: 0px 0px 0px 100px #000000 inset !important;
  box-shadow: 0px 0px 0px 0px #000000 inset !important;
  border-color: #D5C315 !important;
}
.dark-mode .ag-root,
.dark-mode .ag-row,
.dark-mode .ag-theme-balham,
.dark-mode .ag-theme-balham .ag-header,
.dark-mode .ag-theme-balham .ag-header-cell,
.dark-mode .k-grid,
.dark-mode .ui.dropdown .menu,
.dark-mode .ui.dropdown .menu > .item,
.dark-mode .ui.input,
.dark-mode .ui.menu .ui.dropdown .menu > .item,
.dark-mode .ui.segment,
.dark-mode .ui.statistic,
.dark-mode .ui.table,
.dark-mode .ui.table td,
.dark-mode .ui.table th {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor) !important;
  border-color: var(--borderColor) !important;
}
.dark-mode .ui.striped tr:nth-child(even) td {
  background-color: #363636 !important;
  color: var(--textColor) !important;
  border-color: var(--borderColor) !important;
}
.dark-mode .ui.attached.header {
  border: var(--borderColor) !important;
}
.dark-mode .ag-paging-panel,
.dark-mode .ag-paging-panel *,
.dark-mode .ag-row-even,
.dark-mode .event,
.dark-mode .k-alt,
.dark-mode .k-dropdown,
.dark-mode .k-dropdown .k-input,
.dark-mode .k-dropdown .k-select,
.dark-mode .k-grid tr.k-state-selected,
.dark-mode .k-grid-header,
.dark-mode .k-header,
.dark-mode .k-header > .k-grid-filter,
.dark-mode .k-header > .k-header-column-menu,
.dark-mode .k-pager-numbers .k-state-selected,
.dark-mode .k-pager-wrap,
.dark-mode .k-pager-wrap .k-link,
.dark-mode .k-textbox,
.dark-mode .ui.cards > .card,
.dark-mode .ui.dropdown .menu > .item.active,
.dark-mode .ui.dropdown .menu > .item.selected,
.dark-mode .ui.form input,
.dark-mode .ui.form textarea,
.dark-mode .ui.input > input,
.dark-mode .ui.menu,
.dark-mode .ui.menu .ui.dropdown .menu > .item.active,
.dark-mode .ui.menu .ui.dropdown .menu > .item.selected,
.dark-mode .ui.message,
.dark-mode .ui.selection.dropdown {
  background-color: var(--backgroundColorDark) !important;
  color: var(--textColor) !important;
  border-color: var(--borderColor) !important;
}
.dark-mode .remaining-time {
  background: orange !important;
}
.dark-mode .ag-row-even:hover,
.dark-mode .ag-row:hover,
.dark-mode .k-grid tr.k-alt:hover,
.dark-mode .k-grid tr:hover,
.dark-mode .k-pager-numbers .k-state-selected:hover,
.dark-mode .ui.dropdown .menu > .item:hover,
.dark-mode .ui.menu .ui.dropdown .menu > .item:hover {
  background-color: var(--backgroundColorHover) !important;
  color: var(--textColor) !important;
  border-color: var(--borderColor) !important;
}
.dark-mode .date-color {
  color: var(--textColor) !important;
}
.dark-mode .ui.header,
.dark-mode .box-header {
  background-color: transparent;
  color: var(--textColor) !important;
  border-color: transparent;
}
.dark-mode .a-return-info,
.dark-mode .ag-column-drop-empty-message,
.dark-mode .ag-header-cell-text,
.dark-mode .ag-menu-option,
.dark-mode .ag-side-bar .ag-side-buttons div button span,
.dark-mode .ag-theme-balham .ag-column-select-panel .ag-primary-cols-list-panel,
.dark-mode .field label,
.dark-mode .k-grid-norecords-template *,
.dark-mode .label,
.dark-mode .ui.cards > .card *,
.dark-mode .ui.feed > .event > .label .bell.icon,
.dark-mode .ui.header .sub.header,
.dark-mode .ui.list > .item .header,
.dark-mode .ui.menu *,
.dark-mode .ui.menu .item.disabled,
.dark-mode .ui.statistic *,
.dark-mode .ui.statistics .black.statistic > .value,
.dark-mode .ui.steps > .step .description,
.dark-mode .ui.steps > .step.active .icon,
.dark-mode label {
  color: var(--textColor) !important;
}
.dark-mode tspan {
  fill: var(--textColor) !important;
  stroke: none;
}
.dark-mode .k-grid-norecords-template {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor) !important;
  border-color: var(--backgroundColor) !important;
}
.dark-mode .highcharts-background {
  fill: var(--backgroundColor) !important;
}
.dark-mode .ui.loading.segment-reverse:before,
.dark-mode .ui.loading.segment:before {
  background: rgba(26, 24, 24, 0.85) !important;
}
.dark-mode .ui.loading.segment-reverse:after,
.dark-mode .ui.loading.segment:after {
  mix-blend-mode: normal;
}
.dark-mode .ag-theme-balham .ag-overlay-loading-wrapper,
.dark-mode .k-loading-color,
.dark-mode .ui.dimmer {
  background-color: rgba(26, 24, 24, 0.85) !important;
}
.dark-mode .ag-theme-balham .ag-overlay-loading-wrapper img,
.dark-mode .ui.dimmer img {
  border-radius: 50px !important;
}
.dark-mode .ag-theme-balham .ag-row-selected {
  border-color: #b7e4ff !important;
  background-color: #b7e4ff !important;
  color: black !important;
}
.dark-mode .ag-theme-balham .ag-row-hover {
  background-color: #c8dfde !important;
  color: black !important;
}
.dark-mode .ag-filter-toolpanel-body,
.dark-mode .ag-menu-option-active,
.dark-mode .ag-side-bar,
.dark-mode .ag-theme-balham .ag-side-bar .ag-side-buttons .ag-selected button,
.dark-mode .ag-theme-balham .ag-tab-header .ag-tab.ag-tab-selected,
.dark-mode .app-layout .main-container,
.dark-mode .ui.attached.header .ui.segment {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .ui.secondary.vertical.pointing.menu .active.item {
  border-color: var(--selectedItemBorder) !important;
  border-right-width: 8px !important;
}
.dark-mode .ag-side-buttons,
.dark-mode .ag-theme-balham .ag-menu,
.dark-mode .ag-theme-balham .ag-popup-editor,
.dark-mode .ag-theme-balham .ag-tab-body,
.dark-mode .inventory__details__header,
.dark-mode .inventory__details__header .label,
.dark-mode .inventory__details__header .value {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .ag-theme-balham .ag-tab-header {
  background-color: var(--backgroundColorDark) !important;
  height: 35px !important;
}
.dark-mode .ag-theme-balham .ag-tab-header .ag-tab {
  background-color: var(--backgroundColorDark) !important;
  color: var(--textColor) !important;
}
.dark-mode .ag-theme-balham .ag-tab-header .ag-tab.ag-tab-selected {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .ui.toggle.checkbox label:before {
  background-color: var(--borderColor) !important;
}
.dark-mode .ui.attached.header {
  border: 1px solid var(--borderColor) !important;
}
.dark-mode .item .print-product-label,
.dark-mode .print.icon {
  color: var(--backgroundColorDark) !important;
}
.dark-mode .item.print-shipping-label .print.icon {
  color: var(--textColor) !important;
}
.dark-mode .clock.icon {
  color: var(--backgroundColorDark) !important;
}
.dark-mode .clock.icon.cancel {
  color: var(--backgroundColorDark) !important;
}
.dark-mode .ui.input > input {
  border: none !important;
  height: 25px !important;
}
.dark-mode .field .ui.input > input {
  background-color: var(--backgroundColorDark) !important;
  height: 100% !important;
}
.dark-mode .ui.steps > .step {
  background-color: var(--backgroundColorDark) !important;
  color: var(--textColor) !important;
  border-color: var(--borderColor) !important;
}
.dark-mode .ui.steps > .step.active {
  background-color: var(--borderColor) !important;
}
.dark-mode .ui.mini.blue.statistic .value {
  color: #2185d0 !important;
}
.dark-mode .ui.mini.green.statistic .value {
  color: #21ba45 !important;
}
.dark-mode .ui.mini.yellow.statistic .value {
  color: #fbbd08 !important;
}
.dark-mode .ui.mini.red.statistic .value {
  color: #db2828 !important;
}
.dark-mode .ui.menu i.green.icon {
  color: #21ba45 !important;
}
.dark-mode .ui.teal.table {
  border-top: 0.2em solid #00b5ad !important;
}
.dark-mode .ui.purple.table {
  border-top: 0.2em solid #a333c8 !important;
}
.dark-mode .ui.green.header {
  color: #21ba45 !important;
}
.dark-mode .ui.breadcrumb a.section {
  color: #4183c4 !important;
}
.dark-mode .ui.yellow.message {
  background-color: #fff8db !important;
  color: #b58105 !important;
}
.dark-mode i.eye.inverted.bordered.icon,
.dark-mode i.edit.inverted.bordered.icon,
.dark-mode i.info.inverted.bordered.icon,
.dark-mode i.print.inverted.bordered.icon,
.dark-mode i.plus.inverted.bordered.icon,
.dark-mode i.barcode.inverted.bordered.icon,
.dark-mode i.clone.inverted.bordered.icon {
  background-color: var(--textColor) !important;
  color: var(--backgroundColor) !important;
}
.dark-mode i.print.icon {
  color: var(--textColor) !important;
}
.dark-mode .icon.ellipsis {
  color: var(--textColor) !important;
}
.dark-mode i.inverted.bordered.blue.icon {
  background-color: #2185d0 !important;
  color: white !important;
}
.dark-mode i.more_btn.icon.ellipsis.vertical {
  color: black !important;
}
.dark-mode i.inverted.bordered.warn.icon {
  background-color: #de8d24 !important;
  color: white !important;
}
.dark-mode .print-product-label .print.icon {
  color: var(--textColor) !important;
}
.dark-mode .ui.segment.background-blue-lighter-reverse {
  background-color: #6bc0bb !important;
}
.dark-mode .ui.segment.background-blue-lighter-reverse .ui.statistic {
  background-color: transparent !important;
}
.dark-mode .ui.segment.background-blue-dark-reverse {
  background: #5a90e2 !important;
}
.dark-mode .ui.segment.background-blue-dark-reverse .ui.statistic {
  background-color: transparent !important;
}
.dark-mode .ui.segment.background-purple-light-reverse {
  background: #8073b6 !important;
}
.dark-mode .ui.segment.background-purple-light-reverse .ui.statistic {
  background-color: transparent !important;
}
.dark-mode .keepa-chart .keepa-range-wrap select {
  background: #1d1d1d;
  color: white !important;
}
.dark-mode .keepa-chart .flot-text * {
  color: rgba(255, 255, 255, 0.6) !important;
}
.dark-mode .ui.grid.offers-keepa .offers-wrap table a {
  text-decoration: underline;
  color: white !important;
}
.dark-mode .ui.toggle.checkbox input:checked ~ label {
  color: white !important;
}
.dark-mode .content .transportLogs.error.message {
  background-color: #fbb2b2 !important;
}
.dark-mode .content .transportLogs.error.message .list {
  color: #bc4b4b !important;
}
.dark-mode .content .transportLogs.positive.message {
  background-color: #bcce92 !important;
  color: #35522a !important;
}
.dark-mode .ui.modal.tiny,
.dark-mode .ui.modal.small,
.dark-mode .ui.modal.mini,
.dark-mode .ui.modal.large,
.dark-mode .ui.modal.cost-calculator-modal,
.dark-mode .ui.modal.batch-details-modal,
.dark-mode .ui.modal.transport_logs_modal {
  border-radius: 10px !important;
}
.dark-mode .ui.modal.tiny .header,
.dark-mode .ui.modal.small .header,
.dark-mode .ui.modal.mini .header,
.dark-mode .ui.modal.large .header,
.dark-mode .ui.modal.cost-calculator-modal .header,
.dark-mode .ui.modal.batch-details-modal .header,
.dark-mode .ui.modal.transport_logs_modal .header,
.dark-mode .ui.modal.tiny .actions,
.dark-mode .ui.modal.small .actions,
.dark-mode .ui.modal.mini .actions,
.dark-mode .ui.modal.large .actions,
.dark-mode .ui.modal.cost-calculator-modal .actions,
.dark-mode .ui.modal.batch-details-modal .actions,
.dark-mode .ui.modal.transport_logs_modal .actions {
  background-color: var(--borderColor) !important;
}
.dark-mode .ui.modal.tiny .header,
.dark-mode .ui.modal.small .header,
.dark-mode .ui.modal.mini .header,
.dark-mode .ui.modal.large .header,
.dark-mode .ui.modal.cost-calculator-modal .header,
.dark-mode .ui.modal.batch-details-modal .header,
.dark-mode .ui.modal.transport_logs_modal .header {
  color: var(--textColor) !important;
}
.dark-mode .ui.modal.tiny .content,
.dark-mode .ui.modal.small .content,
.dark-mode .ui.modal.mini .content,
.dark-mode .ui.modal.large .content,
.dark-mode .ui.modal.cost-calculator-modal .content,
.dark-mode .ui.modal.batch-details-modal .content,
.dark-mode .ui.modal.transport_logs_modal .content {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor) !important;
}
.dark-mode .ui.modal.tiny .js-close,
.dark-mode .ui.modal.small .js-close,
.dark-mode .ui.modal.mini .js-close,
.dark-mode .ui.modal.large .js-close,
.dark-mode .ui.modal.cost-calculator-modal .js-close,
.dark-mode .ui.modal.batch-details-modal .js-close,
.dark-mode .ui.modal.transport_logs_modal .js-close {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor);
}
.dark-mode .ui.modal.tiny .js-close:hover,
.dark-mode .ui.modal.small .js-close:hover,
.dark-mode .ui.modal.mini .js-close:hover,
.dark-mode .ui.modal.large .js-close:hover,
.dark-mode .ui.modal.cost-calculator-modal .js-close:hover,
.dark-mode .ui.modal.batch-details-modal .js-close:hover,
.dark-mode .ui.modal.transport_logs_modal .js-close:hover {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .ui.modal.tiny .js-proceed-with-change,
.dark-mode .ui.modal.small .js-proceed-with-change,
.dark-mode .ui.modal.mini .js-proceed-with-change,
.dark-mode .ui.modal.large .js-proceed-with-change,
.dark-mode .ui.modal.cost-calculator-modal .js-proceed-with-change,
.dark-mode .ui.modal.batch-details-modal .js-proceed-with-change,
.dark-mode .ui.modal.transport_logs_modal .js-proceed-with-change {
  background-color: #d73200 !important;
  color: var(--textColor);
}
.dark-mode .ui.label.list-price-sticky-field,
.dark-mode .ui.label.cost-price-sticky-field,
.dark-mode .ui.label.supplier-sticky-field,
.dark-mode .ui.label.purchaseDate-sticky-field,
.dark-mode .ui.label.tax-code-sticky-field,
.dark-mode .ui.label.js-cost-calculator,
.dark-mode .ui.label.cost-label,
.dark-mode .ui.label.price-label,
.dark-mode .ui.label.js-discount-type,
.dark-mode .ui.label.js-tax-type,
.dark-mode .ui.label.setting-default-price-type,
.dark-mode .ui.label.below-buy-box-not-exists-price-type,
.dark-mode .ui.label.setting-amazon-price-type,
.dark-mode .ui.label.setting-fba-price-type,
.dark-mode .ui.label.setting-fbm-price-type,
.dark-mode .ui.label.below-buy-box-exists-price-type,
.dark-mode .ui.label.price-below-minimum-price-type,
.dark-mode .ui.label.price-above-maximum-price-type,
.dark-mode .ui.label.no-competitor-price-type,
.dark-mode .ui.label.rating-less-than {
  color: rgba(0, 0, 0, 0.6) !important;
}
.dark-mode .ui.popup .ui.list .item .header {
  color: #0c0c0c !important;
}
.dark-mode .ui.modal > .close {
  color: var(--textColor) !important;
}
.dark-mode .ui.steps .step.active:after {
  background-color: var(--borderColor);
}
.dark-mode .ui.steps .step:after {
  background-color: var(--backgroundColorDark);
  border-color: var(--borderColor) !important;
  border-width: 0px 1px 1px 0px !important;
}
.dark-mode .quantity-to-box-info {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-evenly;
}
.dark-mode .quantity-to-box-info .fields {
  margin: 0 !important;
}
.dark-mode .quantity-to-box-info .field {
  display: flex !important;
  align-items: center !important;
  margin: 0 !important;
}
.dark-mode .grid-highlight-row {
  background-color: sandybrown !important;
  color: black !important;
}
.dark-mode .ui.menu .item:before {
  background-color: #343434b2;
}
.dark-mode .ui.menu .item._hover:hover {
  background-color: #3e3e3eb2;
}
.dark-mode .ui.menu .active.item {
  background-color: #3e3e3eb2;
}
.dark-mode img.ui.avatar.image.pre-icon {
  filter: invert(1);
}
.dark-mode .ui.cards > .card,
.dark-mode .ui.card {
  -webkit-box-shadow: 0px 1px 3px 0px #000000, 0px 0px 0px 1px #3f3f3f;
  box-shadow: 0px 1px 3px 0px #000000, 0px 0px 0px 1px #3f3f3f;
}
.dark-mode .ui.menu .ui.label.badge {
  color: var(--backgroundColorDark) !important;
}
.dark-mode .ui.celled.grid > .column:not(.row),
.dark-mode .ui.celled.grid > .row > .column {
  -webkit-box-shadow: -1px 0px 0px 0px #616364;
  box-shadow: -1px 0px 0px 0px #616364;
}
.dark-mode .ui.celled.grid > .row {
  -webkit-box-shadow: 0px -1px 0px 0px #616364;
  box-shadow: 0px -1px 0px 0px #616364;
}
.dark-mode ._btn_teal {
  background-color: teal !important;
}
.dark-mode ._btn_dark_blue {
  background-color: #0c4fc2 !important;
}
.dark-mode .ui.menu .time_ {
  color: black !important;
}
.dark-mode .ui.batch-items-tooltip .item .header {
  color: black !important;
}
.dark-mode .ui.input.box-dimensions > input {
  background-color: #3e3e3e !important;
}
.dark-mode .fade {
  color: rgba(220, 220, 220, 0.75) !important;
}
.dark-mode .ui.statistic .fade {
  color: rgba(220, 220, 220, 0.75) !important;
}
.dark-mode .ui.menu .fade {
  color: rgba(220, 220, 220, 0.75) !important;
}
.dark-mode ._btn_black {
  background-color: #474747 !important;
}
.dark-mode .ui.horizontal.divider {
  color: var(--textColor) !important;
}
.dark-mode .lobibox.lobibox-confirm .lobibox-header,
.dark-mode .lobibox.lobibox-prompt .lobibox-header,
.dark-mode .lobibox.lobibox-confirm .lobibox-footer,
.dark-mode .lobibox.lobibox-prompt .lobibox-footer {
  background-color: var(--borderColor) !important;
  color: var(--textColor) !important;
}
.dark-mode .lobibox.lobibox-confirm .lobibox-input,
.dark-mode .lobibox.lobibox-prompt .lobibox-input {
  background: var(--backgroundColorDark) !important;
  color: var(--textColor) !important;
  border: none !important;
}
.dark-mode .lobibox .lobibox-body {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor) !important;
}
.dark-mode .ui.modal.transport_logs_modal .ui.error .header.logs-modal {
  background-color: transparent !important;
  color: #bc4b4b !important;
}
.dark-mode .ui.modal.transport_logs_modal .ui.positive .header.logs-modal {
  background-color: transparent !important;
  color: #35522a !important;
}
.dark-mode .warning_message {
  background-color: rgba(152, 133, 37, 0.36) !important;
}
.dark-mode .ui.cards > .card .button.js-print-box-shipping-label,
.dark-mode .ui.cards > .card .button.js-print-box-shipping-label .icon,
.dark-mode .ui.cards > .card .button.print-pallet-label,
.dark-mode .ui.cards > .card .button.print-pallet-label .icon {
  color: var(--backgroundColorDark) !important;
}
.dark-mode .ui.segment .swiper-container .label:not(.swiper-slide-active) {
  color: rgba(0, 0, 0, 0.6) !important;
}
.dark-mode .ui.table thead.table_header th {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .ui.table td.fade {
  color: rgba(220, 220, 220, 0.75) !important;
}
.dark-mode .ui.cards > .card .fade {
  color: rgba(220, 220, 220, 0.75) !important;
}
.dark-mode .ui.segment.offers-segment,
.dark-mode .ui.segment.product-history-segment {
  -webkit-box-shadow: 0px 1px 2px 0 rgba(5, 5, 5, 0.605) !important;
  box-shadow: 0px 1px 2px 0 rgba(5, 5, 5, 0.605) !important;
}
.dark-mode .label.update-repricer-sidebar {
  color: var(--backgroundColor) !important;
}
.dark-mode .highcharts-tooltip tspan {
  fill: #333333 !important;
  color: #333333 !important;
}
.dark-mode .no_fade {
  color: var(--textColor) !important;
}
.dark-mode .kpi-row {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .charts-row {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .kpi-card {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .widget-header {
  background-color: var(--backgroundColorDark) !important;
  color: #FFFFFF !important;
}
.dark-mode .widget-header h3 {
  color: #FFFFFF !important;
}
.dark-mode .kpi-label {
  color: #FFFFFF !important;
}
.dark-mode .kpi-value {
  color: #FFFFFF !important;
}
.dark-mode .widget-content {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .table-row {
  color: #FFFFFF !important;
}
.dark-mode .risk-dark {
  background-color: var(--backgroundColor) !important;
  color: #FFFFFF !important;
}
.dark-mode .text-dark {
  color: #FFFFFF !important;
}
.dark-mode .priority-item {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .widget-card {
  background-color: var(--backgroundColor) !important;
}
.dark-mode .negative_badge,
.dark-mode .ui.statistic .negative_badge {
  background-color: rgba(255, 138, 138, 0.384);
  color: #ff8181 !important;
}
.dark-mode .ui.statistic .negative_badge .icon {
  color: #ff8181 !important;
}
.dark-mode .ui.statistic .positive_badge .icon {
  color: #4ace69 !important;
}
.dark-mode .positive_badge,
.dark-mode .ui.statistic .positive_badge {
  background-color: rgba(48, 255, 97, 0.34) !important;
  color: #51c96d !important;
}
.dark-mode .disabled_badge,
.dark-mode .ui.statistic .disabled_badge {
  background-color: rgba(158, 158, 158, 0.5) !important;
  color: #a1a1a1 !important;
}
.dark-mode .info_badge,
.dark-mode .ui.statistic .info_badge {
  background-color: rgba(25, 103, 235, 0.64) !important;
  color: #7aacff !important;
}
.dark-mode .ui.statistic .info_badge .icon {
  color: #7aacff !important;
}
.dark-mode .ui.secondary.pointing.menu .active.item {
  border-color: var(--selectedItemBorder) !important;
}
.dark-mode .ui.input.sales-input {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .k-state-active,
.dark-mode .k-state-active:hover {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .table-containerRevenue {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .cardRevenue {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .contentRevenue {
  color: #FFFFFF !important;
}
.dark-mode .card-labelRevenue {
  color: #FFFFFF !important;
}
.dark-mode .k-callout-n {
  border-top-color: transparent !important;
  border-left-color: transparent !important;
  border-right-color: transparent !important;
  border-bottom-color: rgba(100, 100, 100, 0.9) !important;
}
.dark-mode .k-tooltip-content .ui.list > .item .header {
  color: black !important;
}
.dark-mode .ui.black.labels .label,
.dark-mode .ui.black.label {
  background-color: #616161 !important;
  border-color: #616161 !important;
  color: #FFFFFF !important;
}
.dark-mode .ui.dropdown.item.suppliers_dropdown {
  background: var(--backgroundColorDark) !important;
  color: var(--textColor) !important;
  border: none !important;
}
.dark-mode .ui.dropdown.item.suppliers_dropdown .menu > .header {
  color: var(--textColor) !important;
}
.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.attached.menu .ui.breadcrumb.item,
.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.attached.message .header,
.dark-mode .settings__wrapper__outer__wrapper .settings__main .ui.attached.segment .ui.header {
  background-color: #262626 !important;
  color: #FFFFFF99 !important;
}
.dark-mode .btn.btn-default {
  background: #FFFFFF40 !important;
  border: none !important;
  color: #FFFFFF99;
}
.dark-mode .search-container {
  background-color: transparent !important;
}
.dark-mode .header_bg {
  background-color: #262626 !important;
}
.dark-mode .search-input {
  background-color: rgba(255, 255, 255, 0.1) !important;
  outline: none;
}
.dark-mode .search-input::placeholder {
  color: rgba(220, 220, 220, 0.75) !important;
  padding: 2px;
}
.dark-mode .rn-wrapper {
  /* ── Full card ── */
  /* #FFFFFF99 — panel @d_color */
  /* Phase 2 dark mode — subtitle "Running in background" and percentage both #3b82f6 */
  /* ── Window controls ── */
  /* ── Minimized badge ── */
}
.dark-mode .rn-wrapper .rn-card {
  background: #333 !important;
  border: 1px solid #333 !important;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(59, 130, 246, 0.1) !important;
}
.dark-mode .rn-wrapper .rn-title {
  color: rgba(255, 255, 255, 0.6) !important;
}
.dark-mode .rn-wrapper .rn-subtitle {
  color: rgba(255, 255, 255, 0.4) !important;
}
.dark-mode .rn-wrapper .rn-progress-percent-header {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-card.rn-phase2-mode .rn-subtitle {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-card.rn-phase2-mode .rn-progress-percent-header {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-progress-track {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: transparent !important;
}
.dark-mode .rn-wrapper .rn-status-grid {
  border-top-color: #3e3d3d !important;
}
.dark-mode .rn-wrapper .rn-status-label {
  color: rgba(255, 255, 255, 0.5) !important;
}
.dark-mode .rn-wrapper .rn-status-label.done {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-status-label.in_progress {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-status-label.pending {
  color: rgba(255, 255, 255, 0.3) !important;
}
.dark-mode .rn-wrapper .rn-status-pending {
  background: rgba(255, 255, 255, 0.18) !important;
}
.dark-mode .rn-wrapper .rn-status-progress {
  color: rgba(255, 255, 255, 0.35) !important;
}
.dark-mode .rn-wrapper .rn-status-progress.done {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-status-progress.in_progress {
  color: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-status-complete {
  background: rgba(59, 130, 246, 0.12) !important;
}
.dark-mode .rn-wrapper .rn-status-complete svg {
  stroke: #3b82f6 !important;
}
.dark-mode .rn-wrapper .rn-status-loading {
  border-color: rgba(255, 255, 255, 0.15) !important;
  border-top-color: #60a5fa !important;
}
.dark-mode .rn-wrapper .rn-window-btn {
  background: rgba(255, 255, 255, 0.07) !important;
  border-color: rgba(255, 255, 255, 0.13) !important;
  color: rgba(255, 255, 255, 0.4) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.3) !important;
}
.dark-mode .rn-wrapper .rn-window-btn:hover {
  background: rgba(255, 255, 255, 0.15) !important;
  border-color: rgba(255, 255, 255, 0.28) !important;
  color: rgba(255, 255, 255, 0.9) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45) !important;
}
.dark-mode .rn-wrapper .rn-window-btn:active {
  background: rgba(255, 255, 255, 0.22) !important;
  box-shadow: none !important;
}
.dark-mode .rn-wrapper .rn-minimized-badge {
  background: #454545 !important;
  border-color: #333 !important;
  box-shadow: 0 4px 24px #333,
        0 1px 4px #333 !important;
}
.dark-mode .rn-wrapper .rn-minimized-badge:hover {
  box-shadow: 0 6px 28px #333,
          0 2px 8px #333 !important;
}
.dark-mode .rn-wrapper .rn-mini-label {
  color: rgba(255, 255, 255, 0.75) !important;
}
.dark-mode .rn-wrapper .rn-mini-sub {
  color: rgba(255, 255, 255, 0.4) !important;
}
.dark-mode .rn-wrapper .rn-mini-pct {
  color: #60a5fa !important;
}
.dark-mode .rn-wrapper .rn-mini-bar {
  background: rgba(255, 255, 255, 0.1) !important;
}
.dark-mode .rn-wrapper .rn-mini-bar-fill {
  background: linear-gradient(90deg, #2563eb, #60a5fa) !important;
}
.dark-mode .positive_default {
  color: #FFFFFF !important;
}
.dark-mode .top-header {
  background: #131313 !important;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.dark-mode .bottom {
  background: #131313 !important;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.dark-mode .statistic-font {
  color: #FFFFFF !important;
}
.dark-mode .statistic-font-label {
  color: #cac3c3 !important;
}
.dark-mode .phone-code {
  background-color: #3e3d3d !important;
}
.dark-mode .required {
  color: #ffff00 !important;
}
.dark-mode .ui .fixed-label {
  color: #FFFFFF99 !important;
}
.dark-mode .ui.modal.add-supplier-modal {
  border-radius: 10px !important;
}
.dark-mode .ui.modal.add-supplier-modal .header,
.dark-mode .ui.modal.add-supplier-modal .actions {
  background-color: var(--borderColor) !important;
}
.dark-mode .ui.modal.add-supplier-modal .header {
  color: #FFFFFF99 !important;
}
.dark-mode .ui.modal.add-supplier-modal .content {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor) !important;
}
.dark-mode .ui.modal.add-supplier-modal .js-close {
  background-color: var(--backgroundColor) !important;
  color: var(--textColor);
}
.dark-mode .ui.modal.add-supplier-modal .js-close:hover {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .ui.modal.add-supplier-modal .js-proceed-with-change {
  background-color: #d73200 !important;
  color: var(--textColor);
}
.dark-mode #quantityInput,
.dark-mode #leadTime-Input,
.dark-mode #font-color,
.dark-mode #currencyDropdown {
  color: #FFFFFF99 !important;
}
.dark-mode .counter {
  background-color: #FFFFFF;
}
.dark-mode .widget {
  color: #FFFFFF;
  background: #131313  !important;
}
.dark-mode .metrics-container {
  background: var(--backgroundColorDark) !important;
  padding: 2px 6px !important;
  margin-bottom: 4px !important;
}
.dark-mode .metric-card-header {
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 11px !important;
  margin-bottom: 2px !important;
}
.dark-mode .metric-row {
  padding: 0 8px 2px 8px !important;
}
.dark-mode .metric-item {
  gap: 1px !important;
}
.dark-mode .metric-label {
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 10px !important;
}
.dark-mode .metric-value {
  color: #FFFFFF !important;
  font-size: 11px !important;
}
.dark-mode .metric-value.metric-green {
  color: #90ed7d !important;
}
.dark-mode .metric-value.metric-blue {
  color: #7cb5ec !important;
}
.dark-mode .metric-value.metric-orange {
  color: #f7a35c !important;
}
.dark-mode .metric-value.metric-purple {
  color: #8085e9 !important;
}
.dark-mode .dashboard-title {
  color: #FFFFFF !important;
}
.dark-mode .darkb {
  color: #FFFFFF;
  background: #131313  !important;
}
.dark-mode .custom-dropdown-item1 {
  color: rgba(250, 248, 248, 0.6) !important;
}
.dark-mode .custom-dropdown-header1 {
  color: rgba(250, 248, 248, 0.6) !important;
}
.dark-mode .js-placement-item,
.dark-mode .new-version-items {
  background-color: rgba(223, 223, 223, 0.445) !important;
}
.dark-mode .light_grey_badge_ {
  background-color: #7a7a7a !important;
}
.dark-mode .shipping_cost_badge_ {
  background: orange !important;
}
.dark-mode ._bordor_dark {
  border-color: rgba(151, 151, 151, 0.75) !important;
}
.dark-mode .ui.menu .expiration_window {
  color: #b60a0a !important;
}
.dark-mode .ui.menu .expiration_window i,
.dark-mode .ui.menu .expiration_window strong {
  color: #b60a0a !important;
}
.dark-mode .ui.menu .dark_color_red {
  color: #720000 !important;
}
.dark-mode .ui.calendar.date_selector {
  background-color: var(--backgroundColorDark) !important;
}
.dark-mode .transportation-form .ui.input > input {
  height: 100% !important;
}
.dark-mode .black_badge_ {
  background-color: #5c5c5c !important;
}
body.dark-mode ::-webkit-scrollbar-thumb {
  background: #4c4c4c !important;
}
body.dark-mode ::-webkit-scrollbar-thumb:hover {
  background: #5a5959 !important;
}
body.dark-mode ::-webkit-scrollbar-track {
  background: #323232 !important;
}
/* Scroll bar styling */
body.lp-blur-asin .ag-cell[col-id="asin"],
body.lp-blur-asin .asin-link {
  filter: blur(6px) !important;
  user-select: none !important;
  overflow: visible !important;
}
body.lp-blur-asin .fade {
  filter: blur(6px) !important;
  user-select: none !important;
}
body.lp-blur-sku .ag-cell[col-id="sellerSku"],
body.lp-blur-sku .ag-cell[col-id="fnsku"],
body.lp-blur-sku .ag-cell[col-id="fulfillmentNetworkSku"],
body.lp-blur-sku .product-sku,
body.lp-blur-sku .sku-link,
body.lp-blur-sku .fnsku-link {
  filter: blur(6px) !important;
  user-select: none !important;
  overflow: visible !important;
}
body.lp-blur-sku .k-grid td.lp-kendo-sensitive {
  filter: blur(6px) !important;
  user-select: none !important;
  overflow: visible !important;
}
body.lp-blur-title .ag-cell[col-id="title"],
body.lp-blur-title .ag-cell[col-id="productTitle"],
body.lp-blur-title .ag-cell[col-id="productName"],
body.lp-blur-title .ag-cell[col-id="product.title"],
body.lp-blur-title .ag-cell[col-id="product"],
body.lp-blur-title .product-name {
  filter: blur(6px) !important;
  user-select: none !important;
  overflow: visible !important;
}
body.lp-blur-title a[href*="amazon.com/gp/product"] {
  filter: blur(6px) !important;
  user-select: none !important;
  display: inline-block;
}
body.lp-blur-image .ag-cell[col-id="imageUrl"],
body.lp-blur-image .col-image img,
body.lp-blur-image .product-image,
body.lp-blur-image .item_details_img,
body.lp-blur-image .other-details img.ui.image,
body.lp-blur-image .inventory_header_details img.ui.image,
body.lp-blur-image img.img-before {
  filter: blur(8px) !important;
  user-select: none !important;
}
body.lp-blur-image #inventory-tooltip,
body.lp-blur-image #skus-tooltip,
body.lp-blur-image #batchItem-tooltip,
body.lp-blur-image #reprice-items-tooltip,
body.lp-blur-image #repricer-assesment-tooltip,
body.lp-blur-image #recommendation-list-tooltip {
  filter: blur(8px) !important;
  user-select: none !important;
  pointer-events: none !important;
}
body.lp-blur-image .k-tooltip {
  filter: blur(8px) !important;
  user-select: none !important;
  pointer-events: none !important;
}
body.lp-blur-supplier .ag-cell[col-id="supplier"],
body.lp-blur-supplier .ag-cell[col-id="supplierId"],
body.lp-blur-supplier .ag-cell[col-id="supplierName"],
body.lp-blur-supplier .ag-cell[col-id="name"],
body.lp-blur-supplier .col-supplier,
body.lp-blur-supplier .ui.dropdown.suppliers,
body.lp-blur-supplier .ui.dropdown.js-suppliers,
body.lp-blur-supplier .ui.dropdown.supplier,
body.lp-blur-supplier .suppliers_dropdown,
body.lp-blur-supplier .dropdown.special.suppliers {
  filter: blur(6px) !important;
  user-select: none !important;
}
body.lp-blur-brand .ag-cell[col-id="brand"],
body.lp-blur-brand .lp-brand {
  filter: blur(6px) !important;
  user-select: none !important;
}
.ag-popup-editor {
  z-index: 9999 !important;
}
.k-grid-content table,
.k-grid-content-locked > table,
.k-grid-footer table,
.k-grid-header table {
  width: 100% !important;
}
.notification__sidebar {
  height: 100% !important;
  margin: 0 !important;
}
.notification__sidebar__content {
  padding: 0 !important;
  padding-right: 1em !important;
}
.notification__sidebar__content__entry {
  width: 100% !important;
  padding: 1em !important;
  height: 100% !important;
}
.notification__sidebar__content__entry__button {
  float: right !important;
}
.notification__main {
  padding: 0 !important;
  height: 100% !important;
}
.settings__wrapper {
  height: 100% !important;
  margin-top: 0 !important;
}
.settings__sidebar {
  height: 100% !important;
  padding: 0 !important;
}
.settings__sidebar__content {
  height: 100% !important;
  width: 100% !important;
  padding-top: 1em !important;
  border-left: 1px dotted #777777 !important;
  background-color: #1C1A1B !important;
  background: linear-gradient(315deg, #1c1a1b, #1f1e21) !important;
}
.settings__sidebar__content a:hover {
  width: 100% !important;
  border-left: 3px solid #FFFFFF !important;
  background-color: #1C1A1B !important;
  background: linear-gradient(15deg, #3e3c3d, #3f3f43) !important;
}
.settings__main {
  height: 100% !important;
  padding: 0 !important;
}
.settings__main__content {
  height: 100% !important;
}
.header_bg {
  background-color: #f4f4f4 !important;
}
.settings__wrapper__outer__wrapper .settings__main .ui.attached.menu .ui.breadcrumb.item,
.settings__wrapper__outer__wrapper .settings__main .ui.attached.message .header,
.settings__wrapper__outer__wrapper .settings__main .ui.attached.segment .ui.header {
  background-color: #f4f4f4 !important;
  padding: 12px !important;
}
.settings__wrapper__outer__wrapper .settings__main .ui.attached.menu {
  padding-bottom: 0px !important;
}
.header__wrapper {
  border-radius: 0 !important;
  margin-bottom: 0 !important;
}
.header__wrapper__breadcrumb {
  margin: auto 2px !important;
  color: white !important;
}
.not__found__wrapper {
  background: black !important;
  padding-top: 80px !important;
  height: 100% !important;
}
.layout__wrapper {
  height: 100% !important;
}
.sidebar__wrapper {
  min-height: calc(50%) !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.sidebar__wrapper__logo {
  border-radius: 0 !important;
}
.sidebar__wrapper__logo__img {
  padding: 2px !important;
}
.sidebar__wrapper__bottom {
  min-height: 50px !important;
  margin: 0 !important;
  border-radius: 0 !important;
}
.sidebar__wrapper__bottom__button {
  height: 50px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #1b1c1d !important;
}
.empty__content {
  height: 100% !important;
}
.empty__content__logo {
  padding: 10px !important;
}
.supplier-grid .k-grid-content {
  height: calc(0%) !important;
}
.inventory__details__header {
  background-color: #e8e8e8 !important;
}
.ui.list .list > .item .header,
.ui.list > .item .header {
  color: #000 !important;
}
.manage-account {
  margin-top: -30px !important;
  float: right !important;
  display: inline-block;
  padding: 5px 15px;
  font-size: 12px;
  text-align: center;
  text-decoration: none;
  color: #000;
  font-weight: bold !important;
  border-radius: 4px;
}
.btn.btn-default {
  background: #f2f3f4 !important;
  border: 1px solid #dddddd !important;
  color: #000;
}
.manage-account:hover {
  cursor: pointer;
  color: #000;
  /* Hover text color */
}
.inventory_header_details {
  width: 80% !important;
  margin: 0 auto 5px auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: left !important;
}
.overview-inventory-segment {
  padding: 0 !important;
}
.overview-inventory-segment > h3.header {
  display: flex !important;
}
.overview-inventory-segment .inventory_header_details {
  margin: 10px !important;
  justify-content: left !important;
  width: calc(100% - 500px) !important;
}
.overview-inventory-segment .inventory_header_details .horizontal.relaxed.list {
  display: flow-root !important;
}
.overview-inventory-segment .inventory_header_details .horizontal.relaxed.list .item {
  padding-right: 20px !important;
  padding-left: 0 !important;
  margin: 0 0 10px 0 !important;
}
.overview-inventory-segment .inventory_header_details .horizontal.relaxed.list:not(.celled) > .item:first-child {
  /* margin-left: 0em !important;
        padding-left: 0em !important; */
  margin-bottom: 10px !important;
}
.overview-inventory-segment .inventory_header_details .horizontal.relaxed.list.no-margin .item,
.overview-inventory-segment .inventory_header_details .horizontal.relaxed.list.no-margin:not(.celled) > .item:first-child {
  margin-bottom: 0px !important;
}
.overview-inventory-segment .keepa-chart-wrapper {
  width: 500px;
  margin-right: 50px;
  margin: 0;
}
.overview-inventory-segment .keepa-chart-wrapper > .row.no-mb {
  margin: 0;
  padding: 0;
  margin-right: 15px;
}
.overview-inventory-segment .keepa-chart-wrapper > .row.no-mb .segment.keepa-chart {
  margin-top: 5px !important;
}
.ui.grid {
  margin-left: 0 !important;
  margin-right: 0 !important;
}
.ui.transparent.icon.input > input {
  padding-left: 0.5rem !important;
}
.ui.calendar .ui.transparent.icon.input > input {
  padding-left: 2em !important;
}
.ui.icon.input > i.icon {
  right: 5px !important;
}
.ui.search.icon.link {
  right: 5px !important;
}
.hidden__container {
  display: none !important;
}
.no__margins {
  margin: 0 !important;
}
.height__100 {
  height: 100% !important;
}
.overflow__auto__y {
  overflow: auto !important;
}
.cursor__pointer {
  cursor: pointer !important;
}
.no__notifications {
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ui.statistics {
  margin: 0;
}
.ui.transparent.icon.input > input {
  padding-left: 0.5rem !important;
}
.ui.calendar .ui.transparent.icon.input > input {
  padding-left: 2em !important;
}
.ui.icon.input > i.icon {
  right: 5px !important;
}
.ui.header::before {
  display: none !important;
}
.ui.header::after {
  width: 100% !important;
}
.content .transportLogs.error.message {
  background-color: #fbb2b2 !important;
}
.content .transportLogs.error.message .list {
  color: #bc4b4b !important;
}
.content .transportLogs.positive.message {
  background-color: #bcce92 !important;
  color: #35522a !important;
}
.error-box {
  background-color: red !important;
  color: #ffffff !important;
}
.hazmat-info-box {
  width: 50%;
  margin: 0 auto;
  border: 2px solid;
  border-radius: 5px;
  padding: 1rem;
}
.hazmat-badge {
  background-color: orange !important;
  color: black !important;
  margin-right: 4px;
}
.info-cantainer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-top: 5px !important;
}
.cantanier-info {
  display: flex;
  flex-direction: column;
}
.ui.selection.dropdown.js-carriers .menu {
  max-height: none !important;
  overflow: visible !important;
}
.ui.selection.dropdown.js-carriers .scrolling.menu {
  max-height: 150px !important;
  overflow-y: auto !important;
}
.ui.selection.dropdown.js-appointments .menu {
  max-height: none !important;
  overflow: visible !important;
}
.ui.selection.dropdown.js-appointments .scrolling.menu {
  max-height: 200px !important;
  overflow-y: auto !important;
}
.ui.calendar.date_selector {
  padding: 0.1em 1em;
  display: flex;
  flex-direction: column;
  background-color: #d8d8d8;
  border-radius: 5px;
  margin-left: 10px;
}
.badge_ {
  color: white;
  padding: 3px 6px;
  border-radius: 4px;
  font-size: .75rem !important;
}
.badge_mini_ {
  color: white;
  padding: 2px 3px;
  border-radius: 4px;
  font-size: .65rem !important;
}
.meltable_ {
  background-color: #4d7cce;
}
.hazmat_review_ {
  background-color: #de8d24;
}
.warning_ {
  background-color: #e79325;
  color: black;
}
.fbm_badge_ {
  background-color: #4d7cce;
  color: #ffffff;
}
.light_grey_badge_ {
  background-color: #d4d4d4;
  color: #000000;
}
.shipping_cost_badge_ {
  background-color: #db9b346b;
  color: #b60a0a;
}
.expiration_window {
  color: #b60a0a;
}
.dark_color_red {
  color: #720000 !important;
}
.fba_badge_ {
  background-color: #FBBD08;
  color: #000000;
}
.black_badge_ {
  background-color: #000000;
  color: #a2a2a2;
}
.amz_badge_ {
  background-color: #F2711C;
  color: #000000;
}
.time_ {
  height: 22px;
  padding: 6px 6px !important;
}
.hazmat_ {
  background-color: #bdb203;
}
.not_approved_ {
  background-color: #da0202;
}
.approved_ {
  background-color: #21ba45 ;
}
.confirmed_ {
  background-color: #12af37 ;
}
.estimated_ {
  background-color: #4d7cce;
}
.working_ {
  background-color: #0c4fc2;
}
.negative_badge {
  background-color: rgba(248, 0, 0, 0.19);
  color: #da0202 !important;
}
.positive_badge {
  background-color: rgba(0, 228, 54, 0.24);
  color: #008a21 !important;
}
.positive_default {
  background-color: #1cae3e !important;
  border: 2px solid #1cae3e  !important ;
  color: black;
}
.info_badge {
  background-color: rgba(37, 117, 255, 0.35);
  color: #0c4fc2 !important;
}
.disabled_badge {
  background-color: rgba(103, 103, 103, 0.36);
  color: #5f5f5f !important;
}
.ui.statistic > .value .badge_.info_badge .icon,
.ui.statistic > .value .badge_.positive_badge .icon,
.ui.statistic > .value .badge_.negative_badge .icon {
  margin-right: 5px !important;
}
._btn_ {
  margin-right: 3px;
  padding: 8px 6px;
  border-radius: 4px;
  font-size: .75rem ;
  cursor: pointer;
}
._btn_small {
  padding: 4px !important;
}
._btn_small_size {
  font-size: 0.6rem !important;
}
._btn_red {
  background-color: #d01919;
}
._btn_wide {
  padding: 9px 7px !important;
}
._btn_6_7 {
  padding: 6px 7px !important;
}
._btn_1_5 {
  padding: 1px 5px !important;
  color: white !important;
}
._btn_large {
  font-size: .85rem !important;
}
._btn_blue {
  background-color: #4d7cce;
}
._btn_red {
  background-color: #ce4d4d;
}
._btn_dark_blue {
  background-color: #0b59df;
}
._btn_black {
  background-color: #000;
}
._btn_teal {
  background-color: #13a1a1;
}
._btn_orange {
  background: orange;
}
._btn_orange_light {
  background: #a5673f !important;
}
._btn_light_green {
  background-color: #a7bd0d !important;
}
._btn_lightyellow {
  background-color: lightyellow;
}
._btn_clr_white {
  color: #ffffff;
}
._btn_bold {
  font-weight: 600;
}
.no_estimated_ {
  background-color: #de8d24;
}
.none_ {
  background-color: #6d6b6b;
}
.pd_rgt_30 {
  padding-right: 30px !important;
}
.m_lft_10 {
  margin-left: 10px !important;
}
.m_lft_5 {
  margin-left: 5px !important;
}
.m_lft_20 {
  margin-left: 20px !important;
}
.m_lft_30 {
  margin-left: 30px !important;
}
._pd_0_4_ {
  padding: 0px 4px !important;
}
._pd_1_4_ {
  padding: 1px 4px !important;
}
._pd_3_6_ {
  padding: 3px 6px !important;
}
._pd_1_6_ {
  padding: 1px 6px !important;
}
._pd_6_ {
  padding: 6px !important;
}
.js-proceed-with-change {
  background-color: #d73200 !important;
  color: var(--textColor) !important;
}
.ui.modal > .close {
  color: black !important;
}
.quantity-to-box {
  width: 100% !important;
}
.quantity-to-box-info {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-evenly;
}
.quantity-to-box-info .fields {
  margin: 0 !important;
}
.quantity-to-box-info .field {
  display: flex !important;
  align-items: center !important;
}
.quantity-to-box-info .quantity-info-h {
  font-weight: 700 !important;
}
.quantity-to-box-info .quantity-info-c {
  color: #4d7cce;
}
[data-tooltip] {
  z-index: 100;
}
.ui.attached.menu .ui.dropdown .menu {
  z-index: 200 !important;
}
.ui.horizontal.list.add-to-batch-overly {
  display: flex !important;
}
.ui.menu .ui.label.badge {
  color: var(--backgroundColorDark) !important;
}
i.icon.update_alert {
  font-size: 30px !important;
  margin-top: 0.7rem !important;
}
/* OLD resync notification icon — replaced by rn- design
i.icon.sync_alert {
  font-size: 25px !important;
  margin-top: 0.4rem !important;
}
.btn_alert {
  color: black;
  background-color: #a3a3a3;
  border: none;
  border-radius: 5px;
  font-size: 11px;
  font-weight: bold;
  height: 15px;
  width: 8.5rem;
}
*/
.ui.segment.batch-row {
  position: static !important;
  min-height: 13rem !important;
}
.ui.mini.dest_ {
  font-size: 0.5rem !important;
}
i.tiny.icon.batch_icons {
  font-size: 0.6rem !important;
}
.fade {
  color: rgba(76, 76, 76, 0.75) !important;
}
.capitalize {
  text-transform: capitalize !important;
}
.upper {
  text-transform: uppercase !important;
}
.ui.dimmer img.item_details_img {
  border-radius: 0 !important;
}
.ui.form.product-label .fields {
  margin: 0 !important;
}
.ui.form.product-label .fields .field {
  padding: 2px !important;
  font-size: .8rem !important;
}
i.inverted.bordered.warn.icon {
  background-color: #de8d24 !important;
  color: #000000 !important;
}
i.inverted.warn.icon {
  color: #de8d24 !important;
  z-index: 99;
}
.warning_message {
  font-size: 0.9rem;
  background-color: rgba(253, 211, 0, 0.361);
  padding: 8px 15px;
}
.lobibox.lobibox-confirm {
  border-radius: 5px !important;
}
.lobibox.lobibox-confirm .lobibox-header,
.lobibox.lobibox-prompt .lobibox-header,
.lobibox.lobibox-confirm .lobibox-footer,
.lobibox.lobibox-prompt .lobibox-footer {
  background-color: #e5e5e5 !important;
  color: #000 !important;
}
.lobibox.lobibox-confirm .lobibox-header,
.lobibox.lobibox-prompt .lobibox-header {
  padding: 14px !important;
  border-radius: 5px 5px 0 0 !important;
}
.lobibox.lobibox-confirm .lobibox-footer,
.lobibox.lobibox-prompt .lobibox-footer {
  border-radius: 0 0 5px 5px !important;
  padding: 12px !important;
}
.lobibox.lobibox-confirm .lobibox-input,
.lobibox.lobibox-prompt .lobibox-input {
  border: 1px solid rgba(34, 36, 38, 0.15) !important;
  border-radius: 0.28571429rem !important;
  padding: 0.67857143em 1em !important;
}
.lobibox .lobibox-btn {
  border-radius: 4px !important;
  padding: 6px 12px !important;
  font-weight: bold !important;
}
.info_text {
  font-size: .8rem;
}
.info_header {
  font-size: 0.9rem !important;
}
.info_img {
  height: 30px;
  width: 30px;
}
._bold_ {
  font-weight: bold;
}
.ui.form.js-add-product-to-batch .field > label {
  font-size: 0.82857143em;
}
.ui.table.product-history-table thead th,
.ui.table.offers-table thead th,
.ui.table.product-history-table td,
.ui.table.offers-table td,
.ui.table.fee-estimate-table td,
.ui.table.fee-estimate-table thead th {
  padding: 0.2857143em 0.58571429em;
}
.ui.segment.product-history-segment,
.ui.segment.offers-segment {
  padding: 0.35em 0.15em;
}
.ui.table.product-history-table,
.ui.table.offers-table {
  font-size: .95em;
}
.ui.table thead.table_header th {
  background-color: #e8e8e8;
}
.ui.form.fee-estimate-form {
  max-width: 98%;
}
#buy-box-container .highcharts-root,
#repricing-container .highcharts-root,
#repricing-events-container .highcharts-root,
#repricing-events-container .highcharts-container,
#repricing-container .highcharts-container,
#buy-box-container .highcharts-container {
  height: 370px !important;
}
.disabled_btn {
  pointer-events: none !important;
  opacity: 0.45 !important;
}
.item.js-batch-item:hover,
.item.js-option-item:hover {
  background-color: rgba(223, 223, 223, 0.445);
  cursor: pointer;
}
.item.js-batch-item:hover .option_header,
.item.js-option-item:hover .option_header,
.item.js-batch-item:hover i.icon.arrow.right,
.item.js-option-item:hover i.icon.arrow.right {
  color: black !important;
}
.option_selected {
  color: black !important;
}
.option_selected .option_header,
.option_selected i.icon.arrow.right,
.option_selected .info_text {
  color: black !important;
}
.option_selected .fade {
  color: rgba(76, 76, 76, 0.75) !important;
}
.ui.dropdown.item.suppliers_dropdown {
  background: #FFFFFF;
  border: 1px solid rgba(34, 36, 38, 0.15);
  padding: 7px;
  width: 100%;
  border-radius: 0.28571429rem;
}
.ui.dropdown.item.suppliers_dropdown .ui.input {
  width: auto;
  margin: 0.4285714rem 0.78571429rem;
}
.ui.dropdown.item.suppliers_dropdown .menu {
  width: 100%;
}
.ui.dropdown.item.suppliers_dropdown .scrolling.menu {
  max-height: 12.571429rem;
}
.ui.dropdown.item.suppliers_dropdown .menu > .header {
  margin: 0.6rem 0rem 0.55rem;
}
div.ui.green.label.js-add-stock-history:hover {
  background-color: #1cae3e !important;
}
.js-details-strategy,
.js-edit-strategy {
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.js-details-strategy:hover,
.js-edit-strategy:hover {
  background-color: rgba(223, 223, 223, 0.145);
}
.js-details-strategy.active,
.js-edit-strategy.active {
  background-color: #F4A460 !important;
  z-index: 0 !important;
}
#dropdownId .menu {
  margin-top: -27px !important;
  position: absolute !important;
  z-index: 10 !important;
}
.search-container {
  position: relative;
  max-width: 90%;
  margin-right: 4px;
}
.search-icon {
  position: absolute;
  right: 30px;
  top: 57%;
  transform: translateY(-50%);
  color: #ccc;
  font-size: 10px;
}
.search-input {
  max-width: 80%;
  padding-left: 30px;
  box-sizing: border-box;
  border-radius: 10px;
  border: 1px solid #ccc;
  font-size: 9.5px;
  padding: 4px 12px;
  color: #000;
  outline: none;
}
.js-add-new {
  padding: 4px 0 !important;
  padding-right: 11px !important;
  padding-left: 6px !important;
}
.hidden {
  display: none !important;
}
/* OLD resync notification bar — replaced by rn- design
.ui.progress.sync-alert-progress{
  background-color: #646464;
}
.alert_cantainer{
  position: relative;
}
.alert_stats{
  position: absolute;
  top: -12px;
  right: 0;
}
.close_btn{
  position: absolute;
  top: -25px;
  right: -5px;
}
.permanent_close_btn{
  position: absolute;
  bottom: -20px;
  right: 0px;
}
.resync_cantainer{
  position: fixed;
  bottom: 0;
  left: 50%;
  z-index: 999;
  transform: translateX(-50%);
  padding: 10px 5px;
  display:flex;
  align-items:center;
  background: #171717;
  color: white;
  border: none;
  width: 40%;
  margin: auto;
}
*/
.btn-font-text {
  color: #000 !important;
  cursor: pointer !important;
}
.pointer-cursor {
  cursor: pointer !important;
}
.top-header {
  background: #e8e8e8 !important;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  font-size: 11px !important;
  padding: 6px 8px !important;
  margin-bottom: 0 !important;
}
.bottom {
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  padding: 6px 8px !important;
}
.bottom .ui.grid {
  margin: 0 !important;
}
.bottom .ui.grid .column {
  padding-top: 4px !important;
  padding-bottom: 4px !important;
}
.statistic-font,
.statistic-font-label {
  font-size: 10px !important;
  color: #000 !important;
  line-height: 1.2 !important;
}
.widget {
  position: relative;
  padding: 6px;
  margin-top: 3px;
  border-radius: 3px;
  color: #000;
  width: 130px;
  background: #e8e8e8  !important;
}
.widget-title {
  display: flex;
  align-items: end;
  margin: 0;
  font-weight: bold;
  font-size: 9px;
}
.widget-value {
  letter-spacing: 0;
  font-weight: 400;
  font-size: 10px;
}
.ui.mini.statistic > .value {
  font-size: 1rem !important;
}
.label-value {
  letter-spacing: 0;
  font-size: 11px  !important;
  font-weight: 600 !important;
  margin-bottom: 2px !important;
}
.top-margin {
  margin-top: -15px;
}
#keepaCanvas,
#simpleKeepaCanvas {
  padding: 0px 0px !important;
  margin-top: -8px !important;
}
#refund-container,
#returns-container {
  width: 100%;
  height: 256px;
  margin: 0 auto;
}
.tooltips {
  position: absolute;
  top: 64%;
  left: 100%;
  transform: translateY(-50%);
  background-color: #595656;
  color: white;
  padding: 0px 6px;
  border-radius: 4px;
  font-size: 13.2px;
  width: 300px;
  display: none;
  z-index: 1000;
}
.tooltips::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translateY(-50%);
  border-width: 5px;
  border-style: solid;
  border-color: transparent #595656 transparent transparent;
}
.fixed-label {
  margin-right: 15px !important;
  font-size: 12px !important;
}
.fixed-input {
  background-color: #ffffff40 !important;
}
.phone-code {
  background-color: #DDDDDD !important;
  font-weight: bold !important;
  padding: 8px !important;
  border-radius: 5px 0 0 5px !important;
}
.required {
  color: red !important;
  font-size: 13px !important;
}
.fixed-input::placeholder {
  font-size: 12px !important;
}
.counter {
  position: absolute;
  top: 1px;
  right: 0;
  height: 32px;
  width: 20px;
  display: flex;
  flex-direction: column;
  background-color: #DDDDDD;
  border-radius: 0 5px 5px 0;
}
.counter-inc {
  cursor: pointer;
  font-size: 8px;
  padding: 3px;
  padding-left: 5px;
  color: #595656;
}
.ui.modal.add-supplier-modal .header {
  background-color: #DDDDDD !important;
}
._shadow_ {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
._pd_2_8_ {
  padding: 2px 8px !important;
}
.custom-dropdown-menu1 {
  display: none;
}
.custom-dropdown1,
.custom-dropdown-menu1 {
  list-style: none;
  padding: 0;
  margin: 0;
}
.custom-dropdown-header1 {
  cursor: pointer;
  display: flex;
  text-align: left;
  justify-content: flex-start;
  padding: 10px;
  border-bottom: 1px solid #ddd;
}
.custom-dropdown-item1 {
  text-align: left;
  padding: 8px 10px;
  font-size: 12px;
  color: #333;
  cursor: pointer;
}
.stranded-inventory-all {
  color: white !important;
}
.js-clear-notifications {
  color: white !important;
}
.shipments_tile {
  display: flex;
  align-items: center;
  justify-content: space-around;
  background-color: #e4e4e4;
  width: 100%;
  padding: 5px;
  margin-bottom: 5px;
  border-radius: 5px;
}
.ui.selection.dropdown.js-carriers {
  min-width: 17em !important;
}
.transportation-form .ui.selection.dropdown.js-carriers {
  min-width: 15em !important;
}
.dashboard-container {
  width: 100%;
  min-height: 100vh;
  background: white;
}
.sales-time-data-wrapper {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
.sales-dashboard-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.dashboard-title {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
}
.dashboard-filters {
  display: flex;
  gap: 10px;
}
.dashboard-filters .ui.dropdown {
  min-width: 140px;
}
.metrics-container {
  background: #f8f9fa;
  border-radius: 4px;
  padding: 2px 6px;
  margin-bottom: 4px;
}
.metric-card-header {
  font-size: 11px;
  color: #666;
  font-weight: 700;
  margin-bottom: 2px;
}
.metric-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  padding: 0 8px 2px 8px;
}
.metric-item {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.metric-label {
  font-size: 10px;
  color: #666;
  font-weight: 400;
}
.metric-value {
  font-size: 11px;
  font-weight: 600;
  color: #333;
}
.metric-value.metric-green {
  color: #90ed7d;
}
.metric-value.metric-blue {
  color: #7cb5ec;
}
.metric-value.metric-orange {
  color: #f7a35c;
}
.metric-value.metric-purple {
  color: #8085e9;
}
.metric-value.metric-red {
  color: #f45b5b;
}
#sales-timedata-container {
  position: relative;
}
#sales-timedata-container.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border: 4px solid #f3f3f3;
  border-top: 4px solid #3498db;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
/* Header - Ultra Compact */
.dashboard-header {
  background: white;
  border-bottom: 1px solid #e5e5e5;
  padding: 10px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.dashboard-title {
  font-size: 20px;
  font-weight: 300;
  color: #2c3e50;
  margin: 0;
  display: flex;
  align-items: center;
}
.header-logo {
  height: 30px;
  width: auto;
  vertical-align: middle;
}
.header-controls {
  display: flex;
  gap: 12px;
}
.header-controls .ui.dropdown {
  min-width: 120px;
  font-size: 12px;
}
/* KPI Row - Gray cards on white background */
.kpi-row {
  display: flex;
  gap: 12px;
  padding: 12px 20px;
  background: white;
  position: relative;
}
.kpi-card {
  flex: 1;
  background: #e8e8e8;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}
.kpi-icon {
  font-size: 20px;
  color: #3498db;
  opacity: 0.8;
}
.kpi-content {
  flex: 1;
}
.kpi-value {
  font-size: 16px;
  font-weight: 300;
  color: #000000;
  line-height: 1.1;
}
.kpi-label {
  font-size: 12px;
  color: #000000;
  font-weight: 700;
  margin-bottom: 4px;
}
.kpi-change {
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 2px;
}
.kpi-change i {
  font-size: 8px;
}
.kpi-change.positive {
  color: #27ae60;
}
.kpi-change.negative {
  color: #e74c3c;
}
.kpi-change.neutral {
  color: #7f8c8d;
}
/* KPI tooltips */
.kpi-value,
.kpi-label {
  /* cursor: help; */
  /* Removed to avoid confusion - no tooltip content defined */
  position: relative;
}
.kpi-value:hover::after,
.kpi-label:hover::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 8px;
  font-weight: normal;
}
/* Charts Row - 3 charts side by side */
.charts-row {
  display: flex;
  gap: 12px;
  padding: 0 20px 12px;
  background: white;
}
.charts-row .widget-card {
  flex: 1;
}
/* Widget Cards */
.widget-card {
  background: white;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  border: 1px solid #e5e5e5;
}
.widget-card.compact {
  flex: 1;
}
/* Widget Headers - Gray background */
.widget-header {
  background: #e8e8e8;
  border-bottom: 1px solid #e5e5e5;
  padding: 8px 12px;
}
.widget-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: #000000;
  margin: 0;
}
/* Widget Content - White background */
.widget-content {
  background: white;
  padding: 12px;
  padding-bottom: 15px;
}
.widget-content.compact {
  padding: 8px 10px;
}
.mini-chart {
  height: 180px;
}
.widget-content.compact .mini-chart {
  height: 160px;
}
/* Main Grid - Ultra Compact */
.main-grid {
  padding: 0 20px 20px;
  background: white;
}
.info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}
.tables-row {
  display: flex;
  gap: 12px;
}
/* Priority List - Ultra Compact */
.priority-list.compact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  max-height: 160px;
  overflow-y: auto;
  padding-right: 5px;
}
/* Tables row widgets - increased height */
.tables-row .widget-card {
  min-height: 280px;
}
.tables-row .priority-list.compact {
  max-height: 220px;
}
.tables-row .data-table.compact {
  max-height: 220px;
  overflow-y: auto;
}
/* Scrollbar styling for tables */
.tables-row .data-table.compact::-webkit-scrollbar {
  width: 6px;
}
.tables-row .data-table.compact::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.tables-row .data-table.compact::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.tables-row .data-table.compact::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.priority-list.compact::-webkit-scrollbar {
  width: 6px;
}
.priority-list.compact::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}
.priority-list.compact::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 3px;
}
.priority-list.compact::-webkit-scrollbar-thumb:hover {
  background: #555;
}
.priority-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  background: #f8f9fa;
  border-radius: 3px;
  border-left: 2px solid transparent;
}
.priority-item .product-image {
  width: 30px;
  height: 30px;
  font-size: 8px;
  flex-shrink: 0;
}
.priority-product {
  flex: 1;
  position: relative;
}
.priority-item.urgent {
  border-left-color: #e74c3c;
  background: #fff5f5;
}
.priority-item.warning {
  border-left-color: #f39c12;
  background: #fff9f0;
}
.product-name {
  font-weight: 500;
  color: #2c3e50;
  margin-bottom: 1px;
  font-size: 12px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-sku {
  font-size: 10px;
  color: #7f8c8d;
  font-family: monospace;
  line-height: 1.1;
}
.priority-status {
  text-align: right;
  display: flex;
  gap: 8px;
}
.days-left,
.units-needed {
  position: relative;
  cursor: help;
}
.days-left {
  font-size: 12px;
  font-weight: 600;
  color: #e74c3c;
}
.units-needed {
  font-size: 12px;
  color: #7f8c8d;
}
.days-left:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
.units-needed:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Show tooltips above for items in the lower half to avoid going off screen */
.priority-item:nth-child(n+6) .days-left:hover::after,
.priority-item:nth-child(n+6) .units-needed:hover::after {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 4px;
}
/* Risk Analysis - Ultra Compact */
.risk-items.compact {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 160px;
}
.risk-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  background: #f8f9fa;
  border-radius: 3px;
}
.risk-indicator {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.risk-item.high .risk-indicator {
  background: #e74c3c;
}
.risk-item.medium .risk-indicator {
  background: #f39c12;
}
.risk-item.low .risk-indicator {
  background: #27ae60;
}
.risk-content {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
.risk-title {
  font-weight: 500;
  color: #2c3e50;
  font-size: 13px;
  cursor: help;
}
.risk-value {
  font-size: 13px;
  font-weight: 600;
  color: #2c3e50;
}
/* Risk item tooltips */
.risk-item {
  cursor: help;
  position: relative;
}
.risk-item:hover::after {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #333;
  color: white;
  padding: 6px 10px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Data Tables - Ultra Compact */
.data-table.compact {
  font-size: 11px;
}
.table-row {
  display: flex;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}
.table-row:last-child {
  border-bottom: none;
}
.table-row.header {
  font-weight: 600;
  color: #7f8c8d;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 6px;
}
.col-image {
  flex: 0 0 40px;
  display: flex;
  align-items: center;
}
.col-product,
.col-supplier {
  flex: 2;
}
.col-stock,
.col-value,
.col-days,
.col-rank,
.col-products,
.col-avg-stock,
.col-total-value {
  flex: 1;
  text-align: right;
}
.col-rank {
  color: #7f8c8d;
  font-weight: 500;
}
/* Days column tooltips */
.col-days {
  position: relative;
  cursor: help;
}
.col-days:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Don't show tooltip on header */
.table-row.header .col-days {
  cursor: default;
}
.table-row.header .col-days:hover::after {
  display: none;
}
/* Avg stock column tooltips */
.col-avg-stock {
  position: relative;
  cursor: help;
}
.col-avg-stock:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Don't show tooltip on header */
.table-row.header .col-avg-stock {
  cursor: default;
}
.table-row.header .col-avg-stock:hover::after {
  display: none;
}
/* Products/Items column tooltips */
.col-products {
  position: relative;
  cursor: help;
}
.col-products:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Don't show tooltip on header */
.table-row.header .col-products {
  cursor: default;
}
.table-row.header .col-products:hover::after {
  display: none;
}
/* Stock column tooltips */
.col-stock {
  position: relative;
  cursor: help;
}
.col-stock:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Value column tooltips */
.col-value {
  position: relative;
  cursor: help;
}
.col-value:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Update rank tooltip */
.col-rank:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Total value column tooltips (Supplier Metrics) */
.col-total-value {
  position: relative;
  cursor: help;
}
.col-total-value:hover::after {
  position: absolute;
  top: 100%;
  right: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Product name tooltips */
.product-name {
  cursor: help;
}
.product-name:hover::after {
  position: absolute;
  top: 100%;
  left: 0;
  background: #333;
  color: white;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  white-space: nowrap;
  z-index: 1000;
  margin-top: 4px;
}
/* Make col-product relative for tooltip positioning */
.col-product {
  position: relative;
}
/* Don't show tooltips on headers */
.table-row.header .col-stock,
.table-row.header .col-value,
.table-row.header .col-rank,
.table-row.header .col-total-value {
  cursor: default;
}
.table-row.header .col-stock:hover::after,
.table-row.header .col-value:hover::after,
.table-row.header .col-rank:hover::after,
.table-row.header .col-total-value:hover::after {
  display: none;
}
.product-image {
  width: 35px;
  height: 35px;
  background: #f0f0f0;
  border: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #999;
  border-radius: 3px;
}
.table-row:not(.header) {
  color: #2c3e50;
}
.col-product .product-name {
  font-size: 11px;
  margin-bottom: 0;
}
.col-product .product-sku {
  font-size: 9px;
}
.asin-link {
  color: #3498db;
  text-decoration: none;
  font-family: monospace;
}
.asin-link:hover {
  text-decoration: underline;
  color: #2980b9;
}
.sku-link {
  color: #3498db;
  text-decoration: none;
  font-family: monospace;
}
.sku-link:hover {
  text-decoration: underline;
  color: #2980b9;
}
.fnsku-link {
  color: #3498db;
  text-decoration: none;
  font-family: monospace;
}
.fnsku-link:hover {
  text-decoration: underline;
  color: #2980b9;
}
#timeDropdown {
  margin-left: 110pc;
  margin-top: 9px;
}
.containerRevenue {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  height: calc(100vh);
}
/* Page Header */
.page-headerRevenue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  padding: 20px 0;
}
.header-leftRevenue {
  display: flex;
  align-items: center;
  gap: 15px;
}
.header-leftRevenue h1 {
  font-size: 28px;
  font-weight: 600;
  color: #1a1a1a;
}
.badgeRevenue {
  background-color: #e8f4fd;
  color: #4a90e2;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
}
.header-rightRevenue {
  display: flex;
  align-items: center;
  gap: 15px;
}
.date-filtersRevenue {
  display: flex;
  gap: 8px;
}
.filter-btnRevenue {
  background-color: white;
  border: 1px solid #ddd;
  padding: 8px 16px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}
.filter-btnRevenue:hover {
  background-color: #f8f8f8;
  border-color: #4a90e2;
}
.export-btnRevenue {
  background-color: white;
  border: 1px solid #ddd;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
}
.export-btnRevenue:hover {
  background-color: #4a90e2;
  color: white;
  border-color: #4a90e2;
}
/* Summary Cards */
.summary-cardsRevenue {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 15px;
  margin-bottom: 30px;
}
.cardRevenue {
  background-color: white;
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.card-labelRevenue {
  font-size: 14px;
  color: #666;
  margin-bottom: 10px;
  font-weight: 500;
}
.card-amountRevenue {
  font-size: 24px;
  font-weight: 700;
}
.revenue-cardRevenue .card-amountRevenue {
  color: #4caf50;
}
.expenses-cardRevenue .card-amountRevenue {
  color: #f44336;
}
.profit-cardRevenue .card-amountRevenue {
  color: #ff9800;
}
.debt-cardRevenue .card-amountRevenue {
  color: #4caf50;
}
.total-cardRevenue .card-amountRevenue {
  color: #2196f3;
}
/* Tables Section */
.tables-sectionRevenue {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
  overflow-y: auto;
  padding: 1rem;
}
.table-containerRevenue {
  background-color: white;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
}
.table-titleRevenue {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #1a1a1a;
}
.data-tableRevenue {
  width: 100%;
  border-collapse: collapse;
}
.data-tableRevenue thead th {
  text-align: left;
  padding: 12px 8px;
  border-bottom: 2px solid #e0e0e0;
  font-size: 13px;
  font-weight: 600;
  color: #666;
}
.data-tableRevenue tbody td {
  padding: 10px 8px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 13px;
}
.data-tableRevenue tbody tr:hover {
  background-color: #f9f9f9;
}
.data-tableRevenue tfoot td {
  padding: 12px 8px;
  font-weight: 600;
  border-top: 2px solid #e0e0e0;
  font-size: 14px;
}
.positiveRevenue {
  color: #4caf50;
  font-weight: 600;
}
.negativeRevenue {
  color: #f44336;
  font-weight: 600;
}
.total-labelRevenue {
  color: #1a1a1a;
}
.total-amountRevenue {
  font-size: 16px;
  font-weight: 700;
}
/* Layout for summary cards */
.summary-cardsRevenue {
  margin-top: auto;
  display: flex;
  gap: 20px;
}
.cardRevenue {
  flex: 1;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: bold;
}
/* Income */
.income-cardRevenue {
  background-color: #f0f7ff;
  /* light blue */
}
.income-cardRevenue .positiveIncome {
  color: #0056d2;
  /* blue */
}
/* Expenses */
.expenses-cardRevenue {
  background-color: #fff5f5;
  /* light red */
}
.expenses-cardRevenue .negativeExpenses {
  color: #d93025;
  /* red */
}
/* Taxes */
.tax-cardRevenue {
  background-color: #fffbea;
  /* light yellow */
}
.tax-cardRevenue .positiveTax,
.tax-cardRevenue .negativeTax {
  color: #a65c00;
  /* brown/orange */
}
/* Gross Profit */
.grossprofit-cardRevenue {
  background-color: #f0fff4;
  /* light green */
}
.grossprofit-cardRevenue .positiveProfit {
  color: #137333;
  /* green */
}
/* Net Profit */
.netprofit-cardRevenue {
  background-color: #f0fff4;
  /* light green */
}
.netprofit-cardRevenue .positiveProfit {
  color: #137333;
  /* green */
}
/* General text */
.card-labelRevenue {
  font-size: 14px;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 5px;
}
.card-amountRevenue {
  font-size: 20px;
}
/* General container */
.table-containerRevenue {
  background: #fff;
  border-radius: 10px;
  padding: 15px 20px;
  margin: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  flex: 1;
}
/* Headings with underline color */
.table-titleRevenue {
  font-size: 18px;
  margin-bottom: 8px;
  padding-bottom: 4px;
  display: inline-block;
  font-weight: bold;
  border-bottom: 3px solid transparent;
  display: block;
  width: 100%;
}
/* Specific heading colors */
.income-title {
  color: #00897B;
  /* Teal Green */
  border-color: #00897B;
}
.expenses-title {
  color: #E65100;
  /* Orange/Red */
  border-color: #E65100;
}
.taxes-title {
  color: #1565C0;
  /* Blue */
  border-color: #1565C0;
}
/* Values styling */
.positiveRevenue {
  color: green;
}
.negativeRevenue {
  color: red;
}
.total-itemRevenue strong {
  font-weight: bold;
  color: #333;
}
.total-itemRevenue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  margin-top: 6px;
  padding-top: 6px;
  font-weight: bold;
  color: #333;
}
.list-itemRevenue {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14px;
}
.contentRevenue {
  flex: 1;
  color: #333;
}
.amountRevenue {
  min-width: 100px;
  text-align: right;
  font-weight: 600;
}
.positiveRevenue {
  color: green;
}
.negativeRevenue {
  color: red;
}
/* Responsive Design */
@media (max-width: 1200px) {
  .tables-sectionRevenue {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .summary-cardsRevenue {
    grid-template-columns: repeat(2, 1fr);
  }
  .page-headerRevenue {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  .header-rightRevenue {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .date-filtersRevenue {
    width: 100%;
  }
  .filter-btnRevenue,
  .export-btnRevenue {
    flex: 1;
  }
}
/* Responsive Design */
@media (max-width: 1400px) {
  .info-row {
    flex-wrap: wrap;
  }
  .widget-card.compact {
    flex: 1 1 calc(44%);
  }
}
@media (max-width: 1200px) {
  .charts-row {
    flex-wrap: wrap;
  }
  .charts-row .widget-card {
    flex: 1 1 calc(44%);
  }
  .kpi-row {
    flex-wrap: wrap;
  }
  .kpi-card {
    flex: 1 1 calc(44%);
  }
  .tables-row {
    flex-direction: column;
  }
}
@media (max-width: 768px) {
  .dashboard-header {
    flex-direction: column;
    gap: 8px;
    padding: 8px 10px;
  }
  .kpi-row {
    flex-direction: column;
    padding: 8px 10px;
    gap: 8px;
  }
  .kpi-card {
    flex: none;
  }
  .charts-row,
  .main-grid {
    padding: 8px 10px;
    flex-direction: column;
  }
  .charts-row .widget-card {
    flex: none;
  }
  .info-row {
    flex-direction: column;
  }
  .widget-card.compact {
    flex: none;
  }
}
/* Sales Data Component - Zoom-Friendly Responsive Styles */
.sales-data-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  width: 100%;
}
.sales-data-card {
  flex: 1 1 calc(24.5%);
  min-width: 280px;
  max-width: 100%;
  box-sizing: border-box;
}
.sales-data-header {
  padding: 0.3rem 0.4rem;
  margin-bottom: 0;
  font-size: 0.85rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sales-data-header-date {
  margin-left: 0.1rem;
  font-size: 0.75rem;
}
.sales-data-content {
  padding: 0.3rem 0.4rem;
  overflow: hidden;
}
.sales-data-row {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  gap: 0.1rem;
  margin-bottom: 0.2rem;
}
.sales-data-item {
  flex: 1 1 20%;
  min-width: 0;
  max-width: 20%;
  overflow: hidden;
  box-sizing: border-box;
  padding: 0 0.05rem;
}
.sales-data-label {
  font-size: 0.55rem;
  line-height: 1.0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-bottom: 0.08rem;
}
.sales-data-value {
  font-size: 0.65rem;
  line-height: 1.1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sales-data-divider {
  width: 100%;
  margin: 0.2rem 0;
  border-top: 1px solid rgba(34, 36, 38, 0.15);
}
/* Sales Data - Responsive Breakpoints */
@media (max-width: 1200px) {
  .sales-data-card {
    flex: 1 1 calc(49.5%);
    min-width: 320px;
  }
}
@media (max-width: 768px) {
  .sales-data-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .sales-data-item {
    flex: 1 1 calc(33.08%);
    min-width: 60px;
  }
}
/* ===================================
   RESYNC NOTIFICATION — Panel-style progress bar
   Replaces the old dark-banner design.
   All classes prefixed "rn-" to prevent overrides.
   =================================== */
.rn-wrapper {
  position: fixed;
  bottom: 1.5rem;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  pointer-events: none;
  z-index: 9999;
  /* ── Full expanded card ── */
  /* Window controls — absolute top-right */
  /* Header */
  /* Progress bar */
  /* Footer */
  /* ── Minimized pill badge ── */
  /* Animations */
  /* Responsive */
}
.rn-wrapper .rn-loader-container {
  max-width: 680px;
  width: 90%;
  padding: 1rem 1.5rem;
  margin-bottom: 1rem;
  pointer-events: auto;
  animation: rn-slide-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.rn-wrapper .rn-card {
  position: relative;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px) saturate(1.8);
  -webkit-backdrop-filter: blur(16px) saturate(1.8);
  border-radius: 0.875rem;
  padding: 1.5rem 2rem;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  pointer-events: auto;
}
.rn-wrapper .rn-window-controls {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 4px;
}
.rn-wrapper .rn-expand-icon {
  width: 9px;
  height: 9px;
  display: block;
}
.rn-wrapper .rn-window-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  border-radius: 50%;
  color: #94a3b8;
  font-size: 9px;
  cursor: pointer;
  pointer-events: auto;
  padding: 0;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}
.rn-wrapper .rn-window-btn:hover {
  background: #e2e8f0;
  border-color: #cbd5e1;
  color: #374151;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}
.rn-wrapper .rn-window-btn:active {
  background: #cbd5e1;
  box-shadow: none;
}
.rn-wrapper .rn-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.rn-wrapper .rn-icon-container {
  position: relative;
  flex-shrink: 0;
}
.rn-wrapper .rn-icon-circle {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
  animation: rn-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}
.rn-wrapper .rn-icon-circle svg {
  width: 1.5rem;
  height: 1.5rem;
  stroke: white;
}
.rn-wrapper .rn-orbit {
  position: absolute;
  inset: 0;
  animation: rn-spin 3s linear infinite;
}
.rn-wrapper .rn-orbit:nth-child(2) {
  animation-delay: -1s;
}
.rn-wrapper .rn-orbit:nth-child(3) {
  animation-delay: -2s;
}
.rn-wrapper .rn-orbit-dot-1 {
  position: absolute;
  top: -0.15rem;
  left: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background: #60a5fa;
  border-radius: 50%;
  transform: translateX(-50%);
}
.rn-wrapper .rn-orbit-dot-2 {
  position: absolute;
  bottom: -0.15rem;
  left: 50%;
  width: 0.35rem;
  height: 0.35rem;
  background: #3b82f6;
  border-radius: 50%;
  transform: translateX(-50%);
}
.rn-wrapper .rn-orbit-dot-3 {
  position: absolute;
  top: 50%;
  right: -0.15rem;
  width: 0.4rem;
  height: 0.4rem;
  background: #38bdf8;
  border-radius: 50%;
  transform: translateY(-50%);
}
.rn-wrapper .rn-header-text {
  flex: 1;
}
.rn-wrapper .rn-title {
  font-size: 16px;
  font-weight: 600;
  color: #1e293b;
  margin: 0 0 0.2rem 0;
  letter-spacing: -0.01em;
}
.rn-wrapper .rn-subtitle {
  font-size: 12px;
  color: #64748b;
  margin: 0;
}
.rn-wrapper .rn-progress-percent-header {
  font-size: 16px;
  /* 1.5rem at panel's 16px root — pinned in px to avoid Semantic UI rem-base differences */
  font-weight: 700;
  color: #2563eb;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.rn-wrapper .rn-progress-container {
  position: relative;
  margin-bottom: 1.25rem;
}
.rn-wrapper .rn-progress-track {
  height: 8px;
  background: #f1f5f9;
  border-radius: 9999px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}
.rn-wrapper .rn-progress-fill {
  height: 100%;
  border-radius: 9999px;
  position: relative;
  overflow: hidden;
  transition: width 0.5s ease-out;
}
.rn-wrapper .rn-progress-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #3b82f6, #2563eb, #3b82f6);
  background-size: 200% 100%;
  animation: rn-shimmer 2s linear infinite;
}
.rn-wrapper .rn-progress-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: rn-shine 2s ease-in-out infinite;
}
.rn-wrapper .rn-progress-glow {
  position: absolute;
  top: 0;
  height: 8px;
  border-radius: 9999px;
  background: rgba(96, 165, 250, 0.25);
  filter: blur(4px);
  transition: width 0.5s;
}
.rn-wrapper .rn-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}
.rn-wrapper .rn-footer-text {
  font-size: 11px;
  color: #94a3b8;
}
.rn-wrapper .rn-dismiss-btn {
  font-size: 11px;
  color: #64748b;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: 3px 8px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
.rn-wrapper .rn-dismiss-btn:hover {
  background: #e2e8f0;
  color: #374151;
}
.rn-wrapper .rn-minimized-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  border-radius: 50px;
  padding: 8px 12px 8px 10px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15), 0 1px 4px rgba(0, 0, 0, 0.08);
  pointer-events: auto;
  cursor: pointer;
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}
.rn-wrapper .rn-minimized-badge:hover {
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.2), 0 2px 6px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
}
.rn-wrapper .rn-mini-spin {
  position: relative;
  width: 22px;
  height: 22px;
  background: #3b82f6;
  border-radius: 50%;
  flex-shrink: 0;
}
.rn-wrapper .rn-mini-spin .rn-mini-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12px;
  height: 12px;
  stroke: #ffffff;
  z-index: 1;
  pointer-events: none;
}
.rn-wrapper .rn-mini-spin .rn-orbit {
  position: absolute;
  inset: -4px;
  animation: rn-spin 2s linear infinite;
}
.rn-wrapper .rn-mini-spin .rn-orbit-dot-1 {
  width: 5px;
  height: 5px;
  background: #93c5fd;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.rn-wrapper .rn-mini-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;
  min-width: 0;
}
.rn-wrapper .rn-mini-row-top {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}
.rn-wrapper .rn-mini-label {
  font-size: 11px;
  font-weight: 600;
  color: #374151;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
.rn-wrapper .rn-mini-pct {
  font-size: 11px;
  font-weight: 700;
  color: #3b82f6;
  line-height: 1.2;
  flex-shrink: 0;
}
.rn-wrapper .rn-mini-bar {
  height: 4px;
  background: #e2e8f0;
  border-radius: 9999px;
  overflow: hidden;
}
.rn-wrapper .rn-mini-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, #3b82f6, #60a5fa);
  border-radius: 9999px;
  transition: width 0.5s ease;
}
@keyframes rn-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}
@keyframes rn-shine {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}
@keyframes rn-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes rn-pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}
@keyframes rn-slide-in {
  from {
    opacity: 0;
    transform: translateY(2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 600px) {
  .rn-wrapper .rn-loader-container {
    width: 95%;
    padding: 0.75rem 1rem;
  }
  .rn-wrapper .rn-header {
    flex-wrap: wrap;
  }
  .rn-wrapper .rn-progress-percent-header {
    width: 100%;
    text-align: right;
  }
  .rn-wrapper .rn-footer {
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
  }
}
/* ===================================
   RESYNC NOTIFICATION — Phase 2, Status Grid & Mini Badge additions
   Extends the base rn- block above.
   =================================== */
/* ── Dots (fixed-width so badge width doesn't jump) ── */
.rn-wrapper .rn-dots {
  display: inline-block;
  width: 1.4em;
  text-align: left;
}
/* ── Minimized badge — second row ── */
.rn-wrapper .rn-mini-row-bottom {
  display: flex;
  align-items: center;
  gap: 5px;
}
/* Phase-state dot: amber = Phase 1 (locked), green = Phase 2 (unlocked) */
.rn-wrapper .rn-mini-step-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
  animation: rn-dot-pulse 1.6s ease-in-out infinite;
}
.rn-wrapper .rn-mini-step-dot--phase1 {
  background: #f59e0b;
}
.rn-wrapper .rn-mini-step-dot--phase2 {
  background: #10b981;
}
.rn-wrapper .rn-mini-sub {
  font-size: 10px;
  color: #6b7280;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
  min-width: 0;
}
/* ── Status grid ── */
.rn-wrapper .rn-status-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem 1rem;
  border-top: 1px solid #f1f5f9;
  padding-top: 1rem;
  margin-bottom: 1rem;
}
.rn-wrapper .rn-status-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  grid-template-rows: auto auto;
  column-gap: 0.4rem;
  row-gap: 0.1rem;
  align-items: start;
}
.rn-wrapper .rn-status-icon {
  grid-column: 1;
  grid-row: 1;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.rn-wrapper .rn-status-complete {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: rn-pop 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
.rn-wrapper .rn-status-complete svg {
  width: 0.6rem;
  height: 0.6rem;
  color: #3b82f6;
  stroke: #3b82f6;
}
.rn-wrapper .rn-status-loading {
  width: 10px;
  height: 10px;
  border: 2px solid #bfdbfe;
  border-top-color: #3b82f6;
  border-radius: 50%;
  animation: rn-spin 1s linear infinite;
}
.rn-wrapper .rn-status-pending {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #e2e8f0;
}
.rn-wrapper .rn-status-label {
  grid-column: 2;
  grid-row: 1;
  font-size: 12px;
  white-space: normal;
  line-height: 1.3;
}
.rn-wrapper .rn-status-label.pending {
  color: #94a3b8;
}
.rn-wrapper .rn-status-label.in_progress {
  color: #3b82f6;
  font-weight: 500;
}
.rn-wrapper .rn-status-label.done {
  color: #3b82f6;
}
.rn-wrapper .rn-status-progress {
  grid-column: 2;
  grid-row: 2;
  font-size: 11px;
  font-weight: 600;
  text-align: left;
}
.rn-wrapper .rn-status-progress.done {
  color: #3b82f6;
}
.rn-wrapper .rn-status-progress.in_progress {
  color: #3b82f6;
}
.rn-wrapper .rn-status-progress.pending {
  color: #94a3b8;
}
/* ── Phase 2 — compact blue-accent card ── */
.rn-wrapper .rn-loader-container.rn-phase2-mode {
  max-width: 450px;
  width: 450px;
  transition-delay: 0.25s, 0.25s;
}
.rn-wrapper .rn-card.rn-phase2-mode {
  animation: rn-phase2-enter 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-icon-circle {
  background: linear-gradient(135deg, #1d4ed8 0%, #3b82f6 100%);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.35);
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-orbit:nth-child(3),
.rn-wrapper .rn-card.rn-phase2-mode .rn-orbit:nth-child(4) {
  display: none;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-grid {
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 1.5rem;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-label.done,
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-label.in_progress {
  color: #3b82f6;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-progress.done,
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-progress.in_progress {
  color: #3b82f6;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-complete {
  background: rgba(59, 130, 246, 0.12);
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-complete svg {
  stroke: #3b82f6;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-status-loading {
  border-color: rgba(59, 130, 246, 0.2);
  border-top-color: #3b82f6;
}
.rn-wrapper .rn-card.rn-phase2-mode .rn-subtitle {
  color: #3b82f6;
  font-weight: 500;
}
/* ── Additional animations ── */
@keyframes rn-pop {
  0% {
    transform: scale(0);
    opacity: 0;
  }
  60% {
    transform: scale(1.3);
    opacity: 1;
  }
  80% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes rn-dot-pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}
@keyframes rn-phase2-enter {
  0% {
    transform: translateY(14px) scale(0.96);
  }
  60% {
    transform: translateY(-3px) scale(1.01);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
/* ── Responsive additions ── */
@media (max-width: 900px) {
  .rn-wrapper .rn-status-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .rn-wrapper .rn-status-grid {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1600px) {
  .search-list-page ._btn_ {
    font-size: .9rem !important;
  }
  .search-list-page .ui.breadcrumb {
    font-size: 1.15rem;
  }
  .search-list-page .info_text {
    font-size: .92rem;
  }
  .search-list-page .info_header {
    font-size: 1rem !important;
  }
  .search-list-page i.tiny.icon.batch_icons {
    font-size: 0.7rem !important;
  }
  .search-list-page .info_img {
    height: 35px;
    width: 35px;
  }
  .search-list-page .ui.horizontal.list > .item {
    font-size: 1.15rem !important;
  }
  .ui.form.js-add-product-to-batch .field > label {
    font-size: 0.82857143em;
  }
  .ui.table.product-history-table,
  .ui.table.offers-table {
    font-size: 1em;
  }
}
