@charset "utf-8";
/*
 * CSS-Crush(ed) on 2026-04-19 10:59:05 +0000
 * http://github.com/peteboere/css-crush (v2.1.0-beta)
 * 
 */
/*.............................................................................
    BooZii - A responsive bootstrap
    Package: Bootstrap
    Description: constructor file
    Author: Joe Ray Gregory @ slashworks
    License: LGPL
.............................................................................*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Imports
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/* basic and required imports */
/* config */
/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 * @description provides global helper classes for basic element styling and positioning
 *
 * Table of contents
 * -----------------------------------------
 *
 * A. Basic grid constants and breakpoint for grid container clear
 *
 * B.
 * B.1. Desktop Big            - show/hide elements on defined at defined width or smaller
 * B.2. Desktop Normal         - show/hide elements on defined at defined width or smaller
 * B.3. Tablet Portrait Size   - show/hide elements on defined at defined width or smaller
 * B.4. Smartphone Big Size    - show/hide elements on defined at defined width or smaller
 * B.5. Smartphone Small Size  - show/hide elements on defined at defined width or smaller
 */
/* ==========================================================================
	A. Grid Configuration
   ========================================================================== */
/* ==========================================================================
	B. Breakpoint configuration
   ========================================================================== */
/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 *
 * Table of contents
 * -----------------------------------------
 * 1. Basic Variables
 * 2. Extensions
 *
 */
/* ========================================================================== 
	1. Basic Variables
   ========================================================================== */
/* ==========================================================================
	2. Extensions - use: .class{@include myFirstDependencie}
   ========================================================================== */
.baseButton {
    font-size: 100%;
    padding: .5em 1.5em;
    color: #444;
    color: rgba(0,0,0,.8);
    border: 1px solid #999;
    border: 0 rgba(0,0,0,0);
    background-color: #ccc;
    text-decoration: none;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-font-smoothing: antialiased;
    -webkit-transition: .1s linear box-shadow;
    -moz-transition: .1s linear box-shadow;
    -o-transition: .1s linear box-shadow;
    transition: .1s linear box-shadow;
    }

/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
    display: block;
    }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
    display: inline-block;
    }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
    display: none;
    height: 0;
    }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
    display: none;
    }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    }

/**
 * Remove default margin.
 */
body {
    margin: 0;
    }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
    background: transparent;
    }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
    outline: thin dotted;
    }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
    outline: 0;
    }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
    font-size: 2em;
    margin: .67em 0;
    }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
    border-bottom: 1px dotted;
    }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong {
    font-weight: bold;
    }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn {
    font-style: italic;
    }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 0;
    }

/**
 * Address styling not present in IE 8/9.
 */
mark {
    background: #ff0;
    color: #000;
    }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
    font-family: monospace,serif;
    font-size: 1em;
    }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
    white-space: pre-wrap;
    }

/**
 * Set consistent quote types.
 */
q {
    quotes: "\201C" "\201D" "\2018" "\2019";
    }

/**
 * Address inconsistent and variable font size in all browsers.
 */
small {
    font-size: 80%;
    }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
    }
sup {
    top: -.5em;
    }
sub {
    bottom: -.25em;
    }

/* ==========================================================================
   Embedded content
   ========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
    border: 0;
    }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
    overflow: hidden;
    }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
    margin: 0;
    }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
    border: 1px solid #c0c0c0;
    margin: 0 2px;
    padding: .35em .625em .75em;
    }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
    border: 0;
    padding: 0;
    }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    margin: 0;
    }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
    line-height: normal;
    }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
    text-transform: none;
    }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
    }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
    cursor: default;
    }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
    }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
    border: 0;
    padding: 0;
    }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
    overflow: auto;
    vertical-align: top;
    }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
    border-collapse: collapse;
    border-spacing: 0;
    }
body {
    font-size: 13px;
    }
img,
object,
embed {
    max-width: 100%;
    }
img {
    height: auto;
    }
iframe {
    width: 100%;
    }

/*.............................................................................
    Package: Menu
    Description: Menu Helpers to quickly build up Menues
    Author: Joe Ray Gregory
    Lisence: LGPL
.............................................................................*/
/*:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::
    Global grid basics
:::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::*/
/*----------------------------------------------------------------------------
:Desc Define some standard grid values and prepare use of variables with css crush
-----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
:Desc Defines the base style of the grid wrapper thats needed to hold the units
-----------------------------------------------------------------------------*/
.grid {
    width: 100%;
    max-width: 1200px;
    }
.grid:after {
    content: "";
    display: table;
    clear: both;
    }

/*----------------------------------------------------------------------------
:Desc Defines the base style of each unit
-----------------------------------------------------------------------------*/
.u_1,
.u_2,
.u_3,
.u_4,
.u_5,
.u_6,
.u_7,
.u_8,
.u_9,
.u_10,
.u_11,
.u_12,
.u_13,
.u_14,
.u_15,
.u_16,
.u_17,
.u_18,
.u_19,
.u_20,
.u_21,
.u_22,
.u_23,
.u_24 {
    margin-left: 1.66667%;
    margin-right: 1.66667%;
    float: left;
    min-height: 1px;
    }

/*----------------------------------------------------------------------------
:Desc Defines the width of each unit
-----------------------------------------------------------------------------*/
.u_1 {
    width: 5%;
    }
.u_2 {
    width: 13.33333%;
    }
.u_3 {
    width: 21.66666%;
    }
.u_4 {
    width: 29.99999%;
    }
.u_5 {
    width: 38.33332%;
    }
.u_6 {
    width: 46.66665%;
    }
.u_7 {
    width: 54.99998%;
    }
.u_8 {
    width: 63.33331%;
    }
.u_9 {
    width: 71.66664%;
    }
.u_10 {
    width: 79.99997%;
    }
.u_11 {
    width: 88.3333%;
    }
.u_12 {
    width: 96.66663%;
    }
.u_13 {
    width: 104.99996%;
    }
.u_14 {
    width: 113.33329%;
    }
.u_15 {
    width: 121.66662%;
    }
.u_16 {
    width: 129.99995%;
    }
.u_17 {
    width: 138.33328%;
    }
.u_18 {
    width: 146.66661%;
    }
.u_19 {
    width: 154.99994%;
    }
.u_20 {
    width: 163.33327%;
    }
.u_21 {
    width: 171.6666%;
    }
.u_22 {
    width: 179.99993%;
    }
.u_23 {
    width: 188.33326%;
    }
.u_24 {
    width: 196.66659%;
    }

/*----------------------------------------------------------------------------
:Desc Push with the width of units + gutter etc.
-----------------------------------------------------------------------------*/
.p_1 {
    margin-left: 10%;
    }
.p_2 {
    margin-left: 18.33333%;
    }
.p_3 {
    margin-left: 26.66666%;
    }
.p_4 {
    margin-left: 34.99999%;
    }
.p_5 {
    margin-left: 43.33332%;
    }
.p_6 {
    margin-left: 51.66665%;
    }
.p_7 {
    margin-left: 59.99998%;
    }
.p_8 {
    margin-left: 68.33331%;
    }
.p_9 {
    margin-left: 76.66664%;
    }
.p_10 {
    margin-left: 84.99997%;
    }
.p_11 {
    margin-left: 93.3333%;
    }
.p_12 {
    margin-left: 101.66663%;
    }
.p_13 {
    margin-left: 109.99996%;
    }
.p_14 {
    margin-left: 118.33329%;
    }
.p_15 {
    margin-left: 126.66662%;
    }
.p_16 {
    margin-left: 134.99995%;
    }
.p_17 {
    margin-left: 143.33328%;
    }
.p_18 {
    margin-left: 151.66661%;
    }
.p_19 {
    margin-left: 159.99994%;
    }
.p_20 {
    margin-left: 168.33327%;
    }
.p_21 {
    margin-left: 176.6666%;
    }
.p_22 {
    margin-left: 184.99993%;
    }
.p_23 {
    margin-left: 193.33326%;
    }
.p_24 {
    margin-left: 201.66659%;
    }

/*----------------------------------------------------------------------------
: Clear First-Childs
-----------------------------------------------------------------------------*/
.grid [class^=u_]:first-child,
.u_12,
.grid-first {
    clear: both;
    }

/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 * @description provides global helper classes for basic element styling and positioning
 *
 * Table of contents
 * -----------------------------------------
 * 1. BODY
 * 2. HEADLINES
 * 3. LIST
 * 4. TEXTFORMAT
 * 5. FORM
 * 6. TABLE
 * 7. ACCORDION
 * 8. SLIDER
 */
/* ==========================================================================
	1. BODY
   ========================================================================== */
html {
    font-size: 15px;
    font-family: arial,sans-serif;
    color: #191919;
    }

/* ==========================================================================
	2. HEADLINES
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
    font-weight: 500;
    line-height: 1.1;
    }
h1 small,
h2 small,
h3 small,
h4 small,
h5 small,
h6 small,
.h1 small,
.h2 small,
.h3 small,
.h4 small,
.h5 small,
.h6 small {
    font-weight: normal;
    line-height: 1;
    color: #999;
    }
h1,
h2,
h3 {
    margin-top: 20px;
    margin-bottom: 10px;
    }
h4,
h5,
h6 {
    margin-top: 10px;
    margin-bottom: 10px;
    }
h1,
.h1 {
    font-size: 3rem;
    }
h2,
.h2 {
    font-size: 2.5rem;
    }
h3,
.h3 {
    font-size: 2.3rem;
    }
h4,
.h4 {
    font-size: 2rem;
    }
h5,
.h5 {
    font-size: 1rem;
    }
h6,
.h6 {
    font-size: 1rem;
    }
h1 small,
.h1 small {
    font-size: 2.5rem;
    }
h2 small,
.h2 small {
    font-size: 1.3rem;
    }
h3 small,
.h3 small,
h4 small,
.h4 small {
    font-size: .9rem;
    }

/* ==========================================================================
	3. LIST
   ========================================================================== */
ul,
ol {
    margin-top: 0;
    margin-bottom: 10px;
    }
ul ul,
ol ul,
ul ol,
ol ol {
    margin-bottom: 0;
    }
dl {
    margin-bottom: 20px;
    }
dt,
dd {
    line-height: 1.428571429;
    }
dt {
    font-weight: bold;
    }
dd {
    margin-left: 0;
    }

/* ==========================================================================
    4. TEXTFORMAT
    ========================================================================== */
abbr[title] {
    cursor: help;
    border-bottom: 1px dotted #999;
    }
blockquote {
    padding: 10px 20px;
    margin: 0 0 20px;
    border-left: 5px solid #eee;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.25;
    }
blockquote p:last-child {
    margin-bottom: 0;
    }
blockquote small {
    display: block;
    line-height: 1.428571429;
    color: #999;
    }
blockquote small:before {
    content: '\2014 \00A0';
    }
q:before,
q:after,
blockquote:before,
blockquote:after {
    content: "";
    }
address {
    display: block;
    margin-bottom: 20px;
    font-style: normal;
    line-height: 1.428571429;
    }
code,
pre {
    font-family: Monaco,Menlo,Consolas,"Courier New",monospace;
    }
code {
    padding: 2px 4px;
    font-size: .9rem;
    color: #c7254e;
    white-space: nowrap;
    background-color: #f9f2f4;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    }
pre {
    display: block;
    padding: 9.5px;
    margin: 0 0 10px;
    font-size: .9rem;
    line-height: 1.428571429;
    color: #333;
    word-break: break-all;
    word-wrap: break-word;
    background-color: rgb(242,242,242);
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    }
pre code {
    padding: 0;
    font-size: inherit;
    color: inherit;
    white-space: pre-wrap;
    background-color: transparent;
    border: 0;
    }

/* ==========================================================================
	5. FORM
   ========================================================================== */
/*
form {
    margin: 0
}

form fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

form legend {
    border: 0;
    padding: 0;
    white-space: normal;
    *margin-left: -7px
}

form button,
form input,
form select,
form textarea {
    font-size: 100%;
    margin: 0;
    vertical-align: baseline;
    *vertical-align: middle;
}

form button,
form input {
    line-height: normal
}

form button,
form input[type=button],
form input[type=reset],
form input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer;
    *overflow: visible
}

form button[disabled],
form input[disabled] {
    cursor: default
}

form input[type=checkbox],
form input[type=radio] {
    box-sizing: border-box;
    padding: 0;
    *height: 13px;
    *width: 13px
}

form input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

form input[type=search]::-webkit-search-cancel-button,
form input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

form button::-moz-focus-inner,
form input::-moz-focus-inner {
    border: 0;
    padding: 0
}

form textarea {
    overflow: auto;
    vertical-align: top;
    resize: vertical;
}

form input[type=text],
form input[type=password],
form input[type=email],
form input[type=url],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=datetime],
form input[type=datetime-local],
form input[type=week],
form input[type=number],
form input[type=search],
form input[type=tel],
form input[type=color],
form select,
form textarea {
    padding: .5em .6em;
    display: inline-block;
    border: $(base-border-achitecture);
    font-size: .8rem;
    box-shadow: inset 0 1px 3px #ddd;
    border-radius: $(border-radius);
    -webkit-transition: .3s linear border;
    -moz-transition: .3s linear border;
    -ms-transition: .3s linear border;
    -o-transition: .3s linear border;
    transition: .3s linear border;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased
}
/* stacked */
/*form input[type=text],
form input[type=password],
form input[type=email],
form input[type=url],
form input[type=date],
form input[type=month],
form input[type=time],
form input[type=datetime],
form input[type=datetime-local],
form input[type=week],
form input[type=number],
form input[type=search],
form input[type=tel],
form input[type=color],
form select,
form label,
form textarea {
    display: block;
    margin: .25em 0
}

form input[type=text]:focus,
form input[type=password]:focus,
form input[type=email]:focus,
form input[type=url]:focus,
form input[type=date]:focus,
form input[type=month]:focus,
form input[type=time]:focus,
form input[type=datetime]:focus,
form input[type=datetime-local]:focus,
form input[type=week]:focus,
form input[type=number]:focus,
form input[type=search]:focus,
form input[type=tel]:focus,
form input[type=color]:focus,
form select:focus,
form textarea:focus {
    outline: 0;
    outline: thin dotted   \9;
    border-color: #129FEA
}
/*
form input[type=file]:focus,
form input[type=radio]:focus,
form input[type=checkbox]:focus {
    outline: thin dotted #333;
    outline: 1px auto #129FEA
}

form .pure-checkbox, form .pure-radio {
    margin: .5em 0;
    display: block
}

form input[type=text][disabled],
form input[type=password][disabled],
form input[type=email][disabled],
form input[type=url][disabled],
form input[type=date][disabled],
form input[type=month][disabled],
form input[type=time][disabled],
form input[type=datetime][disabled],
form input[type=datetime-local][disabled],
form input[type=week][disabled],
form input[type=number][disabled],
form input[type=search][disabled],
form input[type=tel][disabled],
form input[type=color][disabled],
form select[disabled],
form textarea[disabled] {
    cursor: not-allowed;
    background-color: #eaeded;
    color: #cad2d3
}

form input[readonly],
form select[readonly],
form textarea[readonly],
form input[readonly]:focus,
form select[readonly]:focus,
form textarea[readonly]:focus {
    background: #eee;
    color: #777;
    border-color: #ccc
}

form input:focus:invalid,
form textarea:focus:invalid,
form select:focus:invalid {
    color: #b94a48;
    border: 1px solid #ee5f5b
}

form input:focus:invalid:focus,
form textarea:focus:invalid:focus,
form select:focus:invalid:focus {
    border-color: #e9322d
}

form input[type=file]:focus:invalid:focus,
form input[type=radio]:focus:invalid:focus,
form input[type=checkbox]:focus:invalid:focus {
    outline-color: #e9322d
}

form select {
    border: $(base-border-achitecture);
    background-color: #fff
}

form select[multiple] {
    height: auto
}

form label {
    margin: .5em 0 .2em;
    font-size: 90%
}

form fieldset {
    margin: 0;
    padding: .35em 0 .75em;
    border: 0
}

form legend {
    display: block;
    width: 100%;
    padding: .3em 0;
    margin-bottom: .3em;
    font-size: 125%;
    color: #333;
    border-bottom: 1px solid #e5e5e5
}



/* ==========================================================================
	6. TABLE
   ========================================================================== */
/*table {
    border-collapse: collapse;
    border-spacing: 0;
    empty-cells: show;
    border: 1px solid #cbcbcb
}

table caption {
    color: #000;
    font: italic 85%/1 arial, sans-serif;
    padding: 1em 0;
    text-align: center
}

table td,
table th {
    border-left: 1px solid #cbcbcb;
    border-width: 0 0 0 1px;
    font-size: inherit;
    margin: 0;
    overflow: visible;
    padding: 6px 12px
}

table td:first-child,
table th:first-child {
    border-left-width: 0
}

table thead {
    background: $(dark-company-color);
    color: #000;
    text-align: left;
    vertical-align: bottom
}

table td {
    background-color: transparent
}


/*table tr:nth-child(2n-1) td {
    background-color: $(highlight-company-color)
}*/
/*table tr td {
    background-color: $(highlight-company-color)
}*/
/* ==========================================================================
	7. BUTTONS
   ========================================================================== 


:any(button,input[type='submit'],.button,.submit){
    display: inline-block;
    text-align: center;
    cursor: pointer;
}

:any(button,input[type='submit'],.button,.submit)::-moz-focus-inner{
    padding: 0;
    border: 0
}

:any(button,input[type='submit'],.button,.submit){
@include baseButton;
}

:any(button,input[type='submit'],.button,.submit):hover,
:any(button,input[type='submit'],.button,.submit):focus
{
    background-image: linear-gradient(transparent, rgba(0, 0, 0, .05) 40%, rgba(0, 0, 0, .1));
    box-shadow: 0 0 0 1px rgba(150, 150, 150, .15) inset, 0 0 6px rgba(150, 150, 150, .2) inset
}

:any(button,input[type='submit'],.button,.submit):focus
{
    outline: 0
}

:any(button,input[type='submit'],.button,.submit):active
{
    box-shadow: 0 0 0 1px rgba(0, 0, 0, .15) inset, 0 0 6px rgba(0, 0, 0, .2) inset
}

:any(button,input[type='submit'],.button,.submit)[disabled]:any(:hover,:focus)
{
    border: 0;
    background-image: none;
    filter: progid:DXImageTransform.Microsoft.gradient(enabled=false);
    filter: alpha(opacity=40);
    opacity: .4;
    cursor: not-allowed;
    box-shadow: none
}



/* ==========================================================================
    7. ACCORDION
    ========================================================================== */
.ce_accordion {
    display: block;
    border: 1px solid #ccc;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-clip: padding-box;
    }
.ce_accordionSingle {
    margin: 0 0 10px;
    }
.toggler {
    background-color: rgb(248,248,248);
    padding: 9.5px;
    cursor: pointer;
    }
.toggler:focus {
    outline: none;
    }
.accordion {
    padding: 9.5px;
    }

/* ==========================================================================
    8. SLIDER
    ========================================================================== */
.ce_sliderStart {
    background: rgb(248,248,248);
    position: relative;
    }
.content-slider {
    overflow: hidden;
    visibility: hidden;
    position: relative;
    }
.slider-wrapper {
    overflow: hidden;
    position: relative;
    }
.slider-wrapper > * {
    float: left;
    width: 100%;
    position: relative;
    }
.slider-control {
    height: 30px;
    }
.slider-control a,
.slider-control span {
    position: absolute;
    display: inline-block;
    }
.slider-control .slider-prev {
    top: 0;
    left: 0;
    height: 100%;
    width: 75px;
    z-index: 100;
    background: #ccc;
    text-indent: -9999px;
    }
.slider-control .slider-next {
    top: 0;
    right: 0;
    height: 100%;
    width: 75px;
    z-index: 100;
    background: #ccc;
    text-indent: -9999px;
    }
.slider-control .slider-menu {
    bottom: 10px;
    height: 30px;
    width: 50%;
    left: 50%;
    margin-left: -25%;
    font-size: 3rem;
    text-align: center;
    }
.slider-control .slider-menu b {
    color: #fff;
    cursor: pointer;
    }
.slider-control .slider-menu b.active {
    color: #333;
    }

/*!
 *  Font Awesome 4.7.0 by @davegandy - http://fontawesome.io - @fontawesome
 *  License - http://fontawesome.io/license (Font: SIL OFL 1.1, CSS: MIT License)
 */
@font-face {
    font-family: 'FontAwesome';
    src: url(font-awesome/fonts/fontawesome-webfont.eot?v=4.7.0);
    src: url(font-awesome/fonts/fontawesome-webfont.eot?#iefix&v=4.7.0) format('embedded-opentype'),url(font-awesome/fonts/fontawesome-webfont.woff2?v=4.7.0) format('woff2'),url(font-awesome/fonts/fontawesome-webfont.woff?v=4.7.0) format('woff'),url(font-awesome/fonts/fontawesome-webfont.ttf?v=4.7.0) format('truetype'),url(font-awesome/fonts/fontawesome-webfont.svg?v=4.7.0#fontawesomeregular) format('svg');
    font-weight: normal;
    font-style: normal;
    }
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    }
.fa-lg {
    font-size: 1.33333333em;
    line-height: .75em;
    vertical-align: -15%;
    }
.fa-2x {
    font-size: 2em;
    }
.fa-3x {
    font-size: 3em;
    }
.fa-4x {
    font-size: 4em;
    }
.fa-5x {
    font-size: 5em;
    }
.fa-fw {
    width: 1.28571429em;
    text-align: center;
    }
.fa-ul {
    padding-left: 0;
    margin-left: 2.14285714em;
    list-style-type: none;
    }
.fa-ul > li {
    position: relative;
    }
.fa-li {
    position: absolute;
    left: -2.14285714em;
    width: 2.14285714em;
    top: .14285714em;
    text-align: center;
    }
.fa-li.fa-lg {
    left: -1.85714286em;
    }
.fa-border {
    padding: .2em .25em .15em;
    border: solid .08em #eee;
    -webkit-border-radius: .1em;
    border-radius: .1em;
    }
.fa-pull-left {
    float: left;
    }
.fa-pull-right {
    float: right;
    }
.fa.fa-pull-left {
    margin-right: .3em;
    }
.fa.fa-pull-right {
    margin-left: .3em;
    }
.pull-right {
    float: right;
    }
.pull-left {
    float: left;
    }
.fa.pull-left {
    margin-right: .3em;
    }
.fa.pull-right {
    margin-left: .3em;
    }
.fa-spin {
    -webkit-animation: fa-spin 2s infinite linear;
    -moz-animation: fa-spin 2s infinite linear;
    -o-animation: fa-spin 2s infinite linear;
    animation: fa-spin 2s infinite linear;
    }
.fa-pulse {
    -webkit-animation: fa-spin 1s infinite steps(8);
    -moz-animation: fa-spin 1s infinite steps(8);
    -o-animation: fa-spin 1s infinite steps(8);
    animation: fa-spin 1s infinite steps(8);
    }
@-webkit-keyframes fa-spin {
0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

@-webkit-keyframes fa-spin {
0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

@-moz-keyframes fa-spin {
0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -moz-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

@-o-keyframes fa-spin {
0% {
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

@keyframes fa-spin {
0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    }
100% {
    -webkit-transform: rotate(359deg);
    -moz-transform: rotate(359deg);
    -ms-transform: rotate(359deg);
    -o-transform: rotate(359deg);
    transform: rotate(359deg);
    }
}

.fa-rotate-90 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=1)";
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    }
.fa-rotate-180 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2)";
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    }
.fa-rotate-270 {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=3)";
    -webkit-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -moz-transform: rotate(270deg);
    -o-transform: rotate(270deg);
    transform: rotate(270deg);
    }
