﻿:root{
    --PSK_Green:#68bd45;
    --PSK_LBlue:#98d6d0;
    --PSK_DBlue:#0f233b;
}
html, body {
    background-color: var(--PSK_DBlue);
    color: white;
    height: 100%;
    width: 100%;
}
.fullsized {
    height: inherit;
    max-height: inherit;
    width: inherit;
}
.grid {
    color: black;
    background-color: none;
    margin-left:auto;
    margin-right:auto;
}
    .grid th {
        background-color: var(--PSK_DBlue);
        color: white;
        text-align: left;
    }
    .grid tr {
        background-color: var(--PSK_LBlue);
        color: black;
    }
    .grid .alt {
        background-color: var(--PSK_LBlue);
        color: black;
    }
    .grid tr:hover {
        background-color: var(--PSK_Green);
    }
.login_box {
    height: 32px;
    border-radius: 6px;
    border: 1px grey dotted;
}
.hidden {
    display: none;
}
.centered {
    text-align:center;
    align-content:center;
}
.userlist span {
    display: inline-block;
    width:100px;
    height:24px;
}
.userlist span:empty:before{
    content: "\200b";
}
.s100 {
    display: inline-block;
    width: 80px;
    height: 24px;
    color: black;
    vertical-align: top;
}
.jobdonebtn {
    background-color: var(--PSK_LBlue);
    color: black;
    width: 100px;
    height: 24px;
    border: none;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}
    .jobdonebtn:hover {
        background-color: var(--PSK_Green);
        font: bold;
    }
.jobdonepanel {
    width:100%;
    background-color: darkgrey;
    color: black;
    border-bottom-left-radius:8px;
    border-bottom-right-radius:8px;
    border-top-right-radius:8px;
    border-top: solid 1px black;
}
.jobdonetitle{
    width:400px;
    font:36px bold;
}
.SuggestionList{
    position:inherit;
    width:auto;
    min-width:300px;
    border:2px groove black;
}
.SuggestionListItem {
    width: auto;
    min-width: 300px;
    background-color: var(--PSK_LBlue);
    color: Black;
}
.SuggestionListSelected {
    width: auto;
    min-width: 300px;
    background-color: var(--PSK_Green);
}
.customer_CB {
    line-height: 22px;
    min-height: 22px;
    font-size: 16px;
    border-radius: 4px;
    min-width: 120px;
    vertical-align: middle;
    display: inline-block;
    margin: 1px;
    border:none;
}
.modalPopup {
    background-color: var(--PSK_DBlue);
    color: white;
    border-radius: 15px;
    border: 3px solid black;
    text-align: center;
    align-content: center;
    align-items: center;
    padding-top: 10px;
    padding-left: 10px;
    width: auto;
    min-width: 350px;
    height: auto;
    z-index: 10;
    position: center;
}
.modalBackground {
    background-color: Black;
    opacity: 0.8;
}
.textbox {
    width:300px;
}
.std_button {
    width: 140px;
    height: 36px;
    color: black;
    background-color: var(--PSK_LBlue);
    border: none;
    font: bold;
    font-size: 16px;
    border-radius: 8px;
}
    .std_button:hover {
        background: var(--PSK_Green);
    }
.big_button {
    width: 350px;
    height: 50px;
    color: black;
    background-color: var(--PSK_LBlue);
    border: none;
    font: bold;
    font-size: 24px;
    border-radius: 8px;
}
.big_button:hover {
        background-color: var(--PSK_Green);
    }
.HugeButtonForLoginSelection {
    height: 300px;
    width: 300px;
    font: bold;
    font-size: 42px;
    white-space: normal;
    background-color: var(--PSK_LBlue);
    color: var(--PSK_DBlue);
    padding-left:40px;
    padding-right:40px;
    margin-left:20px;
    margin-right:20px;
}
    .HugeButtonForLoginSelection:hover {
        color: var(--PSK_Green);
    }
.frontpagebutton {
    margin: 4px;
    width: 280px;
    height: 32px;
    background-color:dimgrey;
    color: white;
    border: none;
    font: bold 'Baskerville Old Face';
    font-size: 20px;
    border-radius: 3px;
    box-shadow: #212121 3px 3px;
}
    .frontpagebutton:hover {
        background-color: var(--PSK_Green);
        color: black;
    }
.CenterMeHorizontally {
    margin-left: auto;
    margin-right: auto;
}
.fullborder {
    border: 2px solid darkgrey;
    padding: 8px 8px;
    color: black;
    background-color: lightgrey;
    border-radius: 10px;
    max-width: 1100px;
    width: 100%;
    min-height: 700px;
    height: auto;
    margin-left: auto;
    margin-right: auto;
}
.fadeinbox {
    text-align: center;
    vertical-align: central;
    animation: fade-in-text 4s 1;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fade-in-text {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}