/* GLOBAL STYLES */

body,
html {
    margin: 0;
    height: 100%;
    /* background-color: var(--primary-color); */
    color: var(--secondary-color);
    font-family: Roboto, sans-serif;
    scroll-behavior: smooth;
    width: 100%;
    /*position: fixed;*/
    /*
    -webkit-user-select: none;
    -moz-user-select: -moz-none;
    -ms-user-select: none;
    user-select: none;
    -moz-user-select: text;
    */
}

:root {
    --primary-color: #1C388F;
    --secondary-color: #01a0e4;
}

svg {
    fill: currentColor;
}

h1 {
    float: left;
    font-family: Roboto, sans-serif;
    font-size: 25px;
    font-weight: normal;
    margin: 25px 0 25px 0;
    color: var(--secondary-color);
    word-break: break-all;
}

h2 {
    margin-top: 0;
}

h3 {
    background-color: var(--secondary-color);
    padding: 10px;
    margin-top: 50px;
    color: white;
}

h4 {
    border-bottom: 1px solid lightgray;
    padding: 10px 0 10px 0;
}

h5 {
    background-color: var(--secondary-color);
    padding: 10px 50px 10px 45px;
    position: relative;
    box-sizing: border-box;
    color: white;
    font-weight: normal;
    font-size: inherit;
    border-radius: 5px 5px 0 0;
    margin: 0;
    width: 100%;
    text-overflow: ellipsis;
    word-break: break-all;
}


/* NOTICE AND WARNING POPUPS */

.ui-dialog {
    position: fixed;
    height: auto;
    width: 300px;
    top: 40%;
    left: 50%;
    /*box-shadow: 0 0 0 10000px #00000090;*/
}

.ui-dialog-titlebar-close {
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 5px;
    float: right;
}

#favoriteAddedNotice,
#popupPlaceholder {
    display: none;
    background-color: white;
    padding: 20px;
    border-radius: 0 0 5px 5px;
    min-height: fit-content !important;
}

#favoriteAddedNotice>span,
#popupPlaceholder>span {
    margin-top: 10px;
    vertical-align: middle;
    display: block;
}

.ui-dialog-titlebar {
    background-color: var(--secondary-color) !important;
    padding: 10px 20px !important;
    color: white !important;
    border-radius: 5px 5px 0 0 !important;
}

.closeNoticeButton {
    margin-top: 15px;
    background-color: var(--secondary-color);
    color: white;
    padding: 10px;
    display: block;
    border-radius: 3px;
    height: auto;
    border: none;
}

.tutorialButton {
    margin-top: 15px;
    margin-right: 10px;
    width: 35px;
    height: 35px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 3px;
    border: none;
}

.closeNoticeButton:hover,
.tutorialButton:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.highlightElement {
    border: 3px solid red;
    box-sizing: border-box;
    animation: highlightEffect 7s infinite;
    animation-delay: 0s;
    animation-fill-mode: forwards;
}

@keyframes highlightEffect {
    0% {
        transform: rotateZ(5deg);
    }
    2.5% {
        transform: rotateZ(-5deg);
    }
    5% {
        transform: rotateZ(5deg);
    }
    7.5% {
        transform: rotateZ(-5deg);
    }
    10% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(0deg);
    }
}

input.hideNotice {
    margin-right: 10px;
}

#popupBackground {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: black;
    opacity: 0.6;
    z-index: 100;
}


/* MENU BAR */

#burgerButton,
#lang-select {
    cursor: pointer;
    color: #666;
}

#burgerButton:hover {
    background-color: var(--secondary-color);
    color: white;
}

#burgerButton:active {
    background-color: var(--primary-color);
    color: white;
}

ul.menubar {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border-bottom: 2px solid #e7e7e7;
    background-color: #fff;
    /*
    box-shadow: 1px 3px 10px 0px rgba(0,0,0,0.2);
    z-index: 99999;
    */
}

li.menubar {
    float: left;
    height: 60px;
    border-right: 2px solid #e7e7e7;
}

li.menubar a {
    display: block;
    color: #666;
    text-align: center;
    height: 60px;
    text-decoration: none;
}

li.menubar a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.hoveredLink {
    background-color: var(--secondary-color);
    color: #fff !important;
}

li.menubar a:active {
    background-color: var(--primary-color);
    color: #fff;
}

li.lang-link a {
    display: block;
    color: #666;
    text-align: center;
    height: auto;
    text-decoration: none;
}

li.lang-link a:hover {
    background-color: white !important;
    color: var(--secondary-color);
}

.menu-element-position {
    display: inline-block;
    width: 60px;
    height: 100%;
    line-height: 60px;
    vertical-align: middle;
    text-align: center;
    /* color: #666; */
}

.menu-element-position-logo {
    display: inline-block;
    width: auto;
    height: 100%;
    line-height: 60px;
    vertical-align: middle;
    text-align: center;
    color: #666;
}

#li-element-right {
    float: right;
    padding: 0 40px 0 30px;
    border-left: 2px solid #e7e7e7;
    border-right: 0;
}

#li-element-right a:hover {
    background-color: #fff;
}

#customer-logo {
    vertical-align: middle;
    max-width: 150px;
    max-height: 40px;
}

progress {
    background-color: #f3f3f3;
    border: 2px;
    height: 18px;
    border-radius: 9px;
    vertical-align: -0.25em;
    margin: 0 15px;
    width: 20vw;
}

progress::-webkit-progress-bar {
    background-color: #f3f3f3;
    border: 1px solid rgba(102, 102, 102, 0.33);
    height: 18px;
    border-radius: 9px;
}

progress::-webkit-progress-value {
    background-color: #67EC52;
    border: 0;
    height: 16px;
    border-radius: 9px;
}

progress::-moz-progress-bar {
    background-color: #f3f3f3;
    border: 1px solid rgba(102, 102, 102, 0.5);
    height: 18px;
    border-radius: 9px;
}

#progress_text_left {
    font-family: Roboto, sans-serif;
    font-size: 12px;
    color: rgba(102, 102, 102, 0.5);
}

#progress_text_right {
    font-family: Roboto, sans-serif;
    font-size: 12px;
}

.progress-element-position {
    display: inline-block;
    height: 100%;
    line-height: 60px;
}

#li-progress-element-right {
    text-align: center;
    height: 60px;
}

#lang-select {
    border-left: 0;
    float: right;
    padding: 0;
    border-right: 0;
}

#lang-select:hover {
    color: var(--secondary-color);
}

#lang-select:hover .lang-dropdown-content {
    display: block;
    color: #666;
}

.lang-dropdown-content {
    display: none;
    top: 50px;
    text-align: center;
    width: 60px;
    position: absolute;
    background-color: white;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    z-index: 2;
    padding: 10px 0;
}

.lang-icon {
    opacity: 0.33;
    cursor: pointer;
}

.lang-icon:hover {
    opacity: 1;
}

#messageCount {
    position: absolute;
    left: 95px;
    top: 13px;
    border: 1.5px solid var(--primary-color);
    padding: 1px 3px;
    border-radius: 4px;
    font-family: sans-serif;
    color: var(--primary-color);
    text-align: center;
    font-size: 8px;
    font-weight: bold;
    background-color: white;
    animation: notice 2s ease-in-out 3;
}

@keyframes notice {
    50% {
        border: 1.5px solid transparent;
        color: transparent;
        background-color: transparent;
    }
}


/* NAVIGATION SIDE MENU */

ul.navigation {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 250px;
    line-height: 60px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: normal;
}

.navigation-slim {
    width: 60px !important;
}

li.navigation {
    height: 60px;
    border-bottom: 2px solid #f6f6f6;
}

li.navigation a {
    display: block;
    color: #666;
    height: 60px;
    text-decoration: none;
    border-bottom: 2px solid #f6f6f6;
    padding-left: 22px;
    cursor: pointer;
}

li.navigation a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

li.navigation a:active {
    background-color: var(--primary-color);
    color: #fff;
}

.navigation-icon {
    padding-right: 30px;
}

#navigation-container {
    float: left;
    background-color: white;
    width: auto;
    height: 100%;
    border-right: 2px solid #e7e7e7;
    box-shadow: inset -1px 4px 20px 0 rgba(0, 0, 0, 0.05);
}

#menu-footer a {
    width: 250px;
    text-align: center;
    text-decoration: none;
    position: absolute;
    bottom: 10px;
    font-family: Roboto, sans-serif;
    font-size: 10px;
    line-height: 15px;
    font-weight: normal;
    color: #666;
}

.menu-footer-slim {
    position: absolute;
    bottom: 15px;
    height: 40px !important;
    left: 15px;
}

#psi_logo_menu {
    height: 60px;
}

#psi_logo_menubar {
    padding: 10px 20px 0 0;
    height: 40px;
}

