/*******************************************************
*
Theme Name:		definition of standard window design
Theme URI:		---
Description:	---
Version:      	7.8.2
Author:        	KPN
License:       	none (public domain)
Tags:          	

*
*******************************************************/

/********************************************************
	Standard definition of window design
********************************************************/
.stdWindowDesign {
    position: relative;
    background-color: paleturquoise;
    color: blueviolet;
    padding: 10px;
    border: 3px solid #9494ED;
    border-radius: 10px;
    font-family: 'Comic Sans MS', Arial, sans-serif;
    overflow-x: auto;
    overflow-y: hidden;
    z-index: 1;
    width: 100%;
    height: auto;
}

.stdWindowPageDesign {
    position: relative;
    border-width: 5px;
    display: none;
    overflow-x: auto;
}

.stdWindowHeader {
    text-align: center;
    margin-bottom: 5px;
    justify-content: center;
    font-size: 1.4em;
    font-stretch: extra-expanded;
    font-weight: bold;
    height: auto;
    white-space: pre-wrap;
    margin-bottom: 8px;
}

.stdWindowText {
    text-align: right;
    width: 100%;
    height: auto;
    align-content: center;
    font-size: 1em;
    font-weight: normal;
    margin-bottom: 5px;
}

.stdWindowInputFieldMultiLine {
	position: relative;
    text-align: left;
    padding-left: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 7px;
    border: 1px solid #555555;
    border-radius: 5px;
    width: 100%;
    height: 90%;
    min-height: 1.5em;
    background-color: whitesmoke;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 1em;
    white-space: pre-wrap;
    color: black;
    overflow-x: hidden;
    overflow-y: auto;
    outline: none;
    border-style: inset;
    margin-bottom: 5px;
    cursor: text;
}

.stdWindowInputFieldSingleLine {
	position: relative;
	text-align: left;
    padding-left: 7px;
    padding-top: 2px;
    padding-bottom: 2px;
    padding-right: 7px;
    border: 1px solid #555555;
    border-radius: 5px;
    width: 100%;
    height: 90%;
    min-height: 1.5em;
    background-color: whitesmoke;
    font-family: Consolas, 'Courier New', monospace;
    font-size: 1em;
    white-space: nowrap;
    color: black;
    overflow: hidden;
    border-style: inset;
    outline: none;
    margin-bottom: 5px;
    cursor: text;
}

.stdWindowInputFieldSingleLine br {
	display: none;
}

.stdWindowFooter {
    position: relative;
    text-align: center;
    justify-content: center;
    font-size: 1.2em;
    font-weight: normal;
    margin-top: 5px;
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1 / -1;
    -ms-grid-row: auto;
    grid-row: auto;
	white-space: pre-wrap;
	margin-top: 8px;
}


/********************************************************
	Standard definition of message window
********************************************************/
.stdMessageWindow {
    display: none;
    -ms-grid-columns: min-content 10px 1fr;
    grid-template-columns: min-content 10px 1fr;
    -ms-grid-rows: auto 5px auto 10px auto;
    grid-template-rows: auto 5px auto 10px auto;
    width: auto;
    max-width: 95%;
    height: auto;
    position: absolute;
    left: 50%;
    top: 60%;
    margin-top: auto;
    margin-left: auto;
    font-size: 1em;
    padding: 20px;
    padding-bottom: 15px;
    justify-content: center;
    align-content: center;
    justify-items: center;
    align-items: center;
    z-index: 999;
}

.stdMessageWindowText {
	width: 100%;
	height: auto;
	font-size: 1em;
	font-weight: normal;
	white-space: pre-wrap;
	text-align: center;
	-ms-grid-column: 3;
	grid-column: 3;
	-ms-grid-row: 1;
	grid-row: 1;
}

.stdMessageWindowBitmapContainer {
	width: auto;
	height: 100%;
	-ms-grid-column: 1;
	grid-column: 1;
	-ms-grid-row: 1;
	grid-row: 1;
}

.stdMessageWindowBitmap {
	height: 100%;
	width: 100%;
    min-width: 60px;
    object-fit: contain;
}

.stdMessageWindowButtonGrid {
    display: -ms-grid;
    display: grid;
    width: auto;
    height: auto;
    -ms-grid-columns: min-content 5px min-content 5px min-content;
    grid-template-columns: min-content 5px min-content 5px min-content;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    justify-content: center;
    -ms-grid-column-align: center;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
    grid-column: 1 / span 3;
}

/********************************************************
	Standard definitions for grid elements
********************************************************/
.gridElementFullWidthFullHeight {
	width: 100%;
	height: 100%;
}

.gridElementFullWidth {
	width: 100%;
	height: auto;
	max-height: 100%;
}

.gridElementFullHeight {
	width: auto;
	max-width: 100%;
	height: 100%;
}

