/*
         ==============================================================
         AMOS V2.1 CSS
         Gestaltung / Programmierung: Hear My Name UG Internetagentur
         ==============================================================
         Grundfarben: #921700 (Rot Dunkel), #ab1d02 (Rot hell), #fc7629 (Orange), #fbe8cd (Orange hell), #661000 (Rost-Rot), #f2f2f2 (Grau Hell)
*/

/* Einstellungen */
:root {
         --main-font: 'Merriweather';
         --second-font: 'Merriweather Sans';

         --main-color: #921700;
         --main-color-light: #ab1d02;

         --second-color: #fc7629;
         --second-color-light: #fbe8cd;

         --black: #000000;
         --white: #FFFFFF;
         --grey: rgba(0,0,0,0.3);

         --dark-color: #661000;

         --bg-color: #ab1d02;
         --bg-color-light: rgba(0,0,0,0.05);
         --bg-color-dark: rgba(255,255,255,0.05);

         --font-color: #ab1d02;
         --font-color-dark: rgba(0,0,0,0.8);
         --font-color-light: #FFFFFF;
         --font-shadow: 1px 1px 0px rgba(0,0,0,0.2);
         --font-shadow-light: 1px 1px 0px rgba(255,255,255,0.2);

         --box-shadow: 0px 0px 8px 0px rgba(0,0,0,0.25);
         --box-shadow-light: 0px 0px 8px 0px rgba(0,0,0,0.15);
         --box-shadow-dark: 0px 0px 8px 0px rgba(0,0,0,0.35);
}


/* Links */
a:link, a:visited {
         font-family: var(--main-font);
         font-size: 1.0em;
         color: var(--main-color);
         font-weight: normal;
         text-decoration: none;
         transition: all 0.3s ease-in-out;
}

a:hover {
         color: var(--main-color-light);
         text-decoration:none;
}

a[target="_blank"], a[target="_blank"]:link, a[target="_blank"]:visited, a[target="_blank"]:hover { background:transparent url(../images/el-16.png) center right no-repeat; padding-right: 20px !important; }
#footer a[target="_blank"], #footer a[target="_blank"]:link, #footer a[target="_blank"]:visited, #footer a[target="_blank"]:hover,
div[id^="AADIV"] a, div[id^="AADIV"] a[target="_blank"], div[id^="AADIV"] a[target="_blank"]:link, div[id^="AADIV"] a[target="_blank"]:visited, div[id^="AADIV"] a[target="_blank"]:hover
{ background-image: none !important; padding-right: 0px !important; }

