html {
    box-sizing: border-box;
}

* {
    box-sizing: border-box;

    margin: 0px;
    padding: 0px;
    border: 0;

    font-stretch: normal;

    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

*:before {
    box-sizing: border-box;

    margin: 0px;
    padding: 0px;
    border: 0;
}

*:after {
    box-sizing: border-box;

    margin: 0px;
    padding: 0px;
    border: 0;
}

body {
    margin: 0px;
    background-color: #ffffff;
}

svg {
    fill: currentColor;

}

ul
{
    list-style-position: outside;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
}

li
{
    padding-left: 10px;
    padding-bottom: 10px;
}

/*** PRELOADER ***/

@-moz-keyframes APreloaderRotation {
    0% {
        opacity: 1;
        -moz-transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        -moz-transform: rotate(360deg);
    }
}

@-webkit-keyframes APreloaderRotation {
    0% {
        opacity: 1;
        -webkit-transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        -webkit-transform: rotate(360deg);
    }
}

@keyframes APreloaderRotation {
    0% {
        opacity: 1;
        transform: rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: rotate(360deg);
    }
}

.CSite_PreloaderContainer
{
    position: absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    background-color: #ffffff;
}

#m_cSitePreloader
{
    z-index: 500;
}

.CSite_Preloader {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50px;
    margin-top: -50px;
    width: 100px;
    height: 100px;
    opacity: 1;
    -webkit-transition: opacity 0.5s;
    -moz-transition: opacity 0.5s;
    -ms-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
}

.CSite_PreloaderCircleContainer {
    position: absolute;
    left: 0px;
    top: 0px;
    width: 100px;
    height: 100px;
    overflow: hidden;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: linear;
    -moz-animation-name: APreloaderRotation;
    -moz-animation-duration: 2.0s;
    -moz-animation-delay: 0.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: linear;
    -webkit-animation-name: APreloaderRotation;
    -webkit-animation-duration: 2.0s;
    -webkit-animation-delay: 0.0s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: APreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

.CSite_PreloaderCircle {
    position: absolute;
    left: 1px;
    top: 1px;
    width: 98px;
    height: 98px;
    background-color: #00a5e5;
    -moz-border-radius: 50%;
    -webkit-border-radius: 50%;
    border-radius: 50%;
}

.CSite_PreloaderBar {
    position: absolute;
    -webkit-animation-fill-mode: forwards;
    -moz-animation-fill-mode: forwards;
    -ms-animation-fill-mode: forwards;
    -o-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    left: 50%;
    top: 0px;
    width: 50%;
    height: 100%;
    background-color: #ffffff;
    -webkit-transform-origin: 0% 50%;
    -moz-transform-origin: 0% 50%;
    -ms-transform-origin: 0% 50%;
    -o-transform-origin: 0% 50%;
    transform-origin: 0% 50%;
    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease-in;
    -moz-animation-name: APreloaderRotation;
    -moz-animation-duration: 2.0s;
    -moz-animation-delay: 0.0s;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease-in;
    -webkit-animation-name: APreloaderRotation;
    -webkit-animation-duration: 2.0s;
    -webkit-animation-delay: 0.0s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in;
    animation-name: APreloaderRotation;
    animation-duration: 2.0s;
    animation-delay: 0.0s;
}

#m_cSite_PreloaderBar2, #m_cModel_PreloaderBar2 {
    left: 0%;
    -webkit-transform-origin: 100% 50%;
    -moz-transform-origin: 100% 50%;
    -ms-transform-origin: 100% 50%;
    -o-transform-origin: 100% 50%;
    transform-origin: 100% 50%;
    -moz-animation-delay: 0.0s;
    -webkit-animation-delay: 0.0s;
    animation-delay: 0.0s;
    -moz-animation-timing-function: ease-out;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
}

#m_cSite_PreloaderCircleTop, #m_cModel_PreloaderCircleTop {
    left: 5px;
    top: 5px;
    width: 90px;
    height: 90px;
    background-color: #ffffff;
}

/*** PRELOADER ***/


/*
//////////////////////////
Orientation Help
//////////////////////////
*/

.COrientationLayer
{
    position: fixed;

    display: none;

    left:0px;
    top:0px;

    width:100%;
    height:100%;

    z-index: 400;

    background-color: #ffffff;
}

