/*///////////////////////////////////////////////////////
// General
//////////////////////////////////////////////////////*/
body {
    overflow-x: hidden;
}

/*///////////////////////////////////////////////////////
// Helper
//////////////////////////////////////////////////////*/
.centerX {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.centerXY {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
.flexRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: center;
}
.flexRow.revert {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-flex-flow: row-reverse wrap;
    flex-flow: row-reverse wrap;
}
.flexCol {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    justify-content: center;
}
.clearfix:after {
    content: " ";
    display: block;
    clear: both;
}
.scrollStop {
    overflow: hidden;
}
.mobile {
    display: none;
}
.devider {
    position: absolute;
    width: 100%;
    height: 10px;
    background: #E3E3E3;
}
::-webkit-input-placeholder {
    opacity: 1;
    color: #989898;
}
:-moz-placeholder {
    opacity: 1;
    color: #989898;
}
::-moz-placeholder {
    opacity: 1;
    color: #989898;
}
:-ms-input-placeholder {
    opacity: 1;
    color: #989898;
}
.colLeft, .colRight {
    position: relative;
    float: left;
    width: 50%;
}

u, .underline {
    text-decoration: none;
    border-bottom: 2px dashed;
    border-color: rgba(15,15,15,0.3);
    padding-bottom: 2px;
    line-height: 0.85;
    /* text-shadow: 2px 2px white, 2px -2px white, -2px 2px white, -2px -2px white; */
}
.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
.hidden {
    display: none !important;
}
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
    white-space: nowrap;
}
.visuallyhidden.focusable:active, .visuallyhidden.focusable:focus {
    clip: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    position: static;
    width: auto;
    white-space: inherit;
}
.invisible {
    visibility: hidden;
}
.clearfix:before, .clearfix:after {
    content: " ";
    display: table;
}
.clearfix:after {
    clear: both;
}
.fullBg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-repeat: no-repeat;
    background-position: center center;
    -webkit-background-size: cover;
    background-size: cover;
}

/*///////////////////////////////////////////////////////
// Header 
//////////////////////////////////////////////////////*/
.betaLabel {
    display: none;
    position: absolute;
    z-index: 200;
    left: 0;
    top: 0;
    width: 145px;
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    background: var(--button-background);
    color: var(--color-light);
    -webkit-transform: rotate(-45deg) translate(-25%, -25%);
    -moz-transform: rotate(-45deg) translate(-25%, -25%);
    -ms-transform: rotate(-45deg) translate(-25%, -25%);
    -o-transform: rotate(-45deg) translate(-25%, -25%);
    transform: rotate(-45deg) translate(-25%, -25%);
    transform: rotate(-45deg) translate(-25%, -25%);
    text-indent: -10px;
}
.wrapper[data-page="intro"] .innerWrap .btnShare {
    margin-left: 30px;
}
.wrapper {
    position: relative;
    background: #fff;
    width: 100%;
    min-width: 360px;
    z-index: 10;
    margin: 0 auto;
}
.header {
    position: relative;
    height: 90px;
    z-index: 600;
    top: 0;
    width: 100%;
    text-align: center;
}
.header .innerWrap {
    position: relative;
    z-index: 10;
    background: #fff;
}
/*.wrapper[data-page="elements"] .header .innerWrap {*/
.wrapper .header .innerWrap {
    max-width: 100%;
    padding: 0;
}
.wrapper[data-page="intro"] .header {
    height: 115px;
}
.wrapper[data-page="intro"] .header .innerWrap {
    padding: 25px 25px 0px 25px;
}
.headerTitle {
    display: inline-block;
    padding-top: 10px;
    margin: 0 auto;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    text-decoration: none;
}
.headerTitle h1, .headerTitle h2 {
    text-transform: uppercase;
    font-size: 21px;
    margin-top: 21px;
    color: var(--color-elvipurple);
}
.headerTitle h1 span {
    font-size: 0.7em;
    position: relative;
    top: -1px;
}
.headerTitle h2 {
    line-height: 23px;
}
.wrapper[data-page="intro"] .header .headerTitle h1 {
    font-size: 25px;
    line-height: 1.6em;
    margin: 0;
    color: var(--color-elvipurple);
}
.wrapper[data-page="intro"] .header .headerTitle h1 span {
    font-size: 60px;
    display: block;
    top: auto;
}
.btnShare {
    position: absolute;
    width: 40px;
    height: 40px;
    left: 30px;
    top: 25px;
    z-index: 50;
    font-size: 15px;
    color: #4e4e4e;
    background: url('../../Icons/share_dark.svg') no-repeat center center / 17px 19px;
    /*-webkit-tap-highlight-color: rgba(0,0,0,0);*/
    cursor: pointer;
    text-indent: -999em;
}
.wrapper[data-page="intro"] .btnShare {
    left: 0px;
    top: 40px;
}

/*///////////////////////////////////////////////////////
// Navigation
//////////////////////////////////////////////////////*/
.header nav {
    background: url("../../Images/menu_bg.jpg") repeat-x center center/cover;
    opacity: 0;
    position: fixed;
    overflow: auto;
    overflow-x: hidden;
    z-index: 600;
    right: -100%;
    top: 0;
    width: 40%;
    max-width: 550px;
    min-width: 375px;
    -webkit-box-shadow: -5px 0px 3px 0px rgba(0,0,0,0.14);
    -moz-box-shadow: -5px 0px 3px 0px rgba(0,0,0,0.14);
    box-shadow: -5px 0px 3px 0px rgba(0,0,0,0.14);
    -webkit-transition: opacity 250ms, right 500ms ease;
    -moz-transition: opacity 250ms, right 500ms ease;
    -o-transition: opacity 250ms, right 500ms ease;
    transition: opacity 250ms, right 500ms ease;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-flow: column;
    flex-flow: column;
}
.header nav.open {
    opacity: 1;
    right: 0;
}
.openMenu {
    background: url('../../Icons/menu_dark.svg') no-repeat center center / 19px 15px;
    width: 40px;
    height: 40px;
    position: absolute;
    z-index: 650;
    right: 30px;
    top: 25px;
    cursor: pointer;
}
.wrapper[data-page="intro"] .openMenu {
    top: 40px;
}
.openMenu.active {
    background: url('../../Icons/close_white.svg') no-repeat center center / 16px 16px;
    width: 40px;
    height: 40px;
    position: fixed;
    right: 30px;
}
.wrapper[data-page="intro"] .openMenu.active {
    right: 30px;
}
.mainMenu {
    display: inline-block;
    padding: 100px 50px 50px 60px;
}
.mainMenu ul li {
    position: relative;
    width: 100%;
    float: left;
    display: block;
    opacity: 0;
    list-style: none;
    margin-bottom: 25px;
}
.mainMenu ul li:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 43.5%;
    width: 0%;
    transform: translateX(-50%);
    height: 3px;
    background: #FFF;
    transition: .35s;
}
nav.open .mainMenu li {
    animation: fadeInRight .5s ease forwards;
    animation-delay: .35s;
}
nav.open .mainMenu li:nth-of-type(2) {
    animation-delay: .40s;
}
nav.open .mainMenu li:nth-of-type(3) {
    animation-delay: .45s;
}
nav.open .mainMenu li:nth-of-type(4) {
    animation-delay: .50s;
}
nav.open .mainMenu li:nth-of-type(5) {
    animation-delay: .55s;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        left: 20%;
    }
    100% {
        opacity: 1;
        left: 0;
    }
}
.mainMenu ul li a, .subMenu ul li a {
    font-family: 'DIN', Arial, Helvetica, sans-serif;
    width: 100%;
    font-size: 32px;
    display: block;
    color: var(--color-light);
    text-decoration: none;
    text-align: left;
}
.mainMenu ul.subMenu {
    float: left;
    padding: 25px 0 30px 0;
}
.mainMenu ul.subMenu li {
    float: left;
    width: auto;
}
.mainMenu ul.subMenu li a:after {
    content: "•";
    font-size: 0.7em;
    padding: 0 0 0 5px;
}
.mainMenu ul.subMenu li:last-child a:after {
    display: none;
}
.mainMenu ul.subMenu li a {
    font-size: 20px;
    padding: 0 0 0 5px;
}
.mainMenu ul.subMenu li:first-child a {
    padding-left: 0;
}
.linkMenu {
    position: relative;
    display: inline-block;
    background: var(--color-light);
    width: 100%;
    margin-top: auto;
    font-size: 1rem;
    padding: 0 20px;
}
.linkMenu .inner {
    position: relative;
    top: -25px;
    text-align: right;
}
.whitelabel .linkMenu .inner {
    position: relative;
    top: auto;
    bottom: 40px;
    text-align: right;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    align-items: end;
}
.whitelabel .header .linkMenu {
    background: var(--color-light);
}
.header nav .linkMenu .inner {
    top: -35px;
}
.linkMenu .inner * {
    display: inline-block;
}
.linkMenu .inner p {
    width: 100%;
    text-align: right;
    font-size: 0.875rem;
    margin-bottom: 10px;
}
.linkMenu .inner p strong {
    font-weight: 600;
}
.linkMenu .inner ul {
    width: 100%;
    text-align: right;
}
.linkMenu .inner ul li {
    display: inline-block;
    margin: 0 10px 1px 0;
}
.linkMenu .inner ul li:last-child {
    margin: 0 0 1px 0;
}
.topper:before {
    content: "";
    position: absolute;
    background: url('../../Images/menu_bottom_long.svg') no-repeat right bottom / 100% auto;
    width: 105%;
    height: 150px;
    bottom: calc(100% - 1px);
    right: 0;
}
.whitelabel .header .topper:before {
    right: -20%;
}
.wrapper[data-page="elemente"] main.content {
    padding-bottom: 100px;
}
.wrapper.whitelabel[data-page="elemente"] main.content {
    padding-bottom: 220px;
}
#footer.topper:before {
    max-width: 500px;
    height: 100px;
}
.wrapper[data-page="intro"] #footer.topper:before {
    display: none;
}
/*.bottomMenu:before {
    content: "";
    position: absolute;
    background: url('../../Images/menu_bottom.svg') no-repeat left bottom / contain;
    width: 100%;
    height: 95px;
    bottom: 98%;
    left: 0;
}*/
.logoWrap {
    width: 100%;
}
.logoBox {
    display: none;
    width: 220px;
    height: 80px;
    background-repeat: no-repeat;
    background-position: right center;
    background-size: contain;
}

