@charset "UTF-8";

.backend-form-control {
  display: block;
  width: 100%;
  height: calc(1.5em + 1.25rem + 2px);
  padding: 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #8898aa;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
  transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.places-badge{
  width: 200px;
}

@media (prefers-reduced-motion: reduce) {
  .backend-form-control {
    transition: none;
  }
}
.backend-form-control::-ms-expand {
  background-color: transparent;
  border: 0;
}
.backend-form-control:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #8898aa;
}
.backend-form-control:focus {
  color: #8898aa;
  background-color: #fff;
  border-color: #0A48B3;
  outline: 0;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.backend-form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}
.backend-form-control:disabled, .backend-form-control[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

select.backend-form-control:focus::-ms-value {
  color: #8898aa;
  background-color: #fff;
}

.backend-form-control-file,
.backend-form-control-range {
  display: block;
  width: 100%;
}

.backend-bg-secondary {
    background-color: #f7fafc !important;
}


.backend-form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.625rem 0;
  margin-bottom: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  color: #525f7f;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}
.backend-form-control-plaintext.backend-form-control-sm, .backend-form-control-plaintext.backend-form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.backend-form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.backend-form-control-lg {
  height: calc(1.5em + 1.75rem + 2px);
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.4375rem;
}

select.backend-form-control[size], select.backend-form-control[multiple] {
  height: auto;
}

textarea.backend-form-control {
  height: auto;
}

.backend-form-group {
  margin-bottom: 1.5rem;
}

.backend-form-text {
  display: block;
  margin-top: 0.25rem;
}

.backend-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}
.backend-form-row > .col,
.backend-form-row > [class*=col-] {
  padding-right: 5px;
  padding-left: 5px;
}

.backend-form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.backend-form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}
.backend-form-check-input[disabled] ~ .backend-form-check-label, .backend-form-check-input:disabled ~ .backend-form-check-label {
  color: #8898aa;
}

.backend-form-check-label {
  margin-bottom: 0;
}

.backend-form-check-inline {
  display: inline-flex;
  align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}
.backend-form-check-inline .backend-form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}


.was-validated .backend-form-control:valid, .backend-form-control.is-valid,
.was-validated .backend-custom-select:valid,
.backend-custom-select.is-valid {
  border-color: #2dce89;
}
.was-validated .backend-form-control:valid:focus, .backend-form-control.is-valid:focus,
.was-validated .backend-custom-select:valid:focus,
.backend-custom-select.is-valid:focus {
  border-color: #2dce89;
}
.was-validated .backend-form-control:valid ~ .valid-feedback,
.was-validated .backend-form-control:valid ~ .valid-tooltip, .backend-form-control.is-valid ~ .valid-feedback,
.backend-form-control.is-valid ~ .valid-tooltip,
.was-validated .backend-custom-select:valid ~ .valid-feedback,
.was-validated .backend-custom-select:valid ~ .valid-tooltip,
.backend-custom-select.is-valid ~ .valid-feedback,
.backend-custom-select.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .backend-form-check-input:valid ~ .backend-form-check-label, .backend-form-check-input.is-valid ~ .backend-form-check-label {
  color: #2dce89;
}
.was-validated .backend-form-check-input:valid ~ .valid-feedback,
.was-validated .backend-form-check-input:valid ~ .valid-tooltip, .backend-form-check-input.is-valid ~ .valid-feedback,
.backend-form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .backend-custom-control-input:valid ~ .backend-custom-control-label, .backend-custom-control-input.is-valid ~ .backend-custom-control-label {
  color: #2dce89;
}
.was-validated .backend-custom-control-input:valid ~ .backend-custom-control-label::before, .backend-custom-control-input.is-valid ~ .backend-custom-control-label::before {
  background-color: #93e7c3;
  border-color: #93e7c3;
}
.was-validated .backend-custom-control-input:valid ~ .valid-feedback,
.was-validated .backend-custom-control-input:valid ~ .valid-tooltip, .backend-custom-control-input.is-valid ~ .valid-feedback,
.backend-custom-control-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .backend-custom-control-input:valid:checked ~ .backend-custom-control-label::before, .backend-custom-control-input.is-valid:checked ~ .backend-custom-control-label::before {
  background-color: #54daa1;
  border-color: #93e7c3;
}
.was-validated .backend-custom-control-input:valid:focus ~ .backend-custom-control-label::before, .backend-custom-control-input.is-valid:focus ~ .backend-custom-control-label::before {
  box-shadow: 0 0 0 1px #f8f9fe, 0 0 0 0 rgba(45, 206, 137, 0.25);
}

.backend-custom-file-input {
  opacity: 1 !important;
  width: 60% !important;
  margin: 8px !important;
}
.was-validated .backend-custom-file-input:valid ~ .backend-custom-file-label, .backend-custom-file-input.is-valid ~ .backend-custom-file-label {
  border-color: #2dce89;
}
.was-validated .backend-custom-file-input:valid ~ .backend-custom-file-label::before, .backend-custom-file-input.is-valid ~ .backend-custom-file-label::before {
  border-color: inherit;
}
.was-validated .backend-custom-file-input:valid ~ .valid-feedback,
.was-validated .backend-custom-file-input:valid ~ .valid-tooltip, .backend-custom-file-input.is-valid ~ .valid-feedback,
.backend-custom-file-input.is-valid ~ .valid-tooltip {
  display: block;
}
.was-validated .backend-custom-file-input:valid:focus ~ .backend-custom-file-label, .backend-custom-file-input.is-valid:focus ~ .backend-custom-file-label {
  box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.25);
}
.backend-custom-file-input:focus {
  outline: none;
}


.was-validated .backend-form-control:invalid, .backend-form-control.is-invalid,
.was-validated .backend-custom-select:invalid,
.backend-custom-select.is-invalid {
  border-color: #fb6340;
}
.was-validated .backend-form-control:invalid:focus, .backend-form-control.is-invalid:focus,
.was-validated .backend-custom-select:invalid:focus,
.backend-custom-select.is-invalid:focus {
  border-color: #fb6340;
}
.was-validated .backend-form-control:invalid ~ .invalid-feedback,
.was-validated .backend-form-control:invalid ~ .invalid-tooltip, .backend-form-control.is-invalid ~ .invalid-feedback,
.backend-form-control.is-invalid ~ .invalid-tooltip,
.was-validated .backend-custom-select:invalid ~ .invalid-feedback,
.was-validated .backend-custom-select:invalid ~ .invalid-tooltip,
.backend-custom-select.is-invalid ~ .invalid-feedback,
.backend-custom-select.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .backend-form-check-input:invalid ~ .backend-form-check-label, .backend-form-check-input.is-invalid ~ .backend-form-check-label {
  color: #fb6340;
}
.was-validated .backend-form-check-input:invalid ~ .invalid-feedback,
.was-validated .backend-form-check-input:invalid ~ .invalid-tooltip, .backend-form-check-input.is-invalid ~ .invalid-feedback,
.backend-form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .backend-custom-control-input:invalid ~ .backend-custom-control-label, .backend-custom-control-input.is-invalid ~ .backend-custom-control-label {
  color: #fb6340;
}
.was-validated .backend-custom-control-input:invalid ~ .backend-custom-control-label::before, .backend-custom-control-input.is-invalid ~ .backend-custom-control-label::before {
  background-color: #fec9bd;
  border-color: #fec9bd;
}
.was-validated .backend-custom-control-input:invalid ~ .invalid-feedback,
.was-validated .backend-custom-control-input:invalid ~ .invalid-tooltip, .backend-custom-control-input.is-invalid ~ .invalid-feedback,
.backend-custom-control-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .backend-custom-control-input:invalid:checked ~ .backend-custom-control-label::before, .backend-custom-control-input.is-invalid:checked ~ .backend-custom-control-label::before {
  background-color: #fc8c72;
  border-color: #fec9bd;
}
.was-validated .backend-custom-control-input:invalid:focus ~ .backend-custom-control-label::before, .backend-custom-control-input.is-invalid:focus ~ .backend-custom-control-label::before {
  box-shadow: 0 0 0 1px #f8f9fe, 0 0 0 0 rgba(251, 99, 64, 0.25);
}

.backend-custom-file-input {
  opacity: 1 !important;
  width: 60% !important;
  margin: 8px !important;
}
.was-validated .backend-custom-file-input:invalid ~ .backend-custom-file-label, .backend-custom-file-input.is-invalid ~ .backend-custom-file-label {
  border-color: #fb6340;
}
.was-validated .backend-custom-file-input:invalid ~ .backend-custom-file-label::before, .backend-custom-file-input.is-invalid ~ .backend-custom-file-label::before {
  border-color: inherit;
}
.was-validated .backend-custom-file-input:invalid ~ .invalid-feedback,
.was-validated .backend-custom-file-input:invalid ~ .invalid-tooltip, .backend-custom-file-input.is-invalid ~ .invalid-feedback,
.backend-custom-file-input.is-invalid ~ .invalid-tooltip {
  display: block;
}
.was-validated .backend-custom-file-input:invalid:focus ~ .backend-custom-file-label, .backend-custom-file-input.is-invalid:focus ~ .backend-custom-file-label {
  box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.25);
}
.backend-custom-file-input:focus {
  outline: none;
}

.backend-form-inline {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
.backend-form-inline .backend-form-check {
  width: 100%;
}
@media (min-width: 576px) {
  .backend-form-inline label {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }
  .backend-form-inline .backend-form-group {
    display: flex;
    flex: 0 0 auto;
    flex-flow: row wrap;
    align-items: center;
    margin-bottom: 0;
  }
  .backend-form-inline .backend-form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .backend-form-inline .backend-form-control-plaintext {
    display: inline-block;
  }
  .backend-form-inline .backend-input-group,
.backend-form-inline .backend-custom-select {
    width: auto;
  }
  .backend-form-inline .backend-form-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .backend-form-inline .backend-form-check-input {
    position: relative;
    flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .backend-form-inline .backend-custom-control {
    align-items: center;
    justify-content: center;
  }
  .backend-form-inline .backend-custom-control-label {
    margin-bottom: 0;
  }
}

.backend-btn {
  display: inline-block;
  font-weight: 600;
  color: #525f7f;
  text-align: center;
  vertical-align: middle;
  cursor: pointer;
  user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .backend-btn {
    transition: none;
  }
}
.backend-btn:hover {
  color: #525f7f;
  text-decoration: none;
}
.backend-btn:focus, .backend-btn.focus {
  outline: 0;
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}
.backend-btn.disabled, .backend-btn:disabled {
  opacity: 0.65;
  box-shadow: none;
}
.backend-btn:not(:disabled):not(.disabled):active, .backend-btn:not(:disabled):not(.disabled).active {
  box-shadow: none;
}
.backend-btn:not(:disabled):not(.disabled):active:focus, .backend-btn:not(:disabled):not(.disabled).active:focus {
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
}

a.backend-btn.disabled,
fieldset:disabled a.backend-btn {
  pointer-events: none;
}

.backend-btn-primary {
  color: #fff;
  background-color: #0A48B3;
  border-color: #0A48B3;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-primary:hover {
  color: #fff;
  background-color: #0a48b3;
  border-color: #0a48b3;
}
.backend-btn-primary:focus, .backend-btn-primary.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(10, 72, 179, 0.5);
}
.backend-btn-primary.disabled, .backend-btn-primary:disabled {
  color: #fff;
  background-color: #0A48B3;
  border-color: #0A48B3;
}
.backend-btn-primary:not(:disabled):not(.disabled):active, .backend-btn-primary:not(:disabled):not(.disabled).active, .show > .backend-btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #073583;
  border-color: #0a48b3;
}
.backend-btn-primary:not(:disabled):not(.disabled):active:focus, .backend-btn-primary:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-primary.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(10, 72, 179, 0.5);
}

.backend-btn-secondary {
  color: #212529;
  background-color: #f7fafc;
  border-color: #f7fafc;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-secondary:hover {
  color: #212529;
  background-color: #f7fafc;
  border-color: #f7fafc;
}
.backend-btn-secondary:focus, .backend-btn-secondary.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(247, 250, 252, 0.5);
}
.backend-btn-secondary.disabled, .backend-btn-secondary:disabled {
  color: #212529;
  background-color: #f7fafc;
  border-color: #f7fafc;
}
.backend-btn-secondary:not(:disabled):not(.disabled):active, .backend-btn-secondary:not(:disabled):not(.disabled).active, .show > .backend-btn-secondary.dropdown-toggle {
  color: #212529;
  background-color: #d2e3ee;
  border-color: #f7fafc;
}
.backend-btn-secondary:not(:disabled):not(.disabled):active:focus, .backend-btn-secondary:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-secondary.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(247, 250, 252, 0.5);
}

.backend-btn-success {
  color: #fff;
  background-color: #2dce89;
  border-color: #2dce89;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-success:hover {
  color: #fff;
  background-color: #2dce89;
  border-color: #2dce89;
}
.backend-btn-success:focus, .backend-btn-success.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(45, 206, 137, 0.5);
}
.backend-btn-success.disabled, .backend-btn-success:disabled {
  color: #fff;
  background-color: #2dce89;
  border-color: #2dce89;
}
.backend-btn-success:not(:disabled):not(.disabled):active, .backend-btn-success:not(:disabled):not(.disabled).active, .show > .backend-btn-success.dropdown-toggle {
  color: #fff;
  background-color: #24a46d;
  border-color: #2dce89;
}
.backend-btn-success:not(:disabled):not(.disabled):active:focus, .backend-btn-success:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-success.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(45, 206, 137, 0.5);
}

.backend-btn-info {
  color: #fff;
  background-color: #11cdef;
  border-color: #11cdef;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-info:hover {
  color: #fff;
  background-color: #11cdef;
  border-color: #11cdef;
}
.backend-btn-info:focus, .backend-btn-info.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(17, 205, 239, 0.5);
}
.backend-btn-info.disabled, .backend-btn-info:disabled {
  color: #fff;
  background-color: #11cdef;
  border-color: #11cdef;
}
.backend-btn-info:not(:disabled):not(.disabled):active, .backend-btn-info:not(:disabled):not(.disabled).active, .show > .backend-btn-info.dropdown-toggle {
  color: #fff;
  background-color: #0da5c0;
  border-color: #11cdef;
}
.backend-btn-info:not(:disabled):not(.disabled):active:focus, .backend-btn-info:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-info.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(17, 205, 239, 0.5);
}

.backend-btn-warning {
  color: #fff;
  background-color: #fb6340;
  border-color: #fb6340;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-warning:hover {
  color: #fff;
  background-color: #fb6340;
  border-color: #fb6340;
}
.backend-btn-warning:focus, .backend-btn-warning.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(251, 99, 64, 0.5);
}
.backend-btn-warning.disabled, .backend-btn-warning:disabled {
  color: #fff;
  background-color: #fb6340;
  border-color: #fb6340;
}
.backend-btn-warning:not(:disabled):not(.disabled):active, .backend-btn-warning:not(:disabled):not(.disabled).active, .show > .backend-btn-warning.dropdown-toggle {
  color: #fff;
  background-color: #fa3a0e;
  border-color: #fb6340;
}
.backend-btn-warning:not(:disabled):not(.disabled):active:focus, .backend-btn-warning:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-warning.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(251, 99, 64, 0.5);
}

.backend-btn-danger {
  color: #fff;
  background-color: #f5365c;
  border-color: #f5365c;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-danger:hover {
  color: #fff;
  background-color: #f5365c;
  border-color: #f5365c;
}
.backend-btn-danger:focus, .backend-btn-danger.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(245, 54, 92, 0.5);
}
.backend-btn-danger.disabled, .backend-btn-danger:disabled {
  color: #fff;
  background-color: #f5365c;
  border-color: #f5365c;
}
.backend-btn-danger:not(:disabled):not(.disabled):active, .backend-btn-danger:not(:disabled):not(.disabled).active, .show > .backend-btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #ec0c38;
  border-color: #f5365c;
}
.backend-btn-danger:not(:disabled):not(.disabled):active:focus, .backend-btn-danger:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-danger.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(245, 54, 92, 0.5);
}

