/* 
    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;
}
body.lp-blur-title td.lp-order-col,
body.lp-blur-title .lp-order-id {
  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;
  }
}
.sf-da-muted {
  color: #5b6472;
}
.sf-da-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #0b0d12;
  cursor: pointer;
  line-height: 1.4;
}
.sf-da-btn:hover {
  background: #fafafa;
  border-color: #d4d4da;
}
.sf-da-btn i.icon {
  margin: 0 !important;
  font-size: 12px;
}
.sf-da-btn-primary {
  background: #0b0d12;
  color: #fff;
  border-color: #0b0d12;
}
.sf-da-btn-primary:hover {
  background: #1a1d24;
  border-color: #1a1d24;
}
.sf-da-btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #5b6472;
}
.sf-da-btn-ghost:hover {
  background: #f4f4f6;
  color: #0b0d12;
}
.sf-da-btn-danger {
  color: #cf2c2c;
}
.strategy-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 0;
  background: transparent;
}
.sf-da-card {
  background: #ffffff;
  border: 1px solid #e7e7ec;
  border-radius: 10px;
  overflow: visible;
}
.sf-da-proto-card {
  scroll-margin-top: 116px;
}
.sf-da-proto-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px 12px;
  border-bottom: 1px solid #e7e7ec;
}
.sf-da-sec-no {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 600;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #1d4ed8;
  flex-shrink: 0;
  letter-spacing: 0;
  margin-top: 1px;
}
.sf-da-sec-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 11px;
  font-weight: 600;
  width: 26px;
  height: 26px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  background: #eff6ff;
  color: #1d4ed8;
  flex-shrink: 0;
  letter-spacing: 0;
  margin-top: 1px;
}
.sf-da-proto-title {
  font-size: 15px;
  font-weight: 700;
  color: #0b0d12;
  margin: 0 0 2px;
  line-height: 1.25;
}
.sf-da-proto-required {
  font-size: 11px;
  font-weight: 600;
  color: #cf2c2c;
  margin-left: 6px;
  vertical-align: middle;
}
.sf-da-proto-sub {
  font-size: 12px;
  color: #5b6472;
  margin: 0;
  line-height: 1.4;
}
.sf-da-sec-title {
  font-size: 14px;
  font-weight: 600;
  color: #0b0d12;
}
.sf-da-sec-sub {
  font-size: 11px;
  color: #5b6472;
}
.sf-da-sec-badge {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
}
.sf-da-frow {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(0, 1.3fr);
  gap: 14px;
  align-items: center;
  padding: 12px 20px;
  border-bottom: 1px dashed #e7e7ec;
}
.sf-da-frow:last-child,
.sf-da-frow.sf-da-frow-last {
  border-bottom: 0;
}
@media (max-width: 700px) {
  .sf-da-frow {
    grid-template-columns: 1fr;
    gap: 6px;
  }
}
.sf-da-frow-default {
  background: #fcfcfd;
}
.sf-da-frow-label {
  font-size: 12px;
  font-weight: 600;
  color: #0b0d12;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.sf-da-frow-label .ui.toggle.checkbox {
  min-height: 0;
}
.sf-da-frow-help {
  font-size: 11px;
  color: #5b6472;
  margin-top: 2px;
  line-height: 1.35;
}
.sf-da-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.sf-da-lbl {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sf-da-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid #e7e7ec;
  border-radius: 8px;
  background: #fcfcfd;
  transition: border-color 0.12s, background 0.12s;
}
.sf-da-toggle-row .ui.toggle.checkbox {
  min-height: 0;
}
.sf-da-toggle-row .ui.toggle.checkbox input:checked ~ .box,
.sf-da-toggle-row .ui.toggle.checkbox input:checked ~ label {
  color: #0b0d12 !important;
}
.sf-da-toggle-row:has(input:checked) {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px #eff6ff;
}
.sf-da-toggle-label {
  font-size: 12px;
  font-weight: 600;
  color: #0b0d12;
}
.sf-da-toggle-desc {
  font-size: 11px;
  color: #5b6472;
}
.sf-da-rule-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sf-da-rule-drop {
  min-width: 160px;
}
.sf-da-rule-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 600;
  background: #fcfcfd;
  color: #5b6472;
  border: 1px solid #e7e7ec;
  white-space: nowrap;
}
.sf-da-disabled-controls {
  opacity: 0.45;
  pointer-events: none;
}
.sf-da-edge-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-da-edge-controls .sf-da-semui-drop {
  width: 100%;
}
.sf-da-save-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 4px 4px;
  flex-wrap: wrap;
}
.sf-da-save-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sf-da-save-bar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}
.sf-da-save-note {
  font-size: 11px;
  color: #5b6472;
}
.sf-da-topbar {
  display: none !important;
}
.sf-da-body {
  display: block;
  background: transparent;
  padding: 0;
}
.sf-da-nav {
  display: none !important;
}
.sf-da-main {
  display: contents;
}
.sf-da-lbl {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}
.sf-da-ctrl {
  width: 100%;
  padding: 7px 10px;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  background: #fcfcfd;
  font-size: 13px;
  color: #0b0d12;
  font-family: inherit;
  transition: border-color 0.12s, background 0.12s;
  box-sizing: border-box;
}
.sf-da-ctrl:hover {
  border-color: #d4d4da;
  background: #fff;
}
.sf-da-ctrl:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 3px #eff6ff;
}
.sf-da-semui-drop.ui.dropdown,
.sf-da-semui-drop.ui.selection.dropdown {
  border: 1px solid #e7e7ec !important;
  border-radius: 6px !important;
  background: #fcfcfd !important;
  min-height: 0 !important;
  padding: 7px 32px 7px 10px !important;
  font-size: 13px !important;
  color: #0b0d12 !important;
  box-shadow: none !important;
}
.sf-da-semui-drop.ui.dropdown:hover,
.sf-da-semui-drop.ui.selection.dropdown:hover {
  border-color: #d4d4da !important;
  background: #fff !important;
}
.sf-da-semui-drop.ui.dropdown.active,
.sf-da-semui-drop.ui.selection.dropdown.active,
.sf-da-semui-drop.ui.dropdown:focus-within,
.sf-da-semui-drop.ui.selection.dropdown:focus-within {
  border-color: #2563eb !important;
  background: #fff !important;
  box-shadow: 0 0 0 3px #eff6ff !important;
}
.sf-da-semui-drop.ui.dropdown > .dropdown.icon,
.sf-da-semui-drop.ui.selection.dropdown > .dropdown.icon {
  padding: 8px !important;
}
.sf-da-unit-drop.ui.dropdown.label {
  border: 1px solid #e7e7ec !important;
  border-radius: 6px !important;
  background: #fcfcfd !important;
  font-size: 12px !important;
  padding: 6px 10px !important;
  min-width: 52px;
  color: #5b6472 !important;
}
.strategy-form .ui.active.dropdown,
.strategy-form .ui.active.selection.dropdown {
  position: relative;
  z-index: 100;
}
.strategy-form .ui.dropdown .menu,
.strategy-form .ui.active.dropdown .menu {
  z-index: 100;
}
.sf-da-inline-num {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 6px;
}
.sf-da-num-input {
  width: 90px !important;
  flex-shrink: 0;
}
.sf-da-input-unit {
  display: flex;
  align-items: center;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  overflow: hidden;
  background: #fcfcfd;
}
.sf-da-input-unit:focus-within {
  border-color: #2563eb;
  box-shadow: 0 0 0 3px #eff6ff;
}
.sf-da-input-unit input.sf-da-ctrl {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  flex: 1;
  padding: 7px 10px !important;
}
.sf-da-unit-badge {
  padding: 0 10px;
  font-size: 12px;
  font-weight: 600;
  color: #5b6472;
  background: #fcfcfd;
  border-left: 1px solid #e7e7ec;
  line-height: 32px;
}
.sf-da-help {
  display: inline-grid;
  place-items: center;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #e7e7ec;
  color: #5b6472;
  font-size: 9px;
  font-weight: 700;
  cursor: help;
}
.sf-da-help:hover {
  background: #2563eb;
  color: #fff;
}
.sf-da-rule-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 16px;
  align-items: start;
  padding: 14px 20px;
  border-bottom: 1px solid #e7e7ec;
}
.sf-da-rule-row:last-child {
  border-bottom: 0;
}
@media (max-width: 700px) {
  .sf-da-rule-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.sf-da-rule-default {
  background: #fcfcfd;
}
.sf-da-rule-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sf-da-rule-chip {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  white-space: nowrap;
}
.sf-da-rule-name {
  font-size: 13px;
  font-weight: 600;
  color: #0b0d12;
}
.sf-da-rule-desc {
  font-size: 11px;
  color: #5b6472;
  margin-top: 2px;
}
.sf-da-rule-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.sf-da-disabled-controls {
  opacity: 0.45;
  pointer-events: none;
}
.sf-da-toggle-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 16px;
}
@media (max-width: 600px) {
  .sf-da-toggle-grid {
    grid-template-columns: 1fr;
  }
}
.sf-da-toggle-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e7e7ec;
  border-radius: 8px;
  background: #fcfcfd;
  transition: border-color 0.12s, background 0.12s;
}
.sf-da-toggle-row .ui.toggle.checkbox {
  min-height: 0;
}
.sf-da-toggle-row .ui.toggle.checkbox input:checked ~ .box,
.sf-da-toggle-row .ui.toggle.checkbox input:checked ~ label {
  color: #0b0d12 !important;
}
.sf-da-toggle-row:has(input:checked) {
  background: #fff;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px #eff6ff;
}
.sf-da-toggle-label {
  font-size: 12px;
  font-weight: 600;
  color: #0b0d12;
}
.sf-da-toggle-desc {
  font-size: 11px;
  color: #5b6472;
}
.sf-da-edge-body {
  padding: 0;
}
.sf-da-edge-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px 20px;
  border-bottom: 1px solid #e7e7ec;
}
@media (max-width: 700px) {
  .sf-da-edge-row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 12px 16px;
  }
}
.sf-da-edge-row-last {
  border-bottom: 0;
}
.sf-da-edge-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sf-da-edge-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 6px;
  flex-shrink: 0;
}
.sf-da-edge-icon i.icon {
  margin: 0 !important;
  font-size: 12px;
}
.sf-da-edge-icon-blue {
  background: #eff6ff;
  color: #1d4ed8;
}
.sf-da-edge-icon-amber {
  background: #fffbeb;
  color: #92400e;
}
.sf-da-edge-icon-stone {
  background: #f5f5f4;
  color: #57534e;
}
.sf-da-edge-icon-green {
  background: #ecfdf5;
  color: #065f46;
}
.sf-da-edge-name {
  font-size: 12px;
  font-weight: 600;
  color: #0b0d12;
}
.sf-da-edge-desc {
  font-size: 11px;
  color: #5b6472;
}
.sf-da-edge-controls {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sf-da-edge-controls .sf-da-semui-drop {
  width: 100%;
}
.sda-card {
  background: #ffffff;
  border: 1px solid #e7e7ec;
  border-radius: 10px;
}
.sda-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #0b0d12;
  cursor: pointer;
  text-decoration: none;
}
.sda-btn:hover {
  background: #fafafa;
  border-color: #d4d4da;
}
.sda-btn-primary {
  background: #0b0d12;
  color: #fff;
  border-color: #0b0d12;
}
.sda-btn-primary:hover {
  background: #1a1d24;
}
.sda-btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #5b6472;
}
.sda-btn-ghost:hover {
  background: #f4f4f6;
  color: #0b0d12;
}
.sda-btn-icon {
  padding: 5px 7px;
}
.sda-btn-icon i.icon {
  margin: 0 !important;
}
.sda-loading-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
}
.sda-page-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid #e7e7ec;
  padding: 16px 24px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.sda-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5b6472;
  margin-bottom: 4px;
}
.sda-bc-link {
  color: #5b6472;
  text-decoration: none;
}
.sda-bc-link:hover {
  color: #0b0d12;
}
.sda-bc-sep {
  color: #d4d4da;
}
.sda-bc-active {
  color: #0b0d12;
  font-weight: 500;
}
.sda-page-title {
  font-size: 22px;
  font-weight: 800;
  color: #0b0d12;
  margin: 0 0 2px;
  line-height: 1.2;
}
.sda-page-sub {
  font-size: 13px;
  color: #5b6472;
  margin: 0;
}
.sda-page-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.sda-kpi-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  padding: 12px 24px;
}
@media (max-width: 900px) {
  .sda-kpi-strip {
    grid-template-columns: repeat(2, 1fr);
  }
}
.sda-kpi-card {
  background: #ffffff;
  border: 1px solid #e7e7ec;
  border-radius: 10px;
  padding: 12px 14px;
}
.sda-kpi-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
}
.sda-kpi-value {
  font-size: 20px;
  font-weight: 800;
  margin-top: 4px;
  color: #0b0d12;
  line-height: 1.1;
}
.sda-kpi-value-text {
  font-size: 15px;
  font-weight: 700;
}
.sda-kpi-sub {
  font-size: 11px;
  color: #5b6472;
  margin-top: 2px;
}
.sda-kpi-pos {
  color: #0a8a4f;
}
.sda-kpi-muted {
  color: #5b6472;
}
.num {
  font-variant-numeric: tabular-nums;
}
.sda-dot {
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
}
.sda-dot-sm {
  width: 7px;
  height: 7px;
  margin-top: 2px;
}
.sda-dot-green {
  background: #10b981;
}
.sda-dot-muted {
  background: #a8a29e;
}
.sda-dot-blue {
  background: #2563eb;
}
.sda-chip {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #e7e7ec;
  background: #fff;
}
.sda-chip-blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.sda-lbl-em {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1d4ed8;
  font-weight: 600;
}
.sda-apex {
  margin: 0 24px 12px;
  display: grid;
  grid-template-columns: 7fr 5fr;
  overflow: hidden;
}
@media (max-width: 1024px) {
  .sda-apex {
    grid-template-columns: 1fr;
  }
}
.sda-apex-left {
  padding: 24px;
}
.sda-apex-right {
  padding: 24px;
  border-left: 1px solid #e7e7ec;
  background: #fcfcfd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sda-apex-headline {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.025em;
  margin: 0 0 12px;
  color: #0b0d12;
}
.sda-apex-headline-accent {
  color: #1d4ed8;
}
.sda-apex-pitch {
  font-size: 13px;
  color: #5b6472;
  max-width: 500px;
  line-height: 1.625;
  margin: 0 0 14px;
}
.sda-apex-pitch-em {
  color: #0b0d12;
  font-weight: 600;
}
.sda-apex-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 14px;
  border-top: 1px solid #e7e7ec;
  margin-bottom: 14px;
}
.sda-apex-stat-val {
  font-size: 19px;
  font-weight: 700;
  color: #1d4ed8;
}
.sda-apex-stat-val-plain {
  font-size: 19px;
  font-weight: 700;
  color: #0b0d12;
}
.sda-apex-cta {
  flex-shrink: 0;
}
.sda-apex-ai-chip {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
  font-size: 11px;
}
.sda-apex-slide-card {
  padding: 14px;
}
.sda-apex-slide-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.sda-apex-slide-tag {
  font-size: 10px;
}
.sda-apex-node {
  border: 1px solid #e7e7ec;
  border-radius: 8px;
  padding: 9px 12px;
}
.sda-apex-node-accent {
  border: none;
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #2563eb;
}
.sda-apex-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sda-apex-node-title {
  font-size: 11px;
  font-weight: 600;
  color: #0b0d12;
}
.sda-apex-node-title-accent {
  font-weight: 700;
  color: #1d4ed8;
}
.sda-apex-node-val {
  font-size: 12px;
  font-weight: 700;
}
.sda-apex-node-val-neg {
  color: #cf2c2c;
}
.sda-apex-node-val-amber {
  color: #b45309;
}
.sda-apex-node-val-muted {
  color: #8a93a3;
}
.sda-apex-node-val-pos {
  font-size: 13px;
  font-weight: 800;
  color: #0a8a4f;
}
.sda-apex-node-sub {
  font-size: 10px;
  color: #5b6472;
  margin-top: 2px;
}
.sda-apex-node-sub-accent {
  color: #1d4ed8;
}
.sda-apex-arrow {
  text-align: center;
  padding: 4px 0;
  color: #8a93a3;
}
.sda-apex-arrow i.icon {
  margin: 0 !important;
  font-size: 12px;
}
.sda-apex-bars {
  margin-top: 12px;
}
.sda-apex-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.sda-apex-bar-row:last-of-type {
  margin-bottom: 0;
}
.sda-apex-bar-lbl {
  font-size: 10px;
  width: 48px;
  flex-shrink: 0;
  color: #5b6472;
}
.sda-apex-bar-lbl-apex {
  font-weight: 700;
  color: #1d4ed8;
}
.sda-apex-bar-track {
  flex: 1;
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
  background: #e7e7ec;
}
.sda-apex-bar-fill {
  height: 100%;
}
.sda-apex-bar-fill-reactive {
  background: #94a3b8;
}
.sda-apex-bar-fill-apex {
  background: #2563eb;
}
.sda-apex-bar-val {
  font-size: 11px;
  flex-shrink: 0;
}
.sda-apex-bar-val-muted {
  color: #5b6472;
}
.sda-apex-bar-val-pos {
  font-weight: 700;
  color: #0a8a4f;
}
.sda-apex-bar-note {
  font-size: 10px;
  margin-top: 6px;
  text-align: right;
  color: #5b6472;
}
.sda-apex-note-pos {
  color: #0a8a4f;
}
.sda-explainer {
  margin: 0 24px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
@media (max-width: 900px) {
  .sda-explainer {
    grid-template-columns: 1fr;
  }
}
.sda-explainer-left {
  padding: 24px;
}
.sda-explainer-right {
  padding: 24px;
  border-left: 1px solid #e7e7ec;
  background: #fcfcfd;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (max-width: 900px) {
  .sda-desktop-only {
    display: none !important;
  }
}
.sda-explainer-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
}
.sda-explainer-headline {
  font-size: 22px;
  font-weight: 800;
  line-height: 1.15;
  margin: 0 0 10px;
  letter-spacing: -0.01em;
}
.sda-text-accent {
  color: #1d4ed8;
}
.sda-explainer-body {
  font-size: 13px;
  color: #5b6472;
  max-width: 500px;
  line-height: 1.55;
  margin: 0 0 14px;
}
.sda-feature-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin-bottom: 18px;
}
.sda-feature-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.sda-feature-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #eff6ff;
  color: #1d4ed8;
}
.sda-feature-icon i.icon {
  margin: 0 !important;
  font-size: 13px;
}
.sda-feature-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.sda-feature-sub {
  font-size: 12px;
  color: #5b6472;
  line-height: 1.3;
}
.sda-proof-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 40px;
  padding-top: 14px;
  border-top: 1px solid #e7e7ec;
  margin-bottom: 14px;
}
.sda-proof-val {
  font-size: 18px;
  font-weight: 800;
  color: #1d4ed8;
}
.sda-explainer-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.sda-explainer-note {
  font-size: 11px;
  color: #5b6472;
}
.sda-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.sda-carousel-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}
.sda-ld-view {
  overflow: hidden;
}
.sda-ld-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.45, 0.05, 0.2, 1);
}
.sda-ld-slide {
  min-width: 100%;
}
.sda-ld-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.sda-ld-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d4d4da;
  transition: .25s;
  cursor: pointer;
}
.sda-ld-dot-on {
  background: #2563eb;
  width: 16px;
}
.sda-scroll-root {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  background: #f6f6f7;
}
.sda-layout {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 0 24px 32px;
}
.sda-left-rail {
  width: 380px;
  flex-shrink: 0;
  position: sticky;
  top: 108px;
}
.sda-list-card {
  overflow: hidden;
}
.sda-list-search-bar {
  padding: 8px;
  border-bottom: 1px solid #e7e7ec;
}
.sda-search-field {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border: 1px solid #e7e7ec;
  border-radius: 7px;
  background: #fcfcfd;
}
.sda-search-field i.sda-search-icon {
  color: #5b6472;
  font-size: 11px;
  margin: 0 !important;
}
.sda-search-input {
  border: 0;
  background: transparent;
  font-size: 12px;
  color: #0b0d12;
  flex: 1;
  outline: none;
  min-width: 0;
}
.sda-search-input::placeholder {
  color: #8a93a3;
}
.sda-list-body {
  padding: 6px;
  position: relative;
  overflow: visible;
}
.sda-list-scroll {
  max-height: 60vh;
  overflow-y: auto;
  overflow-x: visible;
}
.sda-sli {
  position: relative;
  padding: 9px 11px;
  border-radius: 8px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: .12s;
  margin-bottom: 2px;
}
.sda-sli:hover {
  background: #fafafb;
}
.sda-sli-sel {
  background: #eff6ff !important;
  border-color: #bfdbfe !important;
}
.sda-sli-inner {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.sda-sli-content {
  flex: 1;
  min-width: 0;
}
.sda-sli-name {
  display: flex;
  align-items: flex-start;
  gap: 5px;
}
.sda-sli-name-text {
  font-size: 12px;
  font-weight: 600;
  color: #0b0d12;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-width: 0;
}
.sda-sli-sub {
  font-size: 10.5px;
  color: #5b6472;
  margin-top: 2px;
}
.sda-kebab {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  display: grid;
  place-items: center;
  color: #8a93a3;
  background: transparent;
  border: 0;
  cursor: pointer;
  flex-shrink: 0;
}
.sda-kebab:hover {
  background: #ececf0;
  color: #0b0d12;
}
.sda-kebab i.icon {
  margin: 0 !important;
  font-size: 12px;
}
.sda-row-menu {
  display: none;
  position: absolute;
  right: 8px;
  top: 32px;
  z-index: 60;
  min-width: 180px;
  background: #fff;
  border: 1px solid #e7e7ec;
  border-radius: 8px;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13), 0 2px 6px rgba(0, 0, 0, 0.06);
  padding: 4px;
}
.sda-row-menu-open {
  display: block;
}
.sda-mi {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 9px;
  border-radius: 6px;
  font-size: 12px;
  color: #0b0d12;
  cursor: pointer;
}
.sda-mi i.icon {
  margin: 0 !important;
  font-size: 12px;
}
.sda-mi:hover {
  background: #f4f4f6;
}
.sda-mi-danger {
  color: #cf2c2c;
}
.sda-mi-danger:hover {
  background: #fef2f2;
}
.sda-mi-hidden {
  display: none !important;
}
.sda-center {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.sda-empty-state {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-height: 420px;
  padding: 24px;
  color: #5b6472;
}
.sda-empty-state h3 {
  font-size: 16px;
  font-weight: 700;
  color: #0b0d12;
  margin: 12px 0 6px;
}
.sda-empty-state p {
  font-size: 13px;
  margin: 0;
}
.sda-center-loader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: sdaCenterLoaderFadeIn 0.18s ease-out both;
}
@keyframes sdaCenterLoaderFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sda-center-spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--accent, #2563eb);
  border-radius: 50%;
  animation: sdaCenterSpinnerRotate 0.7s linear infinite;
  flex-shrink: 0;
}
@keyframes sdaCenterSpinnerRotate {
  to {
    transform: rotate(360deg);
  }
}
.sda-center-loader-text {
  margin-top: 12px;
  font-size: 13px;
  color: #5b6472;
  font-weight: 500;
}
.sda-save-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  animation: sdaSaveOverlayFadeIn 0.15s ease-out both;
}
@keyframes sdaSaveOverlayFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.sda-save-overlay-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.sda-save-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid rgba(0, 0, 0, 0.08);
  border-top-color: var(--accent, #2563eb);
  border-radius: 50%;
  animation: sdaCenterSpinnerRotate 0.7s linear infinite;
  flex-shrink: 0;
}
.sda-save-overlay-text {
  font-size: 14px;
  font-weight: 500;
  color: #5b6472;
}
.sda-right-rail {
  width: 208px;
  flex-shrink: 0;
  position: sticky;
  top: 108px;
  align-self: flex-start;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 1180px) {
  .sda-right-rail {
    display: none;
  }
}
.sda-anchor-card {
  padding: 10px;
}
.sda-recap-card {
  padding: 12px;
}
.sda-anchor {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 7px 9px;
  border-radius: 7px;
  color: #5b6472;
  text-decoration: none;
  font-size: 12px;
  transition: .12s;
}
.sda-anchor:hover {
  background: #f4f4f6;
  color: #0b0d12;
}
.sda-anchor-on {
  background: #eff6ff;
  color: #1d4ed8;
  font-weight: 600;
}
.sda-an-no {
  font-size: 10px;
  opacity: .7;
  font-variant-numeric: tabular-nums;
  font-family: 'Courier New', Courier, monospace;
}
.sda-anchor-on .sda-an-no {
  opacity: 1;
}
.sda-recap-text {
  font-size: 11.5px;
  color: #5b6472;
  line-height: 1.5;
  margin: 0;
}
.sda-details-overlay {
  position: fixed;
  inset: 0;
  background: rgba(11, 13, 18, 0.34);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  z-index: 200;
}
.sda-details-overlay-open {
  opacity: 1;
  visibility: visible;
}
.sda-details-panel {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: 480px;
  max-width: 92vw;
  background: #ffffff;
  border-left: 1px solid #e7e7ec;
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.14);
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 201;
  display: flex;
  flex-direction: column;
}
.sda-details-panel-open {
  transform: translateX(0);
}
.sda-details-head {
  padding: 0 16px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e7e7ec;
  background: #fcfcfd;
  flex-shrink: 0;
}
.sda-details-head-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: #5b6472;
  min-width: 0;
}
.sda-details-name {
  color: #0b0d12;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.sda-details-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.sda-det-sec {
  border: 1px solid #e7e7ec;
  border-left-width: 3px;
  border-radius: 7px;
  padding: 10px 12px;
  background: #fff;
}
.sda-det-sec-red {
  border-left-color: #cf2c2c;
}
.sda-det-sec-blue {
  border-left-color: #2563eb;
}
.sda-det-sec-orange {
  border-left-color: #b45309;
}
.sda-det-sec-yellow {
  border-left-color: #b8860b;
}
.sda-det-sec-purple {
  border-left-color: #7c3aed;
}
.sda-det-sec-green {
  border-left-color: #0a8a4f;
}
.sda-det-sec-teal {
  border-left-color: #0891b2;
}
.sda-det-h {
  font-size: 12.5px;
  font-weight: 700;
  color: #0b0d12;
  margin-bottom: 2px;
}
.sda-det-p {
  font-size: 12px;
  color: #5b6472;
  line-height: 1.45;
  margin: 0;
}
.sda-details-foot {
  padding: 12px 16px;
  border-top: 1px solid #e7e7ec;
  background: #fcfcfd;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.sda-default-badge {
  display: inline-block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 1px 6px;
  border-radius: 10px;
  background: #f0f0f3;
  color: #8a93a3;
  border: 1px solid #e0e0e6;
  vertical-align: middle;
  flex-shrink: 0;
  line-height: 1.6;
}
.sf-da-readonly-banner {
  display: flex;
  align-items: center;
  padding: 9px 14px;
  margin-bottom: 12px;
  border-radius: 7px;
  background: #fffbeb;
  border: 1px solid #fcd34d;
  font-size: 12px;
  color: #92400e;
  font-weight: 500;
}
.sf-da-readonly-banner ~ form.ui.form .sf-da-ctrl,
.sf-da-readonly-banner ~ form.ui.form input[type="text"],
.sf-da-readonly-banner ~ form.ui.form input[type="Number"] {
  pointer-events: none !important;
  opacity: 0.7;
}
.sf-da-readonly-banner ~ form.ui.form .ui.dropdown,
.sf-da-readonly-banner ~ form.ui.form .ui.checkbox {
  pointer-events: none !important;
  opacity: 0.7;
}
#sdaDetailsPanel[data-sda-default="true"] .sda-details-foot a.sda-btn-primary {
  display: none !important;
}
body.dark-mode .sda-scroll-root {
  background: #131313 !important;
}
body.dark-mode .sda-page-header {
  background: #262626 !important;
  border-bottom-color: #3e3d3d !important;
}
body.dark-mode .sda-page-title {
  color: #ffffff !important;
}
body.dark-mode .sda-page-sub {
  color: #a9b0bb !important;
}
body.dark-mode .sda-bc-link {
  color: #a9b0bb !important;
}
body.dark-mode .sda-bc-link:hover {
  color: #ffffff !important;
}
body.dark-mode .sda-bc-sep {
  color: #4a4a4a !important;
}
body.dark-mode .sda-bc-active {
  color: #ffffff !important;
}
body.dark-mode .sda-btn {
  background: #262626 !important;
  border-color: #3e3d3d !important;
  color: #ffffff !important;
}
body.dark-mode .sda-btn:hover {
  background: #303030 !important;
  border-color: #4a4a4a !important;
}
body.dark-mode .sda-btn-primary {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #fff !important;
}
body.dark-mode .sda-btn-primary:hover {
  background: #60a5fa !important;
  border-color: #60a5fa !important;
}
body.dark-mode .sda-btn-ghost {
  background: transparent !important;
  border-color: transparent !important;
  color: #a9b0bb !important;
}
body.dark-mode .sda-btn-ghost:hover {
  background: #303030 !important;
  color: #ffffff !important;
}
body.dark-mode .sda-kpi-card {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-kpi-label {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-kpi-value {
  color: #ffffff !important;
}
body.dark-mode .sda-kpi-sub {
  color: #a9b0bb !important;
}
body.dark-mode .sda-kpi-pos {
  color: #34d399 !important;
}
body.dark-mode .sda-kpi-muted {
  color: #a9b0bb !important;
}
body.dark-mode .sda-card {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-explainer-right {
  background: #0c0c0c !important;
  border-left-color: #3e3d3d !important;
}
body.dark-mode .sda-explainer-headline {
  color: #ffffff !important;
}
body.dark-mode .sda-explainer-body {
  color: #a9b0bb !important;
}
body.dark-mode .sda-text-accent {
  color: #60a5fa !important;
}
body.dark-mode .sda-lbl-em {
  color: #60a5fa !important;
}
body.dark-mode .sda-explainer-note {
  color: #a9b0bb !important;
}
body.dark-mode .sda-feature-icon {
  background: rgba(59, 130, 246, 0.16) !important;
  color: #60a5fa !important;
}
body.dark-mode .sda-feature-title {
  color: #ffffff !important;
}
body.dark-mode .sda-feature-sub {
  color: #a9b0bb !important;
}
body.dark-mode .sda-proof-stats {
  border-top-color: #3e3d3d !important;
}
body.dark-mode .sda-proof-val {
  color: #60a5fa !important;
}
body.dark-mode .sda-apex {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-apex-right {
  background: #0c0c0c !important;
  border-left-color: #3e3d3d !important;
}
body.dark-mode .sda-apex-headline {
  color: #ffffff !important;
}
body.dark-mode .sda-apex-headline-accent {
  color: #60a5fa !important;
}
body.dark-mode .sda-apex-pitch {
  color: #a9b0bb !important;
}
body.dark-mode .sda-apex-pitch-em {
  color: #ffffff !important;
}
body.dark-mode .sda-apex-stats {
  border-top-color: #3e3d3d !important;
}
body.dark-mode .sda-apex-stat-val {
  color: #60a5fa !important;
}
body.dark-mode .sda-apex-stat-val-plain {
  color: #ffffff !important;
}
body.dark-mode .sda-apex-ai-chip {
  background: rgba(59, 130, 246, 0.16) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  color: #60a5fa !important;
}
body.dark-mode .sda-apex-slide-card {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-apex-node {
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-apex-node-accent {
  background: rgba(59, 130, 246, 0.16) !important;
  box-shadow: inset 0 0 0 1px #3b82f6 !important;
}
body.dark-mode .sda-apex-node-title {
  color: #ffffff !important;
}
body.dark-mode .sda-apex-node-title-accent {
  color: #60a5fa !important;
}
body.dark-mode .sda-apex-node-val-neg {
  color: #f87171 !important;
}
body.dark-mode .sda-apex-node-val-amber {
  color: #fbbf24 !important;
}
body.dark-mode .sda-apex-node-val-muted {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-apex-node-val-pos {
  color: #34d399 !important;
}
body.dark-mode .sda-apex-node-sub {
  color: #a9b0bb !important;
}
body.dark-mode .sda-apex-node-sub-accent {
  color: #60a5fa !important;
}
body.dark-mode .sda-apex-arrow {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-apex-bar-lbl {
  color: #a9b0bb !important;
}
body.dark-mode .sda-apex-bar-lbl-apex {
  color: #60a5fa !important;
}
body.dark-mode .sda-apex-bar-track {
  background: #3e3d3d !important;
}
body.dark-mode .sda-apex-bar-val-muted {
  color: #a9b0bb !important;
}
body.dark-mode .sda-apex-bar-val-pos {
  color: #34d399 !important;
}
body.dark-mode .sda-apex-bar-note {
  color: #a9b0bb !important;
}
body.dark-mode .sda-apex-note-pos {
  color: #34d399 !important;
}
body.dark-mode .sda-chip {
  background: #303030 !important;
  border-color: #3e3d3d !important;
  color: #a9b0bb !important;
}
body.dark-mode .sda-chip-blue {
  background: rgba(59, 130, 246, 0.16) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
  color: #60a5fa !important;
}
body.dark-mode .sda-ld-dot {
  background: #4a4a4a !important;
}
body.dark-mode .sda-ld-dot-on {
  background: #3b82f6 !important;
}
body.dark-mode .sda-list-card {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-list-search-bar {
  border-bottom-color: #3e3d3d !important;
}
body.dark-mode .sda-search-field {
  background: #131313 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-search-field i.sda-search-icon {
  color: #a9b0bb !important;
}
body.dark-mode .sda-search-input {
  color: #ffffff !important;
  background: transparent !important;
}
body.dark-mode .sda-search-input::placeholder {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-sli {
  color: #ffffff !important;
}
body.dark-mode .sda-sli:hover {
  background: #303030 !important;
}
body.dark-mode .sda-sli-sel {
  background: rgba(59, 130, 246, 0.16) !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
}
body.dark-mode .sda-sli-name-text {
  color: #ffffff !important;
}
body.dark-mode .sda-sli-sub {
  color: #a9b0bb !important;
}
body.dark-mode .sda-default-badge {
  background: #303030 !important;
  color: #9aa3b2 !important;
  border-color: #4a4a4a !important;
}
body.dark-mode .sda-kebab {
  color: #9aa3b2 !important;
  background: transparent !important;
}
body.dark-mode .sda-kebab:hover {
  background: #303030 !important;
  color: #ffffff !important;
}
body.dark-mode .sda-row-menu {
  background: #262626 !important;
  border-color: #3e3d3d !important;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.25) !important;
}
body.dark-mode .sda-mi {
  color: #ffffff !important;
}
body.dark-mode .sda-mi:hover {
  background: #303030 !important;
}
body.dark-mode .sda-mi-danger {
  color: #f87171 !important;
}
body.dark-mode .sda-mi-danger:hover {
  background: rgba(248, 113, 113, 0.12) !important;
}
body.dark-mode .sda-empty-state {
  color: #a9b0bb !important;
}
body.dark-mode .sda-empty-state h3 {
  color: #ffffff !important;
}
body.dark-mode .sda-empty-state p {
  color: #a9b0bb !important;
}
body.dark-mode .sda-empty-state i.eye.icon {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-anchor-card,
body.dark-mode .sda-recap-card {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-anchor {
  color: #a9b0bb !important;
}
body.dark-mode .sda-anchor:hover {
  background: #303030 !important;
  color: #ffffff !important;
}
body.dark-mode .sda-anchor-on {
  background: rgba(59, 130, 246, 0.16) !important;
  color: #60a5fa !important;
}
body.dark-mode .sda-recap-text {
  color: #a9b0bb !important;
}
body.dark-mode .sda-recap-text strong {
  color: #ffffff !important;
}
body.dark-mode .sda-loading-overlay {
  background: rgba(19, 19, 19, 0.88) !important;
}
body.dark-mode .sda-loading-overlay div[style*="color:#5b6472"] {
  color: #a9b0bb !important;
}
body.dark-mode .sda-center-loader {
  background: rgba(10, 10, 14, 0.82) !important;
}
body.dark-mode .sda-center-spinner {
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-top-color: var(--accent, #3b82f6) !important;
}
body.dark-mode .sda-center-loader-text {
  color: #a9b0bb !important;
}
body.dark-mode .sda-save-overlay {
  background: rgba(10, 10, 14, 0.72) !important;
}
body.dark-mode .sda-save-spinner {
  border-color: rgba(255, 255, 255, 0.1) !important;
  border-top-color: var(--accent, #3b82f6) !important;
}
body.dark-mode .sda-save-overlay-text {
  color: #a9b0bb !important;
}
body.dark-mode .sda-details-overlay {
  background: rgba(0, 0, 0, 0.55) !important;
}
body.dark-mode .sda-details-panel {
  background: #262626 !important;
  border-left-color: #3e3d3d !important;
}
body.dark-mode .sda-details-head {
  background: #0c0c0c !important;
  border-bottom-color: #3e3d3d !important;
}
body.dark-mode .sda-details-head-title {
  color: #a9b0bb !important;
}
body.dark-mode .sda-details-name {
  color: #ffffff !important;
}
body.dark-mode .sda-det-sec {
  background: #303030 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sda-det-sec-red {
  border-left-color: #f87171 !important;
}
body.dark-mode .sda-det-sec-blue {
  border-left-color: #3b82f6 !important;
}
body.dark-mode .sda-det-sec-orange {
  border-left-color: #fb923c !important;
}
body.dark-mode .sda-det-sec-yellow {
  border-left-color: #fbbf24 !important;
}
body.dark-mode .sda-det-sec-purple {
  border-left-color: #a78bfa !important;
}
body.dark-mode .sda-det-sec-green {
  border-left-color: #34d399 !important;
}
body.dark-mode .sda-det-sec-teal {
  border-left-color: #22d3ee !important;
}
body.dark-mode .sda-det-h {
  color: #ffffff !important;
}
body.dark-mode .sda-det-p {
  color: #a9b0bb !important;
}
body.dark-mode .sda-details-body .sda-kpi-label {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-details-foot {
  background: #0c0c0c !important;
  border-top-color: #3e3d3d !important;
}
body.dark-mode .sf-da-card {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sf-da-proto-header {
  border-bottom-color: #3e3d3d !important;
}
body.dark-mode .sf-da-sec-no,
body.dark-mode .sf-da-sec-num {
  background: rgba(59, 130, 246, 0.16) !important;
  color: #60a5fa !important;
}
body.dark-mode .sf-da-proto-title,
body.dark-mode .sf-da-sec-title {
  color: #ffffff !important;
}
body.dark-mode .sf-da-proto-sub,
body.dark-mode .sf-da-sec-sub {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-proto-required {
  color: #f87171 !important;
}
body.dark-mode .sf-da-sec-badge {
  color: #9aa3b2 !important;
}
body.dark-mode .sf-da-frow {
  border-bottom-color: #3e3d3d !important;
}
body.dark-mode .sf-da-frow-default {
  background: #0c0c0c !important;
}
body.dark-mode .sf-da-frow-label {
  color: #ffffff !important;
}
body.dark-mode .sf-da-frow-help {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-rule-chip {
  background: rgba(59, 130, 246, 0.16) !important;
  color: #60a5fa !important;
  border-color: rgba(59, 130, 246, 0.35) !important;
}
body.dark-mode .sf-da-help {
  background: #4a4a4a !important;
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-help:hover {
  background: #3b82f6 !important;
  color: #fff !important;
}
body.dark-mode .sf-da-muted {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-btn {
  background: #262626 !important;
  border-color: #3e3d3d !important;
  color: #ffffff !important;
}
body.dark-mode .sf-da-btn:hover {
  background: #303030 !important;
  border-color: #4a4a4a !important;
}
body.dark-mode .sf-da-btn-primary {
  background: #3b82f6 !important;
  border-color: #3b82f6 !important;
  color: #fff !important;
}
body.dark-mode .sf-da-btn-primary:hover {
  background: #60a5fa !important;
  border-color: #60a5fa !important;
}
body.dark-mode .sf-da-btn-ghost {
  background: transparent !important;
  border-color: transparent !important;
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-btn-ghost:hover {
  background: #303030 !important;
  color: #ffffff !important;
}
body.dark-mode .sf-da-btn-danger {
  color: #f87171 !important;
}
body.dark-mode .sf-da-save-note {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-ctrl {
  background: #131313 !important;
  border-color: #3e3d3d !important;
  color: #ffffff !important;
}
body.dark-mode .sf-da-ctrl:hover {
  border-color: #4a4a4a !important;
  background: #131313 !important;
}
body.dark-mode .sf-da-ctrl:focus {
  border-color: #3b82f6 !important;
  background: #131313 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16) !important;
}
body.dark-mode .sf-da-input-unit {
  background: #131313 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sf-da-input-unit:focus-within {
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16) !important;
}
body.dark-mode .sf-da-unit-badge {
  color: #a9b0bb !important;
  background: #131313 !important;
  border-left-color: #3e3d3d !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown {
  background: #131313 !important;
  border-color: #3e3d3d !important;
  color: #ffffff !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown:hover,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown:hover {
  border-color: #4a4a4a !important;
  background: #131313 !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown.active,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown.active,
body.dark-mode .sf-da-semui-drop.ui.dropdown:focus-within,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown:focus-within {
  border-color: #3b82f6 !important;
  background: #131313 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16) !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown .text,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .text,
body.dark-mode .sf-da-semui-drop.ui.dropdown .default.text,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .default.text {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown > .text:not(.default),
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown > .text:not(.default) {
  color: #ffffff !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown > .dropdown.icon,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown > .dropdown.icon {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown .menu,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .menu {
  background: #262626 !important;
  border-color: #3e3d3d !important;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.45) !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown .menu > .item,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .menu > .item {
  color: #ffffff !important;
  border-top-color: #3e3d3d !important;
}
body.dark-mode .sf-da-semui-drop.ui.dropdown .menu > .item:hover,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .menu > .item:hover,
body.dark-mode .sf-da-semui-drop.ui.dropdown .menu > .item.active,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .menu > .item.active,
body.dark-mode .sf-da-semui-drop.ui.dropdown .menu > .item.selected,
body.dark-mode .sf-da-semui-drop.ui.selection.dropdown .menu > .item.selected {
  background: #303030 !important;
  color: #ffffff !important;
}
body.dark-mode .sf-da-unit-drop.ui.dropdown.label {
  background: #131313 !important;
  border-color: #3e3d3d !important;
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-unit-drop.ui.dropdown.label .menu {
  background: #262626 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sf-da-unit-drop.ui.dropdown.label .menu > .item {
  color: #ffffff !important;
}
body.dark-mode .sf-da-unit-drop.ui.dropdown.label .menu > .item:hover,
body.dark-mode .sf-da-unit-drop.ui.dropdown.label .menu > .item.selected {
  background: #303030 !important;
}
body.dark-mode .sf-da-toggle-row {
  background: #131313 !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sf-da-toggle-row:has(input:checked) {
  background: rgba(59, 130, 246, 0.08) !important;
  border-color: #3b82f6 !important;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.16) !important;
}
body.dark-mode .sf-da-toggle-label {
  color: #ffffff !important;
}
body.dark-mode .sf-da-toggle-desc {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-toggle-row .ui.toggle.checkbox input:checked ~ .box,
body.dark-mode .sf-da-toggle-row .ui.toggle.checkbox input:checked ~ label,
body.dark-mode .sf-da-frow-label .ui.toggle.checkbox input:checked ~ .box,
body.dark-mode .sf-da-frow-label .ui.toggle.checkbox input:checked ~ label {
  color: #ffffff !important;
}
body.dark-mode .sf-da-edge-icon-blue {
  background: rgba(59, 130, 246, 0.16) !important;
  color: #60a5fa !important;
}
body.dark-mode .sf-da-edge-icon-amber {
  background: rgba(251, 191, 36, 0.12) !important;
  color: #fbbf24 !important;
}
body.dark-mode .sf-da-edge-icon-stone {
  background: #303030 !important;
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-edge-icon-green {
  background: rgba(52, 211, 153, 0.12) !important;
  color: #34d399 !important;
}
body.dark-mode .sf-da-edge-name {
  color: #ffffff !important;
}
body.dark-mode .sf-da-edge-desc {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-readonly-banner {
  background: rgba(251, 191, 36, 0.1) !important;
  border-color: rgba(251, 191, 36, 0.35) !important;
  color: #fbbf24 !important;
}
body.dark-mode .sf-da-semui-drop .ui.label {
  background: #303030 !important;
  color: #ffffff !important;
  border-color: #3e3d3d !important;
}
body.dark-mode .sf-da-semui-drop .ui.label .delete.icon {
  color: #a9b0bb !important;
}
body.dark-mode .sf-da-semui-drop .ui.label .delete.icon:hover {
  color: #f87171 !important;
}
body.dark-mode .sf-da-lbl {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-ld-slide [style*="color:#0b0d12"] {
  color: #ffffff !important;
}
body.dark-mode .sda-ld-slide [style*="color:#5b6472"] {
  color: #a9b0bb !important;
}
body.dark-mode .sda-ld-slide [style*="color:#8a93a3"] {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-ld-slide [style*="color:#1d4ed8"] {
  color: #60a5fa !important;
}
body.dark-mode .sda-ld-slide [style*="color:#0a8a4f"] {
  color: #34d399 !important;
}
body.dark-mode .sda-ld-slide [style*="color:#cf2c2c"] {
  color: #f87171 !important;
}
body.dark-mode .sda-ld-slide [style*="color:#b45309"] {
  color: #fbbf24 !important;
}
:root {
  --muted: #5b6472;
  --text: #0b0d12;
}
.bg-white {
  background-color: #fff;
}
.border-b {
  border-bottom-width: 1px;
  border-bottom-style: solid;
}
.hair {
  border-color: #e7e7ec;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
@media (min-width: 768px) {
  .md\:px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
.max-w-\[1500px\] {
  max-width: 1500px;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.flex {
  display: flex;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.gap-4 {
  gap: 1rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-0\.5 {
  margin-top: 0.125rem;
}
.text-\[12px\] {
  font-size: 12px;
}
.text-\[13px\] {
  font-size: 13px;
}
.text-\[22px\] {
  font-size: 22px;
}
.text-\[color\:var\(--muted\)\] {
  color: var(--muted);
}
.text-\[color\:var\(--text\)\] {
  color: var(--text);
}
.hover\:text-\[color\:var\(--text\)\]:hover {
  color: var(--text);
}
.font-medium {
  font-weight: 500;
}
.font-bold {
  font-weight: 700;
}
.leading-tight {
  line-height: 1.25;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #0b0d12;
  cursor: pointer;
  line-height: 1.4;
  text-decoration: none;
}
.btn svg {
  vertical-align: middle;
  display: inline-block;
}
.btn:hover {
  background: #fafafa;
  border-color: #d4d4da;
}
.btn-primary {
  background: #0b0d12;
  color: #fff;
  border-color: #0b0d12;
}
.btn-primary:hover {
  background: #1a1d24;
  border-color: #1a1d24;
}
body.dark-mode {
  --muted: #a9b0bb;
  --text: #ffffff;
}
body.dark-mode .btn {
  background: #262626;
  border-color: #3e3d3d;
  color: #ffffff;
}
body.dark-mode .btn:hover {
  background: #303030;
  border-color: #4a4a4a;
}
body.dark-mode .btn-primary {
  background: #ffffff;
  color: #0b0d12;
  border-color: #ffffff;
}
body.dark-mode .btn-primary:hover {
  background: #e5e7eb;
  border-color: #e5e7eb;
}
body.dark-mode .bg-white {
  background-color: #262626;
}
body.dark-mode .hair {
  border-color: #3e3d3d;
}
.sda-scroll-root {
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 13px;
  --bg: #f6f6f7;
  --card: #ffffff;
  --border: #e7e7ec;
  --border-strong: #d4d4da;
  --label: #8a93a3;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --accent-strong: #1d4ed8;
  --pos: #0a8a4f;
  --neg: #cf2c2c;
  --warn: #b45309;
  --field: #fcfcfd;
  --ai: #2563eb;
  --ai-soft: #f5f0ff;
}
.sda-scroll-root .num {
  font-family: 'JetBrains Mono', ui-monospace, 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.sda-scroll-root .sda-an-no {
  font-family: 'JetBrains Mono', ui-monospace, 'Courier New', Courier, monospace;
  font-size: 10px;
  opacity: 0.7;
}
.sda-scroll-root .sda-anchor-on .sda-an-no {
  opacity: 1;
}
.sda-scroll-root .sda-lbl-scoped,
.sda-scroll-root .lbl {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--label);
  font-weight: 600;
}
.sda-scroll-root .lbl-em {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-strong);
  font-weight: 600;
}
.sda-scroll-root > .bg-white.border-b {
  position: sticky;
  top: 0;
  z-index: 40;
}
.sda-scroll-root > .bg-white.border-b .max-w-\[1500px\] {
  max-width: none;
}
.sda-scroll-root > .bg-white.border-b .px-4 {
  padding-left: 24px;
  padding-right: 24px;
}
.sda-scroll-root > .bg-white.border-b .md\:px-6 {
  padding-left: 24px;
  padding-right: 24px;
}
.sda-scroll-root .ui.toggle.checkbox {
  min-height: 18px;
}
.sda-scroll-root .ui.toggle.checkbox input ~ .box,
.sda-scroll-root .ui.toggle.checkbox input ~ label {
  padding-left: 40px;
  min-height: 18px;
  line-height: 18px;
  font-size: 0;
}
.sda-scroll-root .ui.toggle.checkbox input ~ .box:before,
.sda-scroll-root .ui.toggle.checkbox input ~ label:before {
  width: 32px;
  height: 18px;
  border-radius: 999px;
  background: #d4d4da;
  box-shadow: none;
  top: 0;
}
.sda-scroll-root .ui.toggle.checkbox input ~ .box:after,
.sda-scroll-root .ui.toggle.checkbox input ~ label:after {
  width: 14px;
  height: 14px;
  top: 2px;
  left: 2px;
  border-radius: 50%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  background: #fff;
}
.sda-scroll-root .ui.toggle.checkbox input:checked ~ .box:before,
.sda-scroll-root .ui.toggle.checkbox input:checked ~ label:before {
  background: #2563eb;
}
.sda-scroll-root .ui.toggle.checkbox input:checked ~ .box:after,
.sda-scroll-root .ui.toggle.checkbox input:checked ~ label:after {
  left: 16px;
}
.sf-da-toggle-row .sda-scroll-root .ui.toggle.checkbox input ~ .box,
.sf-da-toggle-row .sda-scroll-root .ui.toggle.checkbox input ~ label {
  font-size: 12px;
}
body.dark-mode .sda-scroll-root {
  --bg: #131313;
  --card: #262626;
  --border: #3e3d3d;
  --border-strong: #4a4a4a;
  --label: #9aa3b2;
  --accent: #3b82f6;
  --accent-soft: rgba(59, 130, 246, 0.16);
  --accent-strong: #60a5fa;
  --pos: #34d399;
  --neg: #f87171;
  --warn: #fbbf24;
  --field: #131313;
  --ai: #3b82f6;
  --ai-soft: rgba(124, 58, 237, 0.15);
}
body.dark-mode .sda-scroll-root .lbl {
  color: #9aa3b2 !important;
}
body.dark-mode .sda-scroll-root .lbl-em {
  color: #60a5fa !important;
}
body.dark-mode .sda-scroll-root .ui.toggle.checkbox input ~ .box:before,
body.dark-mode .sda-scroll-root .ui.toggle.checkbox input ~ label:before {
  background: #4a4a4a !important;
}
body.dark-mode .sda-scroll-root .ui.toggle.checkbox input:checked ~ .box:before,
body.dark-mode .sda-scroll-root .ui.toggle.checkbox input:checked ~ label:before {
  background: #3b82f6 !important;
}
body.dark-mode .sda-scroll-root > .bg-white.border-b h1 {
  color: var(--text) !important;
}
body.dark-mode .sda-scroll-root > .bg-white.border-b p {
  color: var(--muted) !important;
}
body.dark-mode .sda-scroll-root > .bg-white.border-b a {
  color: var(--muted) !important;
}
body.dark-mode .sda-scroll-root > .bg-white.border-b span {
  color: inherit;
}
.stl-root {
  background: #f6f6f7;
  color: #0b0d12;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 13px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  --bg: #f6f6f7;
  --card: #ffffff;
  --border: #e7e7ec;
  --border-strong: #d4d4da;
  --text: #0b0d12;
  --muted: #5b6472;
  --label: #8a93a3;
  --accent: #2563eb;
  --accent-soft: #eff6ff;
  --accent-strong: #1d4ed8;
  --pos: #0a8a4f;
  --neg: #cf2c2c;
  --warn: #b45309;
  --field: #fcfcfd;
  --ai: #2563eb;
  --ai-soft: #f5f0ff;
}
.stl-root .num {
  font-family: 'JetBrains Mono', ui-monospace, 'Courier New', Courier, monospace;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.01em;
}
.overflow-hidden {
  overflow: hidden;
}
.stl-root .lbl-em {
  display: inline-flex;
  align-items: center;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--accent-strong);
}
.stl-root .chip {
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent-strong);
  background: var(--accent-soft);
  border: 1px solid #bfdbfe;
  border-radius: 9999px;
  padding: .22rem .65rem;
}
.stl-root .btn {
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 600;
  line-height: 1;
  border-radius: 8px;
  padding: .55rem 1.1rem;
  cursor: pointer;
  border: none;
  transition: opacity .15s, transform .1s;
}
.stl-root .btn:hover {
  opacity: .88;
  transform: translateY(-1px);
}
.stl-root .btn:active {
  transform: translateY(0);
}
.stl-root .btn-primary {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.stl-root .btn-primary:hover {
  background: #1a1d24;
}
.stl-root .dtab {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 600;
  color: var(--muted);
  background: transparent;
  border: none;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  padding: .45rem .9rem;
  cursor: pointer;
  transition: color 0.15s, background 0.15s, border-color 0.15s;
}
.stl-root .dtab:hover {
  color: var(--text);
}
.stl-root .dtab.on {
  color: var(--accent-strong);
  border-bottom-color: var(--accent);
  background: var(--accent-soft);
  border-radius: 8px 8px 0 0;
}
.stl-root .dboard-wrap {
  background: var(--field);
}
.stl-root .dboard {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: .75rem;
  align-items: stretch;
  background: rgba(148, 163, 184, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 12px;
  padding: 1.25rem;
  overflow-x: auto;
}
@media (max-width: 700px) {
  .stl-root .dboard {
    grid-template-columns: 1fr;
  }
}
.stl-root .dstep {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  padding: .9rem 1rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(148, 163, 184, 0.12);
  border-radius: 10px;
  min-width: 130px;
}
.stl-root .dstep.out {
  background: var(--accent-soft);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #bfdbfe;
  border-color: transparent;
}
.stl-root .dstep.out .dstep-val {
  color: var(--pos);
}
.stl-root .dstep-lbl {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--muted);
}
.stl-root .dstep-title {
  font-size: .82rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}
.stl-root .dstep-val {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-strong);
  font-variant-numeric: tabular-nums;
}
.stl-root .dstep-desc {
  font-size: .75rem;
  color: var(--muted);
  line-height: 1.5;
  margin-top: .15rem;
}
.stl-root .dconn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--border-strong);
  padding: 0 .1rem;
}
@media (max-width: 700px) {
  .stl-root .dconn {
    transform: rotate(90deg);
  }
}
.stl-root .dbar {
  margin-top: .6rem;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.stl-root .dbar-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  color: var(--muted);
}
.stl-root .dbar-row > span:first-child {
  width: 52px;
  flex-shrink: 0;
}
.stl-root .dbar-track {
  flex: 1;
  height: 6px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.stl-root .dbar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width .6s ease;
}
.stl-root .dbar-fill.react {
  background: #94a3b8;
}
.stl-root .dbar-fill.apex {
  background: var(--accent);
}
.stl-root .dbar-lbl {
  font-size: .72rem;
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  width: 28px;
  text-align: right;
  flex-shrink: 0;
}
.stl-root .dbar-note {
  font-size: .7rem;
  color: var(--accent);
  font-weight: 600;
  margin-top: .15rem;
}
@media (max-width: 600px) {
  .stl-root .d-hide-sm {
    display: none;
  }
}
@keyframes dfadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.stl-root .dfade {
  animation: dfadeIn .35s ease both;
}
body.dark-mode .stl-root .chip {
  background: var(--accent-soft);
  border-color: #1e40af;
  color: var(--accent-strong);
}
body.dark-mode .stl-root .btn-primary {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}
body.dark-mode .stl-root .btn-primary:hover {
  background: #2563eb;
}
body.dark-mode .stl-root .dtab:hover {
  color: var(--text);
}
body.dark-mode .stl-root .dtab.on {
  color: var(--accent-strong);
  border-bottom-color: var(--accent);
  background: var(--accent-soft);
}
body.dark-mode .stl-root .dboard {
  background: rgba(0, 0, 0, 0.18);
  border-color: rgba(255, 255, 255, 0.07);
}
body.dark-mode .stl-root .dstep {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.07);
}
body.dark-mode .stl-root .dstep.out {
  background: var(--accent-soft);
  box-shadow: inset 0 0 0 1px #1e40af;
  border-color: transparent;
}
body.dark-mode .stl-root .dstep.out .dstep-val {
  color: var(--pos);
}
body.dark-mode .stl-root .dboard-wrap {
  background: var(--field);
}
body.dark-mode .stl-root .dbar-track {
  background: rgba(255, 255, 255, 0.08);
}
body.dark-mode .stl-root .dbar-fill.react {
  background: #cbd5e1;
}
body.dark-mode .stl-root .dbar-fill.apex {
  background: var(--accent);
}
.stl-loading-overlay {
  position: fixed;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(246, 246, 247, 0.85);
  z-index: 100;
}
.stl-page-header {
  background: #ffffff;
  border-bottom: 1px solid #e7e7ec;
  position: sticky;
  top: 0;
  z-index: 30;
}
.stl-page-header-inner {
  padding: 16px 24px;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.stl-breadcrumb {
  font-size: 12px;
  color: #5b6472;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stl-bc-link {
  color: #5b6472;
  text-decoration: none;
}
.stl-bc-link:hover {
  color: #0b0d12;
}
.stl-bc-sep {
  color: #d4d4da;
}
.stl-bc-active {
  color: #0b0d12;
  font-weight: 500;
}
.stl-page-title {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 0;
  line-height: 1.2;
}
.stl-page-sub {
  font-size: 13px;
  color: #5b6472;
  margin: 2px 0 0;
}
.stl-page-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stl-body {
  max-width: none;
  margin: 0;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.stl-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #0b0d12;
  cursor: pointer;
  font-family: inherit;
}
.stl-btn:hover {
  background: #fafafa;
  border-color: #d4d4da;
}
.stl-btn-primary {
  background: #0b0d12;
  color: #fff;
  border-color: #0b0d12;
}
.stl-btn-primary:hover {
  background: #1a1d24;
  border-color: #1a1d24;
}
.stl-btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #5b6472;
}
.stl-btn-ghost:hover {
  background: #f4f4f6;
  color: #0b0d12;
}
.stl-btn-icon {
  padding: 6px;
}
.stl-btn-danger {
  color: #cf2c2c !important;
}
.stl-card {
  background: #ffffff;
  border: 1px solid #e7e7ec;
  border-radius: 10px;
}
.stl-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #e7e7ec;
  background: #fff;
}
.stl-chip-blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.stl-chip-muted {
  background: #f4f4f6;
  border-color: transparent;
  color: #5b6472;
}
.stl-chip-active {
  background: #f0fdf4;
  color: #15803d;
}
.stl-chip-idle {
  background: #f5f5f7;
  color: #5b6472;
}
.stl-chip-ready {
  background: #eff6ff;
  color: #1d4ed8;
  border-color: #bfdbfe;
}
.stl-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.stl-dot-blue {
  background: #2563eb;
}
.stl-dot-green {
  background: #22c55e;
}
.stl-dot-muted {
  background: #a8a29e;
}
.stl-dot-pulse {
  position: relative;
}
.stl-dot-pulse::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: currentColor;
  opacity: .3;
  animation: stlPulse 2s infinite;
}
@keyframes stlPulse {
  0% {
    transform: scale(0.8);
    opacity: .5;
  }
  100% {
    transform: scale(2);
    opacity: 0;
  }
}
.stl-stat-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
}
.stl-lbl-em {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #1d4ed8;
  font-weight: 600;
}
.stl-muted-text {
  color: #5b6472;
}
.stl-muted-dash {
  color: #8a93a3;
}
.stl-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
@media (min-width: 720px) {
  .stl-stats-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.stl-stat-card {
  background: #ffffff;
  border: 1px solid #e7e7ec;
  border-radius: 10px;
  padding: 16px;
}
.stl-stat-value {
  font-size: 22px;
  font-weight: 700;
  margin: 4px 0 0;
}
.stl-stat-of {
  font-size: 12px;
  color: #5b6472;
  margin-left: 4px;
  font-weight: 400;
}
.stl-stat-sub {
  font-size: 11px;
  color: #5b6472;
  margin: 2px 0 0;
}
.stl-stat-sub-pos {
  color: #0a8a4f;
  font-weight: 500;
}
.stl-stat-pos {
  color: #0a8a4f;
}
.stl-stat-muted {
  color: #8a93a3;
}
.stl-stat-accent-strong {
  color: #1d4ed8;
}
.stl-apex-card {
  overflow: hidden;
}
.stl-apex-layout {
  display: grid;
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .stl-apex-layout {
    grid-template-columns: 7fr 5fr;
  }
}
.stl-apex-left {
  padding: 24px;
}
.stl-apex-right {
  padding: 24px;
  background: #fcfcfd;
  border-top: 1px solid #e7e7ec;
  display: flex;
  flex-direction: column;
}
@media (min-width: 1024px) {
  .stl-apex-right {
    border-top: 0;
    border-left: 1px solid #e7e7ec;
  }
}
@media (max-width: 899px) {
  .stl-desktop-only {
    display: none !important;
  }
}
.stl-apex-tag-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.stl-apex-headline {
  font-size: 24px;
  font-weight: 800;
  line-height: 1.14;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
}
.stl-apex-headline-accent {
  color: #1d4ed8;
}
.stl-apex-pitch {
  font-size: 13px;
  color: #5b6472;
  line-height: 1.6;
  max-width: 500px;
  margin: 0 0 16px;
}
.stl-apex-pitch-em {
  color: #0b0d12;
  font-weight: 600;
}
.stl-apex-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 480px;
  margin-bottom: 20px;
}
.stl-apex-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.stl-apex-feat-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  background: #eff6ff;
  color: #1d4ed8;
}
.stl-apex-feat-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}
.stl-apex-feat-sub {
  font-size: 12px;
  color: #5b6472;
  line-height: 1.4;
  margin-top: 2px;
}
.stl-apex-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  padding-top: 16px;
  border-top: 1px solid #e7e7ec;
  margin-bottom: 16px;
}
.stl-apex-proof-val {
  font-size: 19px;
  font-weight: 700;
  color: #1d4ed8;
}
.stl-apex-proof-val-plain {
  font-size: 19px;
  font-weight: 700;
  color: #0b0d12;
}
.stl-apex-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.stl-apex-note {
  font-size: 11px;
  color: #5b6472;
  display: flex;
  align-items: center;
  gap: 4px;
}
.stl-carousel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.stl-carousel-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}
.stl-ld-view {
  overflow: hidden;
  flex: 1;
}
.stl-ld-track {
  display: flex;
  transition: transform 0.55s cubic-bezier(0.45, 0.05, 0.2, 1);
}
.stl-ld-slide {
  min-width: 100%;
}
.stl-ld-dots {
  display: flex;
  gap: 5px;
  align-items: center;
}
.stl-ld-dot {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #d4d4da;
  transition: .25s;
  cursor: pointer;
}
.stl-ld-dot-on {
  background: #2563eb;
  width: 16px;
}
.stl-apex-slide-inner {
  padding: 14px;
  background: #fff;
}
.stl-apex-slide-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}
.stl-apex-node {
  border: 1px solid #e7e7ec;
  border-radius: 8px;
  padding: 8px 12px;
}
.stl-apex-node-accent {
  background: #eff6ff;
  box-shadow: inset 0 0 0 1px #2563eb;
  border-radius: 8px;
  padding: 8px 12px;
}
.stl-apex-node-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.stl-apex-node-title {
  font-size: 11px;
  font-weight: 600;
}
.stl-apex-node-title-accent {
  color: #1d4ed8;
}
.stl-apex-node-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
}
.stl-apex-node-sub {
  font-size: 10px;
  color: #5b6472;
  margin-top: 2px;
}
.stl-apex-node-sub-accent {
  color: #1d4ed8;
}
.stl-apex-val-neg {
  color: #cf2c2c;
}
.stl-apex-val-amber {
  color: #b45309;
}
.stl-apex-val-muted {
  color: #8a93a3;
}
.stl-apex-val-pos {
  color: #0a8a4f;
}
.stl-apex-arrow {
  display: grid;
  place-items: center;
  color: #8a93a3;
  padding: 4px 0;
}
.stl-apex-cmp {
  margin-top: 14px;
}
.stl-apex-bar-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.stl-apex-bar-lbl {
  font-size: 10px;
  width: 48px;
  flex-shrink: 0;
  color: #5b6472;
}
.stl-apex-bar-lbl-apex {
  color: #1d4ed8;
  font-weight: 700;
}
.stl-apex-bar-track {
  flex: 1;
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
  background: #e7e7ec;
}
.stl-apex-bar-val {
  font-size: 11px;
  flex-shrink: 0;
}
.stl-apex-cmp-note {
  font-size: 10px;
  text-align: right;
  color: #5b6472;
  margin-top: 8px;
}
.stl-apex-note-pos {
  color: #0a8a4f;
}
.stl-apex-hdr {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 20px 20px 16px;
}
.stl-apex-hdr-left {
  min-width: 0;
}
.stl-apex-hdr-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  flex-shrink: 0;
}
.stl-apex-headline2 {
  font-size: 20px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 6px;
}
.stl-apex-pitch2 {
  font-size: 12.5px;
  color: #5b6472;
  line-height: 1.6;
  max-width: 620px;
  margin: 6px 0 0;
}
.stl-apex-hdr-stats {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
}
.stl-apex-hstat-accent {
  font-weight: 700;
  color: #1d4ed8;
}
.stl-apex-hstat {
  font-weight: 700;
}
.stl-dtabs {
  padding: 0 20px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
  border-bottom: 1px solid #e7e7ec;
  overflow-x: auto;
}
.stl-dtab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 8px 8px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: #5b6472;
  cursor: pointer;
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: .15s;
}
.stl-dtab:hover {
  color: #0b0d12;
}
.stl-dtab-on {
  color: #1d4ed8;
  border-bottom-color: #2563eb;
  background: #eff6ff;
}
.stl-dtabs-note {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  color: #5b6472;
  padding-bottom: 8px;
  align-self: center;
}
.stl-dboard-wrap {
  padding: 28px 20px;
  background: #fcfcfd;
}
.stl-dboard {
  display: flex;
  align-items: center;
  overflow-x: auto;
  min-height: 240px;
}
.stl-dstep {
  flex: 1 1 0;
  min-width: 150px;
  padding: 0 12px;
}
.stl-dstep-out {
  min-width: 190px;
}
.stl-dconn {
  display: grid;
  place-items: center;
  color: #8a93a3;
  flex-shrink: 0;
}
.stl-dstep-lbl {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 4px;
}
.stl-dstep-title {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.25;
}
.stl-dstep-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
  font-size: 16px;
  font-weight: 800;
  margin-top: 2px;
}
.stl-dstep-desc {
  font-size: 11px;
  color: #5b6472;
  margin-top: 4px;
  line-height: 1.4;
}
.stl-dout-gain {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
  margin-top: 2px;
}
.stl-dout-bars {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.stl-dbar-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.stl-dbar-lbl {
  font-size: 9px;
  width: 48px;
  flex-shrink: 0;
  color: #5b6472;
}
.stl-dbar-lbl-apex {
  color: #1d4ed8;
  font-weight: 600;
}
.stl-dbar {
  flex: 1;
  height: 20px;
  border-radius: 6px;
  overflow: hidden;
  background: #e7e7ec;
}
.stl-dbar-val {
  font-size: 10px;
  flex-shrink: 0;
}
.stl-text-neg {
  color: #cf2c2c;
}
.stl-text-amber {
  color: #b45309;
}
.stl-text-accent-strong {
  color: #1d4ed8;
}
.stl-text-pos {
  color: #0a8a4f;
}
.stl-dfade {
  animation: stlDFade .5s ease;
}
@keyframes stlDFade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.stl-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.stl-search-field {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 8px;
  border: 1px solid #e7e7ec;
  background: #fff;
  flex: 1;
  max-width: 400px;
  min-width: 200px;
  color: #5b6472;
}
.stl-search-input {
  border: 0;
  background: transparent;
  flex: 1;
  font-size: 12px;
  outline: none;
  color: #0b0d12;
  font-family: inherit;
}
.stl-search-input::placeholder {
  color: #8a93a3;
}
.stl-filter-btns {
  display: flex;
  align-items: center;
  gap: 6px;
}
.stl-filter-val {
  font-size: 12px;
  font-weight: 500;
}
.stl-filters-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.stl-count-label {
  font-size: 11px;
  color: #5b6472;
}
.stl-view-toggle {
  display: flex;
  align-items: center;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  overflow: hidden;
}
.stl-view-btn {
  padding: 4px 8px;
  background: transparent;
  border: 0;
  cursor: pointer;
  color: #5b6472;
}
.stl-view-btn:hover {
  background: #f4f4f6;
}
.stl-view-btn-active {
  background: #f0f0f3;
  color: #0b0d12;
}
.stl-table-card {
  overflow: hidden;
}
.stl-table-scroll {
  overflow-x: auto;
}
.stl-table {
  width: 100%;
  border-collapse: collapse;
}
.stl-table th {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
  text-align: left;
  padding: 9px 14px;
  border-bottom: 1px solid #e7e7ec;
  background: #fafafb;
}
.stl-table td {
  padding: 14px;
  border-bottom: 1px solid #e7e7ec;
  vertical-align: middle;
}
.stl-table tbody tr:hover {
  background: #fafafb;
  cursor: pointer;
}
.stl-table tbody tr:last-child td {
  border-bottom: 0;
}
.stl-th-right {
  text-align: right !important;
}
.stl-td-right {
  text-align: right;
}
@media (max-width: 899px) {
  .stl-col-desktop {
    display: none !important;
  }
}
.stl-checkbox {
  width: 14px;
  height: 14px;
  accent-color: #2563eb;
  cursor: pointer;
}
.stl-name-cell {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.stl-type-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.stl-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.stl-name-link {
  font-weight: 600;
  font-size: 13px;
  color: #0b0d12;
  cursor: pointer;
  text-decoration: none;
}
.stl-name-link:hover {
  color: #2563eb;
  text-decoration: underline;
}
.stl-name-sub {
  font-size: 11px;
  color: #5b6472;
  margin-top: 2px;
}
.stl-status-cell {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.stl-bb-high {
  color: #0a8a4f;
  font-weight: 600;
}
.stl-bb-low {
  color: #b45309;
}
.stl-sparkline {
  width: 80px;
  height: 24px;
  display: block;
}
.stl-row-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.stl-switch {
  position: relative;
  width: 32px;
  height: 18px;
  background: #d4d4da;
  border-radius: 999px;
  cursor: pointer;
  flex-shrink: 0;
  transition: .15s;
}
.stl-switch::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  top: 2px;
  left: 2px;
  transition: .15s;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
.stl-switch-on {
  background: #2563eb;
}
.stl-switch-on::after {
  left: 16px;
}
.stl-row-selected {
  background: #eff6ff !important;
}
.stl-table-footer {
  padding: 10px 16px;
  border-top: 1px solid #e7e7ec;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fcfcfd;
}
.stl-footer-count {
  font-size: 11px;
  color: #5b6472;
}
.stl-footer-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sed-root {
  background: #f6f6f7;
  color: #0b0d12;
  font-family: 'Manrope', ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 13px;
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
}
@media (max-width: 899px) {
  .sed-desktop-only {
    display: none !important;
  }
}
.sed-action-bar {
  background: #ffffff;
  border-bottom: 1px solid #e7e7ec;
  position: sticky;
  top: 0;
  z-index: 20;
}
.sed-action-bar-inner {
  padding: 10px 24px;
  max-width: none;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.sed-breadcrumb {
  font-size: 12px;
  color: #5b6472;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.sed-bc-link {
  color: #5b6472;
  text-decoration: none;
}
.sed-bc-link:hover {
  color: #0b0d12;
}
.sed-bc-sep {
  color: #d4d4da;
}
.sed-bc-active {
  color: #0b0d12;
  font-weight: 500;
}
.sed-action-bar-right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.sed-saved-note {
  font-size: 11px;
  color: #5b6472;
  display: none;
  align-items: center;
  gap: 6px;
}
@media (min-width: 768px) {
  .sed-saved-note {
    display: inline-flex;
  }
}
.sed-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  border: 1px solid #e7e7ec;
  background: #fff;
}
.sed-chip-blue {
  background: #eff6ff;
  border-color: #bfdbfe;
  color: #1d4ed8;
}
.sed-chip-muted {
  background: #f4f4f6;
  border-color: transparent;
  color: #5b6472;
}
@media (max-width: 1280px) {
  .sed-chip-xl-only {
    display: none;
  }
}
.sed-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  display: inline-block;
}
.sed-dot-blue {
  background: #2563eb;
}
.sed-dot-green {
  background: #22c55e;
}
.sed-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid #e7e7ec;
  border-radius: 6px;
  background: #fff;
  font-size: 12px;
  font-weight: 500;
  color: #0b0d12;
  cursor: pointer;
  font-family: inherit;
}
.sed-btn:hover {
  background: #fafafa;
  border-color: #d4d4da;
}
.sed-btn-primary {
  background: #0b0d12;
  color: #fff;
  border-color: #0b0d12;
}
.sed-btn-primary:hover {
  background: #1a1d24;
  border-color: #1a1d24;
}
.sed-btn-ghost {
  background: transparent;
  border-color: transparent;
  color: #5b6472;
}
.sed-btn-ghost:hover {
  background: #f4f4f6;
  color: #0b0d12;
}
.sed-btn-danger {
  color: #cf2c2c !important;
}
.sed-layout {
  max-width: none;
  margin: 0;
  padding: 20px 24px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 1024px) {
  .sed-layout {
    grid-template-columns: 160px 1fr;
  }
}
.sed-left-sticky {
  position: sticky;
  top: 56px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sed-stat-label {
  font-size: 10px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8a93a3;
  font-weight: 600;
}
.sed-anchor-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.sed-anchor {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 6px;
  font-size: 12px;
  color: #5b6472;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  border-left: 2px solid transparent;
}
.sed-anchor:hover {
  background: #f4f4f6;
  color: #0b0d12;
}
.sed-anchor-active {
  color: #1d4ed8;
  background: #eff6ff;
  border-left-color: #2563eb;
  font-weight: 600;
}
.sed-an-no {
  font-family: 'JetBrains Mono', ui-monospace, 'Courier New', Courier, monospace;
  font-size: 10px;
  color: #8a93a3;
  letter-spacing: .04em;
}
.sed-card {
  background: #ffffff;
  border: 1px solid #e7e7ec;
  border-radius: 10px;
}
.sed-health-card {
  padding: 12px;
}
.sed-health-score {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 8px;
}
.sed-health-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 18px;
  font-weight: 700;
}
.sed-health-denom {
  font-size: 10px;
  color: #0a8a4f;
  font-weight: 600;
}
.sed-health-bar {
  height: 6px;
  border-radius: 999px;
  background: #e7e7ec;
  overflow: hidden;
}
.sed-health-fill {
  height: 100%;
  background: #0a8a4f;
}
.sed-health-note {
  font-size: 11px;
  color: #5b6472;
  margin: 8px 0 0;
  line-height: 1.4;
}
.sed-perf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}
.sed-perf-card {
  padding: 12px;
}
.sed-perf-val {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 16px;
  font-weight: 700;
  margin-top: 4px;
}
.sed-perf-pos {
  color: #0a8a4f;
}
.sed-main {
  min-width: 0;
}
body.dark-mode .stl-root {
  background: #0b0d12;
  color: #e7e7ec;
  --bg: #0b0d12;
  --card: #15181f;
  --border: #262a33;
  --border-strong: #363b46;
  --text: #e7e7ec;
  --muted: #9aa3b2;
  --label: #6b7585;
  --accent: #3b82f6;
  --accent-soft: #1e2a3d;
  --accent-strong: #60a5fa;
  --pos: #22c55e;
  --neg: #f87171;
  --warn: #fbbf24;
  --field: #0f1218;
  --ai: #3b82f6;
  --ai-soft: #1a1f2e;
}
body.dark-mode .stl-page-header {
  background: #15181f;
  border-bottom-color: #262a33;
}
body.dark-mode .stl-body {
  background: transparent;
}
body.dark-mode .stl-card {
  background: #15181f;
  border-color: #262a33;
}
body.dark-mode .stl-btn {
  background: #15181f;
  border-color: #262a33;
  color: #e7e7ec;
}
body.dark-mode .stl-btn:hover {
  background: #262a33;
  border-color: #363b46;
}
body.dark-mode .stl-btn-primary {
  background: #0b0d12;
  color: #e7e7ec;
  border-color: #0b0d12;
}
body.dark-mode .stl-btn-ghost {
  background: transparent;
  color: #9aa3b2;
}
body.dark-mode .stl-btn-ghost:hover {
  background: #262a33;
  color: #e7e7ec;
}
body.dark-mode .stl-chip {
  background: #15181f;
  border-color: #262a33;
  color: #e7e7ec;
}
body.dark-mode .stl-chip-blue {
  background: #1e2a3d;
  border-color: #2a3a5c;
  color: #60a5fa;
}
body.dark-mode .stl-chip-muted {
  background: #262a33;
  border-color: transparent;
  color: #9aa3b2;
}
body.dark-mode .stl-chip-active {
  background: #0d2a1a;
  color: #4ade80;
}
body.dark-mode .stl-chip-idle {
  background: #1e2228;
  color: #9aa3b2;
}
body.dark-mode .stl-chip-ready {
  background: #1e2a3d;
  color: #60a5fa;
  border-color: #2a3a5c;
}
body.dark-mode .stl-loading-overlay {
  background: rgba(11, 13, 18, 0.85);
}
body.dark-mode .stl-loading-overlay div {
  color: #9aa3af;
}
body.dark-mode .stl-search-field {
  background: #15181f;
  border-color: #262a33;
  color: #9aa3b2;
}
body.dark-mode .stl-search-input {
  color: #e7e7ec;
}
body.dark-mode .stl-search-input::placeholder {
  color: #6b7585;
}
body.dark-mode .stl-table th {
  color: #6b7585;
  border-bottom-color: #262a33;
  background: #0f1218;
}
body.dark-mode .stl-table td {
  border-bottom-color: #262a33;
  color: #e7e7ec;
}
body.dark-mode .stl-table td .num {
  color: #e7e7ec;
}
body.dark-mode .stl-table tbody tr {
  background: #15181f;
}
body.dark-mode .stl-table tbody tr:hover {
  background: #1e2228;
}
body.dark-mode .stl-stat-value {
  color: #e7e7ec;
}
body.dark-mode .stl-stat-of {
  color: #9aa3b2;
}
body.dark-mode .stl-stat-sub {
  color: #9aa3b2;
}
body.dark-mode .stl-stat-muted {
  color: #6b7585;
}
body.dark-mode .stl-muted-dash {
  color: #6b7585;
}
body.dark-mode .stl-td-right {
  color: #e7e7ec;
}
body.dark-mode .stl-filter-val {
  color: #e7e7ec;
}
body.dark-mode .stl-filters {
  background: transparent;
}
body.dark-mode .stl-filter-btn {
  color: #9aa3b2;
}
body.dark-mode .stl-name-link {
  color: #e7e7ec;
}
body.dark-mode .stl-name-link:hover {
  color: #3b82f6;
}
body.dark-mode .stl-name-sub {
  color: #9aa3b2;
}
body.dark-mode .stl-bb-low {
  color: #fbbf24;
}
body.dark-mode .stl-table-footer {
  background: #0f1218;
  border-top-color: #262a33;
}
body.dark-mode .stl-footer-count {
  color: #9aa3b2;
}
body.dark-mode .stl-switch {
  background: #363b46;
}
body.dark-mode .stl-switch-on {
  background: #3b82f6;
}
body.dark-mode .stl-stat-card {
  background: #15181f;
  border-color: #262a33;
}
body.dark-mode .stl-apex-card {
  background: #15181f;
  border-color: #262a33;
}
body.dark-mode .stl-apex-right {
  background: #0f1218;
  border-color: #262a33;
}
body.dark-mode .stl-apex-slide-inner {
  background: #15181f;
}
body.dark-mode .stl-apex-node {
  border-color: #262a33;
}
body.dark-mode .stl-apex-node-accent {
  background: #1e2a3d;
  box-shadow: inset 0 0 0 1px #1e2a3d;
}
body.dark-mode .stl-apex-bar-track {
  background: #262a33;
}
body.dark-mode .stl-apex-val-neg {
  color: #f87171;
}
body.dark-mode .stl-apex-val-amber {
  color: #fbbf24;
}
body.dark-mode .stl-apex-val-pos {
  color: #22c55e;
}
body.dark-mode .stl-apex-proof-val {
  color: #60a5fa;
}
body.dark-mode .stl-apex-proof-val-plain {
  color: #e7e7ec;
}
body.dark-mode .stl-apex-headline-accent {
  color: #60a5fa;
}
body.dark-mode .stl-apex-feat-icon {
  background: #1e2a3d;
  color: #60a5fa;
}
body.dark-mode .stl-ld-dot {
  background: #363b46;
}
body.dark-mode .stl-ld-dot-on {
  background: #3b82f6;
}
body.dark-mode .stl-dboard-wrap {
  background: #0f1218;
}
body.dark-mode .stl-stat-sub-pos {
  color: #22c55e;
}
body.dark-mode .stl-stat-pos {
  color: #22c55e;
}
body.dark-mode .stl-stat-accent-strong {
  color: #60a5fa;
}
body.dark-mode .stl-text-neg {
  color: #f87171;
}
body.dark-mode .stl-text-amber {
  color: #fbbf24;
}
body.dark-mode .stl-text-accent-strong {
  color: #60a5fa;
}
body.dark-mode .stl-text-pos {
  color: #22c55e;
}
body.dark-mode .stl-page-title {
  color: #e7e7ec;
}
body.dark-mode .stl-page-sub {
  color: #9aa3b2;
}
body.dark-mode .stl-bc-link {
  color: #9aa3b2;
}
body.dark-mode .stl-bc-active {
  color: #e7e7ec;
}
body.dark-mode .stl-muted-text {
  color: #9aa3b2;
}
body.dark-mode .stl-lbl-em {
  color: #60a5fa;
}
body.dark-mode .stl-stat-label {
  color: #6b7585;
}
body.dark-mode .stl-view-btn {
  color: #9aa3b2;
}
body.dark-mode .stl-view-btn:hover {
  background: #262a33;
}
body.dark-mode .stl-view-btn-active {
  background: #262a33;
  color: #e7e7ec;
}
body.dark-mode .stl-view-toggle {
  border-color: #262a33;
}
body.dark-mode .stl-count-label {
  color: #9aa3b2;
}
body.dark-mode .sed-root {
  background: #0b0d12;
  color: #e7e7ec;
}
body.dark-mode .sed-action-bar {
  background: #15181f;
  border-bottom-color: #262a33;
}
body.dark-mode .sed-btn {
  background: #15181f;
  border-color: #262a33;
  color: #e7e7ec;
}
body.dark-mode .sed-btn:hover {
  background: #262a33;
  border-color: #363b46;
}
body.dark-mode .sed-btn-primary {
  background: #0b0d12;
  color: #e7e7ec;
  border-color: #0b0d12;
}
body.dark-mode .sed-btn-ghost {
  background: transparent;
  color: #9aa3b2;
}
body.dark-mode .sed-btn-ghost:hover {
  background: #262a33;
  color: #e7e7ec;
}
body.dark-mode .sed-chip {
  background: #15181f;
  border-color: #262a33;
  color: #e7e7ec;
}
body.dark-mode .sed-chip-blue {
  background: #1e2a3d;
  border-color: #2a3a5c;
  color: #60a5fa;
}
body.dark-mode .sed-chip-muted {
  background: #262a33;
  color: #9aa3b2;
}
body.dark-mode .sed-breadcrumb {
  color: #9aa3b2;
}
body.dark-mode .sed-bc-link {
  color: #9aa3b2;
}
body.dark-mode .sed-bc-active {
  color: #e7e7ec;
}
body.dark-mode .sed-dot-blue {
  background: #3b82f6;
}
body.dark-mode .sed-dot-green {
  background: #22c55e;
}
body.dark-mode .sed-card {
  background: #15181f;
  border-color: #262a33;
}
body.dark-mode .sed-health-bar {
  background: #262a33;
}
body.dark-mode .sed-health-fill {
  background: #22c55e;
}
body.dark-mode .sed-health-val {
  color: #e7e7ec;
}
body.dark-mode .sed-health-denom {
  color: #22c55e;
}
body.dark-mode .sed-health-note {
  color: #9aa3b2;
}
body.dark-mode .sed-perf-val {
  color: #e7e7ec;
}
body.dark-mode .sed-perf-pos {
  color: #22c55e;
}
body.dark-mode .sed-anchor {
  color: #9aa3b2;
}
body.dark-mode .sed-anchor:hover {
  background: #262a33;
  color: #e7e7ec;
}
body.dark-mode .sed-anchor-active {
  color: #60a5fa;
  background: #1e2a3d;
  border-left-color: #3b82f6;
}
body.dark-mode .sed-an-no {
  color: #6b7585;
}
body.dark-mode .sed-stat-label {
  color: #6b7585;
}
body.dark-mode .sed-saved-note {
  color: #9aa3b2;
}
body.dark-mode .sed-layout {
  background: transparent;
}
body.dark-mode .stl-row-selected {
  background: #1e2a3d !important;
}
.sed-add-body {
  padding: 24px;
}
@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;
  }
}
