html, body{
background-color: white;
font-family: 'Rubik', sans-serif;
color:#535353;
font-size: 15px;
height: 100%;
width: 100%;
}
.center-div {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  min-width:300px;
}
.hr-primary-c{
    width: 50px;
    border: 2px solid rgba(18, 58, 190, 0.877);
    opacity: .7;
}
.odjava-btn {
    position: fixed;
    top: 30px;
    right: 30px;
    color: #C0203C !important;
    text-decoration: none !important;
}
#snackbar {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    border-left:5px solid #009456;
        text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 9999;
    right: 5%;
    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;}
  }
  
  .dot-flashing {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: none;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background-color: #5256A3;
    color: #5256A3;
    animation: dotFlashing 1s infinite linear alternate;
    animation-delay: .5s;
}

.dot-flashing::before,
.dot-flashing::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
}

.dot-flashing::before {
    left: -12px;
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background-color: #5256A3;
    color: #5256A3;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 0s;
}

.dot-flashing::after {
    left: 12px;
    width: 7px;
    height: 7px;
    border-radius: 5px;
    background-color: #5256A3;
    color: #5256A3;
    animation: dotFlashing 1s infinite alternate;
    animation-delay: 1s;
}

@keyframes dotFlashing {
    0% {
        background-color: #5256A3;
    }

    50%,
    100% {
        background-color: #C6C6C6;
    }
}
.lds-ripple {
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: inline-block;
  width: 80px;
  height: 80px;
  z-index:99999;
}
.lds-ripple div {
  position: absolute;
  border: 4px solid #5256A3;
  opacity: 1;
  border-radius: 50%;
  animation: lds-ripple 1.5s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.lds-ripple div:nth-child(2) {
  animation-delay: -0.5s;
}
@keyframes lds-ripple {
  0% {
    top: 36px;
    left: 36px;
    width: 0;
    height: 0;
    opacity: 1;
  }
  100% {
    top: 0px;
    left: 0px;
    width: 72px;
    height: 72px;
    opacity: 0;
  }
}
.overlay{
  background-color: white;
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  z-index:9999;
}

#app{
  margin-top:10px;
}
@media only screen and (max-width: 600px) {
  body {
   font-size: 13px;
  }
  .table{
    font-size: 12px;
  }
  .dateInput{
width: 100%;
  }
}
.bottom-navigation-bar{
  text-align: center;
  background-color: white;
  border-top:solid 2px #5256A3;
  margin: 0;
  position: fixed;
  bottom:0;
  right: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  z-index: 9999;
}
.bottom-navigation-bar li{
width: 33.33%;
}
.bottom-navigation-bar li a{
  background-color: white;
color:black;
}
.bottom-navigation-bar ul{
  list-style-type: none;
  width: 100%;
  margin:0;
padding:0;
display: flex;
height: 60px;
align-items: center;
justify-items:space-evenly;
}
.active{
  color: #5256a3 !important;;
}