[v-cloak] {
    display: none;
}

* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;

}

/* color:

triax red: #bb2d21
triax turkis: #50828d

*/

@font-face {
    font-family: roboto_regular;
    src: url('../fonts/roboto/Roboto-Regular.ttf');
}

@font-face {
    font-family: roboto_bold;
    src: url('../fonts/roboto/Roboto-Bold.ttf');

}

* {
    margin: 0;
    padding: 0;

    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

body {
    background: #3d3d3d;
}

@-ms-viewport {
    width: device-width;
}

#ieoverlay {
    display: none;
}

#app {
    height: 100vh;
    width: 100%;
    overflow: hidden;
    margin: auto;
    display: block;
}

#contentscaler {
    position: relative;
    height: 100vh;
    width: 100vw;
    max-width: calc(100vh*1.77);
    max-height: calc(100vw*0.5625);
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
    overflow: hidden;
}

.contentloading {
    -webkit-filter: blur(3px);
    filter: blur(3px);
}

#backgroundvideo {
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background: black;
    transform-origin: 0;
    object-fit: fill;
    height: 100%;
    width: 100%;
    z-index: -1;
    max-width: calc(100vh*1.77);
    max-height: calc(100vw*0.5625);
}

.transitionwrapper {
    width: 100%;
    height: 100%;

}

.changescene-enter-active,
.changescene-leave-active {
    transition: all 0.4s ease-in-out;
}

.changescene-enter {
    opacity: 0;
    transform: scale(1.5);
}

.changescene-leave-to {
    opacity: 0;
    transform: scale(1.5);
}

/* --------- logo ----------- */

#frontlogo,
.navlogo {
    position: absolute;
    top: 2%;
    left: 2%;
    transform-origin: 0% 0%;
    width: 150px;
    z-index: 2;
    cursor: pointer;
}

#white-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 400px;
    transform-origin: 0% 0%;
}

/* ------------- FRONTPAGE H1 ----------- */

#frontpageheadline {
    font-family: roboto_regular;
    font-weight: 100;
    display: inline-block;
    position: absolute;
    top: 2%;
    right: 2%;
}

#frontpageheadline strong {

    font-family: roboto_bold;
}

/* nav */

nav {
    position: absolute;
    bottom: -1px;
    width: 100%;
    z-index: 6;
    display: flex;
    justify-content: center;
}

.subnav {
    transform-origin: 100% 0%;
    width: 80%;

    display: flex;
    justify-content: center;
}

.subnav>div {
    height: 106%;
}

.navbutton {
    position: relative;
    display: inline-block;
    cursor: pointer;
    width: 2.9%;
    background: #bb2d21;
    text-align: center;
    white-space: nowrap;
    margin: 0 0.1%;
}

.navbutton img {
    transform-origin: 50% 70%;
    vertical-align: middle;
    width: 19px;
}

.fullscreenbutton {
    background: rgba(0, 0, 0, 0.70);
}

.vertical-nav {
    display: inline-block;
    height: 100%;
    width: 100%;
    vertical-align: middle;
}

.subnav>li {
    position: relative;
    background-color: #71a4af;
    background-color: #50828dcc;
    text-align: center;
    margin: 0 0.1%;
    color: #fff;
    font-family: roboto_regular;
    display: inline-block;
    cursor: pointer;
}


.subnav>li>img {
    position: absolute;
    top: 50%;
    transform: translateY(-115%);
    margin-left: 4px;
}


/* ----- contact list ----- */
.contactlist {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    padding-top: 4%;
    padding-bottom: 2%;
    text-align: left;

    background: rgba(0, 0, 0, 0.85);
    color: white;
    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;

    border-top: solid 4px #bb2d21;
}

.contactlistopen {
    transform: translateY(-100%);
    opacity: 1;
}

.contactlist li {
    position: relative;
    padding-left: 6%;
}

.contactlist li>p {
    color: white;
    text-decoration: none;
    position: absolute;
    left: 25%;
    margin-top: -17.5%;
}


/* ----- language list ----- */
.languagelist {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    opacity: 0;
    padding-bottom: 8px;
    text-align: left;

    background: rgba(0, 0, 0, 0.85);
    color: white;
    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;


    border-top: solid 4px #bb2d21;
}

