.flex-container { /* 2 tabellen naast elkaar */
    display: flex;
    margin: 0px;
}
.flex-child {
    flex: 1;
}  
.flex-child:first-child {
    /*margin-right: 20px;*/
}
.button {
    border: 1px solid;
    background-color: white;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
label, input {
    display:block;
}
label {
    margin-bottom: 0px;
}
input[type=text] {
    box-sizing: border-box;
    border: 1px solid #aaa;
    font-size: 1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-appearance: textfield;
}
input[type=select] {
    padding: 5px;
    box-sizing: border-box;
    border: 1px solid #aaa;
    font-size: 1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
    -webkit-appearance: textfield;
}
select {
    border: 1px solid #aaa;
    background-color: white;
    font-size: 1.1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
input[type=submit] {
    height: 1.7vw;
    border: 1px solid #aaa;
    background-color: white;
    font-size: 1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
input[type=button] {
    border: 1px solid #aaa;
    background-color: white;
    font-size: 1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
button {
    border: 1px solid #aaa;
    background-color: white;
    font-size: 1em;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
input:focus {
    outline: none;
    box-shadow: none!important;
}
.aligninput {
    display: inline-block;
}
.button-dl { /* In de tabel */
    background-color: white;
    color: blue;
    font-size: 1vw;
    text-align: left;
    width: 10vw;
    border: none;
    cursor: pointer;
}
#button-sub {
    height: 1.7vw;
    background-color: white;
    border: 1px solid;
    border-color: #b3b3b3;
}
tfoot input { /*datatables*/
    width: 100%;
    padding: 3px;
    box-sizing: border-box;
    border: 2px solid;
    border-color: black;
    background: white;
    /*height: 26px;*/
}
input { 
    /*height: 26px;*/
    background-color: white;
    border: 1px solid #aaa;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
table.dataTable.hover tbody tr:hover, table.dataTable.display tbody tr:hover { /*datatables*/
    background-color:#f2f2f2 ;
    cursor: pointer;
}
/* Stijl selectbox aantal pagina's */
.dataTables_wrapper .dataTables_length select {
    border: 1px solid #aaa;
    font-size: 1.1vw;
    text-align: center;
    padding: 2px;
    background-color: white;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
}
/* Definieert de positie van de sorting pijltjes in de header */
table.dataTable thead .sorting, table.dataTable thead .sorting_asc, table.dataTable thead .sorting_desc, table.dataTable thead .sorting_asc_disabled, table.dataTable thead .sorting_desc_disabled {
    cursor: pointer;
    *cursor: hand: ;
    background-repeat: no-repeat;
    background-position: center left;
}
/* Stijl geselecteerde rij */
table.dataTable tbody tr.selected {
    color: black;
    /*background-color: #eeeeee !important;*/
}
/* Formaat van de thumbnails */
.table-container img {
    width: 6vw;
    /*height: auto;*/
    max-height: 8vh;
    object-fit: contain;
}
.table-center {
    width: 95vw;
    margin-left: auto;
    margin-right: auto;
}
/* Modal download */
.modal-dialog {
    max-width: 65%;
    max-height:95% !important;
}
.modal-content {
    background-color: #fff1cb;
    margin: 2% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 100%; 
    height: 100%;
}
.modal-header {
    height: 5% !important;
    border-bottom: 0 none;
}
/*
.modal-footer {
    justify-content: center;
    border-top: 0 none;.
}
*/
/* iFrame */
.container-iframe {
    position: relative;
    overflow: hidden;
    width: 95%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
   /* padding-top: 60%;*/
    border: #ffe0b3;
}
/* Style the iframe to fit in the container div with full height and width */
.responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: none;
}
/* Help modal */
.modalHelp {
    display: none;
    position: fixed;
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: #fff1cb;
    background-color: rgb(0,0,0); 
    background-color: rgba(0,0,0,0.4); 
}
.modal-help {
    background-color: #fff1cb;
    margin: 2% auto; 
    padding: 20px;
    border: 1px solid #888;
    width: 85%;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    border-radius: 5px;
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}

@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
.closeHelp {
    color: red;
    float: right;
    font-size: 3em;
    font-weight: bold;
    opacity: 3;
}
.closeHelp:hover, .closeHelp:focus {
    color: red;
    text-decoration: none;
    cursor: pointer;
} 
