html, body {
    height: 100%;
    background-color: #eeeeee;
    font-family: 'sans serif';
}
a {
  text-decoration: none;
}

.footer, .portainer-navbar {
    background-color:#30426a;
    color:white;
}

.border-primary {
    border-color: #337ab7 !important;
}

.bg-dark, .btn-dark {
  background-color: #557fbb !important;
  border-color: #557fbb;
}

.bg-primary, .btn-primary {
    background-color: #337ab7 !important;
    border-color: #337ab7;
}

.btn-outline-primary {
  color: #337ab7 !important;
  border-color: #337ab7;
}

.btn-outline-primary:hover {
  background-color: #337ab7 !important;
  border-color: #337ab7;
  color: white !important;
}

.bg-secondary, .btn-secondary {
  background-color: #30426a !important;
  border-color: #30426a;
}

.text-secondary {
  color: #30426a !important;
}

.text-primary {
    color: #337ab7 !important;
}

.spinner-div {
    display: inline-block;
    padding: 20px;
  }
  .spinner-circle {
    width: 56px;
    height: 56px;
    position: relative;
    margin: 20px;
  }
  .spinner {
    height: 100%;
    width: 100%;
    border-radius: 50%;
    border: 5px solid rgba(0,0,0,0.3);
    border-right: 5px solid #337ab7;
    animation: rotate--spinner 1.6s linear infinite;
    box-sizing: border-box;
  }
  .spinner-img {
    position: absolute;
    left: 50%; top: 50%;
    transform: translate(-50%,-50%);
    font-size: 50px;
  }
  
  @keyframes rotate--spinner {
    from {
      transform: rotate(0);
    }
    to {
      transform: rotate(360deg);
    }
  }

.selected-flag {
  border: 5px solid #337ab7;
}

.dot {
  width: 12px;
  height: 12px;
  display: inline-block;
  border-radius: 50%;
  color: #3bd671;
  background: #3bd671;
  position: relative;
  -ms-transform: none;
  transform: none;
}
