/* MAIN NAV ----------------------------------------------------------------------------------*/
#mainNav {
    position: absolute;
    left: 191px;
    top: 62px;
    margin: 0;
    padding: 0;
}

#mainNav > ul > li {
    float: left;
    position: relative;
}
#mainNav > ul > li.hasDropdown:after, #metaNav > ul > li.hasDropdown:after {
    content: '';
    position: absolute;
    right: 50%;
    bottom: 2px;
    background: url(/website/static/img/mainSprite.png) no-repeat -40px -43px;
    width: 11px;
    margin-left: -15px;
    height: 10px;
    z-index: 100;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    display: none;
}
#mainNav > ul > li.hasDropdown:hover:after, #metaNav > ul > li.hasDropdown:hover:after {
    bottom: -10px;
    display: block;
}
#mainNav > ul > li .navArrow {
    position: absolute;
    right: 50%;
    bottom: 0;
    background: url(/website/static/img/mainSprite.png) no-repeat -40px -43px;
    width: 11px;
    margin-left: -5px;
    height: 10px;
    z-index: -1;
}
#metaNav > ul > li.hasDropdown:hover .dropdown {
    display: block;
}
#mainNav > ul > li.hasDropdown.hovered .dropdown {
    display: block;
}

#mainNav > ul > li > a {
    position: relative;
    font-size: 18px;
    line-height: 18px;
    color: #333;
    padding: 10px 29px 10px 10px;
    display: block;
    z-index: 1000;
    text-decoration: none;
    z-index: 150;
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top,  #ffffff 0%, #f1f1f1 52%, #d4d4d4 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(52%,#f1f1f1), color-stop(100%,#d4d4d4)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top,  #ffffff 0%,#f1f1f1 52%,#d4d4d4 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top,  #ffffff 0%,#f1f1f1 52%,#d4d4d4 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top,  #ffffff 0%,#f1f1f1 52%,#d4d4d4 100%); /* IE10+ */
    background: linear-gradient(to bottom,  #ffffff 0%,#f1f1f1 52%,#d4d4d4 100%); /* W3C */
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#d4d4d4',GradientType=0 );*/ /* IE6-9 */
}

#mainNav > ul > li > a:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    display: block;
    background: url(/website/static/img/mainSprite.png) no-repeat 0 -5px;
    width: 20px;
    height: 38px;
}

/* first li (shop) */
#mainNav ul > li.first > a:before {
    content: '';
    background: url(/website/static/img/mainnav_root.png) no-repeat 0px 0;
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20px;
    height: 38px;
}
#mainNav > ul > li.last > a:after {
    background: url(/website/static/img/mainSprite.png) no-repeat -40px 0;
}


/* MAIN NAV CURRENT MENU -------------------------------------------------------------------------------------*/

#mainNav ul > li.selected > a {
    color: #fff;
    background: #d24601;
}
#mainNav ul > li.selected > a:before {
    content: '';
    background: url(/website/static/img/mainSprite.png) no-repeat -134px 0;
    position: absolute;
    left: -20px;
    bottom: 0;
    width: 20px;
    height: 38px;
}
#mainNav ul > li.selected > a:after {
    background: url(/website/static/img/mainSprite.png) no-repeat -64px 0;
}



/* MAIN NAV ACITVE::HOVER STATES -------------------------------------------------------------------------------------*/

/* SHOP HOVER */
#mainNav ul > li.first.active > a,
#mainNav ul > li.first > a:hover {
    background-color: #686868;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#686868), to(#555555));
    background-image: -webkit-linear-gradient(top, #686868, #555555);
    background-image:    -moz-linear-gradient(top, #686868, #555555);
    background-image:      -o-linear-gradient(top, #686868, #555555);
    background-image:         linear-gradient(to bottom, #686868, #555555);
}
#mainNav ul > li.first.active > a:before,
#mainNav ul > li.first > a:hover:before {
    content: '';
    background: url(/website/static/img/mainSprite.png) no-repeat -111px 0;
    position: absolute;
    left: -19px;
    bottom: 0;
    width: 19px;
    height: 38px;
}
#mainNav ul > li.first.active > a:after,
#mainNav ul > li.first > a:hover:after {
    background-position: -87px 0;
}


#mainNav ul > li.active > a,
#mainNav ul > li.hovered > a,
#mainNav ul li a.hovered,
#mainNav ul > li > a:hover {
    color: #fff;
    background-color: #686868;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#686868), to(#555555));
    background-image: -webkit-linear-gradient(top, #686868, #555555);
    background-image:    -moz-linear-gradient(top, #686868, #555555);
    background-image:      -o-linear-gradient(top, #686868, #555555);
    background-image:         linear-gradient(to bottom, #686868, #555555);
}

#mainNav ul > li.active > a:before,
#mainNav ul > li.hovered > a:before,
#mainNav ul > li > a.hovered:before,
#mainNav ul > li > a:hover:before {
    content: '';
    background: url(/website/static/img/mainSprite.png) no-repeat -181px 0;
    position: absolute;
    left: -19px;
    bottom: 0;
    width: 19px;
    height: 38px;
}
#mainNav ul > li.active.products > a:before,
#mainNav ul > li.products > a.hovered:before,
#mainNav ul > li.products > a:hover:before {
    background: url(/website/static/img/mainSprite.png) no-repeat -111px 0;
}
#mainNav ul > li.active > a:after,
#mainNav ul > li.hovered > a:after,
#mainNav ul > li > a.hovered:after,
#mainNav ul > li > a:hover:after {
    background-position: -87px 0;
}

#mainNav ul > li.last.active > a:after,
#mainNav ul > li.last > a.hovered:after,
#mainNav ul > li.last > a:hover:after {
    background-position: -159px 0;
}

