@charset "UTF-8";
/* Variables */
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
/* Status Colors */
/* Plan Colors */
/* Breakpoints */
/* Spacing Scale */
/* Z-Index Scale */
/* Component Tokens */
/* Variables */
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
/* Status Colors */
/* Plan Colors */
/* Breakpoints */
/* Spacing Scale */
/* Z-Index Scale */
/* Component Tokens */
input:not([type=radio]):read-only {
  background: #ffffff !important;
}

.form-select:disabled {
  background-color: #f1f1f1;
}

.input-group-text {
  background-color: #f1f1f1;
}

/* Start Validation */
.form-control.error,
.form-select.error {
  border-color: #e6180d;
  padding-right: calc(1.5em + 0.75rem);
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23e6180d'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23e6180d' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}
.form-control + .error,
.form-select + .error {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #e6180d;
}

textarea.form-control.valid, textarea.form-control.error {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

/* End Validation */
.form-check-input-lg {
  width: 20px;
  height: 20px;
  margin: 0 12px 0 0;
}

/* Start Toast */
.toast i {
  color: #ffffff !important;
}
.toast button {
  opacity: 1;
  filter: brightness(0) invert(1);
}
.toast .toast-header {
  color: #ffffff;
}
.toast .toast-body {
  color: #ffffff;
}
.toast#successToast {
  border: 1px solid rgba(2, 136, 36, 0.8);
}
.toast#successToast .toast-header {
  background-color: #028824;
  border-bottom: 1px solid #028824;
}
.toast#successToast .toast-body {
  background-color: rgba(2, 136, 36, 0.8);
}
.toast#warningToast {
  border: 1px solid rgba(230, 24, 13, 0.8);
}
.toast#warningToast .toast-header {
  background-color: #e6180d;
  border-bottom: 1px solid #e6180d;
}
.toast#warningToast .toast-body {
  background-color: rgba(230, 24, 13, 0.8);
}
.toast#infoToast {
  border: 1px solid rgba(255, 161, 29, 0.8);
}
.toast#infoToast .toast-header {
  background-color: #ffa11d;
  border-bottom: 1px solid #ffa11d;
}
.toast#infoToast .toast-body {
  background-color: rgba(255, 161, 29, 0.8);
}

/* End Toast */
/* Start Button */
.btn-light-blue {
  color: #fff;
  background-color: #657eae;
  border-color: #657eae;
}

.btn-light-blue:hover {
  color: #fff;
}

.btn-loading {
  position: relative;
  color: transparent !important;
  pointer-events: none;
}
.btn-loading::before {
  content: "";
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border: 2px solid currentColor;
  border-color: #666 transparent #666 transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.btn-loading:hover {
  color: transparent !important;
}
.btn-loading:focus {
  outline: none;
  box-shadow: none;
}

@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
/* End Button */
/* Start Form Attr */
.fixed-form-buttons {
  width: 100%;
  height: 50px;
  position: fixed;
  top: 0;
  right: 0;
  background: #f1f1f1;
  z-index: 1031;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 20px;
}
@media (min-width: 991.98px) {
  .fixed-form-buttons {
    padding-right: 30px;
  }
}
.fixed-form-buttons button {
  font-size: 0.875rem;
}

.card-body {
  padding: 20px;
  overflow: hidden;
}
.card-body .card-separator {
  height: 1px;
  background: #ddd;
  margin: 20px 0;
}
.card-body .card-line label i {
  color: #3a3a3a;
}
.card-body.custom-card-body {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}
.card-body.custom-card-body .card-content {
  height: 100%;
}
.card-body.custom-card-body .card-content .empty-row {
  height: 100%;
  min-height: 150px;
}

#dashboard-summary .card-body {
  padding: 1rem;
}

table .w-40px {
  flex: 0 0 40px;
}

/* End Form Attr */
/* Start Tooltip */
.tooltip {
  z-index: 9999999 !important;
}
.tooltip .tooltip-inner {
  background: #3a3a3a;
}
.tooltip.bs-tooltip-end .tooltip-arrow:before {
  border-right-color: #3a3a3a;
}
.tooltip.bs-tooltip-start .tooltip-arrow:before {
  border-left-color: #3a3a3a;
}
.tooltip.bs-tooltip-top .tooltip-arrow:before {
  border-top-color: #3a3a3a;
}
.tooltip.bs-tooltip-bottom .tooltip-arrow:before {
  border-bottom-color: #3a3a3a;
}

.tooltip-left .tooltip-inner {
  text-align: left;
}

.tooltip-color {
  color: #3a3a3a;
}

/* End Tooltip */
/* Start Pill */
.nav-pills {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
}
.nav-pills .nav-item {
  flex: 0 0 auto;
}
.nav-pills .nav-link {
  color: #212837;
  font-weight: 500;
  border-radius: 0;
  border-bottom: 1px solid transparent;
  padding: 5px 0;
  margin-right: 20px;
}
.nav-pills .nav-link.active {
  background: none;
  color: #212837;
  border-bottom: 1px solid #212837;
}

/* End Pill */
.bootstrap-tagsinput {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3c4e71;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #c9d2e3;
  appearance: none;
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  cursor: text;
}
.bootstrap-tagsinput > span {
  margin: 5px 5px 5px 0;
  padding: 0 4px;
  border: 1px solid #c9d2e3;
  border-radius: 6px;
  display: flex;
  align-items: center;
  cursor: default;
}
.bootstrap-tagsinput > span > span:before {
  font-family: "Font Awesome 5 Free";
  content: "\f057";
  font-size: 14px;
  display: inline-block;
  margin-left: 5px;
  cursor: pointer;
}
.bootstrap-tagsinput > input {
  border: none;
  margin-right: 10px;
  flex: 0 0 auto;
}
.bootstrap-tagsinput > input:focus {
  outline: none;
  border: none;
}
.bootstrap-tagsinput.is-invalid {
  border-color: #e6180d;
  box-shadow: 0 0 0 0.2rem rgba(230, 24, 13, 0.25);
}

.select2-container.is-invalid .select2-selection {
  border-color: #e6180d;
}

.form-check :hover {
  cursor: pointer;
}

.datetimepicker .datetimepicker-days table,
.datetimepicker .datetimepicker-hours table,
.datetimepicker .datetimepicker-minutes table,
.datetimepicker .datetimepicker-months table,
.datetimepicker .datetimepicker-years table {
  width: 100%;
}
.datetimepicker thead tr:first-child th i,
.datetimepicker thead tr:first-child th span {
  pointer-events: none;
  font-size: 18px;
}
.datetimepicker thead tr:first-child th span.glyphicon {
  display: inline-block;
  font-family: "Font Awesome 5 Free", "Font Awesome 6 Free";
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
.datetimepicker thead tr:first-child th span.glyphicon.fa-angle-left::before {
  content: "\f104";
}
.datetimepicker thead tr:first-child th span.glyphicon.fa-angle-right::before {
  content: "\f105";
}
.datetimepicker .datetimepicker-days table thead tr th.dow {
  color: #212837;
  font-size: 0.75rem;
  font-weight: 600;
  border-radius: 0;
  padding: 0;
  border: none;
}
.datetimepicker .datetimepicker-days table tbody tr td {
  border-radius: 0;
  font-weight: 500;
  font-size: 0.8125rem;
  border: 1px solid #dae0ec;
  color: #212837;
  width: 14%;
}
.datetimepicker .datetimepicker-days table tbody tr td.old, .datetimepicker .datetimepicker-days table tbody tr td.new {
  color: #c9d2e3;
}
.datetimepicker .datetimepicker-days table tbody tr td:hover {
  background: #f2f4f8 !important;
}
.datetimepicker .datetimepicker-days table tbody tr td.active {
  background: #1f6bff !important;
  border-color: #1f6bff !important;
  color: #fff;
  text-shadow: none;
}
.datetimepicker .datetimepicker-hours table tbody tr td,
.datetimepicker .datetimepicker-minutes table tbody tr td {
  border-radius: 0;
  font-weight: 500;
  font-size: 0.8125rem;
  color: #212837;
}
.datetimepicker .datetimepicker-hours table tbody tr td.active,
.datetimepicker .datetimepicker-minutes table tbody tr td.active {
  background: #1f6bff !important;
  border-color: #1f6bff !important;
  color: #fff;
  text-shadow: none;
}
.datetimepicker .datetimepicker-hours span,
.datetimepicker .datetimepicker-minutes span {
  display: inline-block;
  margin: 2px 1.5px;
  padding: 0;
  border-radius: 0;
  border: 1px solid #dae0ec;
  font-weight: 500;
  color: #212837;
  line-height: 54px;
  cursor: pointer;
  text-align: center;
}
.datetimepicker .datetimepicker-hours span:hover,
.datetimepicker .datetimepicker-minutes span:hover {
  background: #f2f4f8 !important;
}
.datetimepicker .datetimepicker-hours span.active,
.datetimepicker .datetimepicker-minutes span.active {
  background: #1f6bff !important;
  border-color: #1f6bff !important;
  color: #fff;
  text-shadow: none;
}
.datetimepicker .datetimepicker-months table tbody tr td {
  padding: 0;
}
.datetimepicker .datetimepicker-months table tbody tr td span {
  display: inline-block;
  width: 40px;
  height: 40px;
  margin: 2px 1.5px;
  border-radius: 0;
  border: 1px solid #dae0ec;
  font-weight: 500;
  color: #212837;
  line-height: 40px;
  cursor: pointer;
  text-align: center;
}
.datetimepicker .datetimepicker-months table tbody tr td span.active {
  background: #1f6bff !important;
  border-color: #1f6bff !important;
  color: #fff;
  text-shadow: none;
}

/* Variables */
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
/* Status Colors */
/* Plan Colors */
/* Breakpoints */
/* Spacing Scale */
/* Z-Index Scale */
/* Component Tokens */
:root {
  --product-tour-js-brand-color-dark: #1a5bd9;
  --product-tour-js-brand-color: #1f6bff;
}

a {
  color: #1f6bff;
  text-decoration: none;
}
a:hover {
  color: #1956cc;
  text-decoration: none;
}
a:focus {
  color: #1f6bff;
}

img {
  max-width: 100%;
}

.fa-exclamation-circle[data-bs-toggle=tooltip] {
  font-size: 14px;
}

.tooltip-start-aligned .tooltip-inner {
  text-align: left;
}

/* Start Page  */
body {
  background: #f1f1f1;
  -webkit-font-smoothing: antialiased;
}
@media (min-width: 992px) {
  body {
    height: unset;
  }
}
@media (max-width: 767.98px) {
  body {
    overflow-x: hidden;
  }
}

.datagrid-action-bar .dropdown-item:focus-within, .datagrid-action-bar .dropdown-item:focus-visible, .datagrid-action-bar .dropdown-item:focus {
  color: #212837;
}

.app-sidebar .menu .menu-item.has-promotion .menu-link {
  background: #ffcc00 !important;
}
.app-sidebar .menu .menu-item.has-promotion .menu-link .menu-icon {
  color: #000000;
}
.app-sidebar .menu .menu-item.has-promotion .menu-link .menu-text {
  color: #000000;
}
.app-sidebar .mobile-sidebar-close {
  cursor: pointer;
  position: absolute;
  right: 0;
  top: -10px;
  font-size: 20px;
  display: none;
  padding: 20px;
  z-index: 9999;
}
.app-sidebar .mobile-sidebar-close.sidebar-z-index {
  z-index: 6;
}
@media (max-width: 991.98px) {
  .app-sidebar .mobile-sidebar-close {
    display: block;
  }
}

.page-header {
  padding-bottom: 15px;
  margin-bottom: 0;
  font-size: 22px;
}
.page-header > a {
  text-decoration: none;
  color: #212837;
}

.page-actions {
  display: flex;
  margin: 20px 0 10px;
  overflow-x: auto;
  padding-bottom: 10px;
}
.page-actions .page-action-item {
  flex: 0 0 auto;
}
.page-actions .page-action-item:not(:last-child) {
  margin-right: 15px;
}
.page-actions .page-action-item a {
  color: #212837;
  text-decoration: none;
}
.page-actions .page-action-item a i {
  color: #3a3a3a;
  margin-right: 5px;
}

.btn-scroll-top {
  right: 0.25rem;
}
@media (max-width: 991.98px) {
  .btn-scroll-top {
    right: 0;
  }
}

.btn-block {
  width: 100%;
}

.auto-refresh-control {
  margin-right: 0;
}

s-button#auto-refresh-toggle {
  --s-button-bg: transparent;
  --s-button-border: none;
  font-size: 0.875rem;
}
s-button#auto-refresh-toggle i {
  font-size: 0.875rem;
  margin-right: 0.375rem;
}
s-button#auto-refresh-toggle span:not(.status-indicator) {
  font-weight: 500;
  margin-right: 0.375rem;
  display: inline-flex;
  align-items: center;
}
s-button#auto-refresh-toggle .status-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #22c55e;
  box-shadow: 0 0 0 2px rgba(34, 197, 94, 0.2);
  vertical-align: middle;
}

.page-inner-content .page-inner-title h4 {
  padding: 0;
}
.page-inner-content .page-inner-title p {
  margin-bottom: 20px;
}
.page-inner-content .page-card {
  margin-bottom: 20px;
}

.account-settings-container .page-inner-content .page-inner-title p,
.notification-settings-container .page-inner-content .page-inner-title p,
.cloud-storage-settings-container .page-inner-content .page-inner-title p,
.image-upload-container .page-inner-content .page-inner-title p {
  margin-bottom: 20px;
}
.account-settings-container .page-inner-content .page-inner-title h4 .badge,
.notification-settings-container .page-inner-content .page-inner-title h4 .badge,
.cloud-storage-settings-container .page-inner-content .page-inner-title h4 .badge,
.image-upload-container .page-inner-content .page-inner-title h4 .badge {
  font-size: 12px;
}
.account-settings-container .card, .account-settings-container .card-body, .account-settings-container .card-content,
.notification-settings-container .card,
.notification-settings-container .card-body,
.notification-settings-container .card-content,
.cloud-storage-settings-container .card,
.cloud-storage-settings-container .card-body,
.cloud-storage-settings-container .card-content,
.image-upload-container .card,
.image-upload-container .card-body,
.image-upload-container .card-content {
  overflow: visible;
}
@media (min-width: 992px) {
  .account-settings-container .page-inner-content,
  .notification-settings-container .page-inner-content,
  .cloud-storage-settings-container .page-inner-content,
  .image-upload-container .page-inner-content {
    display: grid;
    grid-template-columns: 0.6fr 1fr;
    grid-column-gap: 20px;
  }
  .account-settings-container .page-inner-content .page-inner-title h4,
  .notification-settings-container .page-inner-content .page-inner-title h4,
  .cloud-storage-settings-container .page-inner-content .page-inner-title h4,
  .image-upload-container .page-inner-content .page-inner-title h4 {
    margin-top: 20px;
  }
  .account-settings-container .page-inner-content .page-card,
  .notification-settings-container .page-inner-content .page-card,
  .cloud-storage-settings-container .page-inner-content .page-card,
  .image-upload-container .page-inner-content .page-card {
    min-width: 0;
  }
}

.card-title {
  color: #212837;
  font-weight: 600;
  margin-bottom: 20px;
  position: relative;
}
.card-title .card-description {
  font-size: 14px;
  color: #212837;
  font-weight: 400;
  margin-top: 10px;
}
.card-title .view-all {
  position: absolute;
  right: 0;
  top: 0;
}

.card-separator {
  height: 1px;
  background: #c9d2e3;
  margin: 10px 0;
}

.card-row {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.card-row .card-row-icon {
  flex: 0 0 20px;
  margin-right: 10px;
  cursor: pointer;
  text-align: center;
}
.card-row .card-row-icon i {
  font-size: 20px;
}
.card-row .card-row-detail {
  flex: 1;
}
.card-row .card-row-detail .card-row-title {
  display: flex;
  justify-content: space-between;
}
.card-row .card-row-detail .card-row-title span {
  flex: 0 0 80px;
  text-align: right;
}
.card-row .card-row-detail .card-row-title strong {
  margin-right: 5px;
}
.login .login-content {
  padding: 30px;
  border: 1px solid #d1d9e7;
  max-width: 30rem;
  border-radius: 6px;
  background: #ffffff;
}
.login .login-image {
  text-align: center;
  margin-bottom: 20px;
}
.login .login-image img {
  max-width: 300px;
}
@media (max-width: 768px) {
  .login .login-image img {
    max-width: 200px;
  }
}

/* End Page  */
/* Start Sticky Sidebar */
#sidebar-bootstrap > nav {
  padding-left: 30px;
}
#sidebar-bootstrap > nav > a {
  padding: 5px 15px 5px 13px;
  position: relative;
  font-weight: 600;
  font-size: 13px;
  border-radius: 6px;
}
#sidebar-bootstrap > nav > a.active {
  background: #3a3a3a;
  color: #ffffff;
}
#sidebar-bootstrap > nav > a:hover {
  font-weight: 700;
}
#sidebar-bootstrap > nav > a.sub {
  margin-left: 15px;
  font-weight: 500;
}

/* End Sticky Sidebar *


 */