.languagelistopen {
    transform: translateY(-100%);
    opacity: 1;
}

.languagelist li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.languagelist li>p {
    color: white;
    text-decoration: none;
    font-family: roboto_regular;
}



.noopacitynav {
    background: #50828d !important;
}

.subnavunderline {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: red;
}

ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}



/* ----  breadcrumbs -----*/

.breadcrumbs {
    float: left;
    height: 100%;
    width: auto;
}

.breadcrumbs li {
    font-family: roboto_regular;
    font-weight: bold;
    color: #33444e;
    height: 100%;
    float: left;
}

.activebreadcrumb {
    color: #3096ba !important;
}

.breadcrumbs li:hover,
.breadcrumbs li:active {
    color: #3096ba;
}





/* -------- hotspots --------- */

#hotspotslist {
    transform-origin: 0% 0%;

}

.hotspot {
    position: absolute;
    background: rgba(0, 0, 0, 0.70);
    font-size: 19px;
    padding: 11px 26px 11px 35px;
    height: 22px;
    z-index: 5;
    cursor: pointer;
    white-space: nowrap;
    transition: all 1s ease-in-out;
}


.hotspotright {
    padding: 11px 31px 11px 26px;
    border-radius: 4px 0 0 4px;
}

.hiddentext {
    padding: 11px 0px 11px 0px;
    width: 0px;
}

.hotspotwrapper {
    position: relative;
}



.hotspotoutlines {
    position: absolute;
    top: -11px;
    left: -40px;
    right: -26px;
    bottom: -11px;
}

.hotspotoutlinesright {
    right: -40px;
    left: -26px;
}

/*.hotspotoutlines:before,
.hotspotoutlines:after {
    content: "";
    display: block;
    position: absolute;
    height: 44px;
    width: 5px;
    background: #bb2d21;
}*/
.hotspotoutlinesbefore {
    position: absolute;
    left: 0;
    top: 0;
    height: 44px;
    width: 5px;
    background: #bb2d21;
}
.hotspotoutlinesafter {
    position: absolute;
    right: 0;
    top: 0;
    height: 44px;
    width: 5px;
    background: #bb2d21;
}

.hotspotoutlines:before {
    left: 0;
}

.hotspotoutlines:after {
    right: 0;
}


.hotspot p {
    padding: 0;
    margin: 0;
    font-family: roboto_bold;
    color: white;
    position: relative;
    z-index: 2;
    white-space: nowrap;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.plusbutton {
    content: "+";
    position: absolute;
    z-index: 4;
    top: -11px;
    background: #bb2d21;
    padding: 3.5px 11px 3.5px 11px;
    font-weight: bold;
    color: white;
    font-size: 32px;
    border-radius: 15%;
    transition: all 0.4s ease-in-out;
}

.plusbuttonanimate {
    transform: scale(1.15);
}

.plusbuttonrotate {
    transform: rotate(90deg);
}

.plusbuttonbigrotate {
    transform: rotate(360deg);
}

.plusbuttonleft {
    left: -65px;
}

.plusbuttonright {
    right: -65px;
}

.plusoutlineanimationleft {
    left: -60px;
}

.plusoutlineanimationright {
    right: -60px;
}

.plusoutlineanimation {
    position: absolute;
    top: -8px;
    background: white;
    border-radius: 10%;
    z-index: -100;
    font-size: 25px;
    width: 33px;
    height: 33px;
}

.fade-enter-active,
.fade-leave-active {
    transition: all 0.8s ease-out;
}

:root {
    --transform-pulse: scale(12);
}

.fade-leave-to {
    opacity: 0;
    transform: var(--transform-pulse);
    border-radius: 60%;
}


/* ------- product -------- */

.product {
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background: white;
}

.fadein-enter-active,
.fadein-leave-active {
    transition: all 0.4s ease-in-out;
}

.fadein-enter {
    opacity: 0;
    transform: scale(0.7);
}

.fadein-leave-to {
    opacity: 0;
    transform: scale(0.7);
}

/* product video */

#productvideo {
    height: 100%;
    width: calc(56.5% - 4px);
    background: #e0e0e0;
    position: relative;
    margin: 0;
    padding: 0;
}
#productimg {
    height: 100%;
    width: calc(56.5% - 4px);
    background: #e0e0e0;
    position: relative;
    margin: 0;
    padding: 0;
}