.fa-flip-horizontal {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1)";
    -webkit-transform: scale(-1,1);
    -ms-transform: scale(-1,1);
    -moz-transform: scale(-1,1);
    -o-transform: scale(-1,1);
    transform: scale(-1,1);
    }
.fa-flip-vertical {
    -ms-filter: "progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1)";
    -webkit-transform: scale(1,-1);
    -ms-transform: scale(1,-1);
    -moz-transform: scale(1,-1);
    -o-transform: scale(1,-1);
    transform: scale(1,-1);
    }
:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
    filter: none;
    }
.fa-stack {
    position: relative;
    display: inline-block;
    width: 2em;
    height: 2em;
    line-height: 2em;
    vertical-align: middle;
    }
.fa-stack-1x,
.fa-stack-2x {
    position: absolute;
    left: 0;
    width: 100%;
    text-align: center;
    }
.fa-stack-1x {
    line-height: inherit;
    }
.fa-stack-2x {
    font-size: 2em;
    }
.fa-inverse {
    color: #fff;
    }
.fa-glass:before {
    content: "\f000";
    }
.fa-music:before {
    content: "\f001";
    }
.fa-search:before {
    content: "\f002";
    }
.fa-envelope-o:before {
    content: "\f003";
    }
.fa-heart:before {
    content: "\f004";
    }
.fa-star:before {
    content: "\f005";
    }
.fa-star-o:before {
    content: "\f006";
    }
.fa-user:before {
    content: "\f007";
    }
.fa-film:before {
    content: "\f008";
    }
.fa-th-large:before {
    content: "\f009";
    }
.fa-th:before {
    content: "\f00a";
    }
.fa-th-list:before {
    content: "\f00b";
    }
.fa-check:before {
    content: "\f00c";
    }
.fa-remove:before,
.fa-close:before,
.fa-times:before {
    content: "\f00d";
    }
.fa-search-plus:before {
    content: "\f00e";
    }
.fa-search-minus:before {
    content: "\f010";
    }
.fa-power-off:before {
    content: "\f011";
    }
.fa-signal:before {
    content: "\f012";
    }
.fa-gear:before,
.fa-cog:before {
    content: "\f013";
    }
.fa-trash-o:before {
    content: "\f014";
    }
.fa-home:before {
    content: "\f015";
    }
.fa-file-o:before {
    content: "\f016";
    }
.fa-clock-o:before {
    content: "\f017";
    }
.fa-road:before {
    content: "\f018";
    }
.fa-download:before {
    content: "\f019";
    }
.fa-arrow-circle-o-down:before {
    content: "\f01a";
    }
.fa-arrow-circle-o-up:before {
    content: "\f01b";
    }
.fa-inbox:before {
    content: "\f01c";
    }
.fa-play-circle-o:before {
    content: "\f01d";
    }
.fa-rotate-right:before,
.fa-repeat:before {
    content: "\f01e";
    }
.fa-refresh:before {
    content: "\f021";
    }
.fa-list-alt:before {
    content: "\f022";
    }
.fa-lock:before {
    content: "\f023";
    }
.fa-flag:before {
    content: "\f024";
    }
.fa-headphones:before {
    content: "\f025";
    }
.fa-volume-off:before {
    content: "\f026";
    }
.fa-volume-down:before {
    content: "\f027";
    }
.fa-volume-up:before {
    content: "\f028";
    }
.fa-qrcode:before {
    content: "\f029";
    }
.fa-barcode:before {
    content: "\f02a";
    }
.fa-tag:before {
    content: "\f02b";
    }
.fa-tags:before {
    content: "\f02c";
    }
.fa-book:before {
    content: "\f02d";
    }
.fa-bookmark:before {
    content: "\f02e";
    }
.fa-print:before {
    content: "\f02f";
    }
.fa-camera:before {
    content: "\f030";
    }
.fa-font:before {
    content: "\f031";
    }
.fa-bold:before {
    content: "\f032";
    }
.fa-italic:before {
    content: "\f033";
    }
.fa-text-height:before {
    content: "\f034";
    }
.fa-text-width:before {
    content: "\f035";
    }
.fa-align-left:before {
    content: "\f036";
    }
.fa-align-center:before {
    content: "\f037";
    }
.fa-align-right:before {
    content: "\f038";
    }
.fa-align-justify:before {
    content: "\f039";
    }
.fa-list:before {
    content: "\f03a";
    }
.fa-dedent:before,
.fa-outdent:before {
    content: "\f03b";
    }
.fa-indent:before {
    content: "\f03c";
    }
.fa-video-camera:before {
    content: "\f03d";
    }
.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
    content: "\f03e";
    }
.fa-pencil:before {
    content: "\f040";
    }
.fa-map-marker:before {
    content: "\f041";
    }
.fa-adjust:before {
    content: "\f042";
    }
.fa-tint:before {
    content: "\f043";
    }
.fa-edit:before,
.fa-pencil-square-o:before {
    content: "\f044";
    }
.fa-share-square-o:before {
    content: "\f045";
    }
.fa-check-square-o:before {
    content: "\f046";
    }
.fa-arrows:before {
    content: "\f047";
    }
.fa-step-backward:before {
    content: "\f048";
    }
.fa-fast-backward:before {
    content: "\f049";
    }
.fa-backward:before {
    content: "\f04a";
    }
.fa-play:before {
    content: "\f04b";
    }
.fa-pause:before {
    content: "\f04c";
    }
.fa-stop:before {
    content: "\f04d";
    }
.fa-forward:before {
    content: "\f04e";
    }
.fa-fast-forward:before {
    content: "\f050";
    }
.fa-step-forward:before {
    content: "\f051";
    }
.fa-eject:before {
    content: "\f052";
    }
.fa-chevron-left:before {
    content: "\f053";
    }
.fa-chevron-right:before {
    content: "\f054";
    }
.fa-plus-circle:before {
    content: "\f055";
    }
.fa-minus-circle:before {
    content: "\f056";
    }
.fa-times-circle:before {
    content: "\f057";
    }
.fa-check-circle:before {
    content: "\f058";
    }
.fa-question-circle:before {
    content: "\f059";
    }
.fa-info-circle:before {
    content: "\f05a";
    }
.fa-crosshairs:before {
    content: "\f05b";
    }
.fa-times-circle-o:before {
    content: "\f05c";
    }
.fa-check-circle-o:before {
    content: "\f05d";
    }
.fa-ban:before {
    content: "\f05e";
    }
.fa-arrow-left:before {
    content: "\f060";
    }
.fa-arrow-right:before {
    content: "\f061";
    }
.fa-arrow-up:before {
    content: "\f062";
    }
.fa-arrow-down:before {
    content: "\f063";
    }
.fa-mail-forward:before,
.fa-share:before {
    content: "\f064";
    }
.fa-expand:before {
    content: "\f065";
    }
.fa-compress:before {
    content: "\f066";
    }
.fa-plus:before {
    content: "\f067";
    }
.fa-minus:before {
    content: "\f068";
    }
.fa-asterisk:before {
    content: "\f069";
    }
.fa-exclamation-circle:before {
    content: "\f06a";
    }
.fa-gift:before {
    content: "\f06b";
    }
.fa-leaf:before {
    content: "\f06c";
    }
.fa-fire:before {
    content: "\f06d";
    }
.fa-eye:before {
    content: "\f06e";
    }
.fa-eye-slash:before {
    content: "\f070";
    }
.fa-warning:before,
.fa-exclamation-triangle:before {
    content: "\f071";
    }
.fa-plane:before {
    content: "\f072";
    }
.fa-calendar:before {
    content: "\f073";
    }
.fa-random:before {
    content: "\f074";
    }
.fa-comment:before {
    content: "\f075";
    }
.fa-magnet:before {
    content: "\f076";
    }
.fa-chevron-up:before {
    content: "\f077";
    }
.fa-chevron-down:before {
    content: "\f078";
    }
.fa-retweet:before {
    content: "\f079";
    }
.fa-shopping-cart:before {
    content: "\f07a";
    }
.fa-folder:before {
    content: "\f07b";
    }
.fa-folder-open:before {
    content: "\f07c";
    }
.fa-arrows-v:before {
    content: "\f07d";
    }
.fa-arrows-h:before {
    content: "\f07e";
    }
.fa-bar-chart-o:before,
.fa-bar-chart:before {
    content: "\f080";
    }
.fa-twitter-square:before {
    content: "\f081";
    }
.fa-facebook-square:before {
    content: "\f082";
    }
.fa-camera-retro:before {
    content: "\f083";
    }
.fa-key:before {
    content: "\f084";
    }
.fa-gears:before,
.fa-cogs:before {
    content: "\f085";
    }
.fa-comments:before {
    content: "\f086";
    }
.fa-thumbs-o-up:before {
    content: "\f087";
    }
.fa-thumbs-o-down:before {
    content: "\f088";
    }
.fa-star-half:before {
    content: "\f089";
    }
.fa-heart-o:before {
    content: "\f08a";
    }
.fa-sign-out:before {
    content: "\f08b";
    }
.fa-linkedin-square:before {
    content: "\f08c";
    }
.fa-thumb-tack:before {
    content: "\f08d";
    }
.fa-external-link:before {
    content: "\f08e";
    }
.fa-sign-in:before {
    content: "\f090";
    }
.fa-trophy:before {
    content: "\f091";
    }
.fa-github-square:before {
    content: "\f092";
    }
.fa-upload:before {
    content: "\f093";
    }
.fa-lemon-o:before {
    content: "\f094";
    }
.fa-phone:before {
    content: "\f095";
    }
.fa-square-o:before {
    content: "\f096";
    }
.fa-bookmark-o:before {
    content: "\f097";
    }
.fa-phone-square:before {
    content: "\f098";
    }
.fa-twitter:before {
    content: "\f099";
    }
.fa-facebook-f:before,
.fa-facebook:before {
    content: "\f09a";
    }
.fa-github:before {
    content: "\f09b";
    }
.fa-unlock:before {
    content: "\f09c";
    }
.fa-credit-card:before {
    content: "\f09d";
    }
.fa-feed:before,
.fa-rss:before {
    content: "\f09e";
    }
.fa-hdd-o:before {
    content: "\f0a0";
    }
.fa-bullhorn:before {
    content: "\f0a1";
    }
.fa-bell:before {
    content: "\f0f3";
    }
.fa-certificate:before {
    content: "\f0a3";
    }
.fa-hand-o-right:before {
    content: "\f0a4";
    }
.fa-hand-o-left:before {
    content: "\f0a5";
    }
.fa-hand-o-up:before {
    content: "\f0a6";
    }
.fa-hand-o-down:before {
    content: "\f0a7";
    }
.fa-arrow-circle-left:before {
    content: "\f0a8";
    }
.fa-arrow-circle-right:before {
    content: "\f0a9";
    }
.fa-arrow-circle-up:before {
    content: "\f0aa";
    }
.fa-arrow-circle-down:before {
    content: "\f0ab";
    }
.fa-globe:before {
    content: "\f0ac";
    }
.fa-wrench:before {
    content: "\f0ad";
    }
.fa-tasks:before {
    content: "\f0ae";
    }
.fa-filter:before {
    content: "\f0b0";
    }
.fa-briefcase:before {
    content: "\f0b1";
    }
.fa-arrows-alt:before {
    content: "\f0b2";
    }
.fa-group:before,
.fa-users:before {
    content: "\f0c0";
    }
.fa-chain:before,
.fa-link:before {
    content: "\f0c1";
    }
.fa-cloud:before {
    content: "\f0c2";
    }
.fa-flask:before {
    content: "\f0c3";
    }
.fa-cut:before,
.fa-scissors:before {
    content: "\f0c4";
    }
.fa-copy:before,
.fa-files-o:before {
    content: "\f0c5";
    }
.fa-paperclip:before {
    content: "\f0c6";
    }
.fa-save:before,
.fa-floppy-o:before {
    content: "\f0c7";
    }
.fa-square:before {
    content: "\f0c8";
    }
.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
    content: "\f0c9";
    }
.fa-list-ul:before {
    content: "\f0ca";
    }
.fa-list-ol:before {
    content: "\f0cb";
    }
.fa-strikethrough:before {
    content: "\f0cc";
    }
.fa-underline:before {
    content: "\f0cd";
    }
.fa-table:before {
    content: "\f0ce";
    }
.fa-magic:before {
    content: "\f0d0";
    }
.fa-truck:before {
    content: "\f0d1";
    }
.fa-pinterest:before {
    content: "\f0d2";
    }
.fa-pinterest-square:before {
    content: "\f0d3";
    }
.fa-google-plus-square:before {
    content: "\f0d4";
    }
.fa-google-plus:before {
    content: "\f0d5";
    }
.fa-money:before {
    content: "\f0d6";
    }
.fa-caret-down:before {
    content: "\f0d7";
    }
.fa-caret-up:before {
    content: "\f0d8";
    }
.fa-caret-left:before {
    content: "\f0d9";
    }
.fa-caret-right:before {
    content: "\f0da";
    }
.fa-columns:before {
    content: "\f0db";
    }
.fa-unsorted:before,
.fa-sort:before {
    content: "\f0dc";
    }
.fa-sort-down:before,
.fa-sort-desc:before {
    content: "\f0dd";
    }
.fa-sort-up:before,
.fa-sort-asc:before {
    content: "\f0de";
    }
.fa-envelope:before {
    content: "\f0e0";
    }
.fa-linkedin:before {
    content: "\f0e1";
    }
.fa-rotate-left:before,
.fa-undo:before {
    content: "\f0e2";
    }
.fa-legal:before,
.fa-gavel:before {
    content: "\f0e3";
    }
.fa-dashboard:before,
.fa-tachometer:before {
    content: "\f0e4";
    }
.fa-comment-o:before {
    content: "\f0e5";
    }
.fa-comments-o:before {
    content: "\f0e6";
    }
.fa-flash:before,
.fa-bolt:before {
    content: "\f0e7";
    }
.fa-sitemap:before {
    content: "\f0e8";
    }
.fa-umbrella:before {
    content: "\f0e9";
    }
.fa-paste:before,
.fa-clipboard:before {
    content: "\f0ea";
    }
.fa-lightbulb-o:before {
    content: "\f0eb";
    }
.fa-exchange:before {
    content: "\f0ec";
    }
.fa-cloud-download:before {
    content: "\f0ed";
    }
.fa-cloud-upload:before {
    content: "\f0ee";
    }
.fa-user-md:before {
    content: "\f0f0";
    }
.fa-stethoscope:before {
    content: "\f0f1";
    }
.fa-suitcase:before {
    content: "\f0f2";
    }
.fa-bell-o:before {
    content: "\f0a2";
    }
.fa-coffee:before {
    content: "\f0f4";
    }
.fa-cutlery:before {
    content: "\f0f5";
    }
.fa-file-text-o:before {
    content: "\f0f6";
    }
.fa-building-o:before {
    content: "\f0f7";
    }
.fa-hospital-o:before {
    content: "\f0f8";
    }
.fa-ambulance:before {
    content: "\f0f9";
    }
.fa-medkit:before {
    content: "\f0fa";
    }
.fa-fighter-jet:before {
    content: "\f0fb";
    }
.fa-beer:before {
    content: "\f0fc";
    }
.fa-h-square:before {
    content: "\f0fd";
    }
.fa-plus-square:before {
    content: "\f0fe";
    }
.fa-angle-double-left:before {
    content: "\f100";
    }
.fa-angle-double-right:before {
    content: "\f101";
    }
.fa-angle-double-up:before {
    content: "\f102";
    }
.fa-angle-double-down:before {
    content: "\f103";
    }
.fa-angle-left:before {
    content: "\f104";
    }
.fa-angle-right:before {
    content: "\f105";
    }
.fa-angle-up:before {
    content: "\f106";
    }
.fa-angle-down:before {
    content: "\f107";
    }
.fa-desktop:before {
    content: "\f108";
    }
.fa-laptop:before {
    content: "\f109";
    }
.fa-tablet:before {
    content: "\f10a";
    }
.fa-mobile-phone:before,
.fa-mobile:before {
    content: "\f10b";
    }
.fa-circle-o:before {
    content: "\f10c";
    }
.fa-quote-left:before {
    content: "\f10d";
    }
.fa-quote-right:before {
    content: "\f10e";
    }
.fa-spinner:before {
    content: "\f110";
    }
.fa-circle:before {
    content: "\f111";
    }
.fa-mail-reply:before,
.fa-reply:before {
    content: "\f112";
    }
.fa-github-alt:before {
    content: "\f113";
    }
.fa-folder-o:before {
    content: "\f114";
    }
.fa-folder-open-o:before {
    content: "\f115";
    }
.fa-smile-o:before {
    content: "\f118";
    }
.fa-frown-o:before {
    content: "\f119";
    }
.fa-meh-o:before {
    content: "\f11a";
    }
.fa-gamepad:before {
    content: "\f11b";
    }
.fa-keyboard-o:before {
    content: "\f11c";
    }
.fa-flag-o:before {
    content: "\f11d";
    }
.fa-flag-checkered:before {
    content: "\f11e";
    }
.fa-terminal:before {
    content: "\f120";
    }
.fa-code:before {
    content: "\f121";
    }
.fa-mail-reply-all:before,
.fa-reply-all:before {
    content: "\f122";
    }
.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
    content: "\f123";
    }
.fa-location-arrow:before {
    content: "\f124";
    }
.fa-crop:before {
    content: "\f125";
    }
.fa-code-fork:before {
    content: "\f126";
    }
.fa-unlink:before,
.fa-chain-broken:before {
    content: "\f127";
    }
.fa-question:before {
    content: "\f128";
    }
.fa-info:before {
    content: "\f129";
    }
.fa-exclamation:before {
    content: "\f12a";
    }
.fa-superscript:before {
    content: "\f12b";
    }
.fa-subscript:before {
    content: "\f12c";
    }
.fa-eraser:before {
    content: "\f12d";
    }
.fa-puzzle-piece:before {
    content: "\f12e";
    }
.fa-microphone:before {
    content: "\f130";
    }
.fa-microphone-slash:before {
    content: "\f131";
    }
.fa-shield:before {
    content: "\f132";
    }
.fa-calendar-o:before {
    content: "\f133";
    }
.fa-fire-extinguisher:before {
    content: "\f134";
    }
.fa-rocket:before {
    content: "\f135";
    }
.fa-maxcdn:before {
    content: "\f136";
    }
.fa-chevron-circle-left:before {
    content: "\f137";
    }
.fa-chevron-circle-right:before {
    content: "\f138";
    }
.fa-chevron-circle-up:before {
    content: "\f139";
    }
.fa-chevron-circle-down:before {
    content: "\f13a";
    }
.fa-html5:before {
    content: "\f13b";
    }
.fa-css3:before {
    content: "\f13c";
    }
.fa-anchor:before {
    content: "\f13d";
    }
.fa-unlock-alt:before {
    content: "\f13e";
    }
.fa-bullseye:before {
    content: "\f140";
    }
.fa-ellipsis-h:before {
    content: "\f141";
    }
.fa-ellipsis-v:before {
    content: "\f142";
    }
.fa-rss-square:before {
    content: "\f143";
    }
.fa-play-circle:before {
    content: "\f144";
    }
.fa-ticket:before {
    content: "\f145";
    }
.fa-minus-square:before {
    content: "\f146";
    }
.fa-minus-square-o:before {
    content: "\f147";
    }
.fa-level-up:before {
    content: "\f148";
    }
.fa-level-down:before {
    content: "\f149";
    }
.fa-check-square:before {
    content: "\f14a";
    }
.fa-pencil-square:before {
    content: "\f14b";
    }
.fa-external-link-square:before {
    content: "\f14c";
    }
.fa-share-square:before {
    content: "\f14d";
    }
.fa-compass:before {
    content: "\f14e";
    }
.fa-toggle-down:before,
.fa-caret-square-o-down:before {
    content: "\f150";
    }
.fa-toggle-up:before,
.fa-caret-square-o-up:before {
    content: "\f151";
    }
.fa-toggle-right:before,
.fa-caret-square-o-right:before {
    content: "\f152";
    }
.fa-euro:before,
.fa-eur:before {
    content: "\f153";
    }
.fa-gbp:before {
    content: "\f154";
    }
.fa-dollar:before,
.fa-usd:before {
    content: "\f155";
    }
.fa-rupee:before,
.fa-inr:before {
    content: "\f156";
    }
.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
    content: "\f157";
    }
.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
    content: "\f158";
    }
.fa-won:before,
.fa-krw:before {
    content: "\f159";
    }
.fa-bitcoin:before,
.fa-btc:before {
    content: "\f15a";
    }
.fa-file:before {
    content: "\f15b";
    }
.fa-file-text:before {
    content: "\f15c";
    }
.fa-sort-alpha-asc:before {
    content: "\f15d";
    }
.fa-sort-alpha-desc:before {
    content: "\f15e";
    }
.fa-sort-amount-asc:before {
    content: "\f160";
    }
