body {
    background-image: url(../img/bg.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
}

#bg {
    min-height: 100vh;
    background-image: url(../img/raster.png);
    background-attachment: fixed;
    height: 100%;
    padding-top: 10px;
    padding-bottom: 10px;
}


#container {
    max-width: 900px;
    margin: auto;
    overflow: auto;
    
}

#head {
    background-color: rgba(255,255,255,0.5);
    padding: 0px 0px 0px 0px;
}
#head .titleBg {
    background-image: url(../img/header.jpg);
}
#head .title {
    background-image: url(../img/header_lines.png);
    background-position: left center;
}
#head .topBar {
    display:flex;
    justify-content: space-between;
    padding: 5px;
    background-color: white;
}
#head .topBar a {
    color: #333;
    margin-left: 10px;
    margin-right: 10px;
    font-size: 12px;
}
#head .title {
    height: 100px;
    display: flex;
    align-items: center;
    font-size: 30px;
    font-family: "Open Sans", "Trebuchet MS", trebuchet, arial, sans-serif;
    font-weight: 800;
}
#head .title a {
    color: white;
    text-decoration:none;
    background-color: rgba(0,0,0, 0.25);
    padding: 0px 15px 0px 45px;
    border-radius: 0px 5px 5px 0px;
}

#stagesWrapper {
    background-color: rgba(255,255,255,0.5);
    padding: 5px;
    padding-bottom: 0;
}

#stages {
    background-color: white;
    padding: 10px 40px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#stages .bullet {
    margin-right: 10px;
    font-size: 12px;
    width: 25px;
    height: 25px;
    border-radius: 25px;
    display: flex;
    justify-content:center;
    align-items: center;
    background-color: #e5f1fb;
    color: #3d83ce;
    flex-shrink: 0;
}
#stages .item {
    font-weight: 300;
    margin-right: 20px;
    overflow: hidden;
    white-space: nowrap;
}
#stages .bullet.current {
    background-color: #3d83ce;
    color: white;
}
#stages .bullet.done {
    background-color: #a2c83d;
    color: white;
}


#stages .item.abort {
    margin-right: 0px;
    flex-grow: 1;
    text-align: right;
    overflow: visible;
}
#stages a {
    color: #b82b22;
}




#contentWrapper {
    background-color: rgba(255,255,255,0.5);
    padding: 5px;
}
#content {
    padding: 20px 40px 40px 40px;
    min-height: 600px;
    background-color: white;
}

h1 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 24px;
}

.abonnementLabel {
    display: block;
    margin-bottom: 10px;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: #e5f1fb;
}
.abonnementLabel input {
    margin-right: 10px;
}


.dataCheckSummary {
    margin-bottom: 20px;
    background-color: #ededed;
    padding: 20px;
    border-radius: 5px;
    line-height: 2em;
}
.dataCheckSummary .row div:nth-child(1) {
    text-align: right;
}
.dataCheckSummary .row div:nth-child(2) {
    text-align: left;
    font-weight: bold;
}


#footNotes {
    text-align: center;
    background-color: rgba(255,255,255,0.5);
    padding-bottom: 5px;
    font-size: 12px;
}


/* Adjustments for small screens */
@media screen and (max-width: 600px) {

    /* Less padding left/right */
    #content {
        padding-left: 10px;
        padding-right: 10px;
    }
    #stages {
        background-color: white;
        padding-left: 10px;
        padding-right: 10px;
    }
    #head .title a {
        padding-left: 15px;
        padding-right: 15px;
        font-size: 20px;
    }

    /* Hide stages texts, except for logout-link */
    #stages .bullet,
    #stages .item {
        display: none;
    }
    #stages .bullet.current,
    #stages .item.current {
        display:flex;
    }
    #stages .item.abort {
        display: block;
    }

}

/* Fix bootstrap's styling op date input velden */
input[type="date"] {
    padding: 0px 12px 0px 12px;
}


#maintenanceWarning {
    padding: 20px;
    margin-bottom: 10px;
    text-align: center;
    font-size: 30px;
    background-color: white;
}

#version {
    margin-top: 10px;
    text-align: center;
    font-size: 10px;
}