/* product content */

.productwrapper {
    position: relative;
    margin: 0;
    padding: 0;
    float: right;
    width: 42%;
    height: 100%;
    font-family: roboto_regular;
}

.productwrapper h3 {
    font-family: roboto_bold;
    margin-bottom: 2%;
}

.productcontent {
    height: 79%;
    padding: 15% 15% 0% 9%;
    overflow: auto;

    position: relative;
}

.productcontent h6 {
    position: absolute;
    bottom: 1%;
    color: #1d1d1d8c;
}


.productcontent h4 {
    letter-spacing: 1px;
    margin-top: 4%;
    margin-bottom: 2%;
    font-size: 1.25em;
}

/*.productcontent p:not(:last-child) {*/
.productcontent p {
    margin-bottom: 3%;
}

.productcontent ul {
    padding-left: 2%;
    line-height: 1.4em;
}

.productcontent ul li::before {
    content: "•";
    color: #bb2d21;
    margin-right: 7px;
    margin-left: 2px;
    font-weight: bold;
}

.productcontentwrapper {
    margin-bottom: 3%;
}

.productcontentwrapper:last-of-type {
    margin-bottom: 0;
}


/* description */
.productdescriptioncontent {}

/* details */

/* Links */

.productlink {
    padding-right: 4%;
}

.singlelink {
    margin-bottom: 1%;
}

.linkslinks {
    margin-top: 1%;
    margin-bottom: 3%;
}

.productlinks ul li::before {
    content: "";
}

.productlinks a {
    color: #50828d;
    font-size: 1.2em;
}

.productlinks li {
    margin-bottom: 1%;
}

.productlinks h4 {
    margin-bottom: 2%;
}

.productlinks a:hover {
    color: #84a6af;
}

.productlinks a:visited {
    color: #84a6af;
}

.productlinks ul li::before {
    margin-right: 0;
}


/* product navigation */

.productnav {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    top: 90%;
    transform-origin: 0% 0%;
    color: white;
}

.productnav>div {
    position: relative;
    display: inline-block;
    width: 32.4%;
    height: 100%;
    background: #84a6af;
    cursor: pointer;
    text-align: center;
}

.productnav>div>span {
    position: absolute;
    bottom: 5%;
    display: block;
    width: 100%;
}

.productnav>div>img {
    position: relative;
    top: 41%;
    display: block;
    transform: translateY(-50%);
    margin: auto;
}

.productnavselected {
    background: #50828d !important;
}


/* close product */

.closeproduct {
    position: absolute;
    top: 0;
    right: 2%;
    height: 50px;
    width: 50px;
    cursor: pointer;
    transform-origin: 100% 0%;
    z-index: 2;
    background: #bb2d21;
}

.closeproduct>div {
    height: 100%;
    background: url('../img/product/close.png') no-repeat center;
}




/* --------- loading popup --------- */

.loading {
    position: absolute;
    z-index: 20;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    background: rgba(0, 0, 0, 0.705);
}

.fadeout-enter-active,
.fadeout-leave-active {
    transition: all 0.4s ease-in-out;
}

.fadeout-enter {
    opacity: 0;
}

.fadeout-leave-to {
    opacity: 0;
}

.loadingwrapper {
    position: relative;
    text-align: center;
    height: 100vh;
}

.loadingwrapper img {
    position: relative;
    top: 50%;
    margin: auto;
    transform: translateY(-50%);
}




/* ------- dropdown -------*/

.dropdownwrapper {
    position: absolute;
    right: 3%;
    top: 0;
    left: 70%;
    font-family: roboto_regular;
}

.dropdownbar {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2;
}

.dropdownbar h4,
.dropdownbar span {
    display: inline-block;
    color: #fff;
}

.dropdownbar h4 {
    margin: 0 1% 0 6%;
    font-weight: bold;
}

.expanddropdown {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    cursor: pointer;

    background: #bb2d21;

    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
    transform-style: preserve-3d;
}

.expanddropdownrotated {
    transform: rotateX(180deg);
}

.expanddropdown div {
    width: 100%;
    height: 100%;
    backface-visibility: hidden;

    position: absolute;
    top: 0;
    left: 0;
}

