@charset "utf-8";

:root {
  --mmBlack: rgba(20,20,20,1.0);
  --mmYellow: rgba(254,237,1,1.0);
  --mmWhite: rgba(255,255,255,1.0);
  --mmGrey: rgba(200,200,200,1.0);
  --mmLiteGrey: rgba(210,210,210,1.0);
  --mmLiteBlack: rgba(20,20,20,0.97);
  --mmDGrey: rgba(60,60,60,0.97);
  --Yellow: rgba(255,255,0,1.0);
}


* {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  border:0;
  border-spacing:0px;
  border-collapse:collapse;
  box-sizing: border-box;
  font-weight: normal;
  //appearance: none;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 16px;
    font: inherit;
    vertical-align: baseline;
	  appearance: none;
    line-height: 1.3;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
  line-height: 1;
}

ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
	display: inline-table;
}

.selectable tr:hover td{
  background: var(--mmYellow);
}

th {
  background-color: var(--mmYellow);
  font-weight: bold;
  color: var(--mmBlack);
  padding: 5px;
}
td{
  padding: 5px;
}

tr:nth-child(even) {background-color: var(--mmBlack);}
tr:nth-child(odd) {background-color: var(--mmDGrey);}

.dotransition{
  transition-property: all;
  transition-duration: 0.2s, 0.2s;
  transition-timing-function: ease-in-out, ease-in-out;
  transition-delay: 0s, 0s;
}

a{
  border: none;
  outline:none;
  text-decoration: Shorthand wavy var(--mmYellow); 
  text-shadow: 1px 1px 2px var(--mmLiteGray);
  font-style: oblique;
}

a:visited,a:link,a:active { 
  text-decoration: Shorthand wavy var(--mmYellow);
  color: var(--mmLiteGrey);
  text-shadow: 1px 1px 1px var(--mmLiteGray); 
  font-style: oblique;
}