/* Start Box-Showcase */
.box-showcase {
  padding-top: 20px;
  position: relative;
  color: #3c4e71;
  transition: all ease 0.5s;
  background: #f1f1f1;
}
.box-showcase:before {
  content: "";
  width: 100%;
  height: 60%;
  clip-path: polygon(100% 0%, 100% 100%, -10% 0%);
  position: absolute;
  right: 0;
  top: 0;
  display: block;
  border-radius: 10px 10px 0 0;
}
.box-showcase .box-showcase-inner {
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  padding: 10px 25px;
  border-radius: 20px;
}
.box-showcase .box-showcase-inner .showcase-image {
  position: relative;
  padding-top: 50%;
}
.box-showcase .box-showcase-inner .showcase-image img {
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  left: 0;
  margin: 0 auto;
  object-fit: scale-down;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-price {
  font-size: 20px;
  position: relative;
  z-index: 2;
  margin-bottom: 10px;
  display: inline-block;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-price span {
  text-decoration: line-through;
  -webkit-text-fill-color: #3c4e71;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-segment {
  font-size: 16px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 10px;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-trial {
  display: inline-block;
  border-radius: 10px;
  line-height: 30px;
  padding: 0 10px;
  color: #ffffff;
  margin-bottom: 10px;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-description {
  font-size: 14px;
  margin-bottom: 10px;
  height: 50px;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-button {
  text-align: right;
  padding-bottom: 10px;
}
.box-showcase .box-showcase-inner .showcase-content .showcase-product-button a {
  text-decoration: none;
  display: inline-block;
  border-radius: 9999px;
  padding: 10px 20px;
}
.box-showcase.first:before {
  background: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
}
.box-showcase.first .box-showcase-inner .showcase-content .showcase-product-price {
  background: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.first .box-showcase-inner .showcase-content .showcase-product-trial {
  background: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
}
.box-showcase.first .box-showcase-inner .showcase-content .showcase-product-button {
  background: linear-gradient(to right, rgb(242, 112, 156), rgb(255, 148, 114));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.second:before {
  background: linear-gradient(110.1deg, rgb(34, 126, 134) 1%, rgb(168, 251, 60) 99%);
}
.box-showcase.second .box-showcase-inner .showcase-content .showcase-product-price {
  background: linear-gradient(110.1deg, rgb(34, 126, 134) 1%, rgb(168, 251, 60) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.second .box-showcase-inner .showcase-content .showcase-product-trial {
  background: linear-gradient(110.1deg, rgb(34, 126, 134) 1%, rgb(168, 251, 60) 99%);
}
.box-showcase.second .box-showcase-inner .showcase-content .showcase-product-button {
  background: linear-gradient(110.1deg, rgb(34, 126, 134) 1%, rgb(168, 251, 60) 99%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.third:before {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, rgb(85, 88, 218) 0%, rgb(95, 209, 249) 100.2%);
}
.box-showcase.third .box-showcase-inner .showcase-content .showcase-product-price {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, rgb(85, 88, 218) 0%, rgb(95, 209, 249) 100.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.third .box-showcase-inner .showcase-content .showcase-product-trial {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, rgb(85, 88, 218) 0%, rgb(95, 209, 249) 100.2%);
}
.box-showcase.third .box-showcase-inner .showcase-content .showcase-product-button {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, rgb(85, 88, 218) 0%, rgb(95, 209, 249) 100.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.fourth:before {
  background: linear-gradient(110.1deg, #33d9e8 1%, #ddf7f7 99%);
}
.box-showcase.fourth .box-showcase-inner .showcase-content .showcase-product-price {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, #191dc6 0%, #b4b8e8 100.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase.fourth .box-showcase-inner .showcase-content .showcase-product-trial {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, #191dc6 0%, #b4b8e8 100.2%);
}
.box-showcase.fourth .box-showcase-inner .showcase-content .showcase-product-button {
  background: radial-gradient(circle farthest-corner at 12.3% 19.3%, #191dc6 0%, #b4b8e8 100.2%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.box-showcase:hover {
  padding-top: 50px;
}

/* End Box-Showcase */
/* Start ColorPicker */
.colorpicker .colorpicker-color {
  height: 20px;
}

/* End ColorPicker */
/* Start Page Card */
.row .col-md-12 .card-line,
.row .col-md-6 .card-line,
.row .col-md-4 .card-line {
  margin-bottom: 10px;
}
.row .col-md-12:last-child .card-line,
.row .col-md-6:last-child .card-line,
.row .col-md-4:last-child .card-line {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .row .col-md-12:nth-last-child(2) .card-line,
  .row .col-md-6:nth-last-child(2) .card-line,
  .row .col-md-4:nth-last-child(2) .card-line {
    margin-bottom: 0;
  }
}

/* End Page Card */
@keyframes gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
body.loading-active {
  overflow: hidden;
}
body.loading-active #content .page-header {
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
  font-size: 0;
  margin-bottom: 20px;
  height: 33px;
  width: 40%;
  display: block;
  padding: 0;
  border-radius: 6px;
}
body.loading-active #content .page-header small {
  font-size: 0;
}
body.loading-active #content .alert {
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
  color: transparent;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
}
body.loading-active #content .alert a {
  color: transparent;
}
body.loading-active #content .saved-filters {
  position: relative;
}
body.loading-active #content .saved-filters:after {
  content: "";
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  position: absolute;
}
body.loading-active #content .datagrid .datagrid-filter form {
  position: relative;
  margin-bottom: 10px;
}
body.loading-active #content .datagrid .datagrid-filter form:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
}
body.loading-active #content .datagrid .loading-pager-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 35px;
  width: 100%;
}
body.loading-active #content .datagrid .loading-datagrid {
  margin-top: 20px;
  border: 1px solid #c9d2e3;
  overflow: hidden;
  border-radius: 6px;
}
body.loading-active #content .datagrid .loading-datagrid .loading-row {
  height: 52px;
  width: 100%;
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
}
body.loading-active #content .datagrid .loading-datagrid .loading-row:nth-child(odd) {
  background: linear-gradient(-90deg, #fefefe, #f2f2f2, #fefefe, #f2f2f2);
  background-size: 200% 200%;
  animation: gradient 6s ease infinite;
}
body.loading-active #content .datagrid .loading-datagrid .loading-row:first-child {
  height: 37.5px;
}
body.loading-active .page-button {
  width: 200px;
  height: 21px;
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
}
body.loading-active .page-button > a {
  font-size: 0;
}
body.loading-active .not-found-placeholder {
  height: 200px;
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
}
body.loading-active .loading-md {
  width: 25%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
}
body.loading-active .loading-lg {
  flex: 0 0 40%;
  height: 100%;
  border-radius: 6px;
  background: linear-gradient(-90deg, #f6f6f6, #e5e5e5, #f6f6f6, #e5e5e5);
  background-size: 400% 400%;
  animation: gradient 6s ease infinite;
}

.landing-page .landing-page-title {
  text-align: center;
  font-size: 30px;
  margin-bottom: 50px;
  color: #212837;
  font-weight: 500;
}
.landing-page .landing-top-image {
  margin-bottom: 70px;
  text-align: center;
}
.landing-page .landing-top-image img {
  max-width: 140px;
}
.landing-page .landing-content .landing-line:not(:last-child) {
  margin-bottom: 70px;
}
.landing-page .landing-content .landing-line p {
  font-size: 16px;
  font-weight: 500;
}
.landing-page .landing-content .landing-line h2 {
  text-align: center;
  color: #028824;
  margin-bottom: 20px;
  font-size: 20px;
  text-decoration: underline;
  font-weight: 700;
}
.landing-page .landing-content .landing-line h3 {
  color: #212837;
  font-size: 24px;
  margin-bottom: 20px;
}
.landing-page .landing-content .landing-line .step {
  text-align: center;
}
.landing-page .landing-content .landing-line span {
  font-size: 16px;
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
.landing-page .landing-content .landing-line p {
  font-weight: 600;
}
.landing-page .landing-content .landing-line iframe {
  height: 250px;
  background: linear-gradient(-90deg, #fefefe, #f2f2f2, #fefefe, #f2f2f2);
  background-size: 200% 200%;
  animation: gradient 6s ease infinite;
}
.landing-page .landing-content .landing-line .landing-thumb {
  margin-bottom: 50px;
}
.landing-page .landing-content .landing-line .landing-thumb div {
  text-align: center;
}
.landing-page .landing-content .landing-line .landing-thumb div img {
  border-radius: 50%;
  margin-bottom: 20px;
  max-width: 80%;
}
.landing-page .landing-content .landing-line .landing-thumb div span {
  display: block;
  font-size: 20px;
  font-weight: 500;
}
.landing-page .landing-content .landing-line .modal-content p {
  text-align: left;
  font-weight: 400;
  font-size: 14px;
}

.success-page {
  text-align: center;
}
.success-page .success-image {
  margin-bottom: 30px;
}
.success-page .success-image i {
  font-size: 60px;
  color: #028824;
}
.success-page .success-title {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}
.success-page .success-content {
  max-width: 70%;
  margin: 0 auto;
}
.success-page .success-content p {
  margin-bottom: 20px;
}

.dropdown-menu.dropdown-notification .dropdown-notification-item:last-child {
  border-bottom: none;
}

canvas {
  max-height: 264px !important;
}
@media (max-width: 1366px) {
  canvas {
    max-height: 240px !important;
  }
}

.select-language {
  position: relative;
  height: auto;
  display: flex;
  align-items: center;
}
@media (min-width: 991.98px) {
  .select-language.language-with-margin {
    margin-right: 30px;
  }
}
@media (max-width: 991.98px) {
  .select-language.language-with-margin {
    margin-right: 20px;
  }
}
.select-language a {
  text-decoration: none;
  display: block;
  padding: 0;
  transition: all ease 0.5s;
}
.select-language a.current-language {
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
}
.select-language a.current-language img {
  border: 1px solid #c9d2e3;
  border-radius: 3px;
}
.select-language a img {
  height: 30px;
  width: 40px;
  padding: 5px;
}
.select-language a span {
  margin-left: 0;
  color: #212837;
  font-size: 14px;
  text-transform: capitalize;
}
.select-language .dropdown-language {
  min-width: 300px;
  padding: 10px;
  z-index: 1050;
}
.select-language .dropdown-language.show {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 5px;
}
.select-language .dropdown-language .language-item {
  transition: all ease 0.5s;
  width: auto;
}
.select-language .dropdown-language .language-item:hover {
  background: #f0f2f6;
}
.select-language .dropdown-language .language-item.selected {
  background: #f0f2f6;
  position: relative;
}
.select-language .dropdown-language .language-item.selected a {
  padding-right: 10px;
}
.select-language .dropdown-language .language-item.selected:after {
  font-family: "Font Awesome 5 Free";
  content: "\f058";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #028824;
  z-index: 2;
}
@media (max-width: 768px) {
  .select-language .dropdown-language {
    min-width: 200px;
    padding: 10px;
  }
  .select-language .dropdown-language .language-item {
    width: 130px;
  }
  .select-language .dropdown-language .language-item a span {
    font-size: 12px;
  }
}

.admin-dropdown-menu {
  min-width: 200px;
}

.change-account-container .change-account-select .select2-container {
  width: 100% !important;
}
.change-account-container .change-account-select .select2-container .select2-selection {
  display: block;
  width: 100%;
  -moz-padding-start: calc(0.75rem - 3px);
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #3c4e71;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%233c4e71' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px 12px;
  border-radius: 6px;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
  margin: 0;
  padding: 0;
}
.change-account-container .change-account-select .select2-container .select2-selection .select2-selection__arrow {
  display: none;
}
.change-account-container .change-account-button {
  text-align: center;
}

.full-modal-close {
  position: absolute;
  right: 50px;
  top: 50px;
  font-size: 20px;
}
@media (max-width: 991.98px) {
  .full-modal-close {
    right: 20px;
    top: 20px;
  }
}

.modal.custom-cover {
  background: transparent;
}
.modal.custom-cover .btn-close {
  background: url("../img/icon/modal-close.svg") no-repeat center center;
  opacity: 0.8;
}

.bg-forest-green {
  background: #108043;
}

.modal-sub-title {
  font-size: 14px;
  font-weight: 500;
  color: #3c4e71;
  border-bottom: 1px solid #c9d2e3;
  padding-bottom: 10px;
}

.product-custom-modal {
  max-width: 700px;
}

@media (max-width: 600px) {
  .product-custom-modal,
  .change-account-modal,
  .rate-us-modal {
    min-width: unset;
    max-width: 100%;
  }
}
.rate-inputs {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: row-reverse;
}
.rate-inputs:not(:checked) > input {
  position: absolute;
  top: -9999px;
}
.rate-inputs:not(:checked) > label {
  width: 1em;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
  font-size: 40px;
  color: #ccc;
}

.rate-inputs:not(:checked) > label:before {
  content: "★ ";
}

.rate-inputs > input:checked ~ label {
  color: #ffe111;
}

.rate-inputs:not(:checked) > label:hover,
.rate-inputs:not(:checked) > label:hover ~ label {
  color: #ffe111;
}

.rate-inputs > input:checked + label:hover,
.rate-inputs > input:checked + label:hover ~ label,
.rate-inputs > input:checked ~ label:hover,
.rate-inputs > input:checked ~ label:hover ~ label,
.rate-inputs > label:hover ~ input:checked ~ label {
  color: #ffe111;
}

.account-row {
  display: flex;
  padding: 10px 10px 5px;
  border-bottom: 1px solid #c9d2e3;
}
.account-row .account-column {
  display: flex;
  align-items: flex-start;
  flex: 1;
}
.account-row .account-column.account-column-left {
  padding-right: 10px;
}
.account-row .account-column.account-column-right {
  align-items: center;
  width: 100%;
}
.account-row .account-column.account-column-right .account-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 500;
}
.account-row .account-column i {
  font-size: 40px;
  margin-right: 20px;
  color: #3a3a3a;
}
.account-row .account-column .account-content {
  flex: 1 0 0;
}
.account-row .account-column .account-content div {
  font-weight: 600;
  font-size: 16px;
}
.account-row .account-column .account-content p {
  font-size: 13px;
  color: #212837;
}
@media (max-width: 991.98px) {
  .account-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

.account-right-content .account-row {
  flex-direction: column;
  margin-bottom: 20px;
  border: none;
}

.banner-title {
  font-size: 18px;
}

.banner-text {
  height: 90px;
}

#product-result-list {
  max-height: 300px;
  overflow-y: auto;
}
#product-result-list .empty-row {
  height: 150px;
}
#product-result-list table .image {
  min-width: 80px;
}
#product-result-list table .price {
  min-width: 100px;
}
#product-result-list table .title {
  min-width: 200px;
}
#product-result-list table .action {
  min-width: 162px;
}

.product-view-table .w-60px {
  flex: 0 0 60px;
}
.product-view-table .move {
  min-width: 50px;
}
.product-view-table .no {
  min-width: 50px;
}
.product-view-table .product {
  width: 50%;
}
.product-view-table .vendor {
  min-width: 130px;
}
.product-view-table .price {
  min-width: 120px;
}
.product-view-table .remove {
  min-width: 120px;
}
.product-view-table .customer {
  width: 30%;
}
@media (max-width: 991.98px) {
  .product-view-table .move {
    min-width: 50px;
  }
  .product-view-table .no {
    min-width: 50px;
  }
  .product-view-table .product {
    min-width: 350px;
  }
  .product-view-table .vendor {
    min-width: 130px;
  }
  .product-view-table .price {
    min-width: 120px;
  }
  .product-view-table .remove {
    min-width: 120px;
  }
  .product-view-table .customer {
    min-width: 120px;
  }
  .product-view-table .date {
    min-width: 150px;
  }
}

.user-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #8498be;
  color: #ffffff;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-buttons {
  display: flex;
  margin-bottom: 20px;
}
.page-buttons .page-button {
  margin-right: 10px;
}
.page-buttons .page-button > a {
  text-decoration: none;
  color: #212837;
  font-weight: 500;
}
.page-buttons .page-button > a i {
  color: #212837;
  margin-right: 5px;
}

.theme-page .card-content {
  position: relative;
}
.theme-page .card-content #theme-placeholder {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #ebeef4;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  flex-direction: column;
  color: #212837;
}
.theme-page .card-content #theme-placeholder i {
  font-size: 50px;
  margin-bottom: 10px;
}
.theme-page .card-content #theme-placeholder div {
  font-size: 36px;
}

.title-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.title-row i {
  color: #ffffff;
  height: 20px;
  width: 20px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  padding: 0;
}
.title-row i.fa-angle-down {
  font-size: 10px;
  width: 10px;
}
.title-row .title-badges {
  display: flex;
  justify-content: space-between;
}
.title-row .title-badges > div {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 2px;
}
.title-row .title-badges > div span {
  padding: 2px;
  display: flex;
}

.jstree-default .jstree-icon:empty {
  font-size: 20px;
}

.setup-heading {
  text-align: center;
}
.setup-heading h2 {
  font-size: 40px;
  margin-bottom: 20px;
}
.setup-heading p {
  font-size: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .setup-heading {
    margin-top: 20px;
  }
  .setup-heading h2 {
    font-size: 20px;
    margin: 10px 0;
  }
  .setup-heading p {
    font-size: 16px;
  }
}

/* Start Setup Wizard */
.setup-wizard {
  background: #ffffff;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
  width: 840px;
  margin: 0 auto;
}
@media (max-width: 991.98px) {
  .setup-wizard {
    width: unset;
  }
}
.setup-wizard .form-control.valid {
  background-image: linear-gradient(#8498be, #8498be), linear-gradient(#D2D2D2, #D2D2D2);
  background-size: 0 2px, 100% 1px;
  background-repeat: no-repeat;
  background-position: center bottom, center calc(100% - 1px) !important;
  background-color: transparent;
  transition: background 0s ease-out;
}
.setup-wizard .form-group.is-focused .form-control {
  outline: none;
  background-image: linear-gradient(#8498be, #8498be), linear-gradient(#D2D2D2, #D2D2D2);
  background-size: 100% 2px, 100% 1px;
  box-shadow: none;
  transition-duration: 0.3s;
}
.setup-wizard label {
  margin-bottom: 5px;
}
.setup-wizard .slider-preview-item div {
  text-align: center;
}
.setup-wizard .slider-preview-item div h3 {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
}
.setup-wizard .slider-preview-item div img {
  width: 50%;
  margin: 0 auto;
}

/* End Setup Wizard */
/* Start Setup Progress */
.setup-progress {
  padding: 30px;
}
.setup-progress .loader {
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.setup-progress .loader .circle {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.setup-progress .loader .circle:before {
  content: "";
  width: 20px;
  height: 20px;
  border-radius: 50%;
  opacity: 0.7;
  animation: scale 2s infinite cubic-bezier(0, 0, 0.49, 1.02);
}
.setup-progress .loader-content {
  display: flex;
  align-items: center;
}
.setup-progress .loader-content .setup-image {
  text-align: center;
  margin-bottom: 40px;
  flex: 0 0 50%;
}
.setup-progress .loader-content .setup-image img {
  max-height: 400px;
}
.setup-progress .loader-content .setup-text {
  margin-bottom: 60px;
}
.setup-progress .loader-content .setup-text p {
  font-size: 32px;
  color: #3a3a3a;
  font-weight: 700;
  line-height: 50px;
}
.setup-progress .loader-content .setup-text div {
  color: #3a3a3a;
  font-size: 20px;
}

.circle-1 {
  background-color: #49b8e5;
}
.circle-1:before {
  background-color: #49b8e5;
  animation-delay: 200ms;
}

.circle-2 {
  background-color: #1e98d4;
}
.circle-2:before {
  background-color: #1e98d4;
  animation-delay: 400ms;
}

.circle-3 {
  background-color: #2a92d0;
}
.circle-3:before {
  background-color: #2a92d0;
  animation-delay: 600ms;
}

.circle-4 {
  background-color: #3a88c8;
}
.circle-4:before {
  background-color: #3a88c8;
  animation-delay: 800ms;
}

.circle-5 {
  background-color: #507cbe;
}
.circle-5:before {
  background-color: #507cbe;
  animation-delay: 1000ms;
}

@keyframes scale {
  0% {
    transform: scale(1);
  }
  50%, 75% {
    transform: scale(2.5);
  }
  78%, 100% {
    opacity: 0;
  }
}
/* End Setup Progress */
.swiper .swiper-slide {
  height: auto;
}
.swiper.showcase-type-slider {
  padding-bottom: 30px;
}
.swiper.showcase-type-slider h2 {
  text-align: center;
  font-size: 16px;
}
.swiper.showcase-type-slider .image-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.swiper.showcase-type-slider .image-group .btn {
  margin-top: 10px;
}
.swiper.showcase-type-slider .image-group .image-container {
  height: 100%;
  padding: 3px;
  border: 1px solid #c9d2e3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.swiper.showcase-type-slider .swiper-pagination {
  bottom: 0;
}

#change-plan-container {
  margin: 0 auto;
}
#change-plan-container .charge-title {
  margin-bottom: 30px;
}
#change-plan-container .charge-selection {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e6e7e7;
  transition: all ease 0.3s;
  background: #ffffff;
}
#change-plan-container .charge-selection .charge-title {
  margin-bottom: 30px;
}
#change-plan-container .charge-selection .charge-title h2 {
  color: #190c09;
  font-size: 18px;
}
#change-plan-container .charge-selection .charge-title p {
  color: #888381;
  font-size: 13px;
}
#change-plan-container .charge-selection .charge-price {
  margin-bottom: 20px;
}
#change-plan-container .charge-selection .charge-price h2 {
  font-size: 28px;
  color: #190c09;
}
#change-plan-container .charge-selection .charge-price p {
  color: #888381;
  font-size: 14px;
}
#change-plan-container .charge-selection .charge-button {
  display: block;
  text-align: center;
  line-height: 40px;
  font-weight: 700;
  border: 2px solid #3e3331;
  border-radius: 10px;
  color: #3e3331;
  margin-bottom: 20px;
  text-decoration: none;
  user-select: none;
  transition: all ease 0.3s;
}
#change-plan-container .charge-selection .charge-button.selected, #change-plan-container .charge-selection .charge-button:hover {
  background: #3e3331;
  color: #ffffff;
}
#change-plan-container .charge-selection .charge-detail div {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}
#change-plan-container .charge-selection .charge-detail div i {
  margin-right: 10px;
  color: #56e6a5;
}
#change-plan-container .charge-selection .charge-detail div p {
  margin-bottom: 0;
  color: #888381;
}
#change-plan-container .charge-selection .charge-detail div p strong {
  color: #190c09;
}
#change-plan-container .charge-selection:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#change-plan-container .included-plans h2 {
  margin-bottom: 30px;
  font-size: 30px;
}
#change-plan-container .included-plans .included-plan {
  border-radius: 20px;
  padding: 20px;
  border: 1px solid #e6e7e7;
  transition: all ease 0.3s;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
}
#change-plan-container .included-plans .included-plan i {
  font-size: 20px;
  margin-right: 20px;
}
#change-plan-container .included-plans .included-plan div h4 {
  font-size: 18px;
  color: #212837;
}
#change-plan-container .included-plans .included-plan div p {
  color: #212837;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.success-notes .card {
  height: 100%;
}