.expanddropdownfront {
    background: url('../img/nav/arrowopen.png') no-repeat center;
    transform: rotateX(0deg);

}

.expanddropdownback {
    background: url('../img/nav/arrowclose.png') no-repeat center;
    transform: rotateX(180deg);
}

.expanddropdownbackground {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 40px;
    cursor: pointer;

    background: #bb2d21;
}

.dropdown {
    position: absolute;
    left: 0;
    right: 0;
    padding: 6% 6% 8% 6%;
    ;
    background: rgba(0, 0, 0, 0.85);
    color: white;

    opacity: 0;
    transform: translateY(-2em);
    z-index: -1;
    -webkit-transition: all .25s ease-in-out;
    -moz-transition: all .25s ease-in-out;
    -ms-transition: all .25s ease-in-out;
    -o-transition: all .25s ease-in-out;
    transition: all .25s ease-in-out;
}

.dropdownopen {
    opacity: 1;
    z-index: 1;
    transform: translateY(-0.1%);
}

.dropdown h3 {
    font-family: roboto_bold;
    padding: 1% 0 5% 0;
    font-size: 2.3em;
    line-height: 1em;
}

.dropdown p {
    padding-right: 3%;
    margin-bottom: 5%;
}

.dropdown ul li {
    font-size: 1.1em;
    line-height: 1.4em;
}

.dropdown ul li::before {
    content: "•";
    color: #bb2d21;
    margin-right: 12px;
    margin-left: 5px;
    font-weight: bold;
}

/* ---------------- LOGIN -------------- */

.loginwrapper {
    position: absolute;
    font-family: roboto_regular;
    border-radius: 18px 0 0 18px;
    padding: 44px 22px 40px 22px;
    width: 250px;
    background: rgba(80, 130, 141, 0.94);
    color: white;

    transform-origin: 0% 0%;

    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.3), 0 15px 40px rgba(0, 0, 0, 0.07);
}

.loginwrapper::after {
    content: '';
    position: absolute;
    height: 100%;
    right: 0;
    top: 0;
    width: 5px;
    
    background: #bb2d21;
}

.loginwrapper h4 {
    font-size: 1.4em;
    padding-left: 6%;
    margin-bottom: 5%;
}
.logininstructions {
    margin-bottom: 7%;
    line-height: 1.25em;
}
.logininstructions a {
    color: #bb2d21;
    font-weight: bold;
    letter-spacing: 1px;
    font-size: 1.03em;
}
.loginwrapper label {
    font-size: 1.1em;
}

.loginerror {
    height: 0;
    padding: 0;
    opacity: 0;
    
    text-align: center;
    color: #bb2d21;

    transition: all 0.25s ease-in-out;
}

.showloginerror {
    padding-top: 7%;
    padding-bottom: 2%;
    opacity: 1;
}

.loginwrapper > input {
    width: 88%;
    padding: 4% 5%;
    border: none;
    margin-top: 2%;
}
.loginwrapper > input:focus {
    outline: none;
}

.loginwrapper > button {
    width: 32%;
    background: #bb2d21;
    color: white;
    cursor: pointer;
    border: none;
    padding: 3.5%;
    margin-top: 6%;
    border-radius: 10px;
}

.loginwrapper > button:focus {
    outline: none;
}
.loginwrapper > button:active {
    background: #863931;
}


.loginwrapper > .closeproduct {
    right: 0;
}
.fadeinlogin-enter-active,
.fadeinlogin-leave-active {
    transition: all 0.4s ease-in-out;
}
.fadeinlogin-enter {
    opacity: 0;
    transform: translateY(-50%) translateX(-50%) scale(0.7);
}
.fadeinlogin-leave-to {
    opacity: 0;
    transform: translateY(-50%) translateX(-50%) scale(0.7);
}

/* ------- COPYRIGHT ------- */

#copyright {
    position: absolute;
    right: 0;
    top: 68%;
    width: 400px;
    background: #50828d;
    padding: 1.4% 1.1% 1% 1.5%;
    font-family: roboto_regular;
    transform: translateX(100%);
    transition: transform 0.5s ease-in-out;
    box-shadow: 0px 0px 18px rgb(61, 61, 61);
}

