* {
  padding: 0;
  margin: 0;
  outline: none;
}

*, *:before, *:after {
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
}

ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

select, input, button, textarea, img, img:active {
  outline: none;
  border: none;
  box-shadow: none;
}

a {
  text-decoration: none;
}

a:hover, a:focus, a:active, button:hover, button:focus, button:active {
  text-decoration: none;
  outline: none;
  box-shadow: none;
}

img {
  max-width: 100%;
}

.alert {
  border: 0px;
  position: relative;
  padding: 0.95rem 2.5rem 0.95rem 1rem;
  max-width: 700px;
  border-radius: 1px;
  line-height: 1.2;
  color: inherit;
  background-color: #ffffff;
  -webkit-box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26);
  -moz-box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26);
  box-shadow: 1px 1px 14px 0px rgba(18, 38, 63, 0.26);
}

.alert [data-notify=icon] {
  display: block;
}

.alert [data-notify=icon]::before {
  line-height: 35px;
  margin-left: 17px;
  font-size: 22px;
  display: block;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 35px;
  height: 35px;
  border-radius: 30px;
  text-align: center;
  color: #fff;
}

.alert [data-notify=title] {
  display: block;
  color: #2b2b2b;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 0;
}

.alert [data-notify=message] {
  font-size: 14px;
  color: #3d3d3d;
}

.alert .close {
  background: rgba(255, 255, 255, 0.8);
  width: 25px;
  height: 25px;
  line-height: 25px;
  top: 12px !important;
  border-radius: 50%;
}

/*    Alert States    */
.alert-default {
  border-left: 4px solid #1a2035;
}

.alert-default [data-notify=icon]:before {
  background: #1a2035;
}

.alert-primary {
  border-left: 4px solid #1572E8;
}

.alert-primary [data-notify=icon]:before {
  background: #1572E8;
}

.alert-secondary {
  border-left: 4px solid #6861CE;
}

.alert-secondary [data-notify=icon]:before {
  background: #6861CE;
}

.alert-info {
  border-left: 4px solid #48ABF7;
}

.alert-info [data-notify=icon]:before {
  background: #48ABF7;
}

.alert-success {
  border-left: 4px solid #31CE36;
}

.alert-success [data-notify=icon]:before {
  background: #31CE36;
}

.alert-warning {
  border-left: 4px solid #FFAD46;
}

.alert-warning [data-notify=icon]:before {
  background: #FFAD46;
}

.alert-danger {
  border-left: 4px solid #F25961;
}

.alert-danger [data-notify=icon]:before {
  background: #F25961;
}

.bd-callout {
  padding: 1.25rem;
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
  background-color: #6c757d;
  border-left: 0.25rem solid #dee2e6;
}

.bd-callout h4 {
  margin-bottom: 0.25rem;
}

.bd-callout > :last-child {
  margin-bottom: 0;
}

.bd-callout + .bd-callout {
  margin-top: -0.25rem;
}

.bd-callout .highlight {
  background-color: rgba(0, 0, 0, 0.05);
}

.bd-callout-info {
  background-color: rgba(13, 202, 240, 0.075);
  border-color: rgba(13, 202, 240, 0.5);
}

.bd-callout-warning {
  background-color: rgba(255, 193, 7, 0.075);
  border-color: rgba(255, 193, 7, 0.5);
}

.bd-callout-danger {
  background-color: rgba(220, 53, 69, 0.075);
  border-color: rgba(220, 53, 69, 0.5);
}

.bd-callout-success {
  background-color: rgba(25, 135, 84, 0.075);
  border-color: rgba(25, 135, 84, 0.5);
}

#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #20358D;
  opacity: 0.9;
  position: fixed;
  z-index: 1055;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #20358D, 0 0 5px #20358D;
  opacity: 1;
  -webkit-transform: rotate(3deg) translate(0px, -4px);
  -ms-transform: rotate(3deg) translate(0px, -4px);
  transform: rotate(3deg) translate(0px, -4px);
}

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 22px;
  left: 15px;
  opacity: 0.9;
}
@media (max-width: 767px) {
  #nprogress .spinner {
    left: 57px;
  }
}

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 3px transparent;
  border-top-color: #20358D;
  border-left-color: #20358D;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.ripple {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  overflow: hidden;
  -webkit-transform: translateZ(0); /* to contain zoomed ripple */
  transform: translateZ(0);
  border-radius: inherit; /* inherit from parent (rounded buttons etc) */
  pointer-events: none; /* allow user interaction */
  animation: ripple-shadow 0.3s forwards;
  -webkit-animation: ripple-shadow 0.3s forwards;
}

.rippleWave {
  backface-visibility: hidden;
  position: absolute;
  border-radius: 50%;
  transform: scale(0.7);
  -webkit-transform: scale(0.7);
  background: rgb(255, 255, 255);
  opacity: 0.15;
  animation: ripple 1.5s forwards;
  -webkit-animation: ripple 1.5s forwards;
}

@keyframes ripple-shadow {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  20% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
@-webkit-keyframes ripple-shadow {
  0% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
  20% {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  }
  100% {
    box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  }
}
@keyframes ripple {
  to {
    transform: scale(24);
    opacity: 0;
  }
}
@-webkit-keyframes ripple {
  to {
    -webkit-transform: scale(24);
    opacity: 0;
  }
}
.table.table-sm thead tr th {
  height: auto;
  padding: 4px 6px;
}
.table.table-sm tbody tr td {
  height: auto;
  padding: 4px 6px;
}
.table.table-sm tbody tr td i.la {
  opacity: 0;
}
.table.table-sm tbody tr td i.la::before {
  font-size: 15px;
  color: green;
  font-weight: 500;
}
.table.table-sm tbody tr td.edited:hover i.la {
  opacity: 1;
}

.site-debug {
  position: fixed;
  bottom: 0;
  right: 2px;
  text-align: right;
  font-size: 12px;
  opacity: 0.9;
  transition: all 0.1s;
}