#psi_logo_text_menubar {
    float: right;
    line-height: initial;
    text-align: left;
    padding-top: 22px;
    font-family: Roboto, sans-serif;
    font-weight: bold;
    font-size: 100%;
}

#search-container {
    height: 100%;
}

#searchField {
    box-sizing: border-box;
    background-color: transparent;
    height: 100%;
    border: 0;
    margin-bottom: 12px;
    font-family: Roboto, sans-serif;
    font-size: 14px;
    font-weight: normal;
    color: #666;
    padding-left: 0;
}

#searchField:focus {
    outline: none;
}

#search-icon {
    padding-left: 20px;
    color: #666;
}


/* clears the 'X' from Internet Explorer */

input[type=search]::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}

input[type=search]::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}


/* clears the 'X' from Chrome */

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
    display: none;
}

.logout {
    color: var(--primary-color) !important;
}

.logout:hover {
    color: white !important;
}


/* CONTENT AREA */

.hidden {
    display: none;
}

.content-area {
    float: right;
    box-sizing: border-box;
    overflow: auto;
    height: 100%;
    width: 100%;
    padding-top: 20px;
    padding-left: 50px;
    padding-right: 50px;
    padding-bottom: 50px;
    background-color: #e8e8e8;
    box-shadow: inset 0 0 20px 0 rgba(0, 0, 0, 0.2);
    /*
        background-color: var(--primary-color);
        background: linear-gradient(-90deg,#e6e6e6, rgba(255, 255, 255, 0.9));
        */
    /*    background-color: var(--primary-color);
        background: linear-gradient(-90deg, rgba(255,255,255,0.5), rgba(255, 255, 255, 0));*/
    /*background: linear-gradient(-90deg,#1c388f, rgba(0, 180, 255, 0.49));*/
}


/* SETTINGS PAGE */

#mainColor {
    height: 100px;
    width: 100px;
    background-color: var(--primary-color);
    border: 1px solid white;
    margin: 10px;
}

#secondColor {
    height: 100px;
    width: 100px;
    background-color: var(--secondary-color);
    border: 1px solid white;
    margin: 10px;
}

#fileToUpload {
    padding: 0 !important;
    /*width: 115px;*/
}

#companyPreviewImage {
    height: 40px;
    border: 1px solid var(--secondary-color);
}

.styledStdButton {
    border: 0;
    padding: 10px;
    background-color: #999;
    color: white;
    border-radius: 5px;
    height: unset;
}

.styledStdButtonFullWidth {
    width: 100%;
}

.buttonWarning:hover {
    background-color: #9c0000 !important;
}

.styledStdButton:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.containerUserSettings {
    width: 100%;
    display: inline-block;
}

.containerUserSettings span {
    width: 200px;
    display: inline-block;
}

.containerUserSettings input {
    width: calc(100% - 200px);
    box-sizing: border-box;
    height: 30px;
}

@media (max-width: 600px) {
    .containerUserSettings input {
        width: 100%;
        margin: 5px 0;
    }
}

.leftContainer,
.rightContainer {
    height: 100%;
    min-width: min-content;
    float: right;
    max-width: 50%;
}

.leftContainer {
    float: left;
}

.rightContainer {
    float: right;
}

.customerLogoUploadButton {
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    z-index: -1;
}

.customerLogoUploadLabel {
    width: 150px;
    height: 60px;
    display: inline-block;
    border: 1px solid var(--secondary-color);
    text-align: center;
    padding-top: 19px;
    box-sizing: border-box;
    background-size: contain;
    background-size: 60%;
    background-repeat: no-repeat;
    background-position: center;
    background-color: white;
    margin-bottom: 2px;
}

.logoUpload {
    width: 150px;
    display: none;
}

.customerLogoUploadLabel:hover {
    cursor: pointer;
    border-color: var(--primary-color);
}

#selectUserEditOption {
    border: none;
    padding: 0 10px;
    height: 25px;
    box-sizing: border-box;
    border-radius: 5px;
    margin-bottom: 20px;
}

.containerUserSettings {
    margin-bottom: 15px;
}

.containerUserSettings div {
    margin-bottom: 10px;
}

#deactivatedUser,
.userRightsManagement input[type="checkbox"],
.userRightsManagement input[type="radio"],
.hideNotice {
    height: auto;
    width: unset;
    margin: auto;
}

#createNewUser,
#editSelectedUser {
    display: none;
}

.userRightsManagement {
    background-color: lightgray;
    /*padding-left: 20px;*/
    /*padding-right: 20px;*/
    float: left;
    box-sizing: border-box;
    height: 140px;
}

#userRightsManagementContainer .form_inside_heading {
    padding-left: 20px !important;
    padding-right: 0 !important;
    -webkit-border-radius: 0;
}

.userPresets {
    float: none !important;
    width: 100% !important;
    height: unset !important;
}

.userPresets ul {
    display: block;
    padding: 20px 0 !important;
}

.userPresets label {
    margin-right: 45px;
}

.userPresetsGridContainer {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, auto));
    ;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    margin-bottom: 15px;
}

.lastBox {
    margin-right: 0 !important;
}

.userRightsManagement ul {
    list-style-type: none;
    padding: 0;
    padding-left: 20px !important;
}

.userRightsManagement li {
    padding-right: 10px;
}

.userRightsManagement label {
    padding-left: 10px;
}

#submitCompanyUserDetails .styledStdButton {
    margin-top: 20px;
}

.content_divider {
    margin-bottom: 25px;
    margin-top: 25px;
    border: none;
    height: 1px;
    background-color: var(--secondary-color);
    opacity: 0.25;
}

.userRightsManagement input:hover,
.userRightsManagement label:hover {
    cursor: pointer;
}

#confirmMessage {
    display: none;
}

#comfirmationPassword {
    -webkit-text-security: disc;
    font-size: 150%;
    max-width: 250px;
}

.updateUserSuccess {
    padding: 10px 20px;
    color: white;
    margin: 0 0 15px 0;
    background-color: limegreen;
}

.updateUserFailed {
    padding: 10px 20px;
    color: white;
    margin: 0 0 15px 0;
    background-color: red;
}

/* PROJECTS OVERVIEW PAGE */

.content-head-container {}

.headline {
    float: left;
    font-family: Roboto, sans-serif;
    font-size: 25px;
    font-weight: normal;
    margin: 25px 0 25px 0;
    color: var(--secondary-color);
    word-break: break-all;
}

#displayOptions {
    float: right;
    margin: 25px 0 25px 0;
    padding: 10px;
    border-radius: 3px;
    border: 0;
}

#filterUnternehmen {
    float: right;
    margin: 25px 10px 25px 0;
    border-radius: 3px;
    border: 0;
}

#filterUnternehmen,
#displayOptions,
#mySearch {
    padding: 0 10px;
    height: 25px;
    box-sizing: border-box;
}

.checkboxContainer {
    display: block;
    position: relative;
    top: 30px;
    cursor: pointer;
    font-size: 22px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    float: right;
    user-select: none;
    margin-right: 35px;
}

.checkboxContainer input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.favoritesCheckmark {
    position: absolute;
    top: -5px;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: white;
    border-radius: 3px;
}

.checkboxContainer:hover input~.favoritesCheckmark {
    background-color: #ccc;
}

.checkboxContainer input~.favoritesCheckmark i {
    /*background-color: var(--secondary-color);*/
    color: #bbbbbb;
}

.checkboxContainer input:checked~.favoritesCheckmark i {
    /*background-color: var(--secondary-color);*/
    color: #ffb300;
}

.favoritesCheckmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkboxContainer input:checked~.favoritesCheckmark:after {
    display: block;
}

.checkboxContainer .favoritesCheckmark:after {
    /*left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);*/
}

#mySearch {
    float: right;
    margin: 25px 10px 25px 0;
    padding: 8.5px;
    border-radius: 3px;
    border: 0;
    max-width: 100px;
}

.headline-divider {
    clear: left;
    width: 100%;
    margin-bottom: 40px;
    background-color: #bdbdbd;
    height: 1px !important;
}

.container {
    height: calc(100% - 63px);
    display: flex;
}

#projectDataContainer {
    margin-top: 20px !important;
}

#galleryItems {
    /*    display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    */
    margin-left: -37px;
    margin-right: 0;
}

#galleryItems {
    display: none;
}

.galleryItem {
    position: relative;
    border-radius: 5px;
    border: 2px solid;
    float: left;
    /*  top: 20px;
        margin: 0 10px 80px 10px;
        */
    min-width: 160px;
}

