.card-title {
  text-align: center;
}

.bg-dark {
  background: rgb(2, 0, 36);
  background: linear-gradient(
    90deg,
    rgba(2, 0, 36, 1) 0%,
    rgba(108, 122, 137, 1) 54%,
    rgba(187, 212, 202, 1) 100%
  );
}

.card {
  margin-top: 30px;
  width: 50%;
  background-color: #e0e7e9;
}

.card.print {
  margin-top: 30px;
  width: 100%;
  background-color: white;
}

.form-group {
  margin-top: 10px;
}

.btn {
  margin-top: 10px;
}

.card-holder {
  display: flex;
  justify-content: center;
}

body {
  background-color: WhiteSmoke;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.login {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -80%);
  width: 50%;
}

footer {
  margin-top: auto;
}

.navleft {
  position: sticky;
  left: 100%;
}

.bg-active {
  background-color: #6c7a89;
  color: white;
}

.bg-inactive {
  background-color: #bbd4ca;
}

.card-header.title {
  text-align: center;
  background: rgb(53, 70, 73);
  background: radial-gradient(
    circle,
    rgba(53, 70, 73, 1) 28%,
    rgba(108, 122, 137, 1) 100%
  );
  font-size: xx-large;
  color: white;
  white-space: pre-line;
}

.card-header.ptitle {
  text-align: center;
  font-size: xx-large;
  white-space: pre-line;
}

.blink {
  animation: blinker 1s linear infinite;
  font-weight: bolder;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.bg-danger {
  background-color: firebrick !important;
}

.bg-success {
  background-color: forestgreen !important;
}

.bg-info {
  background-color: #a3c6c4 !important;
  color: #6c7a89;
}

.btn-danger {
  background-color: firebrick !important;
}

.btn-success {
  background-color: forestgreen !important;
}
.btn-info {
  background-color: #a3c6c4 !important;
  color: #6c7a89;
}

hr {
  margin-top: 5px;
  margin-bottom: 5px;
  background-color: #a3c6c4;
}

.btext {
  color: #354649 !important;
}

.tcenter {
  background: rgb(53, 70, 73);
  background: radial-gradient(
    circle,
    rgba(53, 70, 73, 1) 28%,
    rgba(108, 122, 137, 1) 100%
  );
  text-align: center;
}

.pcenter {
  text-align: center;
}

.bold {
  font-weight: bolder;
}