.customer-edit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}
.form-wrapper {
  display: flex;
  flex-direction: column;
  position: relative;
  input,
  .form-select,
  textarea {
    background-color: #f5f5f5;
  }
  .text-muted {
    position: absolute;
    bottom: -23px;
  }
  .text-danger {
    position: absolute;
    bottom: -27px;
  }
  &.full-row {
    grid-column-start: 1;
    grid-column-end: 3;
  }
  .dropzone {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    background-color: #f5f5f5;
    border-color: #cbcbcb;
    h3,
    i {
      color: #aeaeae;
    }
  }
}
.switch-wrapper {
  justify-content: center;
  gap: 10px;
  .form-check-custom {
    justify-content: space-between;
  }
  .form-label {
    margin: 0;
  }
  .form-check-input {
    cursor: pointer;
  }
  .form-check-input:checked {
    background-color: var(--kt-success);
    border-color: var(--kt-success);
  }
}
.live-switch {
  position: absolute;
  right: 10px;
  bottom: 10px;
  .form-check-input {
    cursor: pointer;
    background-color: #fff;
    border-color: #cbcbcb;
  }
  .form-check-input:checked {
    background-color: var(--kt-success);
    border-color: var(--kt-success);
  }
}
.status-card {
  transition: all 0.1s ease;
  border: 1px solid #fff;
  &.enabled {
    background-color: #f6fcf5;
    border-color: #80d56c;
    border-left: 4px solid #80d56c;
    h2 {
      border-color: #80d56c;
    }
  }
  h2 {
    font-size: 1.3rem;
    padding-bottom: 4px;
    margin-bottom: 15px;
    border-bottom: 1px solid #cdcdcd;
  }
  .card-body {
    padding: 1.25rem;
  }
  .form-label {
    margin: 0;
    font-size: 1.15rem;
  }
  .form-check-input {
    cursor: pointer;
  }
  .form-check-input:checked {
    background-color: var(--kt-success);
    border-color: var(--kt-success);
  }
}

.symbol-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-check {
    .form-label {
      margin: 0;
      font-size: 1.15rem;
    }
    .form-check-input {
      cursor: pointer;
    }
    .form-check-input:checked {
      background-color: var(--kt-success);
      border-color: var(--kt-success);
    }
  }
}

.select2-container--bootstrap5.select2-container--open .form-select:not(.form-select-solid):not(.form-select-transparent) {
  background-color: #fff;
}

/* Dark theme styles */