.galleryItem:hover {
    /*    position: relative;
        top: 25px;
        left: 5px;
        -ms-transform: scale(1.05,1.05); !* IE 9 *!
        -webkit-transform: scale(1.05,1.05); !* Safari *!
        transform: scale(1.05,1.05); !* Standard *!*/
    box-shadow: 0 0 15px var(--secondary-color);
}

.galleryItemSolo {
    /*  position: relative;
        float: left;
      top: 20px;*/
    border-radius: 5px;
    border: 2px solid;
    /*margin: 8px 60px 25px 0;*/
    margin: 8px 10px 25px 0;
    z-index: 100;
    /*min-width: 180px;*/
    min-width: 160px;
}

.galleryItemSolo:hover {
    /*    position: relative;
        top: 25px;
        left: 5px;
        -ms-transform: scale(1.05,1.05); !* IE 9 *!
        -webkit-transform: scale(1.05,1.05); !* Safari *!
        transform: scale(1.05,1.05); !* Standard *!*/
    box-shadow: 0 0 15px var(--secondary-color);
    cursor: pointer;
}

#projectImageContainer {
    float: left;
}

.galleryItemNewProject {
    position: relative;
    background-color: white;
    border-radius: 5px;
    border: 2px solid var(--secondary-color);
    width: 160px;
    height: 200px;
    /*box-shadow: 3px 3px 2px #666666;*/
    float: left;
    /*    top: 20px;
        margin: 0 10px 80px 10px;
        */
}

.galleryItemNewProject:hover {
    /*    position: relative;
        top: 25px;
        left: 5px;
        -ms-transform: scale(1.05,1.05); !* IE 9 *!
        -webkit-transform: scale(1.05,1.05); !* Safari *!
        transform: scale(1.05,1.05); !* Standard *!*/
    box-shadow: 0 0 15px var(--secondary-color);
}

.galleryImageContainer {
    position: relative;
    border-radius: 3px 3px 0 0;
    height: 140px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.galleryImageContainerNewProject {
    position: relative;
    border-radius: 3px 3px 0 0;
    /*height: 193px;*/
    height: 140px;
    background-position: center;
    /*background-size: cover;*/
    background-size: contain;
    background-repeat: no-repeat;
}

.galleryImageContainerSolo {
    position: relative;
    border-radius: 3px 3px 0 0;
    height: 170px;
    background-size: cover;
    background-position: center;
}

.gic-0 {
    background-image: url(../images/placeholder_image.svg);
}

.gic-1 {
    background-image: url(../images/Recht123.png);
}

.gic-2 {
    background-image: url(../images/Louvre.png);
}

.gic-3 {
    background-image: url(../images/Orangejuice.png);
}

.gic-4 {
    background-image: url(../images/Phone.png);
}

.galleryImage {
    border-radius: 3px 3px 0 0;
    height: 140px;
    width: 149px;
}

.galleryImageNew {
    border-radius: 3px 3px 0 0;
    padding: 15px 15px 20px;
    height: 120px;
    width: 130px;
}

.newProjectImage {
    background-color: whitesmoke;
    border-radius: 7px;
    height: 100%;
    width: 100%;
}

.newProjectImageIcon {
    color: #dbdbdb;
    font-size: 80px;
    padding-top: 35px;
}

.galleryTitle {
    height: 30px;
    text-align: center;
    line-height: 30px;
    font-family: Roboto, sans-serif;
    color: white;
    background-color: var(--secondary-color);
    padding: 0 10px 0 10px;
    max-width: 140px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.favoriteOption>.fas.fa-star {
    color: #ffb300;
}

.favoriteOption>.far.fa-star {
    color: #bbbbbb;
}

.favoriteOption:hover {
    cursor: pointer;
}

.favoriteOption {
    display: block;
}

.tooltip:hover:after {
    background: var(--secondary-color);
    border-radius: 5px 5px 0 0;
    color: #fbfbfb;
    content: attr(data-tooltip);
    left: 0;
    padding: 10px;
    line-height: 200%;
    position: absolute;
    z-index: 98;
    width: 160px;
    height: auto;
    max-height: 170px;
    bottom: 30px;
    font-size: 65%;
    white-space: normal;
    word-break: break-all;
    box-sizing: border-box;
}

.galleryTitleNew {
    position: relative;
    top: -50px;
    height: 30px;
    text-align: center;
    font-family: Roboto, sans-serif;
    color: #666;
    padding: 0 10px 0 10px;
}

.galleryMenu {
    text-align: center;
    line-height: 30px;
    font-family: Roboto, sans-serif;
    color: #666;
    font-size: 12px;
    background-color: white;
    border-radius: 0 0 3px 3px;
}

.link-without-decoration {
    text-decoration: none;
}

#sortable {
    list-style-type: none;
    margin: 37px 0 0 0;
    padding: 0;
}

#sortable li {
    margin: 0 0 37px 37px;
    float: left;
    width: 164px;
    height: 204px;
    text-align: center;
}

#listViewItems {
    display: none;
}

.tablesorter-header-inner {
    display: inline-block;
}

.tableHeadListView {
    background-color: var(--secondary-color);
    line-height: 30px;
    padding-left: 15px;
    color: white;
    text-align: center;
}

.hangingButtonListView {
    /*float: right;
    width: 25%;*/
    background-color: #bdbdbd;
    border-radius: 0 0 5px 5px;
    font-size: 15px;
    color: white;
    padding: 10px 15px 10px 15px;
    line-height: 15px;
    text-align: center;
    margin-top: -98px;
    cursor: pointer;
}

.hangingButtonListView:hover {
    background-color: var(--secondary-color);
}

.foldOutElementListView {
    /*   background-color: white;*/
    /* border-radius: 0 0 0 5px; */
    margin-top: 37px;
    margin-bottom: 100px;
    overflow-x: auto;
}

.foldOutElementListViewProjectItems {
    margin-bottom: 0;
}

.foldOutElementListViewProjectItems tbody tr:last-child td:first-child {
    border-radius: 0 0 0 5px;
}

.foldOutElementListViewProjectItems tbody tr:last-child td:last-child {
    border-radius: 0 0 5px 0;
}

.listViewTable {
    width: 100%;
}

.listViewTable th {
    height: 37px;
    font-weight: normal;
    background-color: var(--secondary-color) !important;
}

.listViewTable th:hover {
    cursor: pointer;
}

.listViewTable th:after {
    font-weight: bold;
    font-family: "Font Awesome 5 Free", sans-serif;
    content: ' \f0d7';
    color: transparent;
}

.listViewTable th:hover:after {
    color: white;
}

.listViewTable tr th:first-child {
    border-left: 0;
    border-radius: 5px 0 0 0;
    padding: 0 10px;
}

.listViewTable tr th:last-child {
    border-right: 0;
    border-radius: 0 5px 0 0;
    padding: 0 10px;
}

.listViewTable tr {
    height: 39px;
}

.listViewTable tr:not(.tableHeadListView):hover {
    color: white;
    background-color: #a6a6a6 !important;
    cursor: pointer;
}

.listViewTable tr:nth-child(even) {
    background-color: #eeeeee;
}

.listViewTable tr:nth-child(odd) {
    background: white;
}

.listView-date-cell {
    width: 110px;
    text-align: center;
    padding: 0 10px;
}

.listViewProjectName_field {
    width: auto;
    padding: 0 10px;
}

.listViewTable td {
    padding: 0 10px;
    text-align: center;
    word-break: break-word;
}

tr#addProject:hover {
    background-color: var(--secondary-color) !important;
}

tr#addProject {
    background-color: var(--primary-color);
    color: white;
}

#noteModalContainer {
    position: relative;
}

#noteText,
#editNoteText {
    padding: 10px;
    margin-top: 15px !important;
    width: 100%;
    height: 100%;
    box-sizing: border-box;
    border: 1px solid #ddd;
}

.chooseProjectImageContainer {
    margin: 10px -4px;
}

.chooseProjectImageContainer img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    opacity: 0.5;
    cursor: pointer;
    border-radius: 3px;
}

.chooseProjectImageContainer img:hover {
    opacity: 1;
}

.projectImageElement {
    float: left;
    width: 80px;
    height: 70px;
    border-radius: 5px;
    border: 2px solid #999999;
    margin: 5px;
}

.errorNotice {
    background-color: #ff000080;
    color: white;
    font-size: 9.8px;
    height: 70px;
    text-align: center;
    width: 80px;
    box-sizing: border-box;
    z-index: 1;
    position: fixed;
    display: none;
    padding: 13px 5px;
}

.labelForChooseUploadFile {
    color: white;
    font-size: 25px;
    height: 70px;
    width: 80px;
    border-radius: 2px;
    display: table-cell;
    vertical-align: middle;
}

.labelForChooseUploadFile:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

#uploadProjectImage {
    width: 100%;
    height: 100%;
    background-color: lightgray;
    text-align: center;
}