.backend-btn-light {
  color: #fff;
  background-color: #adb5bd;
  border-color: #adb5bd;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-light:hover {
  color: #fff;
  background-color: #adb5bd;
  border-color: #adb5bd;
}
.backend-btn-light:focus, .backend-btn-light.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(173, 181, 189, 0.5);
}
.backend-btn-light.disabled, .backend-btn-light:disabled {
  color: #fff;
  background-color: #adb5bd;
  border-color: #adb5bd;
}
.backend-btn-light:not(:disabled):not(.disabled):active, .backend-btn-light:not(:disabled):not(.disabled).active, .show > .backend-btn-light.dropdown-toggle {
  color: #fff;
  background-color: #919ca6;
  border-color: #adb5bd;
}
.backend-btn-light:not(:disabled):not(.disabled):active:focus, .backend-btn-light:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-light.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(173, 181, 189, 0.5);
}

.backend-btn-dark {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.backend-btn-dark:focus, .backend-btn-dark.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(33, 37, 41, 0.5);
}
.backend-btn-dark.disabled, .backend-btn-dark:disabled {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.backend-btn-dark:not(:disabled):not(.disabled):active, .backend-btn-dark:not(:disabled):not(.disabled).active, .show > .backend-btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #0a0c0d;
  border-color: #212529;
}
.backend-btn-dark:not(:disabled):not(.disabled):active:focus, .backend-btn-dark:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-dark.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(33, 37, 41, 0.5);
}

.backend-btn-default {
  color: #fff;
  background-color: #172b4d;
  border-color: #172b4d;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-default:hover {
  color: #fff;
  background-color: #172b4d;
  border-color: #172b4d;
}
.backend-btn-default:focus, .backend-btn-default.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(23, 43, 77, 0.5);
}
.backend-btn-default.disabled, .backend-btn-default:disabled {
  color: #fff;
  background-color: #172b4d;
  border-color: #172b4d;
}
.backend-btn-default:not(:disabled):not(.disabled):active, .backend-btn-default:not(:disabled):not(.disabled).active, .show > .backend-btn-default.dropdown-toggle {
  color: #fff;
  background-color: #0b1526;
  border-color: #172b4d;
}
.backend-btn-default:not(:disabled):not(.disabled):active:focus, .backend-btn-default:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-default.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(23, 43, 77, 0.5);
}

.backend-btn-white {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-white:hover {
  color: #212529;
  background-color: white;
  border-color: white;
}
.backend-btn-white:focus, .backend-btn-white.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(255, 255, 255, 0.5);
}
.backend-btn-white.disabled, .backend-btn-white:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.backend-btn-white:not(:disabled):not(.disabled):active, .backend-btn-white:not(:disabled):not(.disabled).active, .show > .backend-btn-white.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: white;
}
.backend-btn-white:not(:disabled):not(.disabled):active:focus, .backend-btn-white:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-white.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.backend-btn-neutral {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-neutral:hover {
  color: #212529;
  background-color: white;
  border-color: white;
}
.backend-btn-neutral:focus, .backend-btn-neutral.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(255, 255, 255, 0.5);
}
.backend-btn-neutral.disabled, .backend-btn-neutral:disabled {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.backend-btn-neutral:not(:disabled):not(.disabled):active, .backend-btn-neutral:not(:disabled):not(.disabled).active, .show > .backend-btn-neutral.dropdown-toggle {
  color: #212529;
  background-color: #e6e6e6;
  border-color: white;
}
.backend-btn-neutral:not(:disabled):not(.disabled):active:focus, .backend-btn-neutral:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-neutral.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.backend-btn-darker {
  color: #fff;
  background-color: black;
  border-color: black;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-darker:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.backend-btn-darker:focus, .backend-btn-darker.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.backend-btn-darker.disabled, .backend-btn-darker:disabled {
  color: #fff;
  background-color: black;
  border-color: black;
}
.backend-btn-darker:not(:disabled):not(.disabled):active, .backend-btn-darker:not(:disabled):not(.disabled).active, .show > .backend-btn-darker.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.backend-btn-darker:not(:disabled):not(.disabled):active:focus, .backend-btn-darker:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-darker.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(0, 0, 0, 0.5);
}

.backend-btn-outline-primary {
  color: #0A48B3;
  background-color: transparent;
  background-image: none;
  border-color: #0A48B3;
}
.backend-btn-outline-primary:hover {
  color: #fff;
  background-color: #0A48B3;
  border-color: #0A48B3;
}
.backend-btn-outline-primary:focus, .backend-btn-outline-primary.focus {
  box-shadow: 0 0 0 0 rgba(10, 72, 179, 0.5);
}
.backend-btn-outline-primary.disabled, .backend-btn-outline-primary:disabled {
  color: #0A48B3;
  background-color: transparent;
}
.backend-btn-outline-primary:not(:disabled):not(.disabled):active, .backend-btn-outline-primary:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #0A48B3;
  border-color: #0A48B3;
}
.backend-btn-outline-primary:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-primary:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-primary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(10, 72, 179, 0.5);
}

.backend-btn-outline-secondary {
  color: #f7fafc;
  background-color: transparent;
  background-image: none;
  border-color: #f7fafc;
}
.backend-btn-outline-secondary:hover {
  color: #212529;
  background-color: #f7fafc;
  border-color: #f7fafc;
}
.backend-btn-outline-secondary:focus, .backend-btn-outline-secondary.focus {
  box-shadow: 0 0 0 0 rgba(247, 250, 252, 0.5);
}
.backend-btn-outline-secondary.disabled, .backend-btn-outline-secondary:disabled {
  color: #f7fafc;
  background-color: transparent;
}
.backend-btn-outline-secondary:not(:disabled):not(.disabled):active, .backend-btn-outline-secondary:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-secondary.dropdown-toggle {
  color: #212529;
  background-color: #f7fafc;
  border-color: #f7fafc;
}
.backend-btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-secondary:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-secondary.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(247, 250, 252, 0.5);
}

.backend-btn-outline-success {
  color: #2dce89;
  background-color: transparent;
  background-image: none;
  border-color: #2dce89;
}
.backend-btn-outline-success:hover {
  color: #fff;
  background-color: #2dce89;
  border-color: #2dce89;
}
.backend-btn-outline-success:focus, .backend-btn-outline-success.focus {
  box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5);
}
.backend-btn-outline-success.disabled, .backend-btn-outline-success:disabled {
  color: #2dce89;
  background-color: transparent;
}
.backend-btn-outline-success:not(:disabled):not(.disabled):active, .backend-btn-outline-success:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #2dce89;
  border-color: #2dce89;
}
.backend-btn-outline-success:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-success:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-success.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(45, 206, 137, 0.5);
}

.backend-btn-outline-info {
  color: #11cdef;
  background-color: transparent;
  background-image: none;
  border-color: #11cdef;
}
.backend-btn-outline-info:hover {
  color: #fff;
  background-color: #11cdef;
  border-color: #11cdef;
}
.backend-btn-outline-info:focus, .backend-btn-outline-info.focus {
  box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5);
}
.backend-btn-outline-info.disabled, .backend-btn-outline-info:disabled {
  color: #11cdef;
  background-color: transparent;
}
.backend-btn-outline-info:not(:disabled):not(.disabled):active, .backend-btn-outline-info:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #11cdef;
  border-color: #11cdef;
}
.backend-btn-outline-info:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-info:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-info.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(17, 205, 239, 0.5);
}

.backend-btn-outline-warning {
  color: #fb6340;
  background-color: transparent;
  background-image: none;
  border-color: #fb6340;
}
.backend-btn-outline-warning:hover {
  color: #fff;
  background-color: #fb6340;
  border-color: #fb6340;
}
.backend-btn-outline-warning:focus, .backend-btn-outline-warning.focus {
  box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5);
}
.backend-btn-outline-warning.disabled, .backend-btn-outline-warning:disabled {
  color: #fb6340;
  background-color: transparent;
}
.backend-btn-outline-warning:not(:disabled):not(.disabled):active, .backend-btn-outline-warning:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-warning.dropdown-toggle {
  color: #fff;
  background-color: #fb6340;
  border-color: #fb6340;
}
.backend-btn-outline-warning:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-warning:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-warning.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(251, 99, 64, 0.5);
}

.backend-btn-outline-danger {
  color: #f5365c;
  background-color: transparent;
  background-image: none;
  border-color: #f5365c;
}
.backend-btn-outline-danger:hover {
  color: #fff;
  background-color: #f5365c;
  border-color: #f5365c;
}
.backend-btn-outline-danger:focus, .backend-btn-outline-danger.focus {
  box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5);
}
.backend-btn-outline-danger.disabled, .backend-btn-outline-danger:disabled {
  color: #f5365c;
  background-color: transparent;
}
.backend-btn-outline-danger:not(:disabled):not(.disabled):active, .backend-btn-outline-danger:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #f5365c;
  border-color: #f5365c;
}
.backend-btn-outline-danger:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-danger:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-danger.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(245, 54, 92, 0.5);
}

.backend-btn-outline-light {
  color: #adb5bd;
  background-color: transparent;
  background-image: none;
  border-color: #adb5bd;
}
.backend-btn-outline-light:hover {
  color: #fff;
  background-color: #adb5bd;
  border-color: #adb5bd;
}
.backend-btn-outline-light:focus, .backend-btn-outline-light.focus {
  box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5);
}
.backend-btn-outline-light.disabled, .backend-btn-outline-light:disabled {
  color: #adb5bd;
  background-color: transparent;
}
.backend-btn-outline-light:not(:disabled):not(.disabled):active, .backend-btn-outline-light:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-light.dropdown-toggle {
  color: #fff;
  background-color: #adb5bd;
  border-color: #adb5bd;
}
.backend-btn-outline-light:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-light:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-light.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(173, 181, 189, 0.5);
}

.backend-btn-outline-dark {
  color: #212529;
  background-color: transparent;
  background-image: none;
  border-color: #212529;
}
.backend-btn-outline-dark:hover {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.backend-btn-outline-dark:focus, .backend-btn-outline-dark.focus {
  box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
}
.backend-btn-outline-dark.disabled, .backend-btn-outline-dark:disabled {
  color: #212529;
  background-color: transparent;
}
.backend-btn-outline-dark:not(:disabled):not(.disabled):active, .backend-btn-outline-dark:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #212529;
  border-color: #212529;
}
.backend-btn-outline-dark:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-dark:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-dark.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(33, 37, 41, 0.5);
}

.backend-btn-outline-default {
  color: #172b4d;
  background-color: transparent;
  background-image: none;
  border-color: #172b4d;
}
.backend-btn-outline-default:hover {
  color: #fff;
  background-color: #172b4d;
  border-color: #172b4d;
}
.backend-btn-outline-default:focus, .backend-btn-outline-default.focus {
  box-shadow: 0 0 0 0 rgba(23, 43, 77, 0.5);
}
.backend-btn-outline-default.disabled, .backend-btn-outline-default:disabled {
  color: #172b4d;
  background-color: transparent;
}
.backend-btn-outline-default:not(:disabled):not(.disabled):active, .backend-btn-outline-default:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-default.dropdown-toggle {
  color: #fff;
  background-color: #172b4d;
  border-color: #172b4d;
}
.backend-btn-outline-default:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-default:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-default.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(23, 43, 77, 0.5);
}

.backend-btn-outline-white {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}
.backend-btn-outline-white:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.backend-btn-outline-white:focus, .backend-btn-outline-white.focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}
.backend-btn-outline-white.disabled, .backend-btn-outline-white:disabled {
  color: #fff;
  background-color: transparent;
}
.backend-btn-outline-white:not(:disabled):not(.disabled):active, .backend-btn-outline-white:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-white.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.backend-btn-outline-white:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-white:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-white.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.backend-btn-outline-neutral {
  color: #fff;
  background-color: transparent;
  background-image: none;
  border-color: #fff;
}
.backend-btn-outline-neutral:hover {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.backend-btn-outline-neutral:focus, .backend-btn-outline-neutral.focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}
.backend-btn-outline-neutral.disabled, .backend-btn-outline-neutral:disabled {
  color: #fff;
  background-color: transparent;
}
.backend-btn-outline-neutral:not(:disabled):not(.disabled):active, .backend-btn-outline-neutral:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-neutral.dropdown-toggle {
  color: #212529;
  background-color: #fff;
  border-color: #fff;
}
.backend-btn-outline-neutral:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-neutral:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-neutral.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.5);
}

.backend-btn-outline-darker {
  color: black;
  background-color: transparent;
  background-image: none;
  border-color: black;
}
.backend-btn-outline-darker:hover {
  color: #fff;
  background-color: black;
  border-color: black;
}
.backend-btn-outline-darker:focus, .backend-btn-outline-darker.focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}
.backend-btn-outline-darker.disabled, .backend-btn-outline-darker:disabled {
  color: black;
  background-color: transparent;
}
.backend-btn-outline-darker:not(:disabled):not(.disabled):active, .backend-btn-outline-darker:not(:disabled):not(.disabled).active, .show > .backend-btn-outline-darker.dropdown-toggle {
  color: #fff;
  background-color: black;
  border-color: black;
}
.backend-btn-outline-darker:not(:disabled):not(.disabled):active:focus, .backend-btn-outline-darker:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-outline-darker.dropdown-toggle:focus {
  box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.5);
}

.backend-btn-link {
  font-weight: 400;
  color: #0A48B3;
  text-decoration: none;
}
.backend-btn-link:hover {
  color: #062b6b;
  text-decoration: none;
}
.backend-btn-link:focus, .backend-btn-link.focus {
  text-decoration: none;
  box-shadow: none;
}
.backend-btn-link:disabled, .backend-btn-link.disabled {
  color: #8898aa;
  pointer-events: none;
}

.backend-btn-lg, .backend-btn-group-lg > .backend-btn {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.4375rem;
}

.backend-btn-sm, .backend-btn-group-sm > .backend-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.backend-btn-block {
  display: block;
  width: 100%;
}
.backend-btn-block + .backend-btn-block {
  margin-top: 0.5rem;
}

input[type=submit].backend-btn-block,
input[type=reset].backend-btn-block,
input[type=button].backend-btn-block {
  width: 100%;
}

.backend-fade {
  transition: opacity 0.15s linear;
}
@media (prefers-reduced-motion: reduce) {
  .backend-fade {
    transition: none;
  }
}
.backend-fade:not(.show) {
  opacity: 0;
}

.backend-btn-group,
.backend-btn-group-vertical {
  position: relative;
  display: inline-flex;
  vertical-align: middle;
}
.backend-btn-group > .backend-btn,
.backend-btn-group-vertical > .backend-btn {
  position: relative;
  flex: 1 1 auto;
}
.backend-btn-group > .backend-btn:hover,
.backend-btn-group-vertical > .backend-btn:hover {
  z-index: 1;
}
.backend-btn-group > .backend-btn:focus, .backend-btn-group > .backend-btn:active, .backend-btn-group > .backend-btn.active,
.backend-btn-group-vertical > .backend-btn:focus,
.backend-btn-group-vertical > .backend-btn:active,
.backend-btn-group-vertical > .backend-btn.active {
  z-index: 1;
}

.backend-btn-toolbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.backend-btn-toolbar .backend-input-group {
  width: auto;
}