@media (max-width: 1640px) {
    .wrapper[data-page="intro"] .header {
        padding: 0 25px;
    }
}
@media (max-width: 767px) {
    .wrapper[data-page="intro"] .header {
        padding: 0 15px;
    }
    .wrapper[data-page="intro"] .headerTitle {
        padding-top: 23px;
    }
    .wrapper[data-page="intro"] .header .innerWrap {
        padding: 0;
    }
    .wrapper[data-page="intro"] .btnShare, .wrapper[data-page="intro"] .openMenu {
        top: 25px;
    }
    .wrapper[data-page="intro"] .header .headerTitle h1 {
        font-size: 14px;
        text-transform: none;
    }
    .wrapper[data-page="intro"] .header .headerTitle h1 span {
        font-size: 28px;
        text-transform: uppercase;
    }
    .header nav {
        width: 100%;
        max-width: 100%;
    }
    .mainMenu {
        padding: 70px 50px 50px 60px;
    }
    .mainMenu ul.subMenu {
        padding: 15px 0 20px 0;
    }
}
@media (max-width: 640px) {
    .wrapper[data-page="intro"] .headerTitle {
        padding-top: 50px;
    }
    .wrapper.whitelabel[data-page="elemente"] main.content {
        padding-bottom: 60px;
    }
    .whitelabel .linkMenu .inner {
        bottom: 25px;
    }
}
@media (max-width: 560px) {
    .header {
        height: 70px;
    }
   .header .innerWrap {
        padding: 22px 25px;
    }
    .headerTitle h1, .headerTitle h2 {
        font-size: 1rem;
        margin: 0;
    }
    .headerTitle span {
        font-size: 1em;
        top: auto;
    }
    .btnShare {
        left: 10px;
        top: 15px;
    }
    .openMenu {
        right: 10px;
        top: 15px;
    }
    .menuContent {
        margin-top: -105px;
    }
    .betaLabel {
        font-size: 12px;
        width: 115px;
    }
}
@media (max-width: 460px) {
    .wrapper {
        min-height: 350px !important;
    }
    .menuContent {
        margin-top: -90px;
    }
}
@media (max-width: 420px) {
    .headerTitle {
        padding-top: 5px;
    }
    .headerTitle h1, .headerTitle h2 {
        font-size: 0.875rem;
    }
    .menuContent {
        margin-top: -75px;
    }
}
@media only screen and (max-height: 500px) and (orientation: landscape) {
    .wrapper[data-page="intro"] .header {
        height: 90px;
    }
    .wrapper[data-page="intro"] .headerTitle {
        padding-top: 23px;
    }
    .mainMenu {
        padding: 40px 50px 50px 60px;
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
    }
    .mainMenu > ul {
        margin-right: 60px;
    }
    .mainMenu ul.subMenu {
        padding: 0;
    }
    .mainMenu ul li {
        float: none;
        margin-bottom: 20px;
    }
    .mainMenu ul.subMenu li {
        float: none;
        width: 100%;
    }
    .mainMenu ul.subMenu li a {
        padding: 0;
    }
    .mainMenu ul.subMenu li a:after {
        display: none;
    }
    .mainMenu ul li a, .mainMenu ul.subMenu li a {
        font-size: 28px;
    }
    .linkMenu.topper:before {
        max-width: 405px;
    }
}
/*
!* iPhone XX *!
@media only screen and (device-width : 375px) and (device-height : 812px) and (-webkit-device-pixel-ratio : 3) {
    .wrapper {
        min-height: calc(100vh - 120px);
    }
    .header nav {
        padding-bottom: 110px;
    }
}
!* iPhone X and Xs Max *!
@media only screen
and (min-device-width: 375px)
and (min-device-height: 812px)
and (-webkit-device-pixel-ratio: 3)
and (orientation: portrait) {
    .wrapper {
        min-height: calc(100vh - 120px);
    }
    .header nav {
        padding-bottom: 110px;
    }
}

!* iPhone XR *!
@media only screen
and (min-device-width: 414px)
and (min-device-height: 896px)
and (-webkit-device-pixel-ratio: 2)
and (orientation: portrait) {
    .wrapper {
        min-height: calc(100vh - 120px);
    }
    .header nav {
        padding-bottom: 110px;
    }
}
*/


/*///////////////////////////////////////////////////////
// Content
//////////////////////////////////////////////////////*/
main.content {
    background: url('../../Images/bg_grey.jpg') repeat center center;
    background-attachment: scroll;
    -webkit-backface-visibility: hidden;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
}
.wrapper[data-page="intro"] main.content {
    background: var(--color-light);
}
.contentSec {
    position: relative;
    display: inline-block;
    width: 100%;
    background: url("../../Images/content_bg.png");
    padding: 60px 0 120px 0;
}
/*.contentSec .innerWrap {
    max-width: 1000px;
    margin: 0 auto;
}*/
.content .contentSec:first-child {
    min-height: 76vh;
}
.content .contentSec:first-child:before {
    content: "";
    position: absolute;
    z-index: 20;
    top: 0;
    height: 3px;
    width: 100%;
    left: 0;
    background: #ECECEC;
}
.contentSec .btn {
    margin: 30px 0;
}
@media (max-width: 1640px) {
    .innerWrap {
        padding: 0 30px;
    }
}
@media (max-width: 680px) {
    .innerWrap {
        padding: 0 20px;
    }
}
@media (max-width: 560px) {

}


