:root {
    --blauw: #11435e;
    --bbblauw: #3b9ed4;
    --notwhite: #f9f9f9;
    --grijs: #888888;
}

* {
    font-family: 'Fira Sans', sans-serif;
    line-height: 1.7em;
    box-sizing: border-box;
    position: relative;
}

html {
    font-size: 16px;
}

html.login {
    font-size: 20px;
}

html.login body {
    background-image: url("/static/img/lente.jpg");
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    min-height: 100%;
    background-size: cover;
}

html.login form {
    padding: 2rem;
    background-color: var(--notwhite);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
}

html.station .wrapper {
    padding: 1rem 2rem 1.5rem;
    background-color: var(--notwhite);
    border-radius: 0.5rem;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 1rem;
    justify-content: space-between;
}

html.station form {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: baseline;
    gap: 1rem;
}

form input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.logowrap {
    background-color: var(--bbblauw);
    color: #fff;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    align-items: center;
    width: 8rem;
    padding: 0.4rem 0.3rem;
    margin-bottom: 1rem;
    height: 8rem;
    gap: 0.2rem;
}

.logowrap span {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1rem;
    margin-bottom: 1rem;
}

.icon-bblogo {
    fill: currentColor;
    width: 5rem;
    height: 5rem;
}

fieldset input,
select {
    border: 0.05rem solid #c5cbcf;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    padding: 0 0.7rem;
    line-height: 1rem;
    width: 18rem;
    font-weight: 400;
    height: 2.5rem;
    color: #555555;
}

select {
    width: 11rem;
}

button[type="submit"],
a.logout {
    flex-wrap: nowrap;
    border-radius: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1rem;
    background-color: var(--blauw);
    border: 0.05rem solid var(--blauw);
    cursor: pointer;
    padding: 0.5rem 1.7rem;
    margin-top: 0.4rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row;
    gap: 0.3rem;
    color: var(--notwhite);
    text-decoration: none;
    height: 2.4rem;
}

button[type="submit"]:hover,
a.logout:hover {
    color: var(--notwhite);
    background-color: var(--bbblauw);
    border-color: var(--bbblauw);
}

form#login input:placeholder-shown~label,
form select:not(.active)~label,
input:placeholder-shown~label {
    display: none;
}

form ::-webkit-input-placeholder {
    font-family: var(--fontfam);
    letter-spacing: normal;
    color: var(--grijs);
    font-weight: 400;
}

form ::-moz-placeholder {
    font-family: var(--fontfam);
    letter-spacing: normal;
    color: var(--grijs);
    font-weight: 400;
}

fieldset label {
    font-size: 0.7rem;
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    background: linear-gradient(180deg, var(--notwhite) 50%, #fff 50%);
    padding: 0 0.2rem;
    color: #666;
    font-weight: 400;
    z-index: 3;
}

.station fieldset label {
    font-size: 0.8rem;
    top: -0.6rem;
}

:focus~label {
    display: block !important;
}

input:focus::-webkit-input-placeholder {
    color: transparent !important;
}

input:focus:-moz-placeholder {
    color: transparent !important;
}

input:focus::-moz-placeholder {
    color: transparent !important;
}

input:focus:-ms-input-placeholder {
    color: transparent !important;
}

.danger{
    color: red;
}

#flashed {
    position: fixed;
    bottom: 0;
}

button#print {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    border-radius:4rem;
    border:unset;
    background-color: var(--blauw);
    padding: 1rem;
}

button#print span.material-symbols-outlined {
    font-size: 4rem;
    color: var(--notwhite)
}


.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24
}

@media print {
    button#print {
        display: none;
    }
}
  