/*
Theme Name: Niek Brouw portal
Theme URI: portal.niekbrouw.nl
Author: Arture
Author URI: https://arture.nl
Description: Maatwerk thema voor het portal van Niek Brouw
Version: 0.1.0
*/


body main {
  padding-top: 60px;
  padding-bottom: 40px;
}

.navbar {
    background-color: #f5f5f5;
    position: relative;
}

/* Autocomplete */
.autocomplete {
    position: relative;
    display: inline-block;
    width: calc(100% - 5px);
    padding: 0px !important;
}
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    overflow: scroll;
    max-height: 200px;
}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    text-align:left;
}
.autocomplete-items div:hover {
    /*when hovering an item:*/
    background-color: #e9e9e9;
}
.autocomplete-active {
    /*when navigating through the items using the arrow keys:*/
    background-color: DodgerBlue !important;
    color: #ffffff;
}

.form-signin {
  max-width: 330px;
  padding: 15px;
  margin: 0 auto;
}
.form-signin label{
  margin-top: 15px;
  width: 100%;
}
.form-signin .form-signin-heading,
.form-signin .checkbox {
  margin-bottom: 10px;
}
.form-signin .checkbox {
  font-weight: normal;
}
.form-signin .form-control {
  position: relative;
  height: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 10px;
  font-size: 16px;
}
.form-signin .form-control:focus {
  z-index: 2;
}
.form-signin input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}
.form-signin input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#authenticator {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  display: block;
  width: 100%;
  padding: .375rem .75rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: .25rem;
  transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}

/* Ajax loader */
.ajax_loader {
		border: 5px solid #f4f4f4;
    border-top: 5px solid #0587c3;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin: 50px auto;
    clear: both;
    text-align: center;
    position: absolute;
    left: 0;
    right: 0;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bootstrap */
.btn-success {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.1);
    background-color: #a6d549;
    border: 2px solid #96c632;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
    box-shadow: 0 1px 2px 0 rgba(0,0,0,0.2);
}
.table .thead-dark th {
    background-color: #30373d;
    border-color: #30373d;
}

.footer {
    position: relative;
    bottom: 0;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background-color: #f5f5f5;
}