.tour-content {
  width: 600px;
  background: #ffffff;
  padding: 30px;
  border: 1px solid #c9d2e3;
  border-radius: 6px;
}

.tour-pictures {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.tour-pictures a {
  margin: 0 10px;
  display: block;
}
.tour-pictures a img {
  border: 1px solid #c9d2e3;
}

.tour-article-title {
  font-weight: 500;
  font-size: 16px;
  margin-bottom: 20px;
}

.tour-articles div p {
  font-size: 13px;
  margin-bottom: 10px;
}
.tour-articles div p:last-child {
  margin-bottom: 0;
}

.introjs-tooltip {
  max-width: 450px !important;
  width: 450px !important;
}

.included-plans h2 {
  margin-bottom: 30px;
  font-size: 30px;
}
.included-plans .included-plan {
  border-radius: 6px !important;
  padding: 20px;
  border: 1px solid #e6e7e7;
  transition: all ease 0.3s;
  background: #ffffff;
  display: flex;
  align-items: flex-start;
  height: 100%;
}
.included-plans .included-plan img,
.included-plans .included-plan i {
  font-size: 20px;
  margin-right: 20px;
  color: #3c4e71;
}
.included-plans .included-plan div h4 {
  font-size: 18px;
  color: #3c4e71;
}
.included-plans .included-plan div p {
  color: #3c4e71;
  font-size: 13px;
  line-height: 20px;
  margin-bottom: 0;
}

.setup-promotions {
  margin: 0 auto;
}
.setup-promotions .promotion-item {
  padding: 15px;
  border: 1px solid #EEEEEE;
  margin-right: 10px;
  height: 100%;
}
.setup-promotions .promotion-item:last-child {
  margin-right: 0;
}

.setup-text {
  width: 90%;
  margin: 0 auto;
  font-weight: 500;
}
.setup-text > div {
  font-size: 24px;
  color: #1a1a1a;
  margin-bottom: 10px;
}
.setup-text > div.setup-row {
  font-size: 16px;
  color: #212837;
  font-weight: 400;
  margin-bottom: 10px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
}
.setup-text > div.setup-row i {
  margin-right: 10px !important;
  font-style: normal;
  font-family: Segoe UI Emoji;
  font-size: 1.8em;
}
.setup-text h2 {
  font-weight: 500;
}
.setup-text h4 {
  margin: 20px 0;
  text-align: left;
}
.setup-text p {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 0;
  font-weight: 400;
}
@media (max-width: 768px) {
  .setup-text {
    width: 100%;
  }
  .setup-text > div {
    font-size: 20px;
  }
  .setup-text > div.setup-row {
    font-size: 14px;
    align-items: flex-start;
  }
  .setup-text h4 {
    font-size: 18px;
  }
  .setup-text p {
    font-size: 15px;
  }
}

.setup-links {
  text-align: center;
}
.setup-links div a {
  font-size: 16px;
  text-decoration: none;
}
.setup-links div a i {
  margin-right: 5px;
  font-size: 16px;
  color: #1a1a1a;
}

#setup-content .setup-detail {
  text-align: center;
}
#setup-content .setup-detail .setup-image {
  height: 340px;
  margin: 0 auto;
}
@media (max-width: 1365px) {
  #setup-content .setup-detail .setup-image {
    height: 200px;
  }
}
#setup-content .setup-detail .setup-image img {
  max-height: 100%;
}
#setup-content .setup-detail .loader-content {
  text-align: center;
  display: flex;
  justify-content: center;
}
#change-plan-container .charge-title {
  margin-bottom: 30px;
}
#change-plan-container .charge-selection {
  border-radius: 6px;
  padding: 20px;
  border: 1px solid #e6e7e7;
  transition: all ease 0.3s;
  background: #ffffff;
}
#change-plan-container .charge-selection .charge-title {
  margin-bottom: 0;
}
#change-plan-container .charge-selection .charge-title h2 {
  color: #1a1a1a;
  font-size: 18px;
  display: flex;
  justify-content: space-between;
}
#change-plan-container .charge-selection .charge-title h2 i {
  color: #3c4e71;
  font-weight: 300;
  cursor: pointer;
}
#change-plan-container .charge-selection .charge-title p {
  color: #212837;
  font-size: 13px;
}
@media (min-width: 1024px) {
  #change-plan-container .charge-selection .charge-title p {
    height: 50px;
  }
}
#change-plan-container .charge-selection .charge-price {
  margin-bottom: 20px;
}
#change-plan-container .charge-selection .charge-price h2 {
  font-size: 28px;
}
#change-plan-container .charge-selection .charge-price h2 span {
  color: #212837;
  font-size: 14px;
}
#change-plan-container .charge-selection .charge-price p {
  color: #212837;
  font-size: 14px;
}
#change-plan-container .charge-selection s-button {
  display: block;
  margin-bottom: 16px;
}
#change-plan-container .charge-selection .charge-detail div {
  display: flex;
  align-items: center;
}
#change-plan-container .charge-selection .charge-detail div:not(:last-child) {
  margin-bottom: 15px;
}
#change-plan-container .charge-selection .charge-detail div i {
  margin-right: 10px;
  color: #212837;
}
#change-plan-container .charge-selection .charge-detail div p {
  margin-bottom: 0;
  color: #212837;
}
#change-plan-container .charge-selection:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.overflow-unset {
  overflow: unset;
}

.overflow-column {
  word-break: break-all;
}

.CodeMirror-placeholder {
  color: #cccccc !important;
}

.dropzone {
  background: white;
  border-radius: 5px;
  border: 2px dashed #c9d2e3;
  border-image: none;
}
.dropzone .preview-image {
  margin-bottom: 10px;
}
.dropzone .preview-image i {
  font-size: 50px;
  color: #c9d2e3;
}
.dropzone .preview-text {
  color: #212837;
  font-size: 20px;
}
.dropzone.dz-started {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.swiper-content {
  padding: 0 40px;
}

.swiper .swiper-wrapper {
  padding-bottom: 50px;
}
.swiper .swiper-wrapper .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  color: #1a1a1a;
}
.swiper .swiper-button-next,
.swiper .swiper-button-prev {
  color: #1a1a1a;
}

.background-gradient-gray {
  background: linear-gradient(to left, rgba(67, 82, 88, 0.6), rgb(67, 82, 88)) !important;
}

.background-gradient-blue {
  background: linear-gradient(to left, rgba(28, 151, 211, 0.6), rgb(28, 151, 211)) !important;
}

.background-gradient-orange {
  background: linear-gradient(to left, rgba(242, 106, 44, 0.6), rgb(242, 106, 44)) !important;
}

.background-gradient-green {
  background: linear-gradient(to left, rgba(93, 187, 71, 0.6), rgb(93, 187, 71)) !important;
}

.background-dark-green {
  background: rgb(65, 127, 69);
}

.light-blue-color {
  color: #3a3a3a;
}

a:focus {
  outline: none;
}

