/**************************************/
/*************** NOTES ****************/
/**************************************/
/* Here are all my palette hexes, and other notes I might need, all in comments, e.g. */
/* Dark blue: #205081 */
/* Light blue: #3572b0 */
/* Link color: .... */



/**************************************/
/************** GLOBALS ***************/
/**************************************/

body{}
html,body{
    height: 100%;
    margin: 0;
    padding: 0;
}

body{
    font-family: 'Open Sans', sans-serif;
    height: 100%;
}

body, a, ul, ul li, h1, h2, h3, h4, h5, h6{
    font-family: 'Open Sans', sans-serif;
}


body.openMenu #wrapper{
    height: 1010px;
    overflow-y: hidden;
}

body #wrapper h1 {
    color: #303032;
    font-size: 32px;
    font-weight: 300;
}

body #wrapper p {
    line-height: 1.629em;
}

body #wrapper strong {
    color: #1f2022;
}

body #content .side-menu {
    /*height: 100%;*/
}



body #content .side-menu .ui.vertical.menu {
    border-left: 1px solid #227eff;
    display: inline-block;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-top: 30px;
    background: #fff;
}

body #content .side-menu .ui.vertical.menu div.item {
    padding: 0px;
    margin: 0;
}

body #content .side-menu .ui.vertical.menu div.item div.menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

body #content .side-menu .ui.vertical.menu div.item a.item {
    color: #1F1F22;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body #content .side-menu .ui.vertical.menu div.item a.item:hover {
    color: #227EFF;
}

body #content .side-menu .ui.vertical.menu div.item a.active.item {
    color: #227EFF;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body #content .side-menu .ui.vertical.menu div.item a.active.item:hover {
    color: #1F1F22;
}

body #content .side-menu .ui.vertical.menu div.item div.menu a.item {
    color: #1F1F22;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body #content .side-menu .ui.vertical.menu div.item div.menu a.item:hover {
    color: #227EFF;
}

body #content .side-menu .ui.vertical.menu div.item div.menu a.active.item {
    color: #227EFF;
    font-weight: normal;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body #content .side-menu .ui.vertical.menu div.item div.menu a.active.item:hover {
    color: #1F1F22;
}

.menublue .divider {
    border-bottom: 1px solid #e6e5e5;
    height: 1px;
    margin-top: 10px;
    width: 100%;
}

.menublue.menu--open .divider {
    border-bottom: 1px solid #227eff;
    height: 1px;
    margin-top: 10px;
    width: 100%;
}

#nav-icon2 {
  width: 20px;
  height: 22px;
  position: relative;
  margin-right: 10px;
  margin-top: -10px;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .5s ease-in-out;
  -moz-transition: .5s ease-in-out;
  -o-transition: .5s ease-in-out;
  transition: .5s ease-in-out;
  cursor: pointer;
}


#nav-icon2 span {
  display: block;
  position: absolute;
  height: 3px;
  width: 100%;
  background: #233d80;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}

#nav-icon2 span:nth-child(even) {
  left: 50%;
  border-radius: 0 9px 9px 0;
}

#nav-icon2 span:nth-child(odd) {
  left:0px;
  border-radius: 9px 0 0 9px;
}

#nav-icon2 span:nth-child(1), #nav-icon2 span:nth-child(2) {
  top: 0px;
}

#nav-icon2 span:nth-child(3), #nav-icon2 span:nth-child(4) {
  top: 8px;
}

#nav-icon2 span:nth-child(5), #nav-icon2 span:nth-child(6) {
  top: 16px;
}

#nav-icon2.open span:nth-child(1),#nav-icon2.open span:nth-child(6) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}

#nav-icon2.open span:nth-child(2),#nav-icon2.open span:nth-child(5) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

#nav-icon2.open span:nth-child(1) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(2) {
  left: calc(50% - 5px);
  top: 7px;
}

#nav-icon2.open span:nth-child(3) {
  left: -50%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(4) {
  left: 100%;
  opacity: 0;
}

#nav-icon2.open span:nth-child(5) {
  left: 5px;
  top: 7px;
}

#nav-icon2.open span:nth-child(6) {
  left: calc(50% - 5px);
  top: 7px;
}

body #content .side-menu button.action--open{
    float: left;
    max-width: 45%;
    font-size: 14px;
    padding: 5px 14px 8px;
    margin-bottom: 0px
}

body .mobile_menu_blueprint button.action--close{
    font-size: 1.1em;
    top: 1.25em;
    right: 1em;
    display: none;
    color: #45464e;
}
body .mobile_menu_blueprint button.action--close2{
    font-size: 1.1em;
    top: 1.25em;
    right: 1em;
    display: none;
    color: #45464e;
}

body #content .side-menu button.action--open2{
    float: left;
    max-width: 45%;
    font-size: 14px;
    padding: 5px 14px 8px;
    margin-bottom: 0px
}
body #content .side-menu button.action--open i.double.angle.left.icon{
    margin-left: 0;
    width: 20px;
}

body #content .side-menu button.action--open2 i.double.angle.left.icon{
    margin-left: 0;
    width: 20px;
}

body #content .side-menu .brand_logo_mobile{
    max-width: 55%;
    float: right;
    position: relative;
    top: 1em;
    padding-right: 15px;
    height: 36px;
    margin-top: 0px;
    margin-bottom: 10px
}
body #content .side-menu .brand_logo_mobile > .row{align-items: center;}
body #content .side-menu .brand_logo_mobile img{
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 36px;
}


nav.mobile_menu_blueprint {
    display: none;
    height: 1010px;
    position: absolute;
    top: 0;
    left: 0;
}

header div.ln {
    margin-bottom: 70px;
    margin-top: -115px;
}

header div.submenu-nav {
    background: #fff none repeat scroll 0 0;
    box-shadow: 0 4px 4px #e4e4e4 inset;
    -moz-box-shadow: 0 4px 4px #e4e4e4 inset;
    -webkit-box-shadow: 0 4px 4px #e4e4e4 inset;
    -ms-box-shadow: 0 4px 4px #e4e4e4 inset;
    -o-box-shadow: 0 4px 4px #e4e4e4 inset;
    display: none;
    padding-bottom: 8px;
    padding-top: 8px;
    position: absolute;
    top: 92px;
    width: 100%;
    z-index: 8;
}

header div.submenu-nav.active {
    display: block !important;
}

header div.submenu-nav.show {
    position: fixed;
    top: 102px;
}

header .parent_category{
    background-color: #f4f4f4;
    color:#233D80;
    width: 270px;
    padding:35px;
    border:2px solid white;
    font-weight: 600;
    cursor: pointer;
    font-size:14px;
}

header .parent_category .icon-arrow{float:right}

header .parent_category:hover ,.active.parent_category{
    background-color: #fff;
    color : #227eff ;
}

header .parent_menu{
    display:flex !important;
}

header .parent_content{
    display:flex;
    padding-top:10px;
    width:100%;
}

header .category_item , header .brand_item {
   padding:6px;
   height:32px;
 }

 header .category_item {  padding-left:0px; }

header .category_item a , header .brand_item a{
   color: #1f1f22;
}

.parent_brand_series{
    width:30%
}

.parent_brand_banners{
    width: 45%;
}

.parent_brand_banners{
    padding-left:10px;
}

.parent_brand_banners img{width:100%}

header .brand_item {
    color: #233D80;
    font-size:12px;
    font-weight:bold;
    padding: 6px;
    height: 32px;
}

header .brand_item:hover , header .brand_item.active  {
    color: #4183c4;
    background-color:#f4f8ff
}

header .brand_item:hover a , header .brand_item.active a  {
    color: #4183c4;
    background-color:#f4f8ff
}

header .brand_item a{
    text-transform: uppercase;
    color: #233D80;
    top: 1px;
    position: relative;
 }

 header .brand_item .icon-arrow{
    float:right;
    top: 3px;
    position: relative;
    right: 3px;
 }

header .category_item a:hover , header .brand_item a:hover{
    color: #4183c4;
 }

header .parent_content.hidden{
    display:none;
}

header .parent_label{
    font-weight:bold;
    padding-bottom:20px;
}

header .parent_categories{ width:45%; padding-left: 30px;}
header .parent_brands{ width:70% ; display:flex; position:relative}
header .parent_brands_items{width:30%;}

header .brand_series {
    background-color:#f4f8ff;
}

header .brand_series.hidden {
    display:none;
}

header .brand_series.active {
    display:none;
}

.brand_series div a {
    color:#1f1f22 !important;
    text-transform:none;
    font-weight:normal;
    font-size:13px;
}

.brand_series div a:hover {
    color:#227eff !important;
}

.brand_series div{
    padding:6px 15px;
}

header .brand_item:hover .brand_series{
    display:block
}

.brand_series .parent_label{
    position:absolute;
    top:0;
    left:0px;
}

header div.sub-column {
    margin-right: 20px;
    width: 176px;
    float: left;
    display: inline-block;
}

header div.sub-column.left:last-child {
    margin-right: 0px;
}

header div.sub-column.right {
    margin-left: -25px;
}