/*///////////////////////////////////////////////////////
// Intro Layout
//////////////////////////////////////////////////////*/
.pseIntro {
    width: 100%;
    padding-top: 10px;
    background: var(--color-light);
}
.pseIntro .innerWrap {
    max-width: 1540px;
    padding: 0;
}
.introBg {
    position: relative;
    z-index: 10;
    width: 100%;
    /*height: calc(100vh - 226px);*/
    border-radius: 10px;
    overflow: hidden;
}
.introTeaser {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.videoBg {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    margin: auto;
    min-height: 50%;
    min-width: 50%;
}
#branding {
    display: none;
    position: absolute;
    top: 43%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 40%;
    z-index: 50;
    background: rgba(255,255,255,0.9);
    padding: 40px 20px;
    border-radius: 10px;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    justify-content: center;
}
.brandLogo img {
    width: 100%;
    max-height: 7vw;
    height: auto;
}
.brandLogo, .brandSubline {
    float: left;
    width: 100%;
    text-align: center;
}
.brandSubline {
    color: #3E3E3E;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 15px;
}
.introTopForm {
    background: url('../../Images/lamelle.svg') no-repeat center top / 100% auto;
    position: absolute;
    width: 50%;
    height: 45px;
    z-index: 20;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
}
.introBg .btnWrap {
    position: absolute;
    z-index: 60;
    bottom: 15%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}
@media (max-width: 1100px) {
    .introTopForm {
        width: 70%;
    }
}
@media (max-width: 1024px) {
    #branding {
        width: 60%;
    }
    .brandLogo img {
        max-height: 12vw;
    }
}
@media (max-width: 768px) {
    .introTopForm {
        width: 80%;
    }
}
@media (max-width: 767px) {
    .pseIntro {
        padding-top: 0;
    }
    .introTopForm {
        display: none;
    }
/*    .introBg {
        height: calc(100vh - 192px);
    }*/
    #branding {
        width: 95%;
    }
}
@media (max-width: 640px) {
    .brandLogo img {
        max-height: 16vw;
    }
}
@media (max-width: 460px) {
    .brandLogo img {
        max-height: 20vw;
    }
}
@media only screen and (max-height: 670px) and (orientation: landscape) {
    #branding {
        padding: 25px 20px;
    }
    .introBg .btnWrap {
        bottom: 10%;
    }
}
@media only screen and (max-height: 500px) and (orientation: landscape) {
    #branding {
        top: 10%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
    .brandLogo img {
        max-height: 8vw;
    }
}
@media only screen and (max-height: 400px) and (orientation: landscape) {
    #branding {
        display: none !important;
    }
    .introBg .btnWrap {
        bottom: 20%;
    }
}

/*///////////////////////////////////////////////////////
// PSE Menü
//////////////////////////////////////////////////////*/
.pseMenu {
    position: relative;
    z-index: 100;
    background: #fff;
    border-top: 1px solid #E9E9E9;
    width: 100%;
    height: 90px;
    padding: 25px 30px 10px 30px;
    -webkit-transition: all 250ms;
    -moz-transition: all 250ms;
    -o-transition: all 250ms;
    transition: all 250ms;
}
.btnNavi {
    float: left;
    margin-right: 50px;
    position: relative;
}
.btnSubmenu {
    position: relative;
    float: left;
    margin-right: 50px;
    display: inline-block;
    font-size: 12px;
    text-align: center;
    color: #7250ea;
    padding-top: 32px;
    cursor: pointer;
}
.btnSubmenu:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -11px;
    width: 22px;
    height: 22px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
}
.btnLegend:before {
    background-image: url("../../Icons/icon_legend.svg");
}
.btnFaq:before {
    background-image: url("../../Icons/icon_faq.svg");
}
.btnVideos:before {
    background-image: url("../../Icons/icon_play_purple.svg");
}
.whitelabel .btnFaq, .whitelabel .btnVideos {
    display: none;
}
.zoomIn:before {
    background-image: url("../../Icons/icon_zoom_plus.svg");
}
.zoomOut:before {
    background-image: url("../../Icons/icon_zoom_minus.svg");
}
.zoomControl {
    display: none;
}
.zoomTooltip {
    display: none;
    position: absolute;
    z-index: 30;
    width: 160px;
    text-indent: 0;
    padding: 10px;
    font-size: 14px;
    font-weight: 500;
    line-height: 1em;
    background: var(--button-background);
/*    background: rgb(161,92,173);
    background: -moz-linear-gradient(45deg, rgba(161,92,173,1) 30%, rgba(64,124,210,1) 100%);
    background: -webkit-linear-gradient(45deg, rgba(161,92,173,1) 30%, rgba(64,124,210,1) 100%);
    background: linear-gradient(45deg, rgba(161,92,173,1) 30%, rgba(64,124,210,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#a15cad",endColorstr="#407cd2",GradientType=1);
    border: 1px solid var(--color-elvipurple);*/
    top: 55px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    color: var(--color-light);
    border-radius: 3px;
    -webkit-animation: upDown 2s ease-in-out infinite alternate;
    animation: upDown 2s ease-in-out infinite alternate;
    -webkit-font-smoothing: subpixel-antialiased;
}
.zoomTooltip:after, .zoomTooltip:before {
    bottom: 100%;
    left: 50%;
    border: solid transparent;
    content: " ";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none;
}

.zoomTooltip:after {
    border-color: rgba(136, 183, 213, 0);
/*    border-bottom-color: #766abd;*/
    border-width: 5px;
    margin-left: -5px;
}
.zoomTooltip:before {
    border-color: rgba(194, 225, 245, 0);
    border-bottom-color: var(--color-elvipurple);
    border-width: 7px;
    margin-left: -7px;
}
@-webkit-keyframes upDown {
    from {
        -webkit-transform: translateY(0) rotate(0) translateX(-50%);
        -ms-transform: translateY(0) rotate(0) translateX(-50%);
        transform: translateY(0) rotate(0) translateX(-50%);
    }
    to {
        -webkit-transform: translateY(6px) rotate(0.01deg) translateX(-50%);
        -ms-transform: translateY(6px) rotate(0.01deg) translateX(-50%);
        transform: translateY(6px) rotate(0.01deg) translateX(-50%);
    }
}
@keyframes upDown {
    from {
        -webkit-transform: translateY(0) rotate(0) translateX(-50%);
        -ms-transform: translateY(0) rotate(0) translateX(-50%);
        transform: translateY(0) rotate(0) translateX(-50%);
    }
    to {
        -webkit-transform: translateY(6px) rotate(0.01deg) translateX(-50%);
        -ms-transform: translateY(6px) rotate(0.01deg) translateX(-50%);
        transform: translateY(6px) rotate(0.01deg) translateX(-50%);
    }
}
.miniMap {
    position: relative;
    float: left;
    width: 115px;
    height: 64px;
}
.mapArea {
    position: absolute;
    width: 105px;
    height: 54px;
    background: url("../../Images/map_area.svg") no-repeat center center / 105px 54px;
}
.mapDragger {
    position: absolute;
    z-index: 20;
    border: 2px solid #7B58F1;
}
#miniview {
    position: fixed;
    width: 105px;
    height: 54px;
    background-color: var(--color-light);
}
@media (max-width: 767px) {
    .pseMenu {
        position: fixed;
        top: 90px;
    }
    .btnNavi:after {
        content: "";
        position: absolute;
        right: 0;
        height: 45px;
        width: 1px;
        background: #E9E9E9;
        top: 50%;
        margin-top: -22px;
    }
    .zoomControl {
        display: block;
    }
}
@media (max-width: 560px) {
    .pseMenu {
        height: 70px;
        padding: 10px 30px;
    }
    .btnSubmenu {
        padding: 0;
        text-indent: -999em;
        color: transparent;
    }
    .btnVideos, .btnNavi {
        margin-right: 35px;
    }
    .btnNavi, .btnZoom {
        margin-top: 18px;
    }
    .btnZoom {
        margin-right: 10px;
    }
    .miniMap {
        position: absolute;
        right: 20px;
    }
    .zoomTooltip {
        top: 35px;
    }
}