::-webkit-input-placeholder { font-weight: normal;color: #fff; }
::-moz-placeholder { font-weight: normal;color: #fff; } /* firefox 19+ */
:-ms-input-placeholder { font-weight: normal;color: #fff; } /* ie */
input:-moz-placeholder { font-weight: normal;color: #fff; }  

div{
  box-sizing: border-box;
}

button, input, optgroup, select, textarea, .textarea{
  box-sizing: border-box;
  font-family: inherit;
  font-style: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  font-size-adjust: inherit;
  font-stretch: inherit;
  font-feature-settings: inherit;
  font-language-override: inherit;
  font-kerning: inherit;
  font-synthesis: inherit;
  font-variant-alternates: inherit;
  font-variant-caps: inherit;
  font-variant-east-asian: inherit;
  font-variant-ligatures: inherit;
  font-variant-numeric: inherit;
  font-variant-position: inherit;
  color: inherit;
  margin-top: 0px;
  margin-right: 0px;
  margin-bottom: 0px;
  margin-left: 0px;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border-radius: 0;
}

input, button{
  line-height: normal;
}

input[type="button"],button{
  padding:5px;
  cursor: pointer;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  border: 1px;
  background-color: var(--mmBlack);
  margin: 3px; 
  color: var(--mmGrey);
}


select, textarea, .textarea, input:not([type]), input[type="text"], input[type="password"], input[type="datetime"], input[type="datetime-local"], input[type="date"], input[type="month"], input[type="time"], input[type="week"], input[type="number"], input[type="email"], input[type="url"], input[type="search"], input[type="tel"], input[type="color"]{
  color: #fff;
  background: var(--mmDGrey);
}

input:not([type="radio"]):not([type="checkbox"]), select{
  vertical-align: middle;
}

select:focus, textarea:focus, .textarea:focus, input:focus:not([type]), input[type="text"]:focus, input[type="password"]:focus, input[type="datetime"]:focus, input[type="datetime-local"]:focus, input[type="date"]:focus, input[type="month"]:focus, input[type="time"]:focus, input[type="week"]:focus, input[type="number"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="search"]:focus, input[type="tel"]:focus, input[type="color"]:focus{
  color: #fff;
  background: var(--mmDGrey);
}

button:disabled, input:disabled, optgroup:disabled, select:disabled, textarea:disabled{
  background: none;
  color:#ababab;
  background-color: #fff;
}

textarea{
	white-space: pre;
	overflow-wrap: normal;
	overflow-x: scroll;
}

.noDisabled:disabled{
  background: none;
  color:#000;
  background-color: #fff;
}

button[disabled]:hover{
  background: none ;
  background-color: #fff;
}


html{
  width:100%;
  height:100%;
}

body{
  font-family: Arial, sans-serif;
  color: #fff;
  background: var(--mmBlack);
  font-size: 16px; 
  -webkit-transition: font-size .3s;
  transition: all 0.5s ease-out;
  transition: font-size .3s;
  width:100%;
  height:100%;
  scrollbar-color: var(--mmYellow) var(--mmBlack);
}

::-webkit-scrollbar {
    width: 1em;
}
 
::-webkit-scrollbar-track{
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    background: var(--mmBlack);
}
 
::-webkit-scrollbar-thumb {
  background-color: var(--mmYellow);
  outline: 1px solid var(--mmYellow);
}

@media only screen and (min-width:720px) and (max-width:1024px) {
      body { font-size: 2.8vw }
}

@media only screen and (min-width:1025px) {
      body { font-size: 0.8vw }
}

h1 {
  display: block;
  font-size: 2em;
  margin-top: 1.2em;
  font-weight: bold;
}

h2 {
  display: block;
  font-size: 1.3em;
  margin-top: 1.0em;
  font-weight: bold;
}

h3 {
  display: block;
  font-size: 1.1em;
  margin-top: 0.9em;
  font-weight: bold;
}

table{
  font-size: 1.1rem;
}

label {
  display: inline-block; 
  min-width: 12rem;
  text-align: right;
  padding-right: 5px;
}

.lightbox .lb-image{
  border-color: #000 !important;
}

.lb-outerContainer{
  background-color: #000 !important;
}

.flex-box {
  display: flex;
  flex-flow: row;
  width: 100%;
}

.flex-box .fbrow{
  flex: 1 1 auto;
  text-align: left;
}

.box {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.box .row .header {
  flex: 0 0 auto;
  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.box .row .menu {
  flex: 1 1 auto;
  /* The above is shorthand for:
  flex-grow: 0,
  flex-shrink: 1,
  flex-basis: auto
  */
}

.box .row.content {
  flex: 1 1 auto;
}

.box .row.footer {
  flex: 0 0 20px;
}

#x_head{
  display: flex;
  font-size: 1.2vw;
  color: var(--mmWhite);
  vertical-align: middle;
  text-align:left;
  background-color: var(--mmBlack);
  background-image: linear-gradient(to right, var(--mmBlack) -10%, var(--mmYellow) 80%);
  padding: 3px;
  padding-left: 5px;
  align-items:center;
}

#x_menu{
  font-size: 1.0em;
  color: var(--mmWhite);
  vertical-align: middle;
  text-align:left;
  padding-left: 5px;
  padding-top: 3px;
  display:flex;
  align-items:center;
  transition: top 0.3s;
  justify-content: space-between;
  
  position: fixed;
  margin-right: 20px;
  background-color: var(--mmBlack);
  z-index:999;
}

#x_menu_marken{
  
}

.menu * a,.menu * a:visited,.menu > a:link,.menu > a:active {
  text-decoration: none; 
  color: var(--mmBlack); 
}
.menu * a:hover {
  text-decoration: none; 
  color: var(--mmWhite); 
}

.menu * a:hover > div {
  text-decoration: none; 
  color: var(--mmWhite); 
}

#x_dataBG{
  padding: 0px;
  background: var(--mmBlack);
  min-height:80%;
}

#x_data{
  padding-left: 2%;
  text-align: center;
  vertical-align: bottom;
  background: url(/images/logo.png) no-repeat center center;
  background-size: 25% auto;
  text-align:justify;
  height:100%;
}

#data{
  opacity: 0.98;
  height: 100%;
  background: var(--mmBlack);
  color: var(--mmWhite);
  padding: 0px;
  font-size: 1.0rem;
  text-align:justify;
  overflow: auto;
  padding-right: 8px;
}