.selectedProjectImage {
    box-shadow: 0 0 3px 3px var(--secondary-color);
    opacity: 1 !important;
    border-radius: 3px;
}

.selectedProjectImage img {
    opacity: 1;
}

.deleteImageButton {
    margin-left: 74px;
    margin-top: -7px;
    font-size: 10px;
    padding: 0 3px 0;
    background-color: #999999;
    color: #fff;
    position: absolute;
    border-radius: 50%;
    z-index: 100;
}

.deleteImageButton:hover {
    background-color: red;
    cursor: pointer;
}

.ui-autocomplete {
    max-height: 200px;
    max-width: 300px;
    overflow-y: auto;
    overflow-x: hidden;
}

.ui-menu .ui-menu-item {
    font-size: 13px;
}


/* MOBILE MENU */

@media only screen and (max-width: 750px) {
    .menuElementsAfterIcon,
    #menu-footer>a>p {
        display: none;
    }
    ul.navigation,
    #menu-footer a {
        width: 60px;
    }
    #psi_logo_menu {
        height: 40px;
    }
}

@media only screen and (min-width: 550px) and (max-width: 925px) {
    #filterOptionsContainer {
        width: 379px;
        margin: auto;
    }
}

@media only screen and (max-width: 925px) {
    .headline {
        width: 100%;
        margin: 25px 0 0 0;
        text-align: center;
    }
    #mySearch {
        max-width: 75px;
    }
    #detailListTable>thead>tr>th:nth-child(n+3),
    #detailListTable>tbody>tr>td:nth-child(n+3) {
        display: none !important;
    }
    #detailListTable>thead>tr>th:nth-child(2) {
        border-radius: 0 5px 0 0;
    }
    #notesTable>thead>tr>td:nth-child(n+3),
    #notesTable>tbody>tr>td:nth-child(n+3) {
        border-right-width: 0 !important;
    }
    #notesTable>thead>tr>th:nth-child(n+4),
    #notesTable>tbody>tr>td:nth-child(n+4) {
        display: none !important;
    }
    #documentsTable>thead>tr>th:nth-child(3),
    #documentsTable>tbody>tr>td:nth-child(3) {
        display: none !important;
    }
}

@media only screen and (max-width: 635px) {
    #psi_logo_text_menubar {
        float: right;
        line-height: initial;
        text-align: left;
        padding-top: 14px;
        font-family: Roboto, sans-serif;
        font-weight: bold;
        width: min-content;
        font-size: 65%;
    }
}

@media only screen and (max-width: 555px) {
    #displayOptions {
        width: 100%;
    }
    #filterUnternehmen {
        margin: 0;
        width: 100%;
    }
    #mySearch {
        width: 75% !important;
        max-width: inherit;
        margin: 25px 0 25px 0;
    }
    .galleryItemSolo {
        margin: 8px 0 25px 0;
    }
    #projectImageContainer,
    #detailsContainer {
        width: 100% !important;
    }
    /* MOBILE MENU*/
    /*

li.navigation {
        height: 45px;
    }

    ul.navigation {
        line-height: 45px;
    }

    .container {
        display: block;
    }
    #navigation-container{
        width: 100% !important;
    }

    li.navigation a {
        height: 45px;
    }

    .menu-footer-slim,
    #menu-footer a {
        position: inherit;
        bottom: unset;
        display: inline-flex;
        width: auto;
    }

    #menu-footer {
        text-align: center;
        background-color: #f6f6f6;
    }

    #psi_logo_menu {
        height: 35px;
        padding-right: 15px;
        padding-top: 6px;
    }

        #navigation-container > ul{
            width: 100% !important;
        }

        .menuElementsAfterIcon {
            display: inline-block !important;
        }

        li.navigation a {
            height: calc(100% / 6);
            position: fixed;
            width: 100%;
            padding-left: 0;
        }

        li.navigation {
            height: calc(100% / 6);
            text-align: center;
        }

        #navigation-container > ul {
            width: 100%;
            height: 100%;
        }

        #navigation-container {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
            border-right: 0;
        }

    */
}

@media only screen and (max-width: 500px) {
    /*
    }
        #detailsContainer {
            width: 100% !important;
            clear: left;
            position: relative;
            top: 20px;
        }

        .container {
            width: 100%;
            display: block;
        }

        #displayOptions {
            float: left;
            margin: 0 0 25px 0;
            width: 100%;
        }

        #psi_logo_menu {
            height: 45px;
            float: left;
            padding-left: 15px;
        }

        #navigation-container {
            width: 100%;
            height: 100%;
            position: fixed;
            top: 0;
        }

        #li-element-right {
            padding: 0 30px 0 25px;
        }

        ul.navigation {
            width: 100%;
        }
*/
    /*
        .hangingButton, .hangingDeleteButton {
            box-sizing: border-box;
            width: 49% !important;
            font-size: 12px;
        }

        .hangingButtonsIcons {
            padding-right: 5px;
        }
    */
    .galleryItemSolo {
        border-radius: 5px;
        border: 2px solid;
        float: left;
        width: 100%;
        z-index: 100;
    }
    #galleryItems {
        margin-left: 0;
        margin-right: 0;
    }
    .galleryItem {
        min-width: 100%;
    }
    .galleryItems {
        display: none;
    }
    .galleryItemSolo {
        margin: 8px 0 25px 0;
    }
    .galleryTitle {
        max-width: 364px;
    }
    .tooltip:hover:after {
        width: 100%;
    }
    .listViewTable td:nth-child(n+4),
    .listViewTable th:nth-child(n+4) {
        display: none;
        border-radius: 0 5px 0 0;
    }
    .listViewTable td:nth-child(3),
    .listViewTable th:nth-child(3) {
        border-radius: 0 5px 0 0;
        border-right: 0;
    }
    .notesTable td:nth-child(n+4),
    .tableHead td:nth-child(n+4) {
        display: none;
    }
    .notesTable td:nth-child(n+3),
    .tableHead td:nth-child(n+3) {
        border-right: 0;
    }
    .galleryItemNewProject {
        width: 100%;
    }
    #sortable li {
        margin: 0 0 37px 0;
        width: 100%;
    }
    .optionsTable {
        column-count: 1 !important;
    }
    .listViewTable td {
        padding: 10px;
    }
}


/* PROJECT DETAILS PAGE */

#projektVorlagen,
#projektArt,
#projektUnternehmen,
#werkkennzahl {
    margin-top: 8px;
    margin-bottom: 25px;
    padding: 5px;
    border-radius: 5px;
    width: 100%;
    border: 1px solid #ccc;
}

#back-arrow {
    text-decoration: none;
    color: white;
    padding-right: 15px;
}

#back-arrow:hover {
    color: var(--secondary-color);
}

#detailsContainer {
    width: calc(100% - 200px);
    float: right;
    margin-bottom: 50px;
    /*  position: relative;
      top: 20px;*/
}

#saveProjectNameButton,
#saveProjectDescriptionButton {
    position: relative;
    float: right;
    top: 0;
    margin: 0 0 25px 0;
    width: 100%;
    border: 0;
    padding: 8px;
    border-radius: 5px;
}

#saveProjectNameButton {
    margin-top: -10px;
}

#saveProjectNameButton:hover,
#saveProjectDescriptionButton:hover {
    background-color: var(--secondary-color);
    color: white;
}

#nameinfo {
    margin-bottom: 15px;
    width: 100%;
    margin-top: 8px;
    box-sizing: border-box;
    border-radius: 5px;
}

#description {
    height: 78px;
    resize: none;
    overflow-y: auto;
    padding: 4px 10px;
    margin-top: 8px;
    /*margin-bottom: 45px;*/
    width: 100%;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.notesArea {
    margin-top: 45px;
}

.notesArea,
.documentsArea,
.optionsArea,

/*.saveArea,*/

.indexArea,
.resultArea {
    clear: left;
    margin-bottom: 50px;
}

.saveAndCreateArea {
    /* display: none;*/
    clear: left;
    margin-top: 25px;
}

.ansichtButton {
    background-color: #bdbdbd;
    color: white;
    border-radius: 5px 5px 0 0;
    border-width: 0;
    padding: 8px;
    margin-bottom: 2px;
    margin-right: 2px;
}

.ansichtButton:hover {
    cursor: pointer;
    background-color: var(--secondary-color);
}

.ansichtButton_active {
    background-color: var(--primary-color);
}

.accordion {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    padding: 10px 15px 10px 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    font-weight: bold;
    transition: 0.4s;
    border-radius: 5px 5px 0 0;
    margin-bottom: 2px;
}

.accordionSmall {
    cursor: pointer;
    transition: 0.4s;
}

#verzeichnisButton {
    margin-top: 0;
}

