@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap);
:root {
  /* Primary color override (used for buttons, links, etc.) */
  --bs-primary:rgb(13, 147, 148); /* Your new primary color */
  --bs-primary-rgb:rgb(13, 147, 148); /* RGB values of your color */
  /* Default border color override (used by .border utilities and components) */
  --bs-border-color:rgb(199, 199, 199); /* Your new default border color */
  --bs-border-color-translucent:rgba(rgb(199, 199, 199), 1); /* Translucent version */
  /* You can override other theme colors as well, e.g., secondary, success, danger */
  --bs-secondary:rgb(235, 61, 99);
  --bs-success:rgb(28, 210, 0);
  /*OTHER*/
  --bs-pagination-active-bg:rgb(85, 98, 117);
}

.text-primary {
  color: rgb(13, 147, 148) !important;
}

.text-secondary {
  color: rgb(235, 61, 99) !important;
}

/* ======================================
                BOOTSTRAP HACKS
========================================== */
.card-header h1, .card-header h2, .card-header h3, .card-header h4, .card-header h5, .card-header h6 {
  color: white;
  font-size: 1.1rem;
}

.modal-title h1, .modal-title h2, .modal-title h3, .modal-title h4, .modal-title h5, .modal-title h6 {
  color: #fff;
}

.btn:hover, .btn:active {
  background-color: rgb(85, 98, 117) !important;
  border-color: rgb(85, 98, 117) !important;
}

.btn-primary, .btn-primary:active {
  --bs-btn-bg:var(--bs-primary);
  --bs-btn-border-color:var(--bs-border-color);
  --bs-btn-hover-bg:rgb(85, 98, 117);
  --bs-btn-hover-border-color:rgb(85, 98, 117);
}

.btn-secondary, .btn-secondary:active {
  --bs-btn-bg:var(--bs-secondary);
  --bs-btn-border-color:var(--bs-border-color);
}

.btn-outline-primary {
  --bs-btn-border-color:var(--bs-primary);
  --bs-btn-color:var(--bs-primary);
}
.btn-outline-primary:hover, .btn-outline-primary:active {
  color: #fff;
}

.btn-outline-secondary {
  --bs-btn-border-color:var(--bs-secondary);
  --bs-btn-color:var(--bs-secondary);
}

.btn-check + .btn:hover {
  color: #fff;
}

.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
  background-color: rgb(13, 147, 148);
  border-color: rgb(13, 147, 148);
}

input[type=radio], input[type=checkbox] {
  accent-color: rgb(85, 98, 117);
}

.btn-publish {
  background-color: rgb(13, 110, 253);
  color: #fff;
}
.btn-publish:hover, .btn-publish:active {
  background-color: rgb(63.5819672131, 140.3073770492, 253.4180327869) !important;
  border-color: rgb(63.5819672131, 140.3073770492, 253.4180327869) !important;
  color: #fff;
}
.btn-view {
  background-color: rgb(13, 202, 240);
  color: #fff;
}
.btn-view:hover, .btn-view:active {
  background-color: rgb(59.5849802372, 213.4743083004, 244.4150197628) !important;
  border-color: rgb(59.5849802372, 213.4743083004, 244.4150197628) !important;
  color: #fff;
}
.btn-edit {
  background-color: rgb(255, 193, 7);
  color: #fff;
}
.btn-edit:hover, .btn-edit:active {
  background-color: rgb(255, 205.75, 58) !important;
  border-color: rgb(255, 205.75, 58) !important;
  color: #fff;
}
.btn-delete {
  background-color: rgb(220, 53, 69);
  color: #fff;
}
.btn-delete:hover, .btn-delete:active {
  background-color: rgb(227.5316455696, 96.4683544304, 109.0253164557) !important;
  border-color: rgb(227.5316455696, 96.4683544304, 109.0253164557) !important;
  color: #fff;
}
.btn-reset {
  background-color: rgb(25, 135, 84);
  color: #fff;
}
.btn-reset:hover, .btn-reset:active {
  background-color: rgb(32.96875, 178.03125, 110.775) !important;
  border-color: rgb(32.96875, 178.03125, 110.775) !important;
  color: #fff;
}

/* ======================================
                MIXINS
========================================== */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}
html:has(div.expanded), body:has(div.expanded) {
  overflow-x: hidden;
}

body {
  font-family: "Open Sans", sans-serif !important;
  font-weight: 400;
  background-color: #f8f9fa;
  color: rgb(35, 35, 35);
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: rgb(35, 35, 35);
}

@media screen and (max-width: 767px) {
  .h2, h2 {
    font-size: 1.3rem;
  }
}

a {
  transition: 0.3s;
  text-decoration: none;
}

.footer {
  background: rgba(255, 255, 255, 0.3);
}

