/* This style sheet contains the first default skin                      */
/* Copyright 2023 MA Lighting Technologies GmbH                          */

/* fonts */
@font-face {
    font-family: "manrope";
    src: url("../resource/manrope.ttf") format('truetype');
}

/* Global definitions */
* {
    box-sizing: border-box;
    font-family: monospace;
    font-family: manrope;
}

*:not(b) {
    cursor: default;
    font-weight: lighter;
}

*:not(input) {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

::-webkit-input-placeholder { /* Safari, Chrome and Opera */
    color: #DADADA;
}

:-moz-placeholder { /* Firefox 18- */
    color: #DADADA;
    opacity: .9;
}

::-moz-placeholder { /* Firefox 19+ */
    color: #DADADA;
    opacity: .9;
}

:-ms-input-placeholder { /* IE 10+ */
    color: #DADADA;
}

::-ms-input-placeholder { /* Edge */
    color: #DADADA;
}

:placeholder-shown { /* Standard one last! */
    color: #DADADA;
}

/* Default HTML definitions */
html {
    width: 100%;
}

footer {
    position: unset;
    height: auto;
    justify-content: center;
    padding: 40px 0px;
    flex-direction: column;
}

footer div {
    font-size: unset !important;
    margin-bottom: 1em;
}

footer a {
    font-size: .9em !important;
    margin-left: 1em;
    text-decoration: none;
    font-weight: 400;
}

.socialMedia img {
    width: 26px;
    height: 26px;
}

@media screen and (max-width: 768px) {
    footer nav {
        display: none;
    }
}

h1 {
    color:black;
    font-size:50px;
    font-weight: bold;
    margin-top: 0;
}

label {
    color: black;
}

body,
div {
    margin: 0px;
    border: 0px;
    padding: 0px;
    white-space:initial;
}

div {
    border: 0px solid rgb(25,25,25);
}

p, a, span {
    font-family: manrope;
    letter-spacing: 1px;
}

a {
    color: #c5c5c5;
    font-weight: bold;
    transition: all .3s;
    cursor: pointer;
    -webkit-touch-callout: initial;
    -webkit-user-select: initial;
    -khtml-user-select: initial;
    -moz-user-select: initial;
    -ms-user-select: initial;
    user-select: initial;
    text-decoration: none;
}

a:hover {
    color: var(--gdtfOrange);
}

a:has(button),
a>button {
    text-decoration: none;
}

b {
    font-weight: bold;
}

h1, h2, h3 {
    font-family: manrope;
    font-style: normal;
    font-weight: 100;
    font-variation-settings: 'wght' 700;
}

h1, h2 {
    font-size: 28px;
    line-height: 36px;
    letter-spacing: 0.26px;
}

h3 {
    font-size: 1.5em;
    background-color: unset;
}

h4 {
    font-size: 1.2em;
    font-weight: 400;
}

@media screen and (min-width: 400px)
{
    /* calc([minsize]px + ([maxsize] - [minsize]) * ((100vw - [minviewportwidth]) / ([maxviewportwidth] - [minviewportwidth])px)); */
    h1
    {
        font-size:      calc(28px + (50 - 28) * ((100vw - 400px) / (1440 - 400)));
        line-height:    calc(36px + (66 - 36) * ((100vw - 400px) / (1440 - 400)));
        letter-spacing: calc(0.26px + (0.47 - 0.26) * ((100vw - 400px) / (1440 - 400)));
    }
    h2
    {
        font-size:      calc(28px + (36 - 28) * ((100vw - 400px) / (1440 - 400)));
        line-height:    calc(36px + (47 - 36) * ((100vw - 400px) / (1440 - 400)));
        letter-spacing: calc(0.26px + (0.37 - 0.26) * ((100vw - 400px) / (1440 - 400)));
    }
}

@media screen and (min-width: 1440px)
{
    h1
    {
        font-size: 50px;
        line-height: 66px;
        letter-spacing: 0.47px;
    }
    h2
    {
        font-size: 36px;
        line-height: 47px;
        letter-spacing: 0.37px;
    }
}

/* Reset br because firefox is shit*/
*:not(h1,h2,h3,h4,p,span)>br {
    line-height: 0rem;
    height: 0rem;
    margin: 1em 0em;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////// Inputs ////////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////*/

input[type=text],
input[type=tel],
input[type=password],
input[type=email] {
    height: 40px;
    width: 100%;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #DADADA;
    font-size: 18px;
    text-indent: 0px;
    padding-left: 0px;
    color:black
}

input[type=text]:hover,
input[type=password]:hover {
    cursor:text;
}

input[type=button],
input[type=submit] {
    margin-top: 5px;
    border: none;
    background-color: #3DB5E6;
    color: black;
    border-radius: 0px;
    height: 30px;
    padding-left: 5%;
    padding-right: 5%;
    appearance: none;
    -webkit-border-radius: 0;
}

input[type=button]:hover,
input[type=submit]:hover {
    background-color: rgb(152,152,152);
    cursor: pointer;
}

input[type=button]:disabled,
input[type=submit]:disabled {
    background-color: #232323;
    color: gray;
    pointer-events: none;
    cursor: default;
}

input:focus {
    outline: none;
}

textarea {
    width: 100%;
    height: 6em;
    border-radius: 1em;
    font-size: 18px;
    color:black;
    padding-left: 10px;
    background-color: transparent;
    -webkit-touch-callout: text;
    -webkit-user-select: text;
    -khtml-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

select {
    height: 40px;
    width: 100%;
    background-color: transparent;
    border-radius: 1em;
    font-size: 18px;
    border: 2px solid #DADADA;
    text-indent: 0px;
    padding-left: 10px;
    font-weight: 400;
    color:black;
    position: initial;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16px' height='16px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6.1018 8C5.02785 8 4.45387 9.2649 5.16108 10.0731L10.6829 16.3838C11.3801 17.1806 12.6197 17.1806 13.3169 16.3838L18.8388 10.0731C19.5459 9.2649 18.972 8 17.898 8H6.1018Z' fill='%23DADADA'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    z-index: 1;
}

select:focus {
    outline: none;
}

select option {
    background-color:unset;
    font-weight: 400;
    font-family: manrope, sans-serif;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////// Buttons ///////////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////*/

button {
    align-items: center;
    border: 2px solid #000;
    border-radius: 4em;
    box-sizing: border-box;
    color: #000;
    background-color: transparent;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    font-size: 16px;
    height: 54px;
    justify-content: center;
    max-width: 100%;
    min-width: 145px;
    padding-left: 22px;
    padding-right: 22px;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    transition: all .3s, color .3s;
    padding: 6px;
    padding-left: 22px;
    padding-right: 22px;
}

button span {
    cursor: pointer;
}

button:hover {
    background-color: black;
    color: white;
}

button:disabled {
    background-color: gray !important;
    color: lightgray !important;
    cursor: not-allowed;
}

button:disabled span {
    color: lightgray !important;
    cursor: not-allowed;
}

button:disabled:hover {
    background-color: gray !important;
    color: lightgray !important;
}

button.white {
    color: white;
    border-color: white;
}

button.white:hover {
    background-color: white;
    color: black;
}

button.filled {
    background-color: black;
    color: white;
}

button.filled:hover {
    background-color: transparent;
    color: black;
}

button.white.filled {
    background-color: white;
    color: black;
}

button.white.filled:hover,
button.hoverBlue.filled:hover {
    background-color: var(--gdtfBlue);
    border-color: var(--gdtfBlue);
    color: white;
}

button.blue.filled {
    background-color: var(--gdtfBlue);
    color: white;
}

button.blue.filled:hover {
    background-color: var(--gdtfDarkBlue);
    color: white;
}

.buttonsHorizontal {
    display: flex;
}

.buttonsHorizontal a:not(:first-child),
.buttonsHorizontal button:not(:first-child) {
    margin-left: 1em;
}

@media screen and (max-width: 400px) {
    .buttonsHorizontal {
        flex-direction: column;
    }

    .buttonsHorizontal a:nth-child(2) button {
        margin-top: 1em;
    }

    .buttonsHorizontal a:not(:first-child),
    .buttonsHorizontal button:not(:first-child) {
        margin-left: 0;
    }
}

button.small {
    min-width: 100px;
    height: 36px;
    font-size: 12px;
    padding-left: 16px;
    padding-right: 16px;
}

button.selector:hover:not(.active) {
    color:white;
    border-color: var(--gdtfBlue);
    background-color: var(--gdtfBlue);
}

button.selector.active:hover {
    color:white;
    border-color: black;
    background-color: black;
}

button.selector.left {
    border-radius: 4em 0em 0em 4em;
    border-right: 0;
}

button.selector.middle {
    border-radius: 0px;
    border-right: 0;
    border-left: 0;
}

button.selector.right {
    border-radius: 0em 4em 4em 0em;
    border-left: 0;
}

/*/////////////////////////////////////////////////////////////////////////////////////////////////*/
/*///////////////////////////////////////// Main container ////////////////////////////////////////*/
/*/////////////////////////////////////////////////////////////////////////////////////////////////*/

.frame-body {
    overflow:auto;
    background-color:rgb(25,25,25);
    text-align: left;
}

#content {
    height: calc(100% - 30px - 26px); /*100% - headline - footer*/
    width: 100%;
    display: block;
}

@media screen and (max-width: 1000px) {
    #content {
        height: calc(100% - 30px - 17px); /*100% - headline - footer*/
    }
}

@-moz-document url-prefix() {
    #content {
        height: calc(100% - 30px - 32px); /*100% - headline - footer*/
    }
}

#menu-container {
    width: 75%;
    height: 100%;
    background-color: rgb(57,57,57);
    border-top: 1px solid rgb(25,25,25);
    overflow: hidden;
    float: left;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-content: stretch;
    align-items: stretch;
}

@media screen and (max-width: 750px) {
    #menu-container {
        width: 100%;
    }
}

#menu-container.collapsed {
    width: 5%;
}

#mainMenu {
    display: flex;
    overflow: hidden;
    flex: 1;
    height: 100%;
}

#page-container {
    width: 95%;
    height: 100%;
    border: 0px;
    display: none;
    overflow-x: hidden;
    white-space: nowrap;
    float: left;
}

#rightSideWedge {
    height: 100%;
    margin-left: 75.1%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow-y: auto;
}

@media screen and (max-width: 750px) {
    #rightSideWedge {
        display: none;
    }
}