#verzeichnisButton input {
    padding-top: 10px !important;
    height: inherit;
}

.ergebnisAccordion {
    border-radius: 0 5px 0 0;
}

.active,
.accordion:hover {}

.accordion:after {
    font-family: "Font Awesome 5 Free", sans-serif;
    content: '\f0d7';
    float: right;
    font-weight: bold;
}

.accordion-folded:after {
    font-family: "Font Awesome 5 Free", sans-serif;
    content: "\f0d8";
    float: right;
    font-weight: bold;
}

.accordionSmall:after {
    font-family: "Font Awesome 5 Free", sans-serif;
    content: '\f0d7';
    font-weight: bold;
    padding-left: 5px;
}

.accordionSmall-folded:after {
    font-family: "Font Awesome 5 Free", sans-serif;
    content: "\f0d8";
    font-weight: bold;
    padding-left: 5px
}

.accordionButtonEdges {
    border-radius: 5px;
}

.accordionResultButtonEdges {
    border-radius: 5px 5px 5px 5px;
}

.accordionEdgesResultsTable {
    border-radius: 0 0 10px 10px;
}

.foldOutElement {
    /*background-color: white;
    border-radius: 0 0 0 5px;
    margin-top: -50px;
    margin-bottom: 100px;*/
    overflow-x: auto;
}

.rawTable {
    width: 100%;
    /*background-color: white;*/
}

.rawTable th {
    background-color: #bdbdbd;
}

.rawTable tr:nth-child(odd),
/*#resultsTable tr:nth-child(4n),*/
/*#resultsTable tr:nth-child(4n-1) {*/
#resultsTable tr:nth-child(odd),
.entryInfoOdd {
    background-color: white;
}

.rawTable tr:nth-child(even),
/*#resultsTable tr:nth-child(4n-2),*/
/*#resultsTable tr:nth-child(4n-3) {*/
#resultsTable tr:nth-child(even),
.entryInfoEven {
    background-color: #eeeeee !important;
}

.note-data-field,
.filename-data-field {
    width: 100%;
    padding: 0 10px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 70px;
}

.editNoteButton {}

.editNoteButton:hover {
    color: var(--primary-color);
    cursor: pointer;
}

.note-cell,
.filename-cell {}

.note-cell:hover {
    background-color: var(--primary-color);
    color: white;
    cursor: pointer;
}

.time-cell {
    padding: 0 10px;
    text-align: center;
}

.id-cell {
    text-align: center;
    width: 20px;
}

.date-cell {
    padding: 0 10px;
    text-align: center;
}

.author-cell {
    text-align: center;
    width: 120px;
}

.pages-cell {
    width: 50px;
    text-align: center;
}

.file-format-cell {
    width: 50px;
    text-align: center;
}

.depth-cell {
    width: 50px;
}

.note-checkbox-field,
.document-checkbox-field {
    text-align: center;
}

.tableHead {
    background-color: #bdbdbd;
    line-height: 30px;
    padding-left: 15px;
    color: white;
    text-align: center;
}

.hangingButton {
    /*float: right;*/
    width: 100%;
    box-sizing: border-box;
    background-color: #bdbdbd;
    border-radius: 0 0 5px 5px;
    font-size: 15px;
    color: white;
    padding: 10px 15px 10px 15px;
    line-height: 15px;
    text-align: center;
    /*margin-top: 2px;*/
    /*margin-bottom: 25px;*/
    cursor: pointer;
    border: 0;
}

.hangingButton:hover {
    background-color: var(--secondary-color);
}

.hangingDeleteButton {
    /*float: left;*/
    width: 100%;
    box-sizing: border-box;
    background-color: #bd8889;
    /*border-radius: 0 0 5px 5px;*/
    font-size: 15px;
    color: white;
    padding: 10px 15px 10px 15px;
    line-height: 15px;
    text-align: center;
    margin-bottom: 2px;
    cursor: pointer;
}

.hangingDeleteButton:hover {
    background-color: red;
}

.entryFiles td {
    padding: 0;
    border-left: 0;
}

tr.entryInfo td {
    padding: 5px 5px 5px 10px;
}

.filesOfEntry {
    margin: 0;
    padding: 5px 0;
    list-style-type: none;
}

.filesOfEntry li {
    padding: 7px 11px;
}

.filesOfEntry a {
    text-decoration: none;
    color: dimgray;
    padding-left: 10px;
}

.filesOfEntry a:hover {
    color: var(--secondary-color);
    font-weight: bold;
}

.filePaddingCell {
    border-right: 0;
}

.deleteResultEntry {
    text-align: center;
    padding: 0 9px !important;
}

.deleteResultEntry i:hover {
    cursor: pointer;
    color: red;
}

.deleteSelectedResultCheckMark {
    border-radius: 0 0 5px 5px;
}

.showAllFilesInStatusView {
    display: none;
    cursor: pointer;
}

.showAllFilesInStatusViewButton {
    text-align: right;
    padding-right: 20px !important;
    width: 45px;
}

.showAllFilesInStatusViewButton:hover {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
}

#documentUploadButton {
    display: none;
}

.notesTable,
.documentsTable,
.optionsTable {
    background: white;
}

.optionsTable {
    padding: 5px 10px;
    line-height: 40px;
    border-radius: 0;
}

td.optionsTable {
    border-top: 0;
}

label[for="documentUploadButton"] {
    cursor: pointer;
}

input {
    border: none;
    height: 20px;
    padding: 5px 10px;
    vertical-align: inherit;
    cursor: pointer;
}

input:disabled {
    background-color: #e8e8e8;
    color: #b3b3b3;
}

select[disabled] {
    background-color: #e8e8e8;
    color: #b3b3b3;
}

table {
    border-collapse: collapse;
}

table td,
table th {
    border: 2px solid #e8e8e8;
    padding: 0 10px;
}

table tr:first-child th {
    border-top: 0;
}

table tr:last-child td {
    /*border-bottom: 0;*/
}

table tr td:first-child,
table tr th:first-child {
    border-left: 0;
}

table tr td:last-child,
table tr th:last-child {
    border-right: 0;
}

*:focus {
    outline: none;
}


/*!* clears the 'X' from Internet Explorer *!*/


/*input[type=number]::-ms-clear {  display: none; width : 0; height: 0; }
input[type=number]::-ms-reveal {  display: none; width : 0; height: 0; }*/


/*!* clears the 'X' from Chrome *!*/


/*input[type="number"]::-webkit-search-decoration,
input[type="number"]::-webkit-search-cancel-button,
input[type="number"]::-webkit-search-results-button,
input[type="number"]::-webkit-search-results-decoration { display: none; }*/

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    /*!* display: none; <- Crashes Chrome on hover *!*/
    -webkit-appearance: none;
    margin: 0;
    /*!* <-- Apparently some margin are still there even though it's hidden *!*/
}

.tooltip .tooltiptext {
    visibility: hidden;
    width: auto;
    background-color: #666;
    color: #fff;
    text-align: center;
    font-size: 12px;
    line-height: initial;
    border-radius: 5px;
    padding: 8px;
    position: absolute;
    z-index: 2;
}

.tooltip:hover .tooltiptext {
    visibility: visible;
}

.optionsTable {
    color: #666;
    padding-top: 15px;
    /*column-count: 2;*/
}

.optionsTable input {
    width: 13px !important;
    float: left;
    height: 13px !important;
}

.optionsTable label {
    display: block;
    line-height: 25px;
    margin: -3px 0 15px 35px;
}

.optionsTable label:hover {
    cursor: pointer;
}

.pagenumber_option {
    background-color: #f5f5f5;
}

#saveNewProject {
    /*float: left;*/
    text-align: center;
    /*font-size: larger;*/
    box-sizing: border-box;
    width: 100%;
    background-color: #bdbdbd;
    padding: 10px;
    border-radius: 0 0 5px 5px;
    color: white;
}

#saveNewProject:hover {
    background-color: var(--secondary-color);
    cursor: pointer;
}

.downloadAsPackageButton {
    background-color: #bdbdbd;
    border-width: 0;
    padding: 5px;
    color: white;
    border-radius: 5px;
    margin: 8px 0;
}

.downloadAsPackageButton:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.downloadResultVersionItems {
    text-align: center;
}

.resultItemNames {
    width: 100%;
}

.resultItemNames ul {
    list-style-type: none;
    padding-inline-start: 0;
    padding-left: 0;
}

.resultItemDate {
    white-space: nowrap;
}


/* PROGRESS BAR ON STATUS FILES */

@keyframes loader {
    0% {
        width: 0%;
        background-color: #f63a0f;
    }
    15% {
        width: 15%;
        background-color: #f27011;
    }
    25% {
        width: 25%;
        background-color: #f2b01e;
    }
    50% {
        width: 50%;
        background-color: #f2d31b;
    }
    75% {
        width: 75%;
        background-color: #86e01e;
    }
}