header div.sub-column.schell-column {margin-top: 25px;}


header div.sub-column div.divider {
    border-bottom: 1px solid #E6E5E5;
    padding-bottom: 10px;
    width: 100%;
    position: relative;
}

header div.sub-column.left span a {
    color: #394A87;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.sub-column.left span a:hover {
    color: #388BFF;
}

header div.sub-column.right span a {
    color: #388BFF;
    font-size: 11px;
    font-weight: 600;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.sub-column.right span a:hover {
    color: #394A87;
}

header div.sub-column.left span.icon-arrow {
    color: #D5D4D4;
    position: absolute;
    right: 40px;
    top: 5px;
}

header div.sub-column ul {
    padding-left: 0px;
    padding-right: 5px;
    list-style-type: none;
}

header div.sub-column li a{
    color: #1f1f22;
    font-size: 14px;
    font-weight: 200;
    list-style-type: none;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.sub-column li a:hover {
    color: #388BFF;
}

header div.submenu-nav.active {
    display: block;
}

header .ui.dropdown>.text{
    font-weight: 400;
    font-family: 'Open Sans', sans-serif;
}

header .ui.menu .item>i.dropdown.icon{margin: 0 0 0 5px;}

header div.right.menu.nav .ui.dropdown .item a{
    font-size: 14px;
    font-weight: normal;
    color: #1F2022;
}

header .ui.menu .pointing.dropdown.item .menu{border-radius: 2px}

header div.right.menu.nav .item {
    color: #1F2022;
    font-size: 16px;
    margin-left: 5px;
    margin-right: 10px;
    margin-top: 40px;
    padding-left: 0;
    padding-right: 0;
    border-bottom: 2px solid #fff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.right.menu.nav .ui.dropdown .item {
    margin-top: 0px;
}

header div.right.menu.nav .item:hover {
    border-bottom: 2px solid #fff;
    color: #227eff;
}

header div.right.menu.nav .active.item {
    border-bottom: 2px solid #fff;
    color: #227eff;
    font-weight: 600;
}

header div.right.menu.nav .item.hotel {
    background: #233D80 none repeat scroll 0 0;
    border-bottom: 0 none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 14px;
    color: #fff;
    padding: 8px 18px;
    opacity:1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.right.menu.nav .item.hotel:hover {
    opacity:0.8;
}

header div.right.menu.nav .item.showroom {
    background: #227eff none repeat scroll 0 0;
    border-bottom: 0 none;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-size: 14px;
    color: #fff;
    padding: 8px 18px;
    opacity:1;
    margin-left: 10px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.right.menu.nav .item.showroom:hover {
    opacity:0.8;
}

header div.right.menu.nav .item.lang-el {
    color: #555355;
    font-size:14px;
    border-right: 1px solid #227eff;
    padding: 0 5px 0 0;
    margin-right: 6px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.right.menu.nav .item.lang-el:hover {
    color: #1F2022;
    border-bottom: 2px solid #fff;
}

header div.right.menu.nav .item.lang-el.active {
    color: #1F2022;
    border-bottom: 2px solid #fff;
}

header div.right.menu.nav .item.lang-en {
    color: #555355;
    font-size:14px;
    padding: 0px;
    margin-left: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header div.right.menu.nav .item.lang-en:hover {
    color: #1F2022;
    border-bottom: 2px solid #fff;
}

header div.right.menu.nav .item.lang-en.active {
    color: #1F2022;
    border-bottom: 2px solid #fff;
}


#wrapper {
    min-height:100%;
    position:relative;
}

#content .breadcrumb.mobile {
    display: none;
}

#content .breadcrumb a.section {
    color: #233d7f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#content .breadcrumb div.section {
    color: #233d7f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

#content .breadcrumb a.section:hover {
    color: #227EFF;
}

#content .breadcrumb .divider {
    color: #233d7f;
    font-size: 16px;
    font-weight: 600;
}

#content .breadcrumb .active.section {
    color: #227EFF;
}

#content .top-brand-image {
    overflow: auto;
    margin-bottom: 20px;
    position: relative;
}
#content .top-brand-image > img {
    height: auto;
    max-height: 60px;
    max-width: 150px;
/*    position: absolute;
    right: 13px;
    top: -30px;*/
    width: auto;
    float: right;
}



a{}
a:hover{
    outline: none;
    text-decoration: none;
}
a:focus{text-decoration: none}
a:active{text-decoration: none}

button{
    outline: none;
    border: 0;
    box-shadow: none;
}
button:focus{outline: none;}
a:focus{outline: none;}


/*************** HEADER ***************/
/* Here is everything related to the header theming, even overwrites! */

header #top-nav {
    background: #fff none repeat scroll 0 0;
    width: 100%;
}

header #top-nav img {
    position: relative;
    z-index: 12;
}

header #top-nav-mobile {
    display: none;
    margin-top: 0px;
}

header .mob_nav_logo{
    display: block;
    width: 180px;
    float: left;
}

header .mobile-menu {
    display:none;
    /*text-align: center;*/
}

header .mobile-info {
    display:none;
    text-align: center;
    background: #f2f2f2;
}

header #top-nav-mobile .nav {
    text-align: center;
    margin-bottom: 15px;
    /*overflow: auto;*/
}

header #top-nav-mobile .mobile-menu a.item {
    display: block;
    padding-bottom: 10px;
    padding-top: 10px;
    border-top: 1px solid #eee;
    font-size: 16px;
    color: #555355;
    background: #fff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav-mobile .mobile-menu a.item.active {
    color: #000;
}

header #top-nav-mobile .mobile-menu a.item:hover {
    color: #000;
}

header #top-nav-mobile .mobile-menu .item.showroom {
    background: #227eff none repeat scroll 0 0;
    border-bottom: 0 none;
    border-radius: 2px;
    color: #fff;
    padding: 8px 18px;
    margin-bottom: 10px;
    opacity:1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav-mobile .mobile-menu .item.showroom:hover {
    opacity:0.8;
    background: #227eff none repeat scroll 0 0;
    color:#fff;
}

header #top-nav-mobile .mobile-menu .item.hotel {
    background: #233D80 none repeat scroll 0 0;
    border-bottom: 0 none;
    border-radius: 2px;
    color: #fff;
    padding: 8px 18px;
    opacity:1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav-mobile .mobile-menu .item.hotel:hover {
    opacity:0.8;
    background: #233D80 none repeat scroll 0 0;
    color:#fff;
}

header #top-nav-mobile .mobile-menu .item .lang-el {
    color: #555355;
    font-size:14px;
    border-right: 1px solid #227eff;
    padding: 0 8px 0 0;
    margin-right: 6px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav-mobile .mobile-menu .item .lang-el:hover {
    color: #1F2022;
}

header #top-nav-mobile .mobile-menu .item .lang-el.active {
    color: #1F2022;
}

header #top-nav-mobile .mobile-menu .item .lang-en {
    color: #555355;
    font-size:14px;
    padding: 0px;
    margin-left: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav-mobile .mobile-menu .item .lang-en:hover {
    color: #1F2022;
}

header #top-nav-mobile .mobile-menu .item .lang-en.active {
    color: #1F2022;
}


header #top-nav-mobile div.item {
    display: block;
    border-top: 1px solid #eee;
    padding-bottom: 10px;
    padding-top: 10px;
    font-size: 16px;
    color: #999798;
}

header #top-nav-mobile div.item:last-child {
    border-top: 0 none;
    margin-bottom: 10px;
}

header #top-nav-mobile .nav img {
    margin-left: 10px;
    width: 100%;
    display: block;
}

header #top-nav-mobile .menu_icon_wrapper:hover{cursor: pointer;}
header #top-nav-mobile .menu_icon_wrapper {
    float: right;
    width: 90px;
    text-align: left;
    margin-top: 35px
}

header .mobile-info .ui.grid>.column:not(.row){
    padding-left: 10px;
    padding-right: 10px;
}


header .mobile-info .contact-link{
    float: left;
    line-height: 30px;
    min-width: 155px;
    width: 50%;
    text-align: left;
    font-size: 14px;
}

header .mobile-info form{
    display: block;
    float: right;
    width: 48%;
}
header .mobile-info form .search-bar-mobile{float: right;}

header .mobile-info form input{
    min-width: 130px;
    float: right;
}



/*header #top-nav-mobile .contact-link{float: right;}
header #top-nav-mobile .contact-link span{
    color: #999798;
    font-size: 14px;
    font-weight: 300;
}
header #top-nav-mobile .contact-link span.icon-phone {
    color: #227eff;
    font-size: 16px;
    padding-right: 5px;
}*/

header #top-nav-mobile #nav-icon2{
    display: block;
    float: right;
}

header #top-nav-mobile .menu_icon_wrapper p{
    display: block;
    float: right;
    font-size: 16px;
    color: #233d80;
    margin-top: -9px;
    margin-right: 10px;
    line-height: 16px;
    text-transform: uppercase;
}