[data-theme="dark"] {
  .form-wrapper {
    input,
    .form-select,
    textarea {
      background-color: #11111d;
      color: #92929f;
      border-color: #323248;
    }

    .text-muted {
      color: #565674 !important;
    }

    .dropzone {
      background-color: #11111d;
      border-color: #323248;

      h3,
      i {
        color: #a5a5bf;
      }
    }
    .form-control:focus {
      background-color: #1e1e2d;
      color: #92929f;
      border-color: #323248;
    }
  }

  .status-card {
    border: 1px solid #323248;
    background-color: var(--kt-card-bg);

    &.enabled {
      background-color: #092603;
      border-color: #80d56c;

      h2 {
        border-color: #80d56c;
      }
    }

    h2 {
      border-bottom: 1px solid #323248;
    }
  }

  .select2-container--bootstrap5.select2-container--open .form-select:not(.form-select-solid):not(.form-select-transparent) {
    background-color: #1e1e2d;
  }

  .order-wrapper {
    .order-card {
      background: #151521;
      filter: drop-shadow(0px 0px 7px rgba(197, 253, 90, 0.51));
      border: none;
    }
    .total-wrapper {
      .total-title {
        color: #f6ffde;
      }
    }
  }
  .money-request {
    .title-wrapper {
      h3 {
        color: #fff;
      }
      .tab-btns {
        button {
          background: #3c3c46;
        }
      }
    }
    .graph-wrapper {
      background: #1e1e2d;
      border: 1px solid #616184;
      box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
      .chart canvas {
        filter: drop-shadow(0px 0px 16px #81819a);
      }
    }
    .chart-item {
      .chart-title {
        color: #b9b9d4;
      }
      .chart-count {
        color: #fff;
      }
    }
    .filter-wrapper {
      button {
        color: #9191a1;
        &:hover {
          color: #fff;
        }
      }
    }
  }
  .user-card {
    border: 0;
    background-color: var(--kt-card-bg);
  }
  .user-detail-card {
    border: 0;
    background-color: var(--kt-card-bg);
    .user-card-tabs {
      .title {
        h3 {
          color: #f6ffde;
        }
      }
      .form-wrapper {
        background-color: #11111d;
        label {
          color: #f6ffde;
        }
        .user-data {
          color: #a5a5bf;
          i {
            color: #c4fd5a;
          }
        }
      }
    }
  }
  .user-details {
    .user-name {
      color: #f6ffde;
    }
    .role {
      color: #c2fe3c !important;
    }
    .user-info * {
      color: #a5a5bf;
    }
  }
  .change-password {
    border-color: #323248;
    h6 {
      color: #f6ffde;
      i {
        color: #c4fd5a;
      }
    }

    .pass-wrapper {
      .form-control {
        background-color: #11111d;
        color: #92929f;
        border-color: #323248;
      }
    }
  }
  .customer-grid {
    .form-wrapper {
      background-color: #11111d;
      label {
        color: #f6ffde;
      }
      .user-data {
        color: #a5a5bf;
        i {
          color: #c4fd5a;
        }
      }
    }
  }
  .order-tabs {
    .nav-line-tabs {
      background-color: #233836;
      box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.16);

      .nav-item .nav-link.active {
        background-color: #c2fe3c;
        color: #233836;
      }
    }
  }

  .app-header-menu .menu .menu-sub .menu-link .menu-title {
    color: #e9e9e9;
  }
  .app-header-menu .menu .menu-item .menu-link .menu-icon i {
    color: #e9e9e9;
  }
  .overview-navs {
    scrollbar-color: #323248 transparent;

    &::after {
      background: linear-gradient(to left, rgba(21, 21, 33, 1), rgba(21, 21, 33, 0.6), rgba(21, 21, 33, 0));
    }
  }
  .table-responsive thead {
    &::after {
      background: linear-gradient(to left, rgba(21, 21, 33, 1), rgba(21, 21, 33, 0.6), rgba(21, 21, 33, 0));
    }
  }
}

.customer-card {
  overflow: hidden;
  margin-top: 2.5rem;
  height: 121px;
  border-radius: 19px;
  background: #233836;
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  padding: 0 50px;
  position: relative;
  @media (max-width: 991px) {
    padding: 0 20px;
    height: 90px;
  }
  @media (max-width: 768px) {
    padding: 0 15px;
    grid-template-columns: 1fr 1.5fr 1fr;
  }
  &:after {
    position: absolute;
    right: -134px;
    bottom: -125px;
    content: "";
    width: 294px;
    height: 244px;
    border-radius: 50%;
    background: #c2fe3c;
    opacity: 0.23;
    filter: blur(50px);
    @media (max-width: 991px) {
      display: none;
    }
  }
  .customer-item {
    display: flex;
    flex-direction: column;
    border-left: 1px solid #f6ffde;
    padding-left: 25px;
    &:first-child {
      padding: 0;
      border-left: none;
    }
    @media (max-width: 991px) {
      padding-left: 15px;
    }
    @media (max-width: 768px) {
      padding-left: 10px;
    }
  }
  .customer-title {
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    color: #f6ffde;
    @media (max-width: 991px) {
      font-size: 14px;
      line-height: 20px;
    }
    @media (max-width: 768px) {
      font-size: 12px;
      line-height: 18px;
      text-align: center;
      margin-bottom: 5px;
    }
  }
  .customer-count {
    font-weight: bold;
    font-size: 35px;
    line-height: 55px;
    text-align: left;
    color: #c2fe3c;
    @media (max-width: 991px) {
      font-size: 30px;
      line-height: 40px;
    }
    @media (max-width: 768px) {
      font-size: 23px;
      line-height: 1;
      text-align: center;
    }
    span {
      font-size: 26px;
      line-height: 1;
      @media (max-width: 768px) {
        font-size: 20px;
      }
    }
  }
}