.fa-sort-amount-desc:before {
    content: "\f161";
    }
.fa-sort-numeric-asc:before {
    content: "\f162";
    }
.fa-sort-numeric-desc:before {
    content: "\f163";
    }
.fa-thumbs-up:before {
    content: "\f164";
    }
.fa-thumbs-down:before {
    content: "\f165";
    }
.fa-youtube-square:before {
    content: "\f166";
    }
.fa-youtube:before {
    content: "\f167";
    }
.fa-xing:before {
    content: "\f168";
    }
.fa-xing-square:before {
    content: "\f169";
    }
.fa-youtube-play:before {
    content: "\f16a";
    }
.fa-dropbox:before {
    content: "\f16b";
    }
.fa-stack-overflow:before {
    content: "\f16c";
    }
.fa-instagram:before {
    content: "\f16d";
    }
.fa-flickr:before {
    content: "\f16e";
    }
.fa-adn:before {
    content: "\f170";
    }
.fa-bitbucket:before {
    content: "\f171";
    }
.fa-bitbucket-square:before {
    content: "\f172";
    }
.fa-tumblr:before {
    content: "\f173";
    }
.fa-tumblr-square:before {
    content: "\f174";
    }
.fa-long-arrow-down:before {
    content: "\f175";
    }
.fa-long-arrow-up:before {
    content: "\f176";
    }
.fa-long-arrow-left:before {
    content: "\f177";
    }
.fa-long-arrow-right:before {
    content: "\f178";
    }
.fa-apple:before {
    content: "\f179";
    }
.fa-windows:before {
    content: "\f17a";
    }
.fa-android:before {
    content: "\f17b";
    }
.fa-linux:before {
    content: "\f17c";
    }
.fa-dribbble:before {
    content: "\f17d";
    }
.fa-skype:before {
    content: "\f17e";
    }
.fa-foursquare:before {
    content: "\f180";
    }
.fa-trello:before {
    content: "\f181";
    }
.fa-female:before {
    content: "\f182";
    }
.fa-male:before {
    content: "\f183";
    }
.fa-gittip:before,
.fa-gratipay:before {
    content: "\f184";
    }
.fa-sun-o:before {
    content: "\f185";
    }
.fa-moon-o:before {
    content: "\f186";
    }
.fa-archive:before {
    content: "\f187";
    }
.fa-bug:before {
    content: "\f188";
    }
.fa-vk:before {
    content: "\f189";
    }
.fa-weibo:before {
    content: "\f18a";
    }
.fa-renren:before {
    content: "\f18b";
    }
.fa-pagelines:before {
    content: "\f18c";
    }
.fa-stack-exchange:before {
    content: "\f18d";
    }
.fa-arrow-circle-o-right:before {
    content: "\f18e";
    }
.fa-arrow-circle-o-left:before {
    content: "\f190";
    }
.fa-toggle-left:before,
.fa-caret-square-o-left:before {
    content: "\f191";
    }
.fa-dot-circle-o:before {
    content: "\f192";
    }
.fa-wheelchair:before {
    content: "\f193";
    }
.fa-vimeo-square:before {
    content: "\f194";
    }
.fa-turkish-lira:before,
.fa-try:before {
    content: "\f195";
    }
.fa-plus-square-o:before {
    content: "\f196";
    }
.fa-space-shuttle:before {
    content: "\f197";
    }
.fa-slack:before {
    content: "\f198";
    }
.fa-envelope-square:before {
    content: "\f199";
    }
.fa-wordpress:before {
    content: "\f19a";
    }
.fa-openid:before {
    content: "\f19b";
    }
.fa-institution:before,
.fa-bank:before,
.fa-university:before {
    content: "\f19c";
    }
.fa-mortar-board:before,
.fa-graduation-cap:before {
    content: "\f19d";
    }
.fa-yahoo:before {
    content: "\f19e";
    }
.fa-google:before {
    content: "\f1a0";
    }
.fa-reddit:before {
    content: "\f1a1";
    }
.fa-reddit-square:before {
    content: "\f1a2";
    }
.fa-stumbleupon-circle:before {
    content: "\f1a3";
    }
.fa-stumbleupon:before {
    content: "\f1a4";
    }
.fa-delicious:before {
    content: "\f1a5";
    }
.fa-digg:before {
    content: "\f1a6";
    }
.fa-pied-piper-pp:before {
    content: "\f1a7";
    }
.fa-pied-piper-alt:before {
    content: "\f1a8";
    }
.fa-drupal:before {
    content: "\f1a9";
    }
.fa-joomla:before {
    content: "\f1aa";
    }
.fa-language:before {
    content: "\f1ab";
    }
.fa-fax:before {
    content: "\f1ac";
    }
.fa-building:before {
    content: "\f1ad";
    }
.fa-child:before {
    content: "\f1ae";
    }
.fa-paw:before {
    content: "\f1b0";
    }
.fa-spoon:before {
    content: "\f1b1";
    }
.fa-cube:before {
    content: "\f1b2";
    }
.fa-cubes:before {
    content: "\f1b3";
    }
.fa-behance:before {
    content: "\f1b4";
    }
.fa-behance-square:before {
    content: "\f1b5";
    }
.fa-steam:before {
    content: "\f1b6";
    }
.fa-steam-square:before {
    content: "\f1b7";
    }
.fa-recycle:before {
    content: "\f1b8";
    }
.fa-automobile:before,
.fa-car:before {
    content: "\f1b9";
    }
.fa-cab:before,
.fa-taxi:before {
    content: "\f1ba";
    }
.fa-tree:before {
    content: "\f1bb";
    }
.fa-spotify:before {
    content: "\f1bc";
    }
.fa-deviantart:before {
    content: "\f1bd";
    }
.fa-soundcloud:before {
    content: "\f1be";
    }
.fa-database:before {
    content: "\f1c0";
    }
.fa-file-pdf-o:before {
    content: "\f1c1";
    }
.fa-file-word-o:before {
    content: "\f1c2";
    }
.fa-file-excel-o:before {
    content: "\f1c3";
    }
.fa-file-powerpoint-o:before {
    content: "\f1c4";
    }
.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
    content: "\f1c5";
    }
.fa-file-zip-o:before,
.fa-file-archive-o:before {
    content: "\f1c6";
    }
.fa-file-sound-o:before,
.fa-file-audio-o:before {
    content: "\f1c7";
    }
.fa-file-movie-o:before,
.fa-file-video-o:before {
    content: "\f1c8";
    }
.fa-file-code-o:before {
    content: "\f1c9";
    }
.fa-vine:before {
    content: "\f1ca";
    }
.fa-codepen:before {
    content: "\f1cb";
    }
.fa-jsfiddle:before {
    content: "\f1cc";
    }
.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
    content: "\f1cd";
    }
.fa-circle-o-notch:before {
    content: "\f1ce";
    }
.fa-ra:before,
.fa-resistance:before,
.fa-rebel:before {
    content: "\f1d0";
    }
.fa-ge:before,
.fa-empire:before {
    content: "\f1d1";
    }
.fa-git-square:before {
    content: "\f1d2";
    }
.fa-git:before {
    content: "\f1d3";
    }
.fa-y-combinator-square:before,
.fa-yc-square:before,
.fa-hacker-news:before {
    content: "\f1d4";
    }
.fa-tencent-weibo:before {
    content: "\f1d5";
    }
.fa-qq:before {
    content: "\f1d6";
    }
.fa-wechat:before,
.fa-weixin:before {
    content: "\f1d7";
    }
.fa-send:before,
.fa-paper-plane:before {
    content: "\f1d8";
    }
.fa-send-o:before,
.fa-paper-plane-o:before {
    content: "\f1d9";
    }
.fa-history:before {
    content: "\f1da";
    }
.fa-circle-thin:before {
    content: "\f1db";
    }
.fa-header:before {
    content: "\f1dc";
    }
.fa-paragraph:before {
    content: "\f1dd";
    }
.fa-sliders:before {
    content: "\f1de";
    }
.fa-share-alt:before {
    content: "\f1e0";
    }
.fa-share-alt-square:before {
    content: "\f1e1";
    }
.fa-bomb:before {
    content: "\f1e2";
    }
.fa-soccer-ball-o:before,
.fa-futbol-o:before {
    content: "\f1e3";
    }
.fa-tty:before {
    content: "\f1e4";
    }
.fa-binoculars:before {
    content: "\f1e5";
    }
.fa-plug:before {
    content: "\f1e6";
    }
.fa-slideshare:before {
    content: "\f1e7";
    }
.fa-twitch:before {
    content: "\f1e8";
    }
.fa-yelp:before {
    content: "\f1e9";
    }
.fa-newspaper-o:before {
    content: "\f1ea";
    }
.fa-wifi:before {
    content: "\f1eb";
    }
.fa-calculator:before {
    content: "\f1ec";
    }
.fa-paypal:before {
    content: "\f1ed";
    }
.fa-google-wallet:before {
    content: "\f1ee";
    }
.fa-cc-visa:before {
    content: "\f1f0";
    }
.fa-cc-mastercard:before {
    content: "\f1f1";
    }
.fa-cc-discover:before {
    content: "\f1f2";
    }
.fa-cc-amex:before {
    content: "\f1f3";
    }
.fa-cc-paypal:before {
    content: "\f1f4";
    }
.fa-cc-stripe:before {
    content: "\f1f5";
    }
.fa-bell-slash:before {
    content: "\f1f6";
    }
.fa-bell-slash-o:before {
    content: "\f1f7";
    }
.fa-trash:before {
    content: "\f1f8";
    }
.fa-copyright:before {
    content: "\f1f9";
    }
.fa-at:before {
    content: "\f1fa";
    }
.fa-eyedropper:before {
    content: "\f1fb";
    }
.fa-paint-brush:before {
    content: "\f1fc";
    }
.fa-birthday-cake:before {
    content: "\f1fd";
    }
.fa-area-chart:before {
    content: "\f1fe";
    }
.fa-pie-chart:before {
    content: "\f200";
    }
.fa-line-chart:before {
    content: "\f201";
    }
.fa-lastfm:before {
    content: "\f202";
    }
.fa-lastfm-square:before {
    content: "\f203";
    }
.fa-toggle-off:before {
    content: "\f204";
    }
.fa-toggle-on:before {
    content: "\f205";
    }
.fa-bicycle:before {
    content: "\f206";
    }
.fa-bus:before {
    content: "\f207";
    }
.fa-ioxhost:before {
    content: "\f208";
    }
.fa-angellist:before {
    content: "\f209";
    }
.fa-cc:before {
    content: "\f20a";
    }
.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
    content: "\f20b";
    }
.fa-meanpath:before {
    content: "\f20c";
    }
.fa-buysellads:before {
    content: "\f20d";
    }
.fa-connectdevelop:before {
    content: "\f20e";
    }
.fa-dashcube:before {
    content: "\f210";
    }
.fa-forumbee:before {
    content: "\f211";
    }
.fa-leanpub:before {
    content: "\f212";
    }
.fa-sellsy:before {
    content: "\f213";
    }
.fa-shirtsinbulk:before {
    content: "\f214";
    }
.fa-simplybuilt:before {
    content: "\f215";
    }
.fa-skyatlas:before {
    content: "\f216";
    }
.fa-cart-plus:before {
    content: "\f217";
    }
.fa-cart-arrow-down:before {
    content: "\f218";
    }
.fa-diamond:before {
    content: "\f219";
    }
.fa-ship:before {
    content: "\f21a";
    }
.fa-user-secret:before {
    content: "\f21b";
    }
.fa-motorcycle:before {
    content: "\f21c";
    }
.fa-street-view:before {
    content: "\f21d";
    }
.fa-heartbeat:before {
    content: "\f21e";
    }
.fa-venus:before {
    content: "\f221";
    }
.fa-mars:before {
    content: "\f222";
    }
.fa-mercury:before {
    content: "\f223";
    }
.fa-intersex:before,
.fa-transgender:before {
    content: "\f224";
    }
.fa-transgender-alt:before {
    content: "\f225";
    }
.fa-venus-double:before {
    content: "\f226";
    }
.fa-mars-double:before {
    content: "\f227";
    }
.fa-venus-mars:before {
    content: "\f228";
    }
.fa-mars-stroke:before {
    content: "\f229";
    }
.fa-mars-stroke-v:before {
    content: "\f22a";
    }
.fa-mars-stroke-h:before {
    content: "\f22b";
    }
.fa-neuter:before {
    content: "\f22c";
    }
.fa-genderless:before {
    content: "\f22d";
    }
.fa-facebook-official:before {
    content: "\f230";
    }
.fa-pinterest-p:before {
    content: "\f231";
    }
.fa-whatsapp:before {
    content: "\f232";
    }
.fa-server:before {
    content: "\f233";
    }
.fa-user-plus:before {
    content: "\f234";
    }
.fa-user-times:before {
    content: "\f235";
    }
.fa-hotel:before,
.fa-bed:before {
    content: "\f236";
    }
.fa-viacoin:before {
    content: "\f237";
    }
.fa-train:before {
    content: "\f238";
    }
.fa-subway:before {
    content: "\f239";
    }
.fa-medium:before {
    content: "\f23a";
    }
.fa-yc:before,
.fa-y-combinator:before {
    content: "\f23b";
    }
.fa-optin-monster:before {
    content: "\f23c";
    }
.fa-opencart:before {
    content: "\f23d";
    }
.fa-expeditedssl:before {
    content: "\f23e";
    }
.fa-battery-4:before,
.fa-battery:before,
.fa-battery-full:before {
    content: "\f240";
    }
.fa-battery-3:before,
.fa-battery-three-quarters:before {
    content: "\f241";
    }
.fa-battery-2:before,
.fa-battery-half:before {
    content: "\f242";
    }
.fa-battery-1:before,
.fa-battery-quarter:before {
    content: "\f243";
    }
.fa-battery-0:before,
.fa-battery-empty:before {
    content: "\f244";
    }
.fa-mouse-pointer:before {
    content: "\f245";
    }
.fa-i-cursor:before {
    content: "\f246";
    }
.fa-object-group:before {
    content: "\f247";
    }
.fa-object-ungroup:before {
    content: "\f248";
    }
.fa-sticky-note:before {
    content: "\f249";
    }
.fa-sticky-note-o:before {
    content: "\f24a";
    }
.fa-cc-jcb:before {
    content: "\f24b";
    }
.fa-cc-diners-club:before {
    content: "\f24c";
    }
.fa-clone:before {
    content: "\f24d";
    }
.fa-balance-scale:before {
    content: "\f24e";
    }
.fa-hourglass-o:before {
    content: "\f250";
    }
.fa-hourglass-1:before,
.fa-hourglass-start:before {
    content: "\f251";
    }
.fa-hourglass-2:before,
.fa-hourglass-half:before {
    content: "\f252";
    }
.fa-hourglass-3:before,
.fa-hourglass-end:before {
    content: "\f253";
    }
.fa-hourglass:before {
    content: "\f254";
    }
.fa-hand-grab-o:before,
.fa-hand-rock-o:before {
    content: "\f255";
    }
.fa-hand-stop-o:before,
.fa-hand-paper-o:before {
    content: "\f256";
    }
.fa-hand-scissors-o:before {
    content: "\f257";
    }
.fa-hand-lizard-o:before {
    content: "\f258";
    }
.fa-hand-spock-o:before {
    content: "\f259";
    }
.fa-hand-pointer-o:before {
    content: "\f25a";
    }
.fa-hand-peace-o:before {
    content: "\f25b";
    }
.fa-trademark:before {
    content: "\f25c";
    }
.fa-registered:before {
    content: "\f25d";
    }
.fa-creative-commons:before {
    content: "\f25e";
    }
.fa-gg:before {
    content: "\f260";
    }
.fa-gg-circle:before {
    content: "\f261";
    }
.fa-tripadvisor:before {
    content: "\f262";
    }
.fa-odnoklassniki:before {
    content: "\f263";
    }
.fa-odnoklassniki-square:before {
    content: "\f264";
    }
.fa-get-pocket:before {
    content: "\f265";
    }
.fa-wikipedia-w:before {
    content: "\f266";
    }
.fa-safari:before {
    content: "\f267";
    }
.fa-chrome:before {
    content: "\f268";
    }
.fa-firefox:before {
    content: "\f269";
    }
.fa-opera:before {
    content: "\f26a";
    }
.fa-internet-explorer:before {
    content: "\f26b";
    }
.fa-tv:before,
.fa-television:before {
    content: "\f26c";
    }
.fa-contao:before {
    content: "\f26d";
    }
.fa-500px:before {
    content: "\f26e";
    }
.fa-amazon:before {
    content: "\f270";
    }
.fa-calendar-plus-o:before {
    content: "\f271";
    }
.fa-calendar-minus-o:before {
    content: "\f272";
    }
.fa-calendar-times-o:before {
    content: "\f273";
    }
.fa-calendar-check-o:before {
    content: "\f274";
    }
.fa-industry:before {
    content: "\f275";
    }
.fa-map-pin:before {
    content: "\f276";
    }
.fa-map-signs:before {
    content: "\f277";
    }
.fa-map-o:before {
    content: "\f278";
    }
.fa-map:before {
    content: "\f279";
    }
.fa-commenting:before {
    content: "\f27a";
    }
.fa-commenting-o:before {
    content: "\f27b";
    }
.fa-houzz:before {
    content: "\f27c";
    }
.fa-vimeo:before {
    content: "\f27d";
    }
.fa-black-tie:before {
    content: "\f27e";
    }
.fa-fonticons:before {
    content: "\f280";
    }
.fa-reddit-alien:before {
    content: "\f281";
    }
.fa-edge:before {
    content: "\f282";
    }
.fa-credit-card-alt:before {
    content: "\f283";
    }
.fa-codiepie:before {
    content: "\f284";
    }
.fa-modx:before {
    content: "\f285";
    }
.fa-fort-awesome:before {
    content: "\f286";
    }
.fa-usb:before {
    content: "\f287";
    }
.fa-product-hunt:before {
    content: "\f288";
    }
.fa-mixcloud:before {
    content: "\f289";
    }
.fa-scribd:before {
    content: "\f28a";
    }
.fa-pause-circle:before {
    content: "\f28b";
    }
.fa-pause-circle-o:before {
    content: "\f28c";
    }
.fa-stop-circle:before {
    content: "\f28d";
    }
.fa-stop-circle-o:before {
    content: "\f28e";
    }
.fa-shopping-bag:before {
    content: "\f290";
    }
.fa-shopping-basket:before {
    content: "\f291";
    }
.fa-hashtag:before {
    content: "\f292";
    }
.fa-bluetooth:before {
    content: "\f293";
    }
.fa-bluetooth-b:before {
    content: "\f294";
    }
.fa-percent:before {
    content: "\f295";
    }
.fa-gitlab:before {
    content: "\f296";
    }
.fa-wpbeginner:before {
    content: "\f297";
    }
.fa-wpforms:before {
    content: "\f298";
    }
.fa-envira:before {
    content: "\f299";
    }
.fa-universal-access:before {
    content: "\f29a";
    }
.fa-wheelchair-alt:before {
    content: "\f29b";
    }
.fa-question-circle-o:before {
    content: "\f29c";
    }
.fa-blind:before {
    content: "\f29d";
    }
.fa-audio-description:before {
    content: "\f29e";
    }
.fa-volume-control-phone:before {
    content: "\f2a0";
    }
.fa-braille:before {
    content: "\f2a1";
    }
.fa-assistive-listening-systems:before {
    content: "\f2a2";
    }
.fa-asl-interpreting:before,
.fa-american-sign-language-interpreting:before {
    content: "\f2a3";
    }
.fa-deafness:before,
.fa-hard-of-hearing:before,
.fa-deaf:before {
    content: "\f2a4";
    }
.fa-glide:before {
    content: "\f2a5";
    }
.fa-glide-g:before {
    content: "\f2a6";
    }
.fa-signing:before,
.fa-sign-language:before {
    content: "\f2a7";
    }
.fa-low-vision:before {
    content: "\f2a8";
    }
.fa-viadeo:before {
    content: "\f2a9";
    }
.fa-viadeo-square:before {
    content: "\f2aa";
    }
.fa-snapchat:before {
    content: "\f2ab";
    }
.fa-snapchat-ghost:before {
    content: "\f2ac";
    }
.fa-snapchat-square:before {
    content: "\f2ad";
    }
.fa-pied-piper:before {
    content: "\f2ae";
    }
.fa-first-order:before {
    content: "\f2b0";
    }
.fa-yoast:before {
    content: "\f2b1";
    }
.fa-themeisle:before {
    content: "\f2b2";
    }
.fa-google-plus-circle:before,
.fa-google-plus-official:before {
    content: "\f2b3";
    }
.fa-fa:before,
.fa-font-awesome:before {
    content: "\f2b4";
    }
.fa-handshake-o:before {
    content: "\f2b5";
    }
.fa-envelope-open:before {
    content: "\f2b6";
    }
.fa-envelope-open-o:before {
    content: "\f2b7";
    }
.fa-linode:before {
    content: "\f2b8";
    }
.fa-address-book:before {
    content: "\f2b9";
    }
.fa-address-book-o:before {
    content: "\f2ba";
    }
.fa-vcard:before,
.fa-address-card:before {
    content: "\f2bb";
    }
.fa-vcard-o:before,
.fa-address-card-o:before {
    content: "\f2bc";
    }
.fa-user-circle:before {
    content: "\f2bd";
    }
.fa-user-circle-o:before {
    content: "\f2be";
    }
.fa-user-o:before {
    content: "\f2c0";
    }
.fa-id-badge:before {
    content: "\f2c1";
    }
.fa-drivers-license:before,
.fa-id-card:before {
    content: "\f2c2";
    }
.fa-drivers-license-o:before,
.fa-id-card-o:before {
    content: "\f2c3";
    }
.fa-quora:before {
    content: "\f2c4";
    }
.fa-free-code-camp:before {
    content: "\f2c5";
    }
.fa-telegram:before {
    content: "\f2c6";
    }
.fa-thermometer-4:before,
.fa-thermometer:before,
.fa-thermometer-full:before {
    content: "\f2c7";
    }
.fa-thermometer-3:before,
.fa-thermometer-three-quarters:before {
    content: "\f2c8";
    }
.fa-thermometer-2:before,
.fa-thermometer-half:before {
    content: "\f2c9";
    }