#sidebar-container .sidebar {
  border: 1px solid #c9d2e3;
  background: #ffffff;
  border-radius: 6px;
}
#sidebar-container .sidebar .sidebar-heading {
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  border-bottom: 1px solid #c9d2e3;
  border-radius: 6px 6px 0 0;
}
#sidebar-container .sidebar .sidebar-content {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item {
  overflow: hidden;
  border-radius: 6px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-heading {
  font-size: 15px;
  font-weight: 600;
  padding: 20px;
  background: #ffffff;
  user-select: none;
  cursor: pointer;
  border-bottom: 1px solid #c9d2e3;
  position: relative;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-heading > i {
  margin-right: 10px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-heading > i:not(.navigate) {
  color: #3a3a3a;
  font-size: 18px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-heading > i.navigate {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  opacity: 0;
  pointer-events: none;
  border-radius: 6px;
  transform: translateX(-500px);
  transition: all ease 0.4s;
  z-index: 3;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-title {
  display: none;
  padding: 20px;
  user-select: none;
  border-bottom: 1px solid #c9d2e3;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  background: #f5f5f5;
  height: 64px;
  border-radius: 6px 6px 0 0;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-title i {
  margin-right: 20px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-list {
  max-height: 436px;
  overflow-y: auto;
  background: #ffffff;
  border-radius: 0 0 6px 6px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-list .sidebar-item-line {
  padding: 10px 20px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-list .sidebar-item-line .form-group {
  margin-bottom: 0;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-list .sidebar-item-line .form-group .form-label {
  font-size: 14px;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-list .sidebar-item-line .form-group .form-control {
  font-size: 14px !important;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-item-list .sidebar-item-line .form-group .form-check label {
  user-select: none;
  cursor: pointer;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-accordion .sidebar-accordion-title {
  padding: 20px;
  background: #f5f5f5;
  cursor: pointer;
  user-select: none;
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid #ffffff;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-accordion .sidebar-accordion-content {
  display: none;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content .sidebar-accordion.sidebar-accordion-active .sidebar-accordion-content {
  display: none;
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content.sidebar-active {
  opacity: 1;
  pointer-events: all;
  transform: translateX(0);
}
#sidebar-container .sidebar .sidebar-content .sidebar-item .sidebar-item-content.sidebar-active .sidebar-item-title {
  display: block;
}

body.page-template .app-content {
  margin-left: 0;
}

.upgrade-your-plan {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 60px;
  width: 100%;
  height: calc(100% - 60px);
  background: rgba(14, 12, 12, 0.4);
  transition: all ease 0.5s;
  cursor: not-allowed;
  z-index: 55;
  display: flex;
  align-items: center;
  justify-content: center;
}
.upgrade-your-plan:hover {
  opacity: 1;
}

.blurred-content {
  transition: all ease 0.3s;
}
.blurred-content:hover label,
.blurred-content:hover select,
.blurred-content:hover small,
.blurred-content:hover input,
.blurred-content:hover div:not(.upgrade-your-plan) {
  opacity: 0.8;
}

.menu-item-row-plan-container {
  position: relative;
}
.menu-item-row-plan-container .upgrade-your-plan {
  top: 0 !important;
  height: 100% !important;
}

.card .upgrade-your-plan {
  top: 0 !important;
  height: 100% !important;
  background: rgba(14, 12, 12, 0.4);
}

.autocomplete-suggestions {
  text-align: left;
  cursor: default;
  border: 1px solid #ccc;
  border-top: 0;
  background: #fff;
  box-shadow: -1px 1px 3px rgba(0, 0, 0, 0.1);
  /* core styles should not be changed */
  position: absolute;
  display: none;
  z-index: 9999;
  max-height: 254px;
  overflow: hidden;
  overflow-y: auto;
  box-sizing: border-box;
}

.autocomplete-suggestion {
  position: relative;
  padding: 0 0.6em;
  line-height: 23px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.02em;
  color: #333;
}

.autocomplete-suggestion b {
  font-weight: normal;
  color: #1f8dd6;
}

.autocomplete-suggestion.selected {
  background: #f0f0f0;
}

.sidebar-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 100;
}
.sidebar-overlay.active {
  display: block;
}

.action-modal .col-12 {
  margin-bottom: 10px;
}
.action-modal .col-12:last-child {
  margin-bottom: 0;
}

.selected-customer {
  display: none;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  padding-bottom: 40px;
}
.selected-customer.show {
  display: grid;
}
.selected-customer .selected-customer-left div {
  font-weight: 500;
  font-size: 15px;
}
.selected-customer .selected-customer-left span {
  font-size: 13px;
  color: #212837;
}
.selected-customer .selected-customer-right {
  text-align: right;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 30px;
}
.lds-ellipsis div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: #212837;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 8px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 8px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 32px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 56px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}
.search-container {
  position: relative;
}
.search-container i {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1002;
}
.search-container input {
  padding-left: 35px;
}

.app-sidebar-mobile-toggled {
  overflow: hidden;
}
.app-sidebar-mobile-toggled.wholesale_invoice, .app-sidebar-mobile-toggled.credit_note, .app-sidebar-mobile-toggled.proforma_invoice {
  overflow: hidden;
}

@media (max-width: 768px) {
  #supportForm .list-group-item {
    padding-left: 0 !important;
  }
}

.upgrade-plan-container {
  padding: 0 !important;
}
@media (max-width: 768px) {
  .upgrade-plan-container {
    background: #1a1a1a;
  }
}
.upgrade-plan-container .upgrade-plan {
  padding: 20px;
  background: url("../img/wave.png") no-repeat right top;
  background-size: 690px;
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-left {
  height: 480px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-left img {
  height: 340px;
}
@media (max-width: 768px) {
  .upgrade-plan-container .upgrade-plan .upgrade-plan-left {
    height: 220px;
  }
  .upgrade-plan-container .upgrade-plan .upgrade-plan-left img {
    height: 200px;
  }
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-right {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-right h2 {
  color: #ffffff;
  margin: 20px 0;
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-right .btn {
  background: #ffffff;
  border: 1px solid #ffffff;
  color: #1a1a1a;
  font-weight: 500;
  font-size: 15px;
  margin-top: 20px;
  transition: all ease 0.3s;
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-right .btn:hover {
  background: #f5f5f5;
}
.upgrade-plan-container .upgrade-plan .upgrade-plan-right p {
  color: #ffffff;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  width: 80%;
  margin: 0 auto;
}

.our-apps a {
  text-decoration: none;
}
.our-apps h5 {
  margin-bottom: 20px;
  font-size: 14px;
  color: #1a1a1a;
}
.our-apps .card-title {
  font-size: 24px;
  font-weight: 500;
}
.our-apps .card-description {
  font-size: 18px;
  line-height: 30px;
}
.our-apps .our-app {
  height: 100%;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .our-apps .card-title {
    font-size: 18px;
  }
  .our-apps .card-title .card-description {
    font-size: 16px;
    line-height: 18px;
  }
}

.app-rating i {
  color: #ffd27d;
}

.setting-form-right {
  line-height: normal;
}

.pace {
  display: none !important;
}

.coming-soon img {
  height: 500px;
  object-fit: scale-down;
}
@media (max-width: 768px) {
  .coming-soon img {
    height: 300px;
  }
}

a.disabled {
  pointer-events: none;
  cursor: default;
}

.ui-draggable:hover {
  cursor: move;
}

.faq-number {
  width: 24px;
}

a.cke_dialog_ui_button.cke_dialog_ui_button_ok.btn-loading {
  pointer-events: none;
  position: relative;
}

.product-tour-js-active {
  overflow-y: hidden;
}

.custom-spinner {
  display: flex;
  width: 45px;
  height: 45px;
  margin: 0 auto;
  font-size: 14px;
}

.app-content {
  top: 0;
  margin-left: 0;
}
@media (min-width: 767.9px) {
  .app-content {
    padding: 30px;
  }
}

.grid-help-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 999;
}

.font-weight-500 {
  font-weight: 500;
}

ui-modal,
ui-title-bar,
ui-save-bar,
ui-nav-menu {
  display: none;
}

a[variant=breadcrumb] {
  font-size: 16px;
  height: 50px;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  color: #212837;
  text-decoration: none;
  min-width: max-content;
}
a[variant=breadcrumb]:hover {
  color: #212837;
}
a[variant=breadcrumb] span:hover {
  text-decoration: underline;
  color: #212837;
}
@media (max-width: 767.98px) {
  a[variant=breadcrumb] {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .brand > i.fa-chevron-right {
    display: none;
  }
}

.promotion-container {
  padding: 0;
  background: #ffffff;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  border-radius: 6px;
}

.promotion-header {
  text-align: center;
  padding: 1.5rem 1.5rem 1rem 1.5rem;
  border-bottom: 1px solid #f3f4f6;
}
@media (max-width: 768px) {
  .promotion-header {
    padding: 1.25rem 1rem 0.875rem 1rem;
  }
}

.promotion-title {
  font-size: 18px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 0.5rem 0;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
@media (max-width: 768px) {
  .promotion-title {
    font-size: 16px;
  }
}

.promotion-subtitle {
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .promotion-subtitle {
    font-size: 13px;
  }
}

.promotion-list {
  padding: 0;
}

.promotion-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid #f3f4f6;
  transition: all 0.2s ease;
}
.promotion-row:last-child {
  border-bottom: none;
}
.promotion-row:hover {
  background: #f1f1f1;
  color: inherit;
  text-decoration: none;
}
.promotion-row:hover .promotion-row-arrow {
  color: #374151;
  transform: translateX(2px);
}
@media (max-width: 768px) {
  .promotion-row {
    flex-wrap: wrap;
    gap: 6px 10px;
    padding: 10px 14px;
  }
  .promotion-row .promotion-row-body {
    flex-basis: calc(100% - 46px);
  }
  .promotion-row .promotion-row-arrow {
    display: none;
  }
}

.promotion-row-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
}
.promotion-row-icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}
@media (max-width: 768px) {
  .promotion-row-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }
  .promotion-row-icon img {
    width: 22px;
    height: 22px;
  }
}

.promotion-row-body {
  flex: 1;
  min-width: 0;
}

.promotion-row-title {
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 2px;
  line-height: 1.3;
}

.promotion-row-desc {
  font-size: 13px;
  margin: 0;
  line-height: 1.4;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 768px) {
  .promotion-row-desc {
    white-space: normal;
  }
}

.promotion-row-badge {
  font-size: 11px;
  font-weight: 500;
  padding: 3px 10px;
  background-color: rgb(213, 235, 255);
  color: rgb(0, 58, 90);
  border-radius: 20px;
  border: 1px solid #e0f2fe;
  white-space: nowrap;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .promotion-row-badge {
    font-size: 10px;
    white-space: normal;
    margin-left: 46px;
  }
}

.promotion-row-arrow {
  font-size: 12px;
  color: #d1d5db;
  flex-shrink: 0;
  transition: all 0.15s ease;
}

.promotion-footer {
  text-align: center;
  padding: 10px 20px 14px;
  border-top: 1px solid #f3f4f6;
}

.promotion-container:not(.is-expanded) .promotion-list > .promotion-row:last-of-type {
  border-bottom: none;
}

.promotion-see-all {
  background: none;
  border: none;
  color: #6b7280;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  padding: 4px 12px;
  border-radius: 4px;
  transition: all 0.15s ease;
}
.promotion-see-all i {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s ease;
}
.promotion-see-all:hover {
  color: #374151;
  background: #f3f4f6;
}
.promotion-see-all.is-expanded i {
  transform: rotate(180deg);
}

.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #212837;
}

.bg-light {
  background-color: #f1f1f1 !important;
}

.table {
  --bs-table-bg: #fff;
  --bs-table-striped-bg: #f1f1f1;
  --bs-table-hover-bg: #ebeef4;
}
.table > thead > tr > * {
  --bs-table-bg: #fff;
  background-color: #fff;
}

.table-hover > thead > tr:hover > *:not(.import-col-selected) {
  --bs-table-accent-bg: transparent !important;
  box-shadow: none !important;
  background-color: #fff !important;
}

.link-style {
  text-decoration: none;
  font-weight: 500;
  color: #212837;
}
.link-style:hover {
  text-decoration: underline;
  color: #212837;
}
.link-style:focus {
  color: #212837;
}

.card {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
}

#edit-preset-delete,
#export-preset-delete {
  height: 35px !important;
}

/* Variables */
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
/* Status Colors */
/* Plan Colors */
/* Breakpoints */
/* Spacing Scale */
/* Z-Index Scale */
/* Component Tokens */
.datagrid .datagrid-filter form {
  display: flex;
  position: relative;
}
.datagrid .datagrid-filter form > .btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-right: none;
}
.datagrid .datagrid-filter form > .btn i {
  margin-left: 10px;
}
.datagrid .datagrid-filter .datagrid-search {
  position: relative;
  flex: 1 0 0;
}
.datagrid .datagrid-filter .datagrid-search .datagrid-search-input {
  padding-left: 35px;
}
.datagrid .datagrid-filter .datagrid-search .datagrid-search-input.single {
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
}
.datagrid .datagrid-filter .datagrid-search input {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.datagrid .datagrid-filter .datagrid-search i {
  position: absolute;
  top: 10px;
  left: 10px;
}
.datagrid .datagrid-filter .filter-menu-dropdown {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 10px);
  width: 100%;
  padding: 10px;
  background: #ffffff;
  border: 1px solid #c9d2e3;
  z-index: 999;
  border-radius: 6px;
}
.datagrid .datagrid-filter .filter-menu-dropdown .filter-menu-dropdown-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  gap: 0.25rem;
}
.datagrid .datagrid-filter.active .filter-menu-dropdown {
  display: block;
}
.datagrid .table-responsive {
  border: 1px solid #c9d2e3;
  border-radius: 6px;
  overflow: auto;
  position: relative;
}
@media (min-width: 768px) {
  .datagrid .table-responsive:has(.dropdown-menu.show) {
    overflow: visible !important;
  }
}
.datagrid .table-responsive table {
  margin-bottom: 0;
}
.datagrid .table-responsive table thead tr {
  border: none;
}
.datagrid .table-responsive table thead tr th {
  border: none;
  border-right: 1px solid #c9d2e3;
  vertical-align: middle;
}
.datagrid .table-responsive table thead tr th .form-check-input {
  cursor: pointer;
}
.datagrid .table-responsive table thead tr th:last-child {
  border-right: none;
}
.datagrid .table-responsive table thead tr th.checkbox {
  text-align: center;
  height: 50px;
  width: 60px;
  min-width: 60px;
  max-width: 60px;
}
.datagrid .table-responsive table thead tr th.checkbox .form-check {
  padding-left: 33px;
}
.datagrid .table-responsive table thead tr th.checkbox .form-check input {
  width: 18px;
  height: 18px;
}
.datagrid .table-responsive table tbody tr:last-child {
  border-bottom: none;
}
.datagrid .table-responsive table tbody tr td {
  vertical-align: middle;
}
.datagrid .table-responsive table tbody tr td:first-child {
  border-left: none;
}
.datagrid .table-responsive table tbody tr td:last-child {
  border-right: none;
}
.datagrid .table-responsive table tbody tr td .datagrid-button {
  background: #ffffff;
  color: #212837;
  border: 1px solid #c9d2e3;
}
.datagrid .table-responsive table tbody tr td.datagrid-checkbox {
  text-align: center;
  max-width: 60px;
  width: 60px;
}
.datagrid .table-responsive table tbody tr td.datagrid-checkbox .form-check {
  padding-left: 33px;
}
.datagrid .table-responsive table tbody tr td.datagrid-checkbox .form-check input {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.datagrid .pagination {
  margin: 0;
  align-items: center;
}
.datagrid .pagination .page-item .page-link:focus {
  outline: none;
  box-shadow: none;
}
.datagrid .pagination .page-item.disabled {
  opacity: 0.5;
  cursor: not-allowed;
  user-select: none;
}
.datagrid .datagrid-page-actions {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 10px;
}
.datagrid .datagrid-page-actions .records-per-page {
  display: flex;
  align-items: center;
  padding: 0;
}
.datagrid .datagrid-page-actions .records-per-page span {
  margin-left: 10px;
}
.datagrid .datagrid-page-actions .pagination-container {
  padding: 0;
}
.datagrid .datagrid-page-actions.footer-page-actions {
  justify-content: space-between;
  padding-top: 20px;
  padding-bottom: 0;
  margin: 0;
}
@media (max-width: 991.98px) {
  .datagrid .datagrid-page-actions .records-per-page span {
    display: none;
  }
  .datagrid .datagrid-page-actions .pagination-container .pagination li {
    display: none;
  }
  .datagrid .datagrid-page-actions .pagination-container .pagination li.active, .datagrid .datagrid-page-actions .pagination-container .pagination li.previous, .datagrid .datagrid-page-actions .pagination-container .pagination li.next {
    display: block;
  }
  .datagrid .datagrid-page-actions.footer-page-actions {
    justify-content: flex-end;
  }
  .datagrid .datagrid-page-actions.footer-page-actions .records-per-page {
    display: none;
  }
}
.datagrid .search-results {
  padding: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.datagrid .datagrid-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 991.98px) {
  .datagrid .datagrid-footer {
    flex-direction: column;
  }
  .datagrid .datagrid-footer .datagrid-footer-total-count {
    margin: 20px 0;
  }
}
.datagrid .badge {
  font-weight: 600;
}

.form-check-input[type=checkbox],
.form-check-input[type=radio] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  margin-right: 0.5rem;
}

.form-check-input:checked[type=checkbox] {
  background: #1a1a1a url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e") !important;
  border-color: #1a1a1a;
}

.form-check-input:indeterminate[type=checkbox] {
  background: #1a1a1a url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23FFFFFF' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M7 10h6'/%3e%3c/svg%3e") !important;
  border-color: #1a1a1a;
}

.form-check-input:focus {
  border-color: #1a1a1a;
  box-shadow: none;
}

.datagrid-action-bar {
  width: calc(100% - 60px);
  height: 49px;
  position: absolute;
  background: #ffffff;
  border-left: 1px solid #c9d2e3;
  right: 0;
  top: 0;
  display: flex;
  align-items: center;
  padding: 0 20px;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
}
.datagrid-action-bar .action-bar-option {
  margin-left: 20px;
  cursor: pointer;
  padding: 0 20px;
}
.datagrid-action-bar .selected-count-container {
  white-space: nowrap;
  font-weight: 500;
}
.datagrid-action-bar .selected-count-container span {
  margin-right: 3px;
}
.datagrid-action-bar .menu-item {
  margin-left: 20px;
}
.datagrid-action-bar .menu-item > a {
  color: #212837;
  font-weight: 500;
}
@media (max-width: 1024px) {
  .datagrid-action-bar {
    right: auto;
    left: 60px;
  }
}

@-moz-document url-prefix() {
  .datagrid-action-bar {
    width: calc(100% - 59.5px);
    left: auto;
  }
  @media (max-width: 1024px) {
    .datagrid-action-bar {
      left: 59.5px;
    }
  }
}
.custom-nav ul {
  margin: 0;
  padding: 0;
}
.custom-nav ul li {
  list-style-type: none;
  position: relative;
}
.custom-nav ul li.active > .dropdown-menu {
  display: block;
}
.custom-nav .first-level-nav {
  margin-left: 20px;
}
.custom-nav .first-level-nav > ul > li.active > a, .custom-nav .first-level-nav > ul > li:hover > a {
  background: #f0f2f6;
  line-height: 48px;
  border-bottom: 1px solid #c9d2e3;
  margin-top: 1px;
}
.custom-nav .first-level-nav > ul > li > a {
  line-height: 50px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  color: #212837;
  border-left: 1px solid #c9d2e3;
  border-right: 1px solid #c9d2e3;
  padding: 0 16px;
  white-space: nowrap;
}
.custom-nav .second-level-nav > ul > li,
.custom-nav .third-level-nav > ul > li,
.custom-nav .forth-level-nav > ul > li,
.custom-nav .fifth-level-nav > ul > li {
  line-height: 20px;
}
.custom-nav .second-level-nav > ul > li a,
.custom-nav .third-level-nav > ul > li a,
.custom-nav .forth-level-nav > ul > li a,
.custom-nav .fifth-level-nav > ul > li a {
  line-height: 36px;
  font-weight: 500;
  text-decoration: none;
  display: block;
  color: #212837;
  padding: 0 16px;
  white-space: nowrap;
}
.custom-nav .second-level-nav > ul > li.active > a, .custom-nav .second-level-nav > ul > li:hover > a,
.custom-nav .third-level-nav > ul > li.active > a,
.custom-nav .third-level-nav > ul > li:hover > a,
.custom-nav .forth-level-nav > ul > li.active > a,
.custom-nav .forth-level-nav > ul > li:hover > a,
.custom-nav .fifth-level-nav > ul > li.active > a,
.custom-nav .fifth-level-nav > ul > li:hover > a {
  background: #f0f2f6;
}
.custom-nav .second-level-nav .dropdown-menu,
.custom-nav .third-level-nav .dropdown-menu,
.custom-nav .forth-level-nav .dropdown-menu,
.custom-nav .fifth-level-nav .dropdown-menu {
  left: 100%;
  top: 0;
}

.has-loading .empty-row,
.has-loading .table-responsive {
  position: relative;
}
.has-loading .empty-row:before,
.has-loading .table-responsive:before {
  content: "";
  width: 28px;
  height: 28px;
  vertical-align: -0.125em;
  border: 0.25em solid #3a3a3a;
  border-right-color: transparent;
  border-radius: 50%;
  animation: 0.75s linear infinite spinner-border;
  position: absolute;
  z-index: 999;
  right: 0;
  left: 0;
  margin: 0 auto;
  top: 0;
  bottom: 0;
  margin-top: auto;
  margin-bottom: auto;
}
.has-loading .empty-row:after,
.has-loading .table-responsive:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.5);
  z-index: 555;
  border-radius: 6px;
}
.has-loading .empty-row:before {
  width: 32px;
  height: 32px;
}

.empty-row {
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #c9d2e3;
  background: #f1f1f1;
  border-radius: 6px;
}
.empty-row i {
  color: #3a3a3a;
  font-size: 40px;
}
.empty-row div {
  margin-top: 10px;
  font-size: 16px;
  color: #212837;
}

.automation-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  text-align: center;
  border: 1px dashed #c9d2e3;
  border-radius: 8px;
  background: #fafbfc;
}
.automation-empty-state .empty-state-illustration {
  margin-bottom: 15px;
}
.automation-empty-state .empty-state-illustration svg {
  width: 226px;
  height: 226px;
}
.automation-empty-state .empty-state-heading {
  font-size: 19px;
  font-weight: 600;
  color: #212837;
  margin-bottom: 10px;
}
.automation-empty-state .empty-state-description {
  font-size: 14px;
  color: #6d7175;
  max-width: 600px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.saved-filters {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
  border-bottom: 1px solid #c9d2e3;
  padding: 0 20px;
  overflow-x: auto;
  overflow-y: hidden;
}
.saved-filters div:not(.auto-refresh-control) {
  flex: 0 0 auto;
  margin-right: 16px;
}
.saved-filters div:not(.auto-refresh-control) a {
  display: block;
  text-decoration: none;
  color: #212837;
  padding: 16px 8px;
  border-bottom: 3px solid transparent;
  border-radius: 4px 4px 0 0;
  margin-bottom: -1px;
  transition: background-color 0.15s ease;
}
.saved-filters div:not(.auto-refresh-control) a:hover {
  border-bottom-color: #c9d2e3;
  color: #212837;
}
.saved-filters div:not(.auto-refresh-control).active a {
  color: #212837;
  border-bottom-color: #1a1a1a;
}

#dashboard-invoices table thead tr th.no {
  padding-left: 0;
}
#dashboard-invoices table thead tr th.status {
  width: 90px;
}
#dashboard-invoices table thead tr th.donation {
  text-align: right;
  padding-right: 0;
  width: 90px;
}
#dashboard-invoices table thead tr th.tree {
  text-align: right;
  padding-right: 0;
  width: 90px;
}
@media (max-width: 991.98px) {
  #dashboard-invoices table thead tr th.no {
    min-width: 30px;
  }
  #dashboard-invoices table thead tr th.store {
    min-width: 240px;
  }
  #dashboard-invoices table thead tr th.status {
    min-width: 90px;
  }
  #dashboard-invoices table thead tr th.donation {
    min-width: 70px;
  }
  #dashboard-invoices table thead tr th.tree {
    min-width: 60px;
  }
}
#dashboard-invoices table tbody tr td {
  vertical-align: middle;
}
#dashboard-invoices .card .card-body {
  display: flex;
  flex-direction: column;
}
#dashboard-invoices .card .card-body .empty-row {
  flex: 1 0 0;
}
@media (max-width: 991.98px) {
  #dashboard-invoices .card .card-body .empty-row {
    flex: 0 0 200px;
  }
}

.custom-datagrid-button .first-level-nav.active > .dropdown-menu {
  display: block;
}

@media (max-width: 1366px) {
  .action-log-table thead .action {
    min-width: 235px;
  }
  .action-log-table thead .date {
    min-width: 110px;
  }
}
.action-log-table thead .date {
  padding-right: 0;
  white-space: nowrap;
}

#paginator-limit {
  max-width: 75px;
}

button.page-link {
  cursor: pointer;
}

.page-link {
  color: #212837;
  padding: 0.35rem 0.75rem;
}

.page-link:focus {
  color: #212837;
  background-color: transparent;
  box-shadow: none;
}

.page-link:focus-visible {
  color: #1a1a1a;
}

@keyframes filterSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@media (max-width: 1366px) {
  .hook-id {
    min-width: 100px;
  }
  .hook-topic {
    min-width: 140px;
  }
  .hook-address {
    min-width: 280px;
  }
  .hook-date {
    min-width: 120px;
  }
  .batch-id {
    min-width: 200px;
  }
  .batch-name {
    min-width: 200px;
  }
  .batch-type {
    min-width: 200px;
  }
  .batch-priority {
    min-width: 120px;
  }
  .batch-message {
    min-width: 450px;
  }
  .batch-created-at {
    min-width: 100px;
  }
  .batch-progress {
    min-width: 400px;
  }
  .batch-status {
    min-width: 90px;
  }
  .actions {
    min-width: 100px;
  }
  #preview-table-wrapper th:nth-child(1), #preview-table-wrapper td:nth-child(1) {
    min-width: 60px;
  }
  #preview-table-wrapper th:nth-child(2), #preview-table-wrapper td:nth-child(2) {
    min-width: 180px;
  }
  #preview-table-wrapper th:nth-child(3), #preview-table-wrapper td:nth-child(3) {
    min-width: 180px;
  }
  #preview-table-wrapper th:nth-child(4), #preview-table-wrapper td:nth-child(4) {
    min-width: 120px;
  }
  #preview-table-wrapper th:nth-child(5), #preview-table-wrapper td:nth-child(5) {
    min-width: 140px;
  }
  #preview-table-wrapper th:nth-child(6), #preview-table-wrapper td:nth-child(6) {
    min-width: 120px;
  }
}
.import-preview-table th {
  min-width: 250px;
}
.import-preview-table .import-col-title {
  min-width: 280px;
}
.import-preview-table .import-col-description {
  min-width: 320px;
}
.import-preview-table .import-col-handle {
  min-width: 220px;
}
.import-preview-table .import-col-vendor,
.import-preview-table .import-col-product_type {
  min-width: 170px;
}
.import-preview-table .import-col-tags {
  min-width: 240px;
}
.import-preview-table .import-col-seo_title {
  min-width: 220px;
}
.import-preview-table .import-col-seo_description {
  min-width: 280px;
}
.import-preview-table .import-col-product_id {
  min-width: 150px;
}
.import-preview-table .import-col-sku,
.import-preview-table .import-col-barcode {
  min-width: 160px;
}
.import-preview-table .import-col-price {
  min-width: 120px;
}
.import-preview-table .import-col-compare_at_price {
  min-width: 200px;
}
.import-preview-table .import-col-cost {
  min-width: 160px;
}
.import-preview-table .import-col-weight {
  min-width: 120px;
}
.import-preview-table .import-col-weight_unit {
  min-width: 145px;
}
.import-preview-table .import-col-inventory_quantity {
  min-width: 210px;
}
.import-preview-table .import-col-option1,
.import-preview-table .import-col-option2,
.import-preview-table .import-col-option3 {
  min-width: 175px;
}
.import-preview-table .import-col-country_of_origin,
.import-preview-table .import-col-province_of_origin {
  min-width: 180px;
}
.import-preview-table .import-col-status {
  min-width: 120px;
}
.import-preview-table .import-col-taxable,
.import-preview-table .import-col-tracked {
  min-width: 120px;
}
.import-preview-table .import-col-requires_shipping {
  min-width: 200px;
}
.import-preview-table .import-col-inventory_policy {
  min-width: 190px;
}
.import-preview-table .import-col-template {
  min-width: 180px;
}
.import-preview-table .import-col-hs_code {
  min-width: 130px;
}
.import-preview-table .import-col-variant_id,
.import-preview-table .import-col-product_id {
  min-width: 150px;
}
.import-preview-table .import-col-tax_code {
  min-width: 130px;
}
.import-preview-table .import-col-gift_card {
  min-width: 130px;
}
.import-preview-table .import-col-published {
  min-width: 130px;
}
.import-preview-table .import-col-product_category {
  min-width: 210px;
}
.import-preview-table .import-col-option1_name,
.import-preview-table .import-col-option2_name,
.import-preview-table .import-col-option3_name {
  min-width: 180px;
}
.import-preview-table .import-col-unit_price_quantity,
.import-preview-table .import-col-unit_price_reference {
  min-width: 215px;
}
.import-preview-table .import-col-unit_price_quantity_unit,
.import-preview-table .import-col-unit_price_reference_unit {
  min-width: 240px;
}
.import-preview-table td {
  height: 37px;
}
.import-preview-table td .cell-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  max-width: 350px;
  word-break: break-word;
}
.import-preview-table .import-col-selected {
  --bs-table-accent-bg: #ebeef4 !important;
  --bs-table-striped-bg: #ebeef4 !important;
  background-color: #ebeef4 !important;
}
.import-preview-table td.import-col-selected,
.import-preview-table th.import-col-selected {
  font-weight: 700 !important;
}

.sortable-col {
  cursor: pointer;
  user-select: none;
}
.sortable-col:hover {
  background: rgba(0, 0, 0, 0.03);
}

.sort-icon {
  color: #c4c4c4;
  font-size: 12px;
  transition: color 0.15s;
}
.sort-icon.sort-active {
  color: #212837;
}

#image-upload-preview .table-sm td:first-child {
  min-width: 180px;
}