a.button:link, a.button:visited {
         display: inline-block;
         padding: 10px 50px 10px 20px;
         margin: 2px 0px;

         background: var(--second-color) url(../images/dot_next.png) 98% center no-repeat;
         background: url(../images/dot_next.png) 97% center no-repeat, linear-gradient(to bottom,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         background-size: auto 80%, 100% 100%;

         font-family: var(--main-font);
         text-align: left;
         font-size: 1.1em;
         font-weight: 600;
         text-shadow: rgba(0,0,0,0.2) 2px 2px 1px;
         color: #FFFFFF;
         text-decoration:none;

         border: 1px #fb7426 solid;
         -webkit-border-radius: 30px;
         -moz-border-radius: 30px;
         border-radius: 30px;

         -webkit-box-shadow: inset 0px 0px 5px 5px rgba(192,61,28,0.5);
         -moz-box-shadow: inset 0px 0px 5px 5px rgba(192,61,28,0.5);
         box-shadow: inset 0px 0px 5px 5px rgba(192,61,28,0.5);
}

a.button:hover {
         background: url(../images/dot_next_light.png) 97% center no-repeat, linear-gradient(to bottom,  #7e1400 0%,#ab1d02 51%,#7e1400 51%,#960000 51%,#610f00 100%);
         background-size: auto 80%, 100% 100%;
         border: 1px #7e1400 solid;

         -webkit-box-shadow: inset 0px 0px 5px 5px rgba(95,15,0,1);
         -moz-box-shadow: inset 0px 0px 5px 5px rgba(95,15,0,1);
         box-shadow: inset 0px 0px 5px 5px rgba(95,15,0,1);

         font-family: var(--main-font);
         color: #FFFFFF;
         text-decoration:none;
}


/* Überschriften */
h1 {
         font-family: var(--main-font);
         font-size: 1.6em;
         font-weight: bold;
         text-align: center;
         color: var(--main-color);
         margin: 0px 0px 5px 0px;
         padding: 0px 0px 0px 0px;
         vertical-align:top;
}

h2 {
         font-family: var(--main-font);
         font-size: 1.4em;
         font-weight: 700;
         text-align: left;
         color: var(--font-color2);
         margin: 0px 0px 5px 0px;
         padding: 0px 0px 0px 0px;
         vertical-align:top;
         text-decoration:none;
}

h3 {
         font-family: var(--main-font);
         font-size: 1.2em;
         font-weight: bold;
         text-align:left;
         color: var(--font-color);
         margin: 0px 0px 5px 0px;
         padding: 0px 0px 0px 0px;
         vertical-align:top;
}

h4 {
         font-family: var(--main-font);
         font-size: 1.1em;
         font-weight: bold;
         text-align: left;
         color: var(--main-color);
         margin: 0px 0px 5px 0px;
         padding: 0px 0px 0px 0px;
         vertical-align: top;
}
h1.light, h2.light, h3.light, h4.light { color: var(--font-color-light); }


/* Standarts */
body {
         background: var(--bg-color) url(../images/amos_background.jpg) center top no-repeat;
         width: 100%;
         height: 100%;
         margin: 0;
         padding: 0;

         font-family: var(--main-font);
         font-size: 1.0em;
         color: var(--font-color);

         vertical-align: top;
         text-align: left;
}

.l       { float:left; }
.r       { float:right; }
.a_l     { text-align: left; }
.a_c     { text-align: center; }
.a_r     { text-align: right; }

img      { border: 0px; }
.clear   { clear:both; line-height:0.0em; height: 0px; display: block; background-color: #FFDF00; }

.pad     { padding: 10px; }
.pad_top { padding: 40px 0px; }

.white   { color: #FFFFFF; }
.black   { color: #000000; }

.small   { font-size: 0.8em !important; }
.big     { font-size: 1.2em !important; }
.bigger  { font-size: 1.6em !important; }

.block   { display:block !important; }
.inline-block   { display:inline-block !important; }
.inline   { display:inline; }

.round   { -webkit-border-radius: 6px; -moz-border-radius: 6px; border-radius: 6px; }

.w50     { width: calc(100% / 2); }
.w33     { width: calc(100% / 3); }
.w25     { width: calc(100% / 4); }
.w50.pad { width: calc((100% / 2) - 20px); }
.w33.pad     { width: calc((100% / 3) - 20px); }
.w25.pad     { width: calc((100% / 4) - 20px); }

.bg1     { background-color: var(--bg-color); }
.bg2     { background-color: var(--bg-color2); }
.bg3     { background-color: var(--main-color); }
.bg4     { background-color: var(--second-color); }
.bg_grey     { background-color: rgba(0,0,0,0.1); }

hr {
         display: block;
         border: 0px;
         border-top: 4px var(--main-color-light) dotted;
         width:100%;
         height:1px;
         margin: 5px 0px;
}

hr.light {
         display: block;
         border: 0px;
         border-top: 4px var(--font-color-light) dotted;
         width:100%;
         height:1px;
         margin: 5px 0px;
}

/* adspace */
.as { display: inline-block; width: 100%; overflow: hidden; background-color: transparent; text-align: center; margin: 10px 0px; color: #FFFFFF; font-size: 0.8em; }


/* Tabellen */
td:nth-child(odd) { background: var(--bg-color-light); color: var(--font-color); padding: 3px 10px; border-bottom: 1px rgba(0,0,0,0.05) solid; border-top: 1px rgba(255,255,255,0.75) solid; }
td:nth-child(even) { background: var(--bg-color-light); color: var(--font-color); padding: 3px 10px; border-bottom: 1px rgba(0,0,0,0.05) solid; border-top: 1px rgba(255,255,255,0.75) solid; }
td.head { background: var(--main-color); color: var(--font-color-light); padding: 5px 10px; font-weight: bold; font-size: 1.1em; }
td.head2 { background: var(--second-color); color: var(--font-color-light); padding: 5px 10px; font-weight: bold; font-size: 1.0em; }

time { display: none; }

/* Seite */
#wrapper {
         width: 100%;
         margin: 0px;
         padding: 0px;
}

#wrapper.content #header { height: 270px; }
#wrapper.content #site { padding: 30px 0px 30px 0px; }

.in {
         width: calc(100% - 40px);
         max-width: calc(1200px - 40px);
         margin: 0px auto;
         padding: 0px 20px;
}

#header {

         display: block;
         width: 100%;
         min-height: 230px;
}
#header .in { text-align: center; }
#header .slogan { display: none; }

#header .bar {
         display: block;
         width: 100%;
         height: auto;
         padding: 0px;
         margin: 7px 0px 10px 0px;

         -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
         -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);
         box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.2);

         -webkit-border-radius: 8px;
         -moz-border-radius: 8px;
         border-radius: 8px;
}


#header .bar .top {
         display: block;
         width: calc(100% - 30px - 4px);
         height: 50px;
         padding: 10px 15px 10px 15px;

         border: 2px #efe2dc solid;

         background: #efe2dc;
         background: -moz-linear-gradient(top,  #efe2dc 0%, #ffffff 40%, #f3eeee 41%, #d8c2bc 100%);
         background: -webkit-linear-gradient(top,  #efe2dc 0%,#ffffff 40%,#f3eeee 41%,#d8c2bc 100%);
         background: linear-gradient(to bottom,  #efe2dc 0%,#ffffff 40%,#f3eeee 41%,#d8c2bc 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efe2dc', endColorstr='#d8c2bc',GradientType=0 );

         -webkit-border-radius: 8px;
         -webkit-border-bottom-right-radius: 0px;
         -webkit-border-bottom-left-radius: 0px;
         -moz-border-radius: 8px;
         -moz-border-radius-bottomright: 0px;
         -moz-border-radius-bottomleft: 0px;
         border-radius: 8px;
         border-bottom-right-radius: 0px;
         border-bottom-left-radius: 0px;
}

#header .bar .top .navi {
         float: left;
         width: 50px;
         height: 50px;
         cursor: pointer;
}

#header .bar .top .navi img {
         width: 100%;
         height: auto;
         -webkit-transition: -webkit-transform .5s ease-in-out;
         -o-transition: transform .5s ease-in-out;
         transition: transform .5s ease-in-out;
}

#header .bar .top .navi img:hover {
         -webkit-transform: rotate(180deg);
         -o-transform: rotate(180deg);
         transform: rotate(180deg);
}