.COrientationPhone
{
    position: absolute;

    left:50%;
    margin-left:-72px;
    top:50%;
    margin-top:-44px;

    width:144px;
    height:82px;

    background-position: 0px 0px;

    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    -moz-animation-name: ae_OrientationPhone_Animation;
    -moz-animation-duration: 6.0s;
    -moz-animation-delay: 0.0s;

    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-name: ae_OrientationPhone_Animation;
    -webkit-animation-duration: 6.0s;
    -webkit-animation-delay: 0.0s;

    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: ae_OrientationPhone_Animation;
    animation-duration: 6.0s;
    animation-delay: 0.0s;
}

.COrientationCross
{
    position: absolute;

    left:50%;
    margin-left:-36px;
    top:50%;
    margin-top:-38px;

    width:72px;
    height:72px;

    background-position: 0px -82px;

    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    -moz-animation-name: ae_OrientationCross_Animation;
    -moz-animation-duration: 6.0s;
    -moz-animation-delay: 0.0s;

    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-name: ae_OrientationCross_Animation;
    -webkit-animation-duration: 6.0s;
    -webkit-animation-delay: 0.0s;

    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: ae_OrientationCross_Animation;
    animation-duration: 6.0s;
    animation-delay: 0.0s;
}

.COrientationCheckmark
{
    position: absolute;

    left:50%;
    margin-left:-36px;
    top:50%;
    margin-top:-36px;

    width:72px;
    height:72px;

    background-position: -72px -82px;

    -moz-animation-iteration-count: infinite;
    -moz-animation-timing-function: ease;
    -moz-animation-name: ae_OrientationCheckmark_Animation;
    -moz-animation-duration: 6.0s;
    -moz-animation-delay: 0.0s;

    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: ease;
    -webkit-animation-name: ae_OrientationCheckmark_Animation;
    -webkit-animation-duration: 6.0s;
    -webkit-animation-delay: 0.0s;

    animation-iteration-count: infinite;
    animation-timing-function: ease;
    animation-name: ae_OrientationCheckmark_Animation;
    animation-duration: 6.0s;
    animation-delay: 0.0s;
}




@-moz-keyframes ae_OrientationPhone_Animation {
    0% 		{ opacity: 1; -moz-transform: rotate(0deg);}
    30% 	{ opacity: 1; -moz-transform: rotate(0deg);}
    50% 	{ opacity: 1; -moz-transform: rotate(90deg);}
    80% 	{ opacity: 1; -moz-transform: rotate(90deg);}
    100% 	{ opacity: 1; -moz-transform: rotate(0deg);}
}

@-webkit-keyframes ae_OrientationPhone_Animation {
    0% 		{ opacity: 1; -webkit-transform: rotate(0deg);}
    30% 	{ opacity: 1; -webkit-transform: rotate(0deg);}
    50% 	{ opacity: 1; -webkit-transform: rotate(90deg);}
    80% 	{ opacity: 1; -webkit-transform: rotate(90deg);}
    100% 	{ opacity: 1; -webkit-transform: rotate(0deg);}
}
@keyframes ae_OrientationPhone_Animation {
    0% 		{ opacity: 1; transform: rotate(0deg);}
    30% 	{ opacity: 1; transform: rotate(0deg);}
    50% 	{ opacity: 1; transform: rotate(90deg);}
    80% 	{ opacity: 1; transform: rotate(90deg);}
    100% 	{ opacity: 1; transform: rotate(0deg);}
}

/***/
@-moz-keyframes ae_OrientationCross_Animation {
    0% 		{ opacity: 0; -moz-transform: scale(0);}
    10% 	{ opacity: 1; -moz-transform: scale(1);}
    30% 	{ opacity: 1; -moz-transform: scale(1);}
    40% 	{ opacity: 0; -moz-transform: scale(0);}
    100% 	{ opacity: 0; -moz-transform: scale(0);}
}

@-webkit-keyframes ae_OrientationCross_Animation {
    0% 		{ opacity: 0; -webkit-transform: scale(0);}
    10% 	{ opacity: 1; -webkit-transform: scale(1);}
    30% 	{ opacity: 1; -webkit-transform: scale(1);}
    40% 	{ opacity: 0; -webkit-transform: scale(0);}
    100% 	{ opacity: 0; -webkit-transform: scale(0);}
}
@keyframes ae_OrientationCross_Animation {
    0% 		{ opacity: 0; transform: scale(0);}
    10% 	{ opacity: 1; transform: scale(1);}
    30% 	{ opacity: 1; transform: scale(1);}
    40% 	{ opacity: 0; transform: scale(0);}
    100% 	{ opacity: 0; transform: scale(0);}
}