@media (max-width: 1366px) {
  table[data-job-type=scheduled] th:nth-child(2), table[data-job-type=scheduled] td:nth-child(2) {
    min-width: 250px;
  }
  table[data-job-type=scheduled] th:nth-child(3), table[data-job-type=scheduled] td:nth-child(3) {
    min-width: 250px;
  }
  table[data-job-type=scheduled] th:nth-child(4), table[data-job-type=scheduled] td:nth-child(4) {
    min-width: 110px;
  }
  table[data-job-type=scheduled] th:nth-child(5), table[data-job-type=scheduled] td:nth-child(5) {
    min-width: 160px;
  }
  table[data-job-type=scheduled] th:nth-child(6), table[data-job-type=scheduled] td:nth-child(6) {
    min-width: 170px;
  }
  table[data-job-type=scheduled-sale] th:nth-child(2), table[data-job-type=scheduled-sale] td:nth-child(2) {
    min-width: 250px;
  }
  table[data-job-type=scheduled-sale] th:nth-child(3), table[data-job-type=scheduled-sale] td:nth-child(3) {
    min-width: 250px;
  }
  table[data-job-type=scheduled-sale] th:nth-child(4), table[data-job-type=scheduled-sale] td:nth-child(4) {
    min-width: 120px;
  }
  table[data-job-type=scheduled-sale] th:nth-child(5), table[data-job-type=scheduled-sale] td:nth-child(5) {
    min-width: 110px;
  }
  table[data-job-type=scheduled-sale] th:nth-child(6), table[data-job-type=scheduled-sale] td:nth-child(6) {
    min-width: 170px;
  }
  table[data-job-type=product-rule] th:nth-child(2), table[data-job-type=product-rule] td:nth-child(2) {
    min-width: 250px;
  }
  table[data-job-type=product-rule] th:nth-child(3), table[data-job-type=product-rule] td:nth-child(3) {
    min-width: 200px;
  }
  table[data-job-type=product-rule] th:nth-child(4), table[data-job-type=product-rule] td:nth-child(4) {
    min-width: 110px;
  }
  table[data-job-type=product-rule] th:nth-child(5), table[data-job-type=product-rule] td:nth-child(5) {
    min-width: 120px;
  }
  table[data-job-type=product-rule] th:nth-child(6), table[data-job-type=product-rule] td:nth-child(6) {
    min-width: 170px;
  }
  table[data-job-type=stock-automation] th:nth-child(2), table[data-job-type=stock-automation] td:nth-child(2) {
    min-width: 250px;
  }
  table[data-job-type=stock-automation] th:nth-child(3), table[data-job-type=stock-automation] td:nth-child(3) {
    min-width: 200px;
  }
  table[data-job-type=stock-automation] th:nth-child(4), table[data-job-type=stock-automation] td:nth-child(4) {
    min-width: 110px;
  }
  table[data-job-type=stock-automation] th:nth-child(5), table[data-job-type=stock-automation] td:nth-child(5) {
    min-width: 120px;
  }
  table[data-job-type=stock-automation] th:nth-child(6), table[data-job-type=stock-automation] td:nth-child(6) {
    min-width: 170px;
  }
}
@media (max-width: 1366px) {
  table[data-grid-type=execution-log] th:nth-child(1), table[data-grid-type=execution-log] td:nth-child(1) {
    min-width: 300px;
  }
  table[data-grid-type=execution-log] th:nth-child(2), table[data-grid-type=execution-log] td:nth-child(2) {
    min-width: 400px;
  }
  table[data-grid-type=execution-log] th:nth-child(3), table[data-grid-type=execution-log] td:nth-child(3) {
    min-width: 150px;
  }
  table[data-grid-type=execution-log] th:nth-child(4), table[data-grid-type=execution-log] td:nth-child(4) {
    min-width: 160px;
  }
  table[data-grid-type=activity-log] th:nth-child(1), table[data-grid-type=activity-log] td:nth-child(1) {
    min-width: 200px;
  }
  table[data-grid-type=activity-log] th:nth-child(2), table[data-grid-type=activity-log] td:nth-child(2) {
    min-width: 300px;
  }
  table[data-grid-type=activity-log] th:nth-child(3), table[data-grid-type=activity-log] td:nth-child(3) {
    min-width: 140px;
  }
  table[data-grid-type=product-rule-log] th:nth-child(1), table[data-grid-type=product-rule-log] td:nth-child(1) {
    min-width: 300px;
  }
  table[data-grid-type=product-rule-log] th:nth-child(2), table[data-grid-type=product-rule-log] td:nth-child(2) {
    min-width: 400px;
  }
  table[data-grid-type=product-rule-log] th:nth-child(3), table[data-grid-type=product-rule-log] td:nth-child(3) {
    min-width: 130px;
  }
  table[data-grid-type=product-rule-log] th:nth-child(4), table[data-grid-type=product-rule-log] td:nth-child(4) {
    min-width: 130px;
  }
  table[data-grid-type=product-rule-log] th:nth-child(5), table[data-grid-type=product-rule-log] td:nth-child(5) {
    min-width: 140px;
  }
  table[data-grid-type=stock-log] th:nth-child(1), table[data-grid-type=stock-log] td:nth-child(1) {
    min-width: 300px;
  }
  table[data-grid-type=stock-log] th:nth-child(2), table[data-grid-type=stock-log] td:nth-child(2) {
    min-width: 400px;
  }
  table[data-grid-type=stock-log] th:nth-child(3), table[data-grid-type=stock-log] td:nth-child(3) {
    min-width: 170px;
  }
  table[data-grid-type=stock-log] th:nth-child(4), table[data-grid-type=stock-log] td:nth-child(4) {
    min-width: 150px;
  }
  table[data-grid-type=stock-log] th:nth-child(5), table[data-grid-type=stock-log] td:nth-child(5) {
    min-width: 140px;
  }
}
.filter-pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #f1f1f1;
  border: 1px solid #c9cccf;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #212b36;
  gap: 8px;
}
.filter-pill .filter-pill-label {
  color: #6d7175;
}
.filter-pill .filter-pill-value {
  color: #212b36;
}
.filter-pill .filter-pill-remove {
  cursor: pointer;
  color: #6d7175;
  margin-left: 4px;
  transition: color 0.15s;
  display: flex;
  align-items: center;
}
.filter-pill .filter-pill-remove:hover {
  color: #bf0711;
}
.filter-pill .filter-pill-remove i {
  font-size: 14px;
}

.rounded-table-wrapper {
  border: 1px solid #c9d2e3;
  border-radius: 0.375rem;
  overflow: hidden;
}
.rounded-table-wrapper > .table {
  border: 0 !important;
  margin: 0 !important;
}
.rounded-table-wrapper > .table td, .rounded-table-wrapper > .table th {
  border-left: 0 !important;
  border-right: 0 !important;
  border-color: #c9d2e3 !important;
}
.rounded-table-wrapper > .table > :first-child > tr:first-child > * {
  border-top: 0 !important;
}
.rounded-table-wrapper > .table > :last-child > tr:last-child > * {
  border-bottom: 0 !important;
}
@media (min-width: 768px) {
  .rounded-table-wrapper > .table > tbody > tr > td:first-child {
    white-space: nowrap;
  }
}
@media (max-width: 767.98px) {
  .rounded-table-wrapper > .table > tbody > tr > td {
    width: 50% !important;
    min-width: 0 !important;
  }
}
.rounded-table-wrapper > .table-striped > tbody > tr:not(.d-none) > td {
  background-color: var(--bs-table-bg) !important;
}
.rounded-table-wrapper > .table-striped > tbody > tr:nth-child(odd of :not(.d-none)) > td {
  background-color: var(--bs-table-striped-bg) !important;
}

.modification-table-wrapper {
  overflow-x: auto;
}
.modification-table-wrapper > .table {
  min-width: 600px;
}
.modification-table-wrapper > .table th:nth-child(1) {
  width: 40px;
}
.modification-table-wrapper > .table th:nth-child(2) {
  min-width: 150px;
}
.modification-table-wrapper > .table th:nth-child(3) {
  min-width: 180px;
}
.modification-table-wrapper > .table th:nth-child(4) {
  min-width: 160px;
}

.variant-diff-wrapper .table-responsive {
  border: 1px solid #c9d2e3;
  border-radius: 6px;
  overflow-x: auto;
  overflow-y: hidden;
}
.variant-diff-wrapper .variant-show-more {
  color: #1956cc;
  text-decoration: none;
}
.variant-diff-wrapper .variant-show-more:hover {
  text-decoration: underline;
}
.variant-diff-wrapper .variant-show-more i {
  transition: transform 0.2s;
}
.variant-diff-wrapper .variant-show-more.is-expanded i {
  transform: rotate(180deg);
}

.variant-diff-table {
  min-width: 400px;
  margin-bottom: 0;
}
.variant-diff-table thead tr {
  border: none;
}
.variant-diff-table thead tr th {
  border: none;
  border-right: 1px solid #c9d2e3;
  vertical-align: middle;
}
.variant-diff-table thead tr th:last-child {
  border-right: none;
}
.variant-diff-table tbody tr:last-child {
  border-bottom: none;
}
.variant-diff-table tbody tr td {
  vertical-align: middle;
}
.variant-diff-table tbody tr td:first-child {
  border-left: none;
}
.variant-diff-table tbody tr td:last-child {
  border-right: none;
}
.variant-diff-table th:first-child,
.variant-diff-table td:first-child {
  width: 30%;
  min-width: 200px;
  white-space: normal;
  word-break: break-word;
}
.variant-diff-table th:nth-child(2),
.variant-diff-table td:nth-child(2),
.variant-diff-table th:nth-child(3),
.variant-diff-table td:nth-child(3) {
  width: 35%;
  min-width: 200px;
}

.batch-stat-icon {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.batch-stat-icon i {
  font-size: 34px;
  color: white;
  filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
}
.batch-stat-icon.batch-stat-yellow {
  background: linear-gradient(145deg, #f9c74f 0%, #f4a261 100%);
  box-shadow: 0 10px 25px -5px rgba(244, 162, 97, 0.4);
}
.batch-stat-icon.batch-stat-green {
  background: linear-gradient(145deg, #52c787 0%, #27ae60 100%);
  box-shadow: 0 10px 25px -5px rgba(39, 174, 96, 0.4);
}
.batch-stat-icon.batch-stat-red {
  background: linear-gradient(145deg, #e74c3c 0%, #c0392b 100%);
  box-shadow: 0 10px 25px -5px rgba(192, 57, 43, 0.4);
}
.batch-stat-icon.batch-stat-gray {
  background: linear-gradient(145deg, #6c7a89 0%, #4a5568 100%);
  box-shadow: 0 10px 25px -5px rgba(74, 85, 104, 0.4);
}
.batch-stat-icon.batch-stat-blue {
  background: linear-gradient(145deg, #5b9bd5 0%, #3a7bd5 100%);
  box-shadow: 0 10px 25px -5px rgba(58, 123, 213, 0.4);
}

#batch-job-create .form-check-input[type=radio],
#create-job-form .form-check-input[type=radio] {
  width: 18px;
  height: 18px;
}

.job-category-card {
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
}
.job-category-card:hover {
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.job-category-card:hover .card-body {
  background-color: rgba(33, 40, 55, 0.02);
}

.icon-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.bg-primary-subtle {
  background-color: rgba(13, 110, 253, 0.1);
}

.bg-success-subtle {
  background-color: rgba(25, 135, 84, 0.1);
}

.bg-danger-subtle {
  background-color: rgba(220, 53, 69, 0.1);
}

.bg-info-subtle {
  background-color: rgba(13, 202, 240, 0.1);
}

.bg-warning-subtle {
  background-color: rgba(255, 193, 7, 0.1);
}

.bg-secondary-subtle {
  background-color: rgba(108, 117, 125, 0.1);
}

#batch-job-create .card-body > p,
#product-rule-form .card-body > p,
#scheduled-sale-form .card-body > p,
#stock-automation-form .card-body > p {
  color: #212529 !important;
}
#batch-job-create .workflow-steps,
#product-rule-form .workflow-steps,
#scheduled-sale-form .workflow-steps,
#stock-automation-form .workflow-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
#batch-job-create .workflow-steps .workflow-step,
#product-rule-form .workflow-steps .workflow-step,
#scheduled-sale-form .workflow-steps .workflow-step,
#stock-automation-form .workflow-steps .workflow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}
#batch-job-create .workflow-steps .workflow-step .step-circle,
#product-rule-form .workflow-steps .workflow-step .step-circle,
#scheduled-sale-form .workflow-steps .workflow-step .step-circle,
#stock-automation-form .workflow-steps .workflow-step .step-circle {
  width: 50px;
  height: 50px;
  min-width: 50px;
  min-height: 50px;
  border-radius: 50%;
  background: #e9ecef;
  border: 3px solid #dee2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  color: #6c757d;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  flex-shrink: 0;
}
#batch-job-create .workflow-steps .workflow-step .step-label,
#product-rule-form .workflow-steps .workflow-step .step-label,
#scheduled-sale-form .workflow-steps .workflow-step .step-label,
#stock-automation-form .workflow-steps .workflow-step .step-label {
  margin-top: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #6c757d;
  transition: all 0.4s ease;
}
#batch-job-create .workflow-steps .workflow-step.active .step-circle,
#product-rule-form .workflow-steps .workflow-step.active .step-circle,
#scheduled-sale-form .workflow-steps .workflow-step.active .step-circle,
#stock-automation-form .workflow-steps .workflow-step.active .step-circle {
  background: #ebebeb;
  border-color: #b1b1b1;
  color: #000;
  box-shadow: 0 4px 16px rgba(177, 177, 177, 0.4);
}
#batch-job-create .workflow-steps .workflow-step.active .step-label,
#product-rule-form .workflow-steps .workflow-step.active .step-label,
#scheduled-sale-form .workflow-steps .workflow-step.active .step-label,
#stock-automation-form .workflow-steps .workflow-step.active .step-label {
  color: #000;
}
#batch-job-create .workflow-steps .workflow-step.completed .step-circle,
#product-rule-form .workflow-steps .workflow-step.completed .step-circle,
#scheduled-sale-form .workflow-steps .workflow-step.completed .step-circle,
#stock-automation-form .workflow-steps .workflow-step.completed .step-circle {
  background: #212837 !important;
  border-color: #212837 !important;
  color: white;
}
#batch-job-create .workflow-steps .workflow-step.completed .step-label,
#product-rule-form .workflow-steps .workflow-step.completed .step-label,
#scheduled-sale-form .workflow-steps .workflow-step.completed .step-label,
#stock-automation-form .workflow-steps .workflow-step.completed .step-label {
  color: #212837 !important;
}
#batch-job-create .workflow-steps .workflow-step-connector,
#product-rule-form .workflow-steps .workflow-step-connector,
#scheduled-sale-form .workflow-steps .workflow-step-connector,
#stock-automation-form .workflow-steps .workflow-step-connector {
  width: 120px;
  height: 3px;
  background: #dee2e6;
  position: relative;
  margin: 0 20px;
  margin-bottom: 30px;
  transition: all 0.4s ease;
}
#batch-job-create .workflow-steps .workflow-step-connector.active,
#product-rule-form .workflow-steps .workflow-step-connector.active,
#scheduled-sale-form .workflow-steps .workflow-step-connector.active,
#stock-automation-form .workflow-steps .workflow-step-connector.active {
  background: #212837 !important;
  box-shadow: 0 2px 8px rgba(33, 40, 55, 0.3);
}
#batch-job-create .workflow-content,
#product-rule-form .workflow-content,
#scheduled-sale-form .workflow-content,
#stock-automation-form .workflow-content {
  animation: slideInUp 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
#batch-job-create .workflow-content.hiding,
#product-rule-form .workflow-content.hiding,
#scheduled-sale-form .workflow-content.hiding,
#stock-automation-form .workflow-content.hiding {
  animation: slideOutDown 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#batch-job-create .step-number,
#product-rule-form .step-number,
#scheduled-sale-form .step-number,
#stock-automation-form .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #212837;
  color: white;
  font-weight: 600;
  font-size: 14px;
  margin-right: 10px;
}
#batch-job-create .job-type-grid,
#product-rule-form .job-type-grid,
#scheduled-sale-form .job-type-grid,
#stock-automation-form .job-type-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 15px;
}
#batch-job-create .job-type-card,
#product-rule-form .job-type-card,
#scheduled-sale-form .job-type-card,
#stock-automation-form .job-type-card {
  position: relative;
}
#batch-job-create .job-type-card .job-type-radio,
#product-rule-form .job-type-card .job-type-radio,
#scheduled-sale-form .job-type-card .job-type-radio,
#stock-automation-form .job-type-card .job-type-radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
#batch-job-create .job-type-card .job-type-radio:checked + .job-type-label,
#product-rule-form .job-type-card .job-type-radio:checked + .job-type-label,
#scheduled-sale-form .job-type-card .job-type-radio:checked + .job-type-label,
#stock-automation-form .job-type-card .job-type-radio:checked + .job-type-label {
  border-color: #212837;
  background: rgba(33, 40, 55, 0.05);
  box-shadow: 0 0 0 3px rgba(33, 40, 55, 0.15);
  transform: translateY(-4px);
}
#batch-job-create .job-type-card .job-type-radio:checked + .job-type-label .job-type-icon,
#product-rule-form .job-type-card .job-type-radio:checked + .job-type-label .job-type-icon,
#scheduled-sale-form .job-type-card .job-type-radio:checked + .job-type-label .job-type-icon,
#stock-automation-form .job-type-card .job-type-radio:checked + .job-type-label .job-type-icon {
  transform: scale(1.15);
}
#batch-job-create .job-type-card .job-type-radio:checked + .job-type-label .job-type-help,
#product-rule-form .job-type-card .job-type-radio:checked + .job-type-label .job-type-help,
#scheduled-sale-form .job-type-card .job-type-radio:checked + .job-type-label .job-type-help,
#stock-automation-form .job-type-card .job-type-radio:checked + .job-type-label .job-type-help {
  opacity: 1;
}
#batch-job-create .job-type-card .job-type-label,
#product-rule-form .job-type-card .job-type-label,
#scheduled-sale-form .job-type-card .job-type-label,
#stock-automation-form .job-type-card .job-type-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 15px 12px;
  border: 2px solid #dee2e6;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 130px;
  position: relative;
}
#batch-job-create .job-type-card .job-type-label:hover,
#product-rule-form .job-type-card .job-type-label:hover,
#scheduled-sale-form .job-type-card .job-type-label:hover,
#stock-automation-form .job-type-card .job-type-label:hover {
  border-color: #000;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}
#batch-job-create .job-type-card .job-type-label:hover .job-type-help,
#product-rule-form .job-type-card .job-type-label:hover .job-type-help,
#scheduled-sale-form .job-type-card .job-type-label:hover .job-type-help,
#stock-automation-form .job-type-card .job-type-label:hover .job-type-help {
  opacity: 1;
}
#batch-job-create .job-type-card .job-type-label .job-type-icon,
#product-rule-form .job-type-card .job-type-label .job-type-icon,
#scheduled-sale-form .job-type-card .job-type-label .job-type-icon,
#stock-automation-form .job-type-card .job-type-label .job-type-icon {
  font-size: 32px;
  margin-bottom: 8px;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
