/* Fonts */
@font-face {
    font-family: 'Good Times';
    src: url('../fonts/GoodTimes-Regular.eot');
    src: url('../fonts/GoodTimes-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/GoodTimes-Regular.woff2') format('woff2'),
        url('../fonts/GoodTimes-Regular.woff') format('woff'),
        url('../fonts/GoodTimes-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.eot');
    src: url('../fonts/Roboto-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/Roboto-Regular.woff2') format('woff2'),
        url('../fonts/Roboto-Regular.woff') format('woff'),
        url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

* {
   -webkit-appearance: none;
   -moz-appearance:    none;
   appearance:         none;
}

html, body {
  width: 100%;
  height: 100%;
  margin: 0px;
  padding: 0px;
}
body {
  background-color: #000;
}
a {
  color: #fff !important;
  text-decoration: inherit;
}
#mainDiv {
  height: 100%;
  /*background-image: url(../img/backgrounds/bg02.jpg);
  background-repeat: no-repeat;*/
}
.outerBox {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.outerBoxFluid {
  width: 100%;
}
.headLogo {
  height: 40px;
  margin-top: 5px;
  background-image: url(../img/logo_white.svg);
  background-repeat: no-repeat;
  background-position: center;
}
.threebar {
  cursor: pointer;
  margin-right: 10px;
}
.threebar .bar {
  width: 20px;
  height: 1px;
  background: #fff;
  margin-bottom: 5px;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
.threebar .bar:nth-child(1) {
  transform-origin: 50% !important;
}
.threebar .bar:nth-child(2) {
  transform-origin: 50% !important;
}
.threebar .bar:nth-child(3) {
  margin-bottom: 0px;
}

.cross .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg) !important;
}
.cross .bar:nth-child(2) {
  opacity: 0 !important;
  margin-left: -1000%;
}
.cross .bar:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg) !important;
}
#nav_headline {
  z-index: 1000;
  height: 50px;
}
#nav_footline, #nav_footline_mobile {
  z-index: 1000;
}
#nav_actionElms .actElm {
  width: 35px;
  height: 35px;
  -webkit-transition: all 1s ease-out;
  -moz-transition: all 1s ease-out;
  -o-transition: all 1s ease-out;
  transition: all 1s ease-out;
}

#nav_scrollElm {
  bottom: 0px;
  position: fixed;
  text-align: center;
}
#nav_scrollElm .line {
  width: 1px;
  height: 50px;
  margin: 15px auto 0px auto;
  background-color: white;
  overflow: hidden;
}

#nav_scrollElm .dot {
  position: relative;
  width: 25px;
  height: 80px;
  margin-left: -12px;
  background: #ffffff; /* Old browsers */
  background: -moz-linear-gradient(top,  #ffffff 0%, #ffffff 0%, #000000 50%, #ffffff 100%, #ffffff 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(top,  #ffffff 0%,#ffffff 0%,#000000 50%,#ffffff 100%,#ffffff 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom,  #ffffff 0%,#ffffff 0%,#000000 50%,#ffffff 100%,#ffffff 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 ); /* IE6-9 */
}

#mainMenu {
  display: none;
  opacity: 0.01;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  z-index: 999;
  white-space: nowrap;

  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#mainMenu.active {
  display: flex;
  opacity: 1;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}

#mainMenu .leftRow {
  ;
}
#mainMenu .leftRow .active {
  color: #E4002B;
}
#mainMenu .rightRow {
  color: #FFF !important;
  max-height: 0px;
  overflow: hidden;
  -webkit-transition: all 0.5s ease-out;
  -moz-transition: all 0.5s ease-out;
  -o-transition: all 0.5s ease-out;
  transition: all 0.5s ease-out;
}
#mainMenu .rightRow div:first-child {
  margin-top: 0px;
}
#mainMenu .rightRow.active {
  max-height: 500px;
  -webkit-transition: all 0.5s ease-out 0.5s;
  -moz-transition: all 0.5s ease-out 0.5s;
  -o-transition: all 0.5s ease-out 0.5s;
  transition: all 0.5s ease-out 0.5s;
}
#mainMenu .rightRow .active::before {
  width: 10px;
  height: 3px;
  color: #E4002B;
  content: "—";
}
#mainMenu .active .expandIcon {
  display: none;
}
#mainMenu .active .reduceIcon {
  display: inline-block;
}
#mainMenu .searchField::before {
  width: 10px;
  height: 3px;
  color: #E4002B;
  content: "—";
}
#mainMenu [data-clickaction="mainMenuLeft"] {
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}
#mainMenu [data-clickaction="mainMenuLeft"].active {
  margin-left: 25px;
  -webkit-transition: all 0.25s ease-out;
  -moz-transition: all 0.25s ease-out;
  -o-transition: all 0.25s ease-out;
  transition: all 0.25s ease-out;
}