.order-wrapper {
  margin-top: 23px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
  .order-card {
    border-radius: 19px;
    background: #fff;
    border: 1px solid #eee;

    h3 {
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      border-radius: 19px 19px 0px 0px;
      background: #233836;
      font-weight: 600;
      font-size: 20px;
      line-height: 24px;
      text-align: left;
      color: #f6ffde;
      margin: 0;
    }
  }
  .card-body {
    display: flex;
    flex-direction: column;
    padding: 25px;
    @media (max-width: 991px) {
      padding: 15px;
    }
  }
  .total-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    .total-title {
      font-weight: 500;
      font-size: 18px;
      line-height: 24px;
      text-align: left;
      color: #5e704b;
      @media (max-width: 991px) {
        font-size: 16px;
        line-height: 20px;
      }
    }
    .chart-container {
      margin-top: 15px;
      height: 200px;
      position: relative;
      canvas {
        max-height: 200px;
      }
    }
  }
  .mini-card {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    @media (max-width: 991px) {
      margin-top: 1rem;
    }
    .mini-item {
      background: url("/assets/media/mini-item.jpg") no-repeat center center;
      background-size: cover;
      height: 100%;
      justify-content: space-between;
      padding: 10px 15px;
      border-radius: 17px;
      display: flex;
      flex-direction: column;
      @media (max-width: 991px) {
        padding: 10px;
        max-width: 178px;
      }
      .order-data {
        display: flex;
        flex-direction: column;
        gap: 8px;
        color: #fff;
      }
      .data-item {
        display: flex;
        align-items: center;
        gap: 5px;
        font-size: 14px;
        justify-content: space-between;
      }
      .order-title {
        display: flex;
        font-weight: 500;
        font-size: 16px;
        line-height: 24px;
        text-align: center;
        color: #f6ffde;
        margin-bottom: 1rem;
        @media (max-width: 991px) {
          font-size: 14px;
          line-height: 20px;
        }
      }
      .order-count {
        font-weight: 500;
        font-size: 14px;
        text-align: right;
        color: #fff;
        line-height: 1;
      }
    }
  }
}

.money-request {
  margin: 30px 0;
  button {
    border: none;
    background: none;
    padding: 0;
    border: none;
  }
  .title-wrapper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    h3 {
      margin: 0;
      font-weight: bold;
      font-size: 18px;
      line-height: 24px;
      text-align: left;
      color: #243936;
    }
    .tab-btns {
      display: flex;
      gap: 6px;
      button {
        width: 26px;
        height: 26px;
        border-radius: 5px;
        background: #d9d9d9;
        display: flex;
        align-items: center;
        justify-content: center;
        &.active {
          background: #c4fd5a;
          svg path {
            fill: #233836;
          }
        }
      }
    }
  }
  .graph-wrapper {
    min-height: 284px;
    border-radius: 21px;
    background: #fff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 17px 21px;
    @media (max-width: 768px) {
      padding: 15px;
    }
    .table-responsive thead {
      &::after {
        content: none;
      }
    }
  }
  .filter-wrapper {
    display: flex;
    gap: 10px;
    @media (max-width: 768px) {
      flex-direction: column;
    }
    button {
      font-weight: normal;
      font-size: 16px;
      line-height: 1;
      text-align: center;
      color: #7b7b7b;
      border-radius: 19px;
      padding: 10px 25px;
      &.active {
        background: #c4fd5a;
        color: #243936 !important;
        font-weight: bold;
      }
      &:hover {
        color: #233836;
      }
    }
  }
  .graph-card {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    margin-top: 30px;
    @media (max-width: 991px) {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    .chart {
      width: 510px;
      height: 246px;
      @media (max-width: 991px) {
        margin: 0 auto;
        width: 100% !important;
        height: 200px;
      }
      &::before {
        content: "";
        background: url("/assets/media/chart_pie.png") no-repeat center center;
        position: absolute;
        height: 246px;
        width: 510px;
        @media (max-width: 991px) {
          content: none;
        }
      }
    }
  }
  .chart-data {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    @media (max-width: 768px) {
      grid-template-columns: repeat(2, 1fr);
      gap: 10px;
    }
  }
  .chart-item {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 13px;

    @media (max-width: 991px) {
      align-items: center;
      gap: 6px;
    }

    @media (max-width: 768px) {
      align-items: flex-start;
    }
    &:nth-child(1) {
      .chart-title::before {
        background: #ff6868;
      }
    }
    &:nth-child(2) {
      .chart-title::before {
        background: #688bff;
      }
    }
    &:nth-child(3) {
      .chart-title::before {
        background: #b49705;
      }
    }
    &:nth-child(4) {
      .chart-title::before {
        background: #4cc21b;
      }
    }
    &:nth-child(5) {
      .chart-title::before {
        background: #17bfba;
      }
    }
    &:nth-child(6) {
      .chart-title::before {
        background: #8817bf;
      }
    }

    .chart-title {
      font-weight: normal;
      font-size: 16px;
      line-height: 24px;
      text-align: left;
      color: #000;
      display: flex;
      align-items: center;
      gap: 10px;
      &::before {
        content: "";
        width: 8px;
        height: 8px;
        display: block;
      }
    }
    .chart-count {
      font-weight: bold;
      font-size: 18px;
      line-height: 24px;
      text-align: right;
      color: #243936;
    }
  }
  .tab {
    display: none;
  }
  .active-tab {
    display: block !important;
  }
}

