#landingPage {
    position: absolute;
    top: var(--headerHeight);
    margin-top: -2px;
    width: 100vw;
    bottom: 0vh;
    background: rgb(250,250,250);
    z-index: 3;
    /* background: var(--background-color); */
    display: none;
}

#toggleFav,
#toggleLandingPage {
    margin-left: 2vmin;
    color: var(--cockpit-logo);
    cursor: pointer;
    font-size: 2.8vmin;
}

#landingPageHeader {
    color: var(--circleLabel-color);
    width: 93vw;
    height: 2vh;
    padding-left: 4vw;
    padding-top: 4vh;
    padding-bottom: 1vh;
}

.landingPageHeaderButton {
    font-size: 2vmin;
    margin-left: 1vw;
    cursor: pointer;
    float: right;
}

.landingPageContentSection {
    min-height: 17vh;
    margin: 1vh 0vmin 4vh 3vw;
    width: 97vw;
    position: relative;
}

.landingPageContentSection::-webkit-scrollbar{
    display: none;
}

#landingPageContent {
    border: 1px solid white;
    height: -webkit-fill-available;
    margin-bottom: 9vmin;
    margin-right: 2px;
    color: var(--text-color-sidePanel);
}

.landingPage_sectionTitle {
    font-weight: bold;
    font-size: 1.5em;
    font-family: 'Ubuntu', sans-serif;
    text-align: left;
    margin-left: 0.5vw;
    /* margin-bottom: 2vmin; */
}

.landingPage_sectionPreCard {
    width: 11.15vw;
    margin-right: 0.6vw;
    border-radius: 0.3vmin;
    position: relative;
    cursor: pointer;
    height: 20.8vh;
    /* z-index: 0; */
    overflow: visible;
    transition: margin 0.4s linear;
}

.landingPage_sectionCard {
    width: 21vmin;
    height: 18vmin;
    overflow: hidden;
    border-radius: 2vmin;
    border: 1px solid var(--circle-fill);
    transition: 0.4s linear, margin-left 0s linear, font-size 0s linear;
    background: var(--main-color);
    z-index: 0;
}

.landingPage_sectionCard:hover {
    box-shadow: var(--input-box-shadow);
}

.landingPage_sectionCard.expandedCard,
.landingPage_sectionCard.focusCard {
    position: absolute;
    width: 23vw;
    height: fit-content;
    transform: translate(-4.8vw,-5vh);
    position: fixed;
    cursor: default;
    /* margin-top: -55%; */
    /* transform: translateY(50%); */
}

.landingPage_sectionCardInfo {
    max-height: 4vh;
    background-color: var(--main-color);
    color: var(--background-color);
    margin-top: 0.5vh;
    padding-left: 1vw;
    padding-right: 1vw;
    transition: 0.4s linear;
    overflow: hidden;
}

.expandedCard .landingPage_sectionCardInfo {
    transition: none;
}

.cardDetails .landingPage_sectionCardInfo {
    max-height: 500vh;
}

.expandedCard .landingPage_sectionCardImage, 
.focusCard .landingPage_sectionCardImage {
    height: 20vh;
    width: 23vw;
    position: relative;
}

.landingPage_sectionCardImage {
    width: 21vmin;
    /* padding: 2vmin; */
    height: 11.8vmin;
    margin: 1vmin 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s linear;
    position: relative;
}

.expandedCard .landingPage_sectionCardImage {
    transition: none;
}

.landingPage_sectionCardTitle {
    padding-top: 0.5vh;
    font-family: 'Ubuntu', sans-serif;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    width: 90%;
    text-overflow: ellipsis;
    overflow: hidden;
}

.landingPageContentSubHolder {
    display: inline-flex;
    float: left;
    transition: 1s ease-in-out;
}

.landingPage_sectionCardInfo_Title {
    margin-bottom: 1vmin;
    text-align: left;
    font-family: 'Ubuntu', sans-serif;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 0.5vh;
    height: 3vh;
    color: var(--background-color);
}