/*///////////////////////////////////////////////////////
// PSE Layout
//////////////////////////////////////////////////////*/
.pseTable {
    position: relative;
    z-index: 70;
    width: 100%;
    display: inline-block;
    margin-right: -1px;
    text-shadow: none;
    background: var(--color-light);
}
.whitelabel .pseTable {
    padding-bottom: 50px;
}
.innerTable {
    width: 100%;
    display: inline-block;
}
.cellNumTop, .cellNumLeft {
    position: absolute;
    font-size: 10px;
    font-weight: 400;
}
.cellNumTop {
    left: 15%;
    top: 50%;
    margin-top: -6px;
}
.cellNumLeft {
    left: 20%;
    top: 8%;
}
.pseRow {
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    width: 100%;
    float: left;
    clear: both;
}
.smallRow {
    height: 2%;
}
.pseRow .cell:first-child {
    font-weight: 700;
    text-align: center;
    width: 3%;
}
.cell {
    position: relative;
    float: left;
    width: 5.3888%;
    min-height: 20px;
    height: 100px;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
}
.pseRow:first-child .cell {
    height: 6vh;
}
.cell.border {
    border-right: 1px solid rgba(62,62,62,0.1);
    border-bottom: 1px solid rgba(62,62,62,0.1);
}
.pseRow[data-row="1"] {
    border-top: 1px solid rgba(62,62,62,0.1);
}
.pseRow .cell.border:first-child {
    border-left: 1px solid rgba(62,62,62,0.1);
}
.cell.titleCell {
    overflow: visible;
}
.pseTableTitle {
    position: absolute;
    z-index: 30;
    display: block;
    text-decoration: none;
    width: 800%;
}
.pseTableTitle h2, .pseTableTitle h3 {
    margin: 0;
    color: var(--color-elvipurple);
}
.pseTableTitle h2 {
    font-size: 4vw;
    line-height: 1.1em;
}
.pseTableTitle h3 {
    font-size: 1.7vw;
}
.element {
    position: relative;
    height: 100%;
    box-sizing: border-box;
    box-shadow: -2px -2px 0px rgba(255, 255, 255, 0.2);
    transition: background-color 150ms, transform 0ms;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.element > div {
    float: left;
    width: 50%;
    font-size: 0.7em;
    color: var(--color-light);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.element .elBorder {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    border-right: 1px solid #3E3E3E;
    border-top: 1px solid #3E3E3E;
    opacity: 0.1;
}
.pseRow[data-row="8"] .element .elBorder, .pseRow[data-row="11"] .element .elBorder {
    border-bottom: 1px solid #E3E3E3;
}
.element.rosa .elBorder {
    opacity: 0.3;
}
.element.lila .elBorder {
    opacity: 0.2;
}
.element > div.main, .element > div.main > div {
    width: 100%;
    text-align: center;
}
.element > div.main {
    position: relative;
}
.element > div.main .symbol {
    font-family: 'DIN', Arial, Helvetica, sans-serif;
    font-size: 3em;
    line-height: 0.8em;
    padding-top: 20px;
}
.element > div.ordnungszahl {
    width: 25%;
    padding: 5px 0 0 5px;
}
.element > div.atma {
    width: 75%;
    padding: 5px 5px 0 0;
}
.element > div.neg {
    padding: 0 0 5px 5px;
}
.element > div.ion {
    padding: 0 5px 5px 0;
}
.ordnungszahl, .elek, .sip, .neg {
    text-align: left;
}
.atma, .oxi, .scp, .ion {
    text-align: right;
}
.element > div.main > div.kue {
    display: none;
    position: absolute;
    right: 5%;
    width: auto;
    font-size: 1.7em;
    top: -4%;
}
.elek, .oxi, .sip, .scp {
    display: none;
}
.oxi > span {
    line-height: 14px;
    padding: 2px 3px !important;
}
.oxi .red {
    color: red;
    margin: 0 1px;
    display: inline-block;
    width: 14px;
    height: 14px;
    transform: scale(1) !important;
    position: relative;
    text-align: center;
    padding: 0 !important;
}
.oxi .red:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    background: var(--color-light);
    border-radius: 50%;
    width: 14px;
    height: 14px;
}
.pseRow[data-row="9"], .pseRow[data-row="9"] .cell {
    height: 30px;
}
.cell[data-cell="155"] {
    background: url("../../Images/arrows_grey.svg") no-repeat center top / contain;
}
.atma, .neg, .ion {
    opacity: 0.5;
}
.element .information {
    display: none;
    visibility: hidden;
    position: relative;
    z-index: 100;
    width: 100%;
    padding: 10px !important;
    background: #FFF;
    color: #333;
}
.element .information.active {
    visibility: visible;
}
.element .information a {
    color: var(--color-elvipurple);
}
.elInfoBtn {
    display: none;
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    background: #FFF;
    color: #333 !important;
    text-align: center;
    padding: 5px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    cursor: pointer;
}

/*/// Active state ///*/
.cell.open, .cell.current {
    overflow: visible;
    z-index: 40;
}
.cell.open .element, .cell.current .element {
    width: 133%;
    height: auto;
    border-color: rgba(0, 0, 0, 0.1);
    transform: scale(1.5);
    z-index: 1;
    transition: transform 500ms ease;
    -webkit-box-shadow: 20px 25px 35px 50px rgba(0,0,0,0.15);
    -moz-box-shadow: 20px 25px 35px 50px rgba(0,0,0,0.15);
    box-shadow: 20px 25px 35px 50px rgba(0,0,0,0.15);
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    cursor: text;
}
.cell.open .element .elBorder {
    border: 1px solid #000;
}
.cell.open .element > div, .cell.current .element > div {
    font-size: 0.6em;
    padding: 0px;
}
.cell.open .element > div span, .cell.current .element > div span {
    display: block;
    padding: 3px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    white-space: nowrap;
}
.cell.open .element > div.main .symbol > span:before {
    content: "";
    position: absolute;
    background: var(--color-light);
    width: 1.1em;
    height: 1.1em;
    border-radius: 50%;
    z-index: -1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.cell.open .element > div.ordnungszahl span, .cell.open .element > div.elek span,
.cell.open .element > div.sip span {
    border-bottom: 1px solid rgba(66,66,66,0.1);
    border-right: 1px solid rgba(66,66,66,0.1);
}
.cell.open .element > div.elek span, .cell.open .element > div.oxi span {
    border-top: 1px solid rgba(66,66,66,0.1);
}
.cell.open .element > div.atma span, .cell.open .element > div.oxi span,
.cell.open .element > div.scp span {
    border-bottom: 1px solid rgba(66,66,66,0.1);
}
.cell.open .element > div.neg span {
    border-right: 1px solid rgba(66,66,66,0.1);
}
.cell.open .element > div.oxi span.red {
    display: inline-block !important;
}
.cell.open .element > div.main .symbol, .cell.current .element > div.main .symbol {
    font-size: 4em;
}
.cell.open .elek, .cell.open .oxi, .cell.open .sip, .cell.open .scp, .cell.open .element > div.main > div.kue,
.cell.current .elek, .cell.current .oxi, .cell.current .sip, .cell.current .scp, .cell.current .element > div.main > div.kue,
.cell.open .element .elInfoBtn {
    display: block;
}
.cell.open .atma, .cell.open .neg, .cell.open .ion {
    opacity: 1;
}

.element:hover .elBorder {
    border-color: transparent;
}
.cell:not(.open) .element.mint:hover {
    background-color: rgba(16, 155, 156, 1);
}
.cell:not(.open) .element.gelb:hover {
    background-color: rgba(224, 183, 20, 1);
}
.cell:not(.open) .element.orange:hover {
    background-color: rgba(205, 169, 26, 1);
}
.cell:not(.open) .element.pink:hover {
    background-color: rgba(177, 40, 87, 1);
}
.cell:not(.open) .element.grau:hover {
    background-color: rgba(137, 137, 136, 1);
}
.cell:not(.open) .element.rosa:hover {
    background-color: rgba(176, 54, 104, 1);
}
.cell:not(.open) .element.lila:hover {
    background-color: rgba(95, 64, 175, 1);
}
.cell:not(.open) .element.blau:hover {
    background-color: rgba(11, 98, 148, 1);
}
.cell:not(.open) .element.gruen:hover {
    background-color: rgba(32, 145, 98, 1);
}

/*///////////////////////////////////////////////////////
// Colors
//////////////////////////////////////////////////////*/
.element.mint, .legende .mint {
    background-color: rgba(0, 187, 189, 1);
}
.element.gelb, .legende .gelb {
    background-color: rgba(255, 212, 0, 1);
}
.element.orange, .legende .orange {
    background-color: rgba(237, 189, 0, 1);
}
.element.pink, .legende .pink {
    background-color: rgba(202, 33, 91, 1);
}
.element.lila, .legende .lila {
    background-color: rgba(122, 79, 237, 1);
}
.element.blau, .legende .blau {
    background-color: rgba(0, 131, 207, 1);
}
.element.rosa, .legende .rosa {
    background-color: rgba(255, 57, 139, 1);
}
.element.gruen, .legende .gruen {
    background-color: rgba(0, 205, 120, 1);
}
.element.grau, .legende .grau {
    background-color: rgba(163, 163, 160, 1);
}

.cell.open .symbol > .rot, .cell.current .symbol > .rot, .aggreList .rot {
    color: #FF3939;
}
.cell.open .symbol > .gruen, .cell.current .symbol > .gruen, .aggreList .gruen {
    color: #009635;
}
.cell.open .symbol > .blau, .cell.current .symbol > .blau, .aggreList .blau {
    color: #00A7FF;
}
.cell.open .symbol > .schwarz, .cell.current .symbol, .aggreList .schwarz > .schwarz {
    color: #3E3E3E;
}

.pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
    transform-origin: 150% 50%;
}
.pseRow:nth-child(2) .cell:nth-child(19) .element {
    transform-origin: 150% 0% !important;
}



@media (min-width: 2000px) {
    .cell {
        height: 110px;
    }
    .element > div {
        font-size: 0.8em;
    }
}
@media (max-width: 2460px) {
    .cell.open .element, .cell.current .element {
        width: 185%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 193% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 120% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(19) .element {
        transform-origin: 191% 0% !important;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(2) .element {
        transform-origin: 0% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(2) .element {
        transform-origin: 0% 0% !important;
    }
    .pseRow:nth-child(n+9):nth-child(-n+11) .cell .element {
        transform-origin: 92% 100%;
    }
    .pseRow:nth-child(n+9):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 120% 100%;
    }
}
@media (max-width: 1650px) {
    .cell.open .element, .cell.current .element {
        width: 230%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 214% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 160% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(19) .element {
        transform-origin: 214% 0% !important;
    }
}
@media (max-width: 1600px) {
    .cell {
        height: 90px;
    }
    .element > div {
        font-size: 0.625em;
    }
}
@media (max-width: 1440px) {
    .element > div.main .symbol {
        font-size: 2.5em;
    }
    .cell.open .element, .cell.current .element {
        width: 245%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(3) .element {
        transform-origin: 67% 50%;
    }

    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 218% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 150% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(17) .element {
        transform-origin: 90% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(19) .element {
        transform-origin: 218% 0% !important;
    }

    .pseRow:nth-child(n+9):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 150% 100%;
    }
    .pseRow:nth-child(n+9):nth-child(-n+11) .cell:nth-child(17) .element {
        transform-origin: 90% 100%;
    }
}
@media (max-width: 1279px) {
    .cell {
        height: 80px;
    }
    .element > div.main .symbol {
        padding-top: 5px;
    }
    .atma, .neg, .ion {
        display: none;
    }
    .cell.open .atma, .cell.open .neg, .cell.open .ion {
        display: block;
    }
    .oxi .red {
        width: 12px;
        height: 12px;
        top: 1px;
    }
    .oxi .red:before {
        top: 1px;
        width: 12px;
        height: 12px;
    }
    .cell.open .element > div.main .symbol > span:before {
        top: 38%;
    }
}
@media (max-width: 1100px) {
    .cell {
        height: 70px;
    }
    .cell.open .element {
        width: 330%;
    }
    .element > div.main .symbol {
        font-size: 2em;
    }
    .element > div.main .name {
        display: none;
    }
    .cell.open .element > div.main .name {
        display: block;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 239% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 190% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(17) .element {
        transform-origin: 130% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(16) .element {
        transform-origin: 110% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(19) .element {
        transform-origin: 239% 0% !important;
    }

    .pseRow:nth-child(n+9):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 190% 100%;
    }
    .pseRow:nth-child(n+9):nth-child(-n+11) .cell:nth-child(17) .element {
        transform-origin: 130% 100%;
    }
    .pseRow:nth-child(n+9):nth-child(-n+11) .cell:nth-child(16) .element {
        transform-origin: 110% 100%;
    }
}
@media (max-width: 1023px) {
    .pseTableTitle {
        display: none;
    }
}
@media (max-width: 960px) {
    .cell.open .element {
        width: 380%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 247% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 210% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(17) .element {
        transform-origin: 160% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(19) .element {
        transform-origin: 247% 0% !important;
    }
}
@media (max-width: 860px) {
    .cell {
        height: 55px;
    }
    .pseTable .element > div.main .symbol {
        font-size: 1.5em;
    }
    .pseTable .element > div.ordnungszahl {
        font-size: 8px;
        font-weight: 400;
    }
}
@media (max-width: 768px) {
    .cell.open .element {
        width: 410%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 251% 50%;
    }
}
@media (max-width: 680px) {
    .pseTable {
        margin-top: 69px;
    }
}
@media (max-width: 640px) {
    .pseRow:first-child .cell {
        height: 30px;
    }
}
@media (max-width: 560px) {
    .cell {
        height: 35px;
    }
    .cell.open .element {
        width: 140px;
    }
    .element > div.ordnungszahl {
        display: none;
    }
    .cell.open .element > div.ordnungszahl {
        display: block;
    }
    .element > div.main .symbol {
        padding: 5px 0;
    }
    .pseRow:first-child .cell {
        height: 20px;
    }
    .cellNumTop, .cellNumLeft {
        left: auto;
        top: auto;
        position: relative;
        font-size: 10px;
        font-weight: 700;
        display: block;
    }
    .cellNumTop {
        line-height: 20px;
        text-align: center;
        margin-top: 0;
    }
    .cellNumLeft {
        line-height: 35px;
    }
    .cell.open .element > div.main div.symbol > span {
        padding: 0;
        margin-top: 5px;
    }

    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
        transform-origin: 273% 50%;
    }
    .pseRow:nth-child(2) .cell:nth-child(19) .element {
        transform-origin: 273% 0% !important;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
        transform-origin: 242% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(17) .element {
        transform-origin: 213% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(16) .element {
        transform-origin: 213% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(15) .element {
        transform-origin: 185% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(14) .element {
        transform-origin: 155% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(13) .element {
        transform-origin: 126% 50%;
    }
    .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(3) .element {
        transform-origin: 0% 50%;
    }


    /*/// Active States ///*/
    .cell.open .element > div.main .symbol, .cell.current .element > div.main .symbol {
        font-size: 3.5em;
    }
    .cell.open .element > div.main .symbol > span:before {
        width: 1.2em;
        height: 1.2em;
    }
}
@media (max-width: 460px) {
    .element > div.main .symbol {
        font-size: 1.4em;
    }
}

.innerTable, .innerTable.zoomed .cell {
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.innerTable.zoomed {
    width: 325%;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
    margin-bottom: 30px;
}
.innerTable.zoomed .cell {
    min-width: 50px;
    min-height: 80px;
    -webkit-transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
    transition: all 500ms ease;
}
.innerTable.zoomed .pseRow[data-row="1"] .cell {
    min-height: 36px;
}
.innerTable.zoomed .pseRow[data-row="1"] .cellNumTop {
    line-height: 36px;
    text-align: left;
    left: 15%;
}
.innerTable.zoomed .pseRow[data-row="1"] .cellNumTop, .innerTable.zoomed .cellNumLeft {
    font-weight: 400;
}
.innerTable.zoomed .cell.open .element {
    width: 205%;
}
.innerTable.zoomed .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(19) .element {
    transform-origin: 206% 50%;
}
.innerTable.zoomed .pseRow:nth-child(2) .cell:nth-child(19) .element {
    transform-origin: 206% 0% !important;
}
.innerTable.zoomed .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(18) .element {
    transform-origin: 120% 50%;
}
.innerTable.zoomed .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(17) .element,
.innerTable.zoomed .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(16) .element,
.innerTable.zoomed .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(15) .element {
    transform-origin: 105% 50%;
}
.innerTable.zoomed .pseRow:nth-child(n+2):nth-child(-n+11) .cell:nth-child(3) .element {
    transform-origin: 80% 50%;
}
.innerTable.zoomed .element > div.main .name,
.innerTable.zoomed .atma, .innerTable.zoomed .neg, .innerTable.zoomed .ion,
.innerTable.zoomed .element > div.ordnungszahl {
    display: block;
}
.innerTable.zoomed .pseRow[data-row="9"], .innerTable.zoomed .pseRow[data-row="9"] .cell {
    height: auto;
    min-height: 30px;
}
.innerTable.zoomed .element > div.main .symbol {
    font-size: 2.5em;
}

/*///////////////////////////////////////////////////////
// PSE Info
//////////////////////////////////////////////////////*/
.pseInfo {
    position: relative;
    z-index: 5;
    background: var(--color-light);
    width: 100%;
    display: inline-block;
    padding: 60px 30px 60px 30px;
    overflow: hidden;
}
.pseInfo > .innerWrap {
    border-top: 1px solid #ECECEC;
    padding-top: 60px;
}
.whitelabel .pseInfo > .innerWrap {
    border: 0;
}
.pseInfo .innerWrap > div {
    width: 33.33%;
    float: left;
}
.whitelabel .pseInfo {
    background: transparent;
}
.legende header {
    line-height: 21px;
    margin-bottom: 25px;
    width: 100%;
    float: left;
}
.legende header h3 {
    float: left;
    font-family: 'DIN', sans-serif;
    font-size: 16px;
    color: #3e3e3e;
    text-transform: uppercase;
}
.legende ul {
    column-count: 2;
    column-gap: 40px;
    width: 100%;
    max-width: 500px;
    float: left;
}
.legende ul li {
    list-style: none;
    font-size: 12px;
    color: #3e3e3e;
    margin-bottom: 25px;
    white-space: nowrap;
}
.legende ul li span {
    width: 16px;
    height: 16px;
    display: inline-block;
    margin-right: 25px;
    border-radius: 50%;
}

.elementInfo {
    padding-top: 30px;
}
.elementInfo .innerScroll > div {
    float: left;
}
.leftInfo, .rightInfo {
    width: -webkit-calc(50% - 80px);
    width: -moz-calc(50% - 80px);
    width: calc(50% - 80px);
}
.leftInfo p, .rightInfo p {
    font-size: 12px;
    color: #3e3e3e;
    white-space: nowrap;
    margin: 0 0 1.5em 0;
}
.rightInfo p {
    margin: 0 0 1.1em 0;
}
.leftInfo p:first-child {
    margin-bottom: 7.5em;
}
.leftInfo  {
    padding-right: 15px;
}
.leftInfo p {
    text-align: right;
}
.rightInfo  {
    padding-left: 15px;
}
.rightInfo p {
    text-align: left;
}
.pseInfo strong {
    font-weight: 700;
}
.rightInfo span.red {
    color: #FF3939;
}
.elementInfo {
    position: relative;
    padding-bottom: 25px;
}
.elementInfo .element {
    width: 160px;
    margin-top: 10px;
}
.elementInfo .element > * {
    display: block !important;
    font-size: 14px;
    border: 1px solid rgba(200,200,200,0.5);
    opacity: 1;
}
.elementInfo .element > *, .elementInfo .element > div.atma, .elementInfo .element > div.ordnungszahl {
    padding: 5px 3px !important;
}
.elementInfo .element > div.main > div.kue {
    display: block;
}
.elementInfo .element .main .name {
    font-size: 16px;
}
.elementInfo .element .main .symbol {
    font-size: 45px;
}


.aggregatInfo {
    padding-top: 30px;
}
.aggregatInfo .innerWrap {
    max-width: 300px;
    font-size: 12px;
    float: right;
}
.pseInfo .aggregatInfo .innerWrap > div {
    width: 100%;
}
.aggregatInfo header {
    margin-bottom: 25px;
    color: #3e3e3e;
}
.aggreList {
    padding-left: 10px;
}
.aggreList > li {
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 30px;
    padding-left: 40px;
    font-size: 12px;
    line-height: 16px;
    list-style: none;
}
.aggreList span {
    font-family: 'DIN', sans-serif;
    position: absolute;
    left: 0;
    font-size: 16px;
    line-height: 1em;
}
@media (max-width: 1279px) {
    .pseInfo .innerWrap > .legende, .pseInfo .innerWrap > .elementInfo {
        width: 50%;
    }
    .pseInfo .innerWrap > .aggregatInfo {
        width: 100%;
        margin-top: 60px;
    }
    .elementInfo .oxi .red:before {
        top: 0px;
        width: 16px;
        height: 15px;
        left: -2px;
    }
    .elementInfo .oxi > span {
        letter-spacing: 0.05em;
    }
    .leftInfo p, .rightInfo p {
        margin: 0 0 1.2em 0;
    }
    .rightInfo p {
        margin: 0 0 0.9em 0;
    }
    .leftInfo p:first-child {
        margin-bottom: 7em;
    }
    .aggregatInfo .innerWrap {
        padding: 0;
        float: left;
        max-width: 400px;
    }
    .aggreList {
        column-count: 2;
        column-gap: 40px;
        height: 100px;
    }
    .aggreList > li {
        padding-left: 30px;
    }
}
@media (max-width: 1100px) {
    .pseInfo .innerWrap > .legende {
        width: 40%;
    }
    .pseInfo .innerWrap > .elementInfo {
        width: 60%;
    }
    .pseInfo .elementInfo .element > div.main .name {
        display: block;
    }
}
@media (max-width: 960px) {
    .pseInfo .innerWrap > .legende, .pseInfo .innerWrap > .elementInfo {
        width: 100%;
    }
    .pseInfo .innerWrap > .elementInfo {
        margin-top: 30px;
    }
    .legende ul {
        column-count: 3;
        max-width: 640px;
    }
    .elementInfo {
        display: -moz-box;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: -moz-flex;
        display: flex;
    }
    .leftInfo, .rightInfo {
        width: auto;
    }
}
@media (max-width: 680px) {
    .pseInfo {
        padding: 0px 20px 60px 20px;
    }
    .pseInfo > .innerWrap {
        padding: 60px 0 0 0;
    }
    .legende ul {
        column-count: 2;
        column-gap: 20px;
        max-width: 100%;
    }
    .legende ul li span {
        margin-right: 15px;
    }
    .pseInfo .innerWrap > .elementInfo {
        display: block;
        overflow: auto;
    }
    .elementInfo .innerScroll {
        width: calc(150vw - 60px);
        max-width: none;
    }
    .elementInfo .innerScroll > div {
        width: calc(50vw - 20px);
        max-width: none;
    }
}


/*///////////////////////////////////////////////////////
// Share Screens
//////////////////////////////////////////////////////*/

#bonusShare {
    display: none;
    position: fixed;
    overflow: auto;
    z-index: 400;
    width: 100%;
    height: 100%;
    background: url('../../Images/share_bg.jpg') repeat center center / cover;
    padding: 10px 40px;
}
#shareScreen {
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 700;
    width: 100%;
    height: 100%;
    left: -100%;
    background: url('../../Images/menu_bg.jpg') repeat center center / cover;
    padding: 25px 30px;
    -webkit-transition: all ease 0.3s;
    -moz-transition: all ease 0.3s;
    -ms-transition: all ease 0.3s;
    -o-transition: all ease 0.3s;
    transition: all ease 0.3s;
}
.centerWrap {
    width: 100%;
    height: 100%;
    position: relative;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    justify-content: center;
}
#shareScreen .backBtn {
    position: absolute;
    color: #4e4e4e;
    font-size: 15px;
    top: 20px;
    padding: 10px 0px 10px 19px;
    z-index: 50;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
#shareScreen .backBtn:before {
    content: " ";
    background: url('../../Icons/arrow_back_dark.svg') no-repeat left center / 21px 14px;
    padding-right: 35px;
    width: 21px;
    height: 14px;
}
#shareScreen .backBtn {
    color: #fff;
}
#shareScreen .shareClose {
    left: 0;
    top: 0;
    cursor: pointer;
}
#shareScreen .backBtn:before {
    background: url('../../Icons/arrow_back_white.svg') no-repeat left center / 21px 14px;
}
#bonusShare h2 {
    color: #4e4e4e;
    font-size: 30px;
    line-height: 1.1em;
    text-align: center;
    padding: 20px 0px;
}
.socialMenu {
    width: 100%;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    -webkit-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: row wrap;
    flex-flow: row wrap;
    justify-content: center;
    max-width: 560px;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}
.socIcon {
    display: block;
    position: relative;
    width: -webkit-calc(33.33% - 20px);
    width: -moz-calc(33.33% - 20px);
    width: calc(33.33% - 20px);
    margin: 0px 10px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: center 30px;
    -webkit-background-size: auto 65px;
    background-size: auto 65px;
    border-radius: 10px;
    -moz-box-shadow: 0px 0px 6px #ccc;
    -webkit-box-shadow: 0px 0px 6px #ccc;
    box-shadow: 0px 0px 6px #ccc;
    padding: 10px;
    height: 150px;
    -webkit-transition: all 0.25s;
    -moz-transition: all 0.25s;
    -ms-transition: all 0.25s;
    -o-transition: all 0.25s;
    transition: all 0.25s;
}
.socIcon.facebook {background-image: url('../../Icons/facebook_share.svg');}
.socIcon.instagram {background-image: url('../../Icons/instagram.svg');}
.socIcon.whatsapp {background-image: url('../../Icons/whatsapp.svg');}
.socIcon > span {
    position: absolute;
    z-index: 10;
    width: 100%;
    text-align: center;
    bottom: 15px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    font-size: 12px;
    color: #4e4e4e;
}
.skipToWin {
    position: relative;
    font-size: 15px;
    color: #4e4e4e;
    float: right;
    margin-top: 15px;
    margin-right: 30px;
}
.snapchat .skipToWin {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    float: left;
    margin-right: 0;
}
.bsTotal {
    display: none;
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    float: left;
    margin-top: 14px;
    font-size: 16px;
    color: #4e4e4e;
    font-weight: 700;
}
.shariff-button a {
    background-color: transparent;
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    opacity: 0;
    text-indent: -999em;
}
.shariff-button {
    list-style: none;
}

@media (max-height: 360px) {
    .socIcon {
        height: 155px;
        background-position: center 25px;
        -webkit-background-size: auto 50px;
        background-size: auto 50px;
    }
}
@media (max-height: 340px) {
    .socIcon {
        height: 135px;
    }
}
@media (max-height: 320px) {
    #bonusShare h2 {
        font-size: 26px;
        padding: 10px 0px 20px 0px;
    }
    .socIcon {
        height: 135px;
    }
}
@media (max-height: 300px) {
    .socIcon {
        height: 110px;
        background-position: center 20px;
        -webkit-background-size: auto 45px;
        background-size: auto 45px;
    }
    .socIcon > span {
        bottom: 15px;
    }
}
@media (max-width: 500px) {
    #bonusShare {
        padding: 20px;
    }
    .skipToWin {
        right: 20px;
    }
}

@media only screen and (orientation: portrait) {
    #shareScreen {
        padding: 30px 20px 0px 20px;
    }
    #shareScreen .backBtn {
        margin-left: 5px;
    }
    #bonusShare h2 {
        font-size: 9vw;
        padding: 15vh 0px 30px 0px;
    }
    #bonusShare h2 br {
        display: none;
    }
    .socIcon {
        margin: 0px 10px 0px 0px;
        width: -webkit-calc(33.33% - 10px);
        width: -moz-calc(33.33% - 10px);
        width: calc(33.33% - 10px);
        height: 170px;
    }
    .socIcon:last-child {
        margin: 0;
    }
    .skipToWin {
        right: 0;
        margin: 0;
        padding: 25px;
        position: absolute;
        bottom: 20px;
    }
    .snapchat .skipToWin {
        right: auto;
    }
}
@media only screen and (orientation: portrait) and (max-height: 480px) {
    #bonusShare h2 {
        padding: 9vh 0px 30px 0px;
    }
    .socIcon {
        background-size: auto 55px;
        height: 145px;
    }
}