.progress-bar {
    border-radius: 3px;
    overflow: hidden;
    width: 100%;
}

.bar {
    background: rgba(0, 0, 0, 0.075);
    display: block;
}

.progress {
    display: block;
    animation: loader 15s ease infinite;
    color: #fff;
    padding: 5px;
    width: 0;
    background-image: -webkit-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -moz-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: -o-linear-gradient(top, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.05));
    -webkit-transition: 0.4s linear;
    -moz-transition: 0.4s linear;
    -o-transition: 0.4s linear;
    transition: 0.4s linear;
    -webkit-transition-property: width, background-color;
    -moz-transition-property: width, background-color;
    -o-transition-property: width, background-color;
    transition-property: width, background-color;
}

.previousVersionsRows {
    color: #bdbdbd;
}

.resultVersionItems {
    width: 50%;
}


/* LANDING PAGE */

#landingpage {
    background-color: #f8f8f8;
    color: #666;
}

#landingpage body {
    background-color: #f8f8f8;
    color: #666;
}

#landing_container {
    width: 100%;
    height: auto;
}

#head_container {
    width: 100%;
    background-color: #f8f8f8;
    z-index: -100;
}

#customer_login_container {}

#customer_login {
    position: absolute;
    width: 100px;
    height: 35px;
    background-color: #1c388f;
    line-height: 35px;
    text-align: center;
    top: 25px;
    right: 10%;
    border-radius: 3px;
    text-transform: uppercase;
}

#customer_login a {
    text-decoration: none;
    color: white;
    text-transform: uppercase;
}

#customer_login:hover {
    background-color: #01a0e4;
    cursor: pointer;
}

#menubar-langindpage {
    height: 50px;
    margin-top: 100px;
    /*border-top: 100px solid #d2d2d2;*/
    text-align: right;
    padding-right: 10%;
    font-size: 18px;
    background-image: linear-gradient(-90deg, #1c388f, #00a1e5) !important;
    /*background-color: #666;*/
}

.landing_nav {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    float: right;
    display: inline-block;
}

.landing_nav a {
    color: white;
    text-align: center;
    padding: 14px 0;
    margin-left: 75px;
    text-decoration: none;
    text-transform: uppercase;
}

.landing_nav_link {
    display: inline-block;
    color: #000;
    text-decoration: none;
}

.landing_nav_link::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: white;
    transition: width .3s;
}

.landing_nav_link:hover::after {
    width: 100%;
}

.landing_nav a:hover {
    color: white;
    /*
    box-shadow: inset -2px -4px 0 -2px white;
    */
}

.active {
    background-color: #4CAF50;
    color: white;
}

.landing_nav .icon {
    display: none;
}

.landingpage_nav_icon:before {
    padding-left: 20px;
}

@media screen and (max-width: 1000px) {
    .landing_nav:last-child {
        position: relative;
        width: 100%;
    }
    .landing_nav a {
        display: none;
        margin-left: 0;
    }
    .landing_nav a.icon {
        float: right;
        display: block;
        top: 0;
        background-color: rgba(0, 0, 0, 0) !important;
        padding-right: 10%;
    }
    .landing_nav a.icon:hover {
        color: #01a0e4;
        cursor: pointer;
    }
    .landing_nav_link::after {
        height: 0;
    }
    .responsiveLastNavLink {
        margin-bottom: 75px;
    }
    .landing_nav a:hover {
        color: #01a0e4;
    }
    .landing_nav.responsive .icon {
        position: absolute;
        right: 0;
        top: 0;
    }
    .landing_nav.responsive a {
        position: relative;
        float: none;
        display: block;
        text-align: right;
        top: 50px;
        background-color: #333333;
        padding-right: 10%;
    }
    #menubar-langindpage {
        padding-right: 0;
    }
}

#infotext {
    position: absolute;
    color: dimgray;
    text-align: left;
    left: calc(10% + 115px);
    top: 63px;
}

#logo_container {
    position: absolute;
    width: 125px;
    height: 125px;
    margin-left: 10%;
    margin-top: -90px;
    text-align: center;
    z-index: 100;
    padding-top: 25px;
}

#ladingpage_maincontent {
    position: relative;
    width: 100%;
    /*    width: 80%;
        padding-left: 10%;
        padding-right: 10%;
        padding-top: 75px;*/
    height: 475px;
    margin-bottom: 2px;
    float: left;
}

#slogan {
    position: absolute;
    top: 10%;
    margin-left: 10%;
    margin-right: 10%;
    margin-bottom: 50px;
    font-size: 190%;
    color: #0a7ec8;
    padding: 10px 20px 10px 25px;
    /*text-transform: uppercase;*/
    /* max-width: 700px; */
    line-height: 150%;
    font-weight: bold;
}

#landingpage_image {
    padding-top: 50px;
}


/*.sub_page_container {
    margin-top: 100px;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}*/


/*.sub_page_container {*/


/*float: left;*/


/*padding-top: 75px;*/


/*width: 80%;*/


/*padding-left: 10%;*/


/*padding-right: 10%;*/


/*background-color: #f8f8f8;*/


/*}*/


/* ---- PARTICLE EFFECT ---- */

canvas {
    display: block;
    vertical-align: bottom;
}

#particles-js {
    position: relative;
    float: left;
    width: 100%;
    /*top: 2px;*/
    height: 650px;
    /*background-image: linear-gradient(-90deg,#1c388f,#00a1e5) !important;*/
    background-image: linear-gradient(180deg, #f8f8f8, #0b78c3) !important;
    /*background-color: #89867e;*/
    background-repeat: no-repeat;
    background-size: cover;
    background-position: 50% 50%;
}

#advantages_container {
    position: relative;
    /* top: -130px; */
    z-index: 500;
    float: right;
    color: white;
    border-radius: 5px 5px 5px 5px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.25);
    margin-left: 100%;
}

#advantages_head {
    background-color: white;
    color: #0b78c3;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 5px 5px 0 0;
    height: 50px;
    font-size: 18px;
    line-height: 50px !important;
}

#advantages_content {
    width: 275px;
    background-color: lightgray;
    color: #0b78c3;
    border-radius: 0 0 5px 5px;
    padding-top: 20px;
    padding-bottom: 25px;
    text-align: center;
    list-style: none;
}

#advantages_container ul {
    margin: 0;
}

#advantages_container li {
    text-align: left;
    line-height: 30px;
    padding: 0;
    margin: 0;
    list-style-type: none;
}

.fa-check {
    padding-right: 15px;
}

#advantages_button {
    text-align: center;
    border: 0;
    padding: 15px;
    margin-top: 20px;
    background-color: #1c388f;
    font-size: 14px;
    color: white;
    font-weight: bold;
    width: calc(100% - 50px);
    border-radius: 5px;
}

#advantages_button:hover {
    background-color: #00a1e5;
    color: white;
    cursor: pointer;
}

#process_container {
    float: left;
    height: 50px;
    width: 100%;
    display: -webkit-box;
    background-color: #135bab;
}

#intro_text {
    display: inline-block;
    float: left;
    line-height: 27px;
    width: 45%;
}

#intro_text_contact {
    line-height: 27px;
    padding-top: 55px;
    padding-bottom: 40px;
}

.intro_text_list {
    float: right;
    line-height: 27px;
    width: 45%;
}

@media screen and (max-width: 750px) {
    #intro_text {
        float: left;
        width: 100%;
    }
    .intro_text_list {
        float: left;
        width: 100%;
        margin-left: -20px;
    }
}

ul.intro_text_list {
    list-style-type: none;
    padding-left: 20px;
}

.intro_text_list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px
}

.intro_text_list li:before {
    content: '\+';
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 125%;
    position: absolute;
    top: 0;
    left: 0;
}

.intro_list_item {
    color: var(--secondary-color);
    font-weight: bold;
}

#intro_text_wo_border {
    display: inline-block;
    float: left;
    padding-top: 55px;
    padding-bottom: 75px;
    line-height: 27px;
}

.process_steps {
    width: calc(100% / 6);
}

.process_steps a:hover {}

.process_steps:after {
    content: url('../images/arrow_divider.svg');
    float: right;
    padding-right: 15px;
}

.process_first {
    width: 10%;
}

.process_first:after {
    content: url('../images/arrow_divider.svg');
    float: right;
    padding-right: 15px;
}

.process_last {
    width: 0;
}

.process_links {
    text-decoration: none;
    position: absolute;
    color: white;
    font-size: 16px;
    height: 50px;
    line-height: 50px;
}

.fa-angle-right {
    float: right;
    font-size: 200px;
    color: #f8f8f8;
    position: relative;
    line-height: 50px !important;
    font-stretch: extra-condensed;
}