#x_foot{
  color: var(--mmBlack);
  vertical-align: middle;
  text-align:left;
  padding-left: 5px;
  padding-right: 5px;
  align-items:center;
  background-position: center center;
  background-repeat: no-repeat;
  word-spacing: 1.1rem;
  background-color: var(--mmBlack);
  background-image: url(/images/footerlogo.png),linear-gradient(to right, var(--mmYellow) 0%, var(--mmBlack) 110%);
  background-size: auto 99%;
}

#x_foot > a{
  border: none;
  outline:none;
}

#x_foot>a:visited,#x_foot>a:link,#x_foot>a:active { text-decoration: none; color: var(--mmBlack); }



#logoschrift{
  width: 40%;
  height: 45px;
  background-image: url(/images/maniacmotors.png);
  background-size: contain;
  background-position: left center;
  background-repeat: no-repeat;
  margin-right: 0.6em;
}

.headbrandlogo{
  width: 13%;
  height: 70%;
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  margin-left: 0.2em;
}

#logo_fantic{
  background-image: url(/images/fantic.png);
}

#logo_benelli{
  background-image: url(/images/benelli.png);
}

#logo_bimota{
  background-image: url(/images/bimota.png);
}

#logo_vyrus{
  background-image: url(/images/vyrus.png);
}

#logo_royalenfield{
  background-image: url(/images/royalenfield.png);
}

#logo_f_b_mondial{
  background-image: url(/images/f_b_mondial.png);
}

.menu * .btn{
    //margin-bottom: 5px;
    min-width: 160px;
    padding: 10px 15px 10px 15px;
    font-size: 0.8em;
}

.menubtn{
  display: inline-block;
  padding:5px;
}

.menubtnspacer{
  min-width:15px;
  display: inline-block;
}

/* Small screen / tablet / 760px to 991px */
@media (max-width: 991px) {
  .menu * .btn{
    //margin-bottom: 5px;
    min-width: 100px;
    padding: 5px 10px 5px 10px;
    font-size: 0.6em;
  }
  
  .menubtn{
    display: inline-block;
    padding:2px;
  }
  
  .menubtnspacer{
    min-width:10px;
    display: inline-block;
  }
}

/* Smaller screen / tablet+phone / 480px to 759px */
@media (max-width: 759px) {
  ...
}

/* Extra small screen / smartphone / 280px to 479px */
@media (max-width: 479px) {
  ...
}

.menu * div{
  align-self: center;
}



.btn{
  display: inline-block;
  vertical-align: middle;
  padding-left:13px; 
  padding-right:13px;
  padding-top:3px; 
  padding-bottom:3px;  
  //box-shadow: inset 1px 1px 34px -5px rgba(169,166,163,0.3);
  //margin: 0px 5px 0px 5px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 2px;
  border-bottom-left-radius: 2px;
  background-color: var(--mmYellow);
  background-image: linear-gradient(to right, var(--mmYellow) 0%, var(--mmBlack) 200%);
  font-style: normal;
  font-weight: bolder;
  color: #000;
  text-align: center;
}

.btn:active:hover:not([disabled]) *{
  color: var(--mmBlack);
}

.btnMakeGray{
  background-image: linear-gradient(to right, var(--mmLiteGrey) 0%, var(--mmBlack) 200%);
}

.btn > span:active,img:active {
	position:relative;
	top:2px;
	left:2px;
}

.btn > span,.btn > i,.btn > button,.btn > input[type="button"]{
  display: inline-block;
  padding-left:20px; 
  padding-right:20px;
  padding-top:15px; 
  padding-bottom:15px;
  margin: 3px 5px 3px 5px;  
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px; 
  cursor: pointer;
}