.pagination-wrap label {
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .pagination-wrap label {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .pagination-wrap .pgList {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .pagination-wrap .pgList {
    display: none;
  }
}

.pagination .page-item.active .page-link {
  background-color: rgb(13, 147, 148);
  border-color: rgb(13, 147, 148);
}

@media screen and (min-width: 1199px) {
  .table-responsive {
    overflow: visible !important;
  }
}
.table {
  min-width: 767px;
  --bs-table-color:rgb(35, 35, 35);
}
.table td {
  font-size: 14px;
}
.table td a {
  color: rgb(235, 61, 99);
}
.table td a[class*=btn-] {
  color: #fff;
}
.table thead th {
  white-space: nowrap;
}

.table-info {
  --bs-table-color:rgb(35, 35, 35);
}

.sidebar {
  width: 250px;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  background: url(/images/profile-bg.svg?2934c1230fb934c58fd0bb1e0e7f1198) no-repeat 0 0 rgb(13, 147, 148);
  background-size: 250px;
  color: #fff;
  padding-top: 0px;
  transition: 0.3s;
  overflow: hidden;
}
@media screen and (max-width: 991px) {
  .sidebar {
    width: 0;
    overflow: auto;
  }
}
.sidebar .sidebarNav {
  display: inline-block;
  width: 100%;
  max-height: calc(100vh - 70px);
  overflow: auto;
  padding: 0;
  margin: 0;
}
.sidebar .sidebarNav--items {
  float: left;
  width: 100%;
  list-style: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.sidebar .sidebarNav--items a {
  float: left;
  width: 100%;
  padding: 0.8rem 1.2rem;
  transition: 0.3s;
  color: #fff;
  white-space: nowrap;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.sidebar .sidebarNav--items a i {
  float: left;
  line-height: 1;
  font-size: 1.2rem;
}
.sidebar .sidebarNav--items a span {
  float: left;
  transition: 0.3s;
  padding-left: 1.2rem;
}
.sidebar .sidebarNav--items a:hover, .sidebar .sidebarNav--items a.active {
  background: rgb(85, 98, 117);
}
.sidebar .sidebarNav--items a:hover span, .sidebar .sidebarNav--items a.active span {
  padding-left: 1.5rem;
}
.sidebar .sidebarNav--items a.logout {
  background: rgb(235, 61, 99);
}
.sidebar.collapsed {
  width: 58px;
}
@media screen and (max-width: 991px) {
  .sidebar.collapsed {
    width: 250px;
  }
}
.sidebar .sidebar-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 8px;
}
.sidebar .sidebar-logo__img {
  max-width: 100%;
  max-height: 48px;
  -o-object-fit: contain;
     object-fit: contain;
}
.sidebar .mobile-user-info {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  line-height: 1.2;
  background: rgba(255, 255, 255, 0.2);
}
.sidebar .mobile-user-info__name, .sidebar .mobile-user-info__meta {
  display: flex;
  font-weight: 600;
  font-size: 0.95rem;
}
.sidebar .mobile-user-info__name i, .sidebar .mobile-user-info__meta i {
  margin-right: 1rem;
}
.sidebar .mobile-user-info__meta {
  font-size: 0.8rem;
  color: #fff;
}

.content {
  float: right;
  margin-left: 250px;
  padding: 0px;
  transition: 0.3s;
  width: calc(100% - 250px);
  position: relative;
  background: #e4e9ed; /*z-index:2;*/
}
@media screen and (max-width: 991px) {
  .content {
    width: 100%;
    float: left;
    margin-left: 0;
  }
}
.content #toggle-btn {
  width: 40px;
  height: 40px;
  border-radius: 7px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.content.expanded {
  margin-left: 58px;
  width: calc(100% - 58px);
}
@media screen and (max-width: 991px) {
  .content.expanded {
    margin-left: 250px;
    width: calc(100% - 0px);
  }
}
.content.expanded #toggle-btn {
  background: rgb(235, 61, 99);
  color: #fff !important;
}

.navbar {
  background-color: #1d1a1a;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.navbar-brand {
  font-weight: bold;
  color: #252c36 !important;
}

.toggle-btn {
  color: #252c36;
  border: none;
  background: none;
  font-size: 20px;
  margin-right: 10px;
}

.page-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
@media screen and (max-width: 640px) {
  .page-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .page-header h2 {
    width: 100%;
  }
}
.page-header .btn {
  margin-right: 5px;
}
@media screen and (max-width: 640px) {
  .page-header .btn {
    margin: 0 5px 5px 0;
  }
}
.page-header .btn i {
  margin-right: 5px;
}

.form-label {
  font-weight: 600;
  font-size: 16px;
  color: #333;
}

.form-label + span {
  color: #464646;
}

.container, .container-fluid, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
  padding: 0 1rem !important;
}

.pgLoader {
  float: left;
  width: 100%;
  height: 1000vh;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 10;
}
.pgLoader .vl-icon {
  position: fixed;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.contentArea {
  min-height: calc(100vh - 140px);
}

.multiselect.autoCompleteDD {
  min-width: 200px;
  max-width: 200px;
}
.multiselect.autoCompleteDD__single {
  margin-bottom: 0;
  font-size: 14px;
}
.multiselect.autoCompleteDD .multiselect__tags {
  background: #fff;
  border: 0.0625rem solid #d3d3d3;
  padding: 0.6rem 0.8rem;
  color: #6e6e6e;
  height: 40px;
  border-radius: 0.5rem;
}
.multiselect.autoCompleteDD .multiselect__select {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 2;
}
.multiselect.autoCompleteDD .multiselect__select:before {
  border-width: 7px 7px 0 7px;
  color: #808080;
  margin: 0;
  top: 0 !important;
}
.multiselect.autoCompleteDD .multiselect__placeholder, .multiselect.autoCompleteDD .multiselect__single, .multiselect.autoCompleteDD .multiselect__input {
  width: 100%;
  padding: 0 1.5rem 0 0;
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1rem;
  color: #6e6e6e;
}
.multiselect.autoCompleteDD .multiselect__placeholder {
  margin: -4px 0 0;
}

.custom-dropdown, select.form-control {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16" fill="gray"><path d="M1.5 5.5l6.5 6.5 6.5-6.5"/></svg>');
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 16px;
  padding-right: 30px;
  border: 1px solid #d3d3d3;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin: 0;
}

.uploadTags {
  display: flex;
  padding: 0.5rem;
  line-height: normal;
  align-items: center;
  gap: 10px;
  line-height: 1.2;
}
.uploadTags .btn-close {
  width: 10px;
  height: 10px;
  padding: 0;
}

.imgUpload .image-item {
  display: inline-block;
  width: 120px;
  height: 120px;
  position: relative;
}
.imgUpload .image-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  border: 1px solid #dee2e6;
}
.imgUpload .image-item span {
  display: inline-block;
  padding: 2px;
  background-color: #585858;
  color: #fff;
  font-size: 10px;
  position: absolute;
  bottom: 4px;
  left: 4px;
  border-radius: 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 112px;
}
.imgUpload .image-item .remove-btn {
  float: left;
  width: 6px;
  height: 6px;
  position: absolute;
  top: -6px;
  right: -6px;
  background-color: #fff;
  padding: 4px;
}

.dashboard .icon-card i {
  font-size: 3rem;
  float: left;
  background: rgb(13, 147, 148);
  border-radius: 7px;
  color: #fff;
  padding: 1rem;
  line-height: 1;
}
.dashboard .icon-card h5 {
  text-transform: uppercase;
  margin: 0.8rem 0 0;
  font-weight: 700;
}
.dashboard .icon-card p {
  color: rgb(85, 98, 117);
}
.dashboard canvas {
  height: 450px;
}

/* ======================================
                MOBILE LIST CARDS
========================================== */
.mobile-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.mobile-card {
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  margin-bottom: 15px;
}

.mobile-card__header {
  display: flex;
  gap: 12px;
  align-items: center;
  border-bottom: 1px dashed #e2e8f0;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.mobile-card__image {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

.mobile-card__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mobile-card__title {
  flex: 1;
  min-width: 0;
}

.mobile-card__name {
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.25;
}

.mobile-card__name a {
  color: #0f172a;
  text-decoration: none;
}

.mobile-card__meta {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: 2px;
}

.mobile-card__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.mobile-card__item {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 8px 10px;
}

.mobile-card__label {
  font-size: 0.75rem;
  color: #64748b;
}

.mobile-card__value {
  font-size: 0.85rem;
  color: #0f172a;
  text-align: right;
  word-break: break-word;
}

.mobile-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.mobile-card__loader {
  font-size: 0.85rem;
  color: #64748b;
  text-align: center;
  padding: 8px 0 4px;
}

.mobile-card__loadmore {
  display: flex;
  justify-content: center;
  padding: 6px 0 2px;
}

.mobile-card__sentinel {
  height: 1px;
  width: 100%;
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .mobile-cards {
    grid-template-columns: repeat(2, minmax(240px, 1fr));
  }
}
.product-tabs {
  flex-wrap: nowrap;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scrollbar-width: thin;
}
.product-tabs .nav-link {
  white-space: nowrap;
  color: rgb(13, 147, 148);
}
.product-tabs .nav-link.active {
  background: rgb(235, 61, 99);
  color: #fff;
}

.store-tabs {
  overflow-x: auto;
  overflow-y: hidden;
  flex-wrap: nowrap;
  white-space: nowrap;
  scrollbar-width: thin;
  -webkit-overflow-scrolling: touch;
}
.store-tabs .nav-link {
  white-space: nowrap;
  color: rgb(13, 147, 148);
}
.store-tabs .nav-link.active {
  background: rgb(235, 61, 99);
  color: #fff;
}

.invoiceSum {
  float: right;
  width: 100%;
  max-width: 400px;
}

@media screen and (max-width: 767px) {
  #sameAsBilling + label, #sameAsShipping + label {
    transform: rotate(90deg);
  }
}

.table-responsive .multiselect__content-wrapper {
  position: absolute !important;
  z-index: 5 !important;
  width: 100%;
  max-width: 300px;
}