#header .bar .top .r { padding-top: 5px; }

#header .bar .menu {
         display: block;
         width: calc(100% - 30px - 0px);
         height: auto;
         min-height: 1px;
         padding: 10px 15px 10px 15px;

         background: #4b0c00;
         background: -moz-linear-gradient(top, #4b0c00 0%, #851500 20%, #851500 40%, #4b0c00 100%);
         background: -webkit-linear-gradient(top, #4b0c00 0%,#851500 20%, #851500 40%, #4b0c00 100%);
         background: linear-gradient(to bottom, #4b0c00 0%, #851500 20%, #851500 40%, #4b0c00 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#851500', endColorstr='#4b0c00',GradientType=0 );

         -webkit-border-radius: 0px;
         -webkit-border-bottom-right-radius: 8px;
         -webkit-border-bottom-left-radius: 8px;
         -moz-border-radius: 0px;
         -moz-border-radius-bottomright: 8px;
         -moz-border-radius-bottomleft: 8px;
         border-radius: 0px;
         border-bottom-right-radius: 8px;
         border-bottom-left-radius: 8px;

         text-align: left;
         font-size: 0.9em;
         color: var(--font-color-light);
}

#header .bar .menu #navi_bar { display: none; }

#header .bar .menu .kats { margin: 30px 0px 10px 0px; text-align: center; }
#header .bar .menu .kats a {
         display: inline-block;
         padding: 3px 8px;
         margin: 2px 5px 5px 5px;
         background: var(--second-color-light);
         -webkit-border-radius: 10px;
         -moz-border-radius: 10px;
         border-radius: 10px;

         font-family: var(--second-font);
         font-size: 1.0em;
         color: var(--font-color);
         text-shadow: var(--font-shadow-light);

         -webkit-box-shadow: inset 0px 0px 5px 0px rgba(252,118,41,1), 0px 5px 5px -5px rgba(0,0,0,1);
         -moz-box-shadow: inset 0px 0px 5px 0px rgba(252,118,41,1), 0px 5px 5px -5px rgba(0,0,0,1);
         box-shadow: inset 0px 0px 5px 0px rgba(252,118,41,1), 0px 5px 5px -5px rgba(0,0,0,1);
}

#header .bar .menu .kats a:hover { background: var(--second-color); color: var(--font-color-light); text-shadow: var(--font-shadow); }

#header .logo {
         display: inline-block;
         width: 350px;
         height: auto;
         margin: 10px 0px;
}