.btn > button:disabled, .btn > input:disabled, .btn > optgroup:disabled, .btn > select:disabled, .btn > textarea:disabled{
  background: none !important;
  color:#ababab;
  background-color: #fff;
}

.btn > input{
  /*border-top-left-radius: 10px;
  border-top-right-radius: 2px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 2px; 
  margin: 3px;*/
  min-width: 100px; 
}

.btn > img {
    width: auto;
    max-height: 50%;
    cursor: pointer;
}

span.btn{
    cursor: pointer;
}

.big > span,.big > i {
  padding-left:50px; 
  padding-right:50px;
  padding-top:30px; 
  padding-bottom:30px; 
}

.top{
  display:block; float:left; 
}

.pointer{
  cursor: pointer;
}

.rotate{
	-webkit-animation:spin 4s linear infinite;
    -moz-animation:spin 4s linear infinite;
    animation:spin 4s linear infinite;
}
@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@keyframes flickerAnimation {
  0%   { opacity:1; }
  50%  { opacity:0.5; }
  100% { opacity:1; }
}
@-o-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0.5; }
  100% { opacity:1; }
}
@-moz-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0.5; }
  100% { opacity:1; }
}
@-webkit-keyframes flickerAnimation{
  0%   { opacity:1; }
  50%  { opacity:0.5; }
  100% { opacity:1; }
}
.animate-flicker {
   -webkit-animation: flickerAnimation 3s infinite;
   -moz-animation: flickerAnimation 3s infinite;
   -o-animation: flickerAnimation 3s infinite;
    animation: flickerAnimation 3s infinite;
}

hr { 
  
  height: 20px; 
  border-style: solid; 
  border-color: var(--mmGrey); 
  color: var(--mmGrey); 
  border-width: 1px 0 0 0;        
} 

hr:before { 
  display: block; 
  content: ""; 
}

.zentriert {
	position: relative;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}


b {
	font-weight: bolder;
}

li {
	padding: 3px;
}

li:nth-child(even) {background-color: var(--icLiteLiteGrey);}
li:nth-child(odd) {background-color: var(--icLiteGrey);}

.text{
   text-align:justify;
   font-size: 1.2rem;
   max-width: 1000px;
   padding: 10px;
}

.text > img {
  float: left;
  margin: 5px 5px 5px 5px;
}

#cookiehinweis_hintergrund { 
  background-image: linear-gradient(to right, var(--mmYellow) -30%, var(--mmBlack) 130%);
  padding-top:42px; 
}

#cookiehinweis a {
  color:var(--mmGrey);
  text-decoration:none;
}

#cookiehinweis a:hover {
  text-decoration:underline;
}

#cookiehinweis #cookieinhalt {
  padding:10px;
  padding-top:5px; 
  padding-right:40px; 
  padding-bottom:25px;
}

#cookiehinweis {
  text-align:center;
  position:fixed;
  bottom:0px;
  z-index:10000;
  max-width:100%; 
  font-size:1.2em; 
  line-height:1.6em;
  margin: auto;
}

#cookiehinweisCloser {
  font: 14px/100% arial, sans-serif;
  position: absolute;
  right: 5px;
  text-decoration: none;
  text-shadow: 0 1px 0 #fff;
  top: 50px;
  cursor:pointer;
  padding:4px;
}

#cookiehinweisCloser:hover {
  font: 18px/100% arial, sans-serif; 
  right:3px; 
  top:48px;
  position: absolute;
}

.marken {
  display: flex;
  min-height: 30%;
  flex-wrap: wrap;
  vertical-align: middle;
  align-items:center;
}

.marken > div {
  width: 13%;
  height: 100%;
  position: relative;
  display: inline-block;
  overflow: hidden;
  margin: 5px;
}

.marken > div > a > img {
  padding: 10px;
  width:100%;
  cursor:pointer;
}

