.app-brand{
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.5rem;
  justify-content: center;
}

.app-brand img{
  max-width: 100px;
}

.btn-mse-primary {
  color: #fff;
  background-color: #03558b;
  border-color: #03558b;
}

.btn-mse-primary:hover {
  color: #fff;
  background-color: #03558b;
  border-color: #03558b;
}

.swal2-confirm{
  border: 0;
  border-radius: .25em;
  background: initial;
  background-color: #03558b;
  color: #fff;
  font-size: 1em;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  z-index: 1000;
}

#loader {
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  border-radius: 50%;
  border: 5px solid transparent;
  border-top-color: #3498db;
  animation: spin 2s linear infinite;
}

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