.backend-btn-group > .backend-btn:not(:first-child),
.backend-btn-group > .backend-btn-group:not(:first-child) {
  margin-left: -1px;
}
.backend-btn-group > .backend-btn:not(:last-child):not(.dropdown-toggle),
.backend-btn-group > .backend-btn-group:not(:last-child) > .backend-btn {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.backend-btn-group > .backend-btn:not(:first-child),
.backend-btn-group > .backend-btn-group:not(:first-child) > .backend-btn {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.backend-btn-sm + .dropdown-toggle-split, .backend-btn-group-sm > .backend-btn + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.backend-btn-lg + .dropdown-toggle-split, .backend-btn-group-lg > .backend-btn + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.backend-btn-group.show .dropdown-toggle {
  box-shadow: none;
}
.backend-btn-group.show .dropdown-toggle.backend-btn-link {
  box-shadow: none;
}

.backend-btn-group-vertical {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.backend-btn-group-vertical > .backend-btn,
.backend-btn-group-vertical > .backend-btn-group {
  width: 100%;
}
.backend-btn-group-vertical > .backend-btn:not(:first-child),
.backend-btn-group-vertical > .backend-btn-group:not(:first-child) {
  margin-top: -1px;
}
.backend-btn-group-vertical > .backend-btn:not(:last-child):not(.dropdown-toggle),
.backend-btn-group-vertical > .backend-btn-group:not(:last-child) > .backend-btn {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.backend-btn-group-vertical > .backend-btn:not(:first-child),
.backend-btn-group-vertical > .backend-btn-group:not(:first-child) > .backend-btn {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.backend-btn-group-toggle > .backend-btn,
.backend-btn-group-toggle > .backend-btn-group > .backend-btn {
  margin-bottom: 0;
}
.backend-btn-group-toggle > .backend-btn input[type=radio],
.backend-btn-group-toggle > .backend-btn input[type=checkbox],
.backend-btn-group-toggle > .backend-btn-group > .backend-btn input[type=radio],
.backend-btn-group-toggle > .backend-btn-group > .backend-btn input[type=checkbox] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.backend-input-group {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  width: 100%;
}
.backend-input-group > .backend-form-control,
.backend-input-group > .backend-form-control-plaintext,
.backend-input-group > .backend-custom-select,
.backend-input-group > .backend-custom-file {
  position: relative;
  flex: 1 1 0%;
  min-width: 0;
  margin-bottom: 0;
}
.backend-input-group > .backend-form-control + .backend-form-control,
.backend-input-group > .backend-form-control + .backend-custom-select,
.backend-input-group > .backend-form-control + .backend-custom-file,
.backend-input-group > .backend-form-control-plaintext + .backend-form-control,
.backend-input-group > .backend-form-control-plaintext + .backend-custom-select,
.backend-input-group > .backend-form-control-plaintext + .backend-custom-file,
.backend-input-group > .backend-custom-select + .backend-form-control,
.backend-input-group > .backend-custom-select + .backend-custom-select,
.backend-input-group > .backend-custom-select + .backend-custom-file,
.backend-input-group > .backend-custom-file + .backend-form-control,
.backend-input-group > .backend-custom-file + .backend-custom-select,
.backend-input-group > .backend-custom-file + .backend-custom-file {
  margin-left: -1px;
}
.backend-input-group > .backend-form-control:focus,
.backend-input-group > .backend-custom-select:focus,
.backend-input-group > .backend-custom-file .backend-custom-file-input:focus ~ .backend-custom-file-label {
  z-index: 3;
}
.backend-input-group > .backend-custom-file .backend-custom-file-input:focus {
  z-index: 4;
}
.backend-input-group > .backend-form-control:not(:last-child),
.backend-input-group > .backend-custom-select:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.backend-input-group > .backend-form-control:not(:first-child),
.backend-input-group > .backend-custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.backend-input-group > .backend-custom-file {
  display: flex;
  align-items: center;
}
.backend-input-group > .backend-custom-file:not(:last-child) .backend-custom-file-label, .backend-input-group > .backend-custom-file:not(:last-child) .backend-custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.backend-input-group > .backend-custom-file:not(:first-child) .backend-custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.backend-input-group-prepend,
.backend-input-group-append {
  display: flex;
}
.backend-input-group-prepend .backend-btn,
.backend-input-group-append .backend-btn {
  position: relative;
  z-index: 2;
}
.backend-input-group-prepend .backend-btn:focus,
.backend-input-group-append .backend-btn:focus {
  z-index: 3;
}
.backend-input-group-prepend .backend-btn + .backend-btn,
.backend-input-group-prepend .backend-btn + .backend-input-group-text,
.backend-input-group-prepend .backend-input-group-text + .backend-input-group-text,
.backend-input-group-prepend .backend-input-group-text + .backend-btn,
.backend-input-group-append .backend-btn + .backend-btn,
.backend-input-group-append .backend-btn + .backend-input-group-text,
.backend-input-group-append .backend-input-group-text + .backend-input-group-text,
.backend-input-group-append .backend-input-group-text + .backend-btn {
  margin-left: -1px;
}

.backend-input-group-prepend {
  margin-right: -1px;
}

.backend-input-group-append {
  margin-left: -1px;
}

.backend-input-group-text {
  display: flex;
  align-items: center;
  padding: 0.625rem 0.75rem;
  margin-bottom: 0;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #adb5bd;
  text-align: center;
  white-space: nowrap;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
}
.backend-input-group-text input[type=radio],
.backend-input-group-text input[type=checkbox] {
  margin-top: 0;
}

.backend-input-group-lg > .backend-form-control:not(textarea),
.backend-input-group-lg > .backend-custom-select {
  height: calc(1.5em + 1.75rem + 2px);
}

.backend-input-group-lg > .backend-form-control,
.backend-input-group-lg > .backend-custom-select,
.backend-input-group-lg > .backend-input-group-prepend > .backend-input-group-text,
.backend-input-group-lg > .backend-input-group-append > .backend-input-group-text,
.backend-input-group-lg > .backend-input-group-prepend > .backend-btn,
.backend-input-group-lg > .backend-input-group-append > .backend-btn {
  padding: 0.875rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.4375rem;
}

.backend-input-group-sm > .backend-form-control:not(textarea),
.backend-input-group-sm > .backend-custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.backend-input-group-sm > .backend-form-control,
.backend-input-group-sm > .backend-custom-select,
.backend-input-group-sm > .backend-input-group-prepend > .backend-input-group-text,
.backend-input-group-sm > .backend-input-group-append > .backend-input-group-text,
.backend-input-group-sm > .backend-input-group-prepend > .backend-btn,
.backend-input-group-sm > .backend-input-group-append > .backend-btn {
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.backend-input-group-lg > .backend-custom-select,
.backend-input-group-sm > .backend-custom-select {
  padding-right: 1.75rem;
}

.backend-input-group > .backend-input-group-prepend > .backend-btn,
.backend-input-group > .backend-input-group-prepend > .backend-input-group-text,
.backend-input-group > .backend-input-group-append:not(:last-child) > .backend-btn,
.backend-input-group > .backend-input-group-append:not(:last-child) > .backend-input-group-text,
.backend-input-group > .backend-input-group-append:last-child > .backend-btn:not(:last-child):not(.dropdown-toggle),
.backend-input-group > .backend-input-group-append:last-child > .backend-input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.backend-input-group > .backend-input-group-append > .backend-btn,
.backend-input-group > .backend-input-group-append > .backend-input-group-text,
.backend-input-group > .backend-input-group-prepend:not(:first-child) > .backend-btn,
.backend-input-group > .backend-input-group-prepend:not(:first-child) > .backend-input-group-text,
.backend-input-group > .backend-input-group-prepend:first-child > .backend-btn:not(:first-child),
.backend-input-group > .backend-input-group-prepend:first-child > .backend-input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.backend-custom-control {
  position: relative;
  display: block;
  min-height: 1.5rem;
  padding-left: 2.75rem;
}

.backend-custom-control-inline {
  display: inline-flex;
  margin-right: 1rem;
}

.backend-custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.25rem;
  opacity: 0;
}
.backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  color: #fff;
  border-color: #0A48B3;
  background-color: #0A48B3;
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
}
.backend-custom-control-input:focus ~ .backend-custom-control-label::before {
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05), 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.backend-custom-control-input:focus:not(:checked) ~ .backend-custom-control-label::before {
  border-color: #0A48B3;
}
.backend-custom-control-input:not(:disabled):active ~ .backend-custom-control-label::before {
  color: #fff;
  background-color: #0A48B3;
  border-color: #0A48B3;
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
}
.backend-custom-control-input[disabled] ~ .backend-custom-control-label, .backend-custom-control-input:disabled ~ .backend-custom-control-label {
  color: #8898aa;
}
.backend-custom-control-input[disabled] ~ .backend-custom-control-label::before, .backend-custom-control-input:disabled ~ .backend-custom-control-label::before {
  background-color: #e9ecef;
}

.backend-custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}
.backend-custom-control-label::before {
  position: absolute;
  top: 0.25rem;
  left: -2.75rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: #dee2e6 solid 1px;
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
}
.backend-custom-control-label::after {
  position: absolute;
  top: 0.25rem;
  left: -2.75rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: no-repeat 50%/50% 50%;
}

.backend-custom-checkbox .backend-custom-control-label::before {
  border-radius: 0.25rem;
}
.backend-custom-checkbox .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}
.backend-custom-checkbox .backend-custom-control-input:indeterminate ~ .backend-custom-control-label::before {
  border-color: #0A48B3;
  background-color: #0A48B3;
  box-shadow: none;
}
.backend-custom-checkbox .backend-custom-control-input:indeterminate ~ .backend-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}
.backend-custom-checkbox .backend-custom-control-input:disabled:checked ~ .backend-custom-control-label::before {
  background-color: rgba(10, 72, 179, 0.5);
}
.backend-custom-checkbox .backend-custom-control-input:disabled:indeterminate ~ .backend-custom-control-label::before {
  background-color: rgba(10, 72, 179, 0.5);
}

.backend-custom-radio .backend-custom-control-label::before {
  border-radius: 50%;
}
.backend-custom-radio .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}
.backend-custom-radio .backend-custom-control-input:disabled:checked ~ .backend-custom-control-label::before {
  background-color: rgba(10, 72, 179, 0.5);
}

.backend-custom-switch {
  padding-left: 3.5rem;
}
.backend-custom-switch .backend-custom-control-label::before {
  left: -3.5rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}
.backend-custom-switch .backend-custom-control-label::after {
  top: calc(0.25rem + 2px);
  left: calc(-3.5rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #dee2e6;
  border-radius: 0.5rem;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-switch .backend-custom-control-label::after {
    transition: none;
  }
}
.backend-custom-switch .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-color: #fff;
  transform: translateX(0.75rem);
}
.backend-custom-switch .backend-custom-control-input:disabled:checked ~ .backend-custom-control-label::before {
  background-color: rgba(10, 72, 179, 0.5);
}

.backend-custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.25rem + 2px);
  padding: 0.625rem 1.75rem 0.625rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: #8898aa;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%2332325d' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") no-repeat right 0.75rem center/8px 10px;
  border: 1px solid #dee2e6;
  border-radius: 0.375rem;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075);
  appearance: none;
}
.backend-custom-select:focus {
  border-color: #0A48B3;
  outline: 0;
  box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.075), 0 0 0 0 #0a48b3;
}
.backend-custom-select:focus::-ms-value {
  color: #8898aa;
  background-color: #fff;
}
.backend-custom-select[multiple], .backend-custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}
.backend-custom-select:disabled {
  color: #8898aa;
  background-color: #e9ecef;
}
.backend-custom-select::-ms-expand {
  display: none;
}
.backend-custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #8898aa;
}

.backend-custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 0.75rem;
}

.backend-custom-select-lg {
  height: calc(1.5em + 1.75rem + 2px);
  padding-top: 0.875rem;
  padding-bottom: 0.875rem;
  padding-left: 1rem;
  font-size: 0.875rem;
}

.backend-custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 1.25rem + 2px);
  margin-bottom: 0;
}

.backend-custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 1.25rem + 2px);
  margin: 0;
  opacity: 0;
}
.backend-custom-file-input:focus ~ .backend-custom-file-label {
  border-color: #0A48B3;
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.backend-custom-file-input[disabled] ~ .backend-custom-file-label, .backend-custom-file-input:disabled ~ .backend-custom-file-label {
  background-color: #e9ecef;
}
.backend-custom-file-input:lang(en) ~ .backend-custom-file-label::after {
  content: "Browse";
}
.backend-custom-file-input ~ .backend-custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.backend-custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 1.25rem + 2px);
  padding: 0.625rem 0.75rem;
  font-weight: 400;
  line-height: 1.5;
  color: #8898aa;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.25rem;
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
}
.backend-custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 1.25rem);
  padding: 0.625rem 0.75rem;
  line-height: 1.5;
  color: #8898aa;
  content: "Browse";
  background-color: #fff;
  border-left: inherit;
  border-radius: 0 0.25rem 0.25rem 0;
}

.backend-custom-range {
  width: 100%;
  height: 1rem;
  padding: 0;
  background-color: transparent;
  appearance: none;
}
.backend-custom-range:focus {
  outline: none;
}
.backend-custom-range:focus::-webkit-slider-thumb {
  box-shadow: 0 0 0 1px #f8f9fe, 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.backend-custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #f8f9fe, 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.backend-custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #f8f9fe, 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.backend-custom-range::-moz-focus-outer {
  border: 0;
}
.backend-custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #0A48B3;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-range::-webkit-slider-thumb {
    transition: none;
  }
}
.backend-custom-range::-webkit-slider-thumb:active {
  background-color: #78a7f7;
}
.backend-custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.backend-custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #0A48B3;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-range::-moz-range-thumb {
    transition: none;
  }
}
.backend-custom-range::-moz-range-thumb:active {
  background-color: #78a7f7;
}
.backend-custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.backend-custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0;
  margin-left: 0;
  background-color: #0A48B3;
  border: 0;
  border-radius: 1rem;
  box-shadow: 0 0.1rem 0.25rem rgba(0, 0, 0, 0.1);
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-range::-ms-thumb {
    transition: none;
  }
}
.backend-custom-range::-ms-thumb:active {
  background-color: #78a7f7;
}
.backend-custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
  box-shadow: inset 0 0.25rem 0.25rem rgba(0, 0, 0, 0.1);
}
.backend-custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}
.backend-custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}
.backend-custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}
.backend-custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}
.backend-custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}
.backend-custom-range:disabled::-moz-range-track {
  cursor: default;
}
.backend-custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.backend-custom-control-label::before,
.backend-custom-file-label,
.backend-custom-select {
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-control-label::before,
.backend-custom-file-label,
.backend-custom-select {
    transition: none;
  }
}