.fa-thermometer-1:before,
.fa-thermometer-quarter:before {
    content: "\f2ca";
    }
.fa-thermometer-0:before,
.fa-thermometer-empty:before {
    content: "\f2cb";
    }
.fa-shower:before {
    content: "\f2cc";
    }
.fa-bathtub:before,
.fa-s15:before,
.fa-bath:before {
    content: "\f2cd";
    }
.fa-podcast:before {
    content: "\f2ce";
    }
.fa-window-maximize:before {
    content: "\f2d0";
    }
.fa-window-minimize:before {
    content: "\f2d1";
    }
.fa-window-restore:before {
    content: "\f2d2";
    }
.fa-times-rectangle:before,
.fa-window-close:before {
    content: "\f2d3";
    }
.fa-times-rectangle-o:before,
.fa-window-close-o:before {
    content: "\f2d4";
    }
.fa-bandcamp:before {
    content: "\f2d5";
    }
.fa-grav:before {
    content: "\f2d6";
    }
.fa-etsy:before {
    content: "\f2d7";
    }
.fa-imdb:before {
    content: "\f2d8";
    }
.fa-ravelry:before {
    content: "\f2d9";
    }
.fa-eercast:before {
    content: "\f2da";
    }
.fa-microchip:before {
    content: "\f2db";
    }
.fa-snowflake-o:before {
    content: "\f2dc";
    }
.fa-superpowers:before {
    content: "\f2dd";
    }
.fa-wpexplorer:before {
    content: "\f2de";
    }
.fa-meetup:before {
    content: "\f2e0";
    }
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    border: 0;
    }
.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
    }

/* theme dependent imports */
/* CSS Document */
/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Christian Osterhage @ pixelproducts osterhage@pixelproducts.de.

 *
 * Table of contents
 * -----------------------------------------
 * 1. HTML Elements
 * 2. LAYOUT
 * 3. CE_ Features
 * 4. MOD_ Features
 * 5. MODULES
 */
/* ==========================================================================
	1. 
   ========================================================================== */
/* example seperator
========================================================================== */
/**
 * Short description using Doxygen-style comment format
 *
 *
 */
/* ==========================================================================
   1. HTML Elements
   ========================================================================== */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    }
html {
    font-family: 'Raleway',Helvetica,sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    height: 100%;
    }
body {
    font-size: 100%;
    height: 100%;
    color: rgb(102,102,102);
    margin-top: 0;
    position: relative;
    }
b,
strong {
    font-weight: bold;
    }
ul {
    margin: 0;
    padding: 0;
    }
ul,
li {
    list-style-type: none;
    }
.center {
    margin: 0 auto;
    max-width: 1200px;
    }
.clear {
    clear: both;
    }
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    font-size: 0;
    height: 0;
    visibility: hidden;
    }
a {
    color: rgb(255,153,0);
    text-decoration: none;
    }
a:hover {
    color: rgb(5,5,5);
    }
a:active,
a:visited {
    color: rgb(255,153,0);
    }
a:focus {
    outline: none;
    }
.float_left {
    float: left;
    }
p {
    margin-bottom: .8rem;
    }
.ce_text {
    font-size: 1rem;
    }

/* Überchriftenim Textbereich
========================================================================== */
h1 {
    font-size: 1.4rem;
    margin-bottom: 10px;
    margin-top: 5px;
    text-transform: uppercase;
    color: rgb(82,82,82);
    }
h2 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1.8rem;
    text-transform: uppercase;
    color: rgb(182,182,182);
    }
h2.dunkel {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-transform: uppercase;
    color: rgb(82,82,82);
    }
h3 {
    font-size: 1.2rem;
    font-weight: 400;
    font-size: 1.3rem;
    text-transform: uppercase;
    color: rgb(82,82,82);
    }
h3.iconbox_titel {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: .1rem;
    margin-bottom: 0;
    color: #b6b6b6;
    margin-bottom: .5rem;
    }
h4 {
    margin: 0;
    color: rgb(82,82,82);
    text-transform: uppercase;
    }
h5 {
    margin: 0;
    text-transform: uppercase;
    }

/*Div centriert die Überschrift*/
.headline_abgesetzt {
    margin: 4rem 0 2rem 0;
    text-align: center;
    }

/*Div centriert die Überschrift am Seitenanfang mit größerem Margin!*/
.headline_abgesetzt_top {
    margin: 0 0 2.4rem;
    text-align: center;
    }

/*Unterstrich unter der Headline als :after Element des h umgebenden Divs!*/
.headline_abgesetzt:after,
.headline_abgesetzt_top:after {
    background: #ff9800 none repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 2px;
    width: 8rem;
    }
.headline_abgesetzt h1,
.headline_abgesetzt_top h1 {
    font-size: 1.7rem;
    letter-spacing: .1rem;
    }
#postkarten-kategorien .headline_abgesetzt h1,
#postkarten-kategorien-b2b .headline_abgesetzt h1 {
    font-size: 1.2rem;
    letter-spacing: .1rem;
    }
.headline_abgesetzt h2,
.headline_abgesetzt_top h2 {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: .1rem;
    }
h1.unterstrich,
h2.unterstrich,
h3.unterstrich,
h4.unterstrich {
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214,214,214);
    color: rgb(82,82,82);
    }
h1.unterstrich:after,
h2.unterstrich:after,
h3.unterstrich:after,
h4.unterstrich:after {
    width: 50px;
    height: 2px;
    position: relative;
    display: block;
    margin-top: 7px;
    margin-bottom: -11px;
    background-color: #F90;
    font: 0 FontAwesome;
    content: ".";
    }
h1.unterstrich_50,
h2.unterstrich_50,
h3.unterstrich_50,
h4.unterstrich_50,
h5.unterstrich_50 {
    color: rgb(82,82,82);
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214,214,214);
    width: 50%;
    font-weight: bold;
    }
h1.unterstrich-70,
h2.unterstrich-70,
h3.unterstrich-70,
h4.unterstrich-70,
h5.unterstrich-70 {
    width: 70%;
    margin-bottom: 1rem;
    }
h1.unterstrich_50:after,
h2.unterstrich_50:after,
h3.unterstrich_50:after,
h4.unterstrich_50:after,
h5.unterstrich_50:after,
h1.unterstrich-70:after,
h2.unterstrich-70:after,
h3.unterstrich-70:after,
h4.unterstrich-70:after,
h5.unterstrich-70:after {
    width: 50px;
    height: 2px;
    position: relative;
    display: block;
    margin-top: 7px;
    margin-bottom: -11px;
    background-color: #F90;
    font: 0 FontAwesome;
    content: ".";
    }
.headline_rechts {
    margin-left: 50%;
    }
h2.h2_rechts {
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214,214,214);
    width: 100%;
    text-align: right;
    position: relative;
    }
h2.h2_rechts:after {
    width: 50px;
    height: 2px;
    right: 0;
    position: absolute;
    display: block;
    margin-top: 8px;
    margin-bottom: -11px;
    background-color: #F90;
    font: 0 FontAwesome;
    content: ".";
    }

/* Buttons 
========================================================================== */
/* Buttons Ajax Box Warenkorb
========================================================================== */
/* Buttons isotope seite anmeldung
========================================================================== */
a.button-mithintergrund {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: #f90;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #FFF;
    display: inline-block;
    font-size: .875rem;
    font-weight: 400;
    padding: 8px 30px 9px;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    }

/* ==========================================================================
	Margins
========================================================================== */
.margin-top-normal {
    margin-top: 2rem;
    }
.margin-top-gross {
    margin-top: 4.5rem;
    }
.margin-top-sehr-gross {
    margin-top: 8rem;
    }
.margin-bottom-klein {
    margin-bottom: 1.5rem;
    }
.margin-bottom-normal {
    margin-bottom: 2.5rem;
    }
.margin-bottom-gross {
    margin-bottom: 4.5rem;
    }

/* ==========================================================================
	Layout allgemein-wrapper-header-main-footer
========================================================================== */
/* ==========================================================================
	wrapper
========================================================================== */
#wrapper {
    width: 100%;
    background-image: url(img/muster_final.png);
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }

/* ==========================================================================
	header
========================================================================== */
/* header logo
========================================================================== */
.header-top-outer-wrapper {
    margin: 0 auto;
    max-width: 1350px;
    background: #FFF;
    }
.header-top-wrapper {
    position: relative;
    min-height: 3rem;
    }
#header .image_container img,
#footer-scroll-top .image_container img {
    display: block;
    }
#header-bottom-fixed {
    z-index: 50;
    position: relative;
    background-color: rgb(232,232,232);
    }
.scroll-fix {
    -webkit-box-shadow: 0 2px 4px rgba(0,0,0,.2);
    box-shadow: 0 2px 4px rgba(0,0,0,.2);
    background-color: # F00;
    }
.logo figure {
    width: 100%;
    padding-top: 1.3rem;
    -webkit-transition: all .5s ease-in-out;
    -moz-transition: all .2s ease-out;
    -o-transition: all .2s ease-out;
    transition: all .2s ease-out;
    }
.scroll-fix .logo figure {
    padding-top: .5rem;
    height: 30px;
    width: 200px;
    }
.bottom-navigation-wrapper {
    position: relative;
    }
#margin .inside {
    height: 10px;
    max-width: 1350px;
    margin: auto;
    background-color: #fff;
    }

/* ==========================================================================
	Main content
========================================================================== */
.container-outer {
    margin-bottom: 10rem;
    background-color: #FFF;
    margin: auto;
    max-width: 1350px;
    }
#container {
    background-color: #FFF;
    margin: auto;
    max-width: 1200px;
    }
#main .inside {
    padding-top: .5rem;
    padding-bottom: 3.5rem;
    }
#left .inside {
    margin-top: 11rem;
    }

/* ==========================================================================
	footer 
   ========================================================================== */
/* ==========================================================================
	serviceleiste popup texte per hover eigeblendet
   ========================================================================== */
#serviceleiste {
    border-top: rgb(232,232,232) 1px solid;
    border-bottom: rgb(232,232,232) 1px solid;
    background-color: rgb(244,244,242);
    }
#serviceleiste .servicetext-headline {
    font-family: 'Open Sans',sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    }
#serviceleiste h3 {
    font-size: .9rem;
    font-weight: bold;
    }
#serviceleiste .ce_text {
    font-size: .9rem;
    }
.rechnung,
.versand,
.sicher,
.widerruf {
    position: relative;
    padding-top: 1rem;
    padding-bottom: 1rem;
    }
.popup {
    padding: 0 1rem;
    }
.rechnung_text,
.versand_text,
.sicher_text,
.widerruf_text {
    position: absolute;
    display: none;
    overflow: hidden;
    border: solid rgb(214,214,214);
    border-width: 1px 1px 2px;
    -webkit-border-radius: 5px 5px 3px 3px;
    border-radius: 5px 5px 3px 3px;
    background-color: #fff;
    margin-bottom: 20px;
    -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.3);
    padding: 20px 10px;
    }
.rechnung:hover > .rechnung_text {
    position: absolute;
    display: block;
    top: -100px;
    left: -20px;
    }
.rechnung_text {
    width: 300px;
    height: 100px;
    }
.versand_text {
    width: 300px;
    height: 100px;
    }
.versand:hover > .versand_text {
    position: absolute;
    display: block;
    top: -100px;
    left: -40px;
    }
.sicher_text {
    width: 300px;
    height: 130px;
    }
.sicher:hover > .sicher_text {
    position: absolute;
    display: block;
    top: -130px;
    left: -40px;
    }
.widerruf_text {
    width: 340px;
    height: 140px;
    }
.widerruf:hover > .widerruf_text {
    position: absolute;
    display: block;
    top: -140px;
    left: -40px;
    }

/* ==========================================================================
	follow us
   ========================================================================== */
#follow-us {
    padding: 4rem 0;
    }
#follow-us {
    padding-bottom: 2rem;
    padding-top: 2rem;
    }
#iconliste {
    text-align: center;
    }
span.facebook-icon:after {
    font-family: FontAwesome;
    font-size: 2.0rem;
    content: '\f082';
    width: 2rem;
    line-height: 1;
    color: rgb(255,153,0);
    position: absolute;
    left: 5px;
    top: -5px;
    }
span.facebook-icon {
    position: relative;
    line-height: 2rem;
    }
#footer .outer {
    background-color: #fff;
    margin: auto;
    max-width: 1350px;
    }
#footer .inside {
    background-color: #fff;
    margin: auto;
    max-width: 1200px;
    }
#footer h2 {
    font-size: 1rem;
    color: inherit;
    }
#footer a {
    color: inherit;
    }
#footer-spalten {
    margin-bottom: 2rem;
    color: #6b6c6e;
    font-family: 'Open Sans',sans-serif;
    }
#footer-spalten h3 {
    font-size: 1rem;
    line-height: .1rem;
    margin-bottom: 0;
    text-align: left;
    }

/* Nav footer Überschrift!*/
.headline-abgesetzt-small {
    margin: 1.4rem 0 0;
    position: relative;
    }
.headline-abgesetzt-small:after {
    background: #ff9800 none repeat scroll 0 0;
    content: "";
    display: inline-block;
    height: 1px;
    width: 4rem;
    padding-right: 0;
    position: absolute;
    top: 1rem;
    left: 2rem;
    }
#footer-spalten .mod_customnav ul {
    margin-top: 2rem;
    }
#footer-spalten .mod_customnav ul li {
    margin-bottom: .4rem;
    }
#footer-bar {
    border-bottom: 1px solid rgb(214,214,214);
    }
#footer-bar-inside {
    padding: 1rem;
    }
.icon-bezahlung-text {
    letter-spacing: 0;
    line-height: 25px;
    margin: 2px 16px 0 0;
    font-size: .8rem;
    }
.icon-bezahlung img,
.icon-versand img {
    vertical-align: middle;
    padding-right: .5rem;
    }
.text_copyright {
    text-align: center;
    padding: 1rem 0 1rem 0;
    margin-bottom: 2rem;
    }

/*==========================================================================
footer scroll_top link
========================================================================== */
#footer-scroll-top {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    position: relative;
    color: #FFF;
    margin-bottom: 2rem;
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    transition: all .3s ease-out;
    }
#footer-scroll-top span.zentriert {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
    background-color: #ff9800;
    position: relative;
    color: #FFF;
    margin: 0 auto;
    didplay: inline-block;
    }
#footer-scroll-top:hover {
    opacity: .5;
    color: #FFF;
    }
#footer-scroll-top a {
    background-color: #ff9800;
    color: #fff;
    font-size: 1rem;
    padding: 30px 13px 10px 13px;
    }
#footer-scroll-top a:before {
    font-family: FontAwesome;
    font-size: 1.4rem;
    content: '\f077 ';
    display: inline-block;
    position: absolute;
    left: 15px;
    top: -27px;
    }

/* ==========================================================================
	Layout einzelne Unterseiten
   ========================================================================== */
/* ==========================================================================
	Servicebereich
   ========================================================================== */
/* ==========================================================================
1.  /* Kundenlogin uber Serviceleiste
   ========================================================================== */
#kundenlogin .submit_container {
    text-align: left;
    }
#kundenlogin .checkbox_container {
    display: none;
    }
#kundenlogin .zeichen-vor {
    margin-right: 1rem;
    }
#kundenlogin .vergessen.u_6 {
    margin-left: 0;
    }
#kundenlogin .u_6 {
    margin-left: 0;
    }

/* ==========================================================================
	FAQ  Unterseiten Service & Hilfe Accordeon
   ========================================================================== */
section.ce_accordionStart {
    margin-bottom: .8rem;
    }
.ce_accordion .toggler {
    background: rgb(250,250,250) none repeat scroll 0 0;
    padding: 1.4rem 1.4rem 1.4rem .5rem;
    border-bottom: 1px solid #d8d0ca;
    color: inherit;
    cursor: pointer;
    font: 1.9rem;
    position: relative;
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    }
.ce_accordion .toggler:hover {
    background: rgb(232,232,232) none repeat scroll 0 0;
    }
section.ce_accordionStart.first .ui-accordion-content {
    padding: 2rem 0;
    }
.ce_accordion .toggler.ui-state-active:after {
    font-family: FontAwesome;
    content: '\f068';
    font-weight: bold;
    font-size: 1.6rem;
    display: inline-block;
    font-family: fontAwesome;
    position: absolute;
    right: 1.6rem;
    top: 1.6rem;
    text-indent: 0;
    text-rendering: geometricprecision;
    color: #ff9800;
    }
.ce_accordion .toggler:after {
    font-family: FontAwesome;
    content: '\f067';
    font-weight: bold;
    font-size: 1.6rem;
    display: inline-block;
    position: absolute;
    right: 1.6rem;
    top: 1.6rem;
    text-indent: 0;
    text-rendering: geometricprecision;
    color: #ff9800;
    }

/* ==========================================================================
	Pressebereich
   ========================================================================== */
.pressebild {
    border: 1px dashed rgb(255,153,0);
    min-height: 297px;
    max-width: 70%;
    margin-top: 2rem;
    }
.presse_thumb figure {
    text-align: center;
    }
.presse_thumb figcaption {
    font-size: .8rem;
    }
.pressethumb_link {
    text-align: center;
    }
.pressethumb_link.first {
    margin-top: .7rem;
    }
#pixelproducts-pressebereich h4 {
    font-size: 1.1rem;
    margin-bottom: .5rem;
    }
#pixelproducts-pressebereich h3 {
    font-size: 1rem;
    margin-bottom: .3rem;
    }
.text_medienecho {
    padding-right: 35px;
    text-align: justify;
    }
.ueberschrift_1 {
    color: rgb(255,153,0);
    display: block;
    font-family: Geneva,Arial,Helvetica,sans-serif;
    font-size: 13px;
    font-weight: bold;
    }
h3.text_medienecho {
    text-transform: none;
    margin-top: .2rem;
    font-size: 1.2rem;
    }

/* ==========================================================================
	Kontaktformulare Kundenbbereich
   ========================================================================== */
#kontaktformular-service .formular,
.infodiv {
    margin-bottom: 10px;
    position: relative;
    padding: 1rem 2rem 1rem 9rem;
    width: 80%;
    margin-left: 5rem;
    -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.3);
    }
#kontaktformular-service form label,
.formular form label {
    position: relative;
    float: none;
    display: block;
    margin-bottom: 5px;
    }
#kontaktformular-service form span.mandatory,
#kontaktformular-service .formular span.mandatory,
form span.mandatory {
    color: rgb(255,153,0);
    margin-left: 3px;
    font-weight: bold;
    }
#kontaktformular-service form select,
#kontakt form select,
.formular form select,
.mod_iso_addressbook form select,
form select {
    margin-bottom: .8rem;
    padding: .5em .6em;
    color: rgb(102,102,102);
    width: 70%;
    }
#kontaktformular-service form select,
.formular form select,
.kontakt-service form textarea {
    width: 70%;
    }
#kontaktformular-service .submit_container,
#kontakt .submit_container {
    width: 30%;
    margin: 1.2rem 0 1rem 0;
    }

/* ==========================================================================
	Formular Kundenlogin page/Kundenbreich
   ========================================================================== */
/* 1. Seite Member Login
========================================================================== */
.mod_login.member-login-konto .submit_container,
.mod_login.member-login-cart .submit_container {
    width: 54%;
    padding-top: 30px;
    border-top: 1px solid rgb(214,214,214);
    }
.mod_login.member-login-konto .submit_container input[type="submit"],
.mod_login.member-login-cart .submit_container input[type="submit"] {
    width: 100%;
    margin-bottom: 1rem;
    }
mod_login member-login-cart .submit_container input[type="submit"] #member-login-page {
    margin-left: 20%;
    }
#member-login-page .submit_container {
    width: 25%;
    }
#kundenlogin .passwort {
    margin-left: 20%;
    }

/* 1. Seite Member Regisrierung
========================================================================== */
.mod_registration .formbody {
    width: 70%;
    margin: 0 auto;
    }
.mod_registration input#ctrl_registration {
    display: block;
    }
.mod_registration .submit_container {
    width: 40%;
    padding-top: 20px;
    border-top: 1px solid rgb(214,214,214);
    margin-top: 2rem;
    }
.mod_registration input[value="Registrieren"] {
    width: 200px;
    }

/* 2. Seite Mein Konto Uberblick
========================================================================== */
h3.address {
    position: relative;
    }
h3.address:before,
h3.order:before {
    color: rgb(255,153,0);
    font-family: FontAwesome;
    font-size: 1.8rem;
    padding-right: .5rem;
    top: 5px;
    left: -5px;
    position: relative;
    letter-spacing: .1rem;
    content: '\f2b9';
    }
h3.address:before {
    content: '\f2b9';
    }
h3.order:before {
    content: '\f022';
    }
.linktext {
    margin: 1.5rem 0 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgb(232,232,232);
    }
#ihr-profil .submit_container {
    width: 30%;
    margin: 1.2rem 0 1rem 0;
    }

/* 2. Seite Mein Konto Bestellungen
========================================================================== */
#bestellungen .mod_iso_orderhistory td.col_0,
#bestellungen .mod_iso_orderhistory td.col_1,
#bestellungen .mod_iso_orderhistory td.col_2,
#bestellungen .mod_iso_orderhistory td.col_3,
#bestellungen .mod_iso_orderhistory td.col_4 {
    width: 20%;
    }
#bestellungen .mod_iso_orderhistory th.col_0,
#bestellungen .mod_iso_orderhistory th.col_1,
#bestellungen .mod_iso_orderhistory th.col_2,
#bestellungen .mod_iso_orderhistory th.col_3,
#bestellungen .mod_iso_orderhistory th.col_4 {
    width: 20%;
    }
#bestellungen .mod_iso_orderhistory td.col_1,
#bestellungen .mod_iso_orderhistory td.col_2 {
    text-align: center;
    }
#bestellungen .mod_iso_orderhistory th.col_0 {
    text-align: left;
    }
#bestellungen .mod_iso_orderhistory thead tr {
    border-bottom: 1px solid rgb(214,214,214);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    }
#bestellungen .mod_iso_orderhistory thead th {
    padding-bottom: .8rem;
    }
#bestellungen .mod_iso_orderhistory td {
    padding: .5rem 0 0;
    }
#bestellungen .mod_iso_orderhistory td.col_4 {
    text-align: right;
    }
.mod_iso_addressbook {
    margin-left: 20%;
    }