/*///////////////////////////////////////////////////////
// Banner Werbung
//////////////////////////////////////////////////////*/
.overlay .banner {
    position: absolute;
    display: none;
    width: 100%;
    max-width: 850px;
    min-width: 320px;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    padding-bottom: 40px;
}
.bannerClose {
    position: absolute;
    top: -12px;
    right: -24px;
    width: 48px;
    height: 48px;
    cursor: pointer;
    z-index: 20;
    background: url("../../Icons/banner_close.svg") no-repeat center center / contain;
}
.overlay .banner img {
    width: 100%;
    height: auto;
}
@media (max-width: 960px) {
    .overlay .banner {
        padding: 0 30px 40px 30px;
    }
    .bannerClose {
        top: -21px;
        right: 8px;
    }
}
@media (max-width: 460px) {
    .overlay .banner {
        margin: 30px auto 0 auto;
    }
}
@media (max-height: 540px) {
    .overlay .banner {
        top: 30px;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}

/*///////////////////////////////////////////////////////
// UI / UX / Buttons
//////////////////////////////////////////////////////*/
.overlay, .navOverlay {
    max-width: 0%;
    max-height: 0%;
    opacity: 0;
    position: fixed;
    overflow: auto;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 500;
    background: rgba(0,0,0,0.35);
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -ms-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
}
.overlay.dark {
    z-index: 1000;
    background: rgba(0,0,0,0.85);
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-flex-flow: column wrap;
    flex-flow: column wrap;
    justify-content: center;
}
.overlay.active, .navOverlay.active {
    max-width: 100%;
    max-height: 100%;
    opacity: 1;
}
/*.btn, a.btn {
    font-family: 'DIN', Arial, Helvetica, sans-serif;
    padding: 7px 25px;
    display: block;
    background-image: linear-gradient(bottom, #717171 50%, #7f7f7f 50%);
    background-image: -o-linear-gradient(bottom, #717171 50%, #7f7f7f 50%);
    background-image: -moz-linear-gradient(bottom, #717171 50%, #7f7f7f 50%);
    background-image: -webkit-linear-gradient(bottom, #717171 50%, #7f7f7f 50%);
    background-image: -ms-linear-gradient(bottom, #717171 50%, #7f7f7f 50%);
    float: left;
    cursor: pointer;
    -moz-box-shadow: 0px 0px 6px #ccc;
    -webkit-box-shadow: 0px 0px 6px #ccc;
    box-shadow: 0px 0px 6px #ccc;
    color: var(--color-light);
    font-size: 20px;
    -webkit-transition: background-image 0.2s ease-in-out;
    transition: background-image 0.2s ease-in-out;
    min-width: 160px;
    text-align: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    border-radius: 2px;
    -webkit-tap-highlight-color: transparent;
    text-decoration: none;
    border: 0;
    text-transform: uppercase;
}
.btn:hover, btn:focus {
    color: var(--color-light);
}
a.btnOutline {
    font-family: 'DIN', Arial, Helvetica, sans-serif;
    display: inline-block;
    padding: 5px 20px;
    background: #fff;
    color: #4e4e4e;
    font-size: 16px;
    border: 1px solid #d8d8d8;
    text-decoration: none;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
ul.slick-dots {
    position: relative;
    top: 5px;
    width: 100%;
    text-align: center;
    list-style: none;
}
ul.slick-dots li {
    display: inline-block;
    background-color: var(--color-elvigray3);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    width: 12px;
    height: 12px;
    margin: 0 6px;
}
ul.slick-dots li.slick-active {
    background-color: #7B58F1;
}
ul.slick-dots li button {
    display: none;
}*/
@media (max-width: 680px) {
    .overlay.dark {
        justify-content: start;
    }
    .btnStart {
        padding: 7px 25px;
    }
}

/*///////////////////////////////////////////////////////
// Footer
//////////////////////////////////////////////////////*/
#footer {
    position: absolute;
    z-index: 20;
    bottom: 0;
    width: 100%;
    padding: 10px 0;
    background: var(--color-light);
    max-height: 135px;
}
.wrapper[data-page="intro"] #footer {
    padding: 40px 0;
}
#footer .innerWrap {
    z-index: 20;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding: 0 40px;
}
.wrapper[data-page="intro"] #footer .innerWrap {
    max-width: 1530px;
    padding: 0 10px;
}
#footer .footerNavLeft {
    float: left;
}
#footer .footerNavRight {
    float: right;
}
#footer .footerNavRight ul li a {
    color: var(--color-darkgray1);
    font-size: 16px;
}
#footer .footerNavLeft .subMenu {
    display: flex;
}
#footer .footerNavLeft .subMenu li {
    list-style: none;
    margin-right: 40px;
}
#footer .footerNavLeft .subMenu a {
    text-decoration: none;
    font-size: 16px;
    text-transform: none;
}
#footer .footerNavLeft .subMenu a, #footer .footerNavLeft .subMenu a:visited, #footer .footerNavLeft .subMenu a:focus {
    color: #3E3E3E;
}
#footer .footerNavLeft .subMenu li:last-child {
    margin-right: 0;
}
#footer .footerMenu {
    position: absolute;
    background: var(--color-light);
    right: 0;
    width: 470px;
    bottom: 35px;
}
#footer .footerMenu:before {
    content: "";
    position: absolute;
    background: url('../../Images/menu_bottom.svg') no-repeat left bottom / 100% auto;
    width: 100%;
    height: 115px;
    bottom: 99%;
    left: 0;
}
#footer .footerMenu .menuContent {
    padding-right: 50px;
}
@media (max-width: 1640px) {
    .wrapper[data-page="intro"] #footer .innerWrap {
        padding: 0 40px;
    }
}
@media (max-width: 767px) {
    #footer {
        position: relative;
        padding: 25px 0;
    }
    #footer .innerWrap {
        padding: 0 30px;
    }
    #footer .footerNavLeft .subMenu li {
        margin-right: 30px;
    }
    #footer .footerMenu {
        bottom: 68px;
    }
}
@media (max-width: 640px) {
    .wrapper[data-page="intro"] #footer {
        padding: 25px 0;
    }
    .wrapper[data-page="elemente"] #footer {
        padding: 0 0 25px 0;
    }
    .wrapper[data-page="elemente"] #footer .innerWrap {
        -webkit-flex-direction: column-reverse;
        flex-direction: column-reverse;
        align-items: unset;
        justify-content: space-between;
        padding: 0;
    }
    .wrapper[data-page="elemente"] #footer .footerNavLeft {
        padding: 15px 20px;
    }