.backend-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 0.375rem;
}
.backend-card > hr {
  margin-right: 0;
  margin-left: 0;
}
.backend-card > .list-group:first-child .list-group-item:first-child {
  border-top-left-radius: 0.375rem;
  border-top-right-radius: 0.375rem;
}
.backend-card > .list-group:last-child .list-group-item:last-child {
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.backend-card-body {
  flex: 1 1 auto;
  min-height: 1px;
  padding: 1.5rem;
}

.backend-card-title {
  margin-bottom: 1.25rem;
}

.backend-card-subtitle {
  margin-top: -0.625rem;
  margin-bottom: 0;
}

.backend-card-text:last-child {
  margin-bottom: 0;
}

.backend-card-link:hover {
  text-decoration: none;
}
.backend-card-link + .backend-card-link {
  margin-left: 1.5rem;
}

.backend-card-header {
  padding: 1.25rem 1.5rem;
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.backend-card-header:first-child {
  border-radius: calc(0.375rem - 1px) calc(0.375rem - 1px) 0 0;
}
.backend-card-header + .list-group .list-group-item:first-child {
  border-top: 0;
}

.backend-card-footer {
  padding: 1.25rem 1.5rem;
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
.backend-card-footer:last-child {
  border-radius: 0 0 calc(0.375rem - 1px) calc(0.375rem - 1px);
}

.backend-card-header-tabs {
  margin-right: -0.75rem;
  margin-bottom: -1.25rem;
  margin-left: -0.75rem;
  border-bottom: 0;
}

.backend-card-header-pills {
  margin-right: -0.75rem;
  margin-left: -0.75rem;
}

.backend-card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
}

.backend-card-img,
.backend-card-img-top,
.backend-card-img-bottom {
  flex-shrink: 0;
  width: 100%;
}

.backend-card-img,
.backend-card-img-top {
  border-top-left-radius: calc(0.375rem - 1px);
  border-top-right-radius: calc(0.375rem - 1px);
}

.backend-card-img,
.backend-card-img-bottom {
  border-bottom-right-radius: calc(0.375rem - 1px);
  border-bottom-left-radius: calc(0.375rem - 1px);
}

.backend-card-deck .backend-card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .backend-card-deck {
    display: flex;
    flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .backend-card-deck .backend-card {
    flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.backend-card-group > .backend-card {
  margin-bottom: 15px;
}
@media (min-width: 576px) {
  .backend-card-group {
    display: flex;
    flex-flow: row wrap;
  }
  .backend-card-group > .backend-card {
    flex: 1 0 0%;
    margin-bottom: 0;
  }
  .backend-card-group > .backend-card + .backend-card {
    margin-left: 0;
    border-left: 0;
  }
  .backend-card-group > .backend-card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .backend-card-group > .backend-card:not(:last-child) .backend-card-img-top,
.backend-card-group > .backend-card:not(:last-child) .backend-card-header {
    border-top-right-radius: 0;
  }
  .backend-card-group > .backend-card:not(:last-child) .backend-card-img-bottom,
.backend-card-group > .backend-card:not(:last-child) .backend-card-footer {
    border-bottom-right-radius: 0;
  }
  .backend-card-group > .backend-card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .backend-card-group > .backend-card:not(:first-child) .backend-card-img-top,
.backend-card-group > .backend-card:not(:first-child) .backend-card-header {
    border-top-left-radius: 0;
  }
  .backend-card-group > .backend-card:not(:first-child) .backend-card-img-bottom,
.backend-card-group > .backend-card:not(:first-child) .backend-card-footer {
    border-bottom-left-radius: 0;
  }
}

.backend-card-columns .backend-card {
  margin-bottom: 1.25rem;
}
@media (min-width: 576px) {
  .backend-card-columns {
    column-count: 3;
    column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .backend-card-columns .backend-card {
    display: inline-block;
    width: 100%;
  }
}

.accordion > .backend-card {
  overflow: hidden;
}
.accordion > .backend-card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.accordion > .backend-card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
.accordion > .backend-card > .backend-card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.backend-badge {
  display: inline-block;
  padding: 0.35rem 0.375rem;
  font-size: 66%;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.375rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .backend-badge {
    transition: none;
  }
}
a.backend-badge:hover, a.backend-badge:focus {
  text-decoration: none;
}

.backend-badge:empty {
  display: none;
}

.backend-btn .backend-badge {
  position: relative;
  top: -1px;
}

.backend-badge-pill {
  padding-right: 0.875em;
  padding-left: 0.875em;
  border-radius: 10rem;
}

.backend-badge-primary {
  color: #00338a;
  background-color: #6a9df7;
}
.backend-badge-primary[href]:hover, .backend-badge-primary[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #073179;
}

.backend-badge-secondary {
  color: #cfe3f1;
  background-color: white;
}
.backend-badge-secondary[href]:hover, .backend-badge-secondary[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #cadeeb;
}

.backend-badge-success {
  color: #1aae6f;
  background-color: #b0eed3;
}
.backend-badge-success[href]:hover, .backend-badge-success[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #229c68;
}

.backend-badge-info {
  color: #03acca;
  background-color: #aaedf9;
}
.backend-badge-info[href]:hover, .backend-badge-info[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #0c9cb7;
}

.backend-badge-warning {
  color: #ff3709;
  background-color: #fee6e0;
}
.backend-badge-warning[href]:hover, .backend-badge-warning[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #f93305;
}

.backend-badge-danger {
  color: #f80031;
  background-color: #fdd1da;
}
.backend-badge-danger[href]:hover, .backend-badge-danger[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #e30b36;
}

.backend-badge-light {
  color: #879cb0;
  background-color: white;
}
.backend-badge-light[href]:hover, .backend-badge-light[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #8b96a2;
}

.backend-badge-dark {
  color: #090c0e;
  background-color: #6a7783;
}
.backend-badge-dark[href]:hover, .backend-badge-dark[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #060607;
}

.backend-badge-default {
  color: #091428;
  background-color: #4172c6;
}
.backend-badge-default[href]:hover, .backend-badge-default[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: #09111e;
}

.backend-badge-white {
  color: #e8e3e3;
  background-color: white;
}
.backend-badge-white[href]:hover, .backend-badge-white[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #e0e0e0;
}

.backend-badge-neutral {
  color: #e8e3e3;
  background-color: white;
}
.backend-badge-neutral[href]:hover, .backend-badge-neutral[href]:focus {
  color: #212529;
  text-decoration: none;
  background-color: #e0e0e0;
}

.backend-badge-darker {
  color: black;
  background-color: #49525a;
}
.backend-badge-darker[href]:hover, .backend-badge-darker[href]:focus {
  color: #fff;
  text-decoration: none;
  background-color: black;
}

.backend-modal-open {
  overflow: hidden;
}
.backend-modal-open .backend-modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.backend-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.backend-modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}
.backend-modal.backend-fade .backend-modal-dialog {
  transition: transform 0.3s ease-out;
  transform: translate(0, -50px);
}
@media (prefers-reduced-motion: reduce) {
  .backend-modal.backend-fade .backend-modal-dialog {
    transition: none;
  }
}
.backend-modal.show .backend-modal-dialog {
  transform: none;
}
.backend-modal.backend-modal-static .backend-modal-dialog {
  transform: scale(1.02);
}

.backend-modal-dialog-scrollable {
  display: flex;
  max-height: calc(100% - 1rem);
}
.backend-modal-dialog-scrollable .backend-modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}
.backend-modal-dialog-scrollable .backend-modal-header,
.backend-modal-dialog-scrollable .backend-modal-footer {
  flex-shrink: 0;
}
.backend-modal-dialog-scrollable .backend-modal-body {
  overflow-y: auto;
}

.backend-modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 1rem);
}
.backend-modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  content: "";
}
.backend-modal-dialog-centered.backend-modal-dialog-scrollable {
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.backend-modal-dialog-centered.backend-modal-dialog-scrollable .backend-modal-content {
  max-height: none;
}
.backend-modal-dialog-centered.backend-modal-dialog-scrollable::before {
  content: none;
}

.backend-modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 0 solid rgba(0, 0, 0, 0.2);
  border-radius: 0.4375rem;
  box-shadow: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17);
  outline: 0;
}

.backend-modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.backend-modal-backdrop.backend-fade {
  opacity: 0;
}
.backend-modal-backdrop.show {
  opacity: 0.16;
}

.backend-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 0 solid #e9ecef;
  border-top-left-radius: 0.4375rem;
  border-top-right-radius: 0.4375rem;
}
.backend-modal-header .close {
  padding: 1.25rem;
  margin: -1rem -1rem -1rem auto;
}

.backend-modal-title {
  margin-bottom: 0;
  line-height: 1.1;
}

.backend-modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1.5rem;
}

.backend-modal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 1.25rem;
  border-top: 0 solid #e9ecef;
  border-bottom-right-radius: 0.4375rem;
  border-bottom-left-radius: 0.4375rem;
}
.backend-modal-footer > * {
  margin: 0.25rem;
}

.backend-modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .backend-modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }

  .backend-modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .backend-modal-dialog-scrollable .backend-modal-content {
    max-height: calc(100vh - 3.5rem);
  }

  .backend-modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .backend-modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
  }

  .backend-modal-content {
    box-shadow: 0 15px 35px rgba(50, 50, 93, 0.2), 0 5px 15px rgba(0, 0, 0, 0.17);
  }

  .backend-modal-sm {
    max-width: 380px;
  }
}
@media (min-width: 992px) {
  .backend-modal-lg,
.backend-modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .backend-modal-xl {
    max-width: 1140px;
  }
}

.backend-bg-primary {
  background-color: #0A48B3 !important;
}

a.backend-bg-primary:hover, a.backend-bg-primary:focus,
button.backend-bg-primary:hover,
button.backend-bg-primary:focus {
  background-color: #073583 !important;
}

.backend-bg-secondary {
  background-color: #f7fafc !important;
}

a.backend-bg-secondary:hover, a.backend-bg-secondary:focus,
button.backend-bg-secondary:hover,
button.backend-bg-secondary:focus {
  background-color: #d2e3ee !important;
}

.backend-bg-success {
  background-color: #2dce89 !important;
}

a.backend-bg-success:hover, a.backend-bg-success:focus,
button.backend-bg-success:hover,
button.backend-bg-success:focus {
  background-color: #24a46d !important;
}

.backend-bg-info {
  background-color: #11cdef !important;
}

a.backend-bg-info:hover, a.backend-bg-info:focus,
button.backend-bg-info:hover,
button.backend-bg-info:focus {
  background-color: #0da5c0 !important;
}

.backend-bg-warning {
  background-color: #fb6340 !important;
}

a.backend-bg-warning:hover, a.backend-bg-warning:focus,
button.backend-bg-warning:hover,
button.backend-bg-warning:focus {
  background-color: #fa3a0e !important;
}

.backend-bg-danger {
  background-color: #f5365c !important;
}

a.backend-bg-danger:hover, a.backend-bg-danger:focus,
button.backend-bg-danger:hover,
button.backend-bg-danger:focus {
  background-color: #ec0c38 !important;
}

.backend-bg-light {
  background-color: #adb5bd !important;
}

a.backend-bg-light:hover, a.backend-bg-light:focus,
button.backend-bg-light:hover,
button.backend-bg-light:focus {
  background-color: #919ca6 !important;
}

.backend-bg-dark {
  background-color: #212529 !important;
}

a.backend-bg-dark:hover, a.backend-bg-dark:focus,
button.backend-bg-dark:hover,
button.backend-bg-dark:focus {
  background-color: #0a0c0d !important;
}

.backend-bg-default {
  background-color: #172b4d !important;
}

a.backend-bg-default:hover, a.backend-bg-default:focus,
button.backend-bg-default:hover,
button.backend-bg-default:focus {
  background-color: #0b1526 !important;
}

.backend-bg-white {
  background-color: #fff !important;
}

a.backend-bg-white:hover, a.backend-bg-white:focus,
button.backend-bg-white:hover,
button.backend-bg-white:focus {
  background-color: #e6e6e6 !important;
}

.backend-bg-neutral {
  background-color: #fff !important;
}

a.backend-bg-neutral:hover, a.backend-bg-neutral:focus,
button.backend-bg-neutral:hover,
button.backend-bg-neutral:focus {
  background-color: #e6e6e6 !important;
}

.backend-bg-darker {
  background-color: black !important;
}

a.backend-bg-darker:hover, a.backend-bg-darker:focus,
button.backend-bg-darker:hover,
button.backend-bg-darker:focus {
  background-color: black !important;
}

.backend-bg-white {
  background-color: #fff !important;
}

.backend-bg-transparent {
  background-color: transparent !important;
}
.backend-text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.backend-text-justify {
  text-align: justify !important;
}

.backend-text-wrap {
  white-space: normal !important;
}

.backend-text-nowrap {
  white-space: nowrap !important;
}

.backend-text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.backend-text-left {
  text-align: left !important;
}

.backend-text-right {
  text-align: right !important;
}

.backend-text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .backend-text-sm-left {
    text-align: left !important;
  }

  .backend-text-sm-right {
    text-align: right !important;
  }

  .backend-text-sm-center {
    text-align: center !important;
  }
}
@media (min-width: 768px) {
  .backend-text-md-left {
    text-align: left !important;
  }

  .backend-text-md-right {
    text-align: right !important;
  }

  .backend-text-md-center {
    text-align: center !important;
  }
}
@media (min-width: 992px) {
  .backend-text-lg-left {
    text-align: left !important;
  }

  .backend-text-lg-right {
    text-align: right !important;
  }

  .backend-text-lg-center {
    text-align: center !important;
  }
}
@media (min-width: 1200px) {
  .backend-text-xl-left {
    text-align: left !important;
  }

  .backend-text-xl-right {
    text-align: right !important;
  }

  .backend-text-xl-center {
    text-align: center !important;
  }
}
.backend-text-lowercase {
  text-transform: lowercase !important;
}

.backend-text-uppercase {
  text-transform: uppercase !important;
}

.backend-text-capitalize {
  text-transform: capitalize !important;
}

.backend-text-white {
  color: #fff !important;
}

.backend-text-primary {
  color: #0A48B3 !important;
}

a.backend-text-primary:hover, a.backend-text-primary:focus {
  color: #062b6b !important;
}

.backend-text-secondary {
  color: #f7fafc !important;
}

a.backend-text-secondary:hover, a.backend-text-secondary:focus {
  color: #bfd7e7 !important;
}

.backend-text-success {
  color: #2dce89 !important;
}

a.backend-text-success:hover, a.backend-text-success:focus {
  color: #1f8f5f !important;
}

.backend-text-info {
  color: #11cdef !important;
}

a.backend-text-info:hover, a.backend-text-info:focus {
  color: #0b90a8 !important;
}

.backend-text-warning {
  color: #fb6340 !important;
}

a.backend-text-warning:hover, a.backend-text-warning:focus {
  color: #ea3005 !important;
}

.backend-text-danger {
  color: #f5365c !important;
}

a.backend-text-danger:hover, a.backend-text-danger:focus {
  color: #d40b33 !important;
}

.backend-text-light {
  color: #adb5bd !important;
}

a.backend-text-light:hover, a.backend-text-light:focus {
  color: #838f9b !important;
}

.backend-text-dark {
  color: #212529 !important;
}

a.backend-text-dark:hover, a.backend-text-dark:focus {
  color: black !important;
}

.backend-text-default {
  color: #172b4d !important;
}

a.backend-text-default:hover, a.backend-text-default:focus {
  color: #050a12 !important;
}

.backend-text-white {
  color: #fff !important;
}

a.backend-text-white:hover, a.backend-text-white:focus {
  color: #d9d9d9 !important;
}

.backend-text-neutral {
  color: #fff !important;
}

a.backend-text-neutral:hover, a.backend-text-neutral:focus {
  color: #d9d9d9 !important;
}

.backend-text-darker {
  color: black !important;
}

a.backend-text-darker:hover, a.backend-text-darker:focus {
  color: black !important;
}

.backend-text-body {
  color: #525f7f !important;
}

.backend-text-muted {
  color: #8898aa !important;
}

.backend-text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.backend-text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.backend-text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.backend-text-decoration-none {
  text-decoration: none !important;
}

.backend-text-break {
  word-break: break-word !important;
  overflow-wrap: break-word !important;
}

.backend-text-reset {
  color: inherit !important;
}

.alert-icon i.backend-ni {
  position: relative;
  top: 2px;
}

.alert-notify .alert-icon.backend-ni {
  position: relative;
  top: 4px;
}

.backend-badge {
  text-transform: uppercase;
}
.backend-badge a {
  color: #fff;
}

.backend-badge-md {
  padding: 0.65em 1em;
}

.backend-badge-lg {
  padding: 0.85em 1.375em;
}