.mod_iso_addressbook .submit_container {
    width: 25%;
    }
.mod_iso_addressbook a.delete {
    padding-left: 1rem;
    }
.mod_iso_addressbook .buttons {
    margin-bottom: .5rem;
    }
#adressbuch .ce_hyperlink {
    margin-left: 20%;
    margin-top: 2rem;
    }
.mod_changePassword {
    margin-left: 20%;
    }
.mod_changePassword .submit_container,
.mod_lostPassword .submit_container,
.mod_lostPasswordNotificationCenter .submit_container {
    width: 40%;
    padding-top: 30px;
    border-top: 1px solid rgb(214,214,214);
    margin-top: 2rem;
    }
.mod_lostPasswordNotificationCenter .submit_container input[type="submit"] {
    width: 100%;
    }
#anmeldung-warenkorb-neukunde .mod_registration,
.mod_lostPassword,
.mod_lostPasswordNotificationCenter {
    margin: auto;
    width: 70%;
    }
span.mandatory {
    color: rgb(255,153,0);
    font-size: 1.8rem;
    }
.mod_lostPassword form label,
.mod_lostPasswordNotificationCenter form label,
.mod_lostPasswordNotificationCenter input#ctrl_lost_password {
    display: block;
    }
.rechnungstext,
.text_versand,
.text_bezahlarten {
    margin-bottom: 1rem;
    }
.versandart_text,
.lieferzeit_text {
    margin-top: .5rem;
    }
#anfrage-erhalten .link-warapper {
    margin: 2rem auto;
    }

/* 2. Startseite Bild mit button jetzt entdecken
========================================================================== */
.bildblock.u_6 {
    margin-left: 0;
    width: 48.2%;
    }
.button_jetzt {
    text-align: center;
    background: rgb(250,250,250) none repeat scroll 0 0;
    border: 1px solid rgb(161,160,166);
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgb(5,5,5);
    display: block;
    -webkit-transition: all .3s ease 0s;
    -moz-transition: all .3s ease 0s;
    -o-transition: all .3s ease 0s;
    transition: all .3s ease 0s;
    width: 100%;
    text-transform: uppercase;
    padding: 1rem;
    }
.button_jetzt p {
    margin: 0;
    }
.bildblock a:hover > .button_jetzt {
    background: rgb(232,232,232) none repeat scroll 0 0;
    border: 1px solid rgb(161,160,166);
    color: #000;
    width: 100%;
    }
.bildblock a {
    color: rgb(5,5,5);
    width: 100%;
    }
.bildblock .button_jetzt a:hover {
    color: rgb(255,153,0);
    }

/* home productslider
========================================================================== */
.product-slider h3 {
    font-size: 1rem;
    text-align: center;
    }
.product-slider h3 a {
    color: rgb(82,82,82);
    }
hr.linie {
    border: none;
    border-top: 1px solid rgb(214,214,214);
    color: #FFF;
    background-color: #FFF;
    margin-bottom: 4px;
    }
@-moz-document url-prefix() {
div.menu-button-wrapper {
    margin-top: 1.4rem;
    }
}

h3.product-slider {
    font-size: 1rem;
    text-align: center;
    }
.product-preis {
    font-size: 1.3rem;
    text-align: center;
    }
.rsts-nav-bullets {
    display: none;
    }
.rsts-slides figure {
    text-align: center;
    }
#main .rsts-skin-default .rsts-prev {
    left: -3rem;
    top: 110px;
    }
#main .rsts-skin-default .rsts-next {
    top: 110px;
    right: -2.5rem;
    }
.rsts-caption {
    display: none;
    }
.headline_bildmotiv {
    margin: 3.5rem 0;
    }

/* div Hilfe
========================================================================== */
.hilfe-wrapper {
    background: #fff none repeat scroll 0 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.hilfe-wrapper-inside {
    background: rgb(244,244,242) none repeat scroll 0 0;
    padding: 18px 0;
    position: relative;
    text-align: center;
    }
.hilfe-wrapper-inside .icon-phone,
.hilfe-wrapper-inside .icon-mail {
    position: relative;
    }
.hilfe-wrapper-inside .icon-phone:before {
    font: 1.1rem FontAwesome;
    color: #f90;
    content: "\f095";
    position: absolute;
    left: -15px;
    top: 2px;
    }
.hilfe-wrapper-inside .icon-mail:before {
    font: 1.1rem FontAwesome;
    color: #f90;
    content: "\f003";
    position: absolute;
    left: -23px;
    top: 2px;
    }
.hilfe-wrapper-inside .icon-mail a {
    color: rgb(102,102,102);
    }
.hilfe-wrapper-inside .icon-mail a:hover {
    color: rgb(255,153,0);
    }
.zentriert-formulartext {
    width: 70%;
    margin: auto;
    }

/* div backlink
========================================================================== */
.backlink {
    margin: 2rem 0;
    }
#order-neu td.bild img {
    max-width: 200px;
    }
#order-neu td.summe,
td.title {
    text-align: right;
    }
#order-neu tr.top {
    border-top: none;
    }
#order-neu tr.bottom {
    border-none: 1px solid rgb(214,214,214);
    border-bottom: 1px solid rgb(214,214,214);
    }

/* cookiebar
========================================================================== */
.cookiebar {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: fixed;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem;
    background-color: #DDD;
    color: #6b6c6e;
    font-size: .9rem;
    text-align: center;
    z-index: 10;
    }
.cookiebar * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.cookiebar--active {
    display: -ms-flexbox !important;
    display: -webkit-flex !important;
    display: flex !important;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    }
.cookiebar--position-top {
    top: 0;
    }
.cookiebar--position-bottom {
    bottom: 0;
    }
.cookiebar__message,
.cookiebar__text {
    margin: 0 1rem .5rem 0;
    }
a.cookiebar__link:link {
    color: #ce3a38;
    text-decoration: underline;
    }
.cookiebar__link:hover {
    text-decoration: none;
    }
.cookiebar__button {
    margin: 0;
    padding: .6em 1.2em;
    border: none;
    -webkit-border-radius: 0;
    border-radius: 0;
    background-color: #ff9800;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
    }
.cookiebar__button:hover {
    background-color: #3e824a;
    }
#mobile-main-nav {
    height: 0;
    width: 0;
    }
.member-registration .widget.widget-checkbox.mandatory {
    float: none !important;
    }
#registrierung .member-registration fieldset {
    z-index: 1000;
    }
#lbl_xt_agb_0,
#lbl_xt_dsgvo_0 {
    display: inline;
    }
#ctrl_xt_dsgvo {
    margin-bottom: 8px;
    }
#pixelproducts-datenschutz h3 {
    color: rgb(255,153,0);
    text-transform: none;
    }
#pixelproducts-datenschutz h4 {
    color: rgb(255,153,0);
    text-transform: none;
    font-size: 1.1rem;
    margin-bottom: .5rem;
    }

/* CSS Document */
/*   pixelproducts Christian Osterhage
   (c) 2014 Christian Osterhage, http://www.pixelproducts.de */
/* CSS Document */
/*==============================================================================
 1. TOPNAV: #header-topnav-right: service und Mein Konto
   ========================================================================== */
#header-topnav-left {
    float: left;
    margin: 1rem 0 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    }
#header-topnav-right {
    float: right;
    margin: .7rem 2rem .7rem 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
    }
#header-topnav-right > * {
    display: inline;
    width: 33.33333%;
    }
a.topnav-link:before {
    color: inherit;
    font-family: FontAwesome;
    font-size: 1.2rem;
    padding-right: .3rem;
    top: 0;
    position: relative;
    letter-spacing: .1rem;
    }
a.topnav-link:hover {
    color: rgb(5,5,5);
    }
a.service:before {
    content: '\f129';
    }
a.login:before {
    content: '\f007';
    }
a.trade:before {
    content: '\f0ac';
    }
.link-service {
    padding: 1rem 1.8rem 1rem 1.8rem;
    }

/* . Dropdown Service + Dropdown Login
===================================== */
#header-topnav-right .link-service,
#header-topnav-right .link-login {
    position: relative;
    }

/* 1. . Dropdown Service 
===================================== */
.dropdown-menu-service-wrapper.open {
    overflow: hidden;
    background: white;
    display: block;
    opacity: 1;
    z-index: 12001;
    }
.dropdown-menu-service-wrapper {
    display: none;
    overflow: hidden;
    opacity: 0;
    -webkit-border-radius: 0 0 8px 8px;
    border-radius: 0 0 8px 8px;
    -webkit-transition: 1s;
    -moz-transition: 1s;
    -o-transition: 1s;
    transition: 1s;
    position: absolute;
    top: 36px;
    left: -138px;
    width: 340px;
    padding: 0;
    margin: 0;
    z-index: 12001;
    }
.dropdown-menu-service {
    margin-top: 1rem;
    -webkit-border-radius: 8px 8px 8px 8px;
    border-radius: 8px 8px 8px 8px;
    }
.dropdown-menu-service:before {
    content: "";
    left: 49.5%;
    position: absolute;
    top: -10px;
    display: block;
    width: .84615em;
    height: .84615em;
    margin-left: 0;
    border: solid gainsboro;
    border-width: 0 0 1px 1px;
    background: white;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(135deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%;
    }

/*rahmen aussen um Box* Box im Template nav_default_service definiert*/
.dropdown-service-inner {
    border: solid rgb(232,232,232);
    border-width: 1px 1px;
    border-color: rgb(232,232,232);
    -webkit-border-radius: 8px 8px 8px 8px;
    border-radius: 8px 8px 8px 8px;
    -webkit-box-shadow: inset 0 6px 2px -5px rgba(0,0,0,.1);
    box-shadow: inset 0 6px 2px -5px rgba(0,0,0,.1);
    overflow: visible;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.dropdown-service-inner .u_6 {
    width: 50%;
    margin: 0;
    }
.dropdown-service-inner .textspalte.u_6 {
    width: 49.8%;
    margin: 0;
    -webkit-border-radius: 0 8px 8px 0;
    border-radius: 0 8px 8px 0;
    padding: 1rem;
    min-height: 200px;
    }

/*  Liste links Service*/
.dropdown-service-inner li {
    display: block;
    }
.dropdown-service-inner ul {
    padding: .8rem .8rem;
    }
.dropdown-service-inner .menuspalte li {
    border-top: 1px solid rgb(232,232,232);
    line-height: 10px;
    padding: .8rem 0;
    display: block;
    width: 100%;
    }
.dropdown-service-inner .menuspalte li.first {
    border-top: none;
    }
.dropdown-service-inner .menuspalte li a {
    color: rgb(102,102,102);
    text-transform: none;
    font-size: .9rem;
    }
.dropdown-service-inner .menuspalte li a:hover {
    color: rgb(5,5,5);
    }

/*Liste rechts Info Ihr Vorteil*/
.dropdown-service-inner .textspalte {
    background-color: rgb(255,153,0);
    color: #fff;
    padding: .8rem;
    font-size: .8rem;
    overflow: hidden;
    }
.dropdown-service-inner .textspalte .ce_text p {
    font-size: .9rem;
    margin-bottom: 0;
    padding-top: .8rem;
    }
.dropdown-service-inner .textspalte ul.service {
    padding: 0 0 1rem;
    }
.dropdown-service-inner .textspalte li {
    font-weight: normal;
    line-height: 11px;
    padding: .6rem 0 0;
    text-transform: none;
    font-size: .9rem;
    position: relative;
    }
.dropdown-service-inner .textspalte li:before {
    content: '\f111';
    color: inherit;
    font-family: FontAwesome;
    font-size: .4rem;
    padding-right: .3rem;
    top: -2px;
    position: relative;
    letter-spacing: .1rem;
    }
.dropdown-service-inner li:first-child {
    border: 0;
    }
.dropdown-service-inner .textspalte .ce_text p.service-phone {
    padding: .5rem 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-right: 1rem;
    }
.dropdown-service-inner span.phone {
    font-size: 1.1rem;
    }

/* #header-dropdown login formular
   ========================================================================== */
#header-topnav-right .dropdown-login-wrapper {
    position: absolute;
    top: 20px;
    left: -132px;
    width: 280px;
    padding: 0;
    margin: 0;
    overflow: hidden;
    background: white;
    display: none;
    opacity: .5;
    z-index: 12005;
    -webkit-border-radius: 8px 11px 8px 8px;
    border-radius: 8px 11px 8px 8px;
    -webkit-transition: all ease-in-out;
    -moz-transition: all ease-in-out;
    -o-transition: all ease-in-out;
    transition: all ease-in-out;
    }
#header-topnav-right .dropdown-login-wrapper.open {
    z-index: 1000;
    max-height: 9999px;
    overflow: hidden;
    display: block;
    opacity: 1;
    pointer-events: auto;
    -webkit-transition: all ease-in-out;
    -moz-transition: all ease-in-out;
    -o-transition: all ease-in-out;
    transition: all ease-in-out;
    }
#header-topnav-right span.btn {
    padding: 6px 30px 6px;
    }
#header-topnav-right .dropdown-login {
    border: solid rgb(232,232,232);
    border-width: 1px 1px 2px;
    border-top-color: #ccc;
    border-radius: 3px 3px 3px 3px;
    font-size: .9rem;
    border: solid #e5e8ee;
    border-width: 1px 1px 2px;
    border-top-color: #ccc;
    -webkit-border-radius: 8px 8px 8px 8px;
    border-radius: 8px 8px 8px 8px;
    background: white;
    -webkit-box-shadow: inset 0 6px 2px -5px rgba(0,0,0,.1);
    box-shadow: inset 0 6px 2px -5px rgba(0,0,0,.1);
    margin-top: 1rem;
    }
#header-topnav-right .dropdown-login:before {
    content: "";
    left: 49.5%;
    position: absolute;
    top: -7px;
    display: block;
    width: .84615em;
    height: .84615em;
    margin-left: 0;
    border: solid gainsboro;
    border-width: 0 0 1px 1px;
    background: white;
    -webkit-transform: rotate(135deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(135deg);
    -webkit-transform-origin: 0 100%;
    -moz-transform-origin: 0 100%;
    -ms-transform-origin: 0 100%;
    -o-transform-origin: 0 100%;
    transform-origin: 0 100%;
    }
#header-topnav-right .dropdown-login .mod_login {
    padding: 1.5rem;
    }
.dropdown-login .headline_abgesetzt_top {
    margin: 0 0 1rem;
    }
#header .dropdown-login .headline_abgesetzt h2.klein,
.headline_abgesetzt_top h2.klein {
    margin-top: .5rem;
    font-size: .8rem;
    }
.dropdown-login .headline_abgesetzt_top h2.klein {
    margin-top: .5rem;
    font-size: .8rem;
    }
.dropdown-login .headline_abgesetzt_top h1 {
    font-size: .9rem;
    margin-bottom: 0;
    }
.dropdown-login input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    background-color: #ccc ! important;
    background-image: none;
    color: rgb(0,0,0);
    }
.dropdown-login form .text,
form .textarea,
form .captcha {
    width: 100%;
    }
#header-topnav section.dropdown-login {
    padding: 1rem;
    }
section.dropdown-login .checkbox_container {
    display: none;
    }
#header-topnav ul.level_1 > li a.formlink {
    font-size: .8rem;
    }
section.dropdown-login .vergessen {
    margin-bottom: .5rem;
    }
section.dropdown-login .submit_container {
    text-align: center;
    }

/* ==========================================================================
   Hauptnavigation hotizontal 1 Ebene
   ========================================================================== */
/* oberste Ebene Level 1
   ========================================================================== */
.bottom-navigation-wrapper {
    position: relative;
    }
#main-nav {
    overflow: visible;
    padding-right: 2rem;
    float: left;
    }
#main-nav ul {
    max-width: 100%;
    list-style-type: none;
    text-transform: uppercase;
    padding-top: .5rem;
    }
#main-nav .level_1 > li {
    display: inline-block;
    position: relative;
    padding-left: .6rem;
    }
#main-nav .level_1 > li.first {
    padding-left: 0;
    margin-left: 0;
    }
#main-nav .level_1 a,
#main-nav .level_1 span {
    display: block;
    padding-right: 1rem;
    cursor: pointer;
    text-decoration: none;
    color: rgb(102,102,102);
    font-family: 'Bad Script',sans-serif;
    font-size: 1rem;
    }
#main-nav .level_1 .last {
    padding-right: 1rem;
    }
#main-nav .level_1:after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
#main-nav a:hover {
    color: rgb(255,153,0);
    text-decoration: none;
    }
#main-nav a.trail,
a.active,
span.active {
    color: rgb(255,153,0);
    }
#main-nav li span.active {
    text-decoration: none;
    color: rgb(255,153,0);
    font-size: 1rem;
    }

/* Navigation Ebene Level 2
   ========================================================================== */
#main-nav .level_1 li .submenu {
    padding-bottom: .9rem;
    }
#main-nav .level_2 {
    display: none;
    position: absolute;
    z-index: 1000;
    padding: 10px 15px;
    background-color: #fff;
    left: -40px;
    top: 27px;
    min-width: 230px;
    text-transform: none;
    -webkit-box-shadow: 0 0 4px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 4px 0 rgba(0,0,0,.3);
    }
#main-nav li:hover ul {
    display: block;
    }
#main_nav .level_2 li.first {
    margin-top: 10px;
    }
#main-nav .level_2 li {
    background-color: rgb(250,250,250);
    margin-bottom: 10px;
    padding: 3px 3px;
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    }
#main-nav .level_2 li:hover,
.sidebar-nav li:hover {
    background-color: rgb(232,232,232);
    font-size: 24px;
    }
#main-nav .level_2 a,
#main-nav .level_2 span {
    padding: 5px 15px;
    font-weight: normal;
    font-size: 1rem;
    }
#main-nav .level_2 .last a,
#main-nav .level_2 .last span {
    border-bottom: none;
    }
#main-nav .level_1:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
    }
#main-nav li:hover ul {
    display: block;
    }

/* ==========================================================================
  2. Mobile Navigation Header
   ========================================================================== */
/*Mobile nav unterhalb logo
---------------------------------------*/
#header-nav-mobil {
    background-color: rgb(232,232,232);
    }

/*Divs dp-inline block
---------------------------------------*/
.link-trade {
    width: 32%;
    display: inline-block;
    }
.link-login-mobil {
    width: 25%;
    display: inline-block;
    }
.mini-cart-mobile,
.menu-button {
    width: 18%;
    display: inline-block;
    position: relative;
    }

/*Divs dp-inline block gro?er bei 3 Spalten
---------------------------------------*/
#header-nav-mobil.B2B .link-login-mobil,
#header-nav-mobil.ohne .link-login-mobil {
    width: 33%;
    display: inline-block;
    text-align: center;
    }
#header-nav-mobil.B2B .mini-cart-mobile,
#header-nav-mobil.ohne .mini-cart-mobile {
    width: 32%;
    display: inline-block;
    position: relative;
    text-align: center;
    }
#header-nav-mobil.B2B .menu-button,
#header-nav-mobil.ohne .menu-button {
    width: 30%;
    display: inline-block;
    position: relative;
    padding-right: 10px;
    }

/*Handlerlink
---------------------------------------*/
.link-trade span.link-mobil {
    text-align: left;
    margin: 0;
    position: relative;
    font-size: .8rem;
    width: 100%;
    padding-left: 10px;
    }
span.link-mobil {
    text-align: left;
    margin: 0;
    position: relative;
    font-size: .8rem;
    width: 100%;
    }
#header-nav-mobil.ohne span.link-mobil,
#header-nav-mobil.B2B span.link-mobil {
    font-size: .8rem;
    }
a.link-mobil-trade:after,
a.link-mobil-login:after {
    color: inherit;
    font-family: FontAwesome;
    font-size: 1.2rem;
    letter-spacing: .1rem;
    position: relative;
    top: -15px;
    display: inline-block;
    }
a.link-mobil-trade:after {
    content: '\f0ac';
    left: -48px;
    }
a.link-mobil-login:after {
    content: '\f007';
    left: -35px;
    }

/*Warenkorb
---------------------------------------*/
.mini-cart-mobile figure {
    width: 18px;
    height: 18px;
    margin-left: 20px;
    }
.mini-cart-mobile .cart {
    display: inline-block;
    text-align: center;
    }
.mini-cart-mobile .title {
    font-size: .8rem;
    }
#header-nav-mobil.ohne .mini-cart-mobile .title,
#header-nav-mobil.B2B .mini-cart-mobile .title {
    font-size: .8rem;
    }
.mini-cart-mobile .itemdiv {
    height: 40px;
    margin-top: 14px;
    display: inline-block;
    }
.itemdiv {
    width: 23px;
    height: 30px;
    position: relative;
    background-image: url(../img/icon/cart-mobil.png);
    background-repeat: no-repeat;
    position: relative;
    }
#header-nav-mobil span.items {
    position: absolute;
    font-size: 1.0rem;
    left: 24px;
    top: 17px;
    color: #fff;
    font-weight: bold;
    }
.mini-cart-mobile a {
    position: relative;
    }
#header-nav-mobil.B2B span.items,
#header-nav-mobil.ohne span.items {
    position: absolute;
    font-size: .9rem;
    left: 24px;
    top: -17px;
    color: #fff;
    font-weight: bold;
    }

/*Menu button
---------------------------------------*/
.menu-button a {
    position: relative;
    text-align: right;
    display: block;
    }
span.touch-button {
    position: relative;
    text-align: right;
    margin-left: .9rem;
    font-size: .8rem;
    }
span.touch-button:before {
    font-family: FontAwesome;
    font-size: 1.4rem;
    content: '\f0c9 ';
    display: inline-block;
    position: absolute;
    left: 8px;
    top: -23px;
    }

/* Navigationen  linke Spalte 
========================================================================== */
.sidebar-nav {
    padding: 10px 15px;
    background-color: #fff;
    text-transform: none;
    -webkit-box-shadow: 0 0 2px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 2px 0 rgba(0,0,0,.3);
    margin-bottom: 4rem;
    }
.sidebar-nav .presse {
    margin-bottom: 1rem;
    }
.sidebar-nav h3 {
    text-align: center;
    color: rgb(255,153,0);
    }
.sidebar-nav ul {
    margin-top: 2rem;
    margin-bottom: 2rem;
    }
.sidebar-nav li {
    background-color: rgb(250,250,250);
    margin-bottom: 10px;
    padding: 3px 3px;
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    }
.sidebar-nav li:hover {
    background-color: rgb(232,232,232);
    }
