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;
}
.dropdown-content {
  display: none;
  position: relative;
  overflow: hidden;
  align-content: start;
}
.dropdown-btn:hover .dropdown-content  {
  display: block
}
.dropdown-btn::after {
  content: none;
}
@keyframes blink {
  0% {
    opacity: 10%;
    rotate: 45deg;
  }
  50% {
    opacity: 100%;
    rotate: -45deg;
  }
  100% {
    opacity: 10%;
    rotate: 45deg;
  }
}

.blink {
  animation: blink 4s ease-in-out infinite;
  color: white;
}

@keyframes notification-banner {
  0% {  
    left : 100%;
  }
  60% {
        left : 0;
  }
  80% {
        left : 10%;
  }
  95% {
            left : 3%;
  }
  100% {
        left : 5%;
  }
}
@keyframes rainbow-background {
  0% {
    background-color: #e10000;
  }
  20% {
      background-color: #e1e100;
  }
  40% {
      background-color: #00e100;
  }
  60% {
      background-color: #0000e1;
  }
  80% {
      background-color: #e100e1;
  }
  100% {
    background-color: #e10000;
  }
}
.rainbow-background {
  animation: rainbow-background 20s linear infinite;
}

.notification-banner {
  height: 50px;
  position: relative;
  overflow: hidden;
  line-height: 50px;
  left : 5%;
  /*animation: notification-banner 5s linear;*/
}