/*    .wrapper[data-page="elemente"] .innerWrap > div {
        padding: 0;
    }*/
    .wrapper[data-page="elemente"] #footer .innerWrap > div.footerNavLeft {
        border-top: 1px solid #ECECEC;
        padding-top: 20px;
    }
    .whitelabel .footerNavLeft {
        position: relative;
        z-index: 20;
    }
    .whitelabel .footerNavRight {
        position: relative;
        z-index: 10;
    }
}
@media (max-width: 560px) {
    #footer {
        font-size: 0.875rem;
    }
    #footer .footerMenu {
        width: 100%;
        border-bottom: 1px solid #E3E3E3;
    }
    #footer .footerMenu .menuContent {
        top: -30px;
        margin-top: -60px;
        padding-right: 30px;
    }
    #footer .footerMenu:before {
        background: url('../../Images/menu_bottom.svg') no-repeat left top / 100% auto;
        height: 85px;
    }
}
@media (max-width: 460px) {
    #footer .footerMenu .menuContent {
        margin-top: -25px;
    }
}


/*///////////////////////////////////////////////////////
// Custom Scrollbars
//////////////////////////////////////////////////////*/
/*
 * Container style
 */
.ps {
    overflow-anchor: none;
    -ms-overflow-style: none;
    touch-action: auto;
    -ms-touch-action: auto;
}
.ps.pseTable {
    overflow: hidden !important;
}
/*
 * Scrollbar rail styles
 */
