html{
    position: relative;
    min-height: 100%;
    height: 100%;
}
body{
    /* In de volgende regel staat de locatie van de achtergrondafbeelding t.o.v. dit bestand. */
    /*background: url('background.jpg') no-repeat;*/
    /*background-size: cover;*/

    margin: 0;
    padding: 0;

    /* Margin bottom by footer height */
    /*margin-bottom: 60px;*/
    /*min-height: 100%;
    max-height: 100%;*/
    height: 100%;

    overflow-x: hidden;
}

#container{
    display: none;
}

.page-header{
    margin-top: 10px !important;
    margin-bottom: 0 !important;
}

iframe{
    display: none;
    width: 100%;
    height: 100%;
    border: 0;
    background: white;
}

#imgfalse, #imgtrue{
    display: none;
    margin: 0 auto;
}

canvas{
    border: 2px solid black;
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 50px;
    margin-left: auto;
    margin-right: auto;
}

.imageportrait{
    height: calc(100% - 60px);
    width: auto;
}

.imagelandscape{
    height: auto;
    width: 100%;
}

table, thead, tbody, tr, td, th{
    border: none !important;
}

td,th{
    line-height: 1 !important;
}

.footer {
    position: fixed;
    bottom: 0;
    width: 100%;
    min-height: 60px;
    /*background-color: #f5f5f5;*/
}

#myProgress {
    position: absolute;
    width: 100%;
    height: 5px;
}
#myBar {
    position: absolute;
    width: 0%;
    height: 100%;
    background-color: #1E6D41;
}

#error{
    display: none;
    position: fixed;
    height: 60px;
    width: 100%;
    background-color: red;
    text-align: center;
    color: white;
}



/* NEWS TICKER */
#ticker {
    /*display: flex;*/
    display: none;
    white-space: nowrap;
}
.ticker__list {
    display: flex;
    animation: ticker 15s infinite linear;
}
#ticker:hover .ticker__list {
    /*animation-play-state: paused;*/
}
.ticker__item {
    flex-grow: 1;
}

.ticker__item .footertext-style {
    padding: 0 30px;
    border-right: solid black 1px;
}

#noticker {
    display: block;
}

@-moz-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}
@-webkit-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}
@-o-keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}
@keyframes ticker {
    100% {
        transform: translateX(-100%);
    }
}