/***/

@-moz-keyframes ae_OrientationCheckmark_Animation {
    0% 		{ opacity: 0; -moz-transform: scale(0);}
    40% 	{ opacity: 0; -moz-transform: scale(0);}
    50% 	{ opacity: 1; -moz-transform: scale(1);}
    80% 	{ opacity: 1; -moz-transform: scale(1);}
    90% 	{ opacity: 0; -moz-transform: scale(0);}
    100% 	{ opacity: 0; -moz-transform: scale(0);}
}

@-webkit-keyframes ae_OrientationCheckmark_Animation {
    0% 		{ opacity: 0; -webkit-transform: scale(0);}
    40% 	{ opacity: 0; -webkit-transform: scale(0);}
    50% 	{ opacity: 1; -webkit-transform: scale(1);}
    80% 	{ opacity: 1; -webkit-transform: scale(1);}
    90% 	{ opacity: 0; -webkit-transform: scale(0);}
    100% 	{ opacity: 0; -webkit-transform: scale(0);}
}
@keyframes ae_OrientationCheckmark_Animation {
    0% 		{ opacity: 0; transform: scale(0);}
    40% 	{ opacity: 0; transform: scale(0);}
    50% 	{ opacity: 1; transform: scale(1);}
    80% 	{ opacity: 1; transform: scale(1);}
    90% 	{ opacity: 0; transform: scale(0);}
    100% 	{ opacity: 0; transform: scale(0);}
}

/*
//////////////////////////
MEDIA QUERY
//////////////////////////
*/

@media only screen
and (min-device-width: 320px)
and (max-device-width: 1023px)
and (orientation: landscape)
{
    .COrientationLayer
    {
        display: inline;
    }
}

/*** TYPO ***/

.ABold
{
    font-weight: 600;
}

.CSpritesheet
{
    position: absolute;
    background-image: url("../img/de/site_spritesheet.png");
    background-repeat: no-repeat;
    background-size: 144px 298px;
}

.CContainer
{
    position: absolute;

    left: calc((100% - 1024px) / 2);
    top: 0px;

    width: 1024px;
    height: 800px;

    margin: 0px;
    border: 0px;

    overflow: hidden;
}

.C360Icon
{
    position: absolute;

    display: none;

    right: calc((100% - 1024px) / 2);
    top: 20px;

    width: 84px;
    height: 84px;

    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}


.CSite
{
    position: relative;

    overflow:hidden;

    display: none;
}


.CSection
{
    position: relative;

    padding-left: calc((100% - 1024px) / 2);
    padding-right: calc((100% - 1024px) / 2);

    width: 100%;
}

.ASectionColumnMargin
{
    margin-right: -2px;
}


.CSiteHeader
{
    position: relative;

    width: 100%;

    padding-top: 20px;
}


.CSiteHeadline
{
    position: relative;

    width: 100%;

    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 55px;

    line-height: 42px;

    color: #00a5e5;

    text-align: center;

    padding-top: 30px;
    padding-bottom: 20px;
}


.CSiteSubline
{
    position: relative;

    width: 100%;

    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 26px;

    line-height: 26px;

    color: #333333;

    text-align: center;

    padding-top: 0px;
    padding-bottom: 26px;
}

.CMobileSiteHeadline
{
    position: absolute;

    display: none;

    left: 0px;
    top: 40px;

    width: 100%;

    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 21px;

    line-height: 15px;

    color: #00a5e5;

    text-align: center;

    padding-top: 30px;
    padding-bottom: 20px;
}


.CMobileSiteSubline
{
    position: absolute;

    display: none;

    left: 0px;
    top: 96px;

    width: 80%;

    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;

    line-height: 15px;

    color: #333333;

    text-align: center;

    padding-top: 0px;
    padding-left: 20%;
    padding-bottom: 26px;
}


.CSiteTT
{
    position: relative;

    margin: 0 auto;

    width: 142px;
    height: 46px;
}


/*** MAIN MENU ***/

.CMainMenu
{
    position: relative;

    width: 100%;
    height: 39px;

    background-color: rgba(255, 255, 255, 0.2);

    overflow:hidden;
}