.step_icon {
    font-size: 25px;
}

.text_block_formatting {
    column-count: 2;
    column-width: 350px;
    column-gap: 40px;
    text-align: justify;
}

#content_area {
    display: inline-block;
    width: 80%;
    margin-left: 10%;
    margin-right: 10%;
}

#headline {
    position: relative;
    display: inline-block;
    font-size: 35px;
    padding: 10px 50px 10px 15%;
    background-color: #00a1e5;
    color: white;
    margin-left: -15%;
    border-radius: 0 10px 10px 0;
}

.steps_container {
    width: 100%;
    padding-bottom: 75px;
    padding-top: 75px;
    content: ' ';
    display: inline-block;
    border-bottom: 2px dashed #d0d0d0;
}

.intro_text_container {
    width: 100%;
    padding-bottom: 75px;
    padding-top: 75px;
    content: ' ';
    display: inline-block;
}

.steps_container:nth-child(2) {
    padding-top: 0;
}

.steps_container:last-child {
    border-bottom: 0;
}

.step_image_left {
    float: left;
    margin-right: 50px;
}

.step_image_right {
    float: right;
    margin-left: 50px;
}

.steps_image {
    width: 450px;
    height: 250px;
    background-color: #89867e;
    margin-top: 15px;
    margin-bottom: 15px;
}

.steps_text {
    min-width: 300px;
}

.steps_text p {
    line-height: 27px;
}

.steps_text h2 {
    color: #00a1e5;
}

.step_numbering {
    font-family: 'Permanent Marker', cursive;
    font-size: 65px;
    margin-right: 20px;
    color: #d6d6d6;
}

.legal_block_first {
    padding-top: 75px;
    padding-bottom: 35px;
    border-bottom: 2px dashed #d0d0d0;
}

.legal_block_middle {
    padding-bottom: 55px;
    column-count: 2;
    column-width: 350px;
    column-gap: 40px;
    text-align: justify;
    border-bottom: 2px dashed #d0d0d0;
    line-height: 27px;
}

.legal_block_last {
    padding-bottom: 75px;
    column-count: 2;
    column-width: 350px;
    column-gap: 40px;
    text-align: justify;
    line-height: 27px;
}

.legal_subheadline {
    padding-top: 35px;
    padding-bottom: 35px;
}

.legal_text {
    font-family: Roboto, sans-serif;
    white-space: pre-line;
    line-height: 27px;
}

@media screen and (max-width: 1200px) {
    #landingpage_image {
        max-width: 650px;
    }
}

@media screen and (min-width: 625px) and (max-width: 999px) {
    #advantages_container ul {
        column-count: 2;
        padding-right: 25px;
        padding-left: 25px;
        column-gap: 0;
    }
}

@media screen and (max-width: 1000px) {
    .steps_image {
        margin-bottom: 25px;
        width: 100%;
        height: auto;
    }
    .step_image_left,
    .step_image_right {
        float: left;
        margin-left: 0;
        margin-right: 0;
    }
    #ladingpage_maincontent {
        padding-top: 0;
        padding-bottom: 100px;
    }
    #landingpage_image {
        float: left;
    }
    #advantages_container {
        width: 100%;
        top: -80px;
        margin-left: 0;
    }
    #advantages_content {
        width: 100%;
    }
    #backToTopButton {
        right: 15px;
    }
    .footer_element {
        display: block;
        padding-right: 0 !important;
        padding-bottom: 15px;
        padding-top: 15px;
    }
}

#cta_container {
    width: 100%;
    background-image: linear-gradient(-90deg, #1c388f, #00a1e5) !important;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 75px;
}

#cta_container p {
    margin-left: 10%;
    margin-right: 10%;
    padding-bottom: 25px;
    font-size: 18px;
    color: white;
}

#cta_button {
    height: 75px;
    width: 350px;
    background-color: transparent;
    border: 2px solid white;
    color: white;
    font-size: 25px;
    text-transform: uppercase;
}

#cta_button:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
}

#footer {
    float: left;
    background-color: #333333;
    color: white;
    padding-bottom: 20px;
    padding-top: 20px;
    text-align: center;
    width: 100%;
}

.footer_elements {
    margin-right: 10%;
    margin-left: 10%;
}

.footer_element {
    padding-right: 35px;
}

.footer_element:last-child {
    padding-right: 0;
}

.footer_link {
    text-decoration: none;
    color: white;
}

.footer_link:hover {
    text-decoration: none;
    color: lightgray;
}

.footer_icons_landingpage {
    padding-right: 10px;
}

#backToTopButton {
    position: fixed;
    right: calc((10% / 2) - (30px / 2));
    text-align: center;
    padding-top: 5px;
    bottom: 75px;
    width: 30px;
    height: 25px;
    border-radius: 30px;
    background-color: #00a1e5;
    color: white;
    opacity: 0;
    z-index: 500;
}

#backToTopButton:hover {
    background-color: #00b2ff;
}

@keyframes fadeIn {
    0% {
        opacity: 0
    }
    100% {
        opacity: 1
    }
}

@keyframes fadeOut {
    100% {
        opacity: 0
    }
    0% {
        opacity: 1
    }
}

.contactContainer {
    box-sizing: border-box;
    border-radius: 5px;
    text-align: left;
    width: 100%;
}

#impressumLink {
    text-decoration: none;
    color: #666;
}

#impressumLink:hover {
    text-decoration: none;
    color: #1c388f;
}

@media all and (min-width: 667px) and (max-width: 1023px) {
    #contactForm {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .inputContactForm {
        width: 50%;
        height: 35px;
        padding-left: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        margin-top: 6px;
        margin-bottom: 16px;
        min-width: 100%;
    }
    .contactFormSubmit {
        background-color: #1c388f;
        font-size: 20px;
        width: 100%;
        height: 45px;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 75px;
        min-width: 480px;
    }
}

@media all and (min-width: 1024px) {
    #contactForm {
        margin-left: 0;
        margin-right: 0;
        width: 100%;
    }
    .inputContactForm {
        width: 50%;
        height: 35px;
        padding-left: 15px;
        border: 1px solid #ccc;
        border-radius: 4px;
        box-sizing: border-box;
        margin-top: 6px;
        margin-bottom: 16px;
        min-width: 100%;
    }
    .contactFormSubmit {
        background-color: #1c388f;
        font-size: 20px;
        width: 100%;
        height: 45px;
        color: white;
        padding: 12px 20px;
        border: none;
        border-radius: 4px;
        cursor: pointer;
        margin-bottom: 75px;
        min-width: 100%;
    }
}

#contactForm {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
}

.sub_page_container {
    float: left;
    padding-top: 75px;
    width: 80%;
    padding-left: 10%;
    padding-right: 10%;
    background-color: #f8f8f8;
}

.inputContactForm {
    width: 50%;
    height: 35px;
    padding-left: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    margin-top: 6px;
    margin-bottom: 16px;
    min-width: 100%;
}

textarea.inputContactForm {
    padding: 15px;
}

.contactFormSubmit {
    background-color: #1c388f;
    font-size: 20px;
    width: 100%;
    height: 45px;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-bottom: 75px;
    min-width: 100%;
}

.contactFormSubmit:hover {
    background-color: #00b2ff;
}


/* LOGIN MODAL */

.inputLoginForm {
    width: 100%;
    padding: 12px 10px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/*input[type=text], input[type=password] {*/


/*width: 100%;*/


/*padding: 12px 10px;*/


/*margin: 8px 0;*/


/*display: inline-block;*/


/*border: 1px solid #ccc;*/


/*box-sizing: border-box;*/


/*}*/

.loginModalButtons {
    background-color: var(--primary-color);
    color: white;
    margin: 8px 0;
    border: none;
    cursor: pointer;
    width: 100%;
    height: 35px;
    border-radius: 5px;
}

.noteModalButtons {
    background-color: var(--primary-color);
    color: white;
    margin: 10px 0 0 0;
    border: none;
    cursor: pointer;
    width: 100%;
    /*height: 35px;*/
    border-radius: 5px;
}

.loginModalButtons:hover,
.noteModalButtons:hover {
    background-color: var(--secondary-color);
}

.cancelbtn {
    width: auto;
    padding: 10px 18px;
    background-color: #f44336;
}

.resetPWbtn {
    float: right;
}

.confirmbtn {
    padding: 10px 18px;
    background-color: var(--primary-color);
}

.imgcontainer {
    text-align: center;
    margin: 24px 0 12px 0;
    position: relative;
}

.noteHeadContainer {
    text-align: center;
    position: relative;
}

img.avatar {
    width: 20%;
}

#loginContainer {
    display: none;
}

#resetPWContainer {
    display: none;
}