/* arrow */
#mainNav > ul > li.active > a .navArrow,
#mainNav > ul > li.hasDropdown > a:hover .navArrow {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    bottom: -10px;
}



/* SHOP DROP DOWN -------------------------*/

#mainNav ul li .dropdown ul li a:hover,
#mainNav ul li .dropdown ul li.active a {
    color: #d24600;
    background: none;
}
#mainNav ul li .dropdown ul li a:hover:before,
#mainNav ul li .dropdown ul li.active a:before {

    background: none;
}

#mainNav ul li .dropdown, #metaNav ul li .dropdown {
    background: #fff;
    position: absolute;
    margin: 0;
    min-height: 400px;
    padding: 24px 0 0 65px;
    width: 1215px;
    left: -191px;
    top: 38px;
    display: none;
    z-index: 100;
}
#mainNav ul li .dropdown .icon img,
#mainNav ul li .dropdown .icon .shadow {
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}
#mainNav ul li .dropdown .icon a {
    display: block;
}
#mainNav ul li .dropdown .icon:hover {
    opacity: 0.85;
}
#mainNav ul li .dropdown .icon .shadow {
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;

}
#mainNav ul li .dropdown .icon:hover .shadow {
    opacity: 0.5;
}
#mainNav ul li .dropdown .icon {
    margin-top: 20px;
    position: relative;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}
#mainNav ul li .dropdown .icon .shadow {
    -webkit-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
    -o-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
    -ms-box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
    box-shadow: inset 0px 0px 20px rgba(0, 0, 0, 0.5);
    width: 200px;
    height: 100px;
    position: absolute;
    top: 0px;
    left: 0px;
}
#mainNav ul li.products .dropdown  {
    left: -272px;
}

#mainNav .dropdown ul {
    float: left;
    margin: 0 40px 40px 0;
    width: 200px;
    padding: 0;
}
#mainNav .dropdown ul.noMarginRight { margin-right: 0; }
#mainNav .dropdown ul.first { clear: left; }

#mainNav .dropdown ul li {
    display: block;
    line-height: 19px;
}
#mainNav .dropdown ul li h3,
#mainNav .dropdown ul li h3 a {
    text-transform: uppercase;
    color: #d24601;
    margin: 0 0 14px 0;
    font-size: 18px;
    font-weight: normal;
}

/* PRODUCTS DROPDOWN -----------------------------------  */
#mainNav .dropdown.productsDropdown {
    padding-right: 65px;
    height: 470px;
}
/*#mainNav .dropdown.productsDropdown:after {*/
    /*content: '';*/
    /*position: absolute;*/
    /*width: 270px;*/
    /*height: 470px;*/
    /*right: 0;*/
    /*top: 2px;*/
    /*background: #f2f2f2; *//* Old browsers */
    /*background: -moz-linear-gradient(-45deg,  #f2f2f2 0%, #ffffff 62%, #ffffff 100%); *//* FF3.6+ */
    /*background: -webkit-gradient(linear, left top, right bottom, color-stop(0%,#f2f2f2), color-stop(62%,#ffffff), color-stop(100%,#ffffff)); *//* Chrome,Safari4+ */
    /*background: -webkit-linear-gradient(-45deg,  #f2f2f2 0%,#ffffff 62%,#ffffff 100%); *//* Chrome10+,Safari5.1+ */
    /*background: -o-linear-gradient(-45deg,  #f2f2f2 0%,#ffffff 62%,#ffffff 100%); *//* Opera 11.10+ */
    /*background: -ms-linear-gradient(-45deg,  #f2f2f2 0%,#ffffff 62%,#ffffff 100%); *//* IE10+ */
    /*background: linear-gradient(135deg,  #f2f2f2 0%,#ffffff 62%,#ffffff 100%); *//* W3C */