.CMainMenu:before
{
    content: "";

    display: block;

    position: absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 1px;

    background-color: #dadada;
}

.CMainMenu:after
{
    content: "";

    display: block;

    position: absolute;

    left: 0px;
    bottom: 0px;

    width: 100%;
    height: 1px;

    background-color: #999999;
}



.CMainMenuItem
{
    position: relative;

    display: inline-block;

    top: 1px;

    height: 37px;

    background-color: rgb(164, 164, 164);

    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;

    margin-right: 29px;

    padding: 11px;
    padding-left: 20px;
    padding-right: 20px;

    color: #ffffff;

    cursor: pointer;

    -moz-transition: background-color 0.5s ease;
    -webkit-transition: background-color 0.5s ease;
    transition: background-color 0.5s ease;

    z-index: 49;
}

#m_cMainMenuItem1
{
    background-color: rgb(164, 164, 164);
}

#m_cMainMenuItem2
{
    background-color: rgb(185, 185, 185);
}

#m_cMainMenuItem3
{
    background-color: rgb(203, 203, 203);
}

#m_cMainMenuItem4
{
    background-color: rgb(203, 203, 203);
}

.AActive
{
    background-color: rgb(0, 165, 229) !important;
}

.CMainMenuItem:hover, #m_cMainMenuItem1:hover,  #m_cMainMenuItem2:hover,  #m_cMainMenuItem3:hover,  #m_cMainMenuItem4:hover
{
    background-color: rgb(0, 165, 229);
}

.CMainMenuItem span
{
    position: relative;

    z-index: 50;

    display: block;
}



.CMainMenuItem:before
{
    content: "";

    display: block;

    position: absolute;

    left: -17px;
    top: 0px;

    width: 37px;
    height: 37px;

    background-color: inherit;

    -moz-transform: skew(-40deg);
    -webkit-transform: skew(-40deg);
    transform: skew(-40deg);

    z-index: 49;
}

.CMainMenuItem:after
{
    content: "";

    position: absolute;

    right: -17px;
    top: 0px;

    width: 37px;
    height: 37px;

    background-color: inherit;

    -moz-transform: skew(-40deg);
    -webkit-transform: skew(-40deg);
    transform: skew(-40deg);

    z-index: 49;
}

.COverlayColoredSpacer
{
    position: relative;

    width: 100%;
    height: 2px;

    margin-top: 20px;
    margin-bottom: 20px;

    background-color: #cb2030;

}

.CColoredSpacer
{
    position: relative;

    width: 100%;
    height: 2px;

    background-color: #cb2030;
}

.CColoredSpacerTall
{
    position: relative;

    width: 100%;
    height: 6px;

    background-color: #cb2030;
}

/*** HOUSE ***/

.CHouseSpacer
{
    position: relative;

    width: 100%;

    height: 800px;
}


/*** INTERFACES ***/



.IMobileScreenHeight
{

}

.IMobileOverlayHeight
{

}

.IScrollSticky
{

}

.IScrollStickyBottom
{

}


/*** ABSTRACTS ***/

.ABackgroundBlend
{
    background-color: rgba(255, 255, 255, 0.5)
}

.AFloatRight
{
    float: right;
}

.APrimaryColor
{
    position: relative;

    background-color: #cb2030;
}

.ASecondaryColor
{
    position: relative;

    background-color: #60aaec;
}

.A66Width
{
    position: absolute;

    display: inline-block;

    width: 66%;
    height: 100%;
}

.A33Width
{
    position: absolute;

    display: inline-block;

    right: 0px;

    width: 34%;
    height: 100%;
}


/*** LANGUAGE SELECTOR ***/


.CSiteLanguageSelector
{
    position: absolute;

    cursor: pointer;

    right: 0px;
    top: 20px;

    min-width: 100px;
    height: 30px;

    text-align: left;

    overflow: hidden;

    color: #999999;
    background-color: #ffffff;

    -webkit-transition-property: background-color, color;
    -moz-transition-property: background-color, color;
    transition-property: background-color, color;

    -webkit-transition-duration: 0.5s, 0.5s;
    -moz-transition-duration: 0.5s, 0.5s;
    transition-duration: 0.5s, 0.5s;
}

.CSiteLanguageSelectorActive
{
    color: #ffffff;
    background-color: #cccccc;

    height: auto;
}

