:root {
    /* MAIN COLORS */
    --main-color1: #1e2227;     /*[SCHWARZ]*/
    --main-color2: #66707b;     /*[DUNKELGRAU]*/
    --main-color3: #89919b;     /*[HELLGRAU]*/
    --main-color4: #46505c;     /*[HELLGRAU (ICON RÄNDER)]*/
    --main-color5: #363f4a;
    --main-color6: #fff;        /*[WEISS]*/
    --main-color7: #99cc01;     /*[GREEN]*/
    --main-color8: rgba(255,100,10,.3); /*[TABELLE GEÄNDERT]*/


    /* TABLE COLORS */
    --table-head: #566270;          /*[HEAD]*/
    --table-head-corner: #5e6a79;   /*[HEAD CORNER]*/
    --table-left-even: #353e49;     /*[LEFT EVEN]*/
    --table-left-odd: #434d59;      /*[LEFT ODD]*/
    --table-even: #2b333d;          /*[EVEN]*/
    --table-odd:  #3a434e;          /*[ODD]*/

    /* FONT SIZES */
    --main-font-0: 40px;
    --main-font-1: 20px;
    --main-font-2: 15px;
    --main-font-3: 10px;
}

* {
    font-size: var(--main-font-2);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
}

body: {
    overflow-y: scroll;
    overflow-x: hidden;
    margin: 0;
    /*background-color: var(--main-color1);*/
    min-height: 100vh;

}

.bold {
    font-weight: 900;
}

.autoHeight {
    height: auto !important;
}

hr {
    background-color: var(--main-color2);
    margin: 0;
    margin-bottom: 10px;
}

/*CENTER*/
#centerElem {
    text-align: center;
}

.capitals {
    text-transform: uppercase;
}

/* Spacer */
.spacer {
    display: block;
    height: 75px;
}

.headline1, h1 {
    font-size: var(--main-font-1);
}
.headline2, h2 {
    font-size: var(--main-font-2);
}

.userColor {
    color: var(--main-color7);
}


#bg {
    position: fixed;
    left: 0;
    top: 0;
    z-index: -999;
    width: 100vw;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-image: url('../gfx/bg.jpg');
}

#bg #gradient {
    width: 100vw;
    height: 100vh;
    margin: 0;
    background: linear-gradient(180deg, rgba(30,34,34,0) 0%, rgba(30,34,34,0.3) 10%, rgba(30,34,34,1) 62%, rgba(30,34,34,1) 100%); 
}
/* ########################################################### */
/* ######################## WP KACKE ######################### */
/* ########################################################### */

.responsive-menu-button, #wpadminbar {
    display: none !important;
}


/* ########################################################### */
/* ########################## MENU ########################### */
/* ########################################################### */

#menu {
    width: 100vw;
    background-color: var(--main-color1);
    color: var(--main-color3);
    position: fixed;
    top: 0;
    left: 0;
    height: 98px;
    z-index: 1000;

    background-image: url('../gfx/logo.png');
    background-repeat: no-repeat;
    background-position: 10px center;
}

#menuDashboard {
    margin-top: 9px;
}

.menuSpacer, .contentSpacer {
    width: 1200px;
    margin: 0 auto;
}

#menu ul, #menuDashboard ul {
    margin: 0 auto;
    width: max-content;
    padding: 0;
}

#menu li, #menuDashboard li {
    line-height: 40px;
    display: inline-block;
    margin-left: 6px;
    transition: background-color .25s ease-in-out;
    font-size: var(--main-font-2);
    text-align: center;
}
#menu a:first-of-type li, #menuDashboard a:first-of-type li{
    margin: 0;
}

#menu li:hover, #menuDashboard li:hover {
    background-color: var(--main-color2);
    color: #2b3138;
}

#menuRight {
    float: right;
    margin-top: 13px;
}

#menuRight img {
    margin-left: 40px;
}


.backendLink, .backendLink:hover {
    text-decoration: none;
}







.menuNav {
    display: inline-block;
    height: 37px !important;
    width: 232px;
    background: rgb(70,80,92);
    background: linear-gradient(180deg, rgba(70,80,92,1) 0%, rgba(102,112,123,1) 35%);
}
.menuNavDashboard {
    display: inline-block;
    height: 135px !important;
    width: 232px;
    background: rgb(70,80,92);
    background: linear-gradient(180deg, rgba(70,80,92,1) 0%, rgba(102,112,123,1) 35%);
    padding: 10px;
}


/*MENU*/
.menuImages {   
    height: 24px;
    vertical-align: middle;
    padding-right: 8px;
}
/*DASH*/
#menuDashboard .menuImages {   
    height: 54px;
    vertical-align: middle;
}