.backend-badge-inline {
  margin-right: 0.625rem;
}
.backend-badge-inline + span {
  top: 2px;
  position: relative;
}
.backend-badge-inline + span > a {
  text-decoration: underline;
}

.backend-badge-default {
  color: #fff;
}

.backend-badge-secondary {
  background-color: #f7fafc;
  color: #212529;
}

.backend-btn .backend-badge:not(:first-child) {
  margin-left: 0.5rem;
}
.backend-btn .backend-badge:not(:last-child) {
  margin-right: 0.5rem;
}

.backend-badge-circle {
  text-align: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0 !important;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
}
.backend-badge-circle.backend-badge-md {
  width: 1.5rem;
  height: 1.5rem;
}
.backend-badge-circle.backend-badge-lg {
  width: 2rem;
  height: 2rem;
}

.backend-badge-dot {
  padding-left: 0;
  padding-right: 0;
  background: transparent;
  font-weight: 400;
  font-size: 0.875rem;
  text-transform: none;
}
.backend-badge-dot strong {
  color: #32325d;
}
.backend-badge-dot i {
  display: inline-block;
  vertical-align: middle;
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  margin-right: 0.375rem;
}
.backend-badge-dot.backend-badge-md i {
  width: 0.5rem;
  height: 0.5rem;
}
.backend-badge-dot.backend-badge-lg i {
  width: 0.625rem;
  height: 0.625rem;
}

.backend-btn .backend-badge-floating {
  position: absolute;
  top: -50%;
  transform: translateY(50%);
  border: 3px solid;
}
.backend-btn .backend-badge-floating.backend-badge:not(.backend-badge-circle) {
  transform: translate(147%, 50%);
}

.backend-btn {
  position: relative;
  text-transform: none;
  transition: all 0.15s ease;
  letter-spacing: 0.025em;
  font-size: 0.875rem;
  will-change: transform;
}
.backend-btn:hover {
  box-shadow: 0 7px 14px rgba(50, 50, 93, 0.1), 0 3px 6px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.backend-btn:not(:last-child) {
  margin-right: 0.5rem;
}
.backend-btn i:not(:first-child),
.backend-btn svg:not(:first-child) {
  margin-left: 0.5rem;
}
.backend-btn i:not(:last-child),
.backend-btn svg:not(:last-child) {
  margin-right: 0.5rem;
}

.backend-btn-group .backend-btn,
.backend-input-group .backend-btn {
  margin-right: 0;
  transform: translateY(0);
}

.backend-btn-sm, .backend-btn-group-sm > .backend-btn {
  font-size: 0.75rem;
}

.backend-btn-lg, .backend-btn-group-lg > .backend-btn {
  font-size: 0.875rem;
}


.backend-btn-outline-secondary {
  color: #4385b1;
}

.backend-btn-inner--icon i:not(.fas):not(.fab) {
  position: relative;
  top: 2px;
}

.backend-btn-link {
  font-weight: 600;
  box-shadow: none;
}
.backend-btn-link:hover {
  box-shadow: none;
  transform: none;
}

.backend-btn-neutral {
  color: #0A48B3;
}

.backend-btn-facebook {
  color: #fff;
  background-color: #3b5999;
  border-color: #3b5999;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-facebook:hover {
  color: #fff;
  background-color: #3b5999;
  border-color: #3b5999;
}
.backend-btn-facebook:focus, .backend-btn-facebook.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(59, 89, 153, 0.5);
}
.backend-btn-facebook.disabled, .backend-btn-facebook:disabled {
  color: #fff;
  background-color: #3b5999;
  border-color: #3b5999;
}
.backend-btn-facebook:not(:disabled):not(.disabled):active, .backend-btn-facebook:not(:disabled):not(.disabled).active, .show > .backend-btn-facebook.dropdown-toggle {
  color: #fff;
  background-color: #2d4474;
  border-color: #3b5999;
}
.backend-btn-facebook:not(:disabled):not(.disabled):active:focus, .backend-btn-facebook:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-facebook.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(59, 89, 153, 0.5);
}

.backend-btn-twitter {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-twitter:hover {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.backend-btn-twitter:focus, .backend-btn-twitter.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(29, 161, 242, 0.5);
}
.backend-btn-twitter.disabled, .backend-btn-twitter:disabled {
  color: #fff;
  background-color: #1da1f2;
  border-color: #1da1f2;
}
.backend-btn-twitter:not(:disabled):not(.disabled):active, .backend-btn-twitter:not(:disabled):not(.disabled).active, .show > .backend-btn-twitter.dropdown-toggle {
  color: #fff;
  background-color: #0c85d0;
  border-color: #1da1f2;
}
.backend-btn-twitter:not(:disabled):not(.disabled):active:focus, .backend-btn-twitter:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-twitter.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(29, 161, 242, 0.5);
}

.backend-btn-google-plus {
  color: #fff;
  background-color: #dd4b39;
  border-color: #dd4b39;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-google-plus:hover {
  color: #fff;
  background-color: #dd4b39;
  border-color: #dd4b39;
}
.backend-btn-google-plus:focus, .backend-btn-google-plus.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(221, 75, 57, 0.5);
}
.backend-btn-google-plus.disabled, .backend-btn-google-plus:disabled {
  color: #fff;
  background-color: #dd4b39;
  border-color: #dd4b39;
}
.backend-btn-google-plus:not(:disabled):not(.disabled):active, .backend-btn-google-plus:not(:disabled):not(.disabled).active, .show > .backend-btn-google-plus.dropdown-toggle {
  color: #fff;
  background-color: #c23321;
  border-color: #dd4b39;
}
.backend-btn-google-plus:not(:disabled):not(.disabled):active:focus, .backend-btn-google-plus:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-google-plus.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(221, 75, 57, 0.5);
}

.backend-btn-instagram {
  color: #fff;
  background-color: #e4405f;
  border-color: #e4405f;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-instagram:hover {
  color: #fff;
  background-color: #e4405f;
  border-color: #e4405f;
}
.backend-btn-instagram:focus, .backend-btn-instagram.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(228, 64, 95, 0.5);
}
.backend-btn-instagram.disabled, .backend-btn-instagram:disabled {
  color: #fff;
  background-color: #e4405f;
  border-color: #e4405f;
}
.backend-btn-instagram:not(:disabled):not(.disabled):active, .backend-btn-instagram:not(:disabled):not(.disabled).active, .show > .backend-btn-instagram.dropdown-toggle {
  color: #fff;
  background-color: #d31e40;
  border-color: #e4405f;
}
.backend-btn-instagram:not(:disabled):not(.disabled):active:focus, .backend-btn-instagram:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-instagram.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(228, 64, 95, 0.5);
}

.backend-btn-pinterest {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-pinterest:hover {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
}
.backend-btn-pinterest:focus, .backend-btn-pinterest.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(189, 8, 28, 0.5);
}
.backend-btn-pinterest.disabled, .backend-btn-pinterest:disabled {
  color: #fff;
  background-color: #bd081c;
  border-color: #bd081c;
}
.backend-btn-pinterest:not(:disabled):not(.disabled):active, .backend-btn-pinterest:not(:disabled):not(.disabled).active, .show > .backend-btn-pinterest.dropdown-toggle {
  color: #fff;
  background-color: #8c0615;
  border-color: #bd081c;
}
.backend-btn-pinterest:not(:disabled):not(.disabled):active:focus, .backend-btn-pinterest:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-pinterest.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(189, 8, 28, 0.5);
}

.backend-btn-youtube {
  color: #fff;
  background-color: #cd201f;
  border-color: #cd201f;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-youtube:hover {
  color: #fff;
  background-color: #cd201f;
  border-color: #cd201f;
}
.backend-btn-youtube:focus, .backend-btn-youtube.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(205, 32, 31, 0.5);
}
.backend-btn-youtube.disabled, .backend-btn-youtube:disabled {
  color: #fff;
  background-color: #cd201f;
  border-color: #cd201f;
}
.backend-btn-youtube:not(:disabled):not(.disabled):active, .backend-btn-youtube:not(:disabled):not(.disabled).active, .show > .backend-btn-youtube.dropdown-toggle {
  color: #fff;
  background-color: #a11918;
  border-color: #cd201f;
}
.backend-btn-youtube:not(:disabled):not(.disabled):active:focus, .backend-btn-youtube:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-youtube.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(205, 32, 31, 0.5);
}

.backend-btn-slack {
  color: #fff;
  background-color: #3aaf85;
  border-color: #3aaf85;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-slack:hover {
  color: #fff;
  background-color: #3aaf85;
  border-color: #3aaf85;
}
.backend-btn-slack:focus, .backend-btn-slack.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(58, 175, 133, 0.5);
}
.backend-btn-slack.disabled, .backend-btn-slack:disabled {
  color: #fff;
  background-color: #3aaf85;
  border-color: #3aaf85;
}
.backend-btn-slack:not(:disabled):not(.disabled):active, .backend-btn-slack:not(:disabled):not(.disabled).active, .show > .backend-btn-slack.dropdown-toggle {
  color: #fff;
  background-color: #2d8968;
  border-color: #3aaf85;
}
.backend-btn-slack:not(:disabled):not(.disabled):active:focus, .backend-btn-slack:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-slack.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(58, 175, 133, 0.5);
}

.backend-btn-dribbble {
  color: #fff;
  background-color: #ea4c89;
  border-color: #ea4c89;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-dribbble:hover {
  color: #fff;
  background-color: #ea4c89;
  border-color: #ea4c89;
}
.backend-btn-dribbble:focus, .backend-btn-dribbble.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(234, 76, 137, 0.5);
}
.backend-btn-dribbble.disabled, .backend-btn-dribbble:disabled {
  color: #fff;
  background-color: #ea4c89;
  border-color: #ea4c89;
}
.backend-btn-dribbble:not(:disabled):not(.disabled):active, .backend-btn-dribbble:not(:disabled):not(.disabled).active, .show > .backend-btn-dribbble.dropdown-toggle {
  color: #fff;
  background-color: #e51e6b;
  border-color: #ea4c89;
}
.backend-btn-dribbble:not(:disabled):not(.disabled):active:focus, .backend-btn-dribbble:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-dribbble.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(234, 76, 137, 0.5);
}

.backend-btn-github {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-github:hover {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}
.backend-btn-github:focus, .backend-btn-github.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(34, 34, 34, 0.5);
}
.backend-btn-github.disabled, .backend-btn-github:disabled {
  color: #fff;
  background-color: #222222;
  border-color: #222222;
}
.backend-btn-github:not(:disabled):not(.disabled):active, .backend-btn-github:not(:disabled):not(.disabled).active, .show > .backend-btn-github.dropdown-toggle {
  color: #fff;
  background-color: #090909;
  border-color: #222222;
}
.backend-btn-github:not(:disabled):not(.disabled):active:focus, .backend-btn-github:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-github.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(34, 34, 34, 0.5);
}

.backend-btn-vimeo {
  color: #fff;
  background-color: #04A0F0;
  border-color: #04A0F0;
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-btn-vimeo:hover {
  color: #fff;
  background-color: #04a0f0;
  border-color: #04a0f0;
}
.backend-btn-vimeo:focus, .backend-btn-vimeo.focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08), 0 0 0 0 rgba(4, 160, 240, 0.5);
}
.backend-btn-vimeo.disabled, .backend-btn-vimeo:disabled {
  color: #fff;
  background-color: #04A0F0;
  border-color: #04A0F0;
}
.backend-btn-vimeo:not(:disabled):not(.disabled):active, .backend-btn-vimeo:not(:disabled):not(.disabled).active, .show > .backend-btn-vimeo.dropdown-toggle {
  color: #fff;
  background-color: #037fbe;
  border-color: #04a0f0;
}
.backend-btn-vimeo:not(:disabled):not(.disabled):active:focus, .backend-btn-vimeo:not(:disabled):not(.disabled).active:focus, .show > .backend-btn-vimeo.dropdown-toggle:focus {
  box-shadow: none, 0 0 0 0 rgba(4, 160, 240, 0.5);
}

.backend-btn-group .backend-btn {
  box-shadow: none;
}

[data-toggle=buttons]:not(.backend-btn-group-colors) > .backend-btn {
  background-color: #f6f9fc;
  cursor: pointer;
  box-shadow: none;
  border: 0;
  margin: 0;
}
[data-toggle=buttons]:not(.backend-btn-group-colors) > .backend-btn:not(.active) {
  color: #525f7f;
}
[data-toggle=buttons]:not(.backend-btn-group-colors) > .backend-btn.active {
  background-color: #0A48B3;
  color: #fff;
}

.backend-btn-group-colors > .backend-btn {
  box-shadow: none;
  border-radius: 50% !important;
  width: 30px;
  height: 30px;
  padding: 0;
  margin-right: 0.5rem;
  margin-bottom: 0.25rem;
  position: relative;
}
.backend-btn-group-colors > .backend-btn:not([class*=bg-]) {
  border-color: #f6f9fc !important;
}
.backend-btn-group-colors > .backend-btn:before {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  line-height: 28px;
  color: #fff;
  transform: scale(0);
  opacity: 0;
  content: "";
  font-family: NucleoIcons, sans-serif;
  font-size: 14px;
  transition: transform 200ms, opacity 200ms;
}
@media (prefers-reduced-motion: reduce) {
  .backend-btn-group-colors > .backend-btn:before {
    transition: none;
  }
}
.backend-btn-group-colors > .backend-btn.backend-btn:not([class*=bg-]) {
  border: 1px solid #cfd5db;
}
.backend-btn-group-colors > .backend-btn.backend-btn:not([class*=bg-]):before {
  color: #525f7f;
}
.backend-btn-group-colors > .backend-btn.active:before {
  transform: scale(1);
  opacity: 1;
}

.backend-btn-icon .backend-btn-inner--icon img {
  width: 20px;
}
.backend-btn-icon .backend-btn-inner--text:not(:first-child) {
  margin-left: 0.75em;
}
.backend-btn-icon .backend-btn-inner--text:not(:last-child) {
  margin-right: 0.75em;
}

.backend-btn-icon-only {
  width: 2.375rem;
  height: 2.375rem;
  padding: 0;
}

a.backend-btn-icon-only {
  line-height: 2.5;
}

.backend-btn-icon-only.backend-btn-sm, .backend-btn-group-sm > .backend-btn-icon-only.backend-btn {
  width: 2rem;
  height: 2rem;
}

.backend-btn-icon-clipboard {
  margin: 0;
  padding: 1.5rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.25;
  color: #32325d;
  background-color: #f6f9fc;
  border-radius: 0.375rem;
  border: 0;
  text-align: left;
  font-family: inherit;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  -moz-appearance: none;
  cursor: pointer;
  width: 100%;
  margin: 0.5rem 0;
}
.backend-btn-icon-clipboard:hover {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.1) 0 0 0 1px, rgba(0, 0, 0, 0.1) 0 4px 16px;
}
.backend-btn-icon-clipboard > div {
  align-items: center;
  display: flex;
}
.backend-btn-icon-clipboard i {
  box-sizing: content-box;
  color: #0A48B3;
  vertical-align: middle;
  font-size: 1.5rem;
}
.backend-btn-icon-clipboard span {
  display: inline-block;
  font-size: 0.875rem;
  line-height: 1.5;
  margin-left: 16px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  vertical-align: middle;
}

.backend-card {
  margin-bottom: 30px;
  box-shadow: 0 0 2rem 0 rgba(136, 152, 170, 0.15);
  border: 0;
}

.backend-card-translucent {
  background-color: rgba(18, 91, 152, 0.08);
}

.backend-card-deck .backend-card {
  margin-bottom: 30px;
}

.backend-card.shadow {
  border: 0 !important;
}