.form-select {
  min-width: 140px;
}

.user-card {
  background: #ffffff;
  border-radius: 12px;
  border-style: solid;
  border-color: #e5e7eb;
  border-width: 1px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
  padding: 25px;
  display: flex;
  gap: 25px;

  .user-pic {
    border-radius: 50%;
    width: 80px;
    height: 80px;
    box-shadow: 0px 10px 15px 0px rgba(0, 0, 0, 0.1), 0px 4px 6px 0px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    img {
      object-fit: cover;
      width: 80px;
      height: 80px;
    }
  }
}

.user-details {
  display: flex;
  flex-direction: column;
  .user-name {
    color: #111827;
    text-align: left;
    font-size: 24px;
    line-height: 32px;
    font-weight: 700;
    margin-bottom: 0.75rem;
  }
  .user-info * {
    color: #6b7280;
    text-align: left;
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
  }
  .role {
    color: #4b5563;
    font-size: 18px;
    line-height: 28px;
    font-weight: 500;
  }
}

.user-detail-card {
  padding-bottom: 2rem;
  margin-top: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border-style: solid;
  border-color: #e5e7eb;
  border-width: 1px;
  box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);

  .user-card-tabs {
    padding: 0 2rem;
    margin-top: 1.75rem;
    .title {
      display: flex;
      justify-content: space-between;
      margin-bottom: 2rem;
      align-items: center;
      h3 {
        color: #111827;
        text-align: left;
        font-size: 20px;
        line-height: 28px;
        font-weight: 600;
        line-height: 1;
      }
    }
    .details {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }
    .form-wrapper {
      background: #f9fafb;
      border-radius: 8px;
      display: flex;
      gap: 0.75rem;
      padding: 0 1rem;
      width: 38%;
      height: 80px;
      justify-content: center;

      @media (max-width: 1400px) {
        width: 60%;
      }

      @media (max-width: 991px) {
        width: 100%;
      }

      @media (max-width: 768px) {
        width: 100%;
      }

      label {
        color: #374151;
        text-align: left;
        font-size: 14px;
        font-weight: 500;
      }
      .user-data {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        color: #111827;
        text-align: left;
        font-size: 16px;
        line-height: 24px;
        font-weight: 500;
        i {
          font-size: 18px;
        }
      }
    }
  }
}

.user-card-footer {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  width: 100%;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
  }
  .card-item {
    display: flex;
    align-items: center;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    height: 78px;
    padding: 0% 1rem;
    gap: 1rem;
    i {
      font-size: 18px;
    }
    .card-title {
      text-align: left;
      font-size: 16px;
      line-height: 24px;
      font-weight: 500;
    }
    .card-desc {
      text-align: left;
      font-size: 14px;
      line-height: 20px;
      font-weight: 400;
    }
    &:nth-child(1) {
      background: #f0fdf4;
      border-color: #bbf7d0;
      i,
      .card-title,
      .card-desc {
        color: #166534;
      }
    }
    &:nth-child(2) {
      background: #eff6ff;
      border-color: #bfdbfe;
      i,
      .card-title,
      .card-desc {
        color: #1e40af;
      }
    }
    &:nth-child(3) {
      background: #faf5ff;
      border-color: #e9d5ff;
      i,
      .card-title,
      .card-desc {
        color: #6b21a8;
      }
    }
  }
}