#header .logo img {
         width: calc(100% - 20px);
         height: auto;
         filter: drop-shadow(2px 2px 3px #ab1d02);
        -webkit-filter: drop-shadow(2px 2px 3px #ab1d02);
}



/* Seite */
#site {
         padding: 0px 0px 0px 0px;
         min-height: 150px;

         font-size: 1.0em;
         text-align: center;
         color: var(--font-color-dark);
}

#site .sidebar {
         float: left;
         width: 340px;
}

#site .sidebar .menu a { display: block; margin: 2px 0px; padding: 3px 0px; background:transparent url(../images/dot.png) 2px center no-repeat; padding-left: 22px !important; font-size: 1.1em; }
#site .sidebar .menu a:hover { background-color: #fdf2e3; color: var(--font-color-dark); }

#site .content {
         float: right;
         width: calc(100% - 340px - 20px);
}



/* Footer */
#footer {
         background: var(--dark-color);
         width: 100%;
         padding: 30px 0px;
         margin: 20px 0px 0px 0px;

         -webkit-box-shadow: inset 0px 20px 25px -10px rgba(0,0,0,0.5);
         -moz-box-shadow: inset 0px 20px 25px -10px rgba(0,0,0,0.5);
         box-shadow: inset 0px 20px 25px -10px rgba(0,0,0,0.5);
}

#footer div, #footer a { font-size: 1.0em; color: var(--font-color-light); font-family: var(--main-font); text-decoration: none; }
#footer a:hover { color: var(--second-color-light); }
#footer span { font-size: 0.8em; font-weight: 400; font-style: italic; color: var(--second-color-light); opacity: 0.7; }
#footer .a_c { font-size: 0.8em; }
#footer .si { color: var(--dark-color) !important; font-size: 0.8em; }


/* bewertungen
#bewertungen {
         display: block;
}

#bewertungen .item {
         float: left;
         display: block;
         width: calc(50% - 40px - 0px - 3px);
         padding: 0px;
         margin: 20px;
         background:#FFFFFF;
         -webkit-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
         -moz-box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
         box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
         border-left: 3px var(--second-color) solid;
}
#bewertungen .item .sterne { display: block; width: calc(100% - 40px); padding: 20px 20px 10px 20px; }
#bewertungen .item .sterne img { float: left; width: 30px; height: 30px; }
#bewertungen .item .stimme { padding: 10px 20px; font-size: 1.0em; }
#bewertungen .item .name { display: block; background: rgba(0,0,0,0.05); padding: 10px 20px; font-size: 0.9em; text-align: right; }
*/

/* Top Shops */
#topshops { margin: 10px 0px 0px 0px; }
#topshops .item {
         float: left;
         width: calc((100% / 8) - 15px);
         margin-right: 15px;

         -webkit-box-shadow: var(--box-shadow);
         -moz-box-shadow:    var(--box-shadow);
         box-shadow:         var(--box-shadow);


}

#topshops .item img {
         border: 2px #FFFFFF solid;
         width: calc(100% - 4px);
         height: auto;
         -webkit-border-radius: 8px;
         -moz-border-radius: 8px;
         border-radius: 8px;
}

/* suche */
#search {
         display: block;
         position: absolute;
         top: 150px;
         left: calc(50% - 240px);
         width: 475px;
         height: 120px;
         clip-path: polygon(0 0, 100% 0%, 100% 80%, 50% 100%, 0 80%);
}
#search .sl { display: block; float:left; width: 20px; height: 120px; background: transparent url(../images/suche_bg_l.png) center top no-repeat; }
#search .sm { display: block; float:left; width: calc(100% - 40px); height: 120px; background: transparent url(../images/suche_bg_m.png) center top repeat-x; }
#search .sr { display: block; float:left; width: 20px; height: 120px; background: transparent url(../images/suche_bg_r.png) center top no-repeat; }