.CSiteLanguageSelector:after
{
    position: absolute;

    content: url("../img/generic/icon_dropdown.svg");

    right: 5px;
    top: 5px;

    width: 20px;
    height: 20px;
}

.CSiteLanguageItem
{
    position: relative;

    cursor: pointer;

    width: 100%;
    height: 30px;

    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 20px;

    color: inherit;

    padding: 5px;
    padding-right: 35px;
}

.CSiteLanguageItem:hover
{
    color: #333333;
}

.CSiteLanguageFlag
{
    position: relative;

    vertical-align: top;

    display: inline-block;

    width: 20px;
    height: 20px;

    margin-right: 10px;
}

.CSiteLanguageSelectionContainer
{
    position: relative;

    -webkit-transition: -webkit-transform 0.3s;
    -moz-transition: -moz-transform 0.3s;
    -ms-transition: -ms-transform 0.3s;
    -o-transition: -o-transform 0.3s;
    transition: transform 0.3s;
}


/*** GENERAL ***/

.CSectionHeadline
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 36px;

    line-height: 36px;

    padding-top: 20px;

    color: #00a5e5;
}

.CSectionHeader
{
    position: relative;

    width: 100%;

    padding-bottom: 20px;
}

.CSectionCopy
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;
}

/*** Section Columns ***/

.CSectionColumn
{
    position: relative;

    display: inline-block;
    vertical-align: top;

    width: calc((100% - 56px) / 3);
    min-height: 100px;

    padding-bottom: 20px;

    /* background-color: rgba(255, 0, 0, 0.5); */
}

.CSectionColumnPDFContainer
{
    position: relative;

    width: 100%;
    min-height: 181px;

    padding: 20px;
    padding-bottom: 10px;

    overflow: hidden;

    background-color: #efeeee;
}

.CSectionColumnPDFImage
{
    position: absolute;

    display: block;

    left: 21px;
    top: 20px;

    width: 98px;
    height: 140px;
}

.CSectionColumnPDFImage img
{
    position: relative;

    width: 100%;
    height: auto;
}



.CSectionColumnSpacer
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 100%;
}



.CSectionColumnSpacer2Grid
{
    position: relative;

    display: none;

    width: 20px;
    height: 100%;
}

.CSectionColumnHero
{
    position: relative;

    width: 100%;

}

.CSectionColumnHero img
{
    position: relative;

    width: 100%;
    height: auto;
}

.CSectionColumnHero video
{
    position: relative;

    width: 100%;
    height: auto;
}

.CSectionColumnHeadline
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;

    font-size: 15px;
    line-height: 22px;

    padding-top: 20px;

    color: #00a5e5;
}

.CSectionColumnCopy
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;
}

.CSectionColumnButton
{
    cursor: pointer;

    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    color: #000000;

    text-decoration: none;
}

.CSectionColumnButton:active
{
    text-decoration: none;
}

.CSectionColumnButton:hover
{
    text-decoration: none;
}

.CSectionColumnButton:visited
{
    text-decoration: none;
}

/*** FORM ***/

.CSectionContactForm
{
    position: relative;

    width: 100%;

    padding: 26px;
    padding-top: 40px;

    background-color: #f5f5f5;


}

.CSectionContactFormHeadline
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;
}

.CSectionContactFormCopy
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;
}

.CSectionContactFormButton
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;

    cursor: pointer;

    vertical-align: center;
}

.CSectionContactFormButton:before
{
    content: url("../img/generic/icon_mail.svg");

    position: relative;
    display: inline-block;

    left: 0px;
    top: 3px;

    padding-right: 10px;

    width: 36px;
    height: 26px;
}


/*** FOOTER ***/

.CSectionFooter
{
    position: relative;

    width: 100%;

    padding: 26px;

    min-height: 40px;

    background-color: #ffffff;
}


.CSectionFooterItem
{
    position: relative;

    display: inline-block;

    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;
    font-size: 15px;
}


.CSectionFooterSocialMediaIcon
{
    position: relative;

    width: 14px;
    height: 14px;

    display: inline-block;
}

.CSectionFooterNav
{
    position: relative;

    width: 100%;

    text-align: left;
}

.CSectionFooterNavItem
{
    position: relative;

    display: inline-block;



    color: #00a5e5;

    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    font-stretch: normal;

    text-decoration: none;

    padding-right: 20px;

}



.CSectionFooterNavItem:active
{
    color: #00a5e5;
    text-decoration: none;
}