.privacypolicyopen {
    transform: translateX(0%) !important;
}

#copyright p {
    line-height: 1.2em;
    color: #fff;
}

#copyright a {
    color: black;
    font-weight: bold;
}

#copyright a:hover,
#copyright a:active {
    color: rgb(29, 29, 29);
}


.buttonwrapper {
    text-align: center;
}

#copyright button {
    text-align: center;
    background: #12646e;
    border: none;
    padding: 1.7% 3.5% 1.5% 3%;
    color: #fff;
    cursor: pointer;
    font-size: 16px;
}

#copyright button:hover,
#copyright butto:active {
    background: #0d545e;
    color: rgba(255, 255, 255, 0.808);
}


/* ------ mobile portrait block ----- */

/* ---- mobile portrait mode block ---- */

#mobileoverlay {
    position: absolute;
    top: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 1001;
    height: 100vh;
    width: 100vw;
    text-align: center;
    font-family: roboto_regular;
}

.rotatewrapper {
    position: absolute;
    width: 100%;
    top: 42%;
    left: 0;
}

.rotatewrapper img {
    display: inline-block;
}

.rotatewrapper span {
    display: inline-block;
    padding-top: 4%;
    width: 100%;
    color: white;
    font-size: 20px;
}

.mobileoverlaybg {
    background: url("../img/backgrounds/home.jpg") center;
    background-size: auto;

    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
    transform-origin: left top;
    width: 100vh;
    height: 100vw;
    overflow: hidden;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: -1;
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

.backgrounddark {
    position: absolute;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.596);
}


/* ---------- IE OVERLAY ----------- */





/* ---- MediaQ ----- */

@media screen and (min-width: 0px) {
    .navbutton img {
        transform-origin: 18% 20%;
    }
}

@media screen and (min-width: 400px) {
    .navbutton img {
        transform-origin: 23% 20%;
    }
}

@media screen and (min-width: 500px) {
    .navbutton img {
        transform-origin: 36% 35%;
    }
}

@media screen and (min-width: 600px) {
    .navbutton img {
        transform-origin: 50% 45%;
    }
}

@media screen and (min-width: 800px) {
    .navbutton img {
        transform-origin: 50% 51%;
    }
}

@media screen and (min-width: 1000px) {
    .navbutton img {
        transform-origin: 50% 51%;
    }
}

@media screen and (min-width: 1400px) {
    .navbutton img {
        transform-origin: 50% 60%;
    }
}

@media screen and (min-width: 1800px) {
    .navbutton img {
        transform-origin: 50% 80%;
    }
}

@media screen and (min-width: 2100px) {
    .navbutton img {
        transform-origin: 50% 45%;
    }
}

@media screen and (orientation: portrait) {
    #mobileoverlay {
        display: block !important;
    }
}

@media screen and (-ms-high-contrast: active),
(-ms-high-contrast: none) {

    html,
    #ieoverlay,
    body,
    #app {
        overflow: none;
        height: 100vh;
    }

    #mobileoverlay {
        display: none !important;
    }

    #ieoverlay {
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: white;
        z-index: 1000;
    }

    .ieoverlaywrapper {
        position: relative;
        height: 100vh;
        width: 100vw;
        max-width: calc(100vh*1.77);
        max-height: calc(100vw*0.5625);
        margin: auto;
        top: 50%;
        transform: translateY(-50%);
        overflow: hidden;
        font-family: roboto_regular;
        text-align: center;
    }

    .ietextbox {
        position: relative;
        top: 40%;
        transform: translateY(-50%);
    }

    .ieoverlaywrapper img {
        width: 8%;
    }

    .ieoverlaywrapper h5 {
        font-size: 28px;
        padding-bottom: 1%;
    }

    .ieoverlaywrapper p {
        font-size: 17px;
        padding-bottom: 0.5%;
    }

    .ieoverlaywrapper li {
        display: inline-block;
        font-size: 19px;
        padding: 0 0.6%;
    }

    .ieoverlaywrapper ul {
        margin-bottom: 35px;
    }

    .ietextbox a {
        color: #fff;
        text-decoration: none;
        background: #db0812;
        padding: 10px 15px;
    }

    .ietextbox a:hover {
        background: #a80c14;
    }
}