header #top-nav-mobile span.toggle {
    display: block;
    font-size: 30px;
    margin-right: 10px;
    margin-top: 30px;
    cursor: pointer;
    color: #233d80;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav-mobile span.toggle:hover {
    color: #227EFF;
}


header #top-nav a span.icon-phone {
    color: #227eff;
    font-size: 16px;
    padding-right: 5px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav a:hover span.icon-phone {
    color: #233d80;
}

header #top-nav a span.item {
    color: #999798;
    font-size: 16px;
    font-weight: 300;
    padding-right: 10px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

header #top-nav a:hover span.item {
    color: #555355;
}

header #top-nav span.icon-search {
    color: #227eff;
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 6px;
}

header #top-nav div.input input {
    color: #999798;
    opacity: 1;
    padding: 5px 5px 5px 10px;
    border-top: 0px;
    border-right:0px;
    border-left: 0px;
    border-radius: 0;
    width: 40px;
    padding-left:3px;
    border:none;
    cursor:pointer;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    -o-transition: all 0.5s ease;
    transition: all 0.5s ease;
}

header #top-nav div.input input.opened {
    border-bottom: 1px solid rgba(34,36,38,.15);
    width: 200px;
}

header .mobile-info div.input input {
    color: #999798;
    opacity: 1;
    padding: 5px 5px 5px 10px !important;
}

header #top-nav .ui.input input:focus, header #top-nav .ui.input.focus input {
    border: 1px solid #888;
}


header .mobile-info span.icon-phone {
    color: #227eff;
    padding-right: 5px;
}

header .mobile-info span.item {
    color: #999798;
    font-weight: 300;
    padding-right: 10px;
}

header .mobile-info span.icon-search {
    color: #227eff;
    opacity: 1;
    position: absolute;
    right: 7px;
    top: 6px;
}

header .mobile-info div.input input {
    color: #999798;
    opacity: 1;
    padding: 5px 5px 5px 10px;
}

header .mobile-info .ui.input input:focus, header .mobile-info .ui.input.focus input {
    border: 1px solid #888;
}


/*************** FOOTER ***************/
/* Here is everything related to the footer theming, even overwrites! */

footer div#newsletter {
    background: #080b0e none repeat scroll 0 0;
    border-bottom: 1px solid #222;
    border-top: 1px solid #999798;
    padding-bottom: 20px;
    padding-top: 20px;
}

footer div#newsletter h2 {
    color: #fff;
    margin-bottom: 30px;
}

footer div#newsletter span.icon-mail {
    font-size: 42px;
}

footer div#newsletter p {
    color: #999798;
    font-size: 21px;
    font-weight:300;
    margin: 0px;
    padding-top: 15px;
}

footer div#newsletter span.newsletter-text {
    color: #fff;
    font-size: 14px;
    font-weight:300;
}

footer div#newsletter .sixteen.wide.column {
    text-align: center;
    margin-top: 20px
}

footer div#newsletter .twelve.wide.column {
    text-align: center;
    margin-top: 20px
}

footer #newsletter .input input[type="email"] {
    background: #141619 none repeat scroll 0 0;
    border: 1px solid #666;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    width: 240px;
    margin-right: 15px;
}

footer #newsletter .input input::-moz-placeholder {
    color: #fff;
    opacity: .4;
    font-weight: 300;
}

footer #newsletter .input input::-webkit-input-placeholder {
    color: #fff;
    opacity: .4;
    font-weight: 300;
}

footer #newsletter .input input:-moz-placeholder {
    color: #fff;
    opacity: .4;
    font-weight: 300;
}

footer #newsletter .input input:-ms-input-placeholder {
    color: #fff;
    opacity: .4;
    font-weight: 300;
}

footer #newsletter .column button,
footer #newsletter .column input[type="submit"] {
    background: #227EFF none repeat scroll 0 0;
    border: 1px solid #227EFF;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    width: 240px;
    font-weight:300;
    opacity:1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

footer #newsletter .column input[type="submit"]:hover {
    opacity:0.8;
}

footer #newsletter .squaredThree span {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding-left: 35px;
}

footer #newsletter .social a i.icon {
    border-radius: 50px;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    color: #fff;
    display: inline-block;
    font-size: 20px;
    height: 50px;
    line-height: 30px;
    padding: 10px;
    width: 50px;
    opacity: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

footer #newsletter .social a:hover i.icon {
    opacity: 0.8;
}

footer #newsletter .social i.icon.twitter {
    background: #60A8DC none repeat scroll 0 0;
}

footer #newsletter .social i.icon.facebook {
    background: #3A5A98 none repeat scroll 0 0;
}

footer #newsletter .social i.icon.instagram {
    background: #40739C none repeat scroll 0 0;
}

footer #newsletter .social i.icon.linkedin {
    background: #0a66c2 none repeat scroll 0 0;
}

footer #newsletter .social i.icon.foursquare {
    background: #EE4A77 none repeat scroll 0 0;
}


footer #newsletter .social i.icon.youtube_icon {
    background: #b31217 none repeat scroll 0 0;
    font-size: 22px;
    line-height: 30px;
}

/* .squaredThree checkbox custom style */
footer #newsletter .squaredThree {
  width: auto;
  position: relative;
}
footer #newsletter .squaredThree label {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    background: #080B0E;
    border: 1px solid #fff;
    border-radius: 2px;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    -o-border-radius: 2px;
    -ms-border-radius: 2px;
}
footer #newsletter .squaredThree label:after {
      content: '';
      width: 9px;
      height: 6px;
      position: absolute;
      top: 4px;
      left: 4px;
      border: 1px solid #fcfff4;
      border-top: none;
      border-right: none;
      background: transparent;
      opacity: 0;
      transform: rotate(-45deg);
      -moz-transform: rotate(-45deg);
      -webkit-transform: rotate(-45deg);
      -o-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
}
footer #newsletter .squaredThree label:hover::after {
      opacity: 0.3;
}

footer #newsletter input[type=checkbox] {
    visibility: hidden;
}
footer #newsletter input[type=checkbox]:checked + label:after {
      opacity: 1;
}
/* end .squaredThree  checkbox custom style */

footer div#foot-info {
    background: #141619 none repeat scroll 0 0;
    padding-bottom: 40px;
    padding-top: 40px;
}

footer #foot-info .foot-info-inner h3 {
    color: #999798;
    font-size: 21px;
    font-weight: 300;
    text-align: left;
}

footer #foot-info .foot-info-inner p {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
}

footer #foot-info .foot-info-inner span.icon-vehicle {
    color: #fff;
    float: right;
    font-size: 28px;
    padding-top: 10px;
}

footer #foot-info .foot-info-inner span.foot-line {
    border-bottom: 1px solid #444;
    float: left;
    height: 1px;
    padding-top: 30px;
    width: 86%;
}

footer #foot-info ul {
    padding: 0px;
}

footer #foot-info ul li {
    list-style-type: none;
}

footer #foot-info ul.left {
    border-right: 1px solid #222;
    float: left;
    padding-right: 25px;
    width: auto;
}

footer #foot-info ul.right {
    float: left;
    padding-left: 25px;
    width: auto;
}

footer #foot-info ul a {
    color: #fff;
    font-size: 14px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

footer #foot-info ul a:hover {
    color: #999798;
}

footer #foot-info div.files {
    width: 100%;
    float: left;
    color: #fff;
    margin-top: 20px;
}

footer #foot-info div.files a {
    color: #fff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

footer #foot-info div.files a:hover {
    color: #999798;
}

footer #foot-info div.files span.icon-file {
    font-size: 24px;
    padding-right: 10px;
}

footer #foot-info div.files span {
    font-size: 16px;
}

footer div#copyright {
    background: #080b0e none repeat scroll 0 0;
}

footer div#copyright h2 {
    color: #fff;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
    padding-bottom: 10px;
    padding-top: 10px;
}

footer div#copyright .copyright-text a {
    color: #fff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

footer div#copyright .copyright-text a:hover {
    color: #999798;
}




/***************************************/
/************** HOMEPAGE ***************/
/**************************************/
body.home{}

#content .slideshow.slick-initialized.slick-slider {
    margin-top: 14px;
    margin-bottom: 0;
}

#content #news {
    background: #e7e6e5 none repeat scroll 0 0;
    padding-bottom: 60px;
    padding-top: 60px;
}

#content #news h1 {
    margin-bottom: 40px;
    margin-top: 10px;
}

#content #news .column .news-inner {
    box-shadow: 1px #888;
    -moz-box-shadow: 1px #888;
    -ms-box-shadow: 1px#888;
    -webkit-box-shadow: 1px#888;
    -o-box-shadow:1px #888;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    position:relative;
}

#content #news .column img {
    height: 420px;
   /* max-width: 354px;*/
    width: 100%;
    object-fit: cover;
    border-radius: 2px 2px 0 0;
    -mos-border-radius: 2px 2px 0 0;
    -webkit-border-radius: 2px 2px 0 0;
    -ms-border-radius: 2px 2px 0 0;
    -o-border-radius: 2px 2px 0 0;
}

#content #news .column a img {
    opacity: 1;

}