@media (min-width: 576px) {
  .backend-card-columns {
    column-count: 1;
  }
}
@media (min-width: 768px) {
  .backend-card-columns {
    column-count: 2;
  }
}
@media (min-width: 1200px) {
  .backend-card-columns {
    column-count: 3;
    column-gap: 1.25rem;
  }
}

.backend-card-lift--hover:hover {
  transform: translateY(-20px);
  transition: all 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .backend-card-lift--hover:hover {
    transition: none;
  }
}

.backend-card-blockquote {
  padding: 2rem;
  position: relative;
}
.backend-card-blockquote .svg-bg {
  display: block;
  width: 100%;
  height: 95px;
  position: absolute;
  top: -94px;
  left: 0;
}

.backend-card-serial-number {
  display: flex;
  justify-content: space-between;
  font-size: 1.625rem;
}
.backend-card-serial-number > div:not(:last-child) {
  display: flex;
  flex: 1 1 auto;
}
.backend-card-serial-number > div:not(:last-child):after {
  content: "-";
  flex: 1 1 auto;
  text-align: center;
  position: relative;
  left: -2px;
}
@media (max-width: 575.98px) {
  .backend-card-serial-number {
    font-size: 1.0625rem;
  }
}

.backend-card-pricing .backend-card-header {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.backend-card-pricing .list-unstyled li {
  padding: 0.5rem 0;
  color: #8898aa;
}

.backend-card-pricing.popular {
  z-index: 1;
  border: 3px solid #0A48B3 !important;
}

@media (min-width: 768px) {
  .backend-card-pricing.zoom-in {
    z-index: 1;
    transform: scale(1.1);
  }
}
.backend-card-profile-image {
  position: relative;
}
.backend-card-profile-image img {
  max-width: 140px;
  border-radius: 0.375rem;
  border: 3px solid #fff;
  transform: translate(-50%, -50%) scale(1);
  position: absolute;
  left: 50%;
  transition: all 0.15s ease;
}
.backend-card-profile-image img:hover {
  transform: translate(-50%, -50%) scale(1.03);
}

.backend-card-profile-stats {
  padding: 1rem 0;
}
.backend-card-profile-stats > div {
  text-align: center;
  margin-right: 1rem;
  padding: 0.875rem;
}
.backend-card-profile-stats > div:last-child {
  margin-right: 0;
}
.backend-card-profile-stats > div .heading {
  font-size: 1.1rem;
  font-weight: bold;
  display: block;
}
.backend-card-profile-stats > div .description {
  font-size: 0.875rem;
  color: #adb5bd;
}

.backend-card-profile-actions {
  padding: 0.875rem;
}

.backend-card-stats .backend-card-body {
  padding: 1rem 1.5rem;
}
.backend-card-stats .backend-card-status-bullet {
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
}

.accordion .backend-card-header {
  position: relative;
  cursor: pointer;
}
.accordion .backend-card-header:after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  font: normal normal normal 14px/1 NucleoIcons;
  line-height: 0;
  transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (prefers-reduced-motion: reduce) {
  .accordion .backend-card-header:after {
    transition: none;
  }
}
.accordion .backend-card-header[aria-expanded=false]:after {
  content: "";
}
.accordion .backend-card-header[aria-expanded=true]:after {
  transform: rotate(180deg);
}
.accordion .backend-card-header[aria-expanded=true] .heading {
  color: #0A48B3;
}

.backend-custom-checkbox .backend-custom-control-input ~ .backend-custom-control-label {
  cursor: pointer;
  font-size: 0.875rem;
}
.backend-custom-checkbox .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #0A48B3;
}
.backend-custom-checkbox .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/></svg>");
}
.backend-custom-checkbox .backend-custom-control-input:disabled ~ .backend-custom-control-label::before {
  border-color: #e9ecef;
}
.backend-custom-checkbox .backend-custom-control-input:disabled:checked::before {
  border-color: rgba(10, 72, 179, 0.5);
}

.backend-custom-control-label::before {
  border: 1px solid #dee2e6;
  transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  top: 0.25rem;
  left: -1.75rem;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-control-label::before {
    transition: none;
  }
}
.backend-custom-control-label::after {
  top: 0.25rem;
  left: -1.75rem;
}
.backend-custom-control-label span {
  position: relative;
  top: 2px;
}

.backend-custom-control-label {
  margin-bottom: 0;
}

.backend-custom-control-alternative .backend-custom-control-label::before {
  border: 0;
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
}
.backend-custom-control-alternative .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}
.backend-custom-control-alternative .backend-custom-control-input:active ~ .backend-custom-control-label::before, .backend-custom-control-alternative .backend-custom-control-input:focus ~ .backend-custom-control-label::before {
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
}

.backend-custom-checkbox .backend-custom-control-input ~ .backend-custom-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  height: 1rem;
}
.backend-custom-checkbox .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #0A48B3;
}
.backend-custom-checkbox .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'><path fill='#fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/></svg>");
}
.backend-custom-checkbox .backend-custom-control-input:disabled ~ .backend-custom-control-label::before {
  border-color: #e9ecef;
}
.backend-custom-checkbox .backend-custom-control-input:disabled:checked::before {
  border-color: rgba(10, 72, 179, 0.5);
}

.backend-custom-checkbox-primary .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #0A48B3;
  background-color: #0A48B3;
}
.backend-custom-checkbox-primary .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #0A48B3;
}

.backend-custom-checkbox-secondary .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #f7fafc;
  background-color: #f7fafc;
}
.backend-custom-checkbox-secondary .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #f7fafc;
}

.backend-custom-checkbox-success .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #2dce89;
  background-color: #2dce89;
}
.backend-custom-checkbox-success .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #2dce89;
}

.backend-custom-checkbox-info .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #11cdef;
  background-color: #11cdef;
}
.backend-custom-checkbox-info .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #11cdef;
}

.backend-custom-checkbox-warning .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #fb6340;
  background-color: #fb6340;
}
.backend-custom-checkbox-warning .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #fb6340;
}

.backend-custom-checkbox-danger .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #f5365c;
  background-color: #f5365c;
}
.backend-custom-checkbox-danger .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #f5365c;
}

.backend-custom-checkbox-light .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #adb5bd;
  background-color: #adb5bd;
}
.backend-custom-checkbox-light .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #adb5bd;
}

.backend-custom-checkbox-dark .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #212529;
  background-color: #212529;
}
.backend-custom-checkbox-dark .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #212529;
}

.backend-custom-checkbox-default .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #172b4d;
  background-color: #172b4d;
}
.backend-custom-checkbox-default .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #172b4d;
}

.backend-custom-checkbox-white .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #fff;
  background-color: #fff;
}
.backend-custom-checkbox-white .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #fff;
}

.backend-custom-checkbox-neutral .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #fff;
  background-color: #fff;
}
.backend-custom-checkbox-neutral .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: #fff;
}

.backend-custom-checkbox-darker .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: black;
  background-color: black;
}
.backend-custom-checkbox-darker .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: black;
}

.backend-custom-radio .backend-custom-control-input ~ .backend-custom-control-label {
  cursor: pointer;
  font-size: 0.875rem;
  height: 1rem;
}
.backend-custom-radio .backend-custom-control-input:checked ~ .backend-custom-control-label::before {
  border-color: #0A48B3;
}
.backend-custom-radio .backend-custom-control-input:checked ~ .backend-custom-control-label::after {
  background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'><circle r='3' fill='#fff'/></svg>");
}
.backend-custom-radio .backend-custom-control-input:disabled ~ .backend-custom-control-label::before {
  border-color: #e9ecef;
}
.backend-custom-radio .backend-custom-control-input:disabled:checked::before {
  border-color: rgba(10, 72, 179, 0.5);
}

.backend-custom-toggle {
  position: relative;
  display: inherit;
  width: 52px;
  height: 1.5rem;
  margin: 0;
  display: inline-block;
}
.backend-custom-toggle input {
  display: none;
}
.backend-custom-toggle input:checked + .backend-custom-toggle-slider {
  border: 1px solid #0A48B3;
}
.backend-custom-toggle input:checked + .backend-custom-toggle-slider:before {
  background: #0A48B3;
  transform: translateX(28px);
}
.backend-custom-toggle input:disabled + .backend-custom-toggle-slider {
  border: 1px solid #e9ecef;
}
.backend-custom-toggle input:disabled:checked + .backend-custom-toggle-slider {
  border: 1px solid #e9ecef;
}
.backend-custom-toggle input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #0d5be3;
}

.backend-custom-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 1px solid #ced4da;
  border-radius: 34px !important;
  background-color: transparent;
}
.backend-custom-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  border-radius: 50% !important;
  background-color: #e9ecef;
  transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.backend-custom-toggle-wrapper .backend-custom-toggle + .backend-custom-toggle {
  margin-left: 1rem !important;
}

.backend-custom-toggle input:checked + .backend-custom-toggle-slider:after {
  content: attr(data-label-on);
  color: #0A48B3;
  right: auto;
  left: 0;
}

.backend-custom-toggle-slider:after {
  color: #ced4da;
  content: attr(data-label-off);
  display: block;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.75rem;
  line-height: 24px;
  position: absolute;
  right: 0;
  margin: 0 0.21667rem;
  top: 0;
  text-align: center;
  min-width: 1.66667rem;
  overflow: hidden;
  transition: all 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .backend-custom-toggle-slider:after {
    transition: none;
  }
}

.backend-custom-toggle-primary input:checked + .backend-custom-toggle-slider {
  border-color: #0A48B3;
}
.backend-custom-toggle-primary input:checked + .backend-custom-toggle-slider:before {
  background: #0A48B3;
}
.backend-custom-toggle-primary input:checked + .backend-custom-toggle-slider:after {
  color: #0A48B3;
}
.backend-custom-toggle-primary input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #0A48B3;
}
.backend-custom-toggle-primary input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #0d5be3;
}

.backend-custom-toggle-secondary input:checked + .backend-custom-toggle-slider {
  border-color: #f7fafc;
}
.backend-custom-toggle-secondary input:checked + .backend-custom-toggle-slider:before {
  background: #f7fafc;
}
.backend-custom-toggle-secondary input:checked + .backend-custom-toggle-slider:after {
  color: #f7fafc;
}
.backend-custom-toggle-secondary input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #f7fafc;
}
.backend-custom-toggle-secondary input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: white;
}

.backend-custom-toggle-success input:checked + .backend-custom-toggle-slider {
  border-color: #2dce89;
}
.backend-custom-toggle-success input:checked + .backend-custom-toggle-slider:before {
  background: #2dce89;
}
.backend-custom-toggle-success input:checked + .backend-custom-toggle-slider:after {
  color: #2dce89;
}
.backend-custom-toggle-success input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #2dce89;
}
.backend-custom-toggle-success input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #54daa1;
}

.backend-custom-toggle-info input:checked + .backend-custom-toggle-slider {
  border-color: #11cdef;
}
.backend-custom-toggle-info input:checked + .backend-custom-toggle-slider:before {
  background: #11cdef;
}
.backend-custom-toggle-info input:checked + .backend-custom-toggle-slider:after {
  color: #11cdef;
}
.backend-custom-toggle-info input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #11cdef;
}
.backend-custom-toggle-info input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #41d7f2;
}

.backend-custom-toggle-warning input:checked + .backend-custom-toggle-slider {
  border-color: #fb6340;
}
.backend-custom-toggle-warning input:checked + .backend-custom-toggle-slider:before {
  background: #fb6340;
}
.backend-custom-toggle-warning input:checked + .backend-custom-toggle-slider:after {
  color: #fb6340;
}
.backend-custom-toggle-warning input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #fb6340;
}
.backend-custom-toggle-warning input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #fc8c72;
}

.backend-custom-toggle-danger input:checked + .backend-custom-toggle-slider {
  border-color: #f5365c;
}
.backend-custom-toggle-danger input:checked + .backend-custom-toggle-slider:before {
  background: #f5365c;
}
.backend-custom-toggle-danger input:checked + .backend-custom-toggle-slider:after {
  color: #f5365c;
}
.backend-custom-toggle-danger input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #f5365c;
}
.backend-custom-toggle-danger input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #f76783;
}

.backend-custom-toggle-light input:checked + .backend-custom-toggle-slider {
  border-color: #adb5bd;
}
.backend-custom-toggle-light input:checked + .backend-custom-toggle-slider:before {
  background: #adb5bd;
}
.backend-custom-toggle-light input:checked + .backend-custom-toggle-slider:after {
  color: #adb5bd;
}
.backend-custom-toggle-light input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #adb5bd;
}
.backend-custom-toggle-light input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #c9cfd4;
}

.backend-custom-toggle-dark input:checked + .backend-custom-toggle-slider {
  border-color: #212529;
}
.backend-custom-toggle-dark input:checked + .backend-custom-toggle-slider:before {
  background: #212529;
}
.backend-custom-toggle-dark input:checked + .backend-custom-toggle-slider:after {
  color: #212529;
}
.backend-custom-toggle-dark input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #212529;
}
.backend-custom-toggle-dark input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #383f45;
}

.backend-custom-toggle-default input:checked + .backend-custom-toggle-slider {
  border-color: #172b4d;
}
.backend-custom-toggle-default input:checked + .backend-custom-toggle-slider:before {
  background: #172b4d;
}
.backend-custom-toggle-default input:checked + .backend-custom-toggle-slider:after {
  color: #172b4d;
}
.backend-custom-toggle-default input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #172b4d;
}
.backend-custom-toggle-default input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #234174;
}

.backend-custom-toggle-white input:checked + .backend-custom-toggle-slider {
  border-color: #fff;
}
.backend-custom-toggle-white input:checked + .backend-custom-toggle-slider:before {
  background: #fff;
}
.backend-custom-toggle-white input:checked + .backend-custom-toggle-slider:after {
  color: #fff;
}
.backend-custom-toggle-white input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #fff;
}
.backend-custom-toggle-white input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: white;
}

.backend-custom-toggle-neutral input:checked + .backend-custom-toggle-slider {
  border-color: #fff;
}
.backend-custom-toggle-neutral input:checked + .backend-custom-toggle-slider:before {
  background: #fff;
}
.backend-custom-toggle-neutral input:checked + .backend-custom-toggle-slider:after {
  color: #fff;
}
.backend-custom-toggle-neutral input:disabled:checked + .backend-custom-toggle-slider {
  border-color: #fff;
}
.backend-custom-toggle-neutral input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: white;
}

.backend-custom-toggle-darker input:checked + .backend-custom-toggle-slider {
  border-color: black;
}
.backend-custom-toggle-darker input:checked + .backend-custom-toggle-slider:before {
  background: black;
}
.backend-custom-toggle-darker input:checked + .backend-custom-toggle-slider:after {
  color: black;
}
.backend-custom-toggle-darker input:disabled:checked + .backend-custom-toggle-slider {
  border-color: black;
}
.backend-custom-toggle-darker input:disabled:checked + .backend-custom-toggle-slider:before {
  background-color: #171a1c;
}

.backend-form-control-label {
  color: #525f7f;
  font-size: 0.875rem;
  font-weight: 600;
}

.backend-form-control {
  font-size: 0.875rem;
  transition: all 0.15s ease-in-out;
  height: calc(1.5em + 1.25rem + 5px);
}
@media (prefers-reduced-motion: reduce) {
  .backend-form-control {
    transition: none;
  }
}
.backend-form-control:focus::placeholder {
  color: #adb5bd;
}

.backend-form-control-lg {
  height: calc(2.25em + 1.25rem + 5px);
}

.backend-form-control-sm {
  height: calc(0.45em + 1.25rem + 5px);
}

.backend-form-control-flush {
  padding: 0;
  border-width: 0;
  background-color: transparent;
  box-shadow: none;
}
.backend-form-control-flush:focus {
  background-color: transparent;
  box-shadow: none;
  border-width: 0;
}