.change-password {
  padding: 2rem;
  border: 1px solid #e5e7eb;
  border-radius: 8px;

  h6 {
    color: #111827;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 2rem;

    i {
      font-size: 18px;
      color: #2563eb;
      margin-right: 8px;
    }
  }
  .pass-wrapper {
    width: 100%;
    margin-top: 2rem;
    .form-control {
      background-color: #f5f5f5;
    }
    .form-control:focus {
      background-color: var(--kt-input-focus-bg);
    }
  }
  .toggle-password {
    position: absolute;
    right: 10px;
    top: 40px;
    cursor: pointer;
    i {
      font-size: 16px;
    }
  }
  .password-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 2.5rem;
    height: 44px;
    background: #2563eb;
    color: #ffffff;
    border-radius: 8px;
    padding: 0 1.5rem;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    border: none;
    cursor: pointer;
    i {
      color: #fff;
      font-size: 16px;
    }
  }
  .password-rules {
    margin-top: 1rem;
    * {
      font-size: 12px;
    }
    p {
      margin-bottom: 0.4rem;
    }
  }
}

#loadingState {
  display: flex;
  justify-content: center;
  align-items: center;
}

.accordion-toggle i {
  transition: transform 0.3s ease;
}

.special-list-image {
  max-width: 50px;
}

.app-header-menu .menu .menu-item .menu-link .menu-icon i {
  color: #233836;
}

.customer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  @media (max-width: 768px) {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-wrapper {
    background: #f9fafb;
    border-radius: 8px;
    display: flex;
    gap: 0.75rem;
    padding: 0 1rem;
    width: 100%;
    height: 80px;
    justify-content: center;

    label {
      color: #374151;
      text-align: left;
      font-size: 14px;
      font-weight: 500;
    }
    .user-data {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: #111827;
      text-align: left;
      font-size: 16px;
      line-height: 24px;
      font-weight: 500;
      i {
        font-size: 18px;
      }
    }
  }
}

.overview-navs {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;

  a {
    white-space: nowrap;
  }
  scrollbar-color: #dfe1e4 transparent;

  &::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 100%;
    max-height: 74px;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
  }
}

.table-responsive thead {
  &::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0));
    z-index: 1;
  }
}

.cta-wrapper {
  display: flex;
  justify-content: space-evenly;
  gap: 6px;
  .cta {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
  }
  .delete {
    background-color: #fef2f2;
    i {
      font-size: 14px;
      color: #dc2626;
    }
    &:hover {
      background-color: #fee2e2;
    }
  }
  .edit {
    background-color: #eff6ff;
    i {
      font-size: 14px;
      color: #2563eb;
    }
    &:hover {
      background-color: #dbeafe;
    }
  }
}

/* SUN EDITOR  */
.sun-editor {
  width: 100%;
  max-width: 100%;
}

.sun-editor .se-wrapper {
  width: 100% !important;
}

.sun-editor,
.sun-editor * {
  font-family: "Inter", sans-serif !important;
}

html[data-theme="light"] .sun-editor {
  background-color: #fff !important;
  color: #000 !important;
}

html[data-theme="light"] .sun-editor .se-toolbar,
html[data-theme="light"] .sun-editor .se-list-layer {
  background-color: #f9f9f9 !important;
  color: #333 !important;
  border-color: #ccc !important;
}

html[data-theme="light"] .sun-editor .se-list-layer .se-list-item:hover {
  background-color: #e0e0e0 !important;
}

html[data-theme="dark"] .sun-editor {
  background-color: #2b2b40 !important;
  color: #fff !important;
  border-color: #3a3a55 !important;
}

html[data-theme="dark"] .sun-editor .se-toolbar {
  background-color: #2b2b40 !important;
  border-color: #3a3a55 !important;
  color: #fff !important;
}

html[data-theme="dark"] .sun-editor .se-btn {
  color: var(--kt-form-label-color) !important;
}

