body {
  font-family: 'Raleway', 'Roboto', sans-serif !important;
}

a {
  color: inherit;
}

a:hover {
  color: inherit;
}

.navbar-indihu {
  background: #083d77;
  width: 100%;
}

.navbar-dark .navbar-nav .nav-link .color-white{
  color: #fff;
}

.nav-link-modal {
  cursor: pointer;
}

.background-image {
  position: fixed;
  background: url("../img/background2.jpg") no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  width: 100%;
  height:100%;
  z-index: -1;
}

.color-white {
  color: white;
}

.dropzone {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  background: #083d77 !important;
  color: #fff;
  min-height: 250px !important;
}

.diagram {
  display: block;
  min-height: 250px;
  background: url("../img//diagram_white.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.btn-primary {
  background: #083d77;
  border: 2px solid #083d77 !important;
}

.btn-primary:hover, .btn-primary:active, .btn-primary:focus  {
  color: #083d77 !important;
  background: #fff !important;
  border: 2px solid #083d77 !important;
  box-shadow: none !important;
}

.footer-item {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.tips {
  background: #083d77;
  border-radius: 4px;
  transition: all .2s ease-in;
}

.modal-link:hover {
  cursor: pointer;
  text-decoration: underline;
}

.modal-content a {
  text-decoration: underline;
}

.modal-content a:hover {
  text-decoration: none;
}

#snackbar {
  position: absolute;
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 16px;
  position: fixed;
  z-index: 1;
  left: 50%;
  bottom: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {bottom: 0; opacity: 0;} 
  to {bottom: 30px; opacity: 1;}
}

@keyframes fadein {
  from {bottom: 0; opacity: 0;}
  to {bottom: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {bottom: 30px; opacity: 1;} 
  to {bottom: 0; opacity: 0;}
}

@keyframes fadeout {
  from {bottom: 30px; opacity: 1;}
  to {bottom: 0; opacity: 0;}
}