#info{
  margin:auto;
  z-index: 3;
  background-color: var(--Yellow);
  color: #000;
  font-size: 2.1em;
  width:100%;
  text-align: center;
  padding: 15px;
}

.small{
  font-size: 0.7rem;
}

.black{
  background: var(--mmBlack);
}

.white{
  background-color: #fff;
}

.menubtnaktiv{
   background-image: linear-gradient(to left, var(--mmYellow) 0%, var(--mmWhite) 50%,var(--mmYellow) 100%);
}

.ytiframe {
  width:500px;
  height:300px;
}

/* Small screen / tablet / 760px to 991px */
@media (max-width: 991px) {
  .ytiframe {
    width:400px;
    height:280px;
  }
}

/* Smaller screen / tablet+phone / 480px to 759px */
@media (max-width: 759px) {
  .ytiframe {
    width:300px;
    height:200px;
  }
}

/* Extra small screen / smartphone / 280px to 479px */
@media (max-width: 479px) {
  ...
}

.kfzlager{
  display: inline-block;
  position: relative;
  width: 70%;
  height: 300px;
}

.imgbox {
  display: inline-block;
  width: 25%;
  vertical-align: top;
}

.imgbox > img {
  width: 100%;
  max-width: 200px;
}

.imgbox > a > img {
  width: 100%;
  max-width: 200px;
}

.kfzlager > .textbox {
  display: inline-block;
  width: 75%;
  text-align: left;
  padding: 0px 10px 10px 10px;
  height: 100%;
  overflow: hidden;
  text-overflow: hidden;
}

.kfzlager:after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 35px;    
}

.kfzlager:after {
    bottom: 0;
    background-image: linear-gradient(to top, rgba(20,20,20,1), rgba(20,20,20,0));
}

.kfzlager > .textbox > h2{
  margin-top: 0px;
}

.kfzlagerzeigealles{
  height: auto;
}

.bmbm{

}

.bmbm > img {
   float: right;
   margin-right: 10px;
}

.hingucker{
  text-shadow: -1ex 1ex 4px #eee, 1em -1ex 2px #ddd, 1px 1px 1px #000, 2px 2px 2px #fff;
  font-size: 2.0em;
  font-weight: bold;
  color: var(--mmYellow);
  margin-bottom: 10px;
  display: inline-block;
}

#ausblendung{
  position: absolute;
  top:0;
  left: 0;
  z-index: 9997;
  background-color: #000;
  filter: alpha(Opacity=70);
  opacity: .7;
  display: none;
  width:100%;
  height:100%;
}

#popup{
  position: absolute;
  top: 0;
  margin: 0 auto;
  z-index: 9998;
  display: none;
  background: var(--mmBlack);
  width:90%;
  height:90%;
  overflow: auto;
  filter: alpha(Opacity=100);
  opacity: 1;
  padding: 30px 20px 30px 20px;
}

.popupcloser{
  position: sticky; 
  top: 0; 
  right: 0;
  float: right;
  background: url(../images/close.png) top right no-repeat;
  width: 30px;
  height: 30px;
  cursor: pointer;
}

.dobtn{
  position: sticky; 
  top: 0; 
  right: 0;
  float: right;
  cursor: pointer;
}

a > .dobtn {
  text-shadow:none;
  color: #000;
}

.mittig {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}

.grosseschrift{
  font-size: 2em;
}

.modell{
  padding: 10px;
  max-width: 1000px;
}

.modellanz{
  display: inline-block;
}

.modellanzimg{
  display: inline-block;
  width: 25%;
  vertical-align: top;
}

.modellanztext{
  display: inline-block;
  width: 75%;
}

.modellanztext * .btn {
  background-image: linear-gradient(to right, var(--mmGrey) 0%, var(--mmBlack) 200%);
  color: var(--mmBlack);
}

.rechts{
  text-align: right;
}

.rot{
  background-color: red !important;
}

.inaktiv{
  font-style: italic !important;
  text-decoration: line-through !important;
}