#content #news .column a:hover img {
    opacity: 0.8;
}

#content #news a i.icon-arrow {
    color: #4e97ff;
    font-size: 40px;
    display: block;
    padding-top: 3px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#content #news a:hover i.icon-arrow {
    color: #233D80;
}

#content #news .column .news-title {
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    padding-top: 10px;
    text-align: left;
    border-radius: 0 0 2px 2px;
    -mos-border-radius: 0 0 2px 2px;
    -webkit-border-radius: 0 0 2px 2px;
    -ms-border-radius: 0 0 2px 2px;
    -o-border-radius: 0 0 2px 2px;
    position:absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    padding: 20px;
    height: 110px;
    margin-top: 0px;
    background: linear-gradient(180deg, rgba(0,0,0,.4) 20%, rgba(0,0,0, 0) 100%);
}

#content #news .column .news-title > div a {
    color: #303032;
    font-size: 21px;
    font-weight: 400;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#content #news .column .news-text{
    text-align: left;
    margin-top: 5px;
    font-size: 15px;
    color: #303032;
    font-weight: 200;
}

#content #news .column .news-white .news-text , #content #news .column .news-white.news-title > div a {
    color: #fff;
}

#content #news .column .news-title > a:hover {
    color: #888;
}

#content #insta {text-align: center;}
/*#content #insta {
    margin-bottom: 60px;
}*/

#content #insta .insta-inner img {
    height: auto;
    width: 100%;
}

#content #insta .insta-inner a img {
    opacity: 1;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;instagram
    transition: all .3s ease-out;
}

#content #insta .insta-inner a:hover img {
    opacity: 0.8;
}

#content #insta .instagram.icon {
    font-size: 28px;
}

#content #insta h1 a {
    font-size: 18px;
    position: relative;
    top: -15px;
}

#content #insta .instagram.icon > span {
    font-family: Lato,"Helvetica Neue",Arial,Helvetica,sans-serif;
    padding-left: 5px;
}

#content #insta h1 {
    margin-bottom: 40px;
    margin-top: 40px;
}


#insta .instagramFeed{
    display: flex;
    /*overflow: hidden;*/
    flex-direction: column;
}
#insta .instagramFeed .batch{
    flex-wrap: wrap;
    min-width: 100%;
    width: 100%;
    display: none;
}

#insta .instagramFeed .batch.visible{
    display: flex;
}

#insta .instaItem{
    width: calc(25% - 0px);
    min-height: 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    position: relative;
    background: #fff;
    transition: opacity 0.2s ease;
    opacity: 0;
    /*visibility: hidden;*/
    overflow: hidden;
    flex-grow: 0;
    flex-shrink: 0;
}

#insta .instagramFeed .batch.visible .instaItem{
    opacity: 1;
}

#insta .instaItem a{
    position: relative;
    width: 100%;
}
#insta .instaItem img{
    display: block;
    width: 100%;
}
#insta .instaItem .instaDetails{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,.65);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-direction: column;
    padding: 20px;
    transform: translateY(-100%);
    transition: all 0.4s ease;
}
#insta .instaItem .stats{
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    width: 150px;
    font-weight: 300;
    margin-bottom: 20px;
}
#insta .instaItem .stats i{font-size: 22px}
#insta .instaItem .caption{
    text-align: center;
    font-weight: 300;
}


#insta .instaItem:hover .instaDetails{
    transform: translateY(0%);
}

#insta .load-more-insta{
    display: inline-block;
    margin: 30px 0;
    font-weight: 300;
    font-size: 16px;
}

/***************************************/
/************** PRODUCTS PAGE ***************/
/**************************************/
body.products{}
body.products.hansgrohe{}
body.products.axor-hansgrohe{}
body.products.kaldewei{}
body.products.werit-jomo{}

body.products .slick-track{min-height: 300px}

body.products .parent-video iframe{
    max-width: 100%;
    height: auto;
    min-height: 300px;
}

body.products #content #products {
    min-height: 900px;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 40px;
}

body.products #content #products .products-content {
    margin-bottom: 40px;
    margin-top: 40px;
}

body.series #content #series .brand-slideshow,
body.products #content #products .brand-slideshow{
    margin-bottom: 20px
}

body.products #content #products .bxslider img{width: 100%}


body.products #content #products ul.slick-dots {
    display:none !important;
}

body.products #products .brand-description strong {
    color: #1f1f22;
    font-size: 21px;
    font-style: italic;
    font-weight: 300;
    line-height: 40px;
}

body.products #products .brand-description {
    color: #1f1f22;
    font-size: 14px;
    font-weight: 300;
}

.filter_product_results{
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

body.products #products .filter {
    padding-bottom: 20px;
    padding-top: 30px;
    width: 100%;

}

body.products #products .filter .field{
    width: 100%;

}

body.products #products .brand-description p {
    line-height: 26px;
}

.products-content{
    width:100%;
}

body.products #content #products .products-content .product-inner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

body.products #content #products .products-content .product-inner .product-image {
    background: #fff none repeat scroll 0 0;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    height: auto;
    margin-bottom: 20px;
    min-height: 310px;
    position: relative;
    width: 100%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .products-content .product-inner .product-image a .outerimage{
    height: 280px;
    display: flex;
    align-items: center;
    /*background: white;*/
}



body.products .products-content .product-inner .product-image a .outerimage img{
   object-fit: contain;
}
body.products  .filter label {
    color: rgba(0, 0, 0, 0.87);
    display: block;
    font-size: 0.928571em;
    font-weight: 700;
    margin: 0 0 0.285714rem;
    text-transform: none;
}

body.products #content #products .filter button {
    background: #227EFF none repeat scroll 0 0;
    border: 1px solid #227EFF;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    font-weight:300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .filter button:hover {
    background: #233d80 none repeat scroll 0 0;
    border: 1px solid #233d80;
}

body.products #content #products .products-content .product-inner .product-image:hover {
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
}

body.products #content #products .products-content .product-inner a img {
    width: 100%;
    height: auto;
    max-height: 300px;
    padding: 20px 10px;
}

body.products #content #products .products-content .product-inner .new-product {
    font-size: 12px;
    color: #fff;
    padding: 2px 6px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    background: #227EFF;
}

body.products #content #products .products-content .product-inner .product-title {

}

body.products #content #products .products-content .product-inner .product-title a {
    color: #1f1f22;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .products-content .product-inner .product-title a:hover {
    color: #227EFF;
}

body.products #content #products .products-content .product-inner .product-number {
    color: #1f1f22;
    font-size: 16px;
    font-weight: 300;
    padding-top: 10px;
}

.product-colors{
    padding-top:10px;
    display:flex;
    width:100%;
    flex-wrap: wrap;
}

.product-color-name {
    font-size:12px;
    text-align:center;
    margin-bottom:2px;
    cursor:pointer;
}

.product-color-name a{
    color:black;
}

.selected .product-color-image img , .product-color-image img:hover{
    -webkit-filter: drop-shadow(1px 1px 2px #227EFF)
    drop-shadow(-1px -1px 2px #227EFF);
    filter: drop-shadow(1px 1px 2px #227EFF)
    drop-shadow(-1px -1px 2px #227EFF);
}

.product-color-image{
    text-align:center;
    margin-top: auto;
}

.product-color-image img{
    width: 35px;
    cursor:pointer;
    border: 2px solid transparent
}

.product-colors > div{
    position:relative;
    display: flex;
    flex-flow: column nowrap;
    align-items: center;
    justify-content: center;
    padding: 10px;
    width: 20%;
}

body.products #content #products .products-inner .pagination {
    margin-bottom: 20px;
}

body.products #content #products .products-inner .pagination a.item {
    font-size:15px;
    color:#151619;
    text-align: center;
    padding: 5px 12px;
    margin-right: 8px;
    background: #fff;
    display: inline-block;
    border: 1px solid #151619;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .products-inner .pagination a.item:hover {
    background: #9A9899;
    color: #fff;
    border-color: #9A9899;
}

body.products #content #products .products-inner .pagination a.active.item {
    background: #9A9899;
    color: #fff;
    opacity: 1;
    border-color: #9A9899;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .products-inner .pagination a.active.item:hover {
    opacity: 0.8;
}

body.products #content #products .products-inner .pagination a.item i.angle.icon {
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    width: auto;
}

body.products #content #products .products-inner .pagination a.icon.item {
    margin-right: 17px;
    background: #151619;
    color: #fff;
    opacity: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .products-inner .pagination a.icon.item:hover {
    opacity: 0.8;
    border-color: #151619;
}

body.products #content #products .products-inner .pagination a.icon.item:last-child {
    margin-left: 12px;
    margin-right: 0px;
}

body.products #content #products .side-menu .ui.vertical.menu {
    border-left: 1px solid #227eff;
    display: inline-block;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-top: 30px;
    background: #fff;
}

body.products #content #products .side-menu .ui.vertical.menu div.item {
    padding: 0px;
    margin: 0;
}

body .product-info{
    padding: 0 0 0 20px;
}

body .product-info > div{
    height: 100%;
}

