
.margin {
    margin-top: 10px;
}

/* :focus: stijling enkel toepassen als we in het veld staan
	text-transform uppercase = alle letters als hoofdletters weergeven (als we dus in het veld staan) */

#via:focus { 
	text-transform: uppercase;
}

.btn-blauw { 
    background-color: #111111;
    border-color: #111111;    
    &.focus,
    &.hover,
    &.active,
    &.selected,
    &:hover {
        background-color: lighten(#111111,25%) !important;
        border-color:lighten(#111111,25%) !important;
    }
}

h3 {
    color: #111111;
}

p {
    color: #111111;
}

html, body, .container {
    padding: 0; 
    margin : 0;
    font-size: 16px;
}

.alert-oranje {
    background-color: #F9F9F9 !important;
    border-color: #E8EAEA !important;
    color: #FDB415 !important;
}
.alert-oranje a {
    color: #6E2585 !important;
}