.ps__rail-x {
    display: none;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    height: 15px;
    /* there must be 'bottom' or 'top' for ps__rail-x */
    bottom: 0;
    /* please don't change 'position' */
    position: absolute;
}

.ps__rail-y {
    display: none !important;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    -webkit-transition: background-color .2s linear, opacity .2s linear;
    width: 15px;
    /* there must be 'right' or 'left' for ps__rail-y */
    right: 0;
    /* please don't change 'position' */
    position: absolute;
}
.ps--active-x > .ps__rail-x,
.ps--active-y > .ps__rail-y {
    opacity: 0 !important;
    display: block;
    background-color: transparent;
}

.ps:hover > .ps__rail-x,
.ps:hover > .ps__rail-y,
.ps--focus > .ps__rail-x,
.ps--focus > .ps__rail-y,
.ps--scrolling-x > .ps__rail-x,
.ps--scrolling-y > .ps__rail-y {
    opacity: 0.6;
}

.ps .ps__rail-x:hover,
.ps .ps__rail-y:hover,
.ps .ps__rail-x:focus,
.ps .ps__rail-y:focus,
.ps .ps__rail-x.ps--clicking,
.ps .ps__rail-y.ps--clicking {
    background-color: #E3E3E3;
    opacity: 0.9;
}