.backend-form-control-muted {
  background-color: #F7FAFE;
  border-color: #F7FAFE;
  box-shadow: none;
}
.backend-form-control-muted:focus {
  background-color: #fcfdff;
}

.backend-form-control-alternative {
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
  border: 0;
  transition: box-shadow 0.15s ease;
}
.backend-form-control-alternative:focus {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
}

.backend-form-control-lg,
.backend-input-group-lg .backend-form-control,
.backend-input-group-text {
  font-size: 1rem !important;
}

.backend-custom-control {
  padding-left: 1.75rem;
}

.backend-input-group {
  box-shadow: 0 3px 2px rgba(233, 236, 239, 0.05);
  border-radius: 0.25rem;
  transition: all 0.15s ease-in-out;
}
@media (prefers-reduced-motion: reduce) {
  .backend-input-group {
    transition: none;
  }
}
.backend-input-group .backend-form-control {
  box-shadow: none;
}
.backend-input-group .backend-form-control:focus {
  box-shadow: none;
}

.backend-input-group-text {
  transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (prefers-reduced-motion: reduce) {
  .backend-input-group-text {
    transition: none;
  }
}
.backend-input-group-text i {
  font-size: 0.875rem;
}
.backend-input-group-text .backend-custom-control {
  line-height: 1;
}

.backend-input-group-prepend .backend-input-group-text {
  border-right: 0;
}

.backend-input-group-append .backend-input-group-text {
  border-left: 0;
}

.backend-input-group-merge .backend-form-control:not(:first-child) {
  border-left: 0;
  padding-left: 0;
}
.backend-input-group-merge .backend-form-control:not(:last-child) {
  border-right: 0;
  padding-right: 0;
}

.backend-input-group-alternative {
  box-shadow: 0 1px 3px rgba(50, 50, 93, 0.15), 0 1px 0 rgba(0, 0, 0, 0.02);
  border: 0;
  transition: box-shadow 0.15s ease;
}
.backend-input-group-alternative .backend-form-control,
.backend-input-group-alternative .backend-input-group-text {
  border: 0;
  box-shadow: none;
}

.focused .backend-input-group-alternative {
  box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08) !important;
}

.backend-input-group-flush {
  box-shadow: none;
}
.backend-input-group-flush > .backend-form-control {
  padding: 0;
  border-width: 0;
  background-color: transparent;
}
.backend-input-group-flush > .backend-input-group-prepend > .backend-input-group-text,
.backend-input-group-flush > .backend-input-group-append > .backend-input-group-text {
  padding: 0;
  padding-right: 1rem;
  border-width: 0;
  background-color: transparent;
}

.focused .backend-input-group {
  box-shadow: 0 3px 9px rgba(50, 50, 9, 0), 3px 4px 8px rgba(10, 72, 179, 0.1);
}
.focused .backend-input-group-text {
  color: #8898aa;
  background-color: #fff;
  border-color: #0A48B3;
}
.focused .backend-form-control {
  border-color: #0A48B3;
}
.focused .backend-input-group-flush {
  box-shadow: none;
}

.backend-form-primary .backend-form-control {
  color: #fff;
  background-color: rgba(7, 53, 131, 0.5);
  border-color: #073583;
}
.backend-form-primary .backend-form-control:focus {
  background-color: rgba(7, 49, 121, 0.7);
  border: 1px solid #073179;
}
.backend-form-primary .backend-form-control::placeholder {
  color: rgba(255, 255, 255, 0.8);
}
.backend-form-primary .backend-input-group-text {
  color: #fff;
  background-color: rgba(7, 53, 131, 0.5);
  border-color: #073583;
}
.backend-form-primary .focused .backend-input-group-text {
  color: #fff;
  background-color: rgba(7, 49, 121, 0.7);
  border-color: #073179;
}

.has-success .backend-input-group-prepend .backend-input-group-text,
.has-danger .backend-input-group-prepend .backend-input-group-text {
  border-color: red;
}

.has-success .backend-form-control {
  background-color: #fff;
}
.has-success .backend-form-control::placeholder {
  color: #2dce89;
}

.has-danger .backend-form-control {
  background-color: #fff;
}
.has-danger .backend-form-control::placeholder {
  color: #fb6340;
}

.backend-modal-title {
  font-size: 1.0625rem;
}

.backend-modal-fluid .backend-modal-dialog {
  margin-top: 0;
  margin-bottom: 0;
}
.backend-modal-fluid .backend-modal-content {
  border-radius: 0;
}

.backend-modal-primary .backend-modal-title {
  color: #fff;
}
.backend-modal-primary .backend-modal-header,
.backend-modal-primary .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-primary .backend-modal-content {
  background-color: #0A48B3;
  color: #fff;
}
.backend-modal-primary .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-primary .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-secondary .backend-modal-title {
  color: #212529;
}
.backend-modal-secondary .backend-modal-header,
.backend-modal-secondary .backend-modal-footer {
  border-color: rgba(33, 37, 41, 0.075);
}
.backend-modal-secondary .backend-modal-content {
  background-color: #f7fafc;
  color: #212529;
}
.backend-modal-secondary .backend-modal-content .heading {
  color: #212529;
}
.backend-modal-secondary .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-success .backend-modal-title {
  color: #fff;
}
.backend-modal-success .backend-modal-header,
.backend-modal-success .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-success .backend-modal-content {
  background-color: #2dce89;
  color: #fff;
}
.backend-modal-success .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-success .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-info .backend-modal-title {
  color: #fff;
}
.backend-modal-info .backend-modal-header,
.backend-modal-info .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-info .backend-modal-content {
  background-color: #11cdef;
  color: #fff;
}
.backend-modal-info .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-info .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-warning .backend-modal-title {
  color: #fff;
}
.backend-modal-warning .backend-modal-header,
.backend-modal-warning .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-warning .backend-modal-content {
  background-color: #fb6340;
  color: #fff;
}
.backend-modal-warning .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-warning .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-danger .backend-modal-title {
  color: #fff;
}
.backend-modal-danger .backend-modal-header,
.backend-modal-danger .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-danger .backend-modal-content {
  background-color: #f5365c;
  color: #fff;
}
.backend-modal-danger .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-danger .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-light .backend-modal-title {
  color: #fff;
}
.backend-modal-light .backend-modal-header,
.backend-modal-light .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-light .backend-modal-content {
  background-color: #adb5bd;
  color: #fff;
}
.backend-modal-light .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-light .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-dark .backend-modal-title {
  color: #fff;
}
.backend-modal-dark .backend-modal-header,
.backend-modal-dark .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-dark .backend-modal-content {
  background-color: #212529;
  color: #fff;
}
.backend-modal-dark .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-dark .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-default .backend-modal-title {
  color: #fff;
}
.backend-modal-default .backend-modal-header,
.backend-modal-default .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-default .backend-modal-content {
  background-color: #172b4d;
  color: #fff;
}
.backend-modal-default .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-default .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-white .backend-modal-title {
  color: #212529;
}
.backend-modal-white .backend-modal-header,
.backend-modal-white .backend-modal-footer {
  border-color: rgba(33, 37, 41, 0.075);
}
.backend-modal-white .backend-modal-content {
  background-color: #fff;
  color: #212529;
}
.backend-modal-white .backend-modal-content .heading {
  color: #212529;
}
.backend-modal-white .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-neutral .backend-modal-title {
  color: #212529;
}
.backend-modal-neutral .backend-modal-header,
.backend-modal-neutral .backend-modal-footer {
  border-color: rgba(33, 37, 41, 0.075);
}
.backend-modal-neutral .backend-modal-content {
  background-color: #fff;
  color: #212529;
}
.backend-modal-neutral .backend-modal-content .heading {
  color: #212529;
}
.backend-modal-neutral .close > span:not(.sr-only) {
  color: #fff;
}