.CSectionFooterNavItem:hover
{
    color: #00a5e5;
    text-decoration: underline;
}

.CSectionFooterNavItem:visited
{
    color: #00a5e5;
    text-decoration: none;
}



/*** SPACER ***/

.CSectionSpacer20
{
    position: relative;

    width: 100%;
    height: 20px;
}

.CSectionSpacer50
{
    position: relative;

    width: 100%;
    height: 50px;
}

.CSectionSpacer70
{
    position: relative;

    width: 100%;
    height: 70px;
}

/*** CONTENT OVERLAY ***/

.CContentOverlay
{
    position: relative;

    width: 100%;

    min-height: 798px;;

    padding-left: calc((100% - 340px) / 2);
    padding-right: calc((100% - 340px) / 2);
    padding-top: 70px;
    padding-bottom: 70px;

    background-color: rgba(255, 255, 255, 0);

    -webkit-transition: background-color 0.5s;
    -moz-transition: background-color 0.5s;
    -ms-transition: background-color 0.5s;
    -o-transition: background-color 0.5s;
    transition: background-color 0.5s;
}

.CContentOverlayContainer
{
    position: relative;

    width: 100%;
    height: 600px;

    overflow-x: hidden;
    overflow-y: auto;

    display: none;

    background-color: #efeeee;
}



.AClickable
{
    cursor: pointer;
}

.AGrabbable
{
    cursor: move; /* fallback if grab cursor is unsupported */
    cursor: grab;
    cursor: -moz-grab;
    cursor: -webkit-grab;
}

.AGrabbable:active {
    cursor: grabbing;
    cursor: -moz-grabbing;
    cursor: -webkit-grabbing;
}

.COverlayCloseButton
{
    cursor: pointer;

    background-image: url("../img/generic/icon_close.svg");

    position: absolute;

    display: none;

    right: calc((100% - 428px) / 2);
    top: 70px;

    width: 34px;
    height: 34px;
}

.CScrollContainer
{
    position: relative;

    width: 100%;
    height: 600px;

    overflow-x: hidden;
}



.COverlayHero
{
    position: relative;

    width: 100%;

}

.COverlayHero img
{
    position: relative;

    width: 100%;
    height: auto;
}

.COverlayHero video
{
    position: relative;

    width: 100%;
    height: auto;
}

.COverlayTextContainer
{
    position: relative;

    padding: 20px;
}





.COverlayInTextLink
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-stretch: normal;

    color: #00a5e5;

    text-decoration: none;
}

.COverlayInTextLink
{
    color: #00a5e5;
    text-decoration: none;
}

.COverlayInTextLink
{
    color: #00a5e5;
    text-decoration: underline;
}

.COverlayInTextLink
{
    color: #00a5e5;
    text-decoration: none;
}

.COverlayTextContainer h1
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    color: #00a5e5;
}

.COverlayTextContainer h2
{
    font-family: proxima-nova, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;

    line-height: 22px;

    color: #00a5e5;
}

.COverlayTextContainer h3
{
    font-family: proxima-nova, sans-serif;
    font-weight: 300;
    font-style: normal;
    font-size: 15px;
    text-transform: uppercase;

    line-height: 22px;

    color: #00a5e5;
}

.COverlayTextContainer p
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;
}



.COverlayTextContainer ul
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;

    list-style-position: outside;
    padding-left: 20px;
    padding-right: 20px;
    padding-top: 20px;
    padding-bottom: 10px;
}

.COverlayTextContainer li
{
    padding-left: 10px;
    padding-bottom: 10px;
}

.COverlayHeadline
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    padding: 20px;
    padding-bottom: 0px;

    color: #00a5e5;
}

.COverlayExpand
{
    cursor: pointer;

    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    padding: 0px;
}

.COverlayCopy
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;

    font-size: 15px;
    line-height: 22px;

    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 20px;
}

.COverlaySpacer
{
    position: relative;

    margin: 20px;
    margin-top: 0px;

    width: calc(100% - 40px);
    height: 1px;

    background-color: #999999;
}

.COverlaySpacerClear20
{
    position: relative;

    width: 100%;
    height: 20px;
}

.COverlaySpacerTop
{
    position: relative;

    margin: 20px;
    margin-bottom: 0px;

    width: calc(100% - 40px);
    height: 1px;

    background-color: #999999;
}