/*}*/
/*.lt-ie9 #mainNav .dropdown.productsDropdown:after {*/
    /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f2f2f2', endColorstr='#ffffff',GradientType=1 ); *//* IE6-9 fallback on horizontal gradient */
/*}*/

#mainNav .dropdown.productsDropdown ul {
    margin: 0;
    min-width: 180px;
    width: auto;
}


#mainNav .dropdown.productsDropdown ul li {
    float: left;
    height: 160px;
    width: 200px;
    margin: 0 40px 40px 0;
}

#mainNav .dropdown.productsDropdown ul li h3 {
    margin-bottom: 5px;
    height: 54px;
    vertical-align: bottom;
    display: table-cell;
}

/* SUBSIDIARY DROPDOWN -----------------------------------  */
#mainNav .dropdown.subsidiaryDropdown {
    padding-right: 65px;
    height: 470px;
    left: -383px;
    /*display: block;*/
}

#mainNav .dropdown.subsidiaryDropdown ul {
    margin: 0;
    min-width: 180px;
    width: auto;
}


#mainNav .dropdown.subsidiaryDropdown ul li {
    float: left;
    height: 160px;
    width: 200px;
    margin: 0 40px 40px 0;
}

#mainNav .dropdown.subsidiaryDropdown ul li h3 {
    margin-bottom: 5px;
}

#mainNav .dropdown.fullimageDropdown {
    padding-right: 65px;

    /*display: block;*/
}

#mainNav .dropdown.fullimageDropdown ul {
    margin: 0;
    min-width: 180px;
    width: auto;
    margin-top: 10px;
}


#mainNav .dropdown.fullimageDropdown ul li {
    float: left;
    height: 160px;
    width: 240px;
    margin: 0 40px 40px 0;
    margin-left: 25px;
}
html.lt-ie9 #mainNav .dropdown.fullimageDropdown ul li {
    margin: 0 38px 40px 0;
    margin-left: 25px;
}
#mainNav .dropdown.fullimageDropdown ul li:nth-child(4n) {
    margin-right: 0;
}

#mainNav .dropdown.fullimageDropdown ul li h3 {
    position: absolute;
    z-index: 10;
    margin-left: 9px;
    margin-top: 20px;
    color: #fff;
    text-shadow: 1px 1px 2px #A3A3A3;
}

#mainNav .dropdown.fullimageDropdown .icon {
    margin-top: 0;
}

#mainNav .dropdown.fullimageDropdown img {

    -webkit-box-shadow: 0 0 5px 1px #6E6E6E;
    box-shadow: 0 0 5px 1px #9C9C9C;

}

/* Customerlounge Dropdown */

#metaNav .dropdown.customerloungeDropdown {
    width: auto;
    left: 80px;
    padding: 20px 0;
    padding-right: 40px;
    min-height: 0;
}

#mainNav .dropdown .dropdownTeaserWrapper {
    float: right;
}

#mainNav .all-categories-link {
    color: #d24600;
    display: block;
    position: absolute;
    right: 510px;
    bottom: 20px;
    margin-right: 30px;
}

/* META NAV ----------------------------------------------------------------------------------*/
#metaNav {
    position: absolute;
    right: 30px;
    top: 62px;
}
/* country selection */
#metaNav.countrySelection {
    height: 38px;
    overflow: hidden;
    padding: 0 10px;
}