#menuTitle, #menuTitle * {
    font-size: var(--main-font-1);
    color: var(--main-color2);
    line-height: 50px;
}

#menuRight, #menuRight * {
    color: var(--main-color3);
}

#loggedInUser {
    color: var(--main-color6);
}
/* ########################################################### */
/* ######################## HOVER MENU ####################### */
/* ########################################################### */

#hoverMenu {
    position: fixed;
    right: 0;
    top: -100px;
    height: 100px;
    transition: all .5s ease-in-out;
    background-color: var(--main-color1);
    z-index: 1001;
}

#hoverMenu:hover {
    top: 0;
}

#hoverMenuButton {
    position: absolute;
    height: 40px;
    line-height: 40px;
    width: 100%;
    bottom: -40px;
    text-align: center;
    border-radius: 0 0 3px 3px;
    transition: all .5s ease-in-out;
}

#hoverMenu:hover #hoverMenuButton{
    opacity: 0;
}

.uiButton {
    display: block;
    width: 250px;
    height: 20px;
    line-height: 20px;
    cursor: pointer;
    text-align: center;
    margin: 10px 5px;

}

/* ########################################################### */
/* ######################## MESSAGES ######################### */
/* ########################################################### */

#message {
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100vw;
    max-height: 150px;
    animation-name: bannerAnim;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;

    -webkit-box-shadow: 10px 10px 13px 0px rgba(0,0,0,0.75);
    -moz-box-shadow: 10px 10px 13px 0px rgba(0,0,0,0.75);
    box-shadow: 10px 10px 13px 0px rgba(0,0,0,0.75);
    text-align: center;
    padding: 50px;
    font-size: 2rem;
    background-color: var(--main-color2);
}

@keyframes bannerAnim {
    90%  {top: 0}
    100% {top: -150px}
}

/* ########################################################### */
/* ########################### DATA ########################## */
/* ########################################################### */

#trackerStats {
    border-collapse: collapse;
}

tbody td p {
    display: none;
}

tfoot tr {
    background-color: transparent !important;
    border-top: 1px solid #fff;
}

#tabParent {
    position: relative;
    width: 1600px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
}

#tabBlocker {
    width: 1400px;
    background-color: rgba(0,0,0,.4);
    height: 100%;
    z-index: 999;
    position: absolute;
}

#tooltip {
    opacity: 0;
    transition: all .1s ease-in-out;
    position: fixed;
    background-color: var(--main-color1);
    border-radius: 5px;
    padding: 5px;
    user-select: none;
    line-height: 1.5rem;
}

#tabBlocker:hover #tooltip {
    opacity: 1;
}

#dataChanged, #noData {
    width: 1180px;
    margin: 0 auto;
    margin-top: 100px;
}

form {
    display: block;
    width: 1600px;
}

table {
    border-spacing: 0px 5px;
    margin: 0 auto;
    width: 1600px;
}

tr {
    background-color: var(--table-even);
    margin-bottom: 10px;
}

thead tr {
    background-color: var(--table-head);
}
thead tr th:first-of-type{
    background-color: var(--table-head-corner);
}
tbody tr:nth-of-type(even) {
    background-color: var(--table-odd);
}
tr:nth-of-type(even) td:first-of-type {
    background-color: var(--table-left-odd);
}
tr:nth-of-type(odd) td:first-of-type {
    background-color: var(--table-left-even);
}

tfoot, tfoot * {
    background-color: transparent !important;
}


/* HOVER */
tbody tr:hover {
    background-color: var(--main-color3) !important;
}


th {
    font-size: var(--main-font-2);
    text-align: left;
}
th, td {
    padding: 10px;
}

input, select {
    background-color: transparent;
    border: 1px;
}
form input, form select {
    max-width: 100px;
}

#filename {
    max-width: inherit;
}
select option {
    background-color: var(--main-color1);
}
.activeRow {
    background-color:  var(--main-color2);
}

#actData .stats {
    font-size: .8rem;
    opacity: .5;
}

.trackerStatsFloor, .trackerStatsSize, .trackerStatsRooms, .trackerStatsTerrasse, .trackerStatsDachterrasse, .trackerStatsPrice, .trackerStatsAvailable {
    opacity: .25;
}
#flatsTotal1, #flatsTotal2, #flatsTotal3 {
    display: none;
}


/*RAUMGROESSEN*/
#sizeElemBg {
    position: fixed;
    left: 0;
    top: 0;
    background-color: rgba(0,0,0,.5);
    width: 100vw;
    height: 100vh;
    transition: opacity 1s ease-in-out;
    opacity: 0;
    visibility: hidden;
    z-index: 9;
}
#sizeElem {
    width: 440px;
    position: fixed;
    left: calc(50% - 220px);
    top: -200vh;
    z-index: 1;
    transition: all 1s ease-in-out;
    background-color: var(--main-color1);
    padding: 15px;
    border: 10px solid #000;
    z-index: 10;
}