html[data-theme="dark"] .sun-editor-editable {
  background-color: #1e1e2d !important;
  color: #fff !important;
  caret-color: #fff !important;
}

html[data-theme="dark"] .sun-editor .se-list-layer {
  background-color: #fff !important;
  color: #000 !important;
  border: 1px solid #ddd !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

html[data-theme="dark"] .sun-editor .se-list-layer .se-list-item {
  color: #000 !important;
  background: transparent;
}

html[data-theme="dark"] .sun-editor .se-list-layer .se-list-item:hover {
  background-color: #f0f0f0 !important;
  color: #000 !important;
}

html[data-theme="dark"] .sun-editor .se-btn:enabled:focus,
.sun-editor .se-btn:enabled:hover {
  background-color: grey !important;
}

.delivery-card {
  transition: all 0.1s ease;
  border-left: 4px solid #f1416c;

  h2 {
    padding-bottom: 4px;
    margin-bottom: 15px;
    border-bottom: 1px solid #cdcdcd;
    font-size: 1.3rem;
  }
  .form-check-input {
    cursor: pointer;
  }
  .card-body {
    padding: 1.25rem;
  }
}

.dropdown-results {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  .dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
  }

  .dropdown-item:hover {
    background-color: #f8f9fa;
  }

  .dropdown-item:last-child {
    border-bottom: none;
  }
}
.selected-customers {
  margin-top: 10px;
}

.selected-customer-tag {
  display: inline-block;
  background: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 4px;
  padding: 4px 8px;
  margin: 2px;
  font-size: 12px;
}

.selected-customer-tag span {
  margin-right: 5px;
}

.remove-customer {
  background: none;
  border: none;
  color: #dc3545;
  cursor: pointer;
  font-weight: bold;
  padding: 0;
  margin: 0;
}

.remove-customer:hover {
  color: #c82333;
}

#customerSearchContainer {
  position: relative;
}
.dz-progress {
  display: none !important;
}
.symbol-grid .form-check-label {
  cursor: pointer;
}
.price-steps-container {
  .cta-wrapper {
    justify-content: center;
    gap: 10px;
  }
}

.dropzone {
  .dz-preview {
    .dz-image {
      img {
        height: 120px;
        width: 120px;
        object-fit: contain;
      }
    }
  }
}

.permissions-card {
  table {
    margin: 0;
  }
  thead {
    background: #f8fff1;
    &::after {
      content: none;
    }
    tr {
      border-bottom-color: #d4dccb !important;
    }
    th {
      font-weight: bold;

      text-transform: capitalize;
    }
    .min-w-200px {
      font-size: 1.1rem;
      font-weight: bold;
    }
  }
  .table.gy-5 td,
  .table.gy-5 th {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .form-check-custom {
    .form-check-label,
    .form-check-input {
      cursor: pointer;
    }
  }
}

.text-left {
  text-align: left !important;
}

.notification-fields {
  display: none;
  margin-top: 15px;
  flex-direction: column;
  gap: 10px;
  input,
  textarea {
    background-color: #fff;
  }
}

.order-tabs {
  margin-bottom: 2.5rem;
  .nav-line-tabs {
    margin: 0 auto;
    background-color: #f2f2f2;
    box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.16);
    border-radius: 40px;
    gap: 1.5rem;
    .nav-item .nav-link.active {
      background-color: #233836;
      color: #f6ffdc;
      border-radius: 40px;
    }
    .nav-link {
      font-weight: 500;
      color: var(--kt-text-dark);
      margin: 0;
      padding: 20px;
      border: none !important;
    }
  }
}

.condition-row {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1rem;
  box-shadow: 1px 3px 6px rgba(0, 0, 0, 0.16);
  padding: 1rem;
  border-radius: 8px;
  background-color: #fff;
}
.conditions-wrapper {
  background-color: rgba(236, 235, 235, 0.589);
  padding: 1rem;
  border-radius: 8px;
  .btn {
    background: #2d413d;
    color: #fff;
    height: 45px;
    font-size: 16px;
    i {
      color: #fff;
    }
  }
}

.media-selector-preview {
  min-width: 100px;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.media-selector-preview img {
  max-width: 80px;
  max-height: 80px;
}

.media-card:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  transform: translateY(-2px);
  transition: all 0.3s ease;
}