#passwordResetNotice {
    color: white;
    text-align: center;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
}

.passwordResetNoticeSuccess {
    background-color: #00c319;
}

.passwordResetNoticeError {
    background-color: #f44336;
}

.containerLogIn {
    padding: 16px;
}

.containerNote {
    padding: 16px;
}

span.psw {
    float: right;
    padding-top: 16px;
}

.modal {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    /*height: auto;*/
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0);
    background-color: rgba(0, 0, 0, 0.6);
    padding-top: 60px;
}

.modal-content {
    background-color: #f5f5f5;
    margin: auto;
    /*margin: 5% auto 15% auto;*/
    border: 1px solid #888;
    width: 75%;
    max-width: 450px;
    border-radius: 10px;
}

.setNewPassInfo {
    font-size: 12px;
    font-style: italic;
    background-color: #e5e5e5;
    padding: 14px;
    margin-bottom: 15px;
}

.setNewPassNotice {
    color: white;
    text-align: center;
    padding: 10px 30px;
    border-radius: 5px;
    font-size: 14px;
    background-color: red;
}

.resetPWsuccess {
    background-color: #00c319;
}

.setPWBoldText {
    font-weight: 700;
}

.noteModal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #888;
    width: 75%;
    max-width: 450px;
    border-radius: 10px;
}

.noteDetails td {
    color: #aaa;
    border: 0;
    padding: 10px 10px 0 1px;
    font-size: small;
}

.companyImageModal-content {
    background-color: #fefefe;
    margin: 5% auto 15% auto;
    border: 1px solid #888;
    width: calc(6 * 76px + 38px);
    max-width: 75%;
    border-radius: 10px;
}

.close {
    position: absolute;
    right: 25px;
    top: 0;
    color: #1c388f;
    font-size: 35px;
    font-weight: bold;
}

.closeModal,
.closeImageCropperModal {
    position: absolute;
    right: 15px;
    top: 5px;
    color: #1c388f;
    font-size: 35px;
    font-weight: bold;
}

.close:hover,
.close:focus,
.closeModal:hover,
.closeModal:focus,
.closeImageCropperModal:hover,
.closeImageCropperModal:focus {
    color: red;
    cursor: pointer;
}

.animate {
    -webkit-animation: animatezoom 0.6s;
    animation: animatezoom 0.6s
}

@-webkit-keyframes animatezoom {
    from {
        -webkit-transform: scale(0)
    }
    to {
        -webkit-transform: scale(1)
    }
}

@keyframes animatezoom {
    from {
        transform: scale(0)
    }
    to {
        transform: scale(1)
    }
}

@media screen and (max-width: 300px) {
    span.psw {
        display: block;
        float: none;
    }
    .cancelbtn,
    .confirmbtn {
        width: 100%;
    }
}

.warning-shake {
    animation: shake 1s cubic-bezier(.36, .07, .19, .97) both;
    transform: translate3d(0, 0, 0);
    backface-visibility: hidden;
    perspective: 1000px;
}

@keyframes shake {
    10%,
    90% {
        transform: translate3d(-1px, 1px, 0);
    }
    20%,
    80% {
        transform: translate3d(2px, -2px, 0);
    }
    30%,
    50%,
    70% {
        transform: translate3d(-4px, 4px, 0);
    }
    40%,
    60% {
        transform: translate3d(4px, 0, 0);
    }
}

#customer_login_text {
    text-transform: uppercase;
    font-size: 20px;
    color: #1c388f;
    font-weight: 600;
    text-align: center;
    margin-top: 10px;
}

.noice_userinfo_blink {
    animation: blink 0.5s ease-in-out 1;
}

.noice_userinfo_blink_off {
    animation: blink 0s ease-in-out 1;
}

@keyframes blink {
    50% {
        opacity: 0.25;
    }
}


/* LEISTUNGEN */

#leistungsTable {
    margin-top: 75px;
    margin-bottom: 75px;
    width: 100%;
}

#leistungsTable tr {
    height: 75px;
    border: 5px solid #f8f8f8;
}

#leistungsTable tr:nth-child(even) {
    background-color: #eeeeee;
}

#leistungsTable tr:nth-child(odd) {
    background-color: white;
}

#leistungsTable tr:nth-child(-n+8):hover {
    background-color: #dfdfdf;
    font-weight: bold;
}

#leistungsTable tr:last-child td:nth-child(n+2) {
    text-decoration: none;
    color: #666;
}

#leistungsTable tr:last-child td:nth-child(n+2):hover {
    color: white;
    background-color: #0a7ec8;
    font-weight: bold;
    cursor: pointer;
}

#leistungsTable td {
    text-align: center;
    border: 5px solid #f8f8f8;
}

#leistungsTable td:first-child {
    padding-left: 2%;
    text-align: left;
    width: 50%;
}

#leistungsTable th {
    background-color: #0a7ec8;
    color: white;
    font-size: 115%;
    border: 5px solid #f8f8f8;
    border-radius: 5px 5px 0 0;
}

#leistungsTable th:first-child {
    background-color: #f8f8f8;
}

#leistungsTable tr:last-child td:first-child {
    background-color: #f8f8f8;
}

#leistungsTable i {
    font-size: 30px;
}

.checkmark_yes {
    color: #0a7ec8;
    padding-left: 15px;
}

.checkmark_no {
    color: red;
}


/* MESSAGES PAGE */

.message_area {
    padding: 5px 20px 5px 20px;
    margin-bottom: 15px;
}

.message_area:nth-child(even) {
    background-color: #f8f8f8;
    cursor: pointer;
}

.message_area:nth-child(odd) {
    background-color: #efefef;
    cursor: pointer;
}

.message_area:hover {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
}

#nachrichtenContainer {
    display: grid;
    grid-template-columns: repeat(1, minmax(300px, auto));
    ;
    grid-row-gap: 10px;
    grid-column-gap: 10px;
    margin-bottom: 15px;
}

#hinweiseContainer {
    margin-top: 30px;
}

.collapsible {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
    padding: 10px 15px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 15px;
    border-radius: 5px;
}

.active {
    background-color: var(--secondary-color);
    border-radius: 5px;
    margin-bottom: 15px;
}

.collapsible:hover {
    background-color: var(--primary-color);
}

.content {
    display: none;
    overflow: hidden;
}

.notiz_Box {
    margin-bottom: 15px;
    border-radius: 5px;
}

.notiz_Box i.fas.fa-check {
    padding: 0;
}

.notiz_Box span i:hover {
    cursor: pointer;
}

.notiz_Box:nth-child(odd) {
    background-color: #c7c7c7;
}

.notiz_Box:nth-child(even) {
    background-color: #dcdcdc;
}

.notiz_Box button {
    border: 0;
    color: white;
    background-color: var(--secondary-color);
    padding: 12px 12px 12px 14px;
    float: right;
    border-radius: 0 5px 0 0;
    position: absolute;
    top: 0;
    right: 0;
    mix-blend-mode: hard-light;
}

.notiz_Box button:hover {
    cursor: pointer;
    background-color: var(--primary-color);
}

.notizen_gelesen,
.hinweise_gelesen {
    margin-top: 10px;
    opacity: 0.6;
}

.notizen_gelesen h5,
.hinweise_gelesen h5 {
    padding: 10px 50px 10px 15px;
}

.messageDetailInfo {
    padding: 15px;
    font-size: 85%;
    text-decoration: underline;
    text-decoration-style: inherit;
    text-underline-position: under;
    text-decoration-color: gray;
    line-height: 1.5;
}

.messageTextBox {
    padding: 0 15px 15px 15px;
    width: 100%;
    box-sizing: border-box;
}

.newMessageNotice {
    transform: rotate(-7deg);
    position: absolute;
    left: -13px;
    top: 8px;
    background-color: var(--primary-color);
    padding: 5px 10px;
    font-size: 65%;
    border-radius: 5px;
}


/* SERVICES PAGE */

.serviceItems {
    display: inline-flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: -10px;
    margin-right: -10px;
}

.services_container {
    margin: 0 10px 40px 10px;
    padding: 5px 20px 5px 20px;
    position: relative;
    width: 20%;
    min-width: 200px;
    height: auto;
    float: left;
    text-align: justify;
}

.services_container:nth-child(even) {
    background-color: #f8f8f8;
    cursor: pointer;
}

.services_container:nth-child(odd) {
    background-color: #efefef;
    cursor: pointer;
}

.services_container:hover {
    background-color: var(--secondary-color);
    color: white;
    cursor: pointer;
}

.platzhalterNotes {
    height: 39px;
}

.platzhalterFiles {
    height: 27px;
}


/*Änderung Nach Tests*/

.navigation i {
    width: 20px;
}

.listItemProjectName {
    text-align: left !important;
}