/* line 3, ../../resources/sass/base/_reset.scss */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0; }

/* line 11, ../../resources/sass/base/_reset.scss */
body {
  font-family: "Noto Sans TC", "Barlow", sans-serif;
  font-size: 16px;
  color: #212121; }

/* line 17, ../../resources/sass/base/_reset.scss */
a {
  text-decoration: none;
  color: #F8414A; }

/* line 22, ../../resources/sass/base/_reset.scss */
ul, ol {
  list-style: none; }

/* line 26, ../../resources/sass/base/_reset.scss */
img {
  max-width: 100%;
  height: auto; }

/* line 31, ../../resources/sass/base/_reset.scss */
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit; }

/* line 3, ../../resources/sass/base/_typography.scss */
body {
  font-family: "Noto Sans TC", "Barlow", sans-serif; }

/* line 8, ../../resources/sass/base/_typography.scss */
h1, h2, h3, h4, h5, h6 {
  margin-bottom: 16px;
  line-height: 1.2; }

/* line 3, ../../resources/sass/base/_utilities.scss */
.text-center {
  text-align: center; }

/* line 7, ../../resources/sass/base/_utilities.scss */
.text-left {
  text-align: left; }

/* line 11, ../../resources/sass/base/_utilities.scss */
.text-right {
  text-align: right; }

/* line 15, ../../resources/sass/base/_utilities.scss */
.color-gray-dark {
  color: #a3a3a3; }

/* line 19, ../../resources/sass/base/_utilities.scss */
.color-gray-darker {
  color: #737373; }

/* line 24, ../../resources/sass/base/_utilities.scss */
.horizontal-divider {
  border: none;
  border-top: 1px solid #d7d7d7;
  width: 100%; }

/* line 2, ../../resources/sass/layout/_header.scss */
.main-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #FFEBB4;
  color: white; }
  /* line 10, ../../resources/sass/layout/_header.scss */
  .main-header .logo {
    font-size: 1.5rem;
    font-weight: bold; }
  /* line 15, ../../resources/sass/layout/_header.scss */
  .main-header .navigation {
    display: flex;
    gap: 16px; }
    /* line 19, ../../resources/sass/layout/_header.scss */
    .main-header .navigation a {
      color: white;
      transition: color 0.3s ease; }
      /* line 23, ../../resources/sass/layout/_header.scss */
      .main-header .navigation a:hover {
        color: #F8414A; }

/* line 2, ../../resources/sass/layout/_footer.scss */
.main-footer {
  background-color: #FFEBB4;
  color: white;
  padding: 24px;
  text-align: center; }
  /* line 8, ../../resources/sass/layout/_footer.scss */
  .main-footer .footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between; }
  /* line 15, ../../resources/sass/layout/_footer.scss */
  .main-footer .social-links {
    display: flex;
    gap: 16px;
    justify-content: center; }
    /* line 20, ../../resources/sass/layout/_footer.scss */
    .main-footer .social-links a {
      color: white;
      transition: color 0.3s ease; }
      /* line 24, ../../resources/sass/layout/_footer.scss */
      .main-footer .social-links a:hover {
        color: #F8414A; }
  /* line 30, ../../resources/sass/layout/_footer.scss */
  .main-footer .copyright {
    margin-top: 16px;
    font-size: 0.875rem; }

/* line 3, ../../resources/sass/components/_buttons.scss */
.btn-round-gray {
  display: flex;
  padding: 4px 16px;
  justify-content: center;
  align-items: center;
  gap: 4px;
  border-radius: 26px;
  border: 1px solid #a3a3a3;
  color: #a3a3a3;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 18px */
  background: #fff; }
  /* line 17, ../../resources/sass/components/_buttons.scss */
  .btn-round-gray:hover {
    border: 1px solid #212121;
    color: #212121; }

/* line 23, ../../resources/sass/components/_buttons.scss */
.action-button {
  padding: 6px 16px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  background-color: transparent;
  border-radius: unset;
  border: none;
  width: 100%;
  text-align: center;
  margin: 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%; }
  /* line 39, ../../resources/sass/components/_buttons.scss */
  .action-button.content-button {
    color: #212121;
    border: 1px solid #212121; }
    /* line 42, ../../resources/sass/components/_buttons.scss */
    .action-button.content-button.disabled-button {
      color: #a3a3a3;
      border: 1px solid #a3a3a3;
      cursor: not-allowed; }
  /* line 49, ../../resources/sass/components/_buttons.scss */
  .action-button.edit-button {
    background-color: #212121;
    color: #ffffff; }
  /* line 54, ../../resources/sass/components/_buttons.scss */
  .action-button.submit-inline-button {
    width: auto;
    margin-left: 6px;
    display: inline-block;
    border-radius: unset;
    padding: 6px 16px;
    letter-spacing: inherit; }
    @media (max-width: 768px) {
      /* line 54, ../../resources/sass/components/_buttons.scss */
      .action-button.submit-inline-button {
        margin-left: 0;
        margin-top: 6px; } }

/* line 68, ../../resources/sass/components/_buttons.scss */
.icon-more, .icon-less {
  position: relative;
  width: 100%;
  height: 24px;
  align-items: center;
  justify-content: center;
  z-index: 3; }
  /* line 76, ../../resources/sass/components/_buttons.scss */
  .icon-more .separator-line, .icon-less .separator-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background-color: #d7d7d7;
    z-index: 1; }

/* line 87, ../../resources/sass/components/_buttons.scss */
.icon-more {
  display: flex; }
  /* line 89, ../../resources/sass/components/_buttons.scss */
  .icon-more.is-expanded {
    display: none; }

/* line 94, ../../resources/sass/components/_buttons.scss */
.icon-less {
  display: none; }
  /* line 96, ../../resources/sass/components/_buttons.scss */
  .icon-less.is-expanded {
    display: flex; }

/* line 102, ../../resources/sass/components/_buttons.scss */
.icon-circle {
  position: relative;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background-color: #ffffff;
  color: #212121;
  border-radius: 50%;
  border: 1px solid #d7d7d7;
  transition: all 0.2s ease;
  z-index: 2; }
  /* line 117, ../../resources/sass/components/_buttons.scss */
  .icon-circle svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px; }

/* line 128, ../../resources/sass/components/_buttons.scss */
.copy-btn {
  background: #fff;
  border: 1px solid #d7d7d7;
  cursor: pointer;
  padding: 4px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  align-self: center; }
  /* line 142, ../../resources/sass/components/_buttons.scss */
  .copy-btn .copy-icon {
    width: 20px;
    height: 20px;
    display: block; }

/* line 4, ../../resources/sass/components/_forms.scss */
.form-group input,
.form-group select,
.form-group textarea {
  border: 1px solid #d7d7d7;
  border-radius: 10px; }
  /* line 10, ../../resources/sass/components/_forms.scss */
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    outline: none;
    border-color: #F8414A; }

/* line 49, ../../resources/sass/components/_modals.scss */
.custom-modal .modal-dialog {
  margin: 1.75rem auto; }
/* line 53, ../../resources/sass/components/_modals.scss */
.custom-modal .modal-content {
  border-radius: 10px !important;
  -webkit-border-radius: 10px !important;
  -moz-border-radius: 10px !important;
  border: none;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); }
/* line 62, ../../resources/sass/components/_modals.scss */
.custom-modal .modal-header {
  height: auto !important;
  padding: 24px 32px;
  border-bottom: 1px solid #dee2e6;
  position: relative; }
  /* line 68, ../../resources/sass/components/_modals.scss */
  .custom-modal .modal-header .modal-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0; }
  /* line 75, ../../resources/sass/components/_modals.scss */
  .custom-modal .modal-header .close {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 24px;
    color: #666;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center; }
    /* line 92, ../../resources/sass/components/_modals.scss */
    .custom-modal .modal-header .close:hover {
      color: #333; }
    /* line 96, ../../resources/sass/components/_modals.scss */
    .custom-modal .modal-header .close:focus {
      outline: none; }
/* line 102, ../../resources/sass/components/_modals.scss */
.custom-modal .modal-body {
  padding: 24px 32px; }

/* line 110, ../../resources/sass/components/_modals.scss */
.swal2-confirm.btn-red:focus, .swal2-confirm.btn-red:active {
  outline: none !important;
  box-shadow: none !important; }

/* line 6, ../../resources/sass/components/_navs.scss */
.tab-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 16px; }

/* line 13, ../../resources/sass/components/_navs.scss */
.tab-menu {
  flex: 1; }

/* line 17, ../../resources/sass/components/_navs.scss */
.tab-list {
  display: flex;
  border-bottom: 2px solid #f8414a; }

/* line 22, ../../resources/sass/components/_navs.scss */
.tab-item {
  flex: 1 1 0;
  padding: 6px 0;
  text-align: center;
  color: #f8414a;
  cursor: pointer;
  transition: 0.2s all ease;
  border-radius: 10px 10px 0 0;
  font-size: 16px;
  font-weight: 700; }
  /* line 33, ../../resources/sass/components/_navs.scss */
  .tab-item.active {
    background-color: #f8414a;
    color: #ffffff; }

/* line 41, ../../resources/sass/components/_navs.scss */
.sub-tab-container {
  flex: 1; }

/* line 45, ../../resources/sass/components/_navs.scss */
.sub-tab-menu {
  width: 100%; }

/* line 49, ../../resources/sass/components/_navs.scss */
.sub-tab-list {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0; }

/* line 56, ../../resources/sass/components/_navs.scss */
.sub-tab-item {
  position: relative;
  flex: 1;
  text-align: center;
  padding-bottom: 10px;
  cursor: pointer;
  border-bottom: 2px solid #d7d7d7;
  color: #a3a3a3;
  font-family: "Noto Sans TC", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  transition: color 0.3s, border-color 0.3s; }
  /* line 70, ../../resources/sass/components/_navs.scss */
  .sub-tab-item:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -9px;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid transparent;
    transition: border-color 0.3s; }
  /* line 84, ../../resources/sass/components/_navs.scss */
  .sub-tab-item:hover:not(.active) {
    color: #737373; }
  /* line 88, ../../resources/sass/components/_navs.scss */
  .sub-tab-item.active {
    color: #737373;
    font-weight: 700;
    border-bottom-color: #737373; }
    /* line 93, ../../resources/sass/components/_navs.scss */
    .sub-tab-item.active:after {
      border-top-color: #737373; }

/* line 101, ../../resources/sass/components/_navs.scss */
.intro-container {
  width: 100%;
  position: relative;
  display: flex;
  padding: 16px 64px;
  justify-content: center;
  align-items: center;
  margin: 40px auto;
  color: #737373;
  border: 1px solid #d7d7d7;
  text-align: left; }

@media (max-width: 768px) {
  /* line 115, ../../resources/sass/components/_navs.scss */
  .intro-container {
    padding: 16px; } }
/* line 3, ../../resources/sass/components/_tables.scss */
.project-dashboard {
  padding-top: 5px; }

@media (max-width: 768px) {
  /* line 8, ../../resources/sass/components/_tables.scss */
  .project-dashboard {
    padding-top: 1px; } }
/* line 15, ../../resources/sass/components/_tables.scss */
.dashboard-container {
  max-width: 1100px;
  margin: auto; }

@media (max-width: 1100px) {
  /* line 21, ../../resources/sass/components/_tables.scss */
  .dashboard-container {
    margin: auto 16px; } }
/* line 26, ../../resources/sass/components/_tables.scss */
.gray-box {
  padding: 24px;
  background: #f6f6f6;
  margin-bottom: 40px;
  border-radius: 10px; }

/* line 37, ../../resources/sass/components/_tables.scss */
.table-list-container {
  margin-bottom: 16px;
  width: 100%;
  display: flex;
  flex-direction: column; }

/* line 44, ../../resources/sass/components/_tables.scss */
.table-list-wrapper {
  position: relative;
  background-color: #f6f6f6;
  width: 100%;
  margin-bottom: 16px; }
  /* line 49, ../../resources/sass/components/_tables.scss */
  .table-list-wrapper.has-sub-table {
    padding-bottom: 16px; }

/* line 54, ../../resources/sass/components/_tables.scss */
.table-list {
  display: flex;
  align-items: flex-start;
  padding: 16px;
  position: relative;
  width: 100%;
  box-sizing: border-box;
  flex-wrap: nowrap;
  justify-content: space-between; }
  /* line 63, ../../resources/sass/components/_tables.scss */
  .table-list.has-sub-table {
    padding-bottom: 0;
    margin-bottom: 0; }

/* line 69, ../../resources/sass/components/_tables.scss */
.table-list-info {
  display: flex;
  position: relative;
  width: 100%;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap; }

/* line 78, ../../resources/sass/components/_tables.scss */
.table-list-color {
  width: 20px;
  height: 15px;
  position: absolute;
  top: 20px;
  left: 0; }
  /* line 85, ../../resources/sass/components/_tables.scss */
  .table-list-color.status-online {
    background-color: #10ba9c; }
  /* line 86, ../../resources/sass/components/_tables.scss */
  .table-list-color.status-alert {
    background-color: #ffa412; }
  /* line 87, ../../resources/sass/components/_tables.scss */
  .table-list-color.status-full {
    background-color: #f8414a; }
  /* line 88, ../../resources/sass/components/_tables.scss */
  .table-list-color.status-hidden {
    background-color: #d7d7d7; }

/* line 91, ../../resources/sass/components/_tables.scss */
.table-list-id {
  font-size: 14px;
  font-weight: 700;
  color: #a3a3a3;
  margin-right: 8px;
  margin-left: 12px;
  flex: 0 0 auto; }

/* line 100, ../../resources/sass/components/_tables.scss */
.table-list-detail {
  flex: 1 1 auto;
  margin-right: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  white-space: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  max-width: 320px;
  max-height: 42px;
  line-height: 1.5;
  position: relative; }
  /* line 117, ../../resources/sass/components/_tables.scss */
  .table-list-detail:hover::after {
    content: attr(title);
    position: absolute;
    left: 0;
    top: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 10;
    width: max-content;
    max-width: 300px;
    font-size: 12px;
    margin-top: 5px;
    white-space: normal;
    word-wrap: break-word;
    pointer-events: none; }

/* line 137, ../../resources/sass/components/_tables.scss */
.table-list-price {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  flex: 0 0 100px;
  font-weight: 700;
  color: #f8414a;
  text-align: right;
  padding-right: 16px;
  margin-right: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  line-height: 125%; }

/* line 152, ../../resources/sass/components/_tables.scss */
.table-list-stats {
  display: flex;
  flex: 0 0 50%;
  border-left: 1px solid #d7d7d7;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 0; }

/* line 161, ../../resources/sass/components/_tables.scss */
.table-list-stat {
  flex: 0 0 33%;
  display: flex;
  flex-direction: column;
  min-height: 50px;
  padding: 0 16px;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: flex-start; }
  /* line 172, ../../resources/sass/components/_tables.scss */
  .table-list-stat:not(:first-child) {
    border-left: 1px solid #d7d7d7; }

/* line 177, ../../resources/sass/components/_tables.scss */
.table-list-stat:nth-child(2) .table-list-stat-value {
  font-weight: 700; }
  /* line 179, ../../resources/sass/components/_tables.scss */
  .table-list-stat:nth-child(2) .table-list-stat-value.no-value {
    font-weight: 400; }

/* line 184, ../../resources/sass/components/_tables.scss */
.table-list-stat-label {
  font-size: 12px;
  color: #737373;
  margin-bottom: 6px;
  align-self: flex-start;
  line-height: 150%; }

/* line 192, ../../resources/sass/components/_tables.scss */
.table-list-stat-value {
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 400; }
  /* line 197, ../../resources/sass/components/_tables.scss */
  .table-list-stat-value.no-value {
    font-family: "Noto Sans TC", "Barlow", sans-serif;
    color: #a3a3a3;
    font-size: 14px;
    font-weight: 400; }

/* line 205, ../../resources/sass/components/_tables.scss */
.table-list-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end; }

/* line 211, ../../resources/sass/components/_tables.scss */
.table-list-action {
  display: flex;
  justify-content: center;
  border-left: 1px solid #d7d7d7;
  padding: 8px 16px;
  min-height: 50px;
  box-sizing: border-box;
  margin: 0; }
  /* line 220, ../../resources/sass/components/_tables.scss */
  .table-list-action:last-child {
    padding-right: 0; }

/* line 226, ../../resources/sass/components/_tables.scss */
.table-sub-container {
  position: relative;
  padding: 0 16px 16px; }

/* line 231, ../../resources/sass/components/_tables.scss */
.table-sub-list-wrapper {
  width: 100%;
  padding: 0 16px 16px;
  margin-top: 0;
  margin-bottom: 16px; }
  /* line 237, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    color: #a3a3a3;
    margin-bottom: 12px; }
  /* line 245, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list {
    background: #ffffff;
    padding: 16px;
    border-radius: 10px; }
  /* line 251, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list-header {
    display: flex;
    align-items: flex-start;
    position: relative;
    width: 100%;
    box-sizing: border-box;
    flex-wrap: nowrap;
    justify-content: space-between;
    padding-bottom: 16px;
    border-bottom: 1px solid #d7d7d7;
    font-weight: 400; }
    /* line 263, ../../resources/sass/components/_tables.scss */
    .table-sub-list-wrapper .table-sub-list-header .table-header-title {
      flex: 1;
      font-size: 12px;
      color: #737373;
      padding: 0 16px; }
    /* line 270, ../../resources/sass/components/_tables.scss */
    .table-sub-list-wrapper .table-sub-list-header .table-header-values {
      display: flex;
      flex: 1; }
    /* line 275, ../../resources/sass/components/_tables.scss */
    .table-sub-list-wrapper .table-sub-list-header .table-header-value {
      flex: 0 0 86px;
      text-align: left;
      font-size: 12px;
      color: #737373;
      padding: 0 16px;
      border-left: 1px solid #d7d7d7;
      min-height: 24px; }
  /* line 287, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list-content {
    width: 100%;
    position: relative; }
    /* line 291, ../../resources/sass/components/_tables.scss */
    .table-sub-list-wrapper .table-sub-list-content .table-row {
      display: flex;
      padding: 16px 0;
      border-bottom: 1px solid #d7d7d7;
      align-items: center;
      justify-content: space-between;
      position: relative; }
      /* line 299, ../../resources/sass/components/_tables.scss */
      .table-sub-list-wrapper .table-sub-list-content .table-row:last-child {
        border-bottom: none;
        padding-bottom: 0; }
      /* line 304, ../../resources/sass/components/_tables.scss */
      .table-sub-list-wrapper .table-sub-list-content .table-row .table-col-title {
        flex: 1;
        font-size: 14px;
        font-weight: 400;
        color: #212121;
        padding: 0 16px; }
      /* line 312, ../../resources/sass/components/_tables.scss */
      .table-sub-list-wrapper .table-sub-list-content .table-row .table-col-values {
        flex: 1;
        display: flex; }
      /* line 317, ../../resources/sass/components/_tables.scss */
      .table-sub-list-wrapper .table-sub-list-content .table-row .table-col-value {
        flex: 0 0 86px;
        text-align: left;
        padding: 0 16px;
        font-family: "Barlow", sans-serif;
        font-size: 16px;
        color: #212121;
        font-weight: 700;
        border-left: 1px solid #d7d7d7;
        min-height: 24px; }
        /* line 328, ../../resources/sass/components/_tables.scss */
        .table-sub-list-wrapper .table-sub-list-content .table-row .table-col-value.no-value {
          font-family: "Noto Sans TC", "Barlow", sans-serif;
          color: #a3a3a3;
          font-size: 14px;
          font-weight: 400; }

/* line 341, ../../resources/sass/components/_tables.scss */
.table-section-empty {
  text-align: center;
  padding: 40px 20px;
  background-color: #f6f6f6; }
  /* line 346, ../../resources/sass/components/_tables.scss */
  .table-section-empty .empty-icon {
    margin-bottom: 16px; }
    /* line 349, ../../resources/sass/components/_tables.scss */
    .table-section-empty .empty-icon img {
      width: 85px; }
  /* line 354, ../../resources/sass/components/_tables.scss */
  .table-section-empty .empty-message {
    color: #212121;
    font-size: 14px;
    max-width: 400px;
    margin: 0 auto; }
    /* line 359, ../../resources/sass/components/_tables.scss */
    .table-section-empty .empty-message a {
      color: #F8414A; }

@media (max-width: 992px) {
  /* line 366, ../../resources/sass/components/_tables.scss */
  .table-list-info {
    flex-wrap: wrap; }

  /* line 370, ../../resources/sass/components/_tables.scss */
  .table-list .table-list-info:nth-of-type(2) {
    flex-wrap: nowrap; }

  /* line 374, ../../resources/sass/components/_tables.scss */
  .table-list-stats {
    flex: 1 100%; }

  /* line 379, ../../resources/sass/components/_tables.scss */
  .table-list-actions {
    flex: 1 100%; }

  /* line 383, ../../resources/sass/components/_tables.scss */
  .table-list-action {
    border-left: 0;
    padding: 16px 8px 8px; } }
@media (max-width: 575px) {
  /* line 390, ../../resources/sass/components/_tables.scss */
  .table-list {
    flex-wrap: wrap; }

  /* line 394, ../../resources/sass/components/_tables.scss */
  .table-list-price {
    padding-right: 0; }

  /* line 398, ../../resources/sass/components/_tables.scss */
  .table-list-stats {
    border-left: 0;
    margin-top: 16px; }

  /* line 403, ../../resources/sass/components/_tables.scss */
  .table-list-stat {
    flex: unset;
    padding: 0; }

  /* line 408, ../../resources/sass/components/_tables.scss */
  .table-list-stat:not(:first-child) {
    border-left: 0; }

  /* line 413, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list {
    overflow: auto; }
  /* line 417, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list-header .table-header-value {
    flex: auto; }
  /* line 421, ../../resources/sass/components/_tables.scss */
  .table-sub-list-wrapper .table-sub-list-content .table-row .table-col-value {
    flex: auto; } }
/* line 432, ../../resources/sass/components/_tables.scss */
table.dataTable thead .sorting:after,
table.dataTable thead .sorting_asc:after,
table.dataTable thead .sorting_desc:after,
table.dataTable thead .sorting_asc_disabled:after,
table.dataTable thead .sorting_desc_disabled:after {
  right: unset;
  left: 60px; }

/* line 442, ../../resources/sass/components/_tables.scss */
.datatable-controls-container {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  flex-wrap: wrap; }
  /* line 448, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container .left-controls {
    display: flex;
    align-items: center;
    flex: 1 1 auto;
    min-width: 0; }
    /* line 454, ../../resources/sass/components/_tables.scss */
    .datatable-controls-container .left-controls div.dataTables_info {
      padding-top: 0; }
  /* line 459, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container div.dataTables_info {
    padding-top: 0;
    margin-right: 40px; }
  /* line 464, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container div.dataTables_length {
    position: relative;
    display: inline-block;
    vertical-align: middle; }
    /* line 469, ../../resources/sass/components/_tables.scss */
    .datatable-controls-container div.dataTables_length label {
      display: flex;
      align-items: center; }
    /* line 474, ../../resources/sass/components/_tables.scss */
    .datatable-controls-container div.dataTables_length select {
      width: 67px !important;
      padding: 6px 12px;
      height: 33px;
      margin-right: 8px;
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      background-image: none;
      padding-right: 20px !important;
      position: relative;
      z-index: 2;
      background-color: transparent;
      line-height: 1; }
      /* line 482, ../../resources/sass/components/_tables.scss */
      .datatable-controls-container div.dataTables_length select::-ms-expand {
        display: none; }
    /* line 493, ../../resources/sass/components/_tables.scss */
    .datatable-controls-container div.dataTables_length::after {
      content: '\f078';
      font-family: 'FontAwesome';
      font-weight: 400;
      position: absolute;
      right: 30px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #737373;
      font-size: 14px;
      z-index: 1;
      cursor: pointer; }
  /* line 511, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container .pagination > .active > a,
  .datatable-controls-container .pagination > .active > span,
  .datatable-controls-container .pagination > .active > a:hover,
  .datatable-controls-container .pagination > .active > span:hover,
  .datatable-controls-container .pagination > .active > a:focus,
  .datatable-controls-container .pagination > .active > span:focus {
    font-weight: 500;
    outline: none; }
  /* line 523, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container .pagination > li > a:hover,
  .datatable-controls-container .pagination > li > span:hover,
  .datatable-controls-container .pagination > li > a:focus,
  .datatable-controls-container .pagination > li > span:focus {
    outline: none; }

@media (max-width: 768px) {
  /* line 537, ../../resources/sass/components/_tables.scss */
  .report-view .report-table-body tr td {
    padding: 16px 4px; }

  /* line 544, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container .left-controls {
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px; }
    /* line 548, ../../resources/sass/components/_tables.scss */
    .datatable-controls-container .left-controls div.dataTables_info {
      margin-right: 16px; }
  /* line 552, ../../resources/sass/components/_tables.scss */
  .datatable-controls-container .right-controls {
    width: 100%;
    justify-content: flex-end;
    display: flex;
    margin-top: 12px; } }
/* line 3, ../../resources/sass/components/_tags.scss */
.tag-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px; }

/* line 9, ../../resources/sass/components/_tags.scss */
.tag-item {
  display: inline-flex;
  padding: 4px 8px;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
  transition: 300ms ease-out; }
  /* line 20, ../../resources/sass/components/_tags.scss */
  .tag-item:hover {
    background: #fbfbfb; }
    /* line 22, ../../resources/sass/components/_tags.scss */
    .tag-item:hover .tag-label {
      color: #737373; }
  /* line 27, ../../resources/sass/components/_tags.scss */
  .tag-item.active {
    background: #f6f6f6; }
    /* line 29, ../../resources/sass/components/_tags.scss */
    .tag-item.active .tag-label {
      color: #737373; }

/* line 35, ../../resources/sass/components/_tags.scss */
.tag-color {
  position: relative;
  width: 20px;
  height: 15px;
  transition: transform 0.3s ease;
  transform-origin: center; }
  /* line 42, ../../resources/sass/components/_tags.scss */
  .tag-color.color-online {
    background-color: #10ba9c; }
  /* line 43, ../../resources/sass/components/_tags.scss */
  .tag-color.color-alert {
    background-color: #ffa412; }
  /* line 44, ../../resources/sass/components/_tags.scss */
  .tag-color.color-full {
    background-color: #f8414a; }
  /* line 45, ../../resources/sass/components/_tags.scss */
  .tag-color.color-hidden {
    background-color: #d7d7d7; }
  /* line 47, ../../resources/sass/components/_tags.scss */
  .tag-item:hover .tag-color {
    transform: scale(1.15); }

/* line 52, ../../resources/sass/components/_tags.scss */
.tag-label {
  color: #a3a3a3;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  /* 18px */ }

/* line 60, ../../resources/sass/components/_tags.scss */
.tooltip-container {
  position: relative;
  cursor: help; }
  /* line 64, ../../resources/sass/components/_tags.scss */
  .tooltip-container:hover .tooltip-text {
    visibility: visible;
    opacity: 1; }

/* line 70, ../../resources/sass/components/_tags.scss */
.tooltip-text {
  visibility: hidden;
  position: absolute;
  z-index: 1000;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #212121;
  color: #f6f6f6;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 4px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s ease; }
  /* line 88, ../../resources/sass/components/_tags.scss */
  .tooltip-text:after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #212121 transparent transparent transparent; }

/* line 102, ../../resources/sass/components/_tags.scss */
.tooltip .tooltip-inner {
  background-color: #212121;
  color: #f6f6f6;
  text-align: left;
  font-size: 12px;
  line-height: 1.4;
  padding: 8px 10px;
  border-radius: 4px;
  max-width: 200px; }
/* line 113, ../../resources/sass/components/_tags.scss */
.tooltip.bs-tooltip-top .arrow::before {
  border-top-color: #212121; }

/* line 118, ../../resources/sass/components/_tags.scss */
.tag-badge {
  display: inline-flex;
  padding: 2px 8px;
  align-items: center;
  gap: 4px;
  border-radius: 4px;
  background: #fbfbfb;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 18px */
  letter-spacing: 0.6px;
  color: #737373;
  white-space: nowrap; }

/* line 134, ../../resources/sass/components/_tags.scss */
.badge-orange {
  background: #ffeccc;
  color: #212121; }

/* line 138, ../../resources/sass/components/_tags.scss */
.badge-green {
  background: #d8f2ed;
  color: #212121; }

/* line 142, ../../resources/sass/components/_tags.scss */
.badge-red {
  background: #ffd0d3;
  color: #212121; }

/* line 147, ../../resources/sass/components/_tags.scss */
.badge-gray {
  background: #a3a3a3;
  color: white; }

/* line 152, ../../resources/sass/components/_tags.scss */
.tag-notify {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px; }

/* line 6, ../../resources/sass/components/_toast.scss */
#toast-container > .toast {
  background-color: #212121;
  padding: 16px 20px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  opacity: 1;
  font-size: 14px;
  line-height: 1.5;
  background-image: none !important;
  color: #ffffff;
  padding-left: 20px !important; }
  /* line 19, ../../resources/sass/components/_toast.scss */
  #toast-container > .toast:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    opacity: 1; }
  /* line 25, ../../resources/sass/components/_toast.scss */
  #toast-container > .toast:before {
    display: none !important; }
/* line 31, ../../resources/sass/components/_toast.scss */
#toast-container > .toast-success {
  background-color: #10ba9c; }
  /* line 34, ../../resources/sass/components/_toast.scss */
  #toast-container > .toast-success .toast-message:before {
    content: "\f058";
    font-family: "FontAwesome";
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: 2px; }
/* line 47, ../../resources/sass/components/_toast.scss */
#toast-container > .toast-error {
  background-color: #f8414a; }
  /* line 50, ../../resources/sass/components/_toast.scss */
  #toast-container > .toast-error .toast-message:before {
    content: "\f06a";
    font-family: "FontAwesome";
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: baseline;
    position: relative;
    top: 2px; }
/* line 63, ../../resources/sass/components/_toast.scss */
#toast-container > .toast-warning {
  background-color: #ffa412; }
  /* line 66, ../../resources/sass/components/_toast.scss */
  #toast-container > .toast-warning .toast-message:before {
    content: "\f06a";
    font-family: "FontAwesome";
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle; }
/* line 77, ../../resources/sass/components/_toast.scss */
#toast-container > .toast-info {
  background-color: #212121; }
  /* line 80, ../../resources/sass/components/_toast.scss */
  #toast-container > .toast-info .toast-message:before {
    content: "\f05a";
    font-family: "FontAwesome";
    font-size: 18px;
    margin-right: 10px;
    display: inline-block;
    vertical-align: middle; }
/* line 91, ../../resources/sass/components/_toast.scss */
#toast-container .toast-title {
  font-weight: 700;
  margin-bottom: 4px; }
/* line 97, ../../resources/sass/components/_toast.scss */
#toast-container .toast-message {
  font-weight: 400;
  opacity: 0.95; }
/* line 103, ../../resources/sass/components/_toast.scss */
#toast-container .toast-close-button {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  color: #ffffff;
  opacity: 0.7;
  font-weight: 700;
  text-shadow: none;
  font-size: 18px;
  line-height: 1;
  padding: 0;
  margin: 0; }
  /* line 117, ../../resources/sass/components/_toast.scss */
  #toast-container .toast-close-button:hover {
    opacity: 1; }

/* line 7, ../../resources/sass/pages/_sales.scss */
.sales-dashboard {
  max-width: 1100px;
  margin: 0 auto 60px;
  padding: 0 20px; }

/* line 15, ../../resources/sass/pages/_sales.scss */
.sales-tab-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px; }
  /* line 21, ../../resources/sass/pages/_sales.scss */
  .sales-tab-container .sub-tab-container {
    max-width: 50%;
    margin-bottom: 0; }
  /* line 26, ../../resources/sass/pages/_sales.scss */
  .sales-tab-container .tag-container {
    justify-content: flex-end;
    flex: 1; }

/* line 33, ../../resources/sass/pages/_sales.scss */
.empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  background-color: #f7f7f7;
  border-radius: 4px; }
  /* line 42, ../../resources/sass/pages/_sales.scss */
  .empty-state .empty-icon {
    width: 120px;
    height: 120px;
    margin-bottom: 20px;
    opacity: 0.7; }
  /* line 49, ../../resources/sass/pages/_sales.scss */
  .empty-state .empty-message {
    font-size: 16px;
    color: #4a4a4a;
    text-align: center;
    max-width: 300px;
    line-height: 1.5; }

/* line 59, ../../resources/sass/pages/_sales.scss */
.loading-state {
  padding: 40px 0;
  text-align: center; }
  /* line 63, ../../resources/sass/pages/_sales.scss */
  .loading-state .loading-spinner {
    margin-bottom: 15px; }
    /* line 66, ../../resources/sass/pages/_sales.scss */
    .loading-state .loading-spinner i {
      font-size: 40px;
      color: #4a4a4a;
      animation: spin 1s linear infinite; }
  /* line 73, ../../resources/sass/pages/_sales.scss */
  .loading-state .loading-text {
    font-size: 16px;
    color: #4a4a4a; }

/* line 80, ../../resources/sass/pages/_sales.scss */
.error-state {
  padding: 40px 0;
  text-align: center;
  color: #f87171; }
  /* line 85, ../../resources/sass/pages/_sales.scss */
  .error-state .error-icon {
    margin-bottom: 15px;
    font-size: 40px; }
  /* line 90, ../../resources/sass/pages/_sales.scss */
  .error-state .error-message {
    font-size: 16px;
    margin-bottom: 20px; }
  /* line 95, ../../resources/sass/pages/_sales.scss */
  .error-state .reload-button {
    background-color: #f87171;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease; }
    /* line 105, ../../resources/sass/pages/_sales.scss */
    .error-state .reload-button:hover {
      background-color: #f64040; }

/* line 112, ../../resources/sass/pages/_sales.scss */
.modal .modal-body h3.bluequote {
  font-size: 16px;
  font-weight: 500;
  color: #212121;
  margin-bottom: 16px; }
  /* line 117, ../../resources/sass/pages/_sales.scss */
  .modal .modal-body h3.bluequote:before {
    height: 16px; }

/* line 125, ../../resources/sass/pages/_sales.scss */
.plans-container .reward-event-group .reward-event .event-image {
  width: 142px;
  height: 106px; }
/* line 130, ../../resources/sass/pages/_sales.scss */
.plans-container .reward-event-group .reward-event .event-info .event-info-title {
  flex: 2; }
/* line 133, ../../resources/sass/pages/_sales.scss */
.plans-container .reward-event-group .reward-event .event-info .event-info-specification {
  flex: 1;
  font-family: "Barlow", sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 125%;
  margin-right: 16px;
  color: #F8414A;
  justify-items: flex-end; }

@keyframes spin {
  from {
    transform: rotate(0deg); }
  to {
    transform: rotate(360deg); } }
@media screen and (max-width: 575px) {
  /* line 156, ../../resources/sass/pages/_sales.scss */
  .project-sales .sales-tab-container {
    flex-wrap: wrap; }
    /* line 158, ../../resources/sass/pages/_sales.scss */
    .project-sales .sales-tab-container .sub-tab-container {
      max-width: none;
      flex: 1 100%; }
    /* line 163, ../../resources/sass/pages/_sales.scss */
    .project-sales .sales-tab-container .tag-container {
      margin-top: 16px; } }
/* line 5, ../../resources/sass/pages/_orders.scss */
.orders-actions {
  display: flex;
  gap: 16px;
  margin-bottom: 24px; }
  @media (max-width: 768px) {
    /* line 5, ../../resources/sass/pages/_orders.scss */
    .orders-actions {
      flex-direction: column; } }

/* line 15, ../../resources/sass/pages/_orders.scss */
.action-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 24px; }
  /* line 22, ../../resources/sass/pages/_orders.scss */
  .action-item.gray-box {
    margin-bottom: 0; }
  /* line 26, ../../resources/sass/pages/_orders.scss */
  .action-item .action-icon {
    flex-shrink: 0;
    width: 85px;
    height: 85px; }
    /* line 31, ../../resources/sass/pages/_orders.scss */
    .action-item .action-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain; }
  /* line 38, ../../resources/sass/pages/_orders.scss */
  .action-item .action-content {
    flex: 1;
    display: flex;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: space-between;
    gap: 24px; }
    /* line 46, ../../resources/sass/pages/_orders.scss */
    .action-item .action-content p {
      font-size: 12px;
      line-height: 150%; }
    /* line 51, ../../resources/sass/pages/_orders.scss */
    .action-item .action-content .btn {
      padding: 6px 16px;
      letter-spacing: 0;
      min-width: 124px;
      transition: opacity 0.2s ease; }
      /* line 57, ../../resources/sass/pages/_orders.scss */
      .action-item .action-content .btn[disabled], .action-item .action-content .btn.loading {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none; }
  @media (max-width: 768px) {
    /* line 67, ../../resources/sass/pages/_orders.scss */
    .action-item .action-icon {
      width: 50px;
      height: 50px; }
    /* line 72, ../../resources/sass/pages/_orders.scss */
    .action-item .action-content {
      flex-wrap: wrap;
      gap: 16px; } }

/* line 85, ../../resources/sass/pages/_orders.scss */
.orders-filter .v55-form .form-group {
  margin-bottom: 16px; }
  /* line 88, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .form-label {
    margin: 0;
    white-space: nowrap;
    font-size: 15px;
    font-weight: 500;
    flex-shrink: 0; }
  /* line 96, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .custom-form-group-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    position: relative; }
  /* line 104, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customSearchWrapper {
    position: relative; }
    /* line 107, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .customSearchWrapper .form-control {
      padding-right: 36px; }
    /* line 111, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .customSearchWrapper svg {
      position: absolute;
      right: 7px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      z-index: 1; }
  /* line 122, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customSelectWrapper select {
    flex: 1;
    min-width: 0; }
  /* line 126, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customSelectWrapper svg {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.2s ease;
    cursor: pointer; }
  /* line 138, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group.datepicker-wrapper {
    display: flex;
    flex-wrap: wrap; }
  /* line 145, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group {
    display: flex;
    background-color: white;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    transition: border-color 0.3s ease;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
    overflow: hidden; }
    /* line 154, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group input {
      padding-left: 52px;
      border: none;
      background-color: transparent;
      box-shadow: none;
      width: 100%; }
    /* line 161, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group .date-input {
      position: relative;
      cursor: pointer;
      width: 100%; }
      /* line 166, ../../resources/sass/pages/_orders.scss */
      .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group .date-input svg {
        position: absolute;
        left: 12px;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none; }
        @media (max-width: 440px) {
          /* line 166, ../../resources/sass/pages/_orders.scss */
          .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group .date-input svg {
            display: block; } }
      /* line 177, ../../resources/sass/pages/_orders.scss */
      .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group .date-input .date-clear-btn {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        background: none;
        border: none;
        cursor: pointer;
        color: #212121;
        transition: all 0.2s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 16px;
        font-weight: 700;
        line-height: 1;
        width: 24px;
        height: 24px; }
        /* line 196, ../../resources/sass/pages/_orders.scss */
        .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group .date-input .date-clear-btn:hover {
          color: #737373; }
        /* line 200, ../../resources/sass/pages/_orders.scss */
        .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group .date-input .date-clear-btn:focus {
          outline: none;
          background-color: #f6f6f6; }
  /* line 209, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .quick-select-buttons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: flex-start; }
    /* line 215, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn {
      padding: 2px 8px;
      border: 1px solid #ddd;
      background: white;
      border-radius: 4px;
      cursor: pointer;
      font-size: 12px;
      transition: all 0.2s ease;
      color: #a3a3a3;
      white-space: nowrap;
      display: inline-flex;
      align-items: center;
      gap: 4px; }
      /* line 229, ../../resources/sass/pages/_orders.scss */
      .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn .btn-clear {
        display: none; }
      /* line 233, ../../resources/sass/pages/_orders.scss */
      .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn:hover {
        background: #ffebb4;
        border-color: #ffebb4; }
      /* line 238, ../../resources/sass/pages/_orders.scss */
      .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn.active {
        background: #a3a3a3;
        color: white;
        border-color: #a3a3a3; }
        /* line 243, ../../resources/sass/pages/_orders.scss */
        .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn.active .btn-clear {
          display: inline; }
        /* line 247, ../../resources/sass/pages/_orders.scss */
        .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn.active:hover {
          background: #737373;
          border-color: #737373; }
      /* line 253, ../../resources/sass/pages/_orders.scss */
      .orders-filter .v55-form .form-group .quick-select-buttons .quick-select-btn:focus {
        outline: none; }
  /* line 261, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customCheckboxWrapper .checkbox-option {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; }
  /* line 266, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customCheckboxWrapper span, .orders-filter .v55-form .form-group .customCheckboxWrapper span:first-child {
    margin-right: 16px; }
    /* line 268, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .customCheckboxWrapper span label, .orders-filter .v55-form .form-group .customCheckboxWrapper span:first-child label {
      margin-bottom: unset;
      font-weight: unset;
      min-width: 100px; }
/* line 277, ../../resources/sass/pages/_orders.scss */
.orders-filter .v55-form .submit-right {
  text-align: right; }
  /* line 280, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .submit-right .btn {
    margin-left: 24px;
    padding: 6px 20px; }
    /* line 284, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .submit-right .btn:first-child {
      margin-left: 0; }
/* line 291, ../../resources/sass/pages/_orders.scss */
.orders-filter .customSelectWrapper:has(.select2-container--open) svg,
.orders-filter .customSelectWrapper:has(.select2-selection__clear) svg {
  opacity: 0; }
/* line 297, ../../resources/sass/pages/_orders.scss */
.orders-filter .rewards-multiselect + .select2-container {
  width: 100%; }
  /* line 300, ../../resources/sass/pages/_orders.scss */
  .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple {
    font-size: 13px;
    letter-spacing: 1.2px;
    text-align: left;
    border: 1px solid #c7c7c7;
    border-radius: 10px;
    background-color: white;
    color: #212121;
    min-height: 40px;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075); }
    /* line 311, ../../resources/sass/pages/_orders.scss */
    .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-selection__rendered {
      padding: 0 8px; }
    /* line 316, ../../resources/sass/pages/_orders.scss */
    .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field {
      padding: 8px 12px 0;
      margin: unset;
      font-size: 12px;
      letter-spacing: 2px; }
      /* line 321, ../../resources/sass/pages/_orders.scss */
      .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-search--inline .select2-search__field::placeholder {
        color: #9b9b9b;
        opacity: 1; }
    /* line 328, ../../resources/sass/pages/_orders.scss */
    .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-selection__choice {
      border: none;
      margin: 8px 12px 0;
      font-size: 14px;
      padding: 2px 8px;
      letter-spacing: 0.98px;
      background-color: #f6f6f6; }
    /* line 337, ../../resources/sass/pages/_orders.scss */
    .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-selection__clear {
      margin-top: 8px;
      margin-right: 8px;
      padding: 0;
      font-size: 16px; }
      /* line 342, ../../resources/sass/pages/_orders.scss */
      .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-selection__clear:hover {
        color: #737373; }
    /* line 347, ../../resources/sass/pages/_orders.scss */
    .orders-filter .rewards-multiselect + .select2-container .select2-selection--multiple .select2-selection__choice__remove {
      font-weight: unset;
      margin-right: 8px; }
/* line 354, ../../resources/sass/pages/_orders.scss */
.orders-filter .select2-dropdown {
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08); }
  /* line 358, ../../resources/sass/pages/_orders.scss */
  .orders-filter .select2-dropdown .select2-results__option {
    padding: 8px 14px; }
    /* line 360, ../../resources/sass/pages/_orders.scss */
    .orders-filter .select2-dropdown .select2-results__option:hover, .orders-filter .select2-dropdown .select2-results__option--highlighted {
      background-color: #ffebb4;
      color: #212121; }
    /* line 366, ../../resources/sass/pages/_orders.scss */
    .orders-filter .select2-dropdown .select2-results__option--selected, .orders-filter .select2-dropdown .select2-results__option[aria-selected=true] {
      background-color: #f6f6f6;
      color: #212121; }

@media (max-width: 768px) {
  /* line 379, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .custom-form-group-wrapper {
    flex-wrap: wrap;
    gap: 4px; }
  /* line 383, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .form-label {
    flex: 100%; }
  /* line 387, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customSearchWrapper {
    width: 100%; }
    /* line 390, ../../resources/sass/pages/_orders.scss */
    .orders-filter .v55-form .form-group .customSearchWrapper svg {
      top: auto;
      bottom: 4px;
      transform: none; }
  /* line 398, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customSelectWrapper svg {
    top: auto;
    bottom: -5px; }
  /* line 405, ../../resources/sass/pages/_orders.scss */
  .orders-filter .v55-form .form-group .customDateRangeWrapper .date-group {
    width: 100%; } }
/* line 421, ../../resources/sass/pages/_orders.scss */
.flatpickr-calendar {
  border-radius: 10px;
  border: 1px solid #d7d7d7;
  box-shadow: 0px 3px 8px 0px rgba(0, 0, 0, 0.08);
  padding: 12px; }
  /* line 434, ../../resources/sass/pages/_orders.scss */
  .flatpickr-calendar .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months:hover, .flatpickr-calendar .flatpickr-month .flatpickr-current-month .flatpickr-monthDropdown-months:focus {
    border-color: #737373; }
  /* line 442, ../../resources/sass/pages/_orders.scss */
  .flatpickr-calendar .flatpickr-month .flatpickr-current-month .numInputWrapper .numInput:hover, .flatpickr-calendar .flatpickr-month .flatpickr-current-month .numInputWrapper .numInput:focus {
    border-color: #737373; }
  /* line 450, ../../resources/sass/pages/_orders.scss */
  .flatpickr-calendar .flatpickr-month .flatpickr-prev-month,
  .flatpickr-calendar .flatpickr-month .flatpickr-next-month {
    top: -3px; }
    /* line 453, ../../resources/sass/pages/_orders.scss */
    .flatpickr-calendar .flatpickr-month .flatpickr-prev-month:hover,
    .flatpickr-calendar .flatpickr-month .flatpickr-next-month:hover {
      background-color: #f6f6f6; }
  /* line 463, ../../resources/sass/pages/_orders.scss */
  .flatpickr-calendar .flatpickr-weekdays {
    background-color: #f6f6f6;
    margin: 12px auto; }
    /* line 467, ../../resources/sass/pages/_orders.scss */
    .flatpickr-calendar .flatpickr-weekdays .flatpickr-weekday {
      color: #737373;
      font-size: 12px; }
  /* line 473, ../../resources/sass/pages/_orders.scss */
  .flatpickr-calendar .flatpickr-day {
    line-height: 2.5; }
    /* line 476, ../../resources/sass/pages/_orders.scss */
    .flatpickr-calendar .flatpickr-day:hover, .flatpickr-calendar .flatpickr-day.selected, .flatpickr-calendar .flatpickr-day.startRange, .flatpickr-calendar .flatpickr-day.endRange, .flatpickr-calendar .flatpickr-day.selected.inRange, .flatpickr-calendar .flatpickr-day.startRange.inRange, .flatpickr-calendar .flatpickr-day.endRange.inRange, .flatpickr-calendar .flatpickr-day.selected:focus, .flatpickr-calendar .flatpickr-day.startRange:focus, .flatpickr-calendar .flatpickr-day.endRange:focus, .flatpickr-calendar .flatpickr-day.selected:hover, .flatpickr-calendar .flatpickr-day.startRange:hover, .flatpickr-calendar .flatpickr-day.endRange:hover, .flatpickr-calendar .flatpickr-day.selected.prevMonthDay, .flatpickr-calendar .flatpickr-day.startRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.endRange.prevMonthDay, .flatpickr-calendar .flatpickr-day.selected.nextMonthDay, .flatpickr-calendar .flatpickr-day.startRange.nextMonthDay, .flatpickr-calendar .flatpickr-day.endRange.nextMonthDay {
      background-color: #ffebb4;
      border-color: #ffebb4;
      color: #212121; }
    /* line 500, ../../resources/sass/pages/_orders.scss */
    .flatpickr-calendar .flatpickr-day.selected.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-calendar .flatpickr-day.startRange.startRange + .endRange:not(:nth-child(7n+1)), .flatpickr-calendar .flatpickr-day.endRange.startRange + .endRange:not(:nth-child(7n+1)) {
      -webkit-box-shadow: -10px 0 0 #ffebb4;
      box-shadow: -10px 0 0 #ffebb4; }
    /* line 507, ../../resources/sass/pages/_orders.scss */
    .flatpickr-calendar .flatpickr-day.today {
      border-color: #737373; }
      /* line 510, ../../resources/sass/pages/_orders.scss */
      .flatpickr-calendar .flatpickr-day.today:hover {
        background-color: #ffebb4;
        border-color: #ffebb4; }

/* line 523, ../../resources/sass/pages/_orders.scss */
.report-view .form-group {
  margin-bottom: 16px; }
/* line 527, ../../resources/sass/pages/_orders.scss */
.report-view .order-table-wrapper {
  position: relative;
  overflow-x: auto; }
/* line 532, ../../resources/sass/pages/_orders.scss */
.report-view #transactions {
  table-layout: fixed;
  border-spacing: 0; }
/* line 537, ../../resources/sass/pages/_orders.scss */
.report-view .table > thead > tr > th {
  border-bottom: 0;
  padding: 8px 0; }
  /* line 541, ../../resources/sass/pages/_orders.scss */
  .report-view .table > thead > tr > th:first-child {
    padding-left: 10px; }
/* line 546, ../../resources/sass/pages/_orders.scss */
.report-view .report-table-head {
  font-size: 12px;
  color: #737373; }
  /* line 550, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-head .payment-status {
    text-align: center; }
  /* line 554, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-head .shipment-status {
    text-align: center; }
/* line 561, ../../resources/sass/pages/_orders.scss */
.report-view .report-table-body tr {
  background-color: #f6f6f6; }
  /* line 564, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr:not(:first-child):not(.order-item):not(.expanded-addon-row) {
    border-top: 16px solid transparent;
    background-clip: padding-box; }
    /* line 567, ../../resources/sass/pages/_orders.scss */
    .report-view .report-table-body tr:not(:first-child):not(.order-item):not(.expanded-addon-row) td {
      padding-top: 32px; }
  /* line 572, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr.order-item {
    border-top: none; }
  /* line 576, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr td {
    vertical-align: middle;
    padding: 16px 0;
    border-top: none !important; }
  /* line 582, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr td[colspan="9"] {
    padding: 0; }
  /* line 587, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr .extra-show div.btn {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-self: center;
    padding: 3px;
    font-size: 16px;
    color: #424242;
    border: 1px solid #d7d7d7;
    border-radius: 100%;
    background-color: #fff; }
  /* line 602, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr .reward-money {
    font-weight: 700; }
  /* line 606, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr .reward-name {
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis; }
    /* line 610, ../../resources/sass/pages/_orders.scss */
    .report-view .report-table-body tr .reward-name span {
      white-space: nowrap; }
  /* line 615, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr .payment-status {
    text-align: center; }
  /* line 619, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr .shipment-status {
    text-align: center; }
  /* line 624, ../../resources/sass/pages/_orders.scss */
  .report-view .report-table-body tr .action-buttons .btn {
    padding: 6px 16px; }
/* line 631, ../../resources/sass/pages/_orders.scss */
.report-view .extra-table {
  table-layout: fixed;
  width: 100%;
  position: relative;
  border-collapse: separate;
  border-spacing: 0 4px;
  background: white; }
  /* line 641, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row td {
    padding: 12px 0; }
    /* line 645, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row td:nth-child(1) {
      width: 5%; }
    /* line 646, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row td:nth-child(2) {
      width: 46%; }
    /* line 647, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row td:nth-child(3) {
      width: 21%; }
    /* line 648, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row td:nth-child(4) {
      width: 9%; }
    /* line 649, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row td:nth-child(5) {
      width: 9%; }
    /* line 650, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row td:nth-child(6) {
      width: 9%; }
  /* line 659, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-image-description .item-content {
    display: flex;
    align-items: center;
    gap: 14px; }
  /* line 665, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-image-description .item-image {
    flex-shrink: 0;
    width: 63px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f6f6f6;
    border-radius: 4px; }
    /* line 675, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row .expanded-image-description .item-image img {
      display: block;
      width: 63px;
      height: 48px;
      object-fit: cover;
      border-radius: 4px; }
  /* line 684, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-image-description .item-description {
    flex: 1; }
    /* line 687, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row .expanded-image-description .item-description .item-id {
      font-size: 12px;
      font-weight: 700;
      line-height: 150%;
      /* 18px */
      letter-spacing: 0.6px;
      color: #737373; }
    /* line 695, ../../resources/sass/pages/_orders.scss */
    .report-view .extra-table .expanded-addon-row .expanded-image-description .item-description p {
      margin: 0;
      line-height: 1.5;
      font-size: 14px; }
  /* line 705, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-tracking .carrier-name {
    color: #737373;
    font-weight: 700;
    font-size: 12px; }
  /* line 711, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-tracking .tracking-code {
    font-size: 14px; }
  /* line 716, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-quantity {
    font-size: 14px;
    text-align: center; }
  /* line 721, ../../resources/sass/pages/_orders.scss */
  .report-view .extra-table .expanded-addon-row .expanded-shipment {
    text-align: center; }

/* line 7, ../../resources/sass/pages/_shipments.scss */
.provider-card {
  background: #f6f6f6;
  border-radius: 10px;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between; }

/* line 16, ../../resources/sass/pages/_shipments.scss */
.provider-name {
  color: #212121;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 24px */
  flex: 0 0 110px;
  text-align: left;
  min-width: 110px; }

/* line 27, ../../resources/sass/pages/_shipments.scss */
.provider-code {
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px; }
  /* line 33, ../../resources/sass/pages/_shipments.scss */
  .provider-code .code-label {
    color: #737373;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 15px */
    letter-spacing: 0.5px; }
  /* line 42, ../../resources/sass/pages/_shipments.scss */
  .provider-code .code-text {
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 21px */ }

/* line 50, ../../resources/sass/pages/_shipments.scss */
.provider-action {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  align-items: center; }

/* line 63, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .shipment-section {
  margin-bottom: 40px; }
/* line 69, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .shipment-info-wrapper {
  padding: 16px;
  border: 1px solid #d7d7d7; }
/* line 76, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .shipment-header {
  margin-bottom: 20px; }
/* line 80, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .shipment-title {
  font-size: 16px;
  margin-bottom: 6px;
  color: #212121;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  display: flex; }
  /* line 88, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .shipment-title .shipment-icon {
    margin-right: 4px; }
/* line 93, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .shipment-subtitle {
  color: #737373;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
  /* 21px */ }
/* line 101, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .providers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 20px; }
/* line 109, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .providers-footer {
  text-align: center;
  display: flex;
  justify-content: center; }
/* line 117, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .section-divider {
  border: none;
  border-top: 1px solid #d7d7d7;
  margin: 16px auto 20px;
  width: 100%; }
/* line 127, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .field-table-wrapper {
  margin-bottom: 20px; }
/* line 131, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-info-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */ }
  /* line 143, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-info-table th,
  .shipments-wrapper .upload-info-table td {
    padding: 12px 16px;
    text-align: left;
    border-right: 1px solid #d7d7d7;
    border-bottom: 1px solid #d7d7d7;
    background: #fff; }
    /* line 151, ../../resources/sass/pages/_shipments.scss */
    .shipments-wrapper .upload-info-table th:last-child,
    .shipments-wrapper .upload-info-table td:last-child {
      border-right: none; }
  /* line 156, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-info-table th {
    padding: 16px;
    background: #f6f6f6;
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */ }
  /* line 166, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-info-table tr:last-child th,
  .shipments-wrapper .upload-info-table tr:last-child td {
    border-bottom: none; }
/* line 173, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .field-note {
  color: #a3a3a3;
  font-size: 10px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.5px; }
/* line 182, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .red-asterisk {
  color: #f8414a; }
/* line 189, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .sample-data h5 {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 24px */
  margin-bottom: 16px; }
/* line 198, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .sample-table-wrapper {
  overflow-x: auto;
  background: #f6f6f6;
  border-radius: 10px;
  padding: 16px; }
/* line 206, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .sample-table th {
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  /* 21px */ }
/* line 216, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; }
  /* line 222, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-header .shipment-subtitle {
    margin: 0; }
/* line 227, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-area {
  border: 1px solid #d7d7d7;
  border-radius: 10px;
  padding: 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  background: #fbfbfb; }
  /* line 236, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-area:hover, .shipments-wrapper .upload-area.drag-over {
    background: #f6f6f6; }
  /* line 241, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-area #selectFileBtn {
    margin-bottom: 24px; }
  /* line 245, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-area .btn.btn-light {
    padding: 6px 16px; }
/* line 250, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-icon {
  margin-top: 24px;
  margin-bottom: 10px; }
/* line 255, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  /* 21px */
  color: #737373;
  margin-bottom: 4px; }
/* line 264, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-note {
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.5px;
  color: #a3a3a3;
  margin-bottom: 20px; }
/* line 276, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .file-preview {
  display: flex;
  flex-direction: column;
  gap: 20px; }
/* line 282, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .file-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: #f6f6f6;
  border-radius: 8px;
  border: 1px solid #d7d7d7;
  width: 100%; }
  /* line 292, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .file-info .file-name {
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 150%;
    /* 24px */
    word-break: break-all;
    overflow-wrap: break-word;
    max-width: 90%;
    text-align: left; }
  /* line 303, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .file-info .file-size {
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    color: #a3a3a3; }
/* line 312, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .preview-actions {
  display: flex;
  justify-content: flex-end; }
  /* line 316, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .preview-actions .btn:first-child {
    margin-right: 24px; }
/* line 321, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-progress {
  padding: 20px; }
/* line 325, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .progress-icon {
  font-size: 48px;
  margin-bottom: 16px; }
/* line 330, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .progress-text {
  margin: 0 0 16px 0;
  font-size: 16px; }
/* line 335, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .progress-bar {
  width: 100%;
  height: 8px;
  background: #e1e5e9;
  border-radius: 4px;
  overflow: hidden; }
/* line 343, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .progress-fill {
  height: 100%;
  background: #007bff;
  transition: width 0.3s; }
/* line 351, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .history-subtitle {
  margin-bottom: 20px; }
/* line 355, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .upload-history-table {
  overflow-x: auto; }
/* line 359, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .history-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0 4px;
  background: transparent; }
  /* line 365, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .history-table th,
  .shipments-wrapper .history-table td {
    white-space: nowrap; }
  /* line 370, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .history-table th {
    background: transparent;
    padding: 12px 16px;
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: #737373;
    border: none;
    line-height: 150%;
    /* 21px */ }
    /* line 380, ../../resources/sass/pages/_shipments.scss */
    .shipments-wrapper .history-table th:nth-child(4), .shipments-wrapper .history-table th:nth-child(5) {
      text-align: right; }
  /* line 388, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .history-table tbody tr td {
    background: #f6f6f6;
    border: none;
    padding: 16px;
    font-size: 14px;
    color: #212121; }
    /* line 395, ../../resources/sass/pages/_shipments.scss */
    .shipments-wrapper .history-table tbody tr td:nth-child(4), .shipments-wrapper .history-table tbody tr td:nth-child(5) {
      text-align: right; }
    /* line 400, ../../resources/sass/pages/_shipments.scss */
    .shipments-wrapper .history-table tbody tr td a {
      color: #212121;
      text-decoration: underline; }
      /* line 404, ../../resources/sass/pages/_shipments.scss */
      .shipments-wrapper .history-table tbody tr td a:hover {
        color: #F8414A; }
/* line 413, ../../resources/sass/pages/_shipments.scss */
.shipments-wrapper .status-icon {
  display: flex;
  align-items: center;
  gap: 4px; }
  /* line 418, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .status-icon img {
    width: 16px;
    height: 16px; }
  /* line 423, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .status-icon .status-text {
    font-size: 12px;
    font-weight: 500;
    color: #212121; }

/* line 433, ../../resources/sass/pages/_shipments.scss */
.provider-search {
  margin-bottom: 20px; }
  /* line 436, ../../resources/sass/pages/_shipments.scss */
  .provider-search .search-input-wrapper {
    position: relative; }
    /* line 439, ../../resources/sass/pages/_shipments.scss */
    .provider-search .search-input-wrapper .search-input {
      width: 100%;
      padding: 12px 50px 12px 12px;
      border: 1px solid #d7d7d7;
      border-radius: 10px;
      font-size: 14px;
      outline: none; }
      /* line 447, ../../resources/sass/pages/_shipments.scss */
      .provider-search .search-input-wrapper .search-input:focus {
        border-color: #F8414A; }
      /* line 451, ../../resources/sass/pages/_shipments.scss */
      .provider-search .search-input-wrapper .search-input::placeholder {
        color: #a3a3a3; }
    /* line 456, ../../resources/sass/pages/_shipments.scss */
    .provider-search .search-input-wrapper .search-icon {
      position: absolute;
      top: 50%;
      right: 12px;
      transform: translateY(-50%);
      pointer-events: none; }
      /* line 463, ../../resources/sass/pages/_shipments.scss */
      .provider-search .search-input-wrapper .search-icon .search-icon-img {
        width: 32px;
        height: 32px;
        display: flex; }

/* line 472, ../../resources/sass/pages/_shipments.scss */
.providers-modal-grid {
  display: grid;
  gap: 12px;
  max-height: 400px;
  overflow-y: auto; }

@media (max-width: 992px) {
  /* line 483, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .providers-grid {
    grid-template-columns: repeat(2, 1fr); }
  /* line 487, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .provider-name {
    flex: 0 0 90px;
    min-width: 90px;
    font-size: 15px; } }
@media (max-width: 768px) {
  /* line 497, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .providers-grid {
    grid-template-columns: 1fr; }
  /* line 501, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .provider-name {
    flex: 0 0 110px;
    min-width: 110px;
    font-size: 16px; }
  /* line 507, ../../resources/sass/pages/_shipments.scss */
  .shipments-wrapper .upload-area {
    padding: 20px; } }
/* line 514, ../../resources/sass/pages/_shipments.scss */
.providers-modal-grid {
  grid-template-columns: 1fr !important; }

@media (min-width: 992px) {
  /* line 519, ../../resources/sass/pages/_shipments.scss */
  .providers-modal-grid {
    grid-template-columns: repeat(2, 1fr) !important; } }
/* line 8, ../../resources/sass/pages/_backings.scss */
.backings-wrapper {
  margin-top: -25px; }

/* line 15, ../../resources/sass/pages/_backings.scss */
.order-header {
  margin-bottom: 24px; }
  /* line 17, ../../resources/sass/pages/_backings.scss */
  .order-header .order-key-info {
    display: flex;
    align-items: center;
    color: #212121;
    font-family: 'Barlow';
    font-style: normal;
    font-weight: 700; }
  /* line 25, ../../resources/sass/pages/_backings.scss */
  .order-header .key-label {
    font-size: 24px;
    line-height: 125%;
    /* 30px */
    margin-right: 12px;
    margin-bottom: 0;
    letter-spacing: 1px; }
  /* line 32, ../../resources/sass/pages/_backings.scss */
  .order-header .key-value-group {
    display: flex; }
  /* line 35, ../../resources/sass/pages/_backings.scss */
  .order-header .key-value {
    font-size: 20px;
    line-height: 125%;
    /* 25px */
    border-radius: 8px;
    border: 1px solid #d7d7d7;
    background: #fbfbfb;
    margin-right: 12px;
    padding: 4px 12px; }

@media (max-width: 768px) {
  /* line 47, ../../resources/sass/pages/_backings.scss */
  .order-header .order-key-info {
    flex-direction: column;
    align-items: flex-start; }
  /* line 51, ../../resources/sass/pages/_backings.scss */
  .order-header .key-label {
    margin-bottom: 12px; }
  /* line 54, ../../resources/sass/pages/_backings.scss */
  .order-header .key-value {
    font-size: 16px; } }
/* line 63, ../../resources/sass/pages/_backings.scss */
.project-header {
  display: flex;
  align-items: center;
  margin-bottom: 12px; }
  /* line 68, ../../resources/sass/pages/_backings.scss */
  .project-header .cover-image {
    flex-shrink: 0;
    width: 60px;
    height: 45px; }
    /* line 73, ../../resources/sass/pages/_backings.scss */
    .project-header .cover-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  /* line 80, ../../resources/sass/pages/_backings.scss */
  .project-header .project-title {
    overflow: hidden;
    color: #212121;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    margin: 0 80px 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis; }
    /* line 93, ../../resources/sass/pages/_backings.scss */
    .project-header .project-title a {
      color: #212121;
      text-decoration: none; }
      /* line 97, ../../resources/sass/pages/_backings.scss */
      .project-header .project-title a:hover {
        color: #212121; }

@media (max-width: 768px) {
  /* line 107, ../../resources/sass/pages/_backings.scss */
  .project-header .project-title {
    margin-right: 12px; } }
/* line 116, ../../resources/sass/pages/_backings.scss */
.scheme-item {
  display: flex;
  flex-direction: column;
  padding: 12px 0 0;
  overflow: scroll; }
  /* line 128, ../../resources/sass/pages/_backings.scss */
  .scheme-item.scheme-item-card {
    background: #ffffff;
    padding: 10px 10px 5px 10px;
    margin-bottom: 12px; }
    /* line 133, ../../resources/sass/pages/_backings.scss */
    .scheme-item.scheme-item-card:last-child {
      margin-bottom: 0; }
  /* line 139, ../../resources/sass/pages/_backings.scss */
  .scheme-item .mobile-scheme-top {
    display: none; }
  /* line 144, ../../resources/sass/pages/_backings.scss */
  .scheme-item .scheme-content {
    display: flex;
    align-items: center; }
    /* line 149, ../../resources/sass/pages/_backings.scss */
    .scheme-item .scheme-content .scheme-info:first-child {
      margin-left: 0; }
  /* line 154, ../../resources/sass/pages/_backings.scss */
  .scheme-item .cover-image {
    flex-shrink: 0;
    width: 60px;
    height: 45px;
    margin-right: 12px;
    overflow: hidden; }
    /* line 161, ../../resources/sass/pages/_backings.scss */
    .scheme-item .cover-image img {
      width: 100%;
      height: 100%;
      object-fit: cover; }
  /* line 168, ../../resources/sass/pages/_backings.scss */
  .scheme-item .scheme-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center; }
    /* line 174, ../../resources/sass/pages/_backings.scss */
    .scheme-item .scheme-info .scheme-left {
      display: flex;
      flex-direction: column;
      gap: 4px; }
      /* line 179, ../../resources/sass/pages/_backings.scss */
      .scheme-item .scheme-info .scheme-left .scheme-id {
        color: #737373;
        font-size: 12px;
        font-style: normal;
        font-weight: 700;
        line-height: 150%;
        /* 18px */
        letter-spacing: 0.6px; }
      /* line 188, ../../resources/sass/pages/_backings.scss */
      .scheme-item .scheme-info .scheme-left .scheme-title {
        font-size: 14px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 21px */
        margin-bottom: 0;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        text-overflow: ellipsis; }
    /* line 202, ../../resources/sass/pages/_backings.scss */
    .scheme-item .scheme-info .scheme-right {
      display: flex;
      gap: 12px;
      align-items: center; }

@media (max-width: 768px) {
  /* line 212, ../../resources/sass/pages/_backings.scss */
  .scheme-item .mobile-scheme-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2px; }
    /* line 218, ../../resources/sass/pages/_backings.scss */
    .scheme-item .mobile-scheme-top .scheme-id {
      color: #737373;
      font-size: 12px;
      font-style: normal;
      font-weight: 700;
      line-height: 150%;
      /* 18px */
      letter-spacing: 0.6px; }
    /* line 227, ../../resources/sass/pages/_backings.scss */
    .scheme-item .mobile-scheme-top .scheme-tags {
      display: flex;
      gap: 12px;
      align-items: center; }
  /* line 235, ../../resources/sass/pages/_backings.scss */
  .scheme-item .scheme-info .scheme-right {
    display: none; }
  /* line 239, ../../resources/sass/pages/_backings.scss */
  .scheme-item .scheme-info .scheme-left .scheme-id {
    display: none; }
  /* line 242, ../../resources/sass/pages/_backings.scss */
  .scheme-item .scheme-info .scheme-left .scheme-title {
    font-size: 12px; } }
/* line 253, ../../resources/sass/pages/_backings.scss */
.item-spec-card {
  padding: 4px 0;
  font-size: 12px; }
  /* line 257, ../../resources/sass/pages/_backings.scss */
  .item-spec-card .specs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #d7d7d7;
    padding-bottom: 8px; }
    /* line 264, ../../resources/sass/pages/_backings.scss */
    .item-spec-card .specs-header .specs-title,
    .item-spec-card .specs-header .quantity-title {
      font-style: normal;
      font-weight: 400;
      color: #737373;
      line-height: 150%;
      /* 18px */ }
    /* line 272, ../../resources/sass/pages/_backings.scss */
    .item-spec-card .specs-header .quantity-title {
      min-width: 50px;
      text-align: right; }
  /* line 279, ../../resources/sass/pages/_backings.scss */
  .item-spec-card .specs-list .spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #d7d7d7; }
    /* line 286, ../../resources/sass/pages/_backings.scss */
    .item-spec-card .specs-list .spec-row:last-child {
      border-bottom: none; }
    /* line 290, ../../resources/sass/pages/_backings.scss */
    .item-spec-card .specs-list .spec-row .spec-name {
      flex: 1;
      color: #212121;
      line-height: 150%; }
    /* line 296, ../../resources/sass/pages/_backings.scss */
    .item-spec-card .specs-list .spec-row .spec-quantity {
      font-weight: 500;
      color: #737373;
      min-width: 50px;
      text-align: right; }

@media (max-width: 768px) {
  /* line 306, ../../resources/sass/pages/_backings.scss */
  .item-spec-card {
    font-size: 10px; } }
/* line 314, ../../resources/sass/pages/_backings.scss */
.breakdown-card {
  background: #ffffff;
  padding: 10px 10px 5px 10px; }
  /* line 318, ../../resources/sass/pages/_backings.scss */
  .breakdown-card .breakdown-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    border-bottom: 1px solid #d7d7d7;
    max-width: 300px; }
    /* line 326, ../../resources/sass/pages/_backings.scss */
    .breakdown-card .breakdown-row:last-child {
      border-bottom: none; }
      /* line 329, ../../resources/sass/pages/_backings.scss */
      .breakdown-card .breakdown-row:last-child .breakdown-label {
        font-size: 16px; }
      /* line 332, ../../resources/sass/pages/_backings.scss */
      .breakdown-card .breakdown-row:last-child .breakdown-value {
        font-weight: 700;
        font-size: 16px; }
    /* line 338, ../../resources/sass/pages/_backings.scss */
    .breakdown-card .breakdown-row .breakdown-label {
      flex: 1;
      font-size: 14px; }
    /* line 343, ../../resources/sass/pages/_backings.scss */
    .breakdown-card .breakdown-row .breakdown-value {
      font-size: 14px;
      min-width: 60px;
      text-align: right; }

@media (max-width: 768px) {
  /* line 353, ../../resources/sass/pages/_backings.scss */
  .breakdown-card .breakdown-row {
    max-width: unset; }
    /* line 357, ../../resources/sass/pages/_backings.scss */
    .breakdown-card .breakdown-row:last-child .breakdown-label {
      font-size: 14px; }
    /* line 360, ../../resources/sass/pages/_backings.scss */
    .breakdown-card .breakdown-row:last-child .breakdown-value {
      font-size: 14px; }
    /* line 364, ../../resources/sass/pages/_backings.scss */
    .breakdown-card .breakdown-row .breakdown-label {
      font-size: 12px; } }
/* line 379, ../../resources/sass/pages/_backings.scss */
.backing-card {
  background: #f6f6f6;
  padding: 10px 20px;
  margin-bottom: 24px;
  position: relative;
  width: 100%; }
  /* line 386, ../../resources/sass/pages/_backings.scss */
  .backing-card .order-summary {
    position: relative; }
  /* line 390, ../../resources/sass/pages/_backings.scss */
  .backing-card .order-info-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 12px; }
  /* line 396, ../../resources/sass/pages/_backings.scss */
  .backing-card .info-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 12px; }
  /* line 411, ../../resources/sass/pages/_backings.scss */
  .backing-card .info-item {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 21px */
    color: #212121; }
    /* line 420, ../../resources/sass/pages/_backings.scss */
    .backing-card .info-item .info-label {
      min-width: 62px;
      margin-right: 24px; }
    /* line 425, ../../resources/sass/pages/_backings.scss */
    .backing-card .info-item .info-value {
      display: flex;
      align-items: center;
      gap: 12px; }
      /* line 430, ../../resources/sass/pages/_backings.scss */
      .backing-card .info-item .info-value .copy-btn {
        background: #ffffff;
        border: 1px solid #d7d7d7;
        cursor: pointer;
        padding: 4px;
        border-radius: 8px;
        display: flex;
        width: 26px;
        height: 26px; }
        /* line 440, ../../resources/sass/pages/_backings.scss */
        .backing-card .info-item .info-value .copy-btn .copy-icon {
          width: 16px;
          height: 16px; }
  /* line 450, ../../resources/sass/pages/_backings.scss */
  .backing-card .right-column .info-item .info-label {
    color: #737373;
    font-size: 12px;
    font-style: normal;
    font-weight: 400;
    line-height: 150%;
    /* 18px */ }
  /* line 458, ../../resources/sass/pages/_backings.scss */
  .backing-card .action-button {
    position: absolute;
    top: 10px;
    right: 20px;
    padding: 6px 16px;
    transition: opacity 0.2s ease;
    border: 1px solid #212121;
    width: auto; }
  /* line 468, ../../resources/sass/pages/_backings.scss */
  .backing-card .mobile-action {
    display: none;
    text-align: right; }
    /* line 472, ../../resources/sass/pages/_backings.scss */
    .backing-card .mobile-action .action-button {
      position: static;
      display: inline-block; }

/* line 480, ../../resources/sass/pages/_backings.scss */
.pagination-wrapper {
  text-align: right; }

@media (max-width: 992px) {
  /* line 485, ../../resources/sass/pages/_backings.scss */
  .backing-card {
    padding: 10px 16px;
    margin-bottom: 20px; } }
@media (max-width: 768px) {
  /* line 492, ../../resources/sass/pages/_backings.scss */
  .backing-card {
    padding: 10px;
    margin-bottom: 16px; }
    /* line 497, ../../resources/sass/pages/_backings.scss */
    .backing-card .action-button {
      display: none; }
    /* line 502, ../../resources/sass/pages/_backings.scss */
    .backing-card .mobile-action {
      display: block; }
    /* line 507, ../../resources/sass/pages/_backings.scss */
    .backing-card .order-details:not([style*="display: none"]) {
      padding-bottom: 12px; }
      /* line 510, ../../resources/sass/pages/_backings.scss */
      .backing-card .order-details:not([style*="display: none"]) + .mobile-action {
        border-top: 1px solid #d7d7d7;
        padding-top: 12px; }
    /* line 516, ../../resources/sass/pages/_backings.scss */
    .backing-card .order-info-grid {
      flex-direction: column;
      gap: 12px; }
    /* line 521, ../../resources/sass/pages/_backings.scss */
    .backing-card .info-column {
      gap: 12px; }
    /* line 526, ../../resources/sass/pages/_backings.scss */
    .backing-card .right-column .info-item .info-label {
      color: #212121;
      font-size: 14px; } }
/* line 538, ../../resources/sass/pages/_backings.scss */
.backing-detail-wrapper {
  margin-top: 80px; }
  /* line 541, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper h3 {
    font-family: 'Barlow';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 125%;
    /* 30px */ }
    /* line 547, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper h3.bluequote:before {
      top: 4px;
      height: 24px; }
  /* line 553, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper .section-header {
    position: relative; }
    /* line 555, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .section-header .btn.btn-black {
      position: absolute;
      top: 0;
      right: 0; }
  /* line 563, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper .waitpay-section,
  .backing-detail-wrapper .shipment-section,
  .backing-detail-wrapper .recipient-section,
  .backing-detail-wrapper .order-section,
  .backing-detail-wrapper .breakdown-section,
  .backing-detail-wrapper .invoice-section,
  .backing-detail-wrapper .note-section {
    margin-bottom: 32px;
    overflow: hidden; }
  /* line 575, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper .info-card {
    padding: 10px 20px; }
    /* line 578, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .info-card.white-info-card {
      background: #ffffff;
      border-radius: 4px;
      border: 1px solid #d7d7d7; }
    /* line 584, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .info-card.gray-info-card {
      background: #f6f6f6; }
    /* line 588, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .info-card .tag-notify {
      margin-bottom: 0; }
  /* line 594, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper .backing-row {
    margin: 12px 0;
    display: flex;
    align-items: flex-start; }
    /* line 599, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .backing-row:first-child {
      margin-top: 0; }
    /* line 603, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .backing-row:last-child {
      margin-bottom: 0; }
    /* line 607, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .backing-row .backing-label {
      min-width: 86px;
      margin-right: 24px;
      flex-shrink: 0; }
    /* line 613, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .backing-row .backing-value {
      display: flex;
      align-items: center;
      flex: 1;
      min-width: 0;
      word-break: break-word;
      overflow-wrap: break-word; }
      /* line 622, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .backing-row .backing-value.tag-badge {
        flex: 0 0 auto;
        width: auto; }
      /* line 627, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .backing-row .backing-value.amount {
        font-weight: 700;
        font-size: 16px; }
      /* line 632, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .backing-row .backing-value.paycode {
        font-weight: 700; }
  /* line 640, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper .shipment-section .info-card.white-info-card {
    margin-bottom: 12px; }
    /* line 643, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .shipment-section .info-card.white-info-card:last-child {
      margin-bottom: 0; }
    /* line 647, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .shipment-section .info-card.white-info-card .backing-row {
      margin: 6px 0; }
    /* line 651, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .shipment-section .info-card.white-info-card .copy-btn {
      margin-left: 12px;
      width: 26px;
      height: 26px; }
    /* line 657, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .shipment-section .info-card.white-info-card .shipping-header {
      margin-bottom: 12px; }
      /* line 659, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .shipment-section .info-card.white-info-card .shipping-header .track-link {
        display: inline-flex;
        align-items: center;
        color: #737373;
        text-decoration: underline;
        text-decoration-color: #737373;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: 150%;
        /* 15px */
        letter-spacing: 0.5px;
        margin-left: 12px; }
        /* line 672, ../../resources/sass/pages/_backings.scss */
        .backing-detail-wrapper .shipment-section .info-card.white-info-card .shipping-header .track-link:hover {
          text-decoration: underline;
          text-decoration-color: #737373; }
  /* line 682, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper .order-section {
    margin-bottom: 24px; }

/* line 696, ../../resources/sass/pages/_backings.scss */
.activity-section {
  margin-bottom: 24px; }

@media (max-width: 768px) {
  /* line 701, ../../resources/sass/pages/_backings.scss */
  .backing-detail-wrapper {
    margin-top: 50px; }
    /* line 704, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .waitpay-section,
    .backing-detail-wrapper .shipment-section,
    .backing-detail-wrapper .recipient-section,
    .backing-detail-wrapper .order-section,
    .backing-detail-wrapper .breakdown-section,
    .backing-detail-wrapper .invoice-section,
    .backing-detail-wrapper .note-section {
      margin-bottom: 16px; }
    /* line 714, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .info-card {
      padding: 10px; }
    /* line 721, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .invoice-section .backing-row,
    .backing-detail-wrapper .note-section .backing-row {
      flex-direction: column;
      align-items: flex-start; }
      /* line 725, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .invoice-section .backing-row .backing-label,
      .backing-detail-wrapper .note-section .backing-row .backing-label {
        color: #737373;
        margin-right: 0;
        margin-bottom: 4px;
        min-width: auto; }
      /* line 732, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .invoice-section .backing-row .backing-value,
      .backing-detail-wrapper .note-section .backing-row .backing-value {
        margin-left: 0; }
    /* line 742, ../../resources/sass/pages/_backings.scss */
    .backing-detail-wrapper .shipment-section .shipping-header .backing-row:first-child .backing-value {
      display: flex;
      flex-direction: column;
      align-items: flex-start; }
      /* line 747, ../../resources/sass/pages/_backings.scss */
      .backing-detail-wrapper .shipment-section .shipping-header .backing-row:first-child .backing-value .track-link {
        margin-left: 0; } }
/* line 763, ../../resources/sass/pages/_backings.scss */
.activity-section + h3 {
  margin-bottom: 16px; }
/* line 768, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-loading, .activity-section .activity-error, .activity-section .activity-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 150px;
  color: #737373; }
/* line 776, ../../resources/sass/pages/_backings.scss */
.activity-section .loading-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid #d7d7d7;
  border-top-color: #212121;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-right: 10px; }
@keyframes spin {
  to {
    transform: rotate(360deg); } }
/* line 790, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-content *, .activity-section .activity-content *::before, .activity-section .activity-content *::after {
  box-sizing: border-box; }
/* line 796, ../../resources/sass/pages/_backings.scss */
.activity-section .info-card.gray-info-card {
  padding-top: 20px;
  padding-bottom: 20px;
  overflow: hidden; }
/* line 803, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-timeline {
  position: relative;
  padding-left: 20px; }
/* line 808, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-date-label {
  margin-bottom: 20px;
  color: #737373;
  font-family: "Noto Sans TC";
  font-size: 12px;
  font-weight: 700;
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0.6px; }
/* line 819, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-item {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px; }
  /* line 825, ../../resources/sass/pages/_backings.scss */
  .activity-section .activity-item:last-child {
    margin-bottom: 0; }
  /* line 829, ../../resources/sass/pages/_backings.scss */
  .activity-section .activity-item::before {
    content: '';
    position: absolute;
    left: -18px;
    top: 6px;
    width: 6px;
    height: 6px;
    background-color: #d7d7d7;
    border: 1.5px solid #d7d7d7;
    border-radius: 50%;
    z-index: 2; }
  /* line 842, ../../resources/sass/pages/_backings.scss */
  .activity-section .activity-item::after {
    content: '';
    position: absolute;
    left: -16px;
    top: 11px;
    width: 1.5px;
    background-color: #d7d7d7;
    z-index: 1;
    height: 100vh; }
  /* line 853, ../../resources/sass/pages/_backings.scss */
  .activity-section .activity-item:last-of-type::after {
    background-color: #f6f6f6;
    width: 3px;
    top: 11px;
    bottom: -20px;
    left: -17px;
    z-index: 1;
    height: auto; }
/* line 864, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-description {
  flex: 1;
  color: #737373;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  padding-right: 16px; }
/* line 874, ../../resources/sass/pages/_backings.scss */
.activity-section .activity-time {
  color: #737373;
  white-space: nowrap;
  font-family: "Noto Sans TC";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; }

/* line 891, ../../resources/sass/pages/_backings.scss */
.creator-note-alert {
  display: flex;
  align-items: center;
  width: 100%;
  position: relative;
  margin-bottom: 16px;
  padding: 10px 16px;
  color: #737373;
  border: 1px solid #d7d7d7; }
  /* line 901, ../../resources/sass/pages/_backings.scss */
  .creator-note-alert .alert-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    flex-shrink: 0; }
  /* line 908, ../../resources/sass/pages/_backings.scss */
  .creator-note-alert p {
    margin: 0; }

/* line 914, ../../resources/sass/pages/_backings.scss */
.input-wrapper-with-counter {
  position: relative; }
  /* line 917, ../../resources/sass/pages/_backings.scss */
  .input-wrapper-with-counter .form-control {
    padding-right: 75px; }
  /* line 921, ../../resources/sass/pages/_backings.scss */
  .input-wrapper-with-counter .char-counter {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #d7d7d7;
    font-size: 12px;
    pointer-events: none; }
    /* line 930, ../../resources/sass/pages/_backings.scss */
    .input-wrapper-with-counter .char-counter .current-count {
      font-weight: 500; }

/* line 937, ../../resources/sass/pages/_backings.scss */
.help-text {
  color: #737373; }

@media (max-width: 768px) {
  /* line 943, ../../resources/sass/pages/_backings.scss */
  .checkbox-wrapper label {
    display: block; }
  /* line 947, ../../resources/sass/pages/_backings.scss */
  .checkbox-wrapper .help-text {
    margin-top: -20px;
    display: block;
    margin-left: 34px; } }
/* line 958, ../../resources/sass/pages/_backings.scss */
.order-edit-wrapper {
  margin-top: 110px; }
  /* line 962, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper .shipment-icon {
    margin-right: 4px; }
  /* line 967, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper #invoice-form-container .invoice-form-group {
    display: none; }
  /* line 972, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper .customSelectWrapper {
    position: relative; }
    /* line 975, ../../resources/sass/pages/_backings.scss */
    .order-edit-wrapper .customSelectWrapper select.form-control {
      -webkit-appearance: none;
      -moz-appearance: none;
      appearance: none;
      padding-right: 30px; }
      /* line 981, ../../resources/sass/pages/_backings.scss */
      .order-edit-wrapper .customSelectWrapper select.form-control:invalid {
        color: #d7d7d7; }
    /* line 986, ../../resources/sass/pages/_backings.scss */
    .order-edit-wrapper .customSelectWrapper svg {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      width: 24px;
      height: 24px;
      fill: #737373; }
  /* line 999, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper .input-wrapper-with-counter {
    position: relative; }
    /* line 1002, ../../resources/sass/pages/_backings.scss */
    .order-edit-wrapper .input-wrapper-with-counter .form-control {
      padding-right: 75px; }
    /* line 1006, ../../resources/sass/pages/_backings.scss */
    .order-edit-wrapper .input-wrapper-with-counter .char-counter {
      position: absolute;
      right: 12px;
      top: 50%;
      transform: translateY(-50%);
      color: #d7d7d7;
      font-size: 12px; }
  /* line 1017, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper .help-text {
    color: #737373; }
  /* line 1024, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper .creator-note .form-wrapper.gray-box {
    border-radius: 0; }

/* line 1037, ../../resources/sass/pages/_backings.scss */
.action-header .header-container .submitBackingEdit,
.action-header .header-container .submitOrderEdit,
.action-header .header-container .btn-red-ghost,
.action-header .header-right .submitBackingEdit,
.action-header .header-right .submitOrderEdit,
.action-header .header-right .btn-red-ghost {
  min-width: 65px;
  text-align: center; }

@media (max-width: 768px) {
  /* line 1047, ../../resources/sass/pages/_backings.scss */
  .order-edit-wrapper {
    margin-top: 80px; } }
/* line 1056, ../../resources/sass/pages/_backings.scss */
.reward-shipment-section .shipment-title {
  font-size: 16px;
  margin-bottom: 0;
  padding-top: 16px;
  padding-bottom: 12px;
  color: #212121;
  font-weight: 700;
  line-height: 150%;
  display: flex; }
  /* line 1066, ../../resources/sass/pages/_backings.scss */
  .reward-shipment-section .shipment-title .shipment-icon {
    margin-right: 4px; }

/*# sourceMappingURL=main.css.map */
