:root {
  --sidebar-color: #27374d;
  --hover-sidebar-color: #0088f8;
  --sidebar-fownt-color: #d8d8d8;
  --blue-color: #0a58ca;
  --transition: 0.3s;
  --border-color: #aaaaaa;
  --icons-color: #777777;
  --mauve-color: #473168;
  --cyan-color: #009cab;
}

body {
  height: auto;
  min-height: 100%;
}

/* Start Rest Elements */
*,
h1,
h2,
h3,
h4,
h5,
h6,
p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "Geologica", sans-serif;
  padding: 0;
  margin: 0;
}

ul {
  list-style: none;
}

input {
  border: none;
  outline: none !important;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}

input.my-input:focus {
  border-color: var(--hover-sidebar-color) !important;
}

a {
  color: inherit;
}

/* End Rest Elements */
/* Start Classes */
.pointer {
  cursor: pointer;
}

.w-fc {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.gap-40 {
  gap: 40px;
}

.flex-1 {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.special-ms {
  margin-left: 4px;
}

/* Start Colors  */
.blue-color {
  background-color: var(--blue-color) !important;
}

.blue-color:hover {
  background-color: #00579e !important;
}

.bg-mauve {
  background-color: #563d7c !important;
}

.btn-bg-mauve {
  background-color: rgb(107, 75, 155) !important;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: white;
}

.btn-bg-mauve:hover {
  background-color: #563d7c !important;
  color: white;
}

.text-mauve {
  color: #563d7c;
}

.bg-cyan {
  background-color: var(--cyan-color);
}

.btn-cyan {
  background-color: var(--cyan-color);
  color: white;
}

.btn-cyan:hover {
  background-color: #008996;
  color: white;
}

.text-cyan {
  color: var(--cyan-color);
}

/* End Colors  */
@media (max-width: 575px) {
  .col-xs-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .w-xs-100 {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .col-xs-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
  }
}
@media (max-width: 575px) {
  .mb-xs-3 {
    margin-bottom: 1rem;
  }
}
.bg-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}

.no-data {
  margin: 3rem;
  text-align: center;
  color: silver;
  font-size: 1.25rem;
}

/* End Classes  */
/* Start Paragraph */
.p-14 {
  font-size: 0.875rem;
  color: rgba(35, 38, 41, 0.75);
}

.p-15 {
  font-size: 0.937rem;
  color: rgba(35, 38, 41, 0.75);
  font-weight: 500;
}

.p-16 {
  font-size: 1rem;
  color: rgba(35, 38, 41, 0.75);
}
@media (min-width: 768px) and (max-width: 991px) {
  .p-16 {
    font-size: 14px;
  }
}

.p-18 {
  font-size: 1.125rem;
  color: rgba(35, 38, 41, 0.9);
  line-height: 2;
}

/* End Paragraph */
/*! Start Header */
header {
  border-bottom: 1px solid #dadada;
}
header .header-start {
  padding: 0.5rem;
  gap: 1rem;
}
header .header-start i.nav-icon {
  cursor: pointer;
  top: 5px;
  left: -5px;
  position: relative;
  color: var(--icons-color);
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}
header .header-start i.nav-icon:hover {
  color: var(--hover-sidebar-color);
}
header .header-start .search .input-search {
  outline: none;
  padding: 2px;
  -webkit-padding-start: 30px;
          padding-inline-start: 30px;
  border-radius: 10px;
  border: 1px solid var(--border-color);
  width: 140px;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}
header .header-start .search .input-search:focus {
  width: 210px;
  border-color: var(--hover-sidebar-color);
}
header .header-start .search .input-search:focus ~ .search-icon {
  color: var(--hover-sidebar-color);
}
header .header-start .search .input-search::-webkit-input-placeholder {
  color: var(--border-color);
}
header .header-start .search .input-search::-moz-placeholder {
  color: var(--border-color);
}
header .header-start .search .input-search:-ms-input-placeholder {
  color: var(--border-color);
}
header .header-start .search .input-search::-ms-input-placeholder {
  color: var(--border-color);
}
header .header-start .search .input-search::placeholder {
  color: var(--border-color);
}
header .header-start .search-icon {
  left: 10px;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  cursor: pointer;
  color: var(--icons-color);
}
header .header-end {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
header .header-end .comment {
  cursor: pointer;
  color: var(--icons-color);
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}
header .header-end .comment::before {
  position: absolute;
  content: "3";
  background-color: #df0016;
  width: 12px;
  height: 12px;
  right: -2px;
  top: -3px;
  color: rgb(255, 255, 255);
  font-size: 0.6rem;
  line-height: 12px;
  text-align: center;
  border-radius: 3px;
}
header .header-end .comment:hover .comment-icon {
  color: var(--hover-sidebar-color);
}
header .header-end .bell {
  cursor: pointer;
  color: var(--icons-color);
  font-size: 1.18rem;
}
header .header-end .bell::before {
  position: absolute;
  content: "1";
  background-color: #0088f8;
  width: 12px;
  height: 12px;
  right: -2px;
  top: -3px;
  color: rgb(255, 255, 255);
  font-size: 0.5rem;
  line-height: 12px;
  text-align: center;
  border-radius: 3px;
}
header .header-end .bell:hover .bell-icon {
  color: var(--hover-sidebar-color);
}

/*! End Header */
/* Start Sidebar */
.sidebar {
  overflow: auto;
  overflow-x: hidden;
  max-height: 100vh;
  min-height: 100vh;
  width: 250px;
  background-color: var(--sidebar-color);
  -webkit-box-shadow: 0 0 10px var(--sidebar-color);
          box-shadow: 0 0 10px var(--sidebar-color);
  z-index: 1000;
  inset-inline-start: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  top: 0;
}
.sidebar .sidebar-head {
  border-bottom: 1px solid #526d82 !important;
}
.sidebar .sidebar-head h2 {
  border-bottom: 1px solid #526d82;
}
.sidebar .sidebar-body .item-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: var(--sidebar-fownt-color) !important;
  padding: 0.5rem;
  text-decoration: none;
  -webkit-margin-after: 0.25rem;
          margin-block-end: 0.25rem;
  cursor: pointer;
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.sidebar .sidebar-body .item-style:is(:hover) {
  background-color: #6c757d;
  color: #fff !important;
}
.sidebar .sidebar-body .item-style:is(.active) {
  background-color: var(--hover-sidebar-color);
  color: #fff !important;
}
.sidebar .sidebar-body .item-style.toggler {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.sidebar .sidebar-body .item-style.toggler:is(.active) {
  background-color: unset;
}
.sidebar .sidebar-body .item-style.toggler:is(:hover) {
  background-color: #6c757d;
}
.sidebar .sidebar-body .sidebar-pages .chevron-icon {
  transition: var(--transition);
  -webkit-transition: var(--transition);
  -moz-transition: var(--transition);
  -ms-transition: var(--transition);
  -o-transition: var(--transition);
}
.sidebar .sidebar-body .sidebar-pages.menu-opened .item-style.toggler {
  background-color: #6c757d;
  color: #fff !important;
}
.sidebar .sidebar-body .sidebar-pages.menu-opened .chevron-icon {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
}
.sidebar .sidebar-body .sidebar-pages.menu-opened .collapse {
  display: block;
}
.sidebar .sidebar-body .sidebar-pages-holder .item-style {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-padding-start: 24px;
          padding-inline-start: 24px;
  font-size: 14px;
}
.sidebar .sidebar-body .sidebar-pages-holder .item-style::before {
  content: "";
  position: absolute;
  top: 50%;
  inset-inline-start: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 6px;
  border-radius: 50%;
  border: 1px solid white;
}

body.out .sidebar {
  -webkit-margin-start: -250px;
          margin-inline-start: -250px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

main {
  -webkit-padding-start: 250px;
          padding-inline-start: 250px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.page {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  height: auto;
  min-height: 100%;
}

body.out main {
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

/* Media ////////////////////////////  */
@media (max-width: 991px) {
  .sidebar {
    -webkit-margin-start: -250px;
            margin-inline-start: -250px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  main {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  body.out .sidebar {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
  }
  body.out main {
    -webkit-padding-start: 0;
            padding-inline-start: 0;
  }
  body.out .bg-mobile {
    display: block;
  }
}
/* End Sidebar */
/* Start Login Components   */
.auth-page {
  background-color: #d0d6df;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: 100vh;
}

.show-pass-icon,
.hide-pass-icon {
  position: absolute;
  top: 60%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.hide-pass-icon {
  display: none;
}

.auth-link {
  color: var(--sidebar-color);
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
  text-decoration: none;
}
.auth-link:hover {
  color: var(--hover-sidebar-color);
}

.btn-auth {
  background-color: var(--sidebar-color);
  color: white;
}
.btn-auth:is(:hover) {
  background-color: #2f4769;
  color: white;
}

.form-style .form-header {
  color: white !important;
  text-align: center !important;
  border-top-left-radius: 7px;
  border-top-right-radius: 7px;
}

.form-style .form-body {
  background-color: white !important;
  border-bottom-right-radius: 7px;
  border-bottom-left-radius: 7px;
}

.form-style .form-body .inputs input {
  border: 1px solid #ced4da;
  padding: 0.3rem;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
  width: 100%;
}

.form-style .form-body .inputs input::-webkit-input-placeholder {
  color: #c9d0d6;
}

.form-style .form-body .inputs input::-moz-placeholder {
  color: #c9d0d6;
}

.form-style .form-body .inputs input:-ms-input-placeholder {
  color: #c9d0d6;
}

.form-style .form-body .inputs input::-ms-input-placeholder {
  color: #c9d0d6;
}

.form-style .form-body .inputs input::placeholder {
  color: #c9d0d6;
}

.with-plug {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.with-plug .plug {
  padding: 8px;
  background: #e9ecef;
  color: #59636d;
  border: 1px solid #ced4da;
  border-left: none;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}

.with-plug .form-control {
  border-radius: 0;
}

.form-style .form-body .with-facebook {
  background-color: #4267b2;
  color: white;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}

.form-style .form-body .with-facebook:hover {
  background-color: #24478f;
}

.form-style .form-body .with-google-plus {
  background-color: #d34836;
  color: white;
  -webkit-transition: var(--transition-primary);
  transition: var(--transition-primary);
}

.form-style .form-body .with-google-plus:hover {
  background-color: #a5392b;
}

.form-style .form-body .remeber-me {
  cursor: pointer;
}

/* Start Colors  */
/* Start main Color  */
.form-style .form-header {
  background-color: var(--sidebar-color) !important;
}

.form-style .form-body .inputs input:focus {
  border: 1px solid var(--sidebar-color);
}

.form-style .form-body .inputs .plug:hover {
  color: var(--sidebar-color);
}

.form-style .form-body .remeber-me .checkbox label::before {
  background-color: var(--sidebar-color);
  border-color: var(--sidebar-color);
}

/* End main Color  */
/* Start Cyan Color  */
.form-style.cyan .form-header {
  background-color: var(--cyan-color) !important;
}

.form-style.cyan .form-body .inputs input:focus {
  border: 1px solid var(--cyan-color);
}

.form-style.cyan .form-body .inputs .plug:hover {
  color: var(--cyan-color);
}

.form-style.cyan .form-body .remeber-me .checkbox label::before {
  background-color: var(--cyan-color);
  border-color: var(--cyan-color);
}

.form-style.cyan .form-body .forget-pass a {
  color: var(--cyan-color);
}

.form-style.cyan .form-body .forget-pass a:hover {
  color: #00737e;
}

/* End Cyan Color  */
/* Start Mauve Color  */
.form-style.mauve .form-header {
  background-color: var(--mauve-color) !important;
}

.form-style.mauve .form-body .inputs input:focus {
  border: 1px solid var(--mauve-color);
}

.form-control.mauve:focus {
  border: 1px solid var(--mauve-color);
}

.form-style.mauve .form-body .inputs .plug:hover {
  color: var(--mauve-color);
}

.form-style.mauve .form-body .remeber-me .checkbox label::before {
  background-color: var(--mauve-color);
  border-color: var(--mauve-color);
}

.form-style.mauve .form-body .forget-pass a {
  color: #5d3697;
}

.form-style.mauve .form-body .forget-pass a:hover {
  color: var(--mauve-color);
}

/* End Mauve Color  */
/* End Colors  */
/* End Login Components   */
.content-title {
  font-size: 24px;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.content-header {
  padding: 1.5rem 0 0.75rem 0;
}

.content-body {
  overflow: hidden;
  padding-top: 0.75rem;
}

@media (max-width: 575px) {
  .select2-container {
    /* width: calc(100% - 29px) !important; */
    width: 100% !important;
  }
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  padding-left: 0;
  height: auto;
  margin-top: -4px;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
  height: 36px;
}

.select2-container--default .select2-selection--single {
  border: 1px solid #ced4da;
  padding: 0.46875rem 0.75rem;
  height: 38px;
}

.card-header {
  min-height: 52px;
}

.row-thirteen .custom-table .card-footer .page-link {
  color: var(--sidebar-color);
}

.row-thirteen .custom-table .card-footer .page-link:hover {
  color: var(--blue-color);
}

#content-main {
  padding-left: 1rem;
  padding-right: 1rem;
}

/* Start Table */
.table th,
.table td {
  vertical-align: middle;
}
.table .product-cell {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
}
.table .product-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.table .product-group .product-image {
  border-radius: 0.5rem;
  -webkit-border-radius: 0.5rem;
  -moz-border-radius: 0.5rem;
  -ms-border-radius: 0.5rem;
  -o-border-radius: 0.5rem;
}
.table .product-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.25rem;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.table .product-info .product-title {
  color: #0d6efd;
  border-bottom: 1px solid #eee;
  padding-bottom: 0.25rem;
}
.table .product-info .boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6rem;
}
.table .product-info .boxes .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.5rem;
}
.table .product-info .boxes .box .key-value {
  white-space: nowrap;
}
.table .product-info .boxes .box .key-value .value {
  color: #0d6efd;
}
.table .product-info .boxes .box .desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.25rem;
}
.table .check-mark {
  position: absolute;
  bottom: 0.75rem;
  right: 10px;
}

.search-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 1rem;
  padding: 2rem;
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.search-container .search-title {
  position: absolute;
  top: -24px;
  left: 0.75rem;
  background-color: white;
  padding: 0.25rem;
  color: #555;
  font-size: 24px;
}
.search-container {
  border: 2px solid #eee;
}
.search-container .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1rem;
}
.search-container .search-form .special-width {
  width: 230px !important;
}
@media (max-width: 767px) {
  .search-container .search-form .special-width {
    width: 100% !important;
  }
}
.search-container .search-form .select-2,
.search-container .search-form .form-check {
  padding: 0.375rem 0.75rem;
}
.search-container .search-form .select-2,
.search-container .search-form .form-control,
.search-container .search-form .form-check {
  z-index: 1;
}
@media (max-width: 767px) {
  .search-container .search-form .select-2,
  .search-container .search-form .form-control,
  .search-container .search-form .form-check {
    width: 100% !important;
  }
}
@media (max-width: 767px) {
  .search-container .search-form .select2-container {
    width: 100% !important;
  }
}
.search-container .search-form .form-check-input {
  float: unset;
  margin-left: unset;
}
@media (max-width: 767px) {
  .search-container .search-form .form-check-input {
    margin-left: -10px;
    margin-right: 4px;
  }
}

.search-one {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.search-one .form-control,
.search-one .search-icon {
  border-radius: 0.25rem;
  -webkit-border-radius: 0.25rem;
  -moz-border-radius: 0.25rem;
  -ms-border-radius: 0.25rem;
  -o-border-radius: 0.25rem;
}
.search-one .form-control {
  padding: 0.25rem 0.5rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.search-one .search-icon {
  padding: 0.345rem 0.5rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.bulk-actions {
  display: none;
  position: relative;
}

.btn_delete_all {
  position: absolute;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  top: 50%;
  right: 1rem;
}

.dataTable .btn_delete_all {
  right: 0;
}

#add_product {
  display: none;
}

.spinner {
  -webkit-animation: rotator 1.4s linear infinite;
          animation: rotator 1.4s linear infinite;
}

@-webkit-keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}

@keyframes rotator {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(270deg);
            transform: rotate(270deg);
  }
}
.path {
  stroke-dasharray: 187;
  stroke-dashoffset: 0;
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
          animation: dash 1.4s ease-in-out infinite, colors 5.6s ease-in-out infinite;
}

@-webkit-keyframes colors {
  0% {
    stroke: #4285f4;
  }
  25% {
    stroke: #de3e35;
  }
  50% {
    stroke: #f7c223;
  }
  75% {
    stroke: #1b9a59;
  }
  100% {
    stroke: #4285f4;
  }
}

@keyframes colors {
  0% {
    stroke: #4285f4;
  }
  25% {
    stroke: #de3e35;
  }
  50% {
    stroke: #f7c223;
  }
  75% {
    stroke: #1b9a59;
  }
  100% {
    stroke: #4285f4;
  }
}
@-webkit-keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
@keyframes dash {
  0% {
    stroke-dashoffset: 187;
  }
  50% {
    stroke-dashoffset: 46.75;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 187;
    -webkit-transform: rotate(450deg);
            transform: rotate(450deg);
  }
}
/* End Table */
#DataTables_Table_0_wrapper {
  overflow-x: auto;
  white-space: nowrap;
}
#DataTables_Table_0_wrapper .table {
  width: 100% !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button {
  background: none;
  color: #0d6efd !important;
  border: 1px solid #dee2e6 !important;
  background-color: #fff !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current,
.dataTables_wrapper .dataTables_paginate .paginate_button.current:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button:hover {
  background: none;
  color: #0d6efd !important;
  border: 1px solid #dee2e6 !important;
  background-color: #f8f9fa !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.disabled,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:hover,
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled:active {
  background: none;
  color: #0a58ca !important;
  border: 1px solid #dee2e6 !important;
  background-color: #fff !important;
}

.tag.badge {
  padding-right: 20px;
  margin-bottom: 4px;
}

.bootstrap-tagsinput .tag [data-role=remove] {
  position: relative;
}

.bootstrap-tagsinput .tag [data-role=remove]:after {
  position: absolute;
  background-color: white;
  left: -2px;
  top: 50%;
  -webkit-transform: translatey(-50%);
          transform: translatey(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  line-height: 1;
  font-size: 14px;
}

.dataTables_wrapper .dataTables_length select {
  margin-left: 3px;
  margin-right: 2px;
}

.dataTables_wrapper .dataTables_filter input {
  margin-left: 4px;
}

.menu-settings {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background-color: #eeeeee;
  -webkit-margin-after: 24px;
          margin-block-end: 24px;
  -webkit-padding-start: 16px;
          padding-inline-start: 16px;
  padding-block: 16px;
  border-end-end-radius: 4px;
}
@media (max-width: 767px) {
  .menu-settings {
    -webkit-padding-end: 16px;
            padding-inline-end: 16px;
    border-end-end-radius: 0;
  }
}
.menu-settings .nav-link {
  position: relative;
  color: inherit;
  border: none;
  border-radius: 0;
}
.menu-settings .nav-link:is(:hover) {
  color: var(--hover-sidebar-color);
}
.menu-settings .nav-link.active::before {
  content: "";
  position: absolute;
  top: 0;
  inset-inline-start: 0;
  width: 4px;
  height: 100%;
  background-color: var(--hover-sidebar-color);
}

.hint-text {
  font-size: 12px;
  color: #b6b6b6;
}

/* Start Footer */
footer {
  margin-left: 250px;
}

/* End Footer */