.sidebar-nav li a,
.sidebar-nav li span {
    padding: 5px 15px;
    font-weight: normal;
    display: block;
    padding-right: 1rem;
    cursor: pointer;
    text-decoration: none;
    color: rgb(102,102,102);
    font-family: 'Open Sans',sans-serif;
    font-size: 1rem;
    }
.sidebar-nav li span,
a.trail,
a.active,
span.active {
    color: #f90;
    }

/* ==========================================================================
  breadcrump
   ========================================================================== */
#breadcrump .inside {
    max-width: 1350px;
    margin: 0 auto;
    background: #fff;
    }
#breadcrump .breadcrump {
    max-width: 1250px;
    margin: 0 auto;
    background: #fff;
    }
.mod_breadcrumb {
    padding: 1rem 0 1rem;
    }
.mod_breadcrumb ul li {
    display: inline;
    }
.mod_breadcrumb ul li a {
    color: rgb(102,102,102);
    font-size: .9rem;
    }
.mod_breadcrumb ul li.last {
    color: rgb(255,153,0);
    font-size: .9rem;
    }
.mod_breadcrumb li:first-child:before {
    content: none;
    }
.mod_breadcrumb li:before {
    content: " / ";
    padding-right: .2rem;
    padding-left: .2rem;
    color: rgb(102,102,102);
    }

/* ==========================================================================
   Footer navigation horizontal 
   ========================================================================== */
#footer nav {
    text-decoration: none;
    }
#footer_nav ul {
    text-align: center;
    margin: 2rem 0;
    color: #6b6c6e;
    }
#footer_nav ul > li {
    display: inline;
    margin: 0;
    padding: 0;
    padding-right: 1rem;
    }
#footer-spalten ul > li a {
    color: rgb(102,102,102);
    font-family: 'Open Sans',sans-serif;
    font-size: .9rem;
    }
#footer-spalten ul > li a:hover {
    color: #191919;
    }

/*   ==========================================================================================================
 // Mobile  navigation dh mmenu
   ================================================================================================================================== */
#mobile-main-nav {
    width: 0;
    height: 0;
    left: -1000px;
    top: -1000px;
    position: absolute;
    overflow: hidden;
    display: inline;
    }

/* Menu-Button zum ï¿½ffnen der Navigation
========================================================================== */
/*   ==========================================================================================================
 // Mobile  navigation footer
   ================================================================================================================================== */
/* Menu-Button zum Öffnenn der Navigation
========================================================================== */
/* --------------------------------------------------------------------------
     Main Nav
   ------------------------------------------------------------------------ */
/* CSS Document */
/* ==========================================================================
  Warenkorb Mini in der Header Navigation
   ========================================================================== */
#cart-mini {
    float: right;
    position: relative;
    height: 50px;
    cursor: pointer;
    margin-right: 2rem;
    }
.itemdiv {
    width: 35px;
    height: 45px;
    position: relative;
    background-image: url(img/icon/cart.png);
    position: relative;
    }
.itemdiv a {
    width: 35px;
    height: 32px;
    }
span.items {
    position: absolute;
    font-size: 1.0rem;
    left: 15px;
    top: 14px;
    color: #fff;
    font-weight: bold;
    }
#cart-mini .mod_iso_cart {
    width: 300px;
    display: none;
    position: absolute;
    overflow: visible;
    font-size: 10px;
    cursor: pointer;
    padding: 20px;
    top: 2.5remrem;
    left: -14rem;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
    background: #FFF;
    }
#cart-mini:hover > .mod_iso_cart {
    display: block;
    }
#cart-mini .mod_iso_cart .product {
    width: 100%;
    position: relative;
    display: block;
    margin-top: 10px;
    padding: 10px 20px 10px 10px;
    white-space: nowrap;
    background-color: rgb(250,250,250);
    transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    }
#cart-mini .mod_iso_cart .name a {
    font-size: 1rem;
    }
#cart-mini .mod_iso_cart .info ul {
    display: none;
    }
#cart-mini .mod_iso_cart .remove {
    right: 10px;
    top: 10px;
    position: absolute;
    }
#cart-mini .mod_iso_cart .remove a {
    font-size: 0;
    }
#cart-mini .mod_iso_cart .remove a:after {
    font: .9rem FontAwesome;
    color: rgb(255,153,0);
    content: "\f00d";
    }
#cart-mini .mod_iso_cart .name a {
    font-size: 14px;
    }
#cart-mini .mod_iso_cart .price {
    color: #6b6c6e;
    font-size: .8rem;
    }
#cart-mini .mod_iso_cart .subtotal {
    width: 116%;
    position: relative;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: -20px;
    padding: 15px 30px;
    text-align: center;
    background-color: rgb(232,232,232);
    font-size: 12px;
    color: #6b6c6e;
    }
#cart-mini .mod_iso_cart .cart a,
#cart-mini .mod_iso_cart .checkout a {
    position: relative;
    display: block;
    margin-top: 10px;
    padding: 10px 30px;
    text-align: center;
    white-space: nowrap;
    background-color: rgb(255,153,0);
    font-size: 1rem;
    text-decoration: none;
    color: #fff;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    -ms-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .2s ease-in-out;
    }
#cart-mini .mod_iso_cart .cart a:hover,
#cart-mini .mod_iso_cart .checkout a:hover {
    background-color: rgb(251,164,32);
    color: #fff;
    }
#cart-mini .mod_iso_cart .product:hover {
    background-color: #e8e8e8;
    }

/* ==========================================================================
  Isobox bei Ablage der Produkte in den Warenkorb
   ========================================================================== */
body #iso_ajaxBox {
    position: fixed;
    top: 10%;
    left: 50%;
    max-width: 700px;
    padding: 60px 60px;
    border: 2px solid #000;
    border: 1px solid #ccc;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-transform: translate(-50%,0);
    -moz-transform: translate(-50%,0);
    -ms-transform: translate(-50%,0);
    -o-transform: translate(-50%,0);
    transform: translate(-50%,0);
    width: auto;
    color: #000;
    z-index: 9999;
    -webkit-box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
    box-shadow: 0 0 10px 0 rgba(0,0,0,.3);
    }
body #iso_ajaxBox .iso_confirm {
    padding-left: 0;
    background: none;
    background: none;
    }
.message-text:a {
    background: url(../../system/modules/isotope/assets/images/tick-24.png);
    }
.message-text:after {
    color: #F90;
    font-family: FontAwesome;
    font-size: 1.3rem;
    padding-right: .5rem;
    top: 2px;
    left: 2px;
    position: relative;
    letter-spacing: .1rem;
    content: '\f00c ';
    }
a.btn,
span.btn,
a.btn-secondary,
span.btn-secondary {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: transparent;
    border: 2px solid;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: #f90;
    display: inline-block;
    font-weight: 400;
    padding: 8px 30px 9px;
    text-align: center;
    text-decoration: none;
    }
a.btn:hover {
    color: rgb(5,5,5);
    }
#iso_ajaxBox .mod_iso_messages .button-wrapper {
    display: block;
    margin-top: 30px;
    }
a.btn-primary {
    background-color: #F90;
    color: #FFF;
    border: 0 none rgba(0,0,0,0);
    -webkit-border-radius: 0;
    border-radius: 0;
    font-color: fff;
    font-size: 100%;
    margin-left: 2rem;
    padding: .7rem 1.5rem;
    text-decoration: none;
    -webkit-transition: box-shadow .1s linear 0s;
    -moz-transition: box-shadow .1s linear 0s;
    -o-transition: box-shadow .1s linear 0s;
    transition: box-shadow .1s linear 0s;
    }

/* ==========================================================================
1.  /* Podukdarstellung - in der Ãœbersicht: Produktlisten - Modul iso_productlist 
   ========================================================================== */
/* Poduktliste - Template mod_iso_productlist angepasst -Zusatzdiv -k lasse U_4
templates/iso_list_default_angepasst.html5
================================================================================================ */
.mod_iso_productlist .product .formbody {
    position: relative;
    border: 1px solid rgb(232,232,232);
    -webkit-box-shadow: inset 0 1px 1px 0 rgba(255,255,255,1);
    padding: .5rem;
    margin-bottom: .5rem;
    height: 15%;
    -webkit-transition: all 2.5s ease-in;
    -moz-transition: all 2.5s ease-in;
    -o-transition: all 2.5s ease-in;
    transition: all 2.5s ease-in;
    }
.mod_iso_productlist .product .formbody:hover {
    border: 1px solid rgb(255,153,0);
    }
.mod_iso_productlist .product .formbody figure.image_container {
    text-align: center;
    }
.mod_iso_productlist .product_list h3 a {
    font-size: 1.2rem;
    font-weight: 500;
    text-transform: none;
    }
.mod_iso_productlist .product_list .preis {
    text-align: right;
    margin: 1rem 0 0;
    }
.mod_iso_productlist .product_list .details {
    margin: 1rem 0 0;
    }
.mod_iso_productlist .product_list .zusatz {
    text-align: right;
    font-size: .8rem;
    padding-right: 1.4rem;
    }

/*Button submit
================================================================================================ */
.submit_container input[type="submit"] {
    color: #FFF;
    background-color: rgb(255,153,0);
    border: 0 none rgba(0,0,0,0);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-color: #fff;
    font-size: 100%;
    padding: .6rem 1.5rem;
    text-decoration: none;
    -webkit-transition: box-shadow .1s linear 0s;
    -moz-transition: box-shadow .1s linear 0s;
    -o-transition: box-shadow .1s linear 0s;
    transition: box-shadow .1s linear 0s;
    }
input[type="submit"]:hover {
    background-color: rgb(251,164,32);
    }

/* ==========================================================================
2.  /* Poduktdarstellung - Details   Produktlisten - Modul iso_productreader 
   ========================================================================== */
/* Poduktreader allgemein
========================================================================== */
.mod_iso_productreader .product .preis {
    font-weight: bold;
    }
.product .zusatz {
    text-align: right;
    font-size: .8rem;
    margin-bottom: 1rem;
    }
.mod_iso_productreader {
    margin-top: 3rem;
    }
.ean {
    margin-bottom: 2rem;
    }

/* inline gallery productreader
========================================================================== */
.gallery-wrapper figure.image_container.active {
    border: 1px solid rgb(214,214,214);
    padding: .5rem;
    }
.gallery-wrapper figure.image_container {
    padding: .5rem;
    max-width: 100px;
    margin-bottom: .5rem;
    }
.main-image figure {
    text-align: center;
    }

/* gallery productreader Postkarten
========================================================================== */
.productreader-postkarten .main-image figure {
    text-align: left;
    }
.main-image.left figure {
    text-align: left;
    }
.main-image.u_8.left {
    margin-left: 0;
    }

/* productreader/bestell-Bereich mtit brand div /lieferzeit * verfÃ¼gbarkeit
als Attribute in Shopkonfiguration + template mod-iso-productreader geÃ¤ndert
========================================================================== */
.stock {
    margin: 1rem 0 2rem 0;
    }
.availability {
    position: relative;
    padding-left: 1rem;
    }
.availability:before {
    font-family: FontAwesome;
    font-size: 1.0rem;
    content: '\f00c';
    width: 2rem;
    line-height: 1;
    color: rgb(255,153,0);
    position: absolute;
    left: -5px;
    top: 2px;
    }
.shipping_time {
    position: relative;
    padding-left: 1.5rem;
    }
.shipping_time:before {
    font-family: FontAwesome;
    font-size: 1.0rem;
    content: '\f0d1';
    width: 2rem;
    line-height: 1;
    color: rgb(255,153,0);
    position: absolute;
    left: -5px;
    top: 2px;
    }
.brand-logo {
    position: relative;
    }
.brand-container {
    border-bottom: 0 none;
    position: relative;
    text-align: center;
    z-index: 1;
    }
.brand-container:before {
    background: rgb(214,214,214) none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    margin-top: -1px;
    position: absolute;
    top: 10px;
    width: 100%;
    z-index: 1;
    }
.brand-container-inner {
    z-index: 2;
    }
.brand-container img {
    background: #fbfaf8 none repeat scroll 0 0;
    display: inline;
    width: 160px;
    position: relative;
    z-index: 10;
    }
.bestellen h2[itemprop="name"] {
    color: rgb(102,102,102);
    color: rgb(82,82,82);
    text-align: center;
    text-transform: none;
    }
div[itemprop="price"] {
    font-size: 2rem;
    margin: 1rem 0 .7 0;
    }
.mod_iso_productreader .quantity_container {
    border-top: 1px solid rgb(214,214,214);
    padding: 20px 0;
    }
.bestellen .mstuv {
    font-size: .8rem;
    margin-bottom: 2rem;
    }
.mod_iso_productreader .quantity_container label {
    font-size: .9rem;
    margin: 0 0 .875em;
    text-align: center;
    display: block;
    }
.mod_iso_productreader .quantity_container .text {
    width: 100%;
    text-align: center;
    }
.mod_iso_productreader button.submit {
    width: 100%;
    }
.mod_iso_productreader .submit_container input[type="submit"] {
    width: 100%;
    }
.productreader-memocards .description p {
    width: 70%;
    text-align: justify;
    }

/* ==========================================================================
3.  /* Podukdtarstellung - ae„hnliche Produkte    - mod_iso_relatedproducts
   ========================================================================== */
/* geaenderte: templates iso-productlist-related/ mod-iso-productlist-memocards-related
========================================================================== */
.mod_iso_relatedproducts {
    border-top: 1px solid rgb(232,232,232);
    margin-bottom: 65px;
    padding-top: 60px;
    text-align: center;
    }
.mod_iso_relatedproducts h2 {
    text-transform: none;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: rgb(82,82,82);
    }
.mod_iso_relatedproducts h3,
.h3 {
    text-transform: none;
    margin-bottom: 1rem;
    font-size: 1.1rem;
    }
.mod_iso_relatedproducts.headline-related h3.related-item-title {
    text-transform: none;
    margin-bottom: 0;
    }
.mod_iso_relatedproducts.headline-related a {
    color: rgb(102,102,102);
    }
.mod_iso_relatedproducts.headline-related a:hover {
    color: rgb(255,153,0);
    }
.mod_iso_relatedproducts .product_list .price {
    margin: .5rem 0;
    font-weight: bold;
    }
.related-item-box {
    padding: 1rem;
    border: 1px solid rgb(232,232,232);
    }
.related-item-box:hover {
    border-color: rgb(255,153,0);
    }

/* Uberschriften produktdetails
========================================================================== */
.product .headline_abgesetzt h2,
.product .headline_abgesetzt_top h2 {
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: .1rem;
    margin-bottom: 0;
    color: inherit;
    }

/* Poduktreader Postkarten
========================================================================== */
.mod_iso_productreader .auswahl {
    padding-top: 7.3rem;
    }
#detailseite-postkarten .zurueck,
#detailseite-postkarten .submit_container {
    text-align: right;
    padding-top: 4rem;
    }
#detailseite-postkarten .mod_iso_productreader {
    margin-bottom: 5rem;
    }
p.back {
    text-align: center;
    }

/* ==========================================================================
			Warenkorb
   ========================================================================== 
   
	Warenkorb Hauptseite mod_iso_collection_defaault_1
   ====================================================================== */
/*	Produktttabelle Head/Body
   ====================================================================== */
.cart-main table,
.mod_iso_checkout,
.mod_iso_orderdetails table {
    width: 100%;
    border-spacing: 0;
    display: block;
    position: relative;
    table-layout: fixed;
    }
.cart-main table tr td,
.mod_iso_orderdetails table tr td {
    background-color: inherit;
    }
.orderproducts table {
    width: 100%;
    border-spacing: 0;
    display: block;
    position: relative;
    table-layout: fixed;
    }
.orderproducts table tr td {
    background-color: inherit;
    }
.cart-main table:after,
.mod_iso_orderdetails table:after,
.mod_iso_checkout .orderproducts table:after {
    clear: both;
    content: "";
    display: block;
    float: none;
    position: relative;
    }
.cart-main table tbody,
.mod_iso_orderdetails table tbody,
.mod_iso_checkout .orderproducts table tbody {
    display: table;
    width: 100%;
    margin-bottom: 1rem;
    }
.cart-main table tbody tr.product,
.mod_iso_orderdetails table tbody tr.product,
.mod_iso_checkout .orderproducts table tbody tr.product {
    display: table;
    width: 100%;
    position: relative;
    -webkit-transition: background-color .5s ease-out;
    -moz-transition: background-color .5s ease-out;
    -o-transition: background-color .5s ease-out;
    transition: background-color .5s ease-out;
    }
.cart-main tr.product td,
.mod_iso_orderdetails table tbody tr.product,
.mod_iso_checkout .orderproducts table tbody tr.product {
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 10px;
    padding-top: 10px;
    }
.cart-main table thead,
.mod_iso_checkout .orderproducts table thead,
.mod_iso_orderdetails table thead {
    padding-bottom: 1rem;
    display: table;
    width: 100%;
    border-bottom: 1px solid rgb(214,214,214);
    position: relative;
    }
.cart-main table thead tr.t-head,
.mod_iso_checkout .orderproducts table thead tr.t-head,
.mod_iso_orderdetails table thead tr.t-head {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    display: table;
    width: 100%;
    }
.cart-main table tbody tr.product:hover,
.mod_iso_checkout .orderproducts table tbody tr:hover,
.mod_iso_orderdetails table tbody tr:hover {
    background-color: rgb(250,250,250);
    }
.cart-main table tbody tr.product td.col_0,
.cart-main table thead tr.t-head td.col_0,
.mod_iso_orderdetails thead tr.t-head td.col_0,
.mod_iso_orderdetails table tbody tr.product td.col_0,
.mod_iso_checkout .orderproducts table thead tr.t-head td.col_0,
.mod_iso_checkout .orderproducts table tbody tr.product td.col_0 {
    width: 10%;
    }
.cart-main table thead tr.t-head td.col_1 {
    padding-left: 2rem;
    width: 52.5%;
    }
.cart-main table tbody tr.product td.name,
.mod_iso_orderdetails thead tr.t-head td.col_1,
.mod_iso_orderdetails table tbody tr.product td.name,
.mod_iso_checkout .orderproducts table thead tr.t-head td.col_1,
.mod_iso_checkout .orderproducts table tbody tr.product td.name {
    padding-left: 2rem;
    width: 52.5%;
    }
.cart-main table tbody tr.product td.name a {
    display: block;
    }
.cart-main table thead tr.t-head td.col_2,
.cart-main table tbody tr.product td.col_2,
.mod_iso_checkout .orderproducts table thead tr.t-head td.col_2,
.mod_iso_checkout .orderproducts table tbody tr.product td.col_2,
.mod_iso_orderdetails thead tr.t-head td.col_2,
.mod_iso_orderdetails table tbody tr.product td.col_2 {
    text-align: center;
    padding: 5px 10px;
    width: 15%;
    text-align: left;
    }
.cart-main table thead tr.t-head td.col_3,
.mod_iso_checkout .orderproducts table thead tr.t-head td.col_3,
.mod_iso_checkout .orderproducts table tbody tr.product td.col_3,
.mod_iso_orderdetails thead tr.t-head td.col_3,
.mod_iso_orderdetails table tbody tr.product td.col_3 {
    width: 10%;
    text-align: center;
    padding: 5px 10px;
    }
.cart-main table tbody tr.product td.col_3 {
    padding: 40px 20px 10px 20px;
    width: 10%;
    text-align: center;
    }
.cart-main table td.quantity .text,
.mod_iso_checkout .orderproducts table td.quantity .text,
.mod_iso_orderdetails td.quantity .text {
    font: .7rem;
    padding: 9px 5px;
    text-align: center;
    width: 100%;
    }
.cart-main table thead tr.t-head td.col_4,
.cart-main table tbody tr.product td.col_4,
.mod_iso_checkout .orderproducts table thead tr.t-head td.col_4,
.mod_iso_checkout .orderproducts table tbody tr.product td.col_4,
.mod_iso_orderdetails thead tr.t-head td.col_4,
.mod_iso_orderdetails table tbody tr.product td.col_4 {
    padding: 5px 10px;
    text-align: right;
    width: 24%;
    }
.cart-main table tbody tr td.col_4.price,
.mod_iso_orderdetails table tbody tr td.col_4.price,
#iso_mod_checkout_review table tbody tr td.col_4.price {
    font-weight: bold;
    }

/*	Produktttabelle foot Preiszusammenfassung
   ====================================================================== */
.cart-main table tfoot,
.mod_iso_orderdetails table tfoot,
.mod_iso_checkout .orderproducts table tfoot {
    float: right;
    margin-bottom: 1rem;
    }
.cart-main table tfoot .foot_2 .name,
#iso_mod_checkout_review table tfoot .foot_2 .name,
.mod_iso_orderdetails table tfoot .foot_2 .name {
    margin-bottom: 2rem;
    font-weight: bold;
    }
.cart-main table tfoot,
.mod_iso_checkout .orderproducts table tfoot,
.mod_iso_orderdetails table tfoot {
    border-bottom: 1px solid rgb(214,214,214);
    padding-bottom: 1rem;
    width: 36.5%;
    }
.cart-main table tfoot tr,
.mod_iso_orderdetails table tfoot tr {
    width: 100%;
    }
.cart-main table tfoot td.col_0,
.mod_iso_checkout .orderproducts table tfoot td.col_0,
.mod_iso_orderdetails table tfoot tr td.col_0 {
    display: none;
    }
.cart-main table tfoot td.col_1,
.mod_iso_checkout .orderproducts table tfoot td.col_1,
.mod_iso_orderdetails table tfoot tr td.col_1 {
    padding: 5px 12rem 0 0;
    line-height: 1.3rem;
    width: 50%;
    }
.cart-main table tfoot td.col_3,
.mod_iso_checkout .orderproducts table tfoot td.col_3,
.mod_iso_orderdetails table tfoot tr td.col_3 {
    display: none;
    }
.cart-main table tfoot td.col_3.price {
    padding-right: 2rem;
    }
.cart-main table tfoot .col_4.price,
.mod_iso_orderdetails tfoot .col_4.price,
.mod_iso_checkout .orderproducts table tfoot td.col_4 {
    font-weight: bold;
    width: 3rem;
    text-align: right;
    }
.cart-main table tfoot td.col_5,
.mod_iso_checkout .orderproducts table tfoot td.col_5 {
    display: none;
    }