#batch-job-create .job-type-card .job-type-label .job-type-title,
#product-rule-form .job-type-card .job-type-label .job-type-title,
#scheduled-sale-form .job-type-card .job-type-label .job-type-title,
#stock-automation-form .job-type-card .job-type-label .job-type-title {
  font-weight: 600;
  font-size: 14px;
  color: #212837;
  margin-bottom: 4px;
}
#batch-job-create .job-type-card .job-type-label .job-type-desc,
#product-rule-form .job-type-card .job-type-label .job-type-desc,
#scheduled-sale-form .job-type-card .job-type-label .job-type-desc,
#stock-automation-form .job-type-card .job-type-label .job-type-desc {
  font-size: 11px;
  color: #6c757d;
  margin-bottom: 0;
}
#batch-job-create .job-type-card .job-type-label .job-type-help,
#product-rule-form .job-type-card .job-type-label .job-type-help,
#scheduled-sale-form .job-type-card .job-type-label .job-type-help,
#stock-automation-form .job-type-card .job-type-label .job-type-help {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: transparent;
  border: none;
  color: #6c757d;
  font-size: 16px;
  opacity: 0;
  transition: all 0.2s ease;
  cursor: help;
}
#batch-job-create .job-type-card .job-type-label .job-type-help:hover,
#product-rule-form .job-type-card .job-type-label .job-type-help:hover,
#scheduled-sale-form .job-type-card .job-type-label .job-type-help:hover,
#stock-automation-form .job-type-card .job-type-label .job-type-help:hover {
  color: #212837;
  transform: scale(1.1);
}
#batch-job-create .job-type-group,
#product-rule-form .job-type-group,
#scheduled-sale-form .job-type-group,
#stock-automation-form .job-type-group {
  margin-bottom: 15px;
}
#batch-job-create .job-type-group:last-child,
#product-rule-form .job-type-group:last-child,
#scheduled-sale-form .job-type-group:last-child,
#stock-automation-form .job-type-group:last-child {
  margin-bottom: 0;
}
#batch-job-create .job-type-group .group-header,
#product-rule-form .job-type-group .group-header,
#scheduled-sale-form .job-type-group .group-header,
#stock-automation-form .job-type-group .group-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-bottom: 0;
}
#batch-job-create .job-type-group .group-header:hover,
#product-rule-form .job-type-group .group-header:hover,
#scheduled-sale-form .job-type-group .group-header:hover,
#stock-automation-form .job-type-group .group-header:hover {
  background: #e9ecef;
}
#batch-job-create .job-type-group .group-header.active,
#product-rule-form .job-type-group .group-header.active,
#scheduled-sale-form .job-type-group .group-header.active,
#stock-automation-form .job-type-group .group-header.active {
  background: rgba(33, 40, 55, 0.05);
  border-color: #212837;
}
#batch-job-create .job-type-group .group-header.active .group-icon,
#product-rule-form .job-type-group .group-header.active .group-icon,
#scheduled-sale-form .job-type-group .group-header.active .group-icon,
#stock-automation-form .job-type-group .group-header.active .group-icon {
  color: #212837;
}
#batch-job-create .job-type-group .group-header.active .chevron-icon,
#product-rule-form .job-type-group .group-header.active .chevron-icon,
#scheduled-sale-form .job-type-group .group-header.active .chevron-icon,
#stock-automation-form .job-type-group .group-header.active .chevron-icon {
  transform: rotate(180deg);
}
#batch-job-create .job-type-group .group-header .group-title,
#product-rule-form .job-type-group .group-header .group-title,
#scheduled-sale-form .job-type-group .group-header .group-title,
#stock-automation-form .job-type-group .group-header .group-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #212837;
  margin: 0;
}
#batch-job-create .job-type-group .group-header .group-title .group-icon,
#product-rule-form .job-type-group .group-header .group-title .group-icon,
#scheduled-sale-form .job-type-group .group-header .group-title .group-icon,
#stock-automation-form .job-type-group .group-header .group-title .group-icon {
  font-size: 16px;
  color: #6c757d;
  transition: color 0.2s;
}
#batch-job-create .job-type-group .group-header .chevron-icon,
#product-rule-form .job-type-group .group-header .chevron-icon,
#scheduled-sale-form .job-type-group .group-header .chevron-icon,
#stock-automation-form .job-type-group .group-header .chevron-icon {
  font-size: 14px;
  color: #6c757d;
  transition: transform 0.3s ease;
}
#batch-job-create .job-type-group .group-content,
#product-rule-form .job-type-group .group-content,
#scheduled-sale-form .job-type-group .group-content,
#stock-automation-form .job-type-group .group-content {
  display: none;
  padding: 16px 0 0 0;
  animation: slideDown 0.3s ease;
}
#batch-job-create .job-type-group .group-content.show,
#product-rule-form .job-type-group .group-content.show,
#scheduled-sale-form .job-type-group .group-content.show,
#stock-automation-form .job-type-group .group-content.show {
  display: block;
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#batch-job-create .shopify-filter-container,
#product-rule-form .shopify-filter-container,
#scheduled-sale-form .shopify-filter-container,
#stock-automation-form .shopify-filter-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575.98px) {
  #batch-job-create .shopify-filter-container,
  #product-rule-form .shopify-filter-container,
  #scheduled-sale-form .shopify-filter-container,
  #stock-automation-form .shopify-filter-container {
    align-items: flex-start;
    gap: 10px;
  }
}
#batch-job-create .shopify-filter-container #add-product-filter,
#product-rule-form .shopify-filter-container #add-product-filter,
#scheduled-sale-form .shopify-filter-container #add-product-filter,
#stock-automation-form .shopify-filter-container #add-product-filter {
  flex-shrink: 0;
}
#batch-job-create .shopify-filter-container #preview-pagination-top,
#product-rule-form .shopify-filter-container #preview-pagination-top,
#scheduled-sale-form .shopify-filter-container #preview-pagination-top,
#stock-automation-form .shopify-filter-container #preview-pagination-top {
  flex-shrink: 0;
}
@media (max-width: 575.98px) {
  #batch-job-create .shopify-filter-container #preview-pagination-top,
  #product-rule-form .shopify-filter-container #preview-pagination-top,
  #scheduled-sale-form .shopify-filter-container #preview-pagination-top,
  #stock-automation-form .shopify-filter-container #preview-pagination-top {
    margin-left: 0 !important;
    flex-basis: 100%;
  }
}
#batch-job-create .shopify-filter-container #product-filter-count-badge,
#product-rule-form .shopify-filter-container #product-filter-count-badge,
#scheduled-sale-form .shopify-filter-container #product-filter-count-badge,
#stock-automation-form .shopify-filter-container #product-filter-count-badge {
  min-width: 0;
}
#batch-job-create .shopify-filter-container #product-filter-count-badge .badge,
#product-rule-form .shopify-filter-container #product-filter-count-badge .badge,
#scheduled-sale-form .shopify-filter-container #product-filter-count-badge .badge,
#stock-automation-form .shopify-filter-container #product-filter-count-badge .badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575.98px) {
  #batch-job-create .shopify-filter-container #product-filter-count-badge,
  #product-rule-form .shopify-filter-container #product-filter-count-badge,
  #scheduled-sale-form .shopify-filter-container #product-filter-count-badge,
  #stock-automation-form .shopify-filter-container #product-filter-count-badge {
    flex-basis: 100%;
    margin-left: 0 !important;
  }
}
#batch-job-create .shopify-filter-container #add-filter-shopify,
#product-rule-form .shopify-filter-container #add-filter-shopify,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify,
#stock-automation-form .shopify-filter-container #add-filter-shopify {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none !important;
  transform: none !important;
}
#batch-job-create .shopify-filter-container #add-filter-shopify:hover, #batch-job-create .shopify-filter-container #add-filter-shopify:focus, #batch-job-create .shopify-filter-container #add-filter-shopify:active,
#product-rule-form .shopify-filter-container #add-filter-shopify:hover,
#product-rule-form .shopify-filter-container #add-filter-shopify:focus,
#product-rule-form .shopify-filter-container #add-filter-shopify:active,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify:hover,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify:focus,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify:active,
#stock-automation-form .shopify-filter-container #add-filter-shopify:hover,
#stock-automation-form .shopify-filter-container #add-filter-shopify:focus,
#stock-automation-form .shopify-filter-container #add-filter-shopify:active {
  box-shadow: none !important;
  transform: none !important;
}
#batch-job-create .shopify-filter-container #add-filter-shopify i.fa-filter,
#product-rule-form .shopify-filter-container #add-filter-shopify i.fa-filter,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify i.fa-filter,
#stock-automation-form .shopify-filter-container #add-filter-shopify i.fa-filter {
  font-size: 15px;
}
#batch-job-create .shopify-filter-container #add-filter-shopify i.fa-chevron-down,
#product-rule-form .shopify-filter-container #add-filter-shopify i.fa-chevron-down,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify i.fa-chevron-down,
#stock-automation-form .shopify-filter-container #add-filter-shopify i.fa-chevron-down {
  font-size: 11px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
#batch-job-create .shopify-filter-container #add-filter-shopify[aria-expanded=true] i.fa-chevron-down,
#product-rule-form .shopify-filter-container #add-filter-shopify[aria-expanded=true] i.fa-chevron-down,
#scheduled-sale-form .shopify-filter-container #add-filter-shopify[aria-expanded=true] i.fa-chevron-down,
#stock-automation-form .shopify-filter-container #add-filter-shopify[aria-expanded=true] i.fa-chevron-down {
  transform: rotate(180deg);
}
#batch-job-create .card-body,
#product-rule-form .card-body,
#scheduled-sale-form .card-body,
#stock-automation-form .card-body {
  overflow: visible !important;
}
#batch-job-create #filter-search-shopify,
#product-rule-form #filter-search-shopify,
#scheduled-sale-form #filter-search-shopify,
#stock-automation-form #filter-search-shopify {
  border-radius: 0 !important;
}
#batch-job-create #active-filters-shopify,
#product-rule-form #active-filters-shopify,
#scheduled-sale-form #active-filters-shopify,
#stock-automation-form #active-filters-shopify {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#batch-job-create #active-filters-shopify .no-filters-placeholder,
#product-rule-form #active-filters-shopify .no-filters-placeholder,
#scheduled-sale-form #active-filters-shopify .no-filters-placeholder,
#stock-automation-form #active-filters-shopify .no-filters-placeholder {
  font-size: 13px;
  padding: 8px 0;
}
#batch-job-create .shopify-filter-dropdown,
#product-rule-form .shopify-filter-dropdown,
#scheduled-sale-form .shopify-filter-dropdown,
#stock-automation-form .shopify-filter-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 5px;
  width: 260px;
  max-height: 320px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1060;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 575.98px) {
  #batch-job-create .shopify-filter-dropdown,
  #product-rule-form .shopify-filter-dropdown,
  #scheduled-sale-form .shopify-filter-dropdown,
  #stock-automation-form .shopify-filter-dropdown {
    width: calc(100vw - 60px);
    max-width: 100%;
  }
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-search,
#product-rule-form .shopify-filter-dropdown .shopify-filter-search,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-search,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-search {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #e9ecef;
  font-size: 13px;
  outline: none;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-search:focus,
#product-rule-form .shopify-filter-dropdown .shopify-filter-search:focus,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-search:focus,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-search:focus {
  border-bottom-color: #2d3748;
  z-index: auto !important;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-search::placeholder,
#product-rule-form .shopify-filter-dropdown .shopify-filter-search::placeholder,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-search::placeholder,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-search::placeholder {
  color: #9ca3af;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-list,
#product-rule-form .shopify-filter-dropdown .shopify-filter-list,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-list,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-list {
  max-height: 260px;
  overflow-y: auto;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item,
#product-rule-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 13px;
  color: #212529;
  border-bottom: 1px solid #f3f4f6;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item:hover,
#product-rule-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item:hover,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item:hover,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item:hover {
  background: #f9fafb;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item:last-child,
#product-rule-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item:last-child,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item:last-child,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item:last-child {
  border-bottom: none;
}
#batch-job-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item.selected,
#product-rule-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item.selected,
#scheduled-sale-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item.selected,
#stock-automation-form .shopify-filter-dropdown .shopify-filter-list .filter-list-item.selected {
  background: #f3f4f6;
  color: #1f2937;
  font-weight: 500;
}
#batch-job-create .card-footer,
#product-rule-form .card-footer,
#scheduled-sale-form .card-footer,
#stock-automation-form .card-footer {
  padding: 20px 24px;
  border-top: 1px solid #e9ecef;
}
#batch-job-create .selection-method-card,
#product-rule-form .selection-method-card,
#scheduled-sale-form .selection-method-card,
#stock-automation-form .selection-method-card {
  cursor: pointer;
  transition: all 0.2s ease;
}
#batch-job-create .selection-method-card:hover,
#product-rule-form .selection-method-card:hover,
#scheduled-sale-form .selection-method-card:hover,
#stock-automation-form .selection-method-card:hover {
  border-color: var(--bs-primary) !important;
  background-color: rgba(var(--bs-primary-rgb), 0.05);
}
#batch-job-create .selection-method-card.border-primary,
#product-rule-form .selection-method-card.border-primary,
#scheduled-sale-form .selection-method-card.border-primary,
#stock-automation-form .selection-method-card.border-primary {
  border-width: 2px !important;
  background-color: rgba(var(--bs-primary-rgb), 0.05);
}
#batch-job-create .filter-option,
#product-rule-form .filter-option,
#scheduled-sale-form .filter-option,
#stock-automation-form .filter-option {
  padding: 10px 12px;
  cursor: pointer;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}
#batch-job-create .filter-option:hover,
#product-rule-form .filter-option:hover,
#scheduled-sale-form .filter-option:hover,
#stock-automation-form .filter-option:hover {
  background-color: #f5f5f5;
}
#batch-job-create .product-result,
#product-rule-form .product-result,
#scheduled-sale-form .product-result,
#stock-automation-form .product-result {
  transition: background-color 0.15s ease;
}
#batch-job-create .product-result:hover,
#product-rule-form .product-result:hover,
#scheduled-sale-form .product-result:hover,
#stock-automation-form .product-result:hover {
  background-color: #f8f9fa;
}
#batch-job-create #active-filters .badge,
#product-rule-form #active-filters .badge,
#scheduled-sale-form #active-filters .badge,
#stock-automation-form #active-filters .badge {
  font-size: 0.85rem;
  font-weight: normal;
}
#batch-job-create #active-filters .badge a,
#product-rule-form #active-filters .badge a,
#scheduled-sale-form #active-filters .badge a,
#stock-automation-form #active-filters .badge a {
  opacity: 0.8;
}
#batch-job-create #active-filters .badge a:hover,
#product-rule-form #active-filters .badge a:hover,
#scheduled-sale-form #active-filters .badge a:hover,
#stock-automation-form #active-filters .badge a:hover {
  opacity: 1;
}
#batch-job-create #selected-products .badge,
#product-rule-form #selected-products .badge,
#scheduled-sale-form #selected-products .badge,
#stock-automation-form #selected-products .badge {
  font-size: 0.8rem;
  font-weight: normal;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
}

.save-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: white;
  padding: 16px 24px;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  animation: slideUpBar 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.save-bar .save-bar-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.save-bar .save-bar-message {
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
}
.save-bar .save-bar-message i {
  font-size: 16px;
}
.save-bar .save-bar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.save-bar .save-bar-actions .btn-link {
  text-decoration: none;
  font-size: 14px;
  padding: 8px 16px;
}
.save-bar .save-bar-actions .btn-link:hover {
  text-decoration: underline;
}
.save-bar .save-bar-actions .btn-success {
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border: none;
  background: #198754;
}
.save-bar .save-bar-actions .btn-success:hover {
  background: #157347;
}

@keyframes slideUpBar {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideOutDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-30px);
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes filterSlideIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes modalSlideUp {
  from {
    opacity: 0;
    transform: translateY(50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes checkmark {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
.stat-icon-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

#batch-job-detail .items-filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
#batch-job-detail .item-row.hidden {
  display: none;
}
#batch-job-detail .card-body table.table-sm {
  --bs-table-border-color: #dee2e6;
  border: 1px solid #dee2e6;
}
#batch-job-detail .card-body table.table-sm > :not(caption) > * > * {
  padding: 10px 10px !important;
  border-bottom-color: #dee2e6;
}
@media (max-width: 576px) {
  #batch-job-detail #overall-progress-card .card-title {
    font-size: 1rem;
  }
  #batch-job-detail #overall-progress-card .badge {
    font-size: 0.75rem;
  }
  #batch-job-detail #overall-progress-card .fs-5 {
    font-size: 1.1rem !important;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#preview-table thead tr th:has(+ th.preview-action-cell[style*=none]) {
  border-right: none !important;
}
#preview-table tbody tr td:has(+ td.preview-action-cell[style*=none]) {
  border-right: none !important;
}

@media (max-width: 1366px) {
  #batch-job-list .table[data-job-type=scheduled] .scheduled-id {
    min-width: 80px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-name {
    min-width: 250px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-type {
    min-width: 250px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-schedule {
    min-width: 240px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-next-run {
    min-width: 150px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-last-run {
    min-width: 150px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-status {
    min-width: 200px;
  }
  #batch-job-list .table[data-job-type=scheduled] .scheduled-created-at {
    min-width: 180px;
  }
  #batch-job-list .table[data-job-type=batch] .batch-id {
    min-width: 80px;
  }
  #batch-job-list .table[data-job-type=batch] .batch-type {
    min-width: 250px;
  }
  #batch-job-list .table[data-job-type=batch] .batch-priority {
    min-width: 140px;
  }
  #batch-job-list .table[data-job-type=batch] .batch-progress {
    min-width: 400px;
  }
  #batch-job-list .table[data-job-type=batch] .batch-status {
    min-width: 120px;
  }
  #batch-job-list .table[data-job-type=batch] .batch-created-at {
    min-width: 170px;
  }
}
.filter-select-container {
  position: relative;
}
.filter-select-container .filter-search-input {
  padding-right: 32px;
}
.filter-select-container .filter-clear-btn {
  display: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 2px 4px;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.85rem;
}
.filter-select-container .filter-clear-btn:hover {
  color: #dc3545;
}

.filter-search-results {
  max-height: 200px;
  overflow-y: auto;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}
.filter-search-results .filter-search-option {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}
.filter-search-results .filter-search-option:last-child {
  border-bottom: none;
}
.filter-search-results .filter-search-option:hover {
  background: #f8f9fa;
}
.filter-search-results .filter-search-option .fw-medium {
  color: #212529;
}

.tag-input-wrapper, .autocomplete-container, .ajax-select-wrapper .ajax-select-container, .category-select-wrapper .category-select-container, .metafield-def-select-wrapper .metafield-def-select-container, .collection-select-wrapper .collection-select-container {
  position: relative;
}

.autocomplete-container .autocomplete-input, .ajax-select-wrapper .ajax-search-input, .category-select-wrapper .category-search-input, .metafield-def-select-wrapper .metafield-def-search-input, .collection-select-wrapper .collection-search-input {
  padding-right: 32px;
}

.autocomplete-container .autocomplete-clear-btn, .ajax-select-wrapper .ajax-clear-btn, .category-select-wrapper .category-clear-btn, .metafield-def-select-wrapper .metafield-def-clear-btn, .collection-select-wrapper .collection-clear-btn {
  display: none;
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d;
  cursor: pointer;
  padding: 2px 4px;
  align-items: center;
  justify-content: center;
  z-index: 2;
  font-size: 0.85rem;
}
.autocomplete-container .autocomplete-clear-btn:hover, .ajax-select-wrapper .ajax-clear-btn:hover, .category-select-wrapper .category-clear-btn:hover, .metafield-def-select-wrapper .metafield-def-clear-btn:hover, .collection-select-wrapper .collection-clear-btn:hover {
  color: #dc3545;
}

.tag-input-wrapper .autocomplete-dropdown, .autocomplete-container .autocomplete-dropdown, .ajax-select-wrapper .ajax-search-dropdown, .category-select-wrapper .category-dropdown, .metafield-def-select-wrapper .metafield-def-dropdown, .collection-select-wrapper .collection-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1050;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
}
.tag-input-wrapper .show.autocomplete-dropdown, .autocomplete-container .show.autocomplete-dropdown, .ajax-select-wrapper .show.ajax-search-dropdown, .category-select-wrapper .show.category-dropdown, .metafield-def-select-wrapper .show.metafield-def-dropdown, .collection-select-wrapper .show.collection-dropdown {
  display: block;
}

.ajax-select-wrapper .ajax-dropdown-loading, .category-select-wrapper .category-dropdown-loading, .metafield-def-select-wrapper .metafield-def-dropdown-loading, .collection-select-wrapper .collection-dropdown-loading {
  color: #6c757d;
}

.tag-input-wrapper .autocomplete-dropdown .autocomplete-option, .autocomplete-container .autocomplete-dropdown .autocomplete-option, .ajax-select-wrapper .ajax-dropdown-list .ajax-search-option, .category-select-wrapper .category-dropdown-list .category-option, .metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option, .collection-select-wrapper .collection-dropdown-list .collection-option {
  padding: 10px 14px;
  cursor: pointer;
  border-bottom: 1px solid #f3f4f6;
  transition: background 0.15s ease;
}
.tag-input-wrapper .autocomplete-dropdown .autocomplete-option:last-child, .autocomplete-container .autocomplete-dropdown .autocomplete-option:last-child, .ajax-select-wrapper .ajax-dropdown-list .ajax-search-option:last-child, .category-select-wrapper .category-dropdown-list .category-option:last-child, .metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option:last-child, .collection-select-wrapper .collection-dropdown-list .collection-option:last-child {
  border-bottom: none;
}
.tag-input-wrapper .autocomplete-dropdown .autocomplete-option:hover, .autocomplete-container .autocomplete-dropdown .autocomplete-option:hover, .ajax-select-wrapper .ajax-dropdown-list .ajax-search-option:hover, .category-select-wrapper .category-dropdown-list .category-option:hover, .metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option:hover, .collection-select-wrapper .collection-dropdown-list .collection-option:hover {
  background: #f8f9fa;
}
.tag-input-wrapper .autocomplete-dropdown .selected.autocomplete-option, .autocomplete-container .autocomplete-dropdown .selected.autocomplete-option, .ajax-select-wrapper .ajax-dropdown-list .selected.ajax-search-option, .category-select-wrapper .category-dropdown-list .selected.category-option, .metafield-def-select-wrapper .metafield-def-dropdown-list .selected.metafield-def-option, .collection-select-wrapper .collection-dropdown-list .selected.collection-option {
  background: #e9ecef;
}

