html,
body {
  background-color: #f5f9fb;
}

body {
  color: #24292e;
  font-family: -apple-system,BlinkMacSystemFont,Segoe UI,Helvetica,Arial,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol;
  font-size: 14px;
  line-height: 1.5;
}

p:last-child {
  margin-bottom: 0;
}

.btn {
  border: 1px solid rgba(27, 31, 35, 0.2);
  color: #24292e;
  font-size: 14px;
}

.btn-primary,
.btn-danger,
.btn-warning {
  color: #fff;
}

.btn.hover,
.btn:hover {
  border: 1px solid rgba(27, 31, 35, 0.2);
}


.btn-primary.hover,
.btn-primary:hover {
  border: 1px solid rgba(27, 31, 35, 0.2);
}

.btn.selected,
.btn:active,
[open]>.btn {
  box-shadow: inset 0 0.15em 0.3em rgba(27, 31, 35, 0.15);
}

.btn-primary.selected,
.btn-primary:active,
[open]>.btn-primary {
  box-shadow: inset 0 0.15em 0.3em rgba(27, 31, 35, 0.15);
}

.card {
  margin-bottom: 32px;
  padding: 32px;
}

.login-wrapper {
  width: 340px;
}

.login-header h1 {
  margin: 16px 0;
  color: #333;
  font-size: 24px;
  font-weight: 300;
  letter-spacing: -0.5px;
  text-align: center;
}

.login-form {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #d8dee2;
  border-radius: 5px;
}

#message {
  position: relative;
  margin-top: 60px;
  margin-bottom: -60px;
  padding: 30px;
  padding-bottom: 0;
}

#message p {
  margin: 0;
  padding: 12px 16px;
  padding-right: 32px;
  background-color: #0366d6;
  border-radius: 3px;
  color: #fff;
}

#message button {
  position: absolute;
  top: 41px;
  right: 36px;
  background-color: transparent;
  border: none;
  color: #fff;
  cursor: pointer;
}
.horizontal-table,
.services-table,
.vertical-table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.vertical-table {
  font-size: 13px;
}

.horizontal-table th,
.horizontal-table td,
.services-table th,
.services-table td,
.vertical-table th,
.vertical-table td {
  padding: 8px 16px;
  border-top: 1px solid #e1e4e8;
  border-bottom: 1px solid #e1e4e8;
  font-size: inherit;
  vertical-align: middle;
}

.vertical-table th,
.vertical-table td {
  border: 1px solid #e1e4e8;
}

.vertical-table th {
  background-color: #eee;
}

.horizontal-table thead th {
  border: 0;
  color: #9ea0a5;
  font-size: 0.75rem;
}

.horizontal-table tbody tr {
  transition: background-color 150ms ease;
}

.horizontal-table tbody tr:hover {
  background-color: #e9f0f9;
}

.user-popover {
  position: absolute;
  left: 50%;
  bottom: 100%;
  padding: 12px;
  min-width: 160px;
  max-width: 360px;
  background-color: #fff;
  border: 1px solid #d5dce6;
  border-radius: 4px;
  box-shadow: 0 2px 8px 0px rgba(0, 0, 0, 0.12);
  transform: translateX(-50%) translateY(20px);
  transition: opacity 150ms ease, transform 150ms ease;
  visibility: hidden;
  opacity: 0;
  z-index: 8;
}

.user-popover::after,
.user-popover::before {
  position: absolute;
  left: 50%;
  bottom: -7px;
  display: block;
  content: '';
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #fff;
  transform: translateX(-50%);
}

.user-popover::before {
  bottom: -8px;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #d5dce6;
}

.user-popover img {
  width: 80px;
  height: 80px;
  border-radius: 4px;
}

*:hover > .user-popover {
  transform: translateX(-50%) translateY(0);
  visibility: visible;
  opacity: 1;
}

a.code-link {
  display: block;
  margin: 0px;
  padding: 0.2em 0.4em;
  background-color: rgba(27, 31, 35, 0.05);
  border-radius: 3px;
  color: rgb(3, 102, 214);
  font-size: 12px;
  text-align: center;
  text-decoration: none;
}

a.code-link:hover {
  color: rgb(3, 102, 214);
  text-decoration: underline;
}

.submenu {
  margin: 0;
  margin-bottom: 16px;
  padding: 10px;
  background: whitesmoke;
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  color: #bbb;
}

.form-check-input{
  cursor: pointer;
}

.ui-datepicker {
  z-index: 1060 !important;
}

.loader.loading {
  position: relative;
}

.loader.loading input {
  padding-right: 2.25rem;
  background-image: unset;
}

.loader.loading::before {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 8px);
  right: calc(2.25rem / 2);
  width: 16px;
  height: 16px;
  border: 3px solid #bdbdbd;
  border-right-color: transparent;
  border-radius: 50%;
  animation: spin 1.2s linear infinite;
  z-index: 10;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media (min-width: 768px) {
  .form-control,
  .form-select {
    font-size: 14px;
  }
}

@media (min-width: 992px) {
  #message {
    margin-left: 230px;
  }
}