/**
Table sort
 */
.table-sort {
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  color: var(--table-sort-color);

  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}
@media (prefers-reduced-motion: reduce) {
  .table-sort {
    transition: none;
  }
}
.table-sort:hover, .table-sort.asc, .table-sort.desc {
  color: var(--bs-gray-600);
}
.table-sort:after {
  content: "";
  display: inline-flex;
  width: 16px;
  height: 16px;
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'><path d='M5 7l3 -3l3 3'/><path d='M5 10l3 3l3 -3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16' fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1'><path d='M5 7l3 -3l3 3'/><path d='M5 10l3 3l3 -3'/></svg>");
  background: currentColor;  
}
.table-sort.asc:after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M5 10l3 -3l3 3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M5 10l3 -3l3 3'/></svg>");
}
.table-sort.desc:after {
  -webkit-mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M5 7l3 3l3 -3'/></svg>");
  mask-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' width='16' height='16'><path fill='none' stroke='currentColor' stroke-linecap='round' stroke-linejoin='round' stroke-width='1' d='M5 7l3 3l3 -3'/></svg>");
}

.my-btn-icon {
    margin: 0px;
    padding: 0px 0px !important;
    width: 23px !important;
    height: 23px !important;
    opacity: 0.8;
    display: inline-flex !important;
    align-items: center !important;  
    justify-content: center !important;
}

.my-btn-icon i {
    font-size: 0.9rem;
    padding-top: 1px;
    padding-left: 5px;
}
.my-btn-icon:hover {
    opacity: 1;
}

.col-form-label, .form-label {
    display: block;
    font-size: 0.975rem;
    margin-bottom: 1px;
}
.col-form-label.required:after,
.form-label.required:after {
    content: "*";
    margin-left: 0.25rem;
    color: #d63939;
}

.modal-blur {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}

.bg-surface-backdrop {
    background-color: color-mix(in srgb, var(--bs-gray-800) 24%, transparent) !important;
}


.ranges ul  {
    margin: 0px !important;
    padding: 0px !important;
    border-radius: 2px !important;
}

.ranges  {
    border-radius: 6px !important;
}

.no-shadow {
    box-shadow: none !important;
}

.no-border {
    border: none !important;
}

.highcharts-credits {
    display: none !important;
}