/*Überschrift*/
#sizeElemHead {
    border-bottom: 1px solid var(--main-color4);
}
#sizeElemHead span {
    display: inline-block !important;
    width: 50%;
    text-align: left;
    font-size: var(--main-font-2) !important;
    color: var(--main-color6);
    opacity: 1 !important;
    margin-bottom: 10px;
}
#sizeElemHead span:nth-of-type(2) {
    text-align: right;
}
#sizeElem .sizeElemHl {
    display: inline-block;
    font-size: var(--main-font-2);
    opacity: 1;
    margin: 15px 0;
    color: var(--main-color4);
}
/*Überschrift*/

#sizeElem input{
    background-color: var(--main-color4);
    margin-bottom: 25px;
    padding: 2px 5px;
}
#sizeElem input, #sizeElem .sizeElemHl{
    width: 25px;
    margin-right: 15px;
}
#sizeElem input:nth-of-type(2),#sizeElem .sizeElemHl:nth-of-type(2) {
    width: 200px;
    margin-right: 15px;
}
#sizeElem input:nth-of-type(3),#sizeElem .sizeElemHl:nth-of-type(3) {
    width: 100px;
    margin-right: 15px;
}


#sizeElem span {
    display: block;
    font-size: .75rem;
    opacity: .5;
}

#buttonParent {
    text-align: left;
    padding: 10px 0;
    margin-bottom: 10px;
    border-top: 1px solid var(--main-color4);
    border-bottom: 1px solid var(--main-color4);
}

#sizeElem .button {
    display: inline-block;
    width: 120px;
    text-align: center;
    background-color: var(--main-color3);
    color: var(--main-color5);
}
#sizeElem .button:last-of-type {
    background-color: var(--main-color7);
}

#sizeElem .button:first-of-type {
    margin-right: 150px;
}

.commentFail {
    border: 1px solid #f00;
}




/* TABLE EXTRAS */

#tabParentExtras, #tabParentContact {
    position: relative;
    width: 1250px;
    margin: 0 auto;
    margin-top: 50px;
}

#tabBlockerExtras:hover #tooltip, #tabBlockerContact:hover #tooltip {
    opacity: 1;
}

#formularExtras, #formularExtras table, #formularContact, #formularContact table {
    width: 1250px;
}

#formularExtras th:first-of-type {
    width: 10px;
}
#formularContact input {
    min-width: 200px;
}
#formularExtras th:nth-of-type(2) {
    width: 50px;
}
#formularExtras th:nth-of-type(3) {
    width: 10px;
}
#formularExtras th:nth-of-type(4) {
    width: 100px;
}

#formularExtras textArea {
    width: 500px;
    height: 150px;
    color: #000;
    border: none;
    user-select: auto !important;
}
#formularExtras form input, #formularExtras form select {
    max-width: inherit;
}

#tabBlockerExtras {
    width: 1250px;
    background-color: rgba(0,0,0,.4);
    height: 100%;
    z-index: 999;
    position: absolute;
    top: 41px;
}


/* SHOW FILE (FILES)*/
#showFile iframe {
    width: 100vw;
    height: calc(100vh - 95px);
    border: 0;
}

.headerClass {
    height: 45px;
}

/* SORTING TABLES*/
#trackerStats , #trackerStats * {
    user-select: none;
}

/* CONTACT */
#imageBox {
    width: 1250px;
    margin: 0 auto;
}

#imageBox .imgParent {
    border: 2px solid #000;
    display: inline-block;
    margin: 0 10px 10px 0;
}

#imageBox .imgParent .contactImg {
    background-size: cover;
    background-position: center center;
    height: 150px;
    width: 100px;
}

#imageBox .active {
    border: 2px solid #999;
    -webkit-box-shadow: 2px 2px 7px 0px #999;
    -moz-box-shadow: 2px 2px 7px 0px #999;
    box-shadow: 2px 2px 7px 0px #999;
}

textArea {
    background-color: transparent;
    width: 100%;
    height: 150px;
    resize: none;

}


/* MATOMO */
/*LoadStats*/
.segments iframe{
    visibility: hidden;
}

.statsLoader {
    position: absolute;
    width: 1200px;
    background: url(../../gfx/loader.gif);
    background-size: 50px;
    background-repeat: no-repeat;
    background-position: center 100px;
    z-index: -999;
}
/*LoadStats*/



/* USER SEGMENT*/
#widgetIframe {
    width: 1200px;
    margin: 0 auto;
}
#matomoframeUser {
    width: 1200px;
    margin: 0 auto;
}