.cart-main .submit_container.u_6,
.cart-main .button-back.u_6 {
    margin: 0;
    width: 50%;
    }
.cart-main .submit_container {
    display: table;
    margin-top: 1rem;
    width: 100%;
    }
#ihr-warenkorb .cart-main .submit_container > *,
#ihr-warenkorb-269 .cart-main .submit_container > * {
    display: table-cell;
    vertical-align: right;
    }
#ihr-warenkorb .spalte-button,
#ihr-warenkorb-269 .spalte-button {
    min-width: 200px;
    max-width: 200px;
    }
#ihr-warenkorb .spalte-buttonless,
#ihr-warenkorb-269 .spalte-buttonless {
    width: 45%;
    }
#ihr-warenkorb .spalte-button input,
#ihr-warenkorb-269 .spalte-button input {
    width: 100%;
    }
.buttonlink {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: transparent;
    border: 2px solid;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgb(255,153,0);
    display: inline-block;
    font-size: .875rem;
    font-weight: 400;
    padding: 8px 30px 9px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    }
#ihr-warenkorb .submit_container input[name="button_continue"],
#ihr-warenkorb-269 .submit_container input[name="button_continue"] {
    display: none;
    }
#ihr-warenkorb .submit_container input[name="button_checkout"],
#ihr-warenkorb-269 .submit_container input[name="button_checkout"] {
    margin-left: 5px;
    }
.spalte-button.1 {
    margin-right: .5rem;
    }

/* ==========================================================================
	Shop Anmeldung
   ========================================================================== */
#anmeldung-warenkorb h2.anmeldung-member {
    margin-bottom: .1rem;
    }
#anmeldung-warenkorb h2.anmeldung-member-last {
    margin-top: .4rem;
    }

/* form anmeldung wiedekehrende Kunden
========================================================================== */
.mod_login form label,
.address form label,
.mod_registration form label,
.mod_iso_checkout form label,
.kontakt-service form label,
.mod_iso_addressbook label,
.mod_changePassword label {
    position: relative;
    float: none;
    display: block;
    margin-bottom: 5px;
    }
.mod_registration form .text {
    width: 100%;
    }
.anmeldungform {
    position: relative;
    }
form fieldset label {
    display: inline;
    }
form .text,
form .textarea,
form .captcha {
    width: 70%;
    margin-bottom: .7rem;
    padding: 10px;
    background-color: rgb(250,250,250);
    border: 0;
    color: #000;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -ms-transition: all .3s ease-in-out;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    }
.anmeldung p.login_info {
    margin-bottom: 2rem;
    }
.anmeldung .checkbox_container {
    display: none;
    }
.anmeldung .submit_wrapper {
    border-top: 1px solid rgb(214,214,214);
    margin-top: 7px;
    width: 70%;
    }
.anmeldung .vergessen {
    padding-top: 2rem;
    }
input [class="passwort"] {
    margin-bottom: 2rem;
    }
form .formbody #password {
    margin-bottom: 2rem;
    }
.member-login-cart form p.error {
    margin-top: 0;
    margin-bottom: 1rem;
    color: #903;
    font-weight: 400;
    }
form .text:focus,
form .textarea:focus,
form .captcha:focus {
    background-color: rgb(232,232,232);
    color: ccc;
    outline: none;
    }
form fieldset span label {
    margin-left: .5rem;
    margin-right: 1rem;
    }

/* Liste Vorzuge Neukunden
========================================================================== */
.neukunde-text ul {
    margin: 1rem 0;
    }
.neukunde-text li {
    position: relative;
    padding-left: 2rem;
    padding-bottom: .25rem;
    }
.neukunde-text li:before {
    font: .9rem FontAwesome;
    color: #f90;
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 2px;
    }
.neukunde-text .text_neukunden,
.text_gastkunde {
    margin-bottom: 2rem;
    }

/* button "neues Konto erstellen"
========================================================================== */
.link-wrapper {
    margin: 2rem 0 5rem 0;
    border-top: 1px solid rgb(214,214,214);
    padding: 2rem 0;
    width: 50%;
    }
#anfrage-erhalten .link-wrapper {
    margin: 2rem auto;
    width: 30%;
    }
.link-wrapper .submit {
    background-color: rgb(255,153,0);
    border: 0 none rgba(0,0,0,0);
    -webkit-border-radius: 4px;
    border-radius: 4px;
    color: #fff;
    font-size: 100%;
    padding: .6rem 1.5rem;
    text-decoration: none;
    -webkit-transition: box-shadow .1s linear 0s;
    -moz-transition: box-shadow .1s linear 0s;
    -o-transition: box-shadow .1s linear 0s;
    transition: box-shadow .1s linear 0s;
    width: 100%;
    text-align: center;
    }
.link-wrapper .submit a {
    color: #fff;
    }
.link-wrapper .submit:hover {
    background-color: rgb(251,164,32);
    }
.aussenwrapper {
    margin-bottom: 2rem;
    }
form p.error {
    margin-top: 0;
    margin-bottom: 5px;
    color: rgb(255,153,0);
    }

/* button "Gastanmeldung"
========================================================================== */
.ce_hyperlink.btn {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: transparent;
    border: 2px solid;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    color: rgb(255,153,0);
    display: inline-block;
    font-size: .875rem;
    font-weight: 400;
    padding: 8px 30px 9px;
    text-align: center;
    text-decoration: none;
    text-transform: none;
    }
.ce_hyperlink.btn a:hover {
    color: rgb(5,5,5);
    }

/* ==========================================================================
	Shop Modul Kasse Rechnungadresse /Versandoptionen
   ========================================================================== */
/* Statusleiste oben
========================================================================== */
.mod_iso_checkout .steps ol li {
    border-bottom: 5px solid #e8e8e8;
    display: block;
    float: left;
    font-size: 15px;
    margin-bottom: 20px;
    margin-top: 20px;
    padding-bottom: 10px;
    position: relative;
    text-align: center;
    width: 25%;
    }
.mod_iso_checkout .steps ol {
    margin: 0;
    padding: 0 15px;
    list-style-type: none;
    }
.mod_iso_checkout .steps ol li {
    width: 25%;
    position: relative;
    float: left;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    text-align: center;
    border-bottom: 5px solid #$box;
    font-size: 15px;
    }
.mod_iso_checkout .steps ol li.passed {
    border-color: rgb(255,153,0);
    }
.mod_iso_checkout .steps ol li:after {
    width: 18px;
    height: 18px;
    bottom: -15px;
    position: absolute;
    background-color: #fafafa;
    border: 4px solid #e8e8e8;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    font-size: 1px;
    color: $shop;
    behavior: url(assets/css3pie/1.0.0/PIE.htc);
    right: -15px;
    content: ".";
    z-index: 2;
    }
.mod_iso_checkout .steps ol li.passed:after {
    height: 14px;
    padding-top: 4px;
    background-color: #$shop;
    border-color: rgb(255,153,0);
    color: rgb(255,153,0);
    font: 11px FontAwesome;
    content: "\f00c";
    }
.mod_iso_checkout .steps ol li:before {
    width: 18px;
    height: 18px;
    bottom: -10px;
    position: absolute;
    color: #e8e8e8;
    left: -12px;
    font: 22px FontAwesome;
    content: "\f054";
    }
.mod_iso_checkout .steps ol li.passed:before {
    color: rgb(255,153,0);
    }
.mod_iso_checkout .steps ol li.last:after {
    width: 18px;
    height: 18px;
    bottom: -8px;
    position: absolute;
    border: 0;
    color: #e8e8e8;
    right: -13px;
    font: 23px FontAwesome;
    content: "\f061";
    background: transparent;
    }
.mod_iso_checkout .steps {
    margin-bottom: 3rem;
    }

/* 1.  Adresse
========================================================================== */
.mod_iso_checkout .address {
    margin-top: 3rem;
    }
#iso_mod_checkout_address fieldset.radio_container > :first-child {
    margin-left: -.6rem;
    margin-right: 2rem;
    }
#iso_mod_checkout_address fieldset span {
    position: relative;
    }
#iso_mod_checkout_address fieldset span input[id="opt_billingaddress_0"] {
    position: absolute;
    top: 18px;
    margin-bottom: 2rem;
    }
#iso_mod_checkout_address fieldset span input[id="opt_billingaddress_1"] {
    position: absolute;
    top: -92px;
    left: 250px;
    margin-bottom: 2rem;
    }
#iso_mod_checkout_address fieldset span label#lbl_billingaddress_1 {
    position: absolute;
    top: -95px;
    left: 265px;
    margin-bottom: 2rem;
    width: 200px;
    }
#lbl_billingaddress_0 .vcard,
#lbl_shippingaddress_1 .vcard {
    padding-left: 1rem;
    }
#iso_mod_checkout_address fieldset span input[id="opt_shippingaddress_2"] {
    position: absolute;
    top: -88px;
    left: 285px;
    margin-bottom: 2rem;
    }
#iso_mod_checkout_address fieldset span label#lbl_shippingaddress_2 {
    position: absolute;
    top: -90px;
    left: 300px;
    margin-bottom: 2rem;
    width: 280px;
    }
#iso_mod_checkout_address fieldset span input[id="opt_shippingaddress_1"] {
    display: none;
    }
.mod_iso_checkout .submit_container {
    text-align: left;
    margin-top: 1rem;
    border-top: 1px solid rgb(214,214,214);
    padding-top: 1.5rem;
    }
form#iso_mod_checkout_address select {
    margin-bottom: .8rem;
    padding: .5em .6em;
    color: rgb(102,102,102);
    width: 100%;
    }
.button-1,
.button-2 {
    display: inline-block;
    width: 200px;
    }
input[name="nextStep"],
input[name="previousStep"] {
    width: 100%;
    }
input[name="nextStep"] {
    margin-left: .1rem;
    }
#iso_mod_checkout_address .button-1 {
    display: none;
    }
#iso_mod_checkout_review input[name="nextStep"] {
    padding: .6rem 1.0rem;
    }
.review.orderinfo h2 {
    color: rgb(82,82,82);
    }
.review.orderinfo h3 {
    text-transform: none;
    }

/* 2. Seite Versand
========================================================================== */
.mod_iso_checkout fieldset.radio_container label {
    display: inline;
    font-weight: bold;
    }
#iso_mod_checkout_shipping span.note p {
    display: none;
    }
h2.steps {
    margin-bottom: 0;
    font-size: 1.1rem;
    font-weight: bold;
    letter-spacing: .1rem;
    text-align: center;
    }
.radio_container span {
    margin-left: 0;
    font-weight: normal;
    }
input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0;
    }

/*3. Seite rechnungwege
========================================================================== */
#iso_mod_checkout_payment #ctrl_paymentmethod > span:first-child {
    margin-left: -10px;
    }
#iso_mod_checkout_payment #ctrl_paymentmethod > span {
    margin-left: -30px;
    }
#iso_mod_checkout_payment #ctrl_paymentmethod span.note p {
    padding: 5px 15px;
    }
#billingaddress_new .widget-select {
    width: 70%;
    margin-bottom: 1rem;
    }
.mod_iso_checkout fieldset {
    border: none;
    padding-bottom: 2rem;
    }

/* 4. Bestellubersicht (orderinfo)
========================================================================== */
#iso_mod_checkout_review .foot_3 .name {
    font-weight: bold;
    }
.mod_iso_checkout .orderinfo .edit {
    display: block;
    float: right;
    margin-top: 5px;
    position: relative;
    }
#iso_mod_checkout_review .review.orderproducts {
    border-top: 1px solid rgb(214,214,214);
    }
#iso_mod_checkout_review .orderproducts table tfoot {
    float: right;
    margin-bottom: 1rem;
    }
#iso_mod_checkout_review .info_container.last {
    margin-bottom: 2rem;
    }
#iso_mod_checkout_review .orderproducts table tfoot td.col_1 {
    padding: 5px 1rem 0 0;
    line-height: 1.3rem;
    width: 95%;
    }
h3.review {
    text-transform: none;
    color: rgb(182,182,182);
    padding-bottom: 10px;
    border-bottom: 1px solid rgb(214,214,214);
    width: 30%;
    margin-bottom: 1rem;
    }
h3.review:after {
    background-color: #f90;
    content: ".";
    display: block;
    font: 0 FontAwesome;
    height: 2px;
    margin-bottom: -11px;
    margin-top: 7px;
    position: relative;
    width: 50px;
    }
#iso_mod_checkout_review .submit_container {
    text-align: right;
    border: 0;
    }
.orderproducts {
    padding: 0;
    }
.mod_iso_checkout form .orderconditionsafterproducts fieldset {
    background-color: rgb(250,250,250);
    padding: 1rem 0;
    }

/* checkout form */
.orderconditionsafterproducts {
    background-color: rgb(250,250,250);
    clear: both;
    overflow: hidden;
    }
.mod_iso_checkout form .orderconditionsafterproducts label,
.orderconditionsafterproducts input.checkbox {
    display: inline;
    }
.mod_iso_orderdetails .payment_method {
    margin-bottom: 2rem;
    }
.widget-checkbox:after {
    content: ".";
    clear: both;
    display: block;
    visibility: hidden;
    height: 0;
    }
.widget-checkbox {
    float: left;
    }
#anmeldung-haendler form .captcha {
    width: 100%;
    }
#anmeldung-haendler .fields {
    margin-bottom: 1rem;
    }

/* zurück link produktseite als button orange
========================================================================== */
/*.back { 
    background-color: #F90;
    border: 0 none rgba(0, 0, 0, 0);
    border-radius: 4px;
    color: rgba(0, 0, 0, 0.8);
    font-size: 100%;
    padding: 0.5em 1.5em;
    text-decoration: none;
    transition: box-shadow 0.1s linear 0s;
	text-align:center;}
.back:hover { 
 background-color: #fba420;
 }
.back a { 
    color: rgba(0, 0, 0, 0.8);
}
.zurueck.u_6 {
	margin-left: 0;}
	*/
/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 * @description provides global helper classes for basic element styling and positioning
 *
 * Table of contents
 * -----------------------------------------
 * 1. Global Helper Styles
 */
/* 1. Global Helper Styles
   ========================================================================== */
.centerize {
    margin: 0 auto;
    }
.stretch {
    width: 100%;
    float: left;
    }
.invisible {
    width: 0;
    height: 0;
    left: -1000px;
    top: -1000px;
    position: absolute;
    overflow: hidden;
    display: inline;
    }
.clear {
    clear: both;
    height: 0;
    width: 0;
    }

/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 * @description provides global helper classes for basic element styling and positioning
 *
 * Table of contents
 * -----------------------------------------
 *
 * 0. Default behaviour      - show/hide elements on default for browsers not supporting media queries
 * 1. Desktop Big            - show/hide elements on defined at defined width or smaller
 * 2. Desktop Normal         - show/hide elements on defined at defined width or smaller
 * 3. Tablet Portrait Size   - show/hide elements on defined at defined width or smaller
 * 4. Smartphone Big Size    - show/hide elements on defined at defined width or smaller
 * 5. Smartphone Small Size  - show/hide elements on defined at defined width or smaller
 *
 * 6. Breakpoint for grid container clear
 */
/* ==========================================================================
	0. Default behaviour
   ========================================================================== */
.showBelowDesktopBig,
.showBelowDesktopSmall,
.showBelowTabletLandscape,
.showBelowTabletPortrait,
.showBelowSmartphoneBig,
.showAtSmartphoneSmall {
    display: none;
    }
.hideBelowDesktopBig,
.hideBelowDesktopSmall,
.hideBelowTabletLandscape,
.hideBelowTabletPortrait,
.hideBelowSmartphoneBig,
.hideAtSmartphoneSmall {
    display: block;
    }

/* ==========================================================================
	1. Desktop Big
   ========================================================================== */
@media screen and (max-width: 1500px) {
.showBelowDesktopBig {
    display: block;
    }
.hideBelowDesktopBig {
    display: none;
    }
}

/* ==========================================================================
	2. Desktop Normal
   ========================================================================== */
@media screen and (max-width: 1199px) {
.showBelowDesktopSmall {
    display: block;
    }
.hideBelowDesktopSmall {
    display: none;
    }
}

/* ==========================================================================
	2. tablet hochformat
   ========================================================================== */
@media screen and (max-width: 1023px) {
.showBelowTabletLandscape {
    display: block;
    }
.hideBelowTabletLandscape {
    display: none;
    }
}

/* ==========================================================================
	3. Tablet Portrait Size
   ========================================================================== */
@media screen and (max-width: 767px) {
.showBelowTabletPortrait {
    display: block;
    }
.hideBelowTabletPortrait {
    display: none;
    }
}

/* ==========================================================================
	4. Smartphone Big Size
   ========================================================================== */
@media screen and (max-width: 479px) {
.showBelowSmartphoneBig {
    display: block;
    }
.hideBelowSmartphoneBig {
    display: none;
    }
}

/* ==========================================================================
	5. Smartphone Small Size
   ========================================================================== */
@media screen and (max-width: 320px) {
.showBelowSmartphoneSmall {
    display: block;
    }
.hideBelowSmartphoneSmall {
    display: none;
    }
}

/* ==========================================================================
	6. Grid Container Float Clear
   ========================================================================== */
@media screen and (max-width: 767px) {
/*----------------------------------------------------------------------------
    :Desc Defines the base style of the grid wrapper thats needed to hold the units
    -----------------------------------------------------------------------------*/
.grid {
    min-width: 0;
    }

/*----------------------------------------------------------------------------
    :Desc Reset all unit styles
    -----------------------------------------------------------------------------*/
.u_1,
.u_2,
.u_3,
.u_4,
.u_5,
.u_6,
.u_7,
.u_8,
.u_9,
.u_10,
.u_11,
.u_12,
.u_13,
.u_14,
.u_15,
.u_16,
.u_17,
.u_18,
.u_19,
.u_20,
.u_21,
.u_22,
.u_23,
.u_24 {
    width: auto;
    float: none;
    margin-left: 0;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
    }
}

/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 * @description provides global helper classes for basic element styling and positioning
 *
 * Table of contents
 * -----------------------------------------
 *
 * 0. Default behaviour      - show/hide elements on default for browsers not supporting media queries
 * 1. Desktop Big            - show/hide elements on defined at defined width or smaller
 * 2. Desktop Normal         - show/hide elements on defined at defined width or smaller
 * 3. Tablet Portrait Size   - show/hide elements on defined at defined width or smaller
 * 4. Smartphone Big Size    - show/hide elements on defined at defined width or smaller
 * 5. Smartphone Small Size  - show/hide elements on defined at defined width or smaller
 */
/* ==========================================================================
	1. Desktop Big Big ohen Media queries
   ========================================================================== */
/* ==========================================================================
	1. Desktop Big
   ========================================================================== */
@media screen and (max-width : 1500px) {
.center {
    max-width: 1024px;
    }
}

/* ==========================================================================
	2. Ipad Portrait
   ========================================================================== */
@media screen and (max-width: 1023px) {
}

/* ==========================================================================
	3. Tablet Portrait Size unter 767px (z.B.iphone5 landscape 568x320)
   ========================================================================== */
@media screen and (max-width : 767px) {
}

/* ==========================================================================
	4. Smartphone Big Size (iphone5 portrait)
   ========================================================================== */
@media screen and (max-width : 479px) {
}

/* ==========================================================================
        5. Smartphone Small Size
       ========================================================================== */
@media screen and (max-width : 320px) {
}

/* ==========================================================================
  CSS from slashworks
   ========================================================================== */
/**
 * @author Stefan Melz @ slashworks stefan@slash-works.de
 * @description provides global helper classes for basic element styling and positioning
 *
 * Table of contents
 * -----------------------------------------
 *
 * 0. Default behaviour      - show/hide elements on default for browsers not supporting media queries
 * 1. Desktop Big            - show/hide elements on defined at defined width or smaller
 * 2. Desktop Normal         - show/hide elements on defined at defined width or smaller
 * 3. Tablet Portrait Size   - show/hide elements on defined at defined width or smaller
 * 4. Smartphone Big Size    - show/hide elements on defined at defined width or smaller
 * 5. Smartphone Small Size  - show/hide elements on defined at defined width or smaller
 */
.toogleButton {
    display: none;
    }
.toogleButton2 {
    display: none;
    }

/* ==========================================================================
	1. Desktop Big
   ========================================================================== */
@media screen and (max-width: 1500px) {
.cookiebar {
    padding: 1rem 1rem;
    font-size: .8rem;
    }
}

/* ==========================================================================
	below-desktop-normal 2. unterhalb 1199px =iPad landscape z.B:
   ========================================================================== */
@media screen and (max-width: 1199px) {
#cart-mini {
    position: absolute;
    right: 35px;
    top: 30px;
    }
.scroll-fix #cart-mini {
    position: absolute;
    right: 35px;
    top: 15px;
    }
#main .rsts-skin-default .rsts-prev {
    left: 0;
    top: 110px;
    }
#main .rsts-skin-default .rsts-next {
    top: 110px;
    right: 0;
    }
#main .inside {
    padding-top: .5rem;
    padding-bottom: 3.5rem;
    }
.center {
    margin: 0 2rem;
    }
#bottom-navigation-wrapper {
    min-height: 39px;
    }
#main-nav .level_1 > li {
    display: inline-block;
    position: relative;
    }
.cart-main .button_checkout {
    margin-left: .3rem;
    }
.cart-main table tfoot,
.mod_iso_checkout .orderproducts table tfoot,
.mod_iso_orderdetails table tfoot {
    width: 41.5%;
    }
.hilfe-wrapper.center {
    padding-top: 2rem;
    }
#main {
    padding: 0 2rem;
    }
#main.u_9 {
    padding: 0 2rem 0 0;
    }
.dropdown-service-inner .textspalte li {
    font-size: .8rem;
    }
.dropdown-service-inner .textspalte .ce_text p.service-phone {
    padding: .5rem 0;
    border-top: 1px solid #fff;
    border-bottom: 1px solid #fff;
    margin-right: 1rem;
    color: #000;
    }
.dropdown-service-inner span.phone {
    font-size: .9rem;
    }
.dropdown-service-inner .menuspalte,
u_6 {
    position: relative;
    }
.closeModal.showBelowDesktopSmall {
    position: absolute;
    top: 190px;
    left: 130px;
    width: 100px;
    }
.dropdown-service-inner .textspalte.u_6 {
    min-height: 200px;
    }