body.products #content #products .side-menu .ui.vertical.menu div.item div.menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

body.products #content #products .side-menu .ui.vertical.menu div.item a.item {
    color: #1F1F22;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .side-menu .ui.vertical.menu div.item a.item:hover {
    color: #227EFF;
}

body.products #content #products .side-menu .ui.vertical.menu div.item a.active.item {
    color: #227EFF;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .side-menu .ui.vertical.menu div.item a.active.item:hover {
    color: #1F1F22;
}

body.products #content #products .side-menu .ui.vertical.menu div.item div.menu a.item {
    color: #1F1F22;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .side-menu .ui.vertical.menu div.item div.menu a.item:hover {
    color: #227EFF;
}

body.products #content #products .side-menu .ui.vertical.menu div.item div.menu a.active.item {
    color: #227EFF;
    font-weight: normal;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.products #content #products .side-menu .ui.vertical.menu div.item div.menu a.active.item:hover {
    color: #1F1F22;
}




/***************************************/
/************** PRODUCT PAGE ***************/
/**************************************/
body.product #content #product {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
    background-color: #ebebeb;
}

body.product #content #product .menublue{
    background-color: #ebebeb;
}

body .white{
    background-color: white;
}

body .shadow{
    box-shadow: rgb(0 0 0 / 18%) 0px 0px 9px;
}

body.product #content #product .product-small-images
{
    padding-left: 0px;
    margin-top: 20px;
    margin-left: -4px;
}

body.product #content #product .breadcrumb-row{
    margin-top: 10px;
    padding-left: 0;
    padding-bottom: 0px;
}

body.product #content .slick-arrow {
    display: block !important;
}

body.product #content #product .product-gallery {
    padding: 20px 30px 20px 20px;
    background-color: white;
}

body.product #content #product .product-first-row{
    width:100%;
}

body.product #content #product .product-gallery .gallery {
    margin-right: -30px;
}

body.product #content #product .product-gallery img {
    width: auto;
    max-width: 100%;
    max-height: 330px;
}

body.product #content #product .product-short-info {
    padding: 20px;
}

body.product #content #product .product-short-info .product-new {
    margin-bottom: 20px;
}

body.product #content #product .product-short-info .product-new .new-product {
    font-size: 14px;
    color: #fff;
    padding: 2px 6px;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    background: #227EFF;
}

body.product #content #product  .top-brand-image > img {
    height: auto;
    max-height: 60px;
    max-width: 150px;
    width: auto;
   /* margin-top: 18px;*/
    float: right;
    position: inherit;
}

body.product #content #product .product-short-info .product-title {
    margin-bottom: 10px;
    font-size: 21px;
    font-weight: 300;
    color: #227EFF;
    line-height: 28px;
}

body.product #content #product .product-short-info .product-number {
    margin-bottom: 10px;
    font-size: 16px;
    font-weight: 300;
    color: #1F1F22;
}

body.product #content #product .product-short-info .product-file {
    margin-top: 30px;
    margin-bottom: 30px;
}

body.product #content #product .product-short-info .product-file a {
    font-size: 16px;
    font-weight: normal;
    color: #1F1F22;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.product #content #product .product-short-info .product-file a:hover {
    color: #227EFF;
}

body.product #content #product .product-short-info .product-file a span.icon-file {
    font-size: 22px;
    font-weight: normal;
    color: #227EFF;
    padding-right: 10px;
    position: relative;
    top: 4px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.product #content #product .product-short-info .product-file a:hover span.icon-file {
    color: #1F1F22;
}

.add-to-wishlist {
    margin-bottom:10px;
}

.add-to-wishlist button{
     background:#227EFF;
     color:white;
}

.wishlist-image{
    width: 20px;
    height: 17px;
    position: relative;
    top: 2px;
    transform: scale(1);
    transition: all 1s;
}

.wishlist-image.animate {
    transform: scale(1.4);
}

.wishlist-count{
    position: relative;
    top: -2px;
    color: #227eff;
}

#wishlist {
    padding-top:20px;
    padding-bottom:20px;
    min-height: calc(100vh - 500px);
}

#wishlist h2{
    color: #233d7f;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 20px;
}

.wishlist-item-image{
   /* text-align: center;*/
}

.wishlist-item-btn{
    text-align: right;
}

.wishlist-item-title , .wishlist-item-btn{
    padding-top: 5px;
}

.wishlist-item-title-text{
    position: relative;
    bottom: 5px;
    left: 13px;
}

.wishlist-item-title-image{
    display: inline-block;
    min-width: 30px;
}

#wishlist button{
    background:none;
}

#wishlist button.send-to-email{
    background:#4183c4;
    color:white;
}

#wishlist button.send-offer{
    background:#233D80;
    color:white;
}

.wishlist-send-action{
    margin-top: 30px;
    text-align:center
}

.wishlist-items{
    width: 100%;
    margin: 0 auto;
    padding: 18px;
    background-color: #ebebeb;
    border-radius: 6px;
}

.wishlist-items .no-products{
    padding: 10px;
    text-align: center;
}

.wishlist-buttons{
    width: 46%;
    margin: 0 auto;
    margin-top: 20px;
}

body.product #content #product .product-info {
    /* margin-bottom: 40px;
    margin-top: 20px; */
    padding-top: 0px;
    padding-bottom: 0px;
}

body.product #content #product .product-info h2.header {
    color: #1f1f22;
    font-size: 21px;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
    margin-top: 10px;
}

body.product #content #product .product-info p {
    color: #9A9899;
    font-size: 16px;
    font-weight: normal;
    line-height: 26px;
}

body.product #content #product .product-info strong {
    color: #1F1F22;
    font-size: 14px;
    font-weight: 600;
    line-height: 18px;
}

body.product #content #product .product-info ul {
    padding-left: 0px;
    list-style-type: none;
}

body.product #content #product .product-info ul li {
    color: #1F1F22;
    font-size: 16px;
    font-weight: 300;
    padding-bottom: 10px;
}

body.product #content #product .product-info ul li strong {
    border-right: 1px solid #227eff;
    color: #1f1f22;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    height: 18px;
    margin-right: 6px;
    padding-right: 10px;
}



/***************************************/
/************** SERVICE PAGE ***************/
/**************************************/
body.service{}

body.service #content #service {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
    color: #1f1f22;
    font-weight: 300;
}
body.service #content #service a {
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
body.service #content #service .column img {
    margin-bottom: 30px;
    margin-top: 20px;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    height: auto;
    width: 100%;
    float: left;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.service #content #service .column img:hover {
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
}

body.service #content #service h1 {
    margin-bottom: 40px;
}

body.service #content #service .field > label {
    color: #555355;
    font-size: 14px;
    font-weight: 600;
    padding-bottom: 6px;
}

body.service #content #service .field > label.error {
    color: #912d2b;
    font-size: 12px;
}

body.service #content #service .cont {
    padding-top: 40px;
}

body.service #content #service .cont .cont-inner {
    border-left: 1px solid #227eff;
    padding-bottom: 10px;
    padding-left: 25px;
    padding-top: 10px;

}

body.service #content #service .inf {
    padding-top: 40px;
}

body.service #content #service .form button {
    background: #227EFF none repeat scroll 0 0;
    border: 1px solid #227EFF;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    font-weight:300;
    margin-top: 40px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.service #content #service .form button:hover {
    background: #233d80 none repeat scroll 0 0;
    border: 1px solid #233d80;
}

body.service #content #service .form .button {
    background: #227EFF none repeat scroll 0 0;
    border: 1px solid #227EFF;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    font-weight:300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.service #content #service .form .button:hover {
    background: #233d80 none repeat scroll 0 0;
    border: 1px solid #233d80;
}

body.service #content #service .form .button .attach.icon {
    font-size: 18px;
}


/***************************************/
/************** SEARCH PAGE ***************/
/**************************************/
body.search{}

body.search #content #search {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}
body.search #content #search .products-content {
    margin-bottom: 40px;
    margin-top: 40px;
}
body.search #content #search .products-content .product-inner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

body.search #content #search .products-content .product-inner .product-image {
    background: #fff none repeat scroll 0 0;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    height: auto;
    margin-bottom: 20px;
    min-height: 310px;
    position: relative;
    width: 100%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.search #content #search .products-content .product-inner .product-image:hover {
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
}

body.search #content #search .products-content .product-inner a img {
    width: 100%;
    height: auto;
    max-height: 300px;
    padding: 20px 10px;
}

body.search #content #search .products-content .product-inner .new-product {
    font-size: 12px;
    color: #fff;
    padding: 2px 6px;
    position: absolute;
    left: 0;
    bottom: 0;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    background: #227EFF;
}

body.search #content #search h3 {
    color: #999798;
    font-weight: 300;
    margin-bottom: 40px;
    width: 100%;
}

body.search #content #search h3 em {
    color: #233d80;
    font-weight: 300;
}

body.search #content #search .products-content .product-inner .product-title {

}

body.search #content #search .products-content .product-inner .product-title a {
    color: #1f1f22;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.search #content #search .products-content .product-inner .product-title a:hover {
    color: #999798;
}

