/*html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}*/
.micro-alert {
    position: fixed;
    top: 20px;
    right: 20px;
    padding: 10px 14px;
    font-size: 14px;
    border-radius: 6px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    z-index: 2000;
    opacity: 0;
    transform: translateX(20px);
    transition: all .4s ease;
}

    .micro-alert.show {
        opacity: 1;
        transform: translateX(0);
    }