/********************************************************
	Standard button for menu
********************************************************/
.mainMenuButton {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 35px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 1em;
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
    white-space: nowrap;
    text-align: left;
    border: 1px solid black;
    border-radius: 5px;
    border-style: solid;
    background-color: #555555;
    color: paleturquoise;
    cursor: pointer;
    overflow: hidden;
    z-index: 3;
    outline: none;
    opacity: 0.9;
    -ms-grid-column: 1;
    grid-column: 1;
    white-space: nowrap;
    margin-bottom: 1px;
}

.mainMenuButton:nth-child(1) {-ms-grid-row: 1; grid-row: 1}
.mainMenuButton:nth-child(2) {-ms-grid-row: 2; grid-row: 2}
.mainMenuButton:nth-child(3) {-ms-grid-row: 3; grid-row: 3}
.mainMenuButton:nth-child(4) {-ms-grid-row: 4; grid-row: 4}
.mainMenuButton:nth-child(5) {-ms-grid-row: 5; grid-row: 5}
.mainMenuButton:nth-child(6) {-ms-grid-row: 6; grid-row: 6}
.mainMenuButton:nth-child(7) {-ms-grid-row: 7; grid-row: 7}
.mainMenuButton:nth-child(8) {-ms-grid-row: 8; grid-row: 8}
.mainMenuButton:nth-child(9) {-ms-grid-row: 9; grid-row: 9}
.mainMenuButton:nth-child(10) {-ms-grid-row: 10; grid-row: 10}
.mainMenuButton:nth-child(11) {-ms-grid-row: 11; grid-row: 11}
.mainMenuButton:nth-child(12) {-ms-grid-row: 12; grid-row: 12}
.mainMenuButton:nth-child(13) {-ms-grid-row: 13; grid-row: 13}
.mainMenuButton:nth-child(14) {-ms-grid-row: 14; grid-row: 14}
.mainMenuButton:nth-child(15) {-ms-grid-row: 15; grid-row: 15}
.mainMenuButton:nth-child(16) {-ms-grid-row: 16; grid-row: 16}
.mainMenuButton:nth-child(17) {-ms-grid-row: 17; grid-row: 17}
.mainMenuButton:nth-child(18) {-ms-grid-row: 18; grid-row: 18}
.mainMenuButton:nth-child(19) {-ms-grid-row: 19; grid-row: 19}
.mainMenuButton:nth-child(20) {-ms-grid-row: 20; grid-row: 20}
.mainMenuButton:nth-child(21) {-ms-grid-row: 21; grid-row: 21}
.mainMenuButton:nth-child(22) {-ms-grid-row: 22; grid-row: 22}
.mainMenuButton:nth-child(23) {-ms-grid-row: 23; grid-row: 23}
.mainMenuButton:nth-child(24) {-ms-grid-row: 24; grid-row: 24}
.mainMenuButton:nth-child(25) {-ms-grid-row: 25; grid-row: 25}
.mainMenuButton:nth-child(26) {-ms-grid-row: 26; grid-row: 26}
.mainMenuButton:nth-child(27) {-ms-grid-row: 27; grid-row: 27}
.mainMenuButton:nth-child(28) {-ms-grid-row: 28; grid-row: 28}
.mainMenuButton:nth-child(29) {-ms-grid-row: 29; grid-row: 29}
.mainMenuButton:nth-child(30) {-ms-grid-row: 30; grid-row: 30}
.mainMenuButton:nth-child(31) {-ms-grid-row: 31; grid-row: 31}
.mainMenuButton:nth-child(32) {-ms-grid-row: 32; grid-row: 32}
.mainMenuButton:nth-child(33) {-ms-grid-row: 33; grid-row: 33}
.mainMenuButton:nth-child(34) {-ms-grid-row: 34; grid-row: 34}
.mainMenuButton:nth-child(35) {-ms-grid-row: 35; grid-row: 35}
.mainMenuButton:nth-child(36) {-ms-grid-row: 36; grid-row: 36}
.mainMenuButton:nth-child(37) {-ms-grid-row: 37; grid-row: 37}
.mainMenuButton:nth-child(38) {-ms-grid-row: 38; grid-row: 38}
.mainMenuButton:nth-child(39) {-ms-grid-row: 39; grid-row: 39}
.mainMenuButton:nth-child(40) {-ms-grid-row: 40; grid-row: 40}
.mainMenuButton:nth-child(41) {-ms-grid-row: 41; grid-row: 41}
.mainMenuButton:nth-child(42) {-ms-grid-row: 42; grid-row: 42}
.mainMenuButton:nth-child(43) {-ms-grid-row: 43; grid-row: 43}
.mainMenuButton:nth-child(44) {-ms-grid-row: 44; grid-row: 44}
.mainMenuButton:nth-child(45) {-ms-grid-row: 45; grid-row: 45}
.mainMenuButton:nth-child(46) {-ms-grid-row: 46; grid-row: 46}
.mainMenuButton:nth-child(47) {-ms-grid-row: 47; grid-row: 47}
.mainMenuButton:nth-child(48) {-ms-grid-row: 48; grid-row: 48}
.mainMenuButton:nth-child(49) {-ms-grid-row: 49; grid-row: 49}
.mainMenuButton:nth-child(50) {-ms-grid-row: 50; grid-row: 50}

    .mainMenuButton:active {
        border-style: inset;
        background-color: cyan;
        color: #555555;
    }

    .mainMenuButton:disabled {
        background-color: gainsboro;
        color: #555555;
        cursor: initial;
        cursor: default;
    }

    .mainMenuButton:hover {
        opacity: 1;
    }