body.search #content #search .products-content .product-inner .product-number {
    color: #1f1f22;
    font-size: 16px;
    font-weight: 300;
    padding-top: 10px;
}

body.search #content #search .pagination {
    margin-bottom: 20px;
}

body.search #content #search .pagination a.item {
    font-size:15px;
    color:#151619;
    text-align: center;
    padding: 5px 12px;
    margin-right: 8px;
    background: #fff;
    display: inline-block;
    border: 1px solid #151619;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.search #content #search .pagination a.item:hover {
    background: #9A9899;
    color: #fff;
    border-color: #9A9899;
}

body.search #content #search .pagination a.active.item {
    background: #9A9899;
    color: #fff;
    opacity: 1;
    border-color: #9A9899;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.search #content #search .pagination a.active.item:hover {
    opacity: 0.8;
}

body.search #content #search .pagination a.item i.angle.icon {
    display: inline-block;
    font-size: 18px;
    font-weight: 300;
    width: auto;
}

body.search #content #search .pagination a.icon.item {
    margin-right: 17px;
    background: #151619;
    color: #fff;
    opacity: 1;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.search #content #search .pagination a.icon.item:hover {
    opacity: 0.8;
    border-color: #151619;
}

body.search #content #search .pagination a.icon.item:last-child {
    margin-left: 12px;
    margin-right: 0px;
}


/***************************************/
/************** SHOWROOM PAGE ***************/
/**************************************/
body.showroom{}

body.showroom #content #showroom p.photo_credits{
    font-size: 13px;
    margin-bottom: 30px;
    color: #aaa;
    text-align: right;
    border-top: 1px solid #eee;
    padding-top: 5px;
}
body.showroom #content #showroom .bx-wrapper{margin: 0 auto!important;}
body.showroom #content #showroom .bx-viewport{
    height: 757px!important;
    margin-bottom: 10px
}


body.showroom #content #showroom {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
    color: #1f1f22;
    font-weight: 300;
}

body.showroom #content #showroom .column img {
    margin-bottom: 40px;
    margin-top: 20px;
    float: left;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    height: auto;
    width: 100%;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
body.showroom #content #showroom .column img:hover {
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
}

body.showroom #content #showroom .showroom-list {
    display: flex;
    text-align: left;
    margin-bottom:40px;
    width: 100%;
    float: left;
}

body.showroom #content #showroom .showroom-list .third-ul {
    align-items: center;
     margin-right: 0px;
    display: flex;
}

body.showroom #content #showroom .showroom-list .third-ul a{
    padding: 20px 9px;
    background: #227eff;
    color: #fff;
    font-weight: 400;
    text-align: center;
}

body.showroom #content #showroom .showroom-list ul {
    list-style-type: none;
    width: auto;
    float: left;
    border-left: 1px solid #227eff;
    margin-right: 34px;
    padding-left: 17px;
}

body.showroom #content #showroom .showroom-list ul li {
    line-height: 26px;
}


/***************************************/
/************** CATEGORIES PAGE ***************/
/**************************************/
body.categories{}

body.categories #content #categories {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

body.categories #content #categories .categories-content {
    margin-bottom: 40px;
    margin-top: 40px;
}

body.categories #content #categories ul.slick-dots {
    display:none !important;
}

body.categories #categories .brand-description strong {
    color: #1f1f22;
    font-size: 21px;
    font-style: italic;
    font-weight: 300;
    line-height: 40px;
}

body.categories #categories .brand-description {
    color: #1f1f22;
    font-size: 14px;
    font-weight: 300;
}

body.categories #categories .brand-description p {
    line-height: 26px;
}

body.categories #content #categories .categories-content .category-inner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}

body.categories #content #categories .categories-content .category-inner a img {
    width: 100%;
    height: auto;
    opacity: 1;
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.categories #content #categories .categories-content .category-inner a img:hover {
    opacity: 0.8;
}

body.categories #content #categories .categories-content .category-inner .category-title {
    text-align: center;
}

body.categories #content #categories .categories-content .category-inner .category-title a {
    color: #1f1f22;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.categories #content #categories .categories-content .category-inner .category-title a:hover {
    color: #999798;
}

body.categories #content #categories .side-menu .ui.vertical.menu {
    border-left: 1px solid #227eff;
    display: inline-block;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-top: 30px;
    background: #fff;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item {
    padding: 0px;
    margin: 0;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item div.menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item a.item {
    color: #1F1F22;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item a.item:hover {
    color: #227EFF;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item a.active.item {
    color: #227EFF;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item a.active.item:hover {
    color: #1F1F22;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item div.menu a.item {
    color: #1F1F22;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item div.menu a.item:hover {
    color: #227EFF;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item div.menu a.active.item {
    color: #227EFF;
    font-weight: normal;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.categories #content #categories .side-menu .ui.vertical.menu div.item div.menu a.active.item:hover {
    color: #1F1F22;
}



/***************************************/
/************** WHOLESALE PAGE ***************/
/**************************************/
body.wholesale{}

body.wholesale #content #wholesale {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
}

body.wholesale #content #wholesale {
    color: #1f1f22;
    font-weight: 300;
}

body.wholesale #content #wholesale .mail {
    margin-top: 20px;
}

body.wholesale #content #wholesale .mail .input {
    margin-top: 20px;
    display: inline;
}

body.wholesale #content #wholesale .mail button {
    background: #227EFF none repeat scroll 0 0;
    border: 1px solid #227EFF;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    font-weight:300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.wholesale #content #wholesale .mail button:hover {
    background: #233d80 none repeat scroll 0 0;
    border: 1px solid #233d80;
}

body.wholesale #content #wholesale .mail input {
    width: 280px;
}

body.wholesale #content #wholesale .error {
    color: #912d2b;
    float: left;
    font-size: 12px;
    font-weight: 600;
    margin-top: 5px;
    width: 100%;
}


/***************************************/
/************** WHOLESALE CATALOGUES PAGE ***************/
/**************************************/
body.catalogues{}

body.catalogues #content #wholesale-catalogues {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 60px;
}


/***************************************/
/************** INSTAGRAM PAGE ***************/
/**************************************/
body.instagram{}

body.instagram #content #insta {
    margin-top: 40px;
    padding-bottom: 40px;
    padding-top: 10px;
}

body.instagram #content #insta h1 {
    margin-bottom: 40px;
    margin-top: 40px;
}
body.instagram #content #insta button#load-more {
    background: #227EFF none repeat scroll 0 0;
    border: 1px solid #227EFF;
    color: #fff !important;
    font-size: 14px;
    text-align: center;
    font-weight:300;
    margin-top: 40px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.instagram #content #insta button#load-more:hover {
    background: #233d80 none repeat scroll 0 0;
    border: 1px solid #233d80;
}


/**************************************/
/************** STORES PAGE ***************/
/**************************************/
body.stores{}

body.stores #content #stores {
    margin-top: 40px;
    padding-top: 40px;
    position: relative;
}

body.stores #map {
    width:100%;
    height: 600px;
    position: relative;
}

body.stores .leaflet-popup-content {
    color: #1f1f22;
    font-size: 12px;
    font-weight: 300;
    font-family: "Open Sans",sans-serif;
    /*width: auto !important;*/
    min-width: 130px;
}

body.stores .leaflet-popup-content a {
    color: #227eff;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.stores .leaflet-popup-content a:hover {
    color: #233d80;
}

body.stores .leaflet-popup-content img {
    max-width:300px;
    width: auto;
    max-height: 150px;
}

body.stores .leaflet-bottom, body.stores .leaflet-top {
    z-index: 8;
}

body.stores .ui-button {
    background:#227eff;
    color:#fff;
    font-size: 11px;
    font-weight: 300;
    font-family: "Open Sans",sans-serif;
    display:block;
    position:absolute;
    top:50px;
    right:10px;
    width:auto;
    z-index:2;
    text-align:center;
    padding:5px;
    border:1px solid rgba(35,61,128,0.4);
    border-radius:3px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
body.stores .ui-button:hover {
    background:#233d80;
}




/***************************************/
/************** SERIES PAGE ***************/
/**************************************/
body.series{}

body.series #content #series {
    margin-top: 40px;
    padding-top: 40px;
    padding-bottom: 40px;
}

body.series #content #series .series-content {
    margin-bottom: 40px;
    margin-top: 40px;
}

body.series #content #series ul.slick-dots {
    display:none !important;
}

body.series #series .category-description strong {
    color: #1f1f22;
    font-size: 21px;
    font-style: italic;
    font-weight: 300;
    line-height: 40px;
}

body.series #series .category-description {
    color: #1f1f22;
    font-size: 14px;
    font-weight: 300;
}

body.series #series .category-description p {
    line-height: 26px;
}

body.series #series .category-description ul {
    list-style-type: decimal;
    padding-left: 15px;
}

body.series #series .category-description ul li {
    line-height: 30px;
    padding-left: 8px;
}