.COverlaySpacerBoth
{
    position: relative;

    margin-top: 20px;
    margin-bottom: 20px;

    width: 100%;
    height: 1px;

    background-color: #999999;
}

/*** PDF CONTAINER ***/

.COverlayPDFContainer
{
    position: relative;

    width: 100%;
    min-height: 140px;
}

.COverlayPDFImage
{
    position: absolute;

    display: block;

    left: 0px;
    top: 0px;

    width: 98px;
    height: 140px;
}

.COverlayPDFImage img
{
    position: relative;

    width: 100%;
    height: auto;
}

.COverlayPDFTypoContainer
{
    position: relative;

    display: inline-block;

    width: 100%;

    padding-left: 120px;
    padding-top: 5px;
    padding-bottom: 20px;
}

.COverlayPDFTitel
{
    font-family: proxima-nova, sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    color: #00a5e5;
}

.COverlayPDFSubtitel
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    color: #333333;
}

.COverlayPDFSize
{
    font-family: proxima-nova, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    color: #999999;
}

.COverlayPDFDownload
{
    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 15px;

    line-height: 22px;

    color: #333333;

    text-decoration: none;
}

.COverlayPDFDownload:hover
{
    text-decoration: underline;
}

.COverlayPDFDownload:after
{
    content: url("../img/generic/icon_download.svg");

    position: relative;
    display: inline-block;

    left: 0px;
    top: 0px;

    padding-left: 10px;

    width: 30px;
    height: 30px;
}

.CDownloadIcon
{

}


/*** TOOLTIPP ***/

.CHUD
{
    position: absolute;

    left: 0px;
    top: 0px;

    width: 100%;
    height: 100%;

    pointer-events: none;

    perspective: 800px;

    overflow: hidden;
}

.CToolTip
{
    position: absolute;

    box-sizing: border-box;

    padding-top: 16px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;

    background-color: rgba(255, 255, 255, 0.9);

    color: #00a5e5;

    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;

    font-size: 18px;
    line-height: 22px;

    -webkit-transform-origin: 50% 0px 0px;
    -moz-transform-origin: 50% 0px 0px;
    -ms-transform-origin: 50% 0px 0px;
    -o-transform-origin: 50% 0px 0px;
    transform-origin: 50% 0px 0px;


    -moz-animation-name: CModelViewerAnimationIn;
    -moz-animation-duration: 0.5s;
    -moz-animation-delay: 0.0s;
    -moz-animation-fill-mode: forwards;

    -webkit-animation-name: CModelViewerAnimationIn;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-delay: 0.0s;
    -webkit-animation-fill-mode: forwards;

    animation-name: CModelViewerAnimationIn;
    animation-duration: 0.5s;
    animation-delay: 0.0s;
    animation-fill-mode: forwards;
}

@-moz-keyframes CModelViewerAnimationIn {
    0% 		{ opacity: 0; -moz-transform: translateY(100px);}
    100% 	{ opacity: 1; -moz-transform: translateY(0px);}
}

@-webkit-keyframes CModelViewerAnimationIn {
    0% 		{ opacity: 0; -webkit-transform: translateY(100px);}
    100% 	{ opacity: 1; -webkit-transform: translateY(0px);}
}
@keyframes CModelViewerAnimationIn {
    0% 		{ opacity: 0; transform: translateY(100px);}
    100% 	{ opacity: 1; transform: translateY(0px);}
}

/*** Switch area ***/


.CNavigateUp
{
    position: absolute;

    display: none;

    left: 50%;
    margin-left: -90px;
    top: 20px;

    width: 180px;

    cursor: pointer;

    background-color: #00a5e5;

    box-sizing: border-box;

    padding-top: 16px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;

    color: #ffffff;

    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;

    font-size: 18px;
    line-height: 22px;
}

.CNavigateUp:before
{
    content: url("../img/generic/icon_arrow_up.svg");

    position: absolute;

    width: 40px;
    height: 20px;

    left: 70px;
    top: -20px;
}

.CNavigateDown
{
    position: absolute;

    display: none;

    left: 50%;
    margin-left: -90px;
    bottom: 20px;

    width: 180px;

    cursor: pointer;

    background-color: #00a5e5;

    box-sizing: border-box;

    padding-top: 16px;
    padding-bottom: 10px;
    padding-left: 20px;
    padding-right: 20px;
    white-space: nowrap;

    color: #ffffff;

    font-family: proxima-nova-condensed, sans-serif;
    font-weight: 700;
    font-style: normal;
    text-transform: uppercase;
    text-align: center;

    font-size: 18px;
    line-height: 22px;


}