#metaNav .selectBox-dropdown {
    height: 38px;
    line-height: 35px;
    border: 0;
    padding-right: 10px;
    width: 160px !important;
    background-color: #fff;

    box-shadow: 0 0 10px rgba(0,0,0,.4);
    border-radius: 0;
    -moz-border-radius: 0;
    -webkit-border-radius: 0;


}
#metaNav .selectBox-label {
    padding-left: 36px;
    padding-right: 36px;
}
.countrySelectBox-selectBox-dropdown-menu .flag {
    position: relative;
}
.countrySelectBox-selectBox-dropdown-menu .flag a {
    height: 26px;
    padding-left: 35px;
    line-height: 26px;
}
.countrySelectBox-selectBox-dropdown-menu .flag.selectBox-selected a {
    background-color: #eee;
    color: #000;
}
#metaNav .selectBox-dropdown .flag:before, .countrySelectBox-selectBox-dropdown-menu .flag a:before {
    width: 18px;
    height: 12px;
    display: block;
    background-image: url('/website/static/img/flags/at.png');
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    outline: 1px solid #ddd;
}
#metaNav .selectBox-dropdown .flag:before {
    top: 13px;
}
#metaNav .selectBox-dropdown .flag.int:before {
    top: 10px;
    height: 18px;
    outline: 0;
}
.countrySelectBox-selectBox-dropdown-menu {
    max-height: 600px !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.cz a:before, .selectBox-label.flag.cz:before {
    background-image: url('/website/static/img/flags/cz.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.de a:before, .selectBox-label.flag.de:before {
    background-image: url('/website/static/img/flags/de.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.pl a:before, .selectBox-label.flag.pl:before {
    background-image: url('/website/static/img/flags/pl.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.bg a:before, .selectBox-label.flag.bg:before {
    background-image: url('/website/static/img/flags/bg.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.hr a:before, .selectBox-label.flag.hr:before {
    background-image: url('/website/static/img/flags/hr.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.hu a:before, .selectBox-label.flag.hu:before {
    background-image: url('/website/static/img/flags/hu.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.ro a:before, .selectBox-label.flag.ro:before {
    background-image: url('/website/static/img/flags/ro.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.ru a:before, .selectBox-label.flag.ru:before {
    background-image: url('/website/static/img/flags/ru.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.rs a:before, .selectBox-label.flag.rs:before {
    background-image: url('/website/static/img/flags/rs.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.sk a:before, .selectBox-label.flag.sk:before {
    background-image: url('/website/static/img/flags/sk.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.si a:before, .selectBox-label.flag.si:before {
    background-image: url('/website/static/img/flags/si.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.ua a:before, .selectBox-label.flag.ua:before {
    background-image: url('/website/static/img/flags/ua.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.ba a:before, .selectBox-label.flag.ba:before {
    background-image: url('/website/static/img/flags/ba.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.en a:before, .selectBox-label.flag.en:before {
    background-image: url('/website/static/img/flags/en.png') !important;
}
.countrySelectBox-selectBox-dropdown-menu .flag.int a:before, .selectBox-label.flag.int:before {
    height: 18px;
    background-image: url('/website/static/img/flags/int.png') !important;
    outline: 0;
    top: 3px;
}
.countrySelectBox-selectBox-dropdown-menu {
    width: 195px !important;
}
#metaNav .selectBox-arrow {
    top: 7px;
}
/* END country selection */

/*#metaNav:after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    height: 20px;
    width: 100px;
    background: red;
    -webkit-box-shadow: 0px 2px 2px -1px rgba(0,0,0,0.3);
    box-shadow: 0px 2px 2px -1px rgba(0,0,0,0.3);
}*/



#metaNav > ul li a {
    padding: 0 20px 0 27px;
    margin-left: 12px;
    position: relative;
    height: 38px;
    line-height: 38px;
    display: block;
    outline: none;
    background: url(/website/static/img/mainSprite.png) no-repeat -81px -81px;
}
#metaNav ul li.myAccount a { background-position: -230px -121px; }
#metaNav ul li.promotions a {
    background: url(/website/static/img/icon_aktionen.png) no-repeat 0 7px;
}

/* li - shoppingcart header */
#metaNav ul li.shoppingCart a {
    background: none;
    font-weight: bold;
    display: inline-block;
    padding: 0 25px 0 1px;
    margin: 0;
    outline: none;
}
#metaNav .customerloungeDropdown li {
    display: block;
    float: none;
}
#metaNav .customerloungeDropdown li a {
    background: transparent;
    height: 25px;
    line-height: 25px;
    padding-right: 0;
}
#metaNav .customerloungeDropdown li.active a {
    color: #d24601;
}
#metaNav .customerloungeDropdown li a:after {
    background: transparent;
}
#shoppingCartIcon {
    width: 18px;
    height: 18px;
    display: inline-block;
    background: url(/website/static/img/mainSprite.png) no-repeat -230px -172px;
    margin: 9px 3px 0 13px;
    float: left;
    visibility: hidden;
}
#shoppingCartIcon.empty {
    background-position: -230px -190px;
}
#productCount {
    color: #fff;
    background: #d24600;
    -webkit-border-radius: 15px;
    border-radius: 15px;
    width: 27px;
    height: 27px;
    padding: 0;

    border-radius: 50%;
    text-align: center;
    line-height: 28px;
    -webkit-background-clip: padding-box; background-clip: padding-box;
    font-weight: bold;
    font-size: 13px;
    display: inline-block;
    visibility: hidden;
}
#productCount.empty {
    color: #333;
    background: #d8d8d8;
}
#productCount.sizeFour {
    width: 38px;
    height: 35px;
    line-height: 35px;
}


#productCount.hasProducts {
    background: #d24601;
    color: #fff;
}
/* --- */

#metaNav ul li a:after {
    content: '';
    position: absolute;
    right: -5px;
    top: 0;
    display: block;
    width: 20px;
    height: 38px;
    background: url(/website/static/img/mainSprite.png) no-repeat 0 -92px;
}

html.fixed #metaNav ul li a:after {
    height: 36px;
}