body.series #content #series .series-content .series-inner {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
}
body.series #content #series .series-content .series-inner .series-image a .outerimage {
    height: 190px;
    display: flex;
    align-items: center;
}
body.series #content #series .series-content .series-inner .series-image a .outerimage img {
    object-fit: cover;
    height: 190px;
}
body.series #content #series .series-content .series-inner a {display: block}
body.series #content #series .series-content .series-inner a img {
    width: 100%;
    height: auto;
    opacity: 1;
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    display: block;
}

body.series #content #series .series-content .series-inner a img:hover {
    opacity: 0.8;
}

body.series #content #series .series-content .series-inner .series-title {
    text-align: center;
}

body.series #content #series .series-content .series-inner .series-title a {
    color: #1f1f22;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    display: block;
}

body.series #content #series .series-content .series-inner .series-title a:hover {
    color: #999798;
}

body.series #content #series .side-menu .ui.vertical.menu {
    border-left: 1px solid #227eff;
    display: inline-block;
    padding-bottom: 30px;
    padding-left: 30px;
    padding-top: 30px;
    background: #fff;
}

body.series #content #series .side-menu .ui.vertical.menu div.item {
    padding: 0px;
    margin: 0;
}

body.series #content #series .side-menu .ui.vertical.menu div.item div.menu {
    padding-top: 10px;
    padding-bottom: 10px;
}

body.series #content #series .side-menu .ui.vertical.menu div.item a.item {
    color: #1F1F22;
    font-size: 16px;
    font-weight: 600;
    padding-left: 0px;
    padding-right: 0px;
    margin: 0;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.series #content #series .side-menu .ui.vertical.menu div.item a.item:hover {
    color: #227EFF;
}

body.series #content #series .side-menu .ui.vertical.menu div.item a.active.item {
    color: #227EFF;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.series #content #series .side-menu .ui.vertical.menu div.item a.active.item:hover {
    color: #1F1F22;
}

body.series #content #series .side-menu .ui.vertical.menu div.item div.menu a.item {
    color: #1F1F22;
    font-size: 14px;
    font-weight: 300;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.series #content #series .side-menu .ui.vertical.menu div.item div.menu a.item:hover {
    color: #227EFF;
}

body.series #content #series .side-menu .ui.vertical.menu div.item div.menu a.active.item {
    color: #227EFF;
    font-weight: normal;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.series #content #series .side-menu .ui.vertical.menu div.item div.menu a.active.item:hover {
    color: #1F1F22;
}


/***************************************/
/************** CATALOGUES PAGE ***************/
/**************************************/
body.catalogues{}

body.catalogues #content #catalogues {
    background: #e7e6e5 none repeat scroll 0 0;
    margin-top: 40px;
    padding-bottom: 60px;
    padding-top: 40px;
}

body.catalogues #content #catalogues h1 {
    margin-bottom: 40px;
    margin-top: 10px;
    letter-spacing: 0.5px;
}

body.catalogues #content #catalogues h2 {
    font-weight: 300;
    margin-bottom: 5px;
    padding-bottom: 10px;
    border-bottom: 0 none;
}

body.catalogues #content #catalogues .column .catalogues-inner {
    text-align: center;
    background: #fff;
    padding: 0px;
    opacity: 1;
    cursor:pointer;
    border-radius: 2px 2px 2px 2px;
    -mos-border-radius: 2px 2px 2px 2px;
    -webkit-border-radius: 2px 2px 2px 2px;
    -ms-border-radius: 2px 2px 2px 2px;
    -o-border-radius: 2px 2px 2px 2px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
    box-shadow: 0px 0px 8px #eee;
    -moz-box-shadow: 0px 0px 8px #eee;
    -ms-box-shadow: 0px 0px 8px #eee;
    -webkit-box-shadow: 0px 0px 8px #eee;
    -o-box-shadow: 0px 0px 8px #eee;
}

body.catalogues #content #catalogues .column .catalogues-inner:hover {
    opacity: 0.8;
}

body.catalogues #content #catalogues #werit-jomo .column .catalogues-inner {
    min-height: inherit;
}

body.catalogues #content #catalogues .column .catalogues-inner a img {
    opacity: 1;
    width:100%;
    height:auto;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.catalogues #content #catalogues .column .catalogues-inner a:hover img {
    opacity: 1;
}

body.catalogues #content #catalogues .column .catalogues-title {
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px;
}

body.catalogues #content #catalogues .column .catalogues-title > a {
    color: #303032;
    font-size: 14px;
    font-weight: 200;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

body.catalogues #content #catalogues .column .catalogues-title > a:hover {
    color: #888;
}

body.catalogues #content #catalogues .column .catalogues-title > a i{
    font-size: 20px;
    vertical-align: middle;
}

/*****************************/
/******* DARK CONTENT ********/
/*****************************/

body.dark_content {
    background-color: #000;
    color: #fff;
}

body.dark_content header #top-nav {
    background-color: #000;
    color: #fff;
}

body.dark_content .ui.text.menu {
    background-color: #000 !important;
}

body.dark_content header div.right.menu.nav .item {
    color: #fff;
    border-bottom: 2px solid transparent;
}

body.dark_content header div.right.menu.nav .active.item, body.dark_content header div.right.menu.nav .item:hover {
    border-bottom: 2px solid transparent;
    color: #227eff;
}

body.dark_content .menublue {
    background-color: #000;
}

body.dark_content .menu__link {
    color: #fff;
}

body.dark_content .menu__link[data-submenu]::after {
    color: #fff;
}

body.dark_content .menu__link--current[data-submenu]::after, body.dark_content .menu__link:hover {
    color: #227eff;
}

body.dark_content header #top-nav div.input input, body.dark_content .ui.form.search-form-mobile input {
    color: #fff;
    opacity: 1;
    padding: 5px 5px 5px 10px;
    background-color: #000;
    border-color: #afafaf;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

body.dark_content header #top-nav div.input input:focus, body.dark_content .ui.form.search-form-mobile input:focus {
    opacity: 1;
    border-color: #fff;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

body.dark_content header #top-nav span.icon-search, body.dark_content .ui.form.search-form-mobile span.icon-search {
    color: #afafaf;
}

body.dark_content header #top-nav input:focus + span.icon-search, body.dark_content .ui.form.search-form-mobile input:focus + span.icon-search {
    color: #fff;
}

body.dark_content header #top-nav div.input input::-moz-placeholder {
    color: #afafaf;
}

body.dark_content header #top-nav div.input input::-webkit-input-placeholder {
    color: #afafaf;
}

body.dark_content header #top-nav div.input input:-moz-placeholder {
    color: #afafaf;
}

body.dark_content header #top-nav div.input input:-ms-input-placeholder {
    color: #afafaf;
}

body.dark_content .ui.form.search-form-mobile input::-moz-placeholder {
    color: #afafaf;
}

body.dark_content .ui.form.search-form-mobile input::-webkit-input-placeholder {
    color: #afafaf;
}

body.dark_content .ui.form.search-form-mobile input:-moz-placeholder {
    color: #afafaf;
}

body.dark_content .ui.form.search-form-mobile input:-ms-input-placeholder {
    color: #afafaf;
}

body.dark_content header #top-nav a span.item {
    color: #afafaf;
}

body.dark_content header #top-nav a span.icon-phone {
    color: #227eff;
}

body.dark_content header div.right.menu.nav .item.lang-el {
    border-right: 1px solid #233d7f;
}

body.dark_content header div.right.menu.nav .item.showroom, body.dark_content header div.right.menu.nav .item.hotel {
    color: #fff;
    opacity: 1;
}

body.dark_content header .ui.menu .pointing.dropdown.item .menu, body.dark_content header .ui.menu .pointing.dropdown.item .menu::after {
    background-color: #1b1b1b;
}

body.dark_content header div.right.menu.nav .ui.dropdown .item a {
    color: #fff;
}

body.dark_content header div.right.menu.nav .ui.dropdown .item a:hover {
    color: #227eff;
}

body.dark_content header div.submenu-nav {
    background: #1b1b1b none repeat scroll 0 0;
    box-shadow: 0 4px 4px #333333 inset;
    -moz-box-shadow: 0 4px 4px #333333 inset;
    -webkit-box-shadow: 0 4px 4px #333333 inset;
    -ms-box-shadow: 0 4px 4px #333333 inset;
    -o-box-shadow: 0 4px 4px #333333 inset;
}

body.dark_content header div.sub-column li a {
    color: #fff;
}

body.dark_content header div.sub-column li a:hover {
    color: #227eff;
}

body.dark_content header div.sub-column div.divider {
    border-bottom: 1px solid #afafaf;
}

body.dark_content header #top-nav {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

body.dark_content.series #content #series .series-content .series-inner .series-title a {
    color: #fff;
    /* font-size: 22px;
    margin-bottom: 15px; */
}

body.dark_content.series #content #series .series-content .series-inner .series-title a:hover {
    color: #227eff;
}

body.dark_content.series #content #series .series-content .series-inner a img {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    box-shadow: none !important;
}

body.dark_content.series #content #series .series-content .series-inner:hover .series-title a {
    color: #227eff;
}

