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;
}

/* password checker */
input.input-validation-error {
    border-color: red;
    outline: none;
    box-shadow: 0 0 4px red;
}

.is-invalid {
    border-color: red !important;
    box-shadow: 0 0 4px red !important;
}

#password-rules li {
    margin-bottom: 5px;
}

.valid .icon {
    color: green;
}

.invalid .icon {
    color: red;
}
/* password checker */

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1 0 auto;
}

.modal-news {
    max-width: 500px; /* smaller dan standaard */
    height: 70vh;
}

    .modal-news .modal-content {
        /*height: 20%;*/
        display: flex;
        flex-direction: column;
    }

    .modal-news .modal-body {
        max-height: 170vh;
        overflow-y: auto;
        flex-grow: 1;
    }

    .modal-header {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .modal-header .modal-title {
        font-size: 1.5rem;
        font-weight: 700;
    }
/* 
    wrapper for national champions 
*/

.nc-badge {
    font-size: 0.65em;
    font-weight: bold;
    color: #d4af37;
    margin-left: 2px;
    vertical-align: super;
}