.mainMenuButtonContainerWithBitmap {
    width: 100%;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr min-content;
    grid-template-columns: 1fr min-content;
    -ms-grid-rows: auto;
    grid-template-rows: auto;
    justify-content: space-between;
    align-items: center;
}

.mainMenuButtonBitmap {
	position: relative;
	height: 80%;
    width: auto;
    padding-left: 10px;
    -ms-grid-column: 2;
    grid-column: 2;
    -ms-grid-row: 1;
    grid-row: 1;
}

/********************************************************
	Standard button for navigation in lists
********************************************************/
.buttonNavigate {
    position: relative;
    text-align: center;
    border: 2px outset #555555;
    border-radius: 5px;
    background-color: #555555;
    color: paleturquoise;
    cursor: pointer;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 8px;
    padding-right: 8px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 0.7em;
    font-weight: bold;
    width: 100%;
    min-width: 50px;
    height: 100%;
    overflow: hidden;
    outline: none;
    grid-row: 1;
    -ms-grid-row: 1;
}

    .buttonNavigate:active {
        border-style: inset;
    }

    .buttonNavigate:disabled {
        background-color: gainsboro;
        color: #555555;
        cursor: initial;
        cursor: default;
    }
    
    .buttonNavigate:nth-child(1) {-ms-grid-column: 1; grid-column: 1}
    .buttonNavigate:nth-child(2) {-ms-grid-column: 3; grid-column: 3}
    .buttonNavigate:nth-child(3) {-ms-grid-column: 5; grid-column: 5}
    .buttonNavigate:nth-child(4) {-ms-grid-column: 7; grid-column: 7}
    .buttonNavigate:nth-child(5) {-ms-grid-column: 9; grid-column: 9}
    .buttonNavigate:nth-child(6) {-ms-grid-column: 11; grid-column: 11}
    .buttonNavigate:nth-child(7) {-ms-grid-column: 13; grid-column: 13}
    .buttonNavigate:nth-child(8) {-ms-grid-column: 15; grid-column: 15}

/********************************************************
	Standard button for all other purposes
********************************************************/
.button {
    position: relative;
    text-align: center;
    border: 2px outset #555555;
    border-radius: 5px;
    background-color: #555555;
    color: paleturquoise;
    cursor: pointer;
    padding-left: 10px;
    padding-right: 10px;
    margin-bottom: 5px;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 100%;
    width: 100%;
	min-width: 120px;
    height: auto;
    min-height: 25px;
    display: none;
    overflow: hidden;
    z-index: 3;
    outline: none;
    grid-row: 1;
    -ms-grid-row: 1;
}

    .button:active {
        border-style: inset;
    }

    .button:disabled {
        background-color: gainsboro;
        color: #555555;
        cursor: initial;
        cursor: default;
    }

    .button:nth-child(1) {-ms-grid-column: 1; grid-column: 1}
    .button:nth-child(2) {-ms-grid-column: 3; grid-column: 3}
    .button:nth-child(3) {-ms-grid-column: 5; grid-column: 5}

.progressBar {
	position: relative;
	width: 100%;
	height: auto;
	border: 1px inset black;
	border-radius: 0px;
	background: #eee url(Bitmaps/progress.png) 100% 0 repeat-y;
	padding: 2px;
	z-index: 999;		
}

.cookieMessage {
	position: fixed;
	display: -ms-grid;
	display: grid;
	left: 0px;
	top: 0px;
    background-color: #555555;
	color: whitesmoke;
	opacity: 0.8;
	width: calc(100% - 10px);
	height: auto;
	padding: 10px;
	margin: 5px;
	grid-template-columns: 100%;
	grid-template-rows: auto 10px auto;
	-ms-grid-columns: 100%;
	-ms-grid-rows: auto 5px auto;
	justify-content: center;
	z-index: 999;
}

.cookieMessageText {
	color: whitesmoke;
	background-color: transparent;
	-ms-grid-column: 1;
	-ms-grid-row: 1;
	grid-column: 1;
	grid-row: 1;
	-ms-grid-column-align: center;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 0.8em;
    text-align: center;
    width: 100%;
    height: auto;
    white-space: pre-wrap;
}

.cookieMessageButton {
	display: block;
	color: #555555;
	background-color: whitesmoke;
	-ms-grid-column: 1;
	-ms-grid-row: 3;
	grid-column: 1;
	grid-row: 3;
	-ms-grid-column-align: center;
    width: auto;
    height: auto;
    text-align: center;
    border: 2px outset #555555;
    border-radius: 5px;
    cursor: pointer;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 1.1em;
    overflow: hidden;
    outline: none;
}

    .cookieMessageButton:active {
        border-style: inset;
    }