.backend-modal-darker .backend-modal-title {
  color: #fff;
}
.backend-modal-darker .backend-modal-header,
.backend-modal-darker .backend-modal-footer {
  border-color: rgba(255, 255, 255, 0.075);
}
.backend-modal-darker .backend-modal-content {
  background-color: black;
  color: #fff;
}
.backend-modal-darker .backend-modal-content .heading {
  color: #fff;
}
.backend-modal-darker .close > span:not(.sr-only) {
  color: #fff;
}
.navbar-search .backend-input-group {
  border-radius: 2rem;
  border: 0 solid;
  transition: background-color 0.3s linear;
  transition-delay: 0.15s;
}
@media (prefers-reduced-motion: reduce) {
  .navbar-search .backend-input-group {
    transition: none;
  }
}
.navbar-search .backend-input-group .backend-input-group-text {
  background-color: transparent;
  padding-left: 1rem;
  border: 0;
}
.navbar-search .backend-form-control {
  width: 250px;
  background-color: transparent;
  border: 0;
  transition: all 0.15s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
@media (prefers-reduced-motion: reduce) {
  .navbar-search .backend-form-control {
    transition: none;
  }
}
.navbar-search .focused .backend-input-group .backend-form-control {
  width: 380px;
}
.navbar-search-dark .backend-input-group {
  background-color: rgba(23, 43, 77, 0.8);
  border-color: rgba(255, 255, 255, 0.6);
}
.navbar-search-dark .backend-input-group-text {
  color: rgba(255, 255, 255, 0.6);
}
.navbar-search-dark .backend-form-control {
  color: rgba(255, 255, 255, 0.9);
}
.navbar-search-dark .backend-form-control::placeholder {
  color: rgba(255, 255, 255, 0.6);
}
.navbar-search-dark .focused .backend-input-group {
  background-color: rgba(23, 43, 77, 0.9);
  border-color: rgba(255, 255, 255, 0.9);
}

.navbar-search-light .backend-input-group {
  background-color: rgba(255, 255, 255, 0.9);
  border-color: rgba(0, 0, 0, 0.6);
}
.navbar-search-light .backend-input-group-text {
  color: rgba(0, 0, 0, 0.6);
}
.navbar-search-light .backend-form-control {
  color: rgba(0, 0, 0, 0.9);
}
.navbar-search-light .backend-form-control::placeholder {
  color: rgba(0, 0, 0, 0.6);
}
.navbar-search-light .focused .backend-input-group {
  background-color: white;
  border-color: rgba(0, 0, 0, 0.9);
}

@media (max-width: 575.98px) {
  .navbar-search .backend-form-group {
    width: 100%;
  }
}
@media (max-width: 575.98px) {
  .navbar-search .backend-form-control {
    width: auto;
  }
}
@media (max-width: 575.98px) {
  .navbar-search .focused .backend-input-group .backend-form-control {
    width: auto;
  }
}
@media (max-width: 575.98px) {
  .g-navbar-search-show .navbar-search .backend-form-control {
    width: auto;
  }  
}

.nav-wrapper + .backend-card {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0.375rem;
  border-bottom-left-radius: 0.375rem;
}

.nav-link i.backend-ni {
  position: relative;
  top: 2px;
}

.rtl .backend-card .backend-card-body {
  text-align: right;
}

.backend-card .table {
  margin-bottom: 0;
}
.backend-card .table td,
.backend-card .table th {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.table .backend-custom-toggle {
  display: block;
}
.lead + .backend-btn-wrapper {
  margin-top: 3rem;
}
.heading-section.backend-text-center img {
  margin-left: auto;
  margin-right: auto;
}

.backend-bg-blue {
  background-color: #0A48B3 !important;
}

a.backend-bg-blue:hover, a.backend-bg-blue:focus,
button.backend-bg-blue:hover,
button.backend-bg-blue:focus {
  background-color: #073583 !important;
}

.backend-bg-indigo {
  background-color: #5603ad !important;
}

a.backend-bg-indigo:hover, a.backend-bg-indigo:focus,
button.backend-bg-indigo:hover,
button.backend-bg-indigo:focus {
  background-color: #3d027b !important;
}

.backend-bg-purple {
  background-color: #8965e0 !important;
}

a.backend-bg-purple:hover, a.backend-bg-purple:focus,
button.backend-bg-purple:hover,
button.backend-bg-purple:focus {
  background-color: #683bd7 !important;
}

.backend-bg-pink {
  background-color: #f3a4b5 !important;
}

a.backend-bg-pink:hover, a.backend-bg-pink:focus,
button.backend-bg-pink:hover,
button.backend-bg-pink:focus {
  background-color: #ed7790 !important;
}

.backend-bg-red {
  background-color: #f5365c !important;
}

a.backend-bg-red:hover, a.backend-bg-red:focus,
button.backend-bg-red:hover,
button.backend-bg-red:focus {
  background-color: #ec0c38 !important;
}

.backend-bg-orange {
  background-color: #fb6340 !important;
}

a.backend-bg-orange:hover, a.backend-bg-orange:focus,
button.backend-bg-orange:hover,
button.backend-bg-orange:focus {
  background-color: #fa3a0e !important;
}

.backend-bg-yellow {
  background-color: #ffd600 !important;
}

a.backend-bg-yellow:hover, a.backend-bg-yellow:focus,
button.backend-bg-yellow:hover,
button.backend-bg-yellow:focus {
  background-color: #ccab00 !important;
}

.backend-bg-green {
  background-color: #2dce89 !important;
}

a.backend-bg-green:hover, a.backend-bg-green:focus,
button.backend-bg-green:hover,
button.backend-bg-green:focus {
  background-color: #24a46d !important;
}

.backend-bg-teal {
  background-color: #11cdef !important;
}

a.backend-bg-teal:hover, a.backend-bg-teal:focus,
button.backend-bg-teal:hover,
button.backend-bg-teal:focus {
  background-color: #0da5c0 !important;
}

.backend-bg-cyan {
  background-color: #2bffc6 !important;
}

a.backend-bg-cyan:hover, a.backend-bg-cyan:focus,
button.backend-bg-cyan:hover,
button.backend-bg-cyan:focus {
  background-color: #00f7b5 !important;
}

.backend-bg-white {
  background-color: #fff !important;
}

a.backend-bg-white:hover, a.backend-bg-white:focus,
button.backend-bg-white:hover,
button.backend-bg-white:focus {
  background-color: #e6e6e6 !important;
}

.backend-bg-gray {
  background-color: #8898aa !important;
}

a.backend-bg-gray:hover, a.backend-bg-gray:focus,
button.backend-bg-gray:hover,
button.backend-bg-gray:focus {
  background-color: #6a7e95 !important;
}

.backend-bg-gray-dark {
  background-color: #32325d !important;
}

a.backend-bg-gray-dark:hover, a.backend-bg-gray-dark:focus,
button.backend-bg-gray-dark:hover,
button.backend-bg-gray-dark:focus {
  background-color: #20203c !important;
}

.backend-bg-light {
  background-color: #ced4da !important;
}

a.backend-bg-light:hover, a.backend-bg-light:focus,
button.backend-bg-light:hover,
button.backend-bg-light:focus {
  background-color: #b1bbc4 !important;
}

.backend-bg-lighter {
  background-color: #e9ecef !important;
}

a.backend-bg-lighter:hover, a.backend-bg-lighter:focus,
button.backend-bg-lighter:hover,
button.backend-bg-lighter:focus {
  background-color: #cbd3da !important;
}

.backend-bg-gradient-primary {
  background: linear-gradient(87deg, #0A48B3 0, #120ab3 100%) !important;
}

.backend-bg-gradient-secondary {
  background: linear-gradient(87deg, #f7fafc 0, #f7f8fc 100%) !important;
}

.backend-bg-gradient-success {
  background: linear-gradient(87deg, #2dce89 0, #2dcecc 100%) !important;
}

.backend-bg-gradient-info {
  background: linear-gradient(87deg, #11cdef 0, #1171ef 100%) !important;
}

.backend-bg-gradient-warning {
  background: linear-gradient(87deg, #fb6340 0, #fbb140 100%) !important;
}

.backend-bg-gradient-danger {
  background: linear-gradient(87deg, #f5365c 0, #f56036 100%) !important;
}

.backend-bg-gradient-light {
  background: linear-gradient(87deg, #adb5bd 0, #adaebd 100%) !important;
}

.backend-bg-gradient-dark {
  background: linear-gradient(87deg, #212529 0, #212229 100%) !important;
}

.backend-bg-gradient-default {
  background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.backend-bg-gradient-white {
  background: linear-gradient(87deg, #fff 0, white 100%) !important;
}

.backend-bg-gradient-neutral {
  background: linear-gradient(87deg, #fff 0, white 100%) !important;
}

.backend-bg-gradient-darker {
  background: linear-gradient(87deg, black 0, black 100%) !important;
}

.backend-bg-gradient-blue {
  background: linear-gradient(87deg, #0A48B3 0, #120ab3 100%) !important;
}

.backend-bg-gradient-indigo {
  background: linear-gradient(87deg, #5603ad 0, #9d03ad 100%) !important;
}

.backend-bg-gradient-purple {
  background: linear-gradient(87deg, #8965e0 0, #bc65e0 100%) !important;
}

.backend-bg-gradient-pink {
  background: linear-gradient(87deg, #f3a4b5 0, #f3b4a4 100%) !important;
}

.backend-bg-gradient-red {
  background: linear-gradient(87deg, #f5365c 0, #f56036 100%) !important;
}

.backend-bg-gradient-orange {
  background: linear-gradient(87deg, #fb6340 0, #fbb140 100%) !important;
}

.backend-bg-gradient-yellow {
  background: linear-gradient(87deg, #ffd600 0, #beff00 100%) !important;
}

.backend-bg-gradient-green {
  background: linear-gradient(87deg, #2dce89 0, #2dcecc 100%) !important;
}

.backend-bg-gradient-teal {
  background: linear-gradient(87deg, #11cdef 0, #1171ef 100%) !important;
}

.backend-bg-gradient-cyan {
  background: linear-gradient(87deg, #2bffc6 0, #2be0ff 100%) !important;
}

.backend-bg-gradient-white {
  background: linear-gradient(87deg, #fff 0, white 100%) !important;
}

.backend-bg-gradient-gray {
  background: linear-gradient(87deg, #8898aa 0, #888aaa 100%) !important;
}

.backend-bg-gradient-gray-dark {
  background: linear-gradient(87deg, #32325d 0, #44325d 100%) !important;
}

.backend-bg-gradient-light {
  background: linear-gradient(87deg, #ced4da 0, #cecfda 100%) !important;
}

.backend-bg-gradient-lighter {
  background: linear-gradient(87deg, #e9ecef 0, #e9eaef 100%) !important;
}

.backend-bg-translucent-primary {
  background-color: rgba(8, 58, 145, 0.6) !important;
}

a.backend-bg-translucent-primary:hover, a.backend-bg-translucent-primary:focus,
button.backend-bg-translucent-primary:hover,
button.backend-bg-translucent-primary:focus {
  background-color: rgba(7, 49, 121, 0.6) !important;
}

.backend-bg-translucent-secondary {
  background-color: rgba(221, 234, 242, 0.6) !important;
}

a.backend-bg-translucent-secondary:hover, a.backend-bg-translucent-secondary:focus,
button.backend-bg-translucent-secondary:hover,
button.backend-bg-translucent-secondary:focus {
  background-color: rgba(202, 222, 235, 0.6) !important;
}

.backend-bg-translucent-success {
  background-color: rgba(39, 177, 118, 0.6) !important;
}

a.backend-bg-translucent-success:hover, a.backend-bg-translucent-success:focus,
button.backend-bg-translucent-success:hover,
button.backend-bg-translucent-success:focus {
  background-color: rgba(34, 156, 104, 0.6) !important;
}

.backend-bg-translucent-info {
  background-color: rgba(14, 177, 206, 0.6) !important;
}

a.backend-bg-translucent-info:hover, a.backend-bg-translucent-info:focus,
button.backend-bg-translucent-info:hover,
button.backend-bg-translucent-info:focus {
  background-color: rgba(12, 156, 183, 0.6) !important;
}

.backend-bg-translucent-warning {
  background-color: rgba(250, 70, 29, 0.6) !important;
}

a.backend-bg-translucent-warning:hover, a.backend-bg-translucent-warning:focus,
button.backend-bg-translucent-warning:hover,
button.backend-bg-translucent-warning:focus {
  background-color: rgba(249, 51, 5, 0.6) !important;
}

.backend-bg-translucent-danger {
  background-color: rgba(243, 20, 64, 0.6) !important;
}

a.backend-bg-translucent-danger:hover, a.backend-bg-translucent-danger:focus,
button.backend-bg-translucent-danger:hover,
button.backend-bg-translucent-danger:focus {
  background-color: rgba(227, 11, 54, 0.6) !important;
}

.backend-bg-translucent-light {
  background-color: rgba(153, 163, 173, 0.6) !important;
}

a.backend-bg-translucent-light:hover, a.backend-bg-translucent-light:focus,
button.backend-bg-translucent-light:hover,
button.backend-bg-translucent-light:focus {
  background-color: rgba(139, 150, 162, 0.6) !important;
}

.backend-bg-translucent-dark {
  background-color: rgba(17, 19, 21, 0.6) !important;
}

a.backend-bg-translucent-dark:hover, a.backend-bg-translucent-dark:focus,
button.backend-bg-translucent-dark:hover,
button.backend-bg-translucent-dark:focus {
  background-color: rgba(6, 6, 7, 0.6) !important;
}

.backend-bg-translucent-default {
  background-color: rgba(15, 28, 50, 0.6) !important;
}

a.backend-bg-translucent-default:hover, a.backend-bg-translucent-default:focus,
button.backend-bg-translucent-default:hover,
button.backend-bg-translucent-default:focus {
  background-color: rgba(9, 17, 30, 0.6) !important;
}

.backend-bg-translucent-white {
  background-color: rgba(237, 237, 237, 0.6) !important;
}

a.backend-bg-translucent-white:hover, a.backend-bg-translucent-white:focus,
button.backend-bg-translucent-white:hover,
button.backend-bg-translucent-white:focus {
  background-color: rgba(224, 224, 224, 0.6) !important;
}

.backend-bg-translucent-neutral {
  background-color: rgba(237, 237, 237, 0.6) !important;
}

a.backend-bg-translucent-neutral:hover, a.backend-bg-translucent-neutral:focus,
button.backend-bg-translucent-neutral:hover,
button.backend-bg-translucent-neutral:focus {
  background-color: rgba(224, 224, 224, 0.6) !important;
}

.backend-bg-translucent-darker {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

a.backend-bg-translucent-darker:hover, a.backend-bg-translucent-darker:focus,
button.backend-bg-translucent-darker:hover,
button.backend-bg-translucent-darker:focus {
  background-color: rgba(0, 0, 0, 0.6) !important;
}

.backend-bg-gradient-primary {
  background: linear-gradient(87deg, #0A48B3 0, #120ab3 100%) !important;
}

.backend-bg-gradient-secondary {
  background: linear-gradient(87deg, #f7fafc 0, #f7f8fc 100%) !important;
}

.backend-bg-gradient-success {
  background: linear-gradient(87deg, #2dce89 0, #2dcecc 100%) !important;
}

.backend-bg-gradient-info {
  background: linear-gradient(87deg, #11cdef 0, #1171ef 100%) !important;
}

.backend-bg-gradient-warning {
  background: linear-gradient(87deg, #fb6340 0, #fbb140 100%) !important;
}

.backend-bg-gradient-danger {
  background: linear-gradient(87deg, #f5365c 0, #f56036 100%) !important;
}

.backend-bg-gradient-light {
  background: linear-gradient(87deg, #adb5bd 0, #adaebd 100%) !important;
}

.backend-bg-gradient-dark {
  background: linear-gradient(87deg, #212529 0, #212229 100%) !important;
}

.backend-bg-gradient-default {
  background: linear-gradient(87deg, #172b4d 0, #1a174d 100%) !important;
}

.backend-bg-gradient-white {
  background: linear-gradient(87deg, #fff 0, white 100%) !important;
}

.backend-bg-gradient-neutral {
  background: linear-gradient(87deg, #fff 0, white 100%) !important;
}

.backend-bg-gradient-darker {
  background: linear-gradient(87deg, black 0, black 100%) !important;
}

.backend-text-underline {
  text-decoration: underline;
}

.backend-text-through {
  text-decoration: line-through;
}

.backend-text-xs {
  font-size: 0.75rem !important;
}

.backend-text-sm {
  font-size: 0.875rem !important;
}

.backend-text-lg {
  font-size: 1.25rem !important;
}

.backend-text-xl {
  font-size: 1.5rem !important;
}


.backend-text-blue {
  color: #0A48B3 !important;
}

a.backend-text-blue:hover, a.backend-text-blue:focus {
  color: #062b6b !important;
}

.backend-text-indigo {
  color: #5603ad !important;
}

a.backend-text-indigo:hover, a.backend-text-indigo:focus {
  color: #310262 !important;
}

.backend-text-purple {
  color: #8965e0 !important;
}

a.backend-text-purple:hover, a.backend-text-purple:focus {
  color: #5a2acf !important;
}

.backend-text-pink {
  color: #f3a4b5 !important;
}

a.backend-text-pink:hover, a.backend-text-pink:focus {
  color: #ea607e !important;
}

.backend-text-red {
  color: #f5365c !important;
}

a.backend-text-red:hover, a.backend-text-red:focus {
  color: #d40b33 !important;
}

.backend-text-orange {
  color: #fb6340 !important;
}

a.backend-text-orange:hover, a.backend-text-orange:focus {
  color: #ea3005 !important;
}

.backend-text-yellow {
  color: #ffd600 !important;
}

a.backend-text-yellow:hover, a.backend-text-yellow:focus {
  color: #b39600 !important;
}

.backend-text-green {
  color: #2dce89 !important;
}

a.backend-text-green:hover, a.backend-text-green:focus {
  color: #1f8f5f !important;
}

.backend-text-teal {
  color: #11cdef !important;
}

a.backend-text-teal:hover, a.backend-text-teal:focus {
  color: #0b90a8 !important;
}

.backend-text-cyan {
  color: #2bffc6 !important;
}

a.backend-text-cyan:hover, a.backend-text-cyan:focus {
  color: #00dea2 !important;
}

.backend-text-white {
  color: #fff !important;
}

a.backend-text-white:hover, a.backend-text-white:focus {
  color: #d9d9d9 !important;
}

.backend-text-gray {
  color: #8898aa !important;
}

a.backend-text-gray:hover, a.backend-text-gray:focus {
  color: #607286 !important;
}

.backend-text-gray-dark {
  color: #32325d !important;
}

a.backend-text-gray-dark:hover, a.backend-text-gray-dark:focus {
  color: #17172b !important;
}

.backend-text-light {
  color: #ced4da !important;
}

a.backend-text-light:hover, a.backend-text-light:focus {
  color: #a2aeb9 !important;
}

.backend-text-lighter {
  color: #e9ecef !important;
}

a.backend-text-lighter:hover, a.backend-text-lighter:focus {
  color: #bdc6cf !important;
}

.bootstrap-tagsinput .backend-badge {
  position: relative;
  padding: 0.625rem 0.625rem 0.5rem;
  margin: 0.125rem;
  border-radius: 0.25rem;
  background: #172b4d;
  color: #fff;
  line-height: 1.5;
  box-shadow: 0 1px 2px rgba(68, 68, 68, 0.25);
  transition: all 0.15s ease;
}
@media (prefers-reduced-motion: reduce) {
  .bootstrap-tagsinput .backend-badge {
    transition: none;
  }
}
.bootstrap-tagsinput .backend-badge:hover {
  padding-right: 1.5rem;
}

.dataTables_length .backend-form-control {
  margin: 0 0.375rem;
}


.backend-card-calendar .backend-card-header {
  border-bottom: 0;
}
.backend-card-calendar table {
  background: transparent;
}
.backend-card-calendar table tr > td:first-child {
  border-left-width: 0;
}
.backend-card-calendar table tr > td:last-child {
  border-right-width: 0;
}

.backend-input-slider--cyan .noUi-connect {
  background: #2bffc6;
}


.backend-input-slider-value-output {
  background: #333;
  color: #fff;
  padding: 4px 8px;
  position: relative;
  top: 12px;
  font-size: 11px;
  border-radius: 2px;
}

.backend-input-slider-value-output:after {
  bottom: 100%;
  left: 10px;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-bottom-color: #333;
  border-width: 4px;
  margin-left: -4px;
}

.backend-input-slider-value-output.left:after {
  left: 10px;
  right: auto;
}

.backend-input-slider-value-output.right:after {
  right: 10px;
  left: auto;
}

.backend-form-control-sm + .select2-container .select2-selection--single,
.backend-form-control-sm + .select2-container--default.select2-container--focus .select2-selection--multiple,
.backend-form-control-sm + .select2-container--default .select2-selection--multiple {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  line-height: 1.5;
  border-radius: 0.25rem;
}

.backend-form-control-sm + .select2-container--default.select2-container--focus .select2-selection--multiple,
.backend-form-control-sm + .select2-container--default .select2-selection--multiple {
  min-height: calc(1.5em + 0.5rem + 2px);
}

.backend-form-control-sm + .select2-container--default .select2-selection--multiple .select2-selection__choice {
  line-height: 1.3125rem;
}

.backend-form-control-lg + .select2-container .select2-selection--single,
.backend-form-control-lg + .select2-container--default.select2-container--focus .select2-selection--multiple,
.backend-form-control-lg + .select2-container--default .select2-selection--multiple {
  height: calc(1.5em + 1.75rem + 2px);
  padding: 0.875rem 1rem;
  font-size: 1.25rem;
  line-height: 1.5;
  border-radius: 0.4375rem;
}

.backend-form-control-lg + .select2-container--default.select2-container--focus .select2-selection--multiple,
.backend-form-control-lg + .select2-container--default .select2-selection--multiple {
  min-height: calc(1.5em + 1.75rem + 2px);
}

.backend-form-control-lg + .select2-container--default .select2-selection--multiple .select2-selection__choice {
  line-height: 1.875rem;
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=incrementHours]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=incrementMinutes]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=decrementHours]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=decrementMinutes]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=showHours]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=showMinutes]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=togglePeriod]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=clear]::after,
.bootstrap-datetimepicker-widget .backend-btn[data-action=today]::after
 {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.bootstrap-datetimepicker-widget a .backend-btn:hover {
  background-color: transparent;
}

.bootstrap-datetimepicker-widget.dropdown-menu .timepicker-picker .table-condensed .backend-btn[data-action=togglePeriod]:hover{
  color: #9A9A9A !important;
}

.bootstrap-datetimepicker-widget .backend-btn {
  margin: 0 !important;
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=incrementHours]::after {
  content: "Increment Hours";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=incrementMinutes]::after {
  content: "Increment Minutes";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=decrementHours]::after {
  content: "Decrement Hours";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=decrementMinutes]::after {
  content: "Decrement Minutes";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=showHours]::after {
  content: "Show Hours";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=showMinutes]::after {
  content: "Show Minutes";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=togglePeriod]::after {
  content: "Toggle AM/PM";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=clear]::after {
  content: "Clear the picker";
}

.bootstrap-datetimepicker-widget .backend-btn[data-action=today]::after {
  content: "Set the date to today";
}


.backend-input-group.date .backend-input-group-addon {
  cursor: pointer;
}

.bootstrap-datetimepicker-widget.dropdown-black table td .backend-btn[data-action] {
  color: #fff;
}
.bootstrap-datetimepicker-widget.dropdown-black table td .backend-btn[data-action=togglePeriod] {
  background: transparent;
}