.landingPage_sectionCardInfo_Button:hover {
    color: var(--color-active);
}

.landingPage_sectionCardInfo_Button {
    font-size: 2.3vmin;
    height: 3vmin;
    width: 3vmin;
    border-radius: 100%;
    border: 2px var(--background-color) solid;
    line-height: 3vmin;
    padding: 0.2vmin;
    cursor: pointer;
}

.landingPage_sectionCardInfo_ButtonHolder {
    margin-bottom: 1vmin;
    display: inline-flex;
    float: left;
    grid-template-columns: 2vw 2vw;
    column-gap: 1vw;
    padding-top: 0.5vh;
    width: 100%;
    padding-bottom: 0.5vh;
}

.landingPage_sectionScroll {
    position: fixed;
    width: 2.5vw;
    height: 17vh;
    z-index: 2;
    background-color: rgba(1,1,1,0.25);
    line-height: 16.5vh;
    color: var(--background-color);
    font-weight: bold;
    font-size: 3vmin;
    cursor: pointer;
}

.landingPage_sectionScroll.scrollLeft {
    left: 0;
}
.landingPage_sectionScroll.scrollRight {
    right: 0;
}

.icon-rightCaret:before{
    content:'\276F'
}

.icon-leftCaret:before{
    content:'\276E'
}

.landingPage_sectionCardInfo_Button.favorite {
    color: gold;
    border-color: gold;
}

.landingPage_sectionCardInfo_TagSeparator {
    padding: 0 0.5vw;
}

.landingPage_sectionCardTagsHolder {
    margin-bottom: 1vmin;
    justify-content: left;
    position: relative;
    padding-bottom: 1vh;
    display: inline-flex;
    width: 100%;
}

.landingPage_sectionCardTagsTitle {
    font-weight: bold;
}

.landingPage_sectionCardTags {
    margin-left: 2vmin;
    font-weight: bold;
    /* width: -webkit-fill-available; */
}

.landingPage_sectionCardInfo_Button.expandButton {
    transform: rotate(90deg);
}

.landingPage_sectionCardInfo_Button.expandButton {
    line-height: 2.3vh;
    margin-left: auto;
    /* margin-right: 1vw; */
}

.landingPage_sectionCard.expandedCard {
    position:absolute;
    top:8vh;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 40%;
    height: 85vh;
    background-color: var(--main-color);
    font-size: 2.2vmin;
    border: 1px solid var(--main-color);
    overflow-y: scroll;
    margin-left: 0 !important;
    transition: none;
    border-radius: 1vmin;
}

.expandedCard .landingPage_sectionCardImage {
    width: 100%;
    height: 25vh;
}

.expandedCard .expandButton {
    display:none;
}

.landingPage_sectionCardDocuHolder {
    display: none;
}

.expandedCard .landingPage_sectionCardDocuHolder {
    display: block;
    text-align: left;
    padding-bottom: 2vh;
}

.landingPage_sectionCardDocuTitle {
    font-weight: bold;
    margin-bottom: 2vmin;
}

.expandedCard .landingPage_sectionCardInfo {
    margin-top: 2vmin;
    padding-left: 2vw;
    padding-right: 2vw;
    overflow-y: auto;
    height: 57vh;
    background-color: var(--background-color);
    color: var(--main-color);
}

.landingPage_sectionCardDocu b {
    font-weight: normal;
    text-decoration: underline;
}

.landingPage_sectionCardDocu {
    font-size: 2vmin;
    line-height: 1.3;
}

.landingPage_sectionCard::-webkit-scrollbar{
    display: none;
}

#landingPage_grayout {
    display:none;
    width: 100vw;
    height: 94vh;
    background-color: #000;
    opacity: 0.7;
    position: absolute;
    top: 0;
    left: 0;
}

.expandedCard .landingPage_sectionCardClose {
    display: block;
    z-index: 1;
    color: var(--background-color);
}