body.dark_content header .mobile-info {
    background: #000;
}

body.dark_content header .mobile-info span.item {
    color: #afafaf;
}

body.dark_content header #top-nav-mobile .mobile-menu a.item.active {
    color: #227eff;
}

body.dark_content header #top-nav-mobile .mobile-menu a.item {
    border-top: 1px solid #afafaf;
    color: #fff;
    background: #000;
}

body.dark_content header #top-nav-mobile .mobile-menu a.item:hover {
    color: #227eff;
}

body.dark_content header #top-nav-mobile .mobile-menu .item.showroom {
    background: #227eff none repeat scroll 0 0;
    color: #fff !important;
    border-top: 1px solid transparent;
    opacity: 1;
}

body.dark_content header #top-nav-mobile .mobile-menu .item.hotel {
    background: #233D80 none repeat scroll 0 0;
    color: #fff !important;
    border-top: 1px solid transparent;
    opacity: 1;
}

body.dark_content header #top-nav-mobile .mobile-menu .item .lang-el.active, body.dark_content header #top-nav-mobile .mobile-menu .item .lang-en.active {
    color: #227eff;
}

body.dark_content header #top-nav-mobile .mobile-menu .item .lang-el {
    color: #fff;
    border-right: 1px solid #233D80;
}

body.dark_content header #top-nav-mobile .mobile-menu .item .lang-en {
    color: #fff;
}

body.dark_content header #top-nav-mobile .mobile-menu .item .lang-en:hover, body.dark_content header #top-nav-mobile .mobile-menu .item .lang-el:hover {
    color: #227eff;
}

body.dark_content.products #content #products .products-content .product-inner .product-image {
    background-color: #000;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

body.dark_content.products #content #products .products-content .product-inner .product-number {
    color: #fff;
}

body.dark_content.products #content #products .products-content .product-inner .product-title a {
    color: #fff;
}

body.dark_content.products #content #products .products-content .product-inner .product-title a:hover {
    color: #227eff;
}

body.dark_content.products #products .brand-description strong {
    color: #fff;
}

body.dark_content.products #products .brand-description {
    color: #afafaf;
}

body.dark_content.product #content #product .product-short-info .product-number {
    color: #fff;
}

body.dark_content.product #content #product .product-short-info .product-file a {
    color: #afafaf;
}

body.dark_content.product #content #product .product-short-info .product-file a:hover {
    color: #227eff;
}

body.dark_content.product #content #product .product-info h2.header {
    color: #fff;
}

body.dark_content.product #content #product .product-info ul li, body.dark_content.product #content #product .product-info strong {
    color: #afafaf;
}

body.dark_content.series #content #series .series-content .series-inner {
    /* display: flex;
    flex-flow: row;
    flex: 1;
    align-items: center;
    flex-basis: 0; */
}

body.dark_content .series-image {
    flex-grow: 1;
    width: 100%;
}

body.dark_content.series #content #series .series-content .series-inner .series-title {
    /* text-align: left;
    padding: 0px 50px;
    flex-grow: 1;
    width: 100%; */
}

body.dark_content .brands_column.kaldewei_4 {
    display: none !important;
}

body.dark_content #content #product .slick-prev::before, body.dark_content #content #product .slick-next::before {
    color: #fff;
}

body.dark_content header .parent_category{
    background-color: #000;
    color: #fff;
    width: 270px;
    padding: 35px;
    border: 2px solid black;
    font-weight: 600;
    cursor: pointer;
    font-size: 14px;
}

body.dark_content header .category_item a, body.dark_content header .brand_item a {
    color: #fff;
}

body.dark_content header .category_item a:hover, body.dark_content header .brand_item a:hover {
    color: #fff;
}

body.dark_content header .brand_item {
    color: #fff;
}

body.dark_content header .brand_series {
    background-color: #000;
}

body.dark_content .brand_series div a {
    color: #fff !important;
}

body.dark_content header .brand_item:hover, body.dark_content header .brand_item.active {
    color: #fff;
    background-color: #000;
}

body.dark_content header .brand_item:hover a, body.dark_content header .brand_item.active a {
    color: #fff;
    background-color: #000;
}

body.dark_content  #content #product , body.dark_content #content #product .menublue ,body.dark_content .white ,body.dark_content  #content #product .product-gallery
{
    background-color: #000;
}

body.dark_content.products  .filter label {
    color: #fff;

}



/**************************************/
/******* LIBRARIES OVERWRITES ********/
/*************************************/
#content .slick-dots li button::before {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #1f2022;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: black;
    content: "";
    font-family: "slick";
    font-size: 6px;
    height: 12px;
    left: 0;
    line-height: 20px;
    opacity: 1;
    position: absolute;
    text-align: center;
    top: 0;
    width: 12px;
    -webkit-transition: all .2s ease-out;
    -moz-transition: all .3s ease-out;
    -o-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}

#content .slick-dots li:hover button::before {
    background: #4E97FF none repeat scroll 0 0;
    border: 1px solid #4E97FF;
}

#content .slick-dots li.slick-active button::before {
    background: #4E97FF none repeat scroll 0 0;
    border: 1px solid #4E97FF;
}

#content .slick-dots {
    bottom: 0px;
}

#content .slick-dots li {
    margin: 0 2px;
}

#content .slick-arrow {
    display: none !important;
}

#content .slick-slide img {
    display: block;
    width: 100%;
}

#content #product .slick-slider {
    margin-bottom: 10px;
}

#content #product .slick-prev::before, #content #product .slick-next::before {
    color: #1f1f22;
}

#content #product .slick-list.draggable {
    padding: 0 !important;
}

#content #product .slider-nav .slick-list.draggable .slick-track {
    height: 80px;
}

#content #product .slider-nav .slick-list.draggable .slick-track img {
    padding: 5px;
}

#content #product .product-gallery .gallery .slick-arrow {
    display: none !important;
}




/*body.products.hansgrohe .menublue.extra_height{min-height: 1010px}
body.products.axor-hansgrohe .menublue.extra_height{min-height: 650px}
body.products.kaldewei .menublue.extra_height{min-height: 230px}
body.products.werit-jomo .menublue.extra_height{min-height: 150px}*/
/*#products .menu__breadcrumbs{padding-top: 0px}*/
/*#products .menu__wrap {top: 2.5em;}*/

.menublue.extra_height{min-height: 1010px}

.menu__link--current {color: #227eff!important}




body.niveco .bx-wrapper{
    background: transparent;
    border: 0;
    box-shadow: none;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
}

body.menu__link--solo {
    padding-left: 0;
}

.top-right-links{
    color:#000;
    display:inline-block;
    margin-right: 5px;
}

.top-right-links:hover {
    color: #4183c4;
}

#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
  }

  .container-map{
      display: flex !important;
  }

  .map{
      height: 400px;
      width: 50%;
  }

  .map-info{
      width: 50%;
      padding:20px;
  }

  .title{
      font-weight: bold;
      font-size: 20px;
  }

  .brands{
      font-weight: bold;
      font-size: 15px;
      margin-top:10px;
  }

  .address{
      font-size: 14px;
      margin-top:10px;
  }

  .phone,.email{
      font-size: 14px;
      margin-top:5px;
  }

  .time{
      font-size: 13px;
      margin-top:3px;
  }

  .time.top{margin-top:20px;}

  map-info .link{
      margin-top:50px;
  }

  map-info .link a{
      display: inline;
      outline: none;
      padding: 12px;
      background: #227eff;
      color: #fff;
      font-weight: bold;
      border-radius: 4px;
  }

.tooltip {
    display:inline-block;
    position:relative;
    text-align:left;
}

.tooltip .top {
    top:-20px;
    left:50%;
    transform:translate(-50%, -100%);
    padding: 5px 10px;
    color:#000000;
    background-color:#ffffff;
    font-weight:normal;
    font-size:10px;
    border-radius:8px;
    position:absolute;
    z-index:99999999;
    box-sizing:border-box;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
    visibility:hidden;
    opacity:0;
    transition:opacity 0.8s;
    white-space: nowrap;
}

body.product #content #product .product-info .tooltip .top p{
    font-size:12px;
    color:#000;
    line-height: initial;
}

.tooltip:hover .top {
    visibility:visible; opacity:1;
}

.tooltip .top i {
    position:absolute;
    top:100%;
    left:50%;
    margin-left:-12px;
    width:24px;
    height:12px;
    overflow:hidden;
}

.tooltip .top i::after {
    content:'';
    position:absolute;
    width:12px;
    height:12px;
    left:50%;
    transform:translate(-50%,-50%) rotate(45deg);
    background-color:#ffffff;
    box-shadow:0 1px 8px rgba(0,0,0,0.5);
}

.appointment{
    clear: both;
    text-align: right;
    padding-top: 9px;
}

.product-inner{
    position: relative;
}

.favorite-icon{
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
    fill: #0060df;
    display: none;
}

.product-inner:hover  .favorite-icon{
    display: block;
}

.favorite-icon:hover{
    fill: #0d4da2;
}