.CNavigateDown:after
{
    content: url("../img/generic/icon_arrow_down.svg");

    position: absolute;

    width: 40px;
    height: 20px;

    left: 70px;
    bottom: -20px;
}


/*** MEDIA QUERYS ***/

@media (max-width: 1043px)
{
    .CSection
    {
        position: relative;

        padding-left: 20px;
        padding-right: 20px;

        width: 100%;
    }

    .C360Icon
    {
        right: 20px;
        top: auto;
        bottom: 20px;

    }

    .CSectionColumn
    {
        position: relative;

        display: inline-block;
        vertical-align: top;

        width: calc((100% - 56px) / 2);
        min-height: 100px;

        /* background-color: rgba(255, 0, 0, 0.5); */
    }

    .CSectionColumnSpacer2Grid
    {
        display: inline-block;
    }
}

@media (min-height: 667px) and (max-width: 420px)
{
    .CMobileSiteHeadline
    {
        display: block;

        top: 50px;

        font-size: 24px;
    }


    .CMobileSiteSubline
    {
        display: block;

        top: 106px;

        font-size: 14px;
    }

    .C360Icon
    {
        right: 20px;
        top: auto;
        bottom: 20px;

        width: 42px;
        height: 42px;

    }
}

@media (min-height: 736px) and (max-width: 420px)
{
    .CMobileSiteHeadline
    {
        display: block;

        top: 50px;

        font-size: 28px;
        line-height: 32px;
    }


    .CMobileSiteSubline
    {
        display: block;

        top: 116px;

        font-size: 18px;
        line-height: 22px;
    }
}

@media (max-width: 479px)
{

    .CNavigateUp
    {
        top: 80px;
    }

    #m_cSection1
    {
        position: fixed;

        z-index: 150;

        background-color: #ffffff;
    }

    #m_cSection2
    {
        padding-left: 0px;
        padding-right: 0px;
    }

    .CSiteHeader
    {
        position: relative;

        width: 100%;
        height: 62px;

        padding-top: 20px;
    }


    .CSiteTT
    {
        position: absolute;

        margin: 0;

        left: 0px;
        top: 18px;

        width: 92px;
        height: 25px;
    }


    .CSiteHeadline
    {
        display: none;
    }


    .CSiteSubline
    {
        display: none;
    }


    .CMobileSiteHeadline
    {
        display: block;
    }


    .CMobileSiteSubline
    {
        display: block;
    }


    .CMainMenu
    {
        position: absolute;

        left: 0px;
        top: 0px;

        width: 100%;
        height: 62px;

        background-color: rgba(255, 255, 255, 0.2);

        padding-top: 61px;

        -moz-transition: height 0.5s ease;
        -webkit-transition: height 0.5s ease;
        transition: height 0.5s ease;
    }

    .CMainMenuOpen
    {
        height: auto;
    }

    .CMainMenu:before
    {
        display: none;
    }

    .CMainMenu:after
    {
        content: url("../img/generic/icon_menu_mobile.svg");

        display: block;

        position: absolute;

        left: auto;
        right: 0px;
        top: 0px;

        width: 62px;
        height: 62px;

        background-color: rgb(255, 255, 255);
    }

    .CMainMenuItem
    {
        position: relative;

        display: inline-block;

        width: 100%;
        height: 37px;

        background-color: rgb(164, 164, 164);

        margin: 0px;

        padding: 11px;
        padding-left: 20px;
        padding-right: 20px;
    }

    .CSiteLanguageSelector
    {
        right: 40px;
        top: 17px;

        z-index: 151;
    }

    .CContentOverlay
    {
        min-height: 400px;

        padding-left: 20px;
        padding-right: 20px;
    }

    .CContentOverlayContainer
    {
        top: 40px;
    }

    .COverlayCloseButton
    {
        left: 20px;
        top: 78px;

        width: 20px;
        height: 20px;
    }

    .CContainer
    {
        left: 0px;
        top: 0px;

        width: 100%;
        height: 100%;
    }



    .CSectionColumn
    {
        display: inline-block;
        vertical-align: top;

        width: 100%;
    }
}


/*** DEBUG ***/

.CEditorNote
{
    color: #660000;
}