#widgetIframe .segmentUser {
    min-height: calc(100vh - 45px);
}

/*Project Segments*/
.segments {
    width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
}
.segments iframe{
    width: 1200px;
}

.segments span {
    font-size: var(--main-font-1);
}

.segment1, .segment1 * {
    height: 210px !important;
}
.segment2, .segment2 * {
    height: 850px !important;
}
.segment3, .segment3 *, .segment4, .segment4 * {
    height: 610px !important;
}
.segment5, .segment5 * {
    height: 395px !important;
}
.segment6, .segment6 * {
    height: 400px !important;
}

/* END MATOMO */










/* ########################################################################################## */
/* #################################### DASHBOARD ########################################### */
/* ########################################################################################## */

.dashStats {
    position: relative;
    display: inline-block;
    width: 370px;
    height: 400px;
    background-color: var(--main-color5);
    border: 10px solid var(--main-color4);
    padding: 15px 0;
    overflow: hidden;
    /*text-align: center;*/
}

.dashStats:nth-last-of-type(even) {
    margin: 0 41px;
}

.dashStats span {
    margin-left: 25px;
}

.dashboardCharts {
    margin-top: 15px !important;
}






.chartText {
    position: absolute;
    top: 175px;
    text-align: center;
    width: 100%;
}


.chartTextValue {
    display: block;
    margin: 0 !important;
    margin-bottom: 10px !important;
    font-size: var(--main-font-0);
    font-weight: 700;
}

.chartTextLabel {
    display: block;
    margin: 0 !important;
    font-size: var(--main-font-2);

}

/*DASHBOARD CHART COLs*/
#chartTextDashboard1 * {
    color: rgba(153, 204, 0, 1);
}

#chartTextDashboard2 * {
    color: rgba(255, 212, 85, 1);
}

#chartTextDashboard3 * {
    color: rgba(62, 149, 241, 1);
}
/*DASHBOARD CHART COLs*/


/* ########################################################################################## */
/* ###################################### LOGIN ############################################# */
/* ########################################################################################## */

#loginSiteBackend #bg {
    background-image: url('../gfx/bg_login.jpg');
    background-position: center;
}
#loginSiteBackend #bg #gradient{
    display: none;
}


#loginFormBackend {
    background-color: var(--main-color1);
    border: 10px solid var(--main-color5);
    width: 600px;
    margin: 0 auto;
    margin-top: 200px;
    padding: 15px;
}


#loginFormBackend form {
    width: 270px;
    margin: 0 auto;
    margin-top: 50px;
    margin-bottom: 50px;
    overflow: hidden;
}

#loginFormBackend .input {
    background-color: rgba(255,255,255,.75);
    border: 1px solid var(--main-color1);
    width: 266px;
    max-width: 266px;
    height: 30px;
}

#loginFormBackend p label {
    display: block;
}

#loginFormBackend #wp-submit {
    width: 104px;
    height: 30px;
    background-color: var(--main-color7);
    color: var(--main-color1);
    text-transform: uppercase;
    float: right;
    margin-top: 25px;
    padding: 5px;
    font-weight: 500;
}


/* ########################################################################################## */
/* #################################### USER DATA ########################################### */
/* ########################################################################################## */

.userStats {
    position: relative;
    display: inline-block;
    width: 557px;
    height: 355px;
    background-color: var(--main-color5);
    border: 10px solid var(--main-color4);
    padding: 15px 0;
    overflow: hidden;
}

.userStatsMarginLeft {
    margin-left: 40px;
}

.userStats span {
    margin-left: 25px;
}

.dashboardCharts {
    margin-top: 15px !important;
}

.chartTextUser {
    position: absolute;
    top: 15px;
    right: 15px;
    text-align: right;
}

.chartTextUser .chartTextValue {
    margin-bottom: 0 !important;
}

.chartTextUserPieLegend {
    font-size: var(--main-font-3);
    position: absolute;
    top: 95px;
    right: 0;
    margin: 0;
    padding: 0;
    text-align: left;
    width: 173px;
    line-height: 12px;
}


/* ########################################################################################## */
/* ################################### PROJECT DATA ######################################### */
/* ########################################################################################## */

.projectStats {
    position: relative;
    display: inline-block;
    width: 577px;
    height: 355px;
    background-color: var(--main-color5);
    border: 10px solid var(--main-color4);
    padding: 15px 0;
    overflow: hidden;
}

.projectStats span {
    margin-left: 25px;
}

.chartTextProject {
    position: absolute;
    top: 165px;
    text-align: center;
    width: 100%;
}

/* MATOMO DATA */
.segments iframe {
    border: 10px solid var(--main-color4);
}