#search b { display: block; padding-top: 15px; font-size: 1.0em; color: var(--second-color-light); text-shadow: var(--font-shadow); }
#search form { margin: 5px auto; width: calc(100% - 80px); text-align: center; }
#search form label { display: none; }
#search form input[type="text"] {
         display: block;
         float: left;
         width: calc(100% - 50px - 20px);
         height: 40px;
         line-height: 40px;
         margin: 0px;
         padding: 0px 10px;
         margin-top: 5px;

         background: #efe2dc;
         background: -moz-linear-gradient(top,  #efe2dc 0%, #ffffff 50%, #f3eeee 51%, #d8c2bc 100%);
         background: -webkit-linear-gradient(top,  #efe2dc 0%,#ffffff 50%,#f3eeee 51%,#d8c2bc 100%);
         background: linear-gradient(to bottom,  #efe2dc 0%,#ffffff 50%,#f3eeee 51%,#d8c2bc 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efe2dc', endColorstr='#d8c2bc',GradientType=0 );

         border: 0px;
         -webkit-border-radius: 4px;
         -webkit-border-top-right-radius: 0px;
         -webkit-border-bottom-right-radius: 0px;
         -moz-border-radius: 4px;
         -moz-border-radius-topright: 0px;
         -moz-border-radius-bottomright: 0px;
         border-radius: 4px;
         border-top-right-radius: 0px;
         border-bottom-right-radius: 0px;

         -webkit-box-shadow: inset 3px 3px 5px 0px rgba(0,0,0,0.35);
         -moz-box-shadow: inset 3px 3px 5px 0px rgba(0,0,0,0.35);
         box-shadow: inset 3px 3px 5px 0px rgba(0,0,0,0.35);
}
#search form input[type="submit"] { display: block; float: left; background-image: url(../images/icon_suche.png); width: 50px; height: 50px; line-height: 50px; margin: 0px; padding: 0px; margin-top: 0px; border: 0px; }

/* Girl */
#girl {
         display: block;
         position: absolute;
         top: 32px;
         left: calc(50% - 400px);
         background: transparent url(../images/frau.png) center top no-repeat;
         background-size: 100% auto;
         width: 230px;
         height: 203px;
}

/* Content Boxen */
.box {
         display: block;
         margin: 10px 0px 10px 0px;
         padding: 10px 10px 10px 10px;
         background: #FFFFFF;

         -webkit-border-radius: 8px;
         -moz-border-radius: 8px;
         border-radius: 8px;

         border: 1px #FFFFFF solid;
         -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(250,210,150,1);
         -moz-box-shadow:    0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(250,210,150,1);
         box-shadow:         0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(250,210,150,1);

         text-align: left;
         font-size: 0.9em;
}

.box .title {
         display: block;
         width: calc(100% - 0px);
         padding: 10px 10px 8px 10px;
         margin: -11px 0px 10px -11px;

         background: #fce9d7;
         background: -moz-linear-gradient(top,  #fce9d7 0%, #fdf4ea 50%, #fce9d7 50%, #f9e6d4 100%);
         background: -webkit-linear-gradient(top,  #fce9d7 0%,#fdf4ea 50%,#fce9d7 50%,#f9e6d4 100%);
         background: linear-gradient(to bottom,  #fce9d7 0%,#fdf4ea 50%,#fce9d7 50%,#f9e6d4 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fce9d7', endColorstr='#f9e6d4',GradientType=0 );

         border: 1px #fce9d7 solid;
         -webkit-border-top-left-radius: 8px;
         -webkit-border-top-right-radius: 8px;
         -moz-border-radius-topleft: 8px;
         -moz-border-radius-topright: 8px;
         border-top-left-radius: 8px;
         border-top-right-radius: 8px;

         color: var(--main-color);
         text-shadow: 1px 1px 0px rgba(255,255,255,0.3);
         font-size: 1.2em;
         font-weight: 700;
}
.box .title h1 { font-size: 1.2em; }
.box .title h2 { font-size: 1.1em; }


.sidebar .box {
         border: 0px #FFFFFF solid;
         -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(200,180,170,1);
         -moz-box-shadow:    0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(200,180,170,1);
         box-shadow:         0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(200,180,170,1);
}
.sidebar .box .title {
         display: block;
         width: calc(100% - 2px);
         padding: 8px 10px 6px 10px;
         margin: -11px 0px 10px -10px;

         background: #fd9355;
         background: -moz-linear-gradient(top,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         background: -webkit-linear-gradient(top,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         background: linear-gradient(to bottom,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb7426', endColorstr='#df5218',GradientType=0 );

         border: 1px #fc7629 solid;
         -webkit-box-shadow: inset 0px 0px 8px 0px rgba(95,15,0,0.5);
         -moz-box-shadow: inset 0px 0px 8px 0px rgba(95,15,0,0.5);
         box-shadow: inset 0px 0px 8px 0px rgba(95,15,0,0.5);
         -webkit-border-top-left-radius: 8px;
         -webkit-border-top-right-radius: 8px;
         -moz-border-radius-topleft: 8px;
         -moz-border-radius-topright: 8px;
         border-top-left-radius: 8px;
         border-top-right-radius: 8px;

         color: #fbe8cd;
         text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
         font-size: 1.2em;
         font-weight: 700;
}


/* Postings */
.posting-box {}

.posting-box .date {
         float: left;
         display: block;
         width: 40px;
         height: 60px;

         margin: 25px 0px 0px 0px;
         padding: 10px;

         color: var(--font-color);
         text-align: center;
         font-size: 1.5em;
         font-weight: 700;
         text-transform: uppercase;
         text-overflow: hidden;
         text-shadow: 1px 1px 0px rgba(255,255,255,1);

         background-color: #FFFFFF;

         -webkit-border-radius: 8px;
         -webkit-border-top-right-radius: 0px;
         -webkit-border-bottom-right-radius: 0px;
         -moz-border-radius: 8px;
         -moz-border-radius-topright: 0px;
         -moz-border-radius-bottomright: 0px;
         border-radius: 8px;
         border-top-right-radius: 0px;
         border-bottom-right-radius: 0px;

         -webkit-box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(200,180,170,1);
         -moz-box-shadow:    0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(200,180,170,1);
         box-shadow:         0px 0px 8px 0px rgba(0, 0, 0, 0.20), inset 0px 0px 8px 2px rgba(200,180,170,1);
}

.posting-box .date span {
         display: block;
         width: calc(100% - 2px);
         padding: 8px 10px 6px 10px;
         margin: -11px 0px 5px -10px;

         background: #fd9355;
         background: -moz-linear-gradient(top,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         background: -webkit-linear-gradient(top,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         background: linear-gradient(to bottom,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fb7426', endColorstr='#df5218',GradientType=0 );

         border: 1px #fc7629 solid;
         -webkit-box-shadow: inset 0px 0px 8px 0px rgba(95,15,0,0.5);
         -moz-box-shadow: inset 0px 0px 8px 0px rgba(95,15,0,0.5);
         box-shadow: inset 0px 0px 8px 0px rgba(95,15,0,0.5);

         -webkit-border-radius: 0px;
         -webkit-border-top-left-radius: 8px;
         -moz-border-radius: 0px;
         -moz-border-radius-topleft: 8px;
         border-radius: 0px;
         border-top-left-radius: 8px;

         color: #fbe8cd;
         text-shadow: 0px 0px 5px rgba(0,0,0,0.3);
         font-size: 0.65em;
}

.posting-box .box {
         float: right;
         width: calc(100% - 60px - 22px);
         min-height: 80px;
}
.posting-box h1 { font-weight: 700; font-size: 1.5em; color: var(--font-color-light); text-shadow: 2px 2px 2px rgba(0,0,0,0.3); }
.posting-box .box h4 a { font-weight: 700; display: block; }
.posting-box .box h4 a:hover { color: #000000; }

.posting-box .bar { font-size: 0.8em; color: var(--font-color); }
.posting-box .bar div { display: block; margin: 0px 0px 5px 0px; }
.posting-box .bar div b { display: inline-block; width: 75px; font-size: 0.9em; }
.posting-box .article { padding: 10px 10px 20px 10px; font-size: 1.0em; line-height: 1.5em; color: var(--font-color-dark); }
.posting-box .article .block { display: block; padding: 10px 0px 0px 10px; margin-top:-10px; font-weight: bold; font-size: 1.1em; border-left: 3px var(--second-color) solid; }
.posting-box .article .menu-tag { display: inline-block; background: var(--second-color); padding: 3px 30px 3px 10px; margin-bottom: 10px; border-left: 3px var(--second-color) solid; font-weight: bold; font-size: 0.9em; color: #FFFFFF; clip-path: polygon(0% 0%, 100% 0, calc(100% - 16px) 50%, 100% 100%, 0% 100%); transition: all 0.3s ease-in-out; }
.posting-box .article .menu-tag:hover { background: var(--main-color); }
.posting-box .article .menu-tag a { color: #FFFFFF; }
.posting-box .article img { max-width: 100%; height: auto; }
.posting-box .article img.full { width: calc(90% - 20px); height: auto; border: 10px #ffffff solid; margin: 5%; -webkit-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); -moz-box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.25); }
.posting-box .article img.intro { float: left; width: 150px; height: auto; margin: 0px 10px 10px 0px; }

.posting-box a.button { float: right; padding: 5px 35px 5px 15px; background-size: auto 70%, 100% 100%; }

.posting-box .box .credits, .box .credits {
         display: block;
         width: calc(100%);
         background: #fdf2e3;

         padding: 12px 10px 10px 10px;
         margin: 10px 0px -11px -10px;

         -webkit-box-shadow: inset 0px 10px 5px -5px rgba(246,209,145,1);
         -moz-box-shadow: inset 0px 10px 5px -5px rgba(246,209,145,1);
         box-shadow: inset 0px 10px 5px -5px rgba(246,209,145,1);

         -webkit-border-radius: 0px;
         -webkit-border-bottom-right-radius: 8px;
         -webkit-border-bottom-left-radius: 8px;
         -moz-border-radius: 0px;
         -moz-border-radius-bottomright: 8px;
         -moz-border-radius-bottomleft: 8px;
         border-radius: 0px;
         border-bottom-right-radius: 8px;
         border-bottom-left-radius: 8px;

         text-align: center;
         font-size: 0.9em;
}

.posting-box #quelle {
         display: block;
         padding: 5px 10px;
         margin-top: 10px;
         background: rgba(0,0,0,0.06);

         font-size: 0.8em;
         font-style: italic;
         color: rgba(0,0,0,0.5);

         -webkit-border-radius: 20px;
         -moz-border-radius: 20px;
         border-radius: 20px;
}

.posting-box #quelle a { color: rgba(0,0,0,0.5);  text-decoration: underline; }

.posting-box .article.offline { opacity: 0.7; }
.posting-box .article.offline img { filter: grayscale(100%); }

.image_text span { font-size: 0.9em; color: rgba(0,0,0,0.5); font-style: italic; }

#article .goto { display: block; margin: 20px 0px; text-align: center; }
#article .goto b { display: block; color: #FFFFFF; font-size: 1.2em; text-align: center; text-shadow: 2px 2px 5px rgba(0,0,0,0.5); }
#article .goto a.button { margin: 10px; padding-right: 60px !important; -webkit-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5); -moz-box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5); box-shadow: 0px 0px 25px 0px rgba(0,0,0,0.5); }
#article .goto a.button:hover { background: url(../images/dot_next.png) 97% center no-repeat, linear-gradient(to bottom,  #FFFFFF 0%, #EFEFEF 51%, #DFDFDF 51%, #EFEFEF 100%); color: var(--main-color); background-size: auto 80%, 100% 100%; }

#article .vorteile ul { float: left; width: calc(50% - 20px); margin: 0px; padding: 0px; margin-top: 5px; }
#article .vorteile ul li { list-style: none; background-image: url(../images/arrow.png); background-repeat: no-repeat; background-position: 3px center; padding: 5px 2px 5px 35px; margin: 3px 0px; }
#article .vorteile ul li:nth-child(even) { background-color: rgba(0,0,0,0.05); }
#article .vorteile .ib { float: right; width: calc(50% - 20px); margin: 10px 0px; }
#article .vorteile .ib b { display: block; background: #009F00; color: #FFFFFF; padding: 4px 10px; margin: 5px 0px 10px 0px; font-size: 0.8em; font-family: var(--second-font); text-transform: uppercase; text-align: center; }
#article .vorteile .ib img.icon { display: inline-block; width: auto; height: 30px; margin: 2px 5px 2px 0px; }

/* Tags */
.tags {}
.tags .tag {
         display: inline-block;
         padding: 3px 6px 2px 6px;
         margin: 2px 2px;

         font-size: 0.9em;
         font-family: var(--main-font);
         text-transform: uppercase;
         color: var(--grey);

         border: 1px solid var(--grey);
         border-radius: 2em;

         transition: transform 0.2s;
         transition-timing-function: cubic-bezier(0.45, -0.85, 0.55, -0.45);
}

.tags .tag:hover {
         transform: scale(1.1);
         background: var(--main-color);
         color: #FFFFFF;
         border: 0px solid var(--main-color);

         /*-webkit-background-clip: text;
         -webkit-text-fill-color: transparent; */
}

.tags .tag:before {
         background: var(--white);
         width: 6px;
         height: 6px;
         content: "";
         display: inline-block;
         border-radius: 20px;
         border: 1px var(--grey) solid;
         margin: 0 4px 0 0;
}
.tags .tag:hover:before { border: 1px var(--white) solid; }



/* lexikon */
#lexikon {}
#lexikon h1, #lexikon h2, #lexikon h3, #lexikon h4{ text-align: center; text-decoration: none; text-shadow: #FFFFFF 1px 1px 0px; }

#lexikon .az { text-align: center; }
#lexikon a.button {
         width: 40px;
         height: 40px;
         line-height: 40px;

         font-size: 1.2em;
         color: #FFFFFF !important;
         text-align: center;

         border: 0px;
         -webkit-border-radius: 50px;
         -moz-border-radius: 50px;
         border-radius: 50px;

         background: linear-gradient(to bottom,  #fb7426 0%,#fd8d4a 51%,#fb7426 51%,#df5218 100%);
         background-size: 100% 100%;
         padding: 0px;
         transition: none;
}
#lexikon a.button:hover { background: var(--main-color); }

#lexikon .item {
         float: left;
         width: calc(25% - 44px);
         margin: 0px 0px 0px 0px;
         padding: 20px 20px 10px 20px;

         border-right: 4px var(--main-color) dotted;
         border-top: 4px var(--main-color) dotted;
}
#lexikon .item:hover { background-color: #EFEFEF; }
#lexikon .item:nth-child(2), #lexikon .item:nth-child(3), #lexikon .item:nth-child(4), #lexikon .item:nth-child(5) { border-top: 0px; }
#lexikon .item:nth-child(4n + 1) { border-right: 0px; }

#lexikon .item a { display: block; text-align: center; text-decoration: none; font-size: 1.0em; }
#lexikon .item img {
         width: 100%;
         height: auto;
}

/* Sonstiges */
#w {
         display: none;
         z-index: 100;
         left: 0;
         top: 0px;
         padding: 5px 10px;

         color: #FFFFFF;
         position: fixed;
         background: #000000;
}



/* Formulare */
input, textarea, select {
         border: 1px rgba(0,0,0,0.3) solid;
         background-color: rgba(0,0,0,0.05);

         padding: 3px 6px;
         margin: 2px;

         font-family: var(--main-font);
         font-size: 1.0em;
         color: #000000;

         vertical-align: top;
         -webkit-box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
         -moz-box-shadow:    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.15);
         box-shadow:         inset 2px 2px 4px 0px rgba(0, 0, 0, 0.15);

         -webkit-border-radius: 3px;
         -moz-border-radius: 3px;
         border-radius: 3px;
}

input[type="submit"] {
         text-shadow: rgba(0,0,0,0.3) 1px 1px 1px;
         color: #FFFFFF;
         font-size: 1.1em;

         background: #45484d;
         background: -moz-linear-gradient(top,  #45484d 0%, #000000 100%);
         background: -webkit-linear-gradient(top,  #45484d 0%,#000000 100%);
         background: linear-gradient(to bottom,  #45484d 0%,#000000 100%);
         filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#45484d', endColorstr='#000000',GradientType=0 );

         cursor: pointer;
         -webkit-box-shadow: inset 2px 2px 4px 0px rgba(0, 0, 0, 0.0);
         -moz-box-shadow:    inset 2px 2px 4px 0px rgba(0, 0, 0, 0.0);
         box-shadow:         inset 2px 2px 4px 0px rgba(0, 0, 0, 0.0);
}

input[type="submit"]:hover {
        background: #ab1d02;
        background: -moz-linear-gradient(top,  #ab1d02 0%, #921700 100%);
        background: -webkit-linear-gradient(top,  #ab1d02 0%,#921700 100%);
        background: linear-gradient(to bottom,  #ab1d02 0%,#921700 100%);
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ab1d02', endColorstr='#921700',GradientType=0 );
}

form input[type="checkbox"] { display:none; }
form input[type="checkbox"] + label { width: 50px; height: 20px; border-radius: 20px; border: 2px solid #ddd; background-color: #EEE; display: inline-block !important; content: ""; float: left; margin-right: 10px; transition: background-color 0.5s linear; margin-top: 0px; }
form input[type="checkbox"] + label:hover { cursor: pointer; }
form input[type="checkbox"] + label::before { width: 16px; height: 16px; border-radius: 16px; background-color: #fff; display: block; content: ""; float: left; margin: 2px 0 0 2px; transition: margin 0.1s linear; }
form input[type="checkbox"]:checked+label{ background-color: #2da820; }
form input[type="checkbox"]:checked+label::before { margin: 2px 0 0 32px; }