/* This is client specific! */
/* ---------------------------------------- G E N E R A L ---------------------------------------- */
/* The Owner Logo */
@import url("https://use.typekit.net/pdk3nuu.css");
@import '../../platform-assets/clientlogo.css';
@import '../../platform-assets/brand_variables.css';

.languageselectorholder,
.languageselectorholderlogin {}

.languageselectorholder select.languageselector,
.languageselectorholderlogin select.languageselector {
    padding: 8px;
    border: 1px solid #cccccc;
    min-width: 100px;
    font-size: 12px;
    border-radius: 0px;
    margin-top:30px;
}

/* apply a natural box layout model to all elements, but allowing components to change */
::selection {
    color:#ffffff;
    background-color: var(--primaryColor);
}

html {
    box-sizing: border-box;
    /*it gives error:Validation (CSS 2.1): 'box-sizing' is not a known CSS property name. */
    -ms-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    height:initial;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

body {
    box-sizing: border-box;
    font-family: "niveau-grotesk", Verdana, Geneva, sans-serif;
    font-size:1.5rem;
    line-height: 1.75;
    letter-spacing: 0;
    color: #4d4d4d;
    color: var(--textColor);
    margin: 0px;
    padding: 0px;
    background-color: #ffffff;
    background-image: url("../../platform-assets//default/QSTA-login.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: right top;
    background-attachment: fixed;
    text-rendering: optimizeLegibility;
}

/* link style */
a {color: var(--colorBlue); text-decoration: underline; font-size: 14px;}
a:hover {text-decoration: none; opacity: 0.6;}

input, select {
    font-family: "niveau-grotesk", Arial, Verdana;
}
input {
    font-size: 14px;
}

/* De distance bepaalt of de content in het verticale midden van het scherm staat */
div.distance {
    display: none;
}

.container {
    position: relative;
    width: 100%;
    max-width:1200px;
    padding:0 20px;
    margin: 0 auto;
    display: grid;
    grid-template-rows: 120px auto auto;
    grid-template-columns: 1fr;
    grid-template-areas:
      "header"
      "welkom"
      "form";
    row-gap: 20px;
}

.logo {
    grid-area:header;
}

/* styling dialog panel */
.dialoguePanel {
    border-radius: 0;
    background-color: #ffffff;
    display: block;
    position: relative;
    padding: 10px 0px 10px 0px;
    grid-area:form;
    height: max-content;
}

.dialoguePanel > div {
    margin: 10px 20px;
}

.dialoguePanel div .label {
    color: #000;
    margin-bottom: 4px;
    font-family: "niveau-grotesk", arial, Verdana, Geneva, sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.dialoguePanel div input {
    display: block;
    width: 100%;
    padding: 10px;
    border: 1px solid #cccccc;
    border-radius: 2px;
}

.dialoguePanel input[type=submit] {
    height: auto;
    background-position: bottom;
    cursor: pointer;
    background-color: var(--colorBlack);
    background-image: none;
    font-family: "niveau-grotesk", arial, Verdana, Geneva, sans-serif;
    color: #fff;
    border: 0px;
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
    text-transform: uppercase;
    font-size: 16px !important;
}

.dialoguePanel input[type=submit]:hover {
    background-image: none;
    background-color: #383838;
    -webkit-transition: all 100ms ease-out;
    -moz-transition: all 100ms ease-out;
    -o-transition: all 100ms ease-out;
    -ms-transition: all 100ms ease-out;
    transition: all 100ms ease-out;
}

.dialoguePanel .forgotPassword,
.dialoguePanel .register {
    text-align: center;
}

.dialoguePanel .forgotPassword a,
.dialoguePanel .register a {
    color: var(--primaryColor);
    text-decoration: none;
}

.dialoguePanel .forgotPassword a:hover,
.dialoguePanel .register a:hover {
    opacity:0.8;
    text-decoration: underline;
}

.dialoguePanel .header {
    color: #8c8c8c;
    font-family: "niveau-grotesk", arial, Verdana, Geneva, sans-serif;
    font-weight: 600;
    width: 260px !important;
}

.dialoguePanel .text {
    color: #8c8c8c;
}

.divOwnerLoginHtml {
    position: relative;
    display: block;
    border-radius: 0;
    box-shadow: 0px 0px 10px rgba(0,0,0,0.4);
    background-color: #f9f7f5;
    grid-area:welkom;
    padding: 20px 30px;
}

.divOwnerLoginHtml h1 {
    margin:0;
    text-transform: uppercase;
    color:var(--primaryColor);
}

.divOwnerLoginHtml .welcome {}
.divOwnerLoginHtml .welcome_txt {}

/* The small round SyncForce symbol */
.SFsymbol {
    visibility: hidden;
    position: absolute;
    top: 0px;
    right: 0px;
    width: 32px;
    height: 23px;
    background-image: url("../../platform-assets/default/landing_sflogo.gif");
    background-repeat: no-repeat;
    z-index: 2;
}
/* footer  */
.version {
    position: relative;
    float: left;
    clear: both;
    margin-top: 13px;
    margin-left: 20px;
    color: #cccccc;
}

.copyright {
    position: relative;
    float: left;
    margin-left: 20px;
    margin-top: 10px;
    color: #cccccc;
}

.dialoguePanel * {
    position: relative !important;
}

/* extra divs */
.extraOuterDiv1 {
    background-color:#ffffff;
    width:100%;
    Height:100px;
    position: absolute;
}

/* tablet ----------- */
@media only screen and (min-width : 600px) {
    .container {
        position: relative;
        width: 100%;
        max-width:900px;
        padding:0 20px;
        margin: 0 auto;
        display: grid;
        grid-template-rows: 120px auto;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
          "header header"
          "welkom form";
        gap: 20px;
    }
}

/* Desktops and laptops ----------- */
@media only screen and (min-width : 915px) {
    .container {
        position: relative;
        width: 100%;
        max-width:1200px;
        padding:0 20px;
        margin: 0 auto;
        display: grid;
        grid-template-rows: 120px auto;
        grid-template-columns: 1fr 1fr 1fr;
        grid-template-areas:
          "header header header"
          "welkom welkom form";
        gap: 20px;
    }
}