/*
 * Scrollbar thumb styles
 */
.ps__thumb-x {
    background: var(--button-background);
    border-radius: 6px;
    transition: background-color .2s linear, height .2s ease-in-out;
    -webkit-transition: background-color .2s linear, height .2s ease-in-out;
    height: 6px;
    /* there must be 'bottom' for ps__thumb-x */
    bottom: 2px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__thumb-y {
    background: var(--button-background);
    border-radius: 6px;
    transition: background-color .2s linear, width .2s ease-in-out;
    -webkit-transition: background-color .2s linear, width .2s ease-in-out;
    width: 6px;
    /* there must be 'right' for ps__thumb-y */
    right: 2px;
    /* please don't change 'position' */
    position: absolute;
}

.ps__rail-x:hover > .ps__thumb-x,
.ps__rail-x:focus > .ps__thumb-x,
.ps__rail-x.ps--clicking .ps__thumb-x {
    background: var(--button-background);
    height: 11px;
}

.ps__rail-y:hover > .ps__thumb-y,
.ps__rail-y:focus > .ps__thumb-y,
.ps__rail-y.ps--clicking .ps__thumb-y {
    background: var(--button-background);
    width: 11px;
}

/* MS supports */
@supports (-ms-overflow-style: none) {
    .ps {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps {
        overflow: auto !important;
    }
}
@media (max-width: 680px) {
    .ps--active-x > .ps__rail-x,
    .ps--active-y > .ps__rail-y {
        opacity: 1 !important;
    }
    .pseTable .ps__rail-x, .pseTable .ps__rail-y {
        opacity: 0 !important;
    }
}

.minimap,.miniregion{position:fixed;cursor:pointer}.minimap{z-index:10000;font-size:1em}.miniregion{z-index:10001;background:0 0;border:2px solid silver;border-radius:10%;cursor:-webkit-grab;cursor:-moz-grab}.miniregion.dragging{cursor:-webkit-grabbing;cursor:-moz-grabbing}.miniregion:hover{box-shadow:0 0 .4em #a9a9a9}.noselect{-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}