.collection-select-wrapper .collection-dropdown-list .collection-option .fw-medium {
  color: #212529;
}

.metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-group-header {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6d7175;
  background: #f6f6f7;
  border-bottom: 1px solid #e1e3e5;
  position: sticky;
  top: 0;
}
.metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-group-header:not(:first-child) {
  border-top: 1px solid #e1e3e5;
}
.metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option .fw-medium {
  color: #212529;
}
.metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option .badge {
  font-size: 11px;
  font-weight: 400;
  white-space: nowrap;
}
.metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option.metafield-def-disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.metafield-def-select-wrapper .metafield-def-dropdown-list .metafield-def-option.metafield-def-disabled:hover {
  background: transparent;
}

.category-select-wrapper .category-breadcrumb {
  padding: 6px 10px;
  border-bottom: 1px solid #e9ecef;
  background: #f8f9fa;
  font-size: 12px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.category-select-wrapper .category-breadcrumb .category-breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 2px;
}
.category-select-wrapper .category-breadcrumb .category-breadcrumb-item {
  cursor: pointer;
  color: #0d6efd;
  white-space: nowrap;
}
.category-select-wrapper .category-breadcrumb .category-breadcrumb-item:hover {
  text-decoration: underline;
}
.category-select-wrapper .category-breadcrumb .category-breadcrumb-item.active {
  color: #333;
  cursor: default;
  font-weight: 500;
}
.category-select-wrapper .category-breadcrumb .category-breadcrumb-item.active:hover {
  text-decoration: none;
}
.category-select-wrapper .category-breadcrumb .category-breadcrumb-separator {
  color: #adb5bd;
  font-size: 9px;
  margin: 0 1px;
}
.category-select-wrapper .category-dropdown-list .category-option .category-option-label {
  flex: 1;
  cursor: pointer;
  padding: 2px 0;
}
.category-select-wrapper .category-dropdown-list .category-option .category-drill-btn {
  padding: 6px 10px;
  margin-right: 2px;
  cursor: pointer;
  color: #adb5bd;
  font-size: 12px;
  border-radius: 4px;
  transition: all 0.15s ease;
  flex-shrink: 0;
}
.category-select-wrapper .category-dropdown-list .category-option .category-drill-btn:hover {
  color: #0d6efd;
  background: rgba(13, 110, 253, 0.08);
}

.ajax-select-wrapper .ajax-search-input {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}
.ajax-select-wrapper .ajax-search-dropdown {
  position: static;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  margin-top: 0;
  box-shadow: none;
}
.ajax-select-wrapper .ajax-dropdown-list .metafield-def-group-header {
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6d7175;
  background: #f6f6f7;
  border-bottom: 1px solid #e1e3e5;
  position: sticky;
  top: 0;
}
.ajax-select-wrapper .ajax-dropdown-list .metafield-def-group-header:not(:first-child) {
  border-top: 1px solid #e1e3e5;
}
.ajax-select-wrapper .ajax-dropdown-list .ajax-search-option .fw-medium {
  color: #212529;
}
.ajax-select-wrapper.has-mode-select .ajax-search-input {
  border-radius: 0.375rem !important;
}
.ajax-select-wrapper.has-mode-select .ajax-search-dropdown {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  margin-top: 6px;
}

.collection-select-wrapper > .collection-dropdown {
  position: static;
  max-height: 300px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: none;
}

.collection-select-wrapper.has-mode-select .collection-search-input {
  border-radius: 0.375rem !important;
}
.collection-select-wrapper.has-mode-select > .collection-dropdown {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  margin-top: 6px;
}

.autocomplete-container .autocomplete-dropdown .autocomplete-empty {
  text-align: center;
  padding: 0.75rem;
  color: #212529;
  font-size: 0.9rem;
}

.tag-input-wrapper .tag-input-display {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding-bottom: 0.35rem;
}
.tag-input-wrapper .tag-input-display:empty {
  display: none;
}
.tag-input-wrapper .tag-input-display .tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  background: #e9ecef;
  color: #212529;
  padding: 0.3rem 0.6rem;
  border-radius: 0.375rem;
  font-size: 0.85rem;
  line-height: 1.3;
}
.tag-input-wrapper .tag-input-display .tag-chip .tag-chip-remove {
  cursor: pointer;
  font-size: 0.7rem;
  opacity: 0.6;
  transition: opacity 0.15s;
}
.tag-input-wrapper .tag-input-display .tag-chip .tag-chip-remove:hover {
  opacity: 1;
}
#image-upload-wizard .provider-select-card {
  overflow: visible;
}
#image-upload-wizard .provider-select-card .card-body,
#image-upload-wizard .provider-select-card .card-content,
#image-upload-wizard .provider-select-card .card-line,
#image-upload-wizard .provider-select-card .form-group {
  overflow: visible;
}
#image-upload-wizard .provider-select {
  position: relative;
  z-index: 20;
}
#image-upload-wizard .provider-select .provider-select-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
}
#image-upload-wizard .provider-select .provider-select-value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}
#image-upload-wizard .provider-select .provider-select-value img {
  border-radius: 3px;
}
#image-upload-wizard .provider-select .provider-select-value .badge {
  margin-left: auto;
}
#image-upload-wizard .provider-select .provider-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#image-upload-wizard .provider-select.open .provider-select-trigger {
  border-radius: 0.375rem 0.375rem 0 0;
  border-color: #c9d2e3;
  box-shadow: none;
}
#image-upload-wizard .provider-select.open .provider-select-dropdown {
  display: block;
  border-color: #c9d2e3;
}
#image-upload-wizard .provider-select .provider-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #f0f0f0;
}
#image-upload-wizard .provider-select .provider-select-option:last-child {
  border-bottom: none;
}
#image-upload-wizard .provider-select .provider-select-option:hover:not(.disabled) {
  background-color: #f8f9fa;
}
#image-upload-wizard .provider-select .provider-select-option.selected {
  background-color: #f0f4ff;
}
#image-upload-wizard .provider-select .provider-select-option.disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background-color: #fafafa;
}
#image-upload-wizard .provider-select .provider-select-option .provider-select-name {
  font-weight: 500;
  font-size: 14px;
}
#image-upload-wizard #folder-select:disabled {
  background-color: #f1f1f1;
}
#image-upload-wizard .preview-loading-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: inherit;
  z-index: 5;
}
#image-upload-wizard .preview-loading-overlay .preview-loading-content {
  text-align: center;
}
#image-upload-wizard .preview-loading-overlay .preview-loading-content i {
  color: #212837;
}

.edit-filter-card,
.pr-filter-card {
  position: relative;
  z-index: 3;
}

.edit-action-card,
.pr-action-card {
  position: relative;
  z-index: 1;
}
.edit-action-card .select2-container,
.pr-action-card .select2-container {
  position: relative;
  z-index: auto;
}

.processing-group {
  border: 1px solid #d9d9d9;
  border-radius: 6px;
}
.processing-group .processing-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f1f1f1;
  border-bottom: 1px solid #d9d9d9;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1a;
}
.processing-group .processing-group-header i {
  font-size: 14px;
  color: #1a1a1a;
  width: 16px;
  text-align: center;
}
.processing-group .processing-group-header #parameters-dynamic-btn {
  font-weight: 400;
  text-decoration: none;
  color: #0d6efd;
}
.processing-group .processing-group-header #parameters-dynamic-btn:hover {
  text-decoration: underline;
}
.processing-group .processing-group-header #parameters-dynamic-hint {
  width: auto;
  cursor: help;
}
.processing-group .processing-group-body {
  padding: 15px;
}
.processing-group .processing-group-body .form-text {
  color: #212529;
}
.processing-group .processing-group-body > :last-child {
  margin-bottom: 0 !important;
}

#image-upload-preview .preview-overview-card .preview-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #212837;
  display: flex;
  align-items: center;
  justify-content: center;
}
#image-upload-preview .preview-overview-card .preview-icon i {
  font-size: 20px;
  color: #fff;
}
#image-upload-preview .preview-overview-card .preview-title {
  font-size: 17px;
  font-weight: 700;
  color: #212837;
  margin-bottom: 2px;
}
#image-upload-preview .preview-overview-card .preview-desc {
  font-size: 13px;
  line-height: 1.55;
}
@media (min-width: 1024px) {
  #image-upload-preview .preview-overview-card .preview-desc {
    max-width: 80%;
  }
}
#image-upload-preview .preview-overview-card .preview-stats {
  display: flex;
  align-items: center;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 16px 0;
  margin-top: 20px;
}
#image-upload-preview .preview-overview-card .preview-stats .preview-stat {
  flex: 1;
  text-align: center;
}
#image-upload-preview .preview-overview-card .preview-stats .preview-stat .preview-stat-value {
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
#image-upload-preview .preview-overview-card .preview-stats .preview-stat .preview-stat-label {
  font-size: 12px;
  font-weight: 500;
}
#image-upload-preview .preview-overview-card .preview-stats .preview-stat-divider {
  width: 1px;
  height: 36px;
  background: #d0d5dd;
  flex-shrink: 0;
}
#image-upload-preview .preview-overview-card .preview-progress {
  margin-top: 12px;
}
#image-upload-preview .preview-overview-card .preview-progress .preview-progress-label {
  font-size: 12px;
  color: #667085;
  margin-top: 6px;
}
#image-upload-preview .preview-thumbnail {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid #e9ecef;
}
#image-upload-preview .preview-thumbnail.preview-lazy {
  background: #fff;
}
#image-upload-preview .preview-thumbnail.preview-loaded {
  animation: fadeInThumb 0.3s ease forwards;
}
@keyframes fadeInThumb {
  from {
    opacity: 0.3;
  }
  to {
    opacity: 1;
  }
}
#image-upload-preview .table-sm td,
#image-upload-preview .table-sm th {
  padding: 0.65rem 0.5rem;
}
#image-upload-preview #preview-page-size {
  max-width: 75px;
}
#image-upload-preview #preview-table {
  min-width: 700px;
}
#image-upload-preview #preview-table td {
  vertical-align: middle;
}

#export-create .form-check {
  display: flex;
  align-items: center;
}
#export-create .form-check label.form-check-label {
  margin-top: 5px;
}
#export-create .shopify-filter-container {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
@media (max-width: 575.98px) {
  #export-create .shopify-filter-container {
    align-items: flex-start;
    gap: 10px;
  }
}
#export-create .shopify-filter-container #product-filter-count-badge {
  min-width: 0;
}
#export-create .shopify-filter-container #product-filter-count-badge .badge {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  display: inline-block;
  vertical-align: middle;
}
@media (max-width: 575.98px) {
  #export-create .shopify-filter-container #product-filter-count-badge {
    flex-basis: 100%;
    margin-left: 0 !important;
  }
}
#export-create .shopify-filter-container #add-export-filter {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  box-shadow: none !important;
  transform: none !important;
}
#export-create .shopify-filter-container #add-export-filter:hover, #export-create .shopify-filter-container #add-export-filter:focus, #export-create .shopify-filter-container #add-export-filter:active {
  box-shadow: none !important;
  transform: none !important;
}
#export-create .shopify-filter-container #add-export-filter i.fa-filter {
  font-size: 15px;
}
#export-create .shopify-filter-container #add-export-filter i.fa-chevron-down {
  font-size: 11px;
  opacity: 0.7;
  transition: transform 0.2s ease;
}
#export-create .card-body {
  overflow: visible !important;
}
#export-create #export-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
#export-create .shopify-filter-dropdown {
  position: absolute !important;
  top: 100% !important;
  left: 0 !important;
  margin-top: 5px;
  width: 260px;
  max-height: 320px;
  background: white;
  border: 1px solid #dee2e6;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1060;
  overflow: hidden;
  animation: dropdownFadeIn 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 575.98px) {
  #export-create .shopify-filter-dropdown {
    width: calc(100vw - 60px);
    max-width: 100%;
  }
}
#export-create .shopify-filter-dropdown .shopify-filter-search {
  width: 100%;
  padding: 10px 12px;
  border: none;
  border-bottom: 1px solid #e9ecef;
  font-size: 13px;
  outline: none;
}
#export-create .shopify-filter-dropdown .shopify-filter-search:focus {
  border-bottom-color: #2d3748;
  z-index: auto !important;
}
#export-create .shopify-filter-dropdown .shopify-filter-search::placeholder {
  color: #9ca3af;
}
#export-create .shopify-filter-dropdown .shopify-filter-list {
  max-height: 260px;
  overflow-y: auto;
}
#export-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item {
  padding: 10px 14px;
  cursor: pointer;
  transition: background 0.15s ease;
  font-size: 13px;
  color: #212529;
  border-bottom: 1px solid #f3f4f6;
}
#export-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item:hover {
  background: #f9fafb;
}
#export-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item:last-child {
  border-bottom: none;
}
#export-create .shopify-filter-dropdown .shopify-filter-list .filter-list-item.selected {
  background: #f3f4f6;
  color: #1f2937;
  font-weight: 500;
}
#export-create .provider-select {
  position: relative;
  z-index: 20;
}
#export-create .provider-select .provider-select-trigger {
  cursor: pointer;
  display: flex;
  align-items: center;
}
#export-create .provider-select .provider-select-value {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  overflow: hidden;
}
#export-create .provider-select .provider-select-value .badge {
  margin-left: auto;
}
#export-create .provider-select .provider-select-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 10;
  background: #fff;
  border: 1px solid #dee2e6;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
#export-create .provider-select.open .provider-select-trigger {
  border-radius: 0.375rem 0.375rem 0 0;
  border-color: #c9d2e3;
  box-shadow: none;
}
#export-create .provider-select.open .provider-select-dropdown {
  display: block;
  border-color: #c9d2e3;
}
#export-create .provider-select .provider-select-option {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  cursor: pointer;
  transition: background-color 0.15s ease;
  border-bottom: 1px solid #f0f0f0;
}
#export-create .provider-select .provider-select-option:last-child {
  border-bottom: none;
}
#export-create .provider-select .provider-select-option:hover:not(.disabled) {
  background-color: #f8f9fa;
}
#export-create .provider-select .provider-select-option.selected {
  background-color: #f0f4ff;
}
#export-create .provider-select .provider-select-option.disabled {
  cursor: not-allowed;
  opacity: 0.55;
  background-color: #fafafa;
}
#export-create .provider-select .provider-select-option .provider-select-name {
  font-weight: 500;
  font-size: 14px;
}
#export-create .export-columns-row {
  row-gap: 1rem;
}
#export-create .export-column-group {
  height: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
#export-create .export-column-group:hover {
  border-color: #d1d5db;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}
#export-create .export-column-group .export-column-group-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #f1f1f1;
  border-bottom: 1px solid #d9d9d9;
  cursor: pointer;
}
#export-create .export-column-group .export-column-group-header .form-check-input {
  cursor: pointer;
  margin-right: 0;
}
#export-create .export-column-group .export-column-group-header label {
  font-weight: 600;
  font-size: 13px;
  color: #344054;
  cursor: pointer;
  margin-bottom: 0;
  flex: 1;
}
#export-create .export-column-group .export-column-group-header .export-column-count {
  font-size: 11px;
  font-weight: 500;
  color: #667085;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 1px 8px;
  line-height: 1.4;
}
#export-create .export-column-group .export-column-group-body {
  padding: 8px 6px;
  background: #fff;
}
#export-create .export-column-group .export-column-item {
  display: flex;
  align-items: flex-start;
  padding: 4px 8px;
  border-radius: 4px;
  transition: background-color 0.15s ease;
}
#export-create .export-column-group .export-column-item:hover {
  background-color: #f5f7fa;
}
#export-create .export-column-group .export-column-item .form-check-input {
  flex-shrink: 0;
  margin-top: 2px;
}
#export-create .export-column-group .export-column-item .form-check-label {
  cursor: pointer;
  font-size: 13px;
  line-height: 1.4;
}
#export-create .export-column-group .export-column-subsection .fw-semibold {
  color: #212529;
  font-size: 12px;
  padding: 4px 8px 0;
}
#export-create .export-column-group .export-column-subsection .export-column-group-header {
  padding-left: 14px;
  padding-right: 14px;
  margin-bottom: 0.5rem;
  margin-left: -6px;
  margin-right: -6px;
}
#export-create .export-column-group .see-all-link {
  padding: 0 8px 3px 8px;
}
#export-create .edit-sidebar .card,
#export-create .export-sidebar .card {
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  border-radius: 8px;
}
#export-create .edit-sidebar .list-group-item,
#export-create .export-sidebar .list-group-item {
  font-size: 13px;
  padding: 8px 0;
}
#export-create .edit-sidebar .list-group-item .summary-label,
#export-create .export-sidebar .list-group-item .summary-label {
  min-width: 75px;
  flex-shrink: 0;
  font-weight: 500;
}
#export-create .edit-sidebar .list-group-item span:last-child,
#export-create .export-sidebar .list-group-item span:last-child {
  text-align: right;
}

@media (max-width: 991.98px) {
  #create-job-form > .row,
  #export-form > .row {
    display: flex;
    flex-direction: column;
    margin-left: 0;
    margin-right: 0;
  }
  #create-job-form > .row > .col-lg-8,
  #export-form > .row > .col-lg-8 {
    padding-left: 0;
    padding-right: 0;
  }
  #create-job-form > .row > .col-lg-4,
  #create-job-form .edit-sidebar,
  #export-form > .row > .col-lg-4,
  #export-form .export-sidebar {
    display: contents;
  }
  #preset-card {
    order: -2;
  }
  #automated-delivery-card.schedule-highlight {
    order: -1;
  }
}
.overview-card {
  position: relative;
}
.overview-card .overview-card-close {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 12px;
  opacity: 0.4;
  transition: opacity 0.15s ease;
  z-index: 1;
}
.overview-card .overview-card-close:hover {
  opacity: 0.8;
}
.overview-card .overview-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: #212837;
  display: flex;
  align-items: center;
  justify-content: center;
}
.overview-card .overview-icon i {
  font-size: 20px;
  color: #fff;
}
.overview-card .overview-title {
  font-size: 17px;
  font-weight: 700;
  color: #212837;
  margin-bottom: 2px;
}
.overview-card .overview-desc {
  font-size: 13px;
  line-height: 1.55;
}

.alert-dismissible .btn-close {
  font-size: 12px;
  opacity: 0.4;
  transition: opacity 0.15s ease;
}
.alert-dismissible .btn-close:hover {
  opacity: 0.8;
}

.steps-guide {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: #f1f1f1;
  border-radius: 8px;
  padding: 20px 12px;
  gap: 0;
}
.steps-guide .step-item {
  text-align: center;
  flex: 1;
  min-width: 0;
}
.steps-guide .step-item .step-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #d0d5dd;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
}
.steps-guide .step-item .step-circle i {
  font-size: 16px;
  color: #495057;
}
.steps-guide .step-item .step-label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}
.steps-guide .step-arrow {
  display: flex;
  align-items: center;
  color: #adb5bd;
  font-size: 30px;
  flex-shrink: 0;
  padding: 8px 6px 0;
}
@media (max-width: 767.98px) {
  .steps-guide {
    display: none;
  }
}