.landingPage_sectionCardClose {
    display: none;
    font-size: 2vmin;
    height: 2vmin;
    width: 2vmin;
    line-height: 3vmin;
    padding: 0.2vmin;
    cursor: pointer;
    position: absolute;
    right: 1vmin;
    top: 1vmin;
}

.focusCard .landingPage_sectionCardTitle,
.expandedCard .landingPage_sectionCardTitle {
    display: none;
}

.landingPage_sectionCardHistory {
    position: absolute;
    right: 1.5vw;
    bottom: 0.5vh;
    font-size: 2vmin;
    line-height: 1;
    color: var(--circleLabel-color);
    font-weight: normal;
}

.kpiCardImg {
    font-size: 4vmin;
    line-height: 15vh;
    font-weight: bold;
}

.landingPagecockpitGreenColor {
    color: var(--background-color);
}

.landingPagecockpitYellowColor {
    color: var(--background-color);
}

.landingPagecockpitRedColor {
    color: var(--cockpit-red);
}

#landingPageTopTitle {
    font-size: 3.5vmin;
    font-weight: bold;
    /* display: none; */
    padding-bottom: 0vh;
    margin-top: 0vh;
    font-family: 'Ubuntu', sans-serif;
}

.landingPage_sectionPreCard.expandedSubCard {
    /* margin: 0px 3.7vw 0 4.8vw; */
}


#landingPageGeom1 {
    left: -20vh;
    bottom: 28vh;
    z-index: -1;
}

#landingPageGeom2 {
    position: fixed;
    right: -22vh;
    top: 25vh;
    z-index: -1;
    pointer-events: none;
}

#landingPage_SettingsHolder {
    display:none;
    left: 50%;
    transform: translate(-50%, -50%);
    top: 50%;
    height: 35vh;
    /* border: navajowhite; */
}

#landingPage_SettingsContent .dashboardSettingsTableHolder {
    height: 17vh;
}

#landingPage_SettingButtonHolder {
    margin-top: 2vh;
    margin: auto;
    width: fit-content;
}

#landingPage_SettingsTable {
    width: 100%;
}

.landingPage_SettingsLabel {
    width: 85%;
}

.landingPage_sectionCardImageHolder {
    position: relative;
}

.leftCard .landingPage_sectionCard {
    left: 3vw;
    transform: translate(0,-5vh);
}

.rightCard .landingPage_sectionCard {
    right: 3vw;
    transform: translate(0,-5vh);
}

.geomFlumen {
    display: none;
    position: absolute;
    background-size: contain;
    background-image: url(../img/symbols/interface/logo_dark.svg);
    width: 100%;
    height: 74%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
}

.landingPage_sectionCardDocuHolder .landingPage_sectionTooltip {
    padding-top: 2vh;
    font-size: 2vmin;
}

.landingPage_sectionCardInfo_Button.disabledButton {
    background-color:var(--background-color);
    color:var(--circle-fill);
}

.expandedCard .landingPage_sectionCardInfo_Title {
    color: var(--main-color);
    padding-top: 2vh;
}

.expandedCard .landingPage_sectionCardInfo_Button {
    border: 1px solid var(--main-color);
}

.expandedCard .landingPage_sectionCardInfo_Button.favorite {
    color: gold;
    border-color: gold;
}

.landingPage_typeIndicator {
    position: absolute;
    right: 1vmin;
    bottom: 0;
    width: 3vmin;
    height: 3vmin;
    border-radius: 100%;
    color: var(--main-color);
    font-size: 2.2vmin;
    background: var(--background-color);
    line-height: 3vmin;
    border: 1px solid var(--color-configurable);
}

.landingPage_typeIndicator.suggestion {
    color:var(--color-active);
}

.landingPage_sectionTitleHolder {margin-left: 3vw;display: flex;}

.landingPage_sectionTitleImage {
    font-size: 3vmin;
    background-color: var(--background-color);
    border-radius: 100%;
}