.safari.dropdown-service-inner span.phone {
    display: none;
    }
.sidebar-nav h3 {
    font-size: 1.1rem;
    }
.sidebar-nav {
    padding: 10px 8px;
    }
.sidebar-nav .presse {
    margin-bottom: 1rem;
    }
.sidebar-nav li:hover {
    background-color: rgb(232,232,232);
    }
.sidebar-nav li a,
.sidebar-nav li span {
    padding: 5px 15px;
    font-size: .9rem;
    }
.sidebar-nav li span,
a.trail,
a.active,
span.active {
    color: #f90;
    }
.mod_registration {
    width: 70%;
    margin: 0 auto;
    }
#memocards-gedaechtnisspiele-suche-drei .product form {
    min-height: 630px;
    }
.cookiebar {
    padding: .8rem .8rem;
    font-size: .7rem;
    }
}

/* ==========================================================================
	3. Tablet Portrait Size
   ========================================================================== */
@media screen and (max-width: 1023px) {
#main-nav .level_1 > li {
    display: inline-block;
    position: relative;
    }
#main-nav .level_1 a,
#main-nav li span.active {
    font-size: .8rem;
    }
#main-nav .level_1 > li {
    display: inline-block;
    position: relative;
    padding-left: .3rem;
    }
body #iso_ajaxBox {
    width: 70%;
    }
.cart-main table thead tr.t-head td.col_1 {
    padding-left: 2rem;
    width: 48.5%;
    }
.cart-main table tfoot,
.mod_iso_checkout .orderproducts table tfoot,
.mod_iso_orderdetails table tfoot {
    width: 56%;
    }
.cart-main table tfoot td.col_1,
.mod_iso_checkout .orderproducts table tfoot td.col_1,
.mod_iso_orderdetails table tfoot tr td.col_1 {
    padding: 5px 10rem 0 0;
    line-height: 1.3rem;
    width: 50%;
    }
aside#left.u_3 {
    display: none;
    }
#main.u_9 {
    width: 96%;
    padding: 0 2rem;
    }
}

/* ==========================================================================
	3.Smartphone
   ========================================================================== */
@media screen and (max-width: 767px) {
#mobile-main-nav {
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    }
.scroll-fix .logo {
    display: none;
    }
.scroll-fix #header-nav-mobil {
    padding: .5rem 0;
    }

/* --------------------------------------------------------------------------
     Mobile Navi Dk Mmenu
   ------------------------------------------------------------------------ */
.center {
    margin: 0 .1rem;
    overflow: hidden;
    }
.mm-menu {
    width: 60%;
    min-width: 140px;
    max-width: 440px;
    }
.close {
    cursor: pointer;
    }
.mod_breadcrumb {
    padding: 1rem .5rem 1rem;
    }
header {
    height: auto;
    width: 100%;
    position: fixed;
    top: 0;
    background: rgb(232,232,232);
    -webkit-box-shadow: 0 9px 8px -4px rgba(199,193,199,.71);
    -moz-box-shadow: 0 9px 8px -4px rgba(199,193,199,.71);
    box-shadow: 0 2px 8px -4px rgba(199,193,199,.71);
    z-index: 111111111111111111111;
    -webkit-transition: all ease-in .3s;
    -moz-transition: all ease-in .3s;
    -o-transition: all ease-in .3s;
    transition: all ease-in .3s;
    }
#header-nav-mobil {
    padding-bottom: 10px;
    }

/*Menu ausgeblendet beim Runterscrollen------------*/
.nav-up {
    top: -100px;
    }

/* --------------------------------------------------------------------------
     Header Mobil
   ------------------------------------------------------------------------ */
.header-top-wrapper {
    position: relative;
    min-height: .1rem;
    background-color: #FFF;
    }

/*logo im Header
---------------------------------------*/
.logo figure img {
    max-width: 150px;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
    }
.logo figure {
    padding-left: 1rem;
    padding-top: .5rem;
    width: 100%;
    float: none;
    text-align: left;
    }
.home #container {
    margin-top: 0;
    }
.custom {
    margin-top: 75px;
    }
.cookiebar {
    padding: .5rem .5rem;
    font-size: .6rem;
    }

/* --------------------------------------------------------------------------
   Product slider main pfeile ausgebelnde
   ------------------------------------------------------------------------ */
/*pfeile ausgeblendete*/
#main .rsts-skin-default .rsts-prev {
    left: -29px;
    bottom: 20px;
    }
#main .rsts-skin-default .rsts-next {
    bottom: 20px;
    right: -1rem;
    }
.product-slider-mobil-2 {
    padding-left: 8px;
    }
.hilfe-wrapper .u_4 {
    float: left;
    width: 33.333333%;
    }
.hilfe-wrapper-inside {
    background: rgb(250,250,250) none repeat scroll 0 0;
    padding: 12px 0;
    margin: 0;
    font-size: .9rem;
    }
.hilfe-wrapper.center {
    margin: 0;
    padding-top: 0;
    border-top: 1px dotted rgb(214,214,214);
    }
.footer-bar-inside.u_6 {
    float: left;
    width: 50%;
    }
#kontaktformular-service .formular,
.infodiv {
    margin-bottom: 10px;
    position: relative;
    padding: 1rem;
    width: 100%;
    margin-left: 0;
    }
#kontaktformular-service form select,
.formular form select,
.kontakt-service form textarea {
    width: 100%;
    }
form .text,
form .textarea,
form .captcha {
    width: 100%;
    }
.headline_abgesetzt h1,
.headline_abgesetzt_top h1 {
    font-size: 1.3rem;
    }
.headline_abgesetzt h2,
.headline_abgesetzt_top h2 {
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: bold;
    letter-spacing: .1rem;
    }
.headline_abgesetzt_top {
    margin: 0 0 1.4rem;
    text-align: center;
    }
.headline_abgesetzt {
    margin: 1rem 0 1.4rem 0;
    text-align: center;
    }
.margin-bottom-gross {
    margin-bottom: 1.4rem;
    }
#left {
    display: none;
    }
.sidebar-nav {
    margin-bottom: 1rem;
    }
#main {
    padding: 0 1rem;
    }
#main .inside {
    padding-top: .5rem;
    padding-bottom: 1.5rem;
    margin: 0 1rem 0 1rem;
    }
.bildblock.u_6 {
    width: 100%;
    }
#footer-bar-inside .icon-bezahlung.u_6 {
    margin-bottom: 1rem;
    }
.icon-bezahlung.u_6,
.icon-versand.u_6 {
    width: 100%;
    float: none;
    display: block;
    text-align: center;
    }
.icon-bezahlung-text,
.icon-versand.u_6 {
    width: 100%;
    float: none;
    display: inline-block;
    }
.cart-main table tfoot td.col_1,
.mod_iso_checkout .orderproducts table tfoot td.col_1,
.mod_iso_orderdetails table tfoot tr td.col_1 {
    padding: 5px 5rem 0 0;
    line-height: 1.3rem;
    width: 50%;
    }
#ihr-warenkorb .cart-main .submit_container,
#ihr-warenkorb-269 .cart-main .submit_container {
    display: block;
    margin-top: 1rem;
    width: 99%;
    text-align: right;
    }
#ihr-warenkorb .cart-main .submit_container > *,
#ihr-warenkorb-269 .cart-main .submit_container > * {
    display: inline-block;
    }
#ihr-warenkorb .spalte-button,
#ihr-warenkorb-269 .spalte-button {
    width: 160px;
    min-width: 160px;
    max-width: 160px;
    }
#ihr-warenkorb .spalte-button input,
#ihr-warenkorb-269 .spalte-button input {
    width: 100%;
    }
#ihr-warenkorb .spalte-button.1 {
    line-height: 1.5rem;
    }
#ihr-warenkorb .cart-main .submit_container .spalte-buttonless,
#ihr-warenkorb-269 .cart-main .submit_container .spalte-buttonless {
    display: none;
    }
#ihr-warenkorb .spalte-button,
#ihr-warenkorb-269 .spalte-button {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    }
.buttonlink {
    padding: .3rem 0 .45rem 0;
    font-size: .775rem;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    }
.button_update {
    margin-left: 3px;
    }
.submit_container input[type="submit"] {
    font-size: .775rem;
    padding: .5rem .5rem;
    }
#iso_mod_checkout_review .submit_container {
    text-align: left;
    border: 0;
    }
#iso_mod_checkout_address fieldset span label#lbl_shippingaddress_2 {
    left: -5px;
    margin-bottom: 2rem;
    position: absolute;
    top: 9px;
    }
#iso_mod_checkout_address fieldset span input[id="opt_shippingaddress_2"] {
    position: absolute;
    top: 11px;
    left: -23px;
    margin-bottom: 2rem;
    }
input.submit.confirm.button {
    text-align: left;
    width: 30%;
    }

/* --------------------------------------------------------------------------
Menu footer
  ------------------------------------------------------------------------ */
#footer-nav-mobil-1 .toogleButton,
#footer-nav-mobil-2 .toogleButton2,
#footer-nav-mobil-3 .toogleButton3,
#footer-nav-mobil-4 .toogleButton4 {
    display: block;
    text-align: center;
    background: rgb(250,250,250);
    position: relative;
    }
#footer-nav-mobil-1 .toogleButton {
    border: 1px solid rgb(232,232,232);
    }
#footer-nav-mobil-2 .toogleButton2,
#footer-nav-mobil-3 .toogleButton3,
#footer-nav-mobil-4 .toogleButton4 {
    border-bottom: 1px solid rgb(232,232,232);
    }
#footer-nav-mobil-1 .toogleButton a,
#footer-nav-mobil-2 .toogleButton2 a,
#footer-nav-mobil-3 .toogleButton3 a,
#footer-nav-mobil-4 .toogleButton4 a {
    display: block;
    padding: 10px;
    }
#footer-nav-mobil-1 ul,
#footer-nav-mobil-2 ul,
#footer-nav-mobil-3 ul,
#footer-nav-mobil-4 ul {
    height: 0;
    overflow: hidden;
    -webkit-transition: all ease .5s;
    -moz-transition: all ease .5s;
    -o-transition: all ease .5s;
    transition: all ease .5s;
    background: rgb(250,250,250);
    }
#footer-nav-mobil-1.active ul,
#footer-nav-mobil-2.active ul,
#footer-nav-mobil-4.active ul {
    height: 117px;
    display: block;
    }
#footer-nav-mobil-3.active ul,
#footer-nav-mobil-4.active ul {
    height: 145px;
    display: block;
    }
#footer-nav-mobil-1 li,
#footer-nav-mobil-2 li,
#footer-nav-mobil-3 li,
#footer-nav-mobil-4 li {
    display: block;
    padding: .3rem 0;
    text-align: center;
    border-bottom: 1px solid rgb(232,232,232);
    }
#footer-nav-mobil-1 li.first,
#footer-nav-mobil-2 li.first {
    padding-top: .3rem;
    }
#footer-nav-mobil-1 .toogleButton a:after,
#footer-nav-mobil-2 .toogleButton2 a:after,
#footer-nav-mobil-3 .toogleButton3 a:after,
#footer-nav-mobil-4 .toogleButton4 a:after {
    font-family: FontAwesome;
    font-size: 1.5rem;
    content: '\f107';
    display: inline-block;
    position: absolute;
    bottom: 5px;
    right: 2rem;
    color: rgb(255,153,0);
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    }
#footer-nav-mobil-1.active .toogleButton a:after,
#footer-nav-mobil-2.active .toogleButton2 a:after,
#footer-nav-mobil-3.active .toogleButton3 a:after,
#footer-nav-mobil-4.active .toogleButton4 a:after {
    -webkit-transform: rotate(+180deg);
    -moz-transform: rotate(+180deg);
    -ms-transform: rotate(+180deg);
    -o-transform: rotate(+180deg);
    transform: rotate(+180deg);
    }
.gallery-wrapper figure.image_container {
    padding: 1rem;
    width: 33.33%;
    margin-bottom: .5rem;
    float: left;
    }
.mod_iso_productreader .submit_container input[type="submit"] {
    width: 70%;
    }
.productreader-memocards .description p {
    width: 100%;
    text-align: left;
    }
.productreader-memocards .description p {
    width: 100%;
    text-align: left;
    }
.productreader-postkarten .availability,
.productreader-postkarten .shipping_time {
    padding-left: 1rem;
    }
#detailseite-postkarten .zurueck,
#detailseite-postkarten .submit_container {
    padding-top: 1rem;
    text-align: right;
    }
.productreader-postkarten .main-image {
    margin-bottom: 1rem;
    }
.bestellen h2[itemprop="name"] {
    margin-bottom: .5rem;
    }
.stock {
    margin: 1rem 0 1rem;
    }
#detailseite-postkarten .submit_container {
    margin-bottom: 1rem;
    }

/* ==========================================================================
	Isotope
   ========================================================================== */
body #iso_ajaxBox {
    max-width: none;
    width: 90%;
    }
#footer-scroll-top {
    margin: 0 auto;
    display: block;
    }
.mod_iso_checkout .steps {
    margin-bottom: 3rem;
    width: 95%;
    }
.mod_iso_checkout .steps ol li {
    font-size: .8rem;
    }
#iso_mod_checkout_address fieldset.radio_container > :first-child {
    display: block;
    margin-bottom: 1rem;
    margin-left: 0;
    }
#iso_mod_checkout_address fieldset span input#opt_shippingaddress_1 {
    display: inline-block;
    }
.mod_iso_checkout fieldset.radio_container label {
    display: inline;
    font-weight: bold;
    font-size: .8rem;
    }
.mod_iso_checkout .center {
    margin: 0;
    }
.orderconditionsafterproducts input.checkbox {
    display: inline;
    }
.mod_registration .formbody {
    width: 100%;
    margin: 0 auto;
    }
}

/* ==========================================================================
	4. Smartphone Big Size
   ========================================================================== */
@media screen and (max-width: 479px) {
.logo figure img {
    max-width: 150px;
    -webkit-transition: all ease-in-out .4s;
    -moz-transition: all ease-in-out .4s;
    -o-transition: all ease-in-out .4s;
    transition: all ease-in-out .4s;
    }
.logo figure {
    padding-left: 1rem;
    padding-top: .5rem;
    width: 100%;
    float: none;
    text-align: left;
    }
a.link-mobil-trade:after {
    content: '\f0ac';
    left: -45px;
    }
.mod_breadcrumb ul li a {
    color: rgb(102,102,102);
    font-size: .8rem;
    }
.mod_breadcrumb ul li.last {
    color: rgb(255,153,0);
    font-size: .8rem;
    }
#main {
    padding: 0 .5rem;
    overflow: hidden;
    }
#main .inside {
    padding-top: .5rem;
    padding-bottom: 1.5rem;
    margin: 0 .5rem 0 .9rem;
    }
.headline_abgesetzt h1,
.headline_abgesetzt_top h1 {
    font-size: 1.1rem;
    }
.hilfe-wrapper-inside {
    font-size: .6rem;
    padding: 1rem 0;
    }
.hilfe-wrapper-inside .icon-mail:before {
    font: .7rem FontAwesome;
    color: #f90;
    content: "\f003";
    position: absolute;
    left: -17px;
    top: 0;
    }
.hilfe-wrapper-inside .icon-phone:before {
    font: .9rem FontAwesome;
    color: #f90;
    content: "\f095";
    position: absolute;
    left: -15px;
    top: 0;
    }
.mod_login.member-login-konto .submit_container input[type="submit"],
.mod_login.member-login-cart .submit_container input[type="submit"] {
    margin-bottom: 1rem;
    text-align: center;
    }
.link-wrapper .submit {
    width: 230px;
    }
.product-slider h3 {
    font-size: .9rem;
    text-align: center;
    }
.product-preis {
    font-size: 1.1rem;
    }
.product-slider-mobil-2,
.product-slider-mlz-mobil {
    padding-left: 8px;
    }
#main .product-slider-mobil-2.rsts-skin-default .rsts-prev {
    left: -29px;
    top: 210px;
    }
#main .product-slider-mobil-2.rsts-skin-default .rsts-next {
    top: 210px;
    }
.mod_iso_productreader .submit_container input[type="submit"] {
    width: 100%;
    }
body #iso_ajaxBox {
    max-width: 700px;
    padding: 30px 20px;
    }
body #iso_ajaxBox .iso_confirm {
    padding-left: 0;
    background: none;
    background: none;
    }
.message-text:a {
    background: url(../system/modules/isotope/assets/images/tick-24.png);
    }
.message-text:after {
    color: #F90;
    font-family: FontAwesome;
    font-size: 1.3rem;
    padding-right: .5rem;
    top: 2px;
    left: 2px;
    position: relative;
    letter-spacing: .1rem;
    content: '\f00c ';
    }
.mod_iso_messages a.btn,
span.btn,
a.btn-secondary,
span.btn-secondary {
    display: block;
    margin-bottom: 1.5rem;
    }
#iso_ajaxBox .mod_iso_messages .button-wrapper {
    display: block;
    margin-top: 30px;
    }
.mod_iso_messages a.btn-primary {
    margin-top: 2rem;
    margin-left: 0;
    padding: .7rem 54px;
    }

/* ==========================================================================
Warenkorb Mobil
   ========================================================================== */
.cart-main table tfoot,
.mod_iso_orderdetails table tfoot,
.mod_iso_checkout .orderproducts table tfoot {
    float: none;
    }
tr.top {
    border-top: 1px solid rgb(214,214,214);
    }
td.title {
    vertical-align: top;
    font-size: 1rem;
    width: 50%;
    }
td.bild {
    width: 50%;
    }
td.preis {
    width: 40%;
    }
td.menge {
    width: 10%;
    text-align: center;
    }
td.menge .text {
    text-align: center;
    }
td.summe {
    width: 40%;
    text-align: right;
    }
tbody {
    border-bottom: 1px solid rgb(214,214,214);
    }
.cart-main table tbody,
.mod_iso_orderdetails table tbody,
.mod_iso_checkout .orderproducts table tbody {
    display: table;
    width: 100%;
    margin-bottom: 0;
    }
.info {
    background-color: rgb(250,250,250);
    }
.artikel {
    display: block;
    }
.cart-main .submit_container > * {
    display: block;
    width: 100%;
    }
.submit_container input[type="submit"] {
    width: 98%;
    margin-bottom: 5px;
    }
.buttonlink {
    padding: .3rem 0 .45rem 0;
    font-size: .775rem;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-bottom: 6px;
    }
.button {
    margin-bottom: 2px;
    }
.cart-main .button_checkout,
.button_update {
    margin-left: 0;
    }
.button_update {
    margin-top: 2px;
    }
.cart-main td .text {
    width: 70%;
    margin-bottom: 0;
    padding: 0;
    }
#anmeldung h2.unterstrich_50 {
    width: 100%;
    }
.ce_hyperlink.btn.block {
    width: 230px;
    }
.link-wrapper {
    margin: 2rem 0;
    border-top: 1px solid rgb(214,214,214);
    padding: 2rem 0 0;
    width: 50%;
    }
.availability.u_4 {
    padding-left: 2rem;
    }
.shipping_time.u_8 {
    padding-left: 2rem;
    }
.availability:before,
.shipping_time:before {
    left: 0;
    }
.availability,
.shipping_time {
    padding-left: 2rem;
    }
.availability:before,
.shipping_time:before {
    left: 0;
    }
.mod_iso_relatedproducts .product {
    margin-bottom: 1rem;
    }
.mod_iso_productlist .product_list .zusatz {
    padding-right: 0;
    }
.mod_iso_checkout input[name="nextStep"] {
    margin-left: 0;
    }
td.bild img {
    max-width: 100%;
    }
#order-neu td.bild img {
    max-width: 150px;
    }
table#order-neu tr.top td {
    width: 337px;
    padding: 5px 7px;
    }
table#order-alt td {
    width: 337px;
    padding: 0;
    }
#iso_mod_checkout_review .orderproducts table tfoot {
    float: none;
    }
.mod_iso_checkout .orderproducts table tfoot {
    width: 100%;
    }
#iso_mod_checkout_review .submit_container {
    text-align: left;
    border: 0;
    }
.uebersicht .login-modul-kundenkonto {
    margin-bottom: 2rem;
    }
#main.u_9 {
    width: 96%;
    padding: 0 .5rem;
    }
.mod_customnav.sidebar-nav.showBelowTabletPortrait {
    margin: 2rem 0;
    }
.hilfe-wrapper.center {
    margin: 1rem 0;
    padding-top: 0;
    border-top: 1px dotted rgb(214,214,214);
    border-bottom: 1px dotted rgb(214,214,214);
    }
#anmeldung-warenkorb-neukunde .mod_registration,
.mod_lostPassword,
.mod_lostPasswordNotificationCenter {
    margin: auto;
    width: 99%;
    }
.mod_lostPasswordNotificationCenter .submit_container {
    width: 70%;
    }
.mod_registration {
    width: 100%;
    margin: 0 auto;
    }
.mod_registration .formbody {
    width: 100%;
    margin: 0 auto;
    }
.zentriert-formulartext {
    width: 100%;
    margin: auto;
    }
.mod_changePassword,
.mod_iso_addressbook {
    margin-left: 0;
    }

/* ==========================================================================
Bestellubersicht mobil
   ========================================================================== */
.review.orderinfo.first {
    padding-top: 1rem;
    }
.mod_iso_checkout .steps ol li {
    padding-bottom: 15px;
    }
input.submit.confirm.button {
    text-align: center;
    width: 98%;
    }
input.submit.previous.button {
    text-align: center;
    width: 98%;
    }
.mod_iso_checkout .steps ol li {
    font-size: .5rem;
    }
.mod_iso_checkout .steps ol li:after {
    right: -13px;
    }
}

/* ==========================================================================
	5. Smartphone Small Size/ iphone Portrait
   ========================================================================== */
@media screen and (max-width: 320px) {
#iso_mod_checkout_review div.review.orderproducts table {
    width: 100% !important;
    }
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
.dropdown-service-inner span.phone {
    display: none;
    }
.closeModal.showBelowDesktopSmall {
    top: 178px;
    }
}

/* CSS Document */
@media print {
#header,
#breadcrump,
.pdf_link,
.ce_text.first,
.footer-nav-mobil,
#follow-us,
#footer-spalten,
#footer-bar,
#footer-bottom,
#footer-scroll-top {
    display: none;
    }
}