.priority-selector {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.priority-selector .priority-option {
  position: relative;
  cursor: pointer;
}
.priority-selector .priority-option input[type=radio] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.priority-selector .priority-option input[type=radio]:checked + label .priority-badge {
  border-color: currentColor;
  background-color: rgba(0, 0, 0, 0.03);
}
.priority-selector .priority-option label {
  cursor: pointer;
  margin-bottom: 0;
}
.priority-selector .priority-option .priority-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px;
  border: 1.5px solid #dee2e6;
  border-radius: 8px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.15s ease;
  cursor: pointer;
}
.priority-selector .priority-option .priority-badge:hover {
  border-color: currentColor;
}
.priority-selector .priority-option .priority-badge.priority-low {
  color: #6c757d;
}
.priority-selector .priority-option .priority-badge.priority-normal {
  color: #0dcaf0;
}
.priority-selector .priority-option .priority-badge.priority-high {
  color: #f59e0b;
}
.priority-selector .priority-option .priority-badge.priority-urgent {
  color: #dc3545;
}

#product-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

#product-filter-count-badge {
  vertical-align: middle;
}
#product-filter-count-badge .badge {
  font-size: 0.85rem;
  padding: 6px 12px;
  background-color: #f1f1f1 !important;
}

#product-filter-collection-results,
#product-filter-ajax-results {
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
}
#product-filter-collection-results:empty,
#product-filter-ajax-results:empty {
  border: none;
}
#product-filter-collection-results .list-group-item,
#product-filter-ajax-results .list-group-item {
  border: none;
  border-bottom: 1px solid #dee2e6;
}
#product-filter-collection-results .list-group-item:last-child,
#product-filter-ajax-results .list-group-item:last-child {
  border-bottom: 0;
}

.btn-add-dynamic-value {
  color: #0d6efd;
  text-decoration: none;
  cursor: pointer;
  font-size: 0.8125rem;
  font-weight: normal;
}
.btn-add-dynamic-value:hover {
  text-decoration: underline;
}
.btn-add-dynamic-value i {
  font-size: 0.75rem;
}

.list-picker-wrapper .list-picker-items {
  max-height: 300px;
  overflow-y: auto;
}

.list-picker-item {
  background: #f8f9fa;
  font-size: 0.875rem;
}
.list-picker-item .list-picker-thumb {
  width: 28px;
  height: 28px;
  object-fit: cover;
  flex-shrink: 0;
}

.file-picker-wrapper .file-picker-thumb {
  width: 32px;
  height: 32px;
  object-fit: cover;
  flex-shrink: 0;
}

.file-picker-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 12px;
  max-height: 420px;
  overflow-y: auto;
}
@media (max-width: 575.98px) {
  .file-picker-grid {
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 8px;
    max-height: 300px;
  }
}

.file-picker-item {
  border: 2px solid #dee2e6;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.file-picker-item:hover {
  border-color: #adb5bd;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.file-picker-item.selected {
  border-color: #212837;
  box-shadow: 0 0 0 1px #212837;
}

.file-picker-item-thumb {
  width: 100%;
  aspect-ratio: 1;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.file-picker-item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.file-picker-play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
  pointer-events: none;
}

.file-picker-file-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.file-picker-item-info {
  padding: 8px 10px;
  border-top: 1px solid #f3f4f6;
}

.file-picker-item-name {
  font-size: 0.8rem;
  font-weight: 500;
  color: #212529;
}

.file-picker-item-type {
  font-size: 0.7rem;
  color: #212529;
  margin-top: 2px;
}

.preview-thumbnail-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: #f1f1f1;
  border: 1px solid #ccc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.preview-thumbnail-placeholder i {
  font-size: 14px;
  color: #adb5bd;
}
.preview-thumbnail-placeholder.preview-thumbnail-placeholder-lg {
  width: 80px;
  height: 80px;
  border-radius: 6px;
}
.preview-thumbnail-placeholder.preview-thumbnail-placeholder-lg i {
  font-size: 24px;
}

/* ============================================
   Components — Shared UI component styles
   EPIC 7.0 — UI Foundation & Design System
   ============================================ */
/* ----- Empty State ----- */
.empty-state {
  padding: 48px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #f8f9fa;
  border: 1px dashed #c9d2e3;
  border-radius: 6px;
}

.empty-state-icon {
  font-size: 48px;
  color: #adb5bd;
  margin-bottom: 16px;
}

.empty-state-title {
  font-size: 18px;
  font-weight: 600;
  color: #212837;
  margin-bottom: 8px;
}

.empty-state-description {
  font-size: 14px;
  color: #6c757d;
  max-width: 420px;
  margin-bottom: 24px;
  line-height: 1.5;
}

.empty-state-cta {
  margin-top: 8px;
}

/* ----- Quota Bar ----- */
.quota-bar {
  margin-bottom: 16px;
}

.quota-bar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
  font-size: 13px;
}

.quota-bar-label {
  color: #6c757d;
  font-weight: 500;
}

.quota-bar-value {
  font-weight: 600;
  color: #212837;
}

.quota-bar-track {
  height: 8px;
  background: #e9ecef;
  border-radius: 4px;
  overflow: hidden;
}

.quota-bar-fill {
  height: 100%;
  border-radius: 4px;
  transition: width 0.4s ease;
  background: #028824;
}
.quota-bar-fill.quota-warning {
  background: #ffa11d;
}
.quota-bar-fill.quota-danger {
  background: #e6180d;
}

/* ----- Duration Timer ----- */
.duration-timer {
  font-variant-numeric: tabular-nums;
  font-weight: 600;
}

/* ----- Page Actions (header area) ----- */
.page-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

/* ----- Responsive ----- */
@media (max-width: 768px) {
  .empty-state {
    padding: 24px 16px;
  }
  .empty-state-icon {
    font-size: 36px;
  }
  .empty-state-title {
    font-size: 16px;
  }
}
@media (max-width: 576px) {
  .page-actions {
    flex-wrap: wrap;
  }
}
/* ----- Font Selector ----- */
.font-selector {
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  min-height: 38px;
  padding: 6px 12px;
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  font-size: 14px;
}
.font-selector .selected-font-text {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.font-selector .font-selector-arrow {
  margin-left: 8px;
  font-size: 10px;
  color: #6c757d;
  transition: transform 0.2s ease;
}
.font-selector.active {
  border-color: #c9d2e3;
  border-radius: 0.375rem 0.375rem 0 0;
}
.font-selector.active .font-selector-arrow {
  transform: rotate(180deg);
}
.font-selector.active .font-list {
  display: block;
}

.font-list {
  display: none;
  position: absolute;
  top: 100%;
  left: -1px;
  right: -1px;
  max-height: 260px;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #c9d2e3;
  border-top: none;
  border-radius: 0 0 0.375rem 0.375rem;
  z-index: 1000;
}
.font-list .font-list-item {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.15s ease;
}
.font-list .font-list-item:last-child {
  border-bottom: none;
}
.font-list .font-list-item:hover {
  background-color: #f8f9fa;
}
.font-list .font-list-item.selected {
  background-color: #f0f4ff;
}

/* ----- Accessibility ----- */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  z-index: 10000;
}
.skip-to-content:focus {
  position: fixed;
  top: 10px;
  left: 10px;
  width: auto;
  height: auto;
  padding: 8px 16px;
  background: #1a73e8;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  text-decoration: none;
}

/* ----- Product Rule — Condition Dropdown ----- */
.condition-option {
  transition: background-color 0.15s ease;
}
.condition-option:hover {
  background-color: #f0f4ff;
}

.condition-chip {
  cursor: pointer;
  transition: background-color 0.15s ease, box-shadow 0.15s ease;
}
.condition-chip:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ----- Import Mapping ----- */
.import-mapping-table {
  table-layout: fixed;
  min-width: 900px;
}
.import-mapping-table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: #f8f9fa;
}
.import-mapping-table .col-letter {
  width: 48px;
  text-align: center;
  font-weight: 600;
  color: #6c757d;
  background: #f8f9fa;
}
.import-mapping-table .col-csv-header {
  width: 25%;
  font-weight: 600;
}
.import-mapping-table .col-csv-header.clickable {
  cursor: pointer;
}
.import-mapping-table .col-csv-header.clickable:hover {
  text-decoration: underline;
  color: #0d6efd;
}
.import-mapping-table .col-csv-header .mapped-field-label {
  font-size: 12px;
  margin-top: 2px;
}
.import-mapping-table .col-sample {
  width: 25%;
}
.import-mapping-table .col-sample .cell-truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}
.import-mapping-table .col-mapping {
  width: 30%;
}
.import-mapping-table .col-action {
  width: 56px;
  text-align: center;
}
.import-mapping-table s-button.btn-clear-mapping {
  --s-button-shadow-hover: none;
  --s-button-shadow-focus: none;
}
.import-mapping-table tr.table-danger select {
  border-color: #dc3545;
}

#import-mapping #btn-reset-mappings,
#import-mapping #btn-autodetect {
  --s-button-font-size: 13px;
  --s-button-padding-block: 4px;
  --s-button-padding-inline: 12px;
  font-size: 13px !important;
}

#preview-table-container {
  min-height: 80px;
}

/* ----- Product Rule — Template Cards ----- */
.product-rule-template-card {
  transition: transform 0.15s ease, box-shadow 0.15s ease;
  cursor: pointer;
}
.product-rule-template-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
}
.product-rule-template-card .card-body {
  color: inherit;
}

/* ============================================
   Dashboard — Home page layout styles
   ============================================ */
#dashboard-summary .card-body {
  padding: 1rem;
}
#dashboard-summary .faq-list-container,
#dashboard-summary .action-log-table {
  max-height: 450px;
  overflow-y: auto;
}
@media (min-width: 1366px) {
  #dashboard-summary .faq-list-container,
  #dashboard-summary .action-log-table {
    max-height: 420px;
  }
}
@media (min-width: 1440px) {
  #dashboard-summary .faq-list-container,
  #dashboard-summary .action-log-table {
    max-height: 310px;
  }
}

/* Setup Guide — Onboarding Checklist */
.setup-guide-card {
  background: white;
  border-radius: 6px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  padding: 24px;
}

.setup-guide-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.setup-guide-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
}

.setup-guide-items {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.setup-guide-item {
  border-radius: 6px;
  padding: 16px;
  transition: background-color 0.15s ease;
}
.setup-guide-item:last-child {
  margin-bottom: 0;
}
.setup-guide-item:last-child:not(.active) {
  padding-bottom: 0;
}
.setup-guide-item.active {
  background-color: #f1f1f1;
}
.setup-guide-item.completed .setup-guide-item-header span {
  text-decoration: line-through;
  color: #6c757d;
}

.setup-guide-item-header {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 500;
  font-size: 14px;
}

.setup-guide-check {
  font-size: 18px;
  line-height: 1;
}
.setup-guide-check .fas.fa-check-circle {
  color: #212837;
}
.setup-guide-check .far.fa-circle {
  color: #c9d2e3;
}

.setup-guide-item-body {
  padding-left: 30px;
  padding-top: 8px;
}

/* Disabled plan feature */
.plan-feature-disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* FAQ number badge */
.faq-number {
  width: 24px;
}

/* ============================================
   Setup — Onboarding styles
   ============================================ */
/* Setup text/detail/links — defined in theme.scss (easy_invoice pattern) */
/* ============================================
   Support — Help & Contact page styles
   EPIC 7.3
   ============================================ */
.support-page {
  max-width: 750px;
  margin: 0 auto;
  padding: 24px;
}

.support-hero {
  text-align: center;
  padding: 24px 0 32px;
}

.quick-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-bottom: 32px;
}

.quick-link-card {
  flex: 1;
  max-width: 200px;
  background: white;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  border-radius: 6px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.quick-link-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transform: translateY(-2px);
}

.quick-link-icon {
  font-size: 28px;
  color: #0d6efd;
  margin-bottom: 8px;
}

.quick-link-title {
  font-size: 14px;
  font-weight: 600;
  color: #212837;
  margin-bottom: 4px;
}

.quick-link-desc {
  font-size: 12px;
  color: #6c757d;
}

.contact-form-section {
  background: white;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  border-radius: 6px;
  padding: 32px;
}

.contact-form {
  max-width: 600px;
}

/* Responsive */
@media (max-width: 768px) {
  .quick-links {
    flex-direction: column;
  }
  .quick-link-card {
    max-width: 100%;
  }
  .contact-form-section {
    padding: 16px;
  }
}
/* ============================================
   Account — My Account page styles
   EPIC 7.0 placeholder — filled in EPIC 7.2
   ============================================ */
/* Account detail card */
.account-detail {
  background: white;
  border-radius: 6px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  padding: 24px;
  margin-bottom: 24px;
}

.account-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}
.account-detail-row + .account-detail-row {
  border-top: 1px solid #f0f0f0;
}

.account-detail-label {
  color: #6c757d;
  font-weight: 500;
}

.account-detail-value {
  color: #212837;
  font-weight: 600;
}

/* Usage statistics */
.usage-stats {
  background: white;
  border-radius: 6px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  padding: 24px;
  margin-bottom: 24px;
}

.usage-stats-title {
  font-size: 16px;
  font-weight: 600;
  color: #212837;
  margin-bottom: 16px;
}

/* Cloud storage connections */
.cloud-connection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
  border-radius: 6px;
  margin-bottom: 8px;
}

.cloud-provider {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cloud-provider img {
  width: 32px;
  height: 32px;
}

.cloud-provider-name {
  font-size: 14px;
  font-weight: 600;
  color: #212837;
}

.cloud-provider-status {
  font-size: 12px;
}
.cloud-provider-status.connected {
  color: #028824;
}
.cloud-provider-status.disconnected {
  color: #6c757d;
}

/* Admin section (super domain only) */
.admin-section {
  background: #fff9f0;
  border-radius: 6px;
  border: 1px solid #fdecc8;
  padding: 24px;
  margin-top: 24px;
}

.admin-section-title {
  font-size: 16px;
  font-weight: 600;
  color: #212837;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.admin-section-title i {
  color: #ffa11d;
}

/* Responsive */
@media (max-width: 768px) {
  .account-detail {
    padding: 16px;
  }
  .account-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}
@media (max-width: 576px) {
  .cloud-connection-grid {
    grid-template-columns: 1fr;
  }
}
/* Variables */
@keyframes spinner-border {
  to {
    transform: rotate(360deg);
  }
}
/* Status Colors */
/* Plan Colors */
/* Breakpoints */
/* Spacing Scale */
/* Z-Index Scale */
/* Component Tokens */
.modal *:focus {
  z-index: auto !important;
}

.form-control:focus,
.form-select:focus,
.btn:focus {
  box-shadow: none !important;
}

.app {
  padding-top: 0;
}

.app-sidebar {
  top: 0;
}
@media (max-width: 991.98px) {
  .app-sidebar {
    top: 0;
  }
}

@media (max-width: 767.98px) {
  .pace .pace-activity {
    display: none !important;
  }
  .pace .pace-progress {
    display: none !important;
  }
}
.container {
  padding-left: 0;
  padding-right: 0;
}

@media (min-width: 576px) {
  .container,
  .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 768px) {
  .container,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 992px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm {
    max-width: 100%;
  }
}
@media (min-width: 1200px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl {
    max-width: 1140px;
  }
}
@media (min-width: 1660px) {
  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}
.alert {
  color: inherit !important;
  border: none;
  box-shadow: rgba(0, 0, 0, 0.03) 0px 0.3125rem 0.3125rem -0.15625rem, rgba(0, 0, 0, 0.02) 0px 0.1875rem 0.1875rem -0.09375rem, rgba(0, 0, 0, 0.02) 0px 0.125rem 0.125rem -0.0625rem, rgba(0, 0, 0, 0.03) 0px 0.0625rem 0.0625rem -0.03125rem, rgba(0, 0, 0, 0.04) 0px 0.03125rem 0.03125rem 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 0.0625rem;
}
.alert .btn-close {
  padding: 10px;
  background: transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat !important;
  opacity: 0.8;
  color: #212837;
}

.btn-primary,
.btn-primary.disabled,
.btn-primary:disabled {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.btn-primary:hover {
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

.btn-check:focus + .btn-primary, .btn-primary:focus {
  background-color: #3a3a3a;
  border-color: #3a3a3a;
}

.dropdown-item.active, .dropdown-item:active {
  background-color: #1a1a1a;
}

.page-item.active .page-link {
  background-color: #1a1a1a;
  border-color: #1a1a1a;
}

.nav-tabs {
  border-bottom: 1px solid #c9d2e3;
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
}

.nav.nav-tabs.nav-tabs-v2 > .nav-item > .nav-link {
  color: #212837;
  padding: 0 20px 10px 20px;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
  min-width: max-content;
}

.nav.nav-tabs.nav-tabs-v2 > .nav-item > .nav-link.active {
  border-bottom-color: #1a1a1a;
}

.nav.nav-wizards-1 .nav-item .nav-link:after {
  background: #1a1a1a;
}

.nav.nav-wizards-1 .nav-item .nav-link.active .nav-no, .nav.nav-wizards-1 .nav-item .nav-link.completed .nav-no {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #ffffff;
}

.nav.nav-wizards-1 .nav-item:last-child .nav-link.active:before, .nav.nav-wizards-1 .nav-item:last-child .nav-link.completed:before {
  background: #1a1a1a;
}

.nav.nav-wizards-1 .nav-item .nav-link {
  color: #212837 !important;
}

.navbar.navbar-sticky .nav .nav-link {
  color: #212837;
  font-weight: 500 !important;
}

.page-header .small, .page-header small {
  color: #212837;
}

.app-sidebar .menu .menu-header,
.app-sidebar .menu .menu-item .menu-link {
  color: #212837;
  font-size: inherit;
}

.btn-scroll-top {
  background: #212837;
}
.btn-scroll-top:hover {
  background: #1a1a1a;
}

.app-sidebar .menu .menu-item .menu-icon {
  color: #212837;
}

.text-black {
  color: #212837 !important;
}

.btn-secondary {
  background: #ffffff !important;
}

.list-group-item-action:focus, .list-group-item-action:hover {
  background: #ffffff;
  color: #212837;
}

.form-select:focus {
  border-color: #c9d2e3;
}

.form-control:focus {
  border-color: #c9d2e3;
}

.form-range::-webkit-slider-thumb {
  background-color: #1a1a1a;
}

.form-range::-webkit-slider-thumb:active {
  background-color: #212837;
}

input::placeholder {
  opacity: 0.5 !important;
  color: #212837 !important;
}

textarea::placeholder {
  opacity: 0.5 !important;
  color: #212837 !important;
}

label.form-label,
label.form-check-label {
  font-weight: 500;
}

.form-text {
  color: #212837;
}

.form-select,
.form-control {
  color: #212837;
}

th,
strong {
  font-weight: 600 !important;
}

.btn-default {
  color: #212837;
}
.btn-default:hover, .btn-default:active, .btn-default:focus {
  background-color: #f1f1f1;
}

.cke_1,
.cke_1 .cke_top,
.cke_1 .cke_bottom {
  border-color: #c9d2e3 !important;
}

.cke_1,
.cke_1 .cke_top {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
}

.cke_1,
.cke_1 .cke_bottom {
  border-bottom-left-radius: 6px;
  border-bottom-right-radius: 6px;
}

.cke_1 .cke_inner {
  border-radius: 6px;
}

.cke_button.cke_button__source {
  display: none;
}

#chatbase-message-bubbles {
  display: none !important;
}

s-badge {
  display: inline-flex;
}

s-button {
  display: inline-flex;
}
s-button i.fas, s-button i.far, s-button i.fab {
  display: inline-flex;
  align-items: center;
}

.modal-footer > * + * {
  margin-left: 0.25rem;
}
