:root {
  --primary-50: #e8e8f3;
  --primary-100: #c6c6e1;
  --primary-200: #a1a1cc;
  --primary-300: #7e7db7;
  --primary-400: #6561a9;
  --primary-500: #4e459a;
  --primary-600: #483e91;
  --primary-700: #403485;
  --primary-800: #382a79;
  --primary-900: #2c1963;
  --accent: #d78d14;
  --accent-light: #f19d18;
}
.pcoded-header .m-header {
  justify-content: start;
  padding: 0 15px;
}

@media only screen and (max-width: 991px) {
  .pcoded-header .m-header {
    justify-content: center;
  }
}
.pcoded-header .b-brand a {
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  font-size: 16px;
}
.b-brand img {
  height: 40px;
  background: #fff;
  border-radius: 50%;
  padding: 0.2rem;
}
.pcoded-navbar .pcoded-inner-navbar li.active > a {
  color: #0d0d0d;
}

.custom-control-input:focus ~ .custom-control-label::before {
  box-shadow: 0 0 0 0 rem rgba(44, 25, 99, 0.25);
}
.custom-range:focus::-webkit-slider-thumb,
.custom-range:focus::-moz-range-thumb,
.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #e9e9e9, 0 0 0 0rem rgba(44, 25, 99, 0.25);
}

.page-header {
  margin: 0;
}

.table-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  align-content: baseline;
  margin: 0 5px;
}
.input-ico {
  position: relative;
}
.input-ico i {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.input-ico.left i {
  left: 1rem;
}
.input-ico.left input {
  padding-left: 2.5rem;
}

table.crud {
  border-spacing: 0 10px;
  width: calc(100% - 10px);
  margin: 10px 5px;
  border-collapse: separate !important;
}

tbody tr {
  box-shadow: 0 2px 10px -1px rgb(69 90 100 / 30%);
  border-radius: 0.25rem;
  position: relative;
}

table.crud tr td,
table.crud tr th {
  vertical-align: middle;
  border: none;
  background: #fff;
  position: relative;
}

table.crud tr td:first-child {
  border-top-left-radius: 0.25rem;
  border-bottom-left-radius: 0.25rem;
}

table.crud tr td:last-child {
  border-top-right-radius: 0.25rem;
  border-bottom-right-radius: 0.25rem;
}

table.crud tbody tr:hover {
  box-shadow: 0 0 6px 0 var(--primary-100);
}

table.crud tbody tr:hover td {
  cursor: pointer;
  color: #000;
  background: #eee;
}
table tbody tr .overlay-edit {
  position: absolute;
  opacity: 0;
  top: 0;
  right: 1rem;
  background: #eee;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

table.crud tbody tr .overlay-edit .btn {
  border-radius: 50%;
  margin: 0 3px;
  width: 35px;
  height: 35px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
table.crud tbody tr:hover td .overlay-edit {
  opacity: 1;
}