#lastLineOnPage {
  /*position: relative;*/
  z-index: 1005;
}

.bg-twingo {
  background-image: url(../img/twingo.png)
}

/* Special Link with Red Circle */
.redRoundCircle {
  fill: transparent;
  stroke: red;
  stroke-width: 1;
  /*stroke-dasharray: 190;
  stroke-dashoffset: 150%;*/
  stroke-dasharray: 250;
  stroke-dashoffset: 970;
  transform: rotate(145deg) translateX(-25%);
  transform-origin: 40% 55%;
}
.redRoundCircle:hover .circle {
  animation: redRoundCircleAnimationFrames 2s linear infinite;

}
.redRoundCircle polygon {
  transform: rotate(-145deg);
  transform-origin: 50% 50%;
}
.redRoundAnimation .circle {
  fill: transparent;
  stroke: red;
  stroke-width: 1;
  stroke-dasharray: 250;
  stroke-dashoffset: 1000;
  animation: redRoundCircleAnimationFrames 10s linear infinite;
}
.redRoundAnimation .circle2 {
  stroke: red;
  stroke-width: 0;
}
@keyframes redRoundCircleAnimationFrames {
  0% {
    stroke-dashoffset: 970;
  }
  50% {
    stroke-dashoffset: 850;
  }
  100% {
    stroke-dashoffset: 970;
  }
}

/* Special Rotation Circle outer of dot */
.redRoundCircle2 {
  fill: transparent;
}
.redRoundCircle2:hover {
  stroke: red;
  stroke-width: 1;
  stroke-dasharray: 250;
  stroke-dashoffset: 0;
  animation: redRoundCircle2AnimationFrames 10s linear infinite;
}
.redRoundCircle2:hover .circle {
  fill: transparent;
  stroke: red;
  stroke-width: 1;
  stroke-dasharray: 250;
  stroke-dashoffset: 1000;
  animation: redRoundCircle2AnimationFrames 10s linear infinite;
}
.redRoundCircle2:hover .circle2 {
  fill: red;
}
@keyframes redRoundCircle2AnimationFrames {
  to {
    stroke-dashoffset: 0;
  }
}


#nav_speedometer {
  position: fixed;
  left: -80px;
  top: 50%;
  margin-top: -40px;
  color: white;
  width: 230px;
  height: 60px;
  text-transform: uppercase;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  transform: rotate(-90deg);
  z-index: 1005;
}
#nav_speedometer div {
  margin-right:20px;
  width: 120px;
}
#nav_speedometer div:last-child {
  margin-right: 0px;
}
#nav_speedometer .line {
  background-color: #fff;
  width: 80px;
  height: 1px;
}
#nav_speedometer .imgElm {
  height: 50px;
  width: 50px;
  transform: rotate(90deg);
  /*background-image: url(../img/tachoLines.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;*/
}
#nav_speedometer .note {
  letter-spacing: 2px;
  font-weight: normal;
  font-size: 14px;
}
#nav_speedometer #speedometerArrow {
  transform: rotate(-30deg);
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#nav_speedometer #speedometerArrow.active {
  transform: rotate(145deg);
  -webkit-transition: all 1.5s ease;
  -moz-transition: all 1.5s ease;
  -o-transition: all 1.5s ease;
  transition: all 1.5s ease;
}
#nav_speedometer #speedometerGearOuter {
  transform-origin: 50% 50%;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
#nav_speedometer #speedometerGearOuter.active {
  transform: scale(0);
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
