/* HTML Elements */
ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, body, html, p, blockquote, q, fieldset, dl, dt, dd, iframe, table, tbody, thead, td, th, address, legend {
    margin:0;
    padding:0;
    font-size: 1.0em;
    font-style: inherit;
    font-family: inherit;
    vertical-align: baseline;
}

/* HTML5 Elements */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block;
}

/* iOS overrides hightlight color show when the user taps a link */
* {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}

/* Prevent iOS from adjusting text while changing orientation */
html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    /*font-size: 12px;*/
    line-height: 1.5em;
    font-family: Arial, Helvetica, sans-serif;
}

/**
 * Headings and text
 * Description:
 * Note: :first-child on the right place over there?
 */

h1 {
    font-size: 1.5em; /* 18px */
    line-height: 1em; /* 18px */
    margin: 2em 0 1em 0; /* 18px */
}

h1:first-child, h2:first-child, h3:first-child, h4:first-child, h5:first-child { margin-top: 0; } /* reset the first H{x} of the page */
* html h1, * html h2 { margin-top: 0; } /* Don't we all love Bill? */

h2 {
    font-size: 1.3333em; /* 16px */
    line-height: 1.125em; /* 18px */
    margin-top: 1.6875em; /* 27px */
    margin-bottom: 0.5625em; /* 9px */
}

.index h2, .related h2, .bundle h2{
    text-align: center;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    padding-bottom: 25px;
}

h3 {
    font-size: 1.1667em; /* 14px */
    line-height: 1.286em; /* 18px */
    margin-top: 1.929em; /* 27 px */
    margin-bottom: 0.643em; /* 9px */
}
h2 + h3 {
    margin-top: 1.2857em; /* 18 px */
}

h4 {
    margin-top: 1.5em; /* 18px */
}
h3 + h4 {
    margin-top: 0.5em; /* 9 px */
}

h5 {
    margin-top: 1.5em; /* 18px */
    font-weight: normal;
}
h4 + h5 {
    margin-top: 0em; /* 9 px */
}

p {
    font-size: 1em; /* 12px */
    line-height: 1.5em; /* 18px */
    margin: 0 0 1.5em 0;
}

p.intro {
    font-size: 1.08333em;
    line-height: 1.3846em;
    font-weight: bold;
}

blockquote {
    margin: 0 2.5em 1.5em 2.5em;
    font-style: oblique;
}

q { font-style: oblique; }

hr {
    margin: 0 0 1.5em 0;
    height: 1px;
    background: #333;
    border: none;
}

small {
    font-size: 0.8333em; /* 10px */
    line-height: 1.8em; /* 18px */ /* SOMETHING STRANGE HAPPENING HERE!! was 1.8em IE IS NOT HELPING HERE! */
}

a img, :link img, :visited img {
    border: none;
}

a {
    background: transparent; /* prevents grey brackground IE10 */
    outline: 0;
    transition: color 300ms;
}

address { font-style: normal; }

figure {
    margin: 0;
}

/**
 * Lists
 * Description: List elements (<ul>, <ol>, <dl>)
 */

ul,
ol { margin: 0 0 1.5em 2.5em; }
li ul,
li ol { margin: 0 0 0 2.5em; }

dl { margin: 0 0 1.5em 0; }
dt {
    font-weight: bold;
    margin: 1.5em 0 0 0;
}
dd { margin: 0 0 0 2.5em; }

/**
 * Misc
 * Description: These styles are often used for general purposes
 * Use on: All HTML elements
 * Note: names of these classes should be self explanatory, but may renamed in future
 */

.break { clear: both; }
.right { float: right; }
.left { float: left; }
.hide, .skip { display: none; }
.center { text-align: center; }

/**
 * Forms
 *
 */

fieldset { border: none; }
form br { clear: left; }

label {
    float: left;
    width: 150px;
    margin: 0 0 0.9em 0;
}
label.inline{
    width: auto;
    display: inline;
    margin-right: 15px;
}
input, input.text, textarea, select {
    font-family: inherit; /* Inherit from body */
    font-size: 100%; /* Inherit from body */
    width: 300px;
    margin: 0 0 0.9em 0;
}
textarea {
    overflow: auto; /* Remove default scrollbar from IE8/9 */
}

/* Checkbox/ radio */
label input {
    width: auto;
    height: auto;
    margin: 0 5px 0 0;
    padding: 0;
    vertical-align: middle;
    border: none; /* For IE */
}

input, textarea {
    border: 1px solid #e5e2df;
}

/* IE8/9/10 padding fixes */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    height: auto;
    padding: 0;
    width: auto;
}

/* iOS resets for search fields */
input[type="search"] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

input.inline, select.inline {
    width: 150px;
}
input.small {
    width: 30px;
}
input.medium {
    width: 60px;
}

label, button {
    cursor: pointer;
}

/* Standard buttons */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
    -webkit-appearance: button;
    cursor: pointer;
}

button,
input {
    line-height: normal;
}

/* Button: disabled state */
button[disabled],
input[disabled] {
    cursor: default;
}

/* Firefox reset (removes extra user Agent padding left and right of a button */
input::-moz-focus-inner,
button::-moz-focus-inner {
    border: 0;
    padding: 0;
}

/*body{font-size:13px;margin-top:0px;padding:0;line-height:24px;letter-spacing:0.5px;}*/
a{text-decoration:none;}
a img{border:none;}
.hide{display:none;}
.show{display:block;}
.clear{clear:both;}
ol{-webkit-margin-before:1em;-webkit-margin-after:1em;-webkit-margin-start:0px;-webkit-margin-end:0px;-webkit-padding-start:40px;}
#gridsystem{position:fixed;top:0;left:50%;margin:0 0 0 -470px;width:940px;height:5000px;z-index:1000;}
/*h1, h2{margin:0 0 15px 0;}
h2, h2 *{line-height:18px;font-size:26px;}
h2{padding-top:6px;padding-bottom:6px;}
h3{font-size:14px;line-height:24px;}*/


/* Font sizes */
body {
    font-size: 0.875em;
}

h1,
.gui-page-title {
    font-family: "Merriweather", serif;
    font-size: 3em;
    font-weight: normal;
}

h2 {
    font-family: "Merriweather", serif;
    font-size: 2em;
    font-weight: normal;
}

h3 {
    font-size: 1.625em;
    font-weight: normal;
}

h4 {
    font-size: 1.25em;
}

h5 {
    font-size: 1.125em;
}

h6 {
    font-size: 1em;
}


h2.border, h4.border{border-bottom:1px solid #DDD;}
.ellipsis{white-space:nowrap;overflow:hidden;text-overflow:ellipsis;}


.usp-list, .arrow-list {list-style: none;margin-left: 0;}
.usp-list li {padding-left:30px; position:relative;margin-bottom:14px;}
.usp-list svg {width:20px; height:20px;position:absolute;left:0;top:3px;}
.usp-list small {display:block;font-size:0.875em}

.arrow-list li {padding-left:20px; position:relative; margin-bottom:8px;}
.arrow-list svg {width:13px;height:9px;position:absolute;left:0;top:3px;}
.footer .arrow-list li{margin-bottom:0;}
.footer .arrow-list svg{top:9px;}

.collection-options-mode .icon {
    background: rgba(0, 0, 0, 0) url("grid-list.png") no-repeat scroll 0 -29px;
    display: inline-block;
    height: 28px;
    width: 20px;
    transition: all 0.3s ease 0s;
}
.icon.button-grid.active,.icon.button-grid:hover{background-position: 0 0;}
.icon.button-list{background-position: -26px -29px;}
.icon.button-list.active,.icon.button-list:hover{background-position: -26px 0px;}
.icon{position:relative;background-repeat:no-repeat;background-position:center left;}
.icon .icon-icon{position:absolute;left:0;top:50%;display:block;background-repeat:no-repeat;background-position:center;}
.icon.icon-10 .icon-icon{height:10px;margin-top:-5px;width:10px}
.icon.icon-16 .icon-icon{height:18px;margin-top:-8px;width:20px;}
.icon.icon-10 .icon-icon-add{background-image:url(icon-10-add.png);}
.icon.icon-10 .icon-icon-edit{background-image:url(icon-10-edit.png);}
.collection-options-mode a.icon.icon-16{padding:0 !important;width:25px;height:20px;float:left;}
.collection-options-mode .icon.icon-16 .icon-icon:before{color:#ccc;}
.collection-options-mode .icon.icon-16.active .icon-icon:before{color:#000;}
.button-grid{margin-right:2px;}
.grid-4.rss-links{margin-top:15px;}
.footer h4{font-size:14px;font-weight:bold;line-height:15px;padding-bottom:18px;/*text-transform:uppercase; */position: relative;}
.grid .grid-4{float:left;width:14.8%;margin-right:80px;padding:0 0 0 27px;}
.grid .grid-4-first, .grid .grid-4-last{padding:0;width:20%;}
.grid .grid-4.grid-4-last{margin-right:0;width:25.8%;}
.grid .grid-5 {
    box-sizing: border-box;
    float: left;
    width: 17%;
    margin: 0;
    padding: 0;
}
.grid .grid-5.grid-5-last {
    width: 32%;
}
.aanbieders a {
    display: block;
}
.aanbieders a img {
    width: 100%;
    max-width: 175px;
}
.color-green{color:#a4bb54;}
.color-red{color:#bb5465;}
.color-primary{color:#187EA2;}
.color-secondary{color:#0489e6;}
.breadcrumbs{margin-bottom:15px;}
.image img{max-width:100%;height:auto;}
.wrapper_inner , .container-inner, .sub-banner{margin:0 auto;width:1200px;}
.template-collection {padding-bottom: 30px;}
.sub-banner{margin:0 auto 71px;}
.sub-banner a{display:flex;}
.wrapper.layout-fixed{width:1200px;margin:20px auto;border-radius:3px;background:#fff;}
header {position: relative; z-index: 99;}
header .header-top{width:100%;}
.header-top .left{float:left;}
.header-top .right{float:right;margin:45px 0 0;text-align:right;}
.header-top .right p{clear:both;margin-top:10px;float:right;}
span.main_logo{float:left;padding:17px 0 0; margin:0;display:block;}
.layout_two span.main_logo{padding:39px 0;}
.header a.logo{float:left;display:block}
.header a.logo svg{display:block;width:276px;height:34px;}
.shop-beauty .header a.logo svg, .shop-monster .header a.logo svg{width:100px;height:80px; margin-top: -15px; margin-bottom: -10px;}
.search_toggle::before{content:"\f002";font-family:fontawesome;position:absolute;z-index:9;left:0;right:0;}
.music .header .cart .total-length{border:medium none;border-radius:50%;line-height:20px;padding:0 5px;position:absolute;right:-11px;top:-9px;}
.header.layout_two .cart > a{border-radius:50%;height:34px;text-align:center;width:34px;position:relative;}
.header.layout_two .cart{margin:6px 0 0 10px;}
.header.layout_two .topnav{margin:6px 0 0 0px;}
.search_toggle{border-width:1px;border-style:solid;border-radius:50%;height:34px;line-height:34px;text-align:center;width:34px;position:relative;z-index:9; cursor: pointer;}
.header-cms{display:inline-block;margin:10px 0 0;text-align:left;}
.header-center .wrapper_inner.clearfix{text-align:center;margin:35px auto;position:relative;}
.header-cms .block_content span{display:block;}
.header-cms .service-text{font-size:15px;margin-bottom:6px;}
.header-cms .description{font-size:13px;line-height:5px;}
.header-cms .block1, .header-cms .block2, .header-cms .block3{display:inline-block;}
.header-cms .block2{padding:0 30px;}
.header-cms .block_content{float:right;padding-left:15px;}
.header-cms svg { display: block; float:left; height:40px; width:40px; }
header.layout_two .header-bottom .categories .topnav .search{border-style:solid;border-width:1px;margin:0;padding:0;position:absolute;right:0;top:0;width:0px;z-index:1;background:none;border-color:transparent;border-radius:20px;overflow:hidden;}
header.layout_two .header-bottom .categories .topnav .search.open{width:260px;transition:width 1s ease 0s;padding:5px 15px;}
header.layout_two .header-bottom .categories .topnav .search input{width:0px;}
header.layout_two .header-bottom .categories .topnav .search.open input{width:210px;}
.header .topnav .search{border-width:1px;border-style:solid;margin:9px 0;padding:3px 0 3px 8px;width:239px;}
.game .header .topnav .search{margin:13px 0;padding:5px 55px 5px 10px; width:212px; box-shadow: 0 0 7px 0 rgba(0, 0, 0, 0.46) inset; height: 29px;}
.game .searchbutton{height: 32px; width: 46px; padding: 8px 0 0; top: 14px;}
.topnav .search.tui input{background:none;border:medium none;display:inline-block;float:none;font-size:16px;font-style:italic;padding:0;text-shadow:none;width:205px;}
.music .search_toggle.open::before{content: "\f00d"; font-size: 18px; font-style:normal;}
.searchbutton{display:inline-block;height:27px;position:absolute;right:0;text-align:center;top:10px;width:28px;border-right-width:1px;border-right-style:solid;}
.searchbutton i{font-size:14px; top: 2px;position: relative;}
header .searchbutton { cursor:pointer; }
.header .topnav .autocomplete{width:245px;padding:10px;position:absolute;right:0px;top:100%;background:#FFF;border:1px solid #DDD;z-index:300;display:none;}
.header .topnav .autocomplete .arrow{
    position:absolute;left:50%;top:-10px;width:0;height:0;
    transform: translateX(-50%);
    border: 10px solid transparent;
    border-top-width: 0;
    border-bottom-color: #fff;
    /*background:url(dropdown-arrow.png) 10px 0 no-repeat;*/
}
.header .topnav .title{font-weight:bold;color:#999999;height:18px;padding:10px;border-bottom:1px solid #eee;background:rgba(0, 0, 0, 0.025);}
.header .topnav .autocomplete .more{padding:10px 10px 0;border-top:1px solid #eee;}
.header .topnav .autocomplete .more a{padding-left:13px;background-image:url(list-bullet.png);background-position:left -2px;background-repeat:no-repeat;font-size:12px;}
.header .topnav .autocomplete .more span{color:#999;}
.header .topnav .autocomplete .notfound{padding:15px 10px;text-align:center;font-weight:bold;font-size:12px;display:none;}
.header .topnav .autocomplete.noresults .products,
.header .topnav .autocomplete.noresults .more{display:none;}
.header .topnav .autocomplete.noresults .notfound{display:block;}
.header .shopnav{text-align:right;}
.header .shopnav p{margin-bottom:9px;text-align:right;float:left;}
.header .shopnav p a{color:#0489e6;}
.header .shopnav p a:hover{text-decoration:underline;}
.tm_headerlinks_inner{display:none;}
.tm_headerlinkmenu{float:right;padding:5px 0;}
.header-links.tui-dropdown{border:medium none;display:block;list-style:none;margin-top:0;padding:0;}
.headertoggle_img{display:none;}
.headertoggle_img i{font-size:18px;margin:2px 0 0 5px;}
.headertoggle_img{cursor:pointer;float:none;height:18px;margin:0 auto;width:20px;}
.header-links li a,.tui-language span,.currency span{font-size:13px;/*letter-spacing:1.5px;*/}
.currency span{padding-left:17px;}
.header-links li{display:inline-block;border:none;float:none;margin:0 15px 0 0;}
.header-links li a{padding-left:6px; text-transform: capitalize;font-weight:300}
.header-links li a.register{padding:0;}
.header-links li.account:before,.header-links-responsive li.account:before{content:"\f007";font-family:fontawesome;}
.header-links li.wishlist:before,.header-links-responsive li.wishlist:before{content:"\f022";font-family:fontawesome;}
.header-links li ul li{padding:0px;}
.header-links li.last{margin:0;}
.header-links li.checkout:before,.header-links-responsive li.checkout:before{content:"\f064";font-family:fontawesome;}
.topnav .search.tui input {margin-bottom:0;outline:none;}
.mobile-usp{display:none;font-size:12px;}
.mobile-usp a{margin:0 8px 0 10px;}
.mobile-usp a:first-of-type{margin-left:0;}
.mobile-usp a:last-of-type{margin-right:0;}
.mobile-usp sup {font-size: 0.7em;vertical-align: top; margin-left: 1px;}
.desktop-usp {display:none; font-size:12px; line-height: 26px; padding: 5px 0 5px 25px; position: relative;}
.desktop-usp .ico {position: absolute;left: 0;top: 8px;}
.desktop-usp svg {display:inline-block; width: 15px; height: 15px;}
.header-links{margin-bottom:0;}
.header-links svg.icon { width: 10px; height: 12px; margin-right: 10px; }
.header-links .service svg.icon { width: 12px; height: 10px; transform: translateY(1px); }
.header-links .fa-lock + a svg.icon { transform: translateY(1px); }
.header-links li.account:before, .header-links li .fa-lock { display: none; }
.language_block{float:left;padding:5px 0px;position:relative;}
.mainbanner{margin-top:0px;position:relative;}
.slider-bottom-cms{width:100%;overflow:hidden;position:relative;}
.slider-bottom-cms .slider-item, .slider-bottom-cms .product-items{float:left; vertical-align: top; }
.slider-bottom-cms .product-items{width: 317px;}
.slider-bottom-cms .product-items.first_item_tm{clear: left;}
.slider-bottom-cms .cms-block {
    display: inline-block;
    float: none;
    padding: 32px 30px 24px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}
.slider-bottom-cms .cms-block .left {
    display: inline-block;
    float: none;
    margin-left: 0;
}
.slider-bottom-cms .cms-block .right {
    display: inline-block;
    float: none;
    /*margin-left: 36px;*/
    padding-top: 14px;
    /*text-align: left;*/
    width: 100%;
}
.slider-bottom-cms .cms-block .right .button{display:none;margin:14px 0 0px;}
.slider-bottom-cms .cms-block:hover .right .button{display:block; margin-top:9px;}
/*.slider-bottom-cms .cms-block:hover .left,.slider-bottom-cms .cms-block:hover .right .text{display:none;}*/
.slider-bottom-cms .cms-block:hover .title{display:none;}
.slider-bottom-cms .customNavigation{width:100%;top:60%;display:none;}
/*.slider-bottom-cms:hover .customNavigation{display:block;}*/
.slider-bottom-cms .customNavigation a{top:-17px;width:auto;height:auto;border:none;}
.slider-bottom-cms .customNavigation a:hover{border:none;}
.slider-bottom-cms .customNavigation a.prev::before, .slider-bottom-cms .customNavigation a.next::before{content:none;}
.slider-bottom-cms .customNavigation a.prev{left:10px;right:auto;}
.slider-bottom-cms .customNavigation a.next{right:10px;left:auto;}
.slider-bottom-cms .customNavigation a i{font-size:20px;}
.slider-bottom-cms .cms-block:hover .right .button{display:inline-block;}
.slider-bottom-cms .cms-block .right .button{/*border-width:1px;border-style:solid;*//*font-size:13px;line-height:20px;*//*letter-spacing:1.5px;*//*padding:7px 16px;text-transform:capitalize;*/}
.slider-bottom-cms .cms-block:hover .right{float:none;margin:0 auto;padding:0;text-align:center;width:90%;}
.slider-bottom-cms .cms-block .right .title a{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;width:100%;display:inline-block;}
.layout_two .header-bottom nav{float:right;margin:30px 0 0;}
.headerbottom .wrapper_inner{position:relative;}
.header .cart{float:right;z-index:999;position:relative;margin:0;left:auto;top:auto;}
.game .header .cart{margin-top: 6px;}
.header .cart a{display:block;line-height:24px;font-weight:normal;border-width:1px;border-style:solid;font-size:13px;/*letter-spacing:0.5px;*/}
.header .cart .title{border-bottom:1px solid;display:block;padding:4px 21px 4px 48px;text-align:center;}
.header .cart .total-length{border-right-width:1px;border-right-style:solid;display:inline-block;padding:2px 16px;}
.header .cart .total-price{display:inline-block;padding:2px 16px;}
.header .cart i{display:block;float:left;width:34px;height:34px;background:url("cart.png") no-repeat scroll 8px 10px transparent;}
.header .cart a small{display:block;float:left;padding:0;font-size:15px;font-weight:normal;}
.header .cart a strong{float:left;display:block;color:#187EA2;font-size:20px;padding:6px;margin:-6px -6px 0 4px;}
.header .cart .contents{position:absolute;opacity:0;top:100%;right:0px;z-index:1000;height:auto;width:240px;background:white;border:1px solid #DDD;z-index:1000;padding:10px;transform:scale(0, 0);transition:all 0.3s ease 0s;transform-origin:90% 20% 0;text-align:left;}
.header .cart.hover .contents{opacity:1;transform:scale(1, 1);transition:all 0.3s ease 0s;}
.header .cart .contents .arrow{height:7px;position:absolute;right:10px;top:-7px;width:12px;}
.header .cart .contents .sum{border-top:1px solid #eee;padding:7px;text-align:right;}
.header .cart .contents .buttons{border:none;padding:10px 0 3px;text-align:right;}
.header .cart .contents .buttons a{display:inline-block;padding-left:15px;line-height:18px;margin:0 1px 5px 5px !important;font-size:12px;}
.messages{margin:0 auto 20px auto;font-size:12px;font-weight:bold;}
.messages ul{margin:0 0 15px 0;padding:5px 5px 5px 26px;color:#3B5998;text-shadow:0 1px #FFFFFF;background:#ECEFF5;border:1px solid #3B5998;}
.gui-messages ul{padding:5px 5px 5px 26px;margin-bottom:10px;color:#3B5998;text-shadow:0 1px #FFFFFF;list-style-type:none;background:#ECEFF5;border:1px solid #3B5998;border-radius:5px;}
body .gui-form .gui-message { background:none; position:relative; text-indent: 20px }
.gui-form .gui-message:before, .gui-messages ul.gui-error:before { content:'!'; position:absolute; background-color:#C80805; text-align: center;width: 14px;height: 14px;text-indent: 0;line-height: 15px;font-size: 10px;color: #fff;border-radius: 50%; }
.gui-form .gui-message:before{top:50%;left: 0;transform:translateY(-50%);}
.gui-messages ul.gui-error:before {top:8px;left: 6px;}
.gui-messages ul.gui-error
.messages ul.error{color:#DD3C10;background:#FCECE8;border-color:#DD3C10;}
.messages ul.success{color:#609946;background:#EFF5ED;border-color:#609946;}
.messages ul.warning{color:#E2C822;background:#FCFAE9;border-color:#E2C822;}
.box-border{height:10px;/*background:url(border-none.png) repeat-x;*/position:absolute;left:0;right:0;z-index:50;}
.border-shadow-light .box-border{background-image:url(border-shadow-light.png);}
.border-shadow-dark .box-border{background-image:url(border-shadow-dark.png);}
.box-border.box-border-top{top:0;background-position:top left;}
.box-border.box-border-bottom{bottom:0;background-position:bottom left;}
.heading .container{margin:0 auto;position:relative;}
.heading .container .breadcrumbs{font-size:12px;}
.heading .container .breadcrumbs a{color:#103E47;}
.heading .container .breadcrumbs a:hover{color:#0489e6;}
.heading h1{color:#187EA2;clear:both;margin-bottom:10px;line-height:40px;font-size:20px;font-weight:normal;}
.categories .wrapper_inner{display:inline-block;}
.categories .category{float:left;margin:10px 4px;padding:8px 5px;width:30.9%;text-align:center;}
.categories .category:hover{box-shadow:0 0 4px rgba(0, 0, 0, 0.18);-moz-box-shadow:0 0 4px rgba(0, 0, 0, 0.18);-webkit-box-shadow:0 0 4px rgba(0, 0, 0, 0.18);}
.categories .category img{background:url("drop-shadow.jpg") no-repeat scroll center bottom transparent;padding:0 0 10px;}
.textpage{width:940px;margin:0 auto;}
.wysiwyg{overflow:hidden;line-height:24px;}
.wysiwyg.wysiwyg-margin{margin-bottom:15px;text-align:justify;}
.wysiwyg p{margin-bottom:15px;}
.wysiwyg ul{padding-left:18px;margin-bottom:15px;}
.collection-pagination + .wysiwyg, .collectionProductsContainer + .wysiwyg { border-top: 1px solid #dddddd;margin-top: 10px;padding-top: 30px;}
.sidebar .sidebar-side , .gui-col2-left .gui-col2-left-col1 , .gui-col2-right .gui-col2-right-col2{width:21%;margin-right:3%;}
.sidebar .sidebar-main , .gui-col2-left .gui-col2-left-col2 ,.gui-col2-right .gui-col2-right-col1{padding:0px;width:76%;}
.shop-beauty #gui-form .gui-col2-right-col2, .shop-beauty #gui-form .gui-col2-right-col1 { width: 47%; }
.shop-beauty #gui-form .gui-col2-right-col2 iframe, .shop-beauty #gui-form .gui-col2-right-col1 iframe { max-width: 100%; }
.sidebar.sidebar-left .sidebar-side,
.sidebar.sidebar-right .sidebar-main,
.gui-col2-right .gui-col2-right-col2,
.gui-col2-left .gui-col2-left-col1{float:left;}
.sidebar.sidebar-left .sidebar-main,
.sidebar.sidebar-right .sidebar-side,
.gui-col2-right .gui-col2-right-col1,
.gui-col2-left .gui-col2-left-col2{float:right;}
.sidebar-box , .gui-col2-left-col1 .gui-block , .gui-col2-right .gui-col2-right-col2 .gui-block{clear:both;padding:0px;margin-bottom:48px;position:relative;}
.sidebar-box:last-child{border-bottom:none;}
.sidebar-box.sidebar-box-dark{background:#F5F5F5;border-bottom:none;padding:15px;border-radius:5px;}
.sidebar-box h2 ,.gui-col2-left-col1 .gui-block .gui-block-title, .gui-col2-right .gui-col2-right-col2 .gui-block .gui-block-title{border:none;font-size:14px;font-weight:700;padding:11px 15px 9px;text-transform:uppercase;margin:0px 0 22px;background:#000;color:#fff;}
.sidebar-box.recent h2{background:#f2f2f2;color:#000;}
.sidebar-box.recent h2 a{display:none;}
#gui-wrapper .gui-block-title strong {color:inherit;font-weight:inherit;}
.ie8 .sidebar-box h2 ,.ie8 .gui-col2-left-col1 .gui-block .gui-block-title,.ie8 .gui-col2-right .gui-col2-right-col2 .gui-block .gui-block-title,
.ie9 .sidebar-box h2 ,.ie9 .gui-col2-left-col1 .gui-block .gui-block-title,.ie9 .gui-col2-right .gui-col2-right-col2 .gui-block .gui-block-title{border-bottom:1px solid #e8e7e7;}
.right-banner img{display:block;margin:0 auto;text-align:center;}
.sldebox-content , .gui-col2-left-col1 .gui-block-content{padding:0 15px;}
.sidebar-box.sidebar-box-dark h2{color:#999;}
.sidebar-box h2 a{float:right;font-size:13px;font-weight:normal;line-height:17px;/*letter-spacing:normal;*/}
.sidebar-box-link{margin-top:-10px;padding-bottom:5px;padding-top:5px;text-align:right;border-top:1px solid #dddddd;}
.sidebar-box a.bullet{padding-left:10px;background:url(list-bullet.png) top left no-repeat #0489e6;}
.sidebar-box .sidebar-box-filter{margin-bottom:25px;}
.sidebar-box .sidebar-box-filter h4{color:#000;font-size:13px;font-weight:bold;/*letter-spacing:1.5px;*/padding-bottom:15px;text-transform:uppercase;}
.sidebar-box .sidebar-box-filter select{width:190px !important;}
.sidebar-box.sidebar-box-filter{border-radius:5px;border-bottom:none;padding:10px 15px;background:#F5F5F5;box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.1);-webkit-box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.1);-moz-box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.1);}
.sidebar-box-filter-filter{border-top:1px solid #ddd;padding-top:10px;margin-top:5px;}
.sidebar-box-filter-filter select{width:180px !important;}
.sidebar-box ul{list-style:none;margin-bottom:0px;}
.sidebar-box ul li{padding:0;}
/*.sidebar-box ul li .arrow{float:left;height:14px;width:12px;background:url("arrow.png") no-repeat scroll 0px 6px transparent;}*/
/*.sidebar-box ul li:hover > .arrow ,
.sidebar-box ul ul li:hover > .arrow ,
.sidebar-box ul ul ul li:hover > .arrow{background:url("arrow-hover.png") no-repeat scroll 0px 6px transparent;}*/
.gui-block-linklist li a , .gui-list ul li a{/*background:url("arrow.png") no-repeat scroll 0px 10px transparent;*/padding:4px 0 4px 12px;display:block;}
/*.gui-block-linklist li a:hover , .gui-block-linklist li.gui-active a , .gui-list ul li a:hover{background:url("arrow-hover.png") no-repeat scroll 0px 10px transparent;}*/
.sidebar-box ul li a span{color:#777777;font-weight:normal;}
.sidebar-box ul ul{margin-bottom:0;padding-left:10px;}
.sidebar-filter-item input[type="checkbox"]{margin:3px 5px 3px 0 !important;}
.sidebar-filter-item label{font-size:13px;height:22px !important;line-height:22px !important;font-weight:normal !important;width:165px !important;}
.sidebar-filter-item label span{color:#999;font-weight:normal;font-size:12px;}
.sidebar-box ul.tagcloud{margin:0;}
.sidebar-box ul.tagcloud li{margin:0 7px 7px 0;}
.sidebar-sort-wrapper h2,.sidebar-filter-wrapper h2{font-size: 14px;font-weight: 700;padding: 11px 15px 9px;text-transform: uppercase;margin: 0px 0 22px;background: #000;color: #fff;}
.sidebar-sort-wrapper{display:none;}
.productpage h1 {
    float: right;
    width: 56%;
}
.template-product h1, .productpage h1 {font-size:40px;line-height:1.4em;}
.productpage .productpage-images{float:left;width:41%;margin-right:20px;}
.productpage .productpage-images-featured{cursor:pointer;cursor:-moz-zoom-in;cursor:-webkit-zoom-in;border:1px solid #eee;}
.productpage .productpage-images-featured img{display:block;width:100%;height:auto;}
.productpage-images-thumbs{list-style:none;margin:0 0 0 0px;display:block;}
.productpage-images-thumbs li{border: 1px solid #e5e5e5; float:left; padding: 5px;}
.additional-carousel{margin:20px 0 0;position:relative;text-align:center;}
.block.carousel{position:relative;}

#additional-carousel.product-carousel .slider-item .product-block{margin:5px 0px;}
a.fancybox-thumb{display:block;}
.productpage-images-thumbs li img{cursor:pointer;cursor:-moz-zoom-in;cursor:-webkit-zoom-in;}
.ie8 .productpage-images-thumbs li img ,
.ie9 .productpage-images-thumbs li img{border:1px solid #E7E7E7;}
.productpage .product-info{float:right;width:56%;position:relative;}
.product-info h1{color:#000;font-weight:bold;margin-bottom:10px;padding-bottom:10px;}
.productpage .product-info ul,
.productpage .product-info ol {
    list-style: disc outside;
}
.productpage .product-info .usp-list{list-style:none}
.productpage .product-info .description{padding-bottom:40px;}
.productpage .product-info .rating { margin-bottom: 25px;}
.productpage .product-info .usps { background-color: #f2f2f2; padding: 1.2em 1.2em 0.5em; overflow auto; margin: 3em 0 0; }
.productpage .product-info .rating .score{margin-right:10px;}
.productpage .product-info .pricing .price{font-size:30px;text-align:left;margin-bottom:10px;font-weight:500;}
.productpage .product-info .pricing .price.price-len5{font-size:18px;}
.productpage .product-info .pricing .price.price-len6{font-size:18px;}
.productpage .product-info .pricing .price.price-len7{font-size:18px;}
.productpage .product-info .pricing .price.price-len8{font-size:18px;}
.productpage .product-info .pricing .price.price-offer .border{padding-top:10px;}
.productpage .product-info .pricing .price span.price-old{line-height:16px;padding-bottom:10px;font-size:14px;font-weight:normal;color:#6c6c6c;}
.productpage .product-info .pricing .price span.price-old .price-number{text-decoration:line-through;}
.productpage .product-info .pricing .price span.currency{line-height:16px;font-size:18px;padding-top:8px;letter-spacing:normal;text-transform:lowercase;}
.productpage .product-info .pricing .price-tax{padding:0px;text-align:left;font-size:12px;}
.productpage .product-info .details{font-size:14px;display:block;margin-bottom:30px;}
.productpage .product-info .details .pricing{margin-bottom: 20px;}
.productpage .product-info .details .product-discounts{font-weight:bold;margin-bottom:10px;}
.productpage .product-info .details .product-discounts span{width:100%;margin-bottom:7px;display:block;}
.productpage .product-info .details dt{clear:left;width:25%;float:left;margin:0;font-weight:bold;}
.productpage .product-info .details dd{width:50%;float:left;margin-bottom:7px;}
.productpage .product-info .details .availability span { display: inline-block; position: relative; }
.productpage .product-info .details .availability span::after,
.productpage .product-info .details .availability span::before {
    height: 15px;
    width: 15px;
    display: block;
    content: '';
    position: absolute;
    top: 2px;
    border-radius: 20px;
}
.productpage .product-info .details .availability span::before { right: -30px; }
.productpage .product-info .details .availability span::after { right: -50px; }
.productpage .product-info .details .availability .color-green::before,
.productpage .product-info .details .availability .color-green::after {
    background-color: #a4bb54;
}
.productpage .product-info .details .availability .color-red::before,
.productpage .product-info .details .availability .color-red::after {
    background-color: #bb5465;
}
.productpage .product-info .share{margin-bottom:20px;padding:15px 0 5px 0;border-top:1px solid #EEE;border-bottom:1px solid #EEE;}
.productpage .product-info .share .rating{margin-right:120px;padding:5px 10px 20px 10px;text-align:center;}
.productpage .product-info .share .rating .stars{width:80px;height:16px;background:url(icon-16-stars.png) 0px 0px repeat-x;margin:0 3px 9px 0;display:inline-block;vertical-align:bottom;}
.productpage .product-info .share .rating .stars-percent{width:100%;height:16px;background:url(icon-16-stars.png) 0px -16px repeat-x;display:inline-block;float:left;}
.productpage .product-info .share .rating .score{margin-bottom:9px;display:inline-block;height:16px;line-height:16px;font-size:13px;font-weight:bold;}
.productpage .product-info .share .rating .score .total{color:#999999;font-weight:normal;font-size:12px;}
.productpage .product-info .share .rating .score .total a{color:#999999;}
.productpage .product-info .share .rating .score .total a:hover{color:#0489e6;}
.productpage .product-info .share .rating .button-review{color:#187EA2;}
.productpage .product-info .share .rating .button-review:hover{color:#0489e6;}
.productpage .product-info .share .social{max-width:260px;min-height:30px;text-align:left;}
.productpage .product-info .share .social .social-block{margin:5px 0;}
.productpage .product-info .share .social .social-block.social-block-facebook{display:inline-block;width:82px;height:20px;vertical-align:bottom;}
.productpage .product-info .share .social .social-block.social-block-google{display:inline-block;width:66px;height:20px;vertical-align:bottom;}
.productpage .product-info .share .social .social-block.social-block-pinterest{display:inline-block;width:45px;height:20px;vertical-align:bottom;}
.productpage .product-info .share .social .social-block.social-block-twitter{display:inline-block;width:94px;height:20px;vertical-align:bottom;}
.productpage .product-info .share .social .social-block.social-block-addthis{display:inline-block;width:20px;height:16px;padding:2px 0;vertical-align:bottom;}
.product-info .buy{text-align:left;}
.product-info .quantity{border:1px solid #e4e4e4;background:#fff;height:36px;float:left;width:61px;margin-right:10px;}
.product-info .quantity.hover{border-color:#999;}
.product-info .quantity input{height:100%;width:40px;border:none;background:transparent;font-size:14px;text-align:center;line-height:36px;display:block;float:left;/*padding:8px 5px;*/color:#777;}
.product-info .quantity .change{float:left;width:19px;border-left:1px solid #DDD;height:100%;}
.product-info .quantity.hover .change{border-left:1px solid #999;}
.product-info .quantity .change a{display:block;width:20px;height:18px;text-align:center;text-indent:-9999px;background:url(quantity.png) no-repeat;}
.product-info .quantity .change a.up{background-position:0px -1px;}
.product-info .quantity .change a.down{background-position:0px -22px; border-top:1px solid #e4e4e4; height:17px;}
.product-info .quantity .change a:hover{background-color:#DDD;}
.product-info .buy .add span{display:inline-block;font-size:15px;height:30px;line-height:30px;padding:0 15px;text-transform:capitalize;}
.product-info .buy .add span i{margin-right:10px;}
.product-info .buy .add-outofstock{display:inline-block;height:36px;padding:3px;background:#187EA2;border-radius:4px;-webkit-border-radius:4px;-khtml-border-radius:4px;-moz-border-radius:4px;}
.product-info .buy .add-outofstock span{display:inline-block;border:1px solid rgba(255, 255, 255, 0.4);padding:0 15px;height:34px;line-height:34px;font-size:16px;text-transform:uppercase;border-radius:2px;}
.product-info .buy .add-outofstock:hover span{border:1px solid rgba(255, 255, 255, 0.8);}
.product-info .actions{clear: both;text-align:left;margin-top:40px; margin-bottom:10px;}
.addthis_toolbox{margin:10px 0}
.product-info .actions a{margin:0 15px 0 0;padding:0 !important;font-sie:14px;}
.product-info .actions a i{margin-right:8px;}
.productpage .reviews .write{text-align:right;}
.productpage .reviews .write .stats{float:left;}
.productpage .reviews .review{margin-bottom:15px;border-bottom:1px solid #EEEEEE;}
.productpage .reviews .review p{margin-bottom:15px;}
.productpage .reviews .review .rating{float:right;}
.productpage .reviews .review .rating .stars{width:80px;height:16px;background:url(icon-16-stars.png) 0px 0px repeat-x;margin:0 3px 9px 0;display:inline-block;vertical-align:bottom;}
.productpage .reviews .review .rating .stars-percent{width:100%;height:16px;background:url(icon-16-stars.png) 0px -16px repeat-x;display:inline-block;float:left;}
.productpage .reviews .review .rating .score{margin-bottom:9px;display:inline-block;height:16px;line-height:16px;font-size:13px;font-weight:bold;}
.productpage .reviews .review .author{font-weight:bold;}
.productpage .reviews .review .author .date{color:#999999;font-weight:normal;font-size:12px;}
.productpage .tabs{margin:60px 0 30px;text-align:center;}
.tabs-holder{text-align:left;}
.productpage .tabs ul.tabs-tabs{list-style:none;border-bottom-width:2px;border-bottom-style:solid;border-bottom-color:#000;overflow:hidden;}
.productpage .tabs ul.tabs-tabs li{padding-right:5px;float:left;}
.productpage .tabs ul.tabs-tabs li a{display:block;font-weight:bold;line-height:18px;text-transform:uppercase;padding:14px 15px;text-align:center;font-size:15px;border-bottom-width:3px;border-bottom-style:solid;border-bottom-color:transparent;}
.ie8 .productpage .tabs ul.tabs-tabs li,.ie9 .productpage .tabs ul.tabs-tabs li{background-color: #fff;}
.ie8 .productpage .tabs ul.tabs-tabs li.ui-tabs-active,.ie9 .productpage .tabs ul.tabs-tabs li.ui-tabs-active{background-color: #000;}
.productpage .tabs ul.tabs-tabs li.ui-tabs-active a{color:#fff;}
.productpage .tabs-content{padding:15px 5px;margin-top:0px;line-height:24px;/*letter-spacing:1.2px;*/}
.productpage .tabs-content h4{line-height:30px;}
.productpage .tabs-content.ui-tabs-hide{display:none;}
.productpage .tabs-content td.spec-title{padding-right:10px;}
.productpage .related{margin:75px 0 20px;width:100%;}
.brands-container{padding:0px;position:relative;}
.brand-slider #brand-carousel .product-block{margin:0px;padding:0px;text-align:center;}
.brands-container{margin-bottom:10px;margin-left:-10px;}
.brands-container ul{list-style:none outside none;}
.brands-container ul li:hover{border-color:#e3e3e3;}
.brands-container ul li img{margin:0px;}
.brands a.prev,
.brands a.next{display:block;width:30px;height:30px;background:#F00;position:absolute;top:16px;text-indent:-9999px;background:url(sprite.png) no-repeat;}
.brands a.prev:hover{background-position:1px -10px;}
.brands a.next:hover{background-position:-30px -12px;}
.brands a.prev{left:-40px;background-position:1px -54px;}
.brands a.next{right:-40px;background-position:-30px -56px;}
.headlines{height:350px;background:#E6F6FA;margin-bottom:30px;position:relative;}
.headlines .slides{position:relative;width:980px;margin:0 auto;overflow:hidden;height:387px;}
.headlines .slides-container{width:980px;height:387px;position:relative;}
.headlines .slides a.prev,
.headlines .slides a.next{display:block;position:absolute;width:48px;height:48px;background:url(slides-controls.png) no-repeat #187EA2;top:50%;z-index:50;border-radius:24px;text-indent:-9999px;opacity:0;-khtml-opacity:0;-webkit-opacity:0;-moz-opacity:0;-ms-filter:"progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";filter:alpha(opacity=0);border:2px solid white;}
.headlines .slides a.prev{left:0;margin:-24px 0 0 29px;background-position:0 0;}
.headlines .slides a.next{right:0;margin:-24px 29px 0 0;background-position:-48px 0;}
.headlines .slides a.prev:hover,
.headlines .slides a.next:hover{background-color:#0489e6;}
.slides ul{list-style:none;width:20000px;position:absolute;}
.slides ul li{float:left;}
.content{width:745px;float:left;}
/*.index h2 , .related h2 ,.bundle h2{font-size:30px;font-weight:normal;line-height:70px;padding:0px 0 14px;text-transform:uppercase;display:block;text-align:center;border-bottom-width:1px;border-bottom-style:solid;position:relative;/*letter-spacing:1.6px;*/}*/
.testimonial_main.container-inner > h2{margin-bottom:20px !important;}
/*.index h2:before , .related h2:before,.bundle h2:before{bottom:-15px;content:"";height:30px;left:48.3%;position:absolute;text-align:center;width:40px;}
.index h2::after, .related h2::after, .bundle h2::after{background:url("title-icon.png") no-repeat scroll 0 0 transparent;height:17px;width:36px;}
.index h2:before , .related h2:before , .index h2:after , .related h2:after,.bundle h2:after ,.bundle h2:before{content:"";display:table;line-height:0;}
.index h2:after , .related h2:after,.bundle h2:after{border-left:12px solid rgba(0, 0, 0, 0);border-right:12px solid rgba(0, 0, 0, 0);bottom:-9px;content:"";left:0;right:0;margin:0 auto;position:absolute;text-align:center;}*/
.ie8 .index h2 , .ie8 .related h2 ,
.ie9 .index h2 , .ie9 .related h2{border-bottom:1px solid #e8e7e7;}
.ie9 .index h2::after,.ie9 .related h2::after,.ie9 .bundle h2::after{background: none;}
/*.related h2,.bundle h2{padding-left:0;background:none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;-box-shadow:none;text-align:center;font-size:20px;padding-bottom:15px;}*/
.index .index-content p{padding:0 0 18px 0;}
.index .index-latest{margin:0 0 18px 0;}
.index .categories.clearfix{width:auto;}
.index .categories .category{width:180px;}
.left-banner,.right-banner{float:left;}
.right-banner{margin-left:20px;}
.right-top.banner, .left-top.banner{margin-bottom:20px;}
.subbanner1,.subbanner2, .subbanner3, .subbanner4, .subbanner5{float:left;}
.subbanner1,.subbanner5{transition:all 600ms ease 0s;-webkit-transition:all 600ms ease 0s;-o-transition:all 600ms ease 0s;-ms-transition:all 600ms ease 0s;-moz-transition:all 600ms ease 0s;}

.subbanner1:hover,.subbanner5:hover{transform:scale(1.08);-webkit-transform:scale(1.08);-moz-transform:scale(1.08);-ms-transform:scale(1.08);-o-transform:scale(1.08);}
.subbanner3{margin-left:20px;}
.subbanner2::before, .subbanner3::before, .subbanner4::before{
    background:linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0 transparent;
    background:-webkit-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0 transparent;
    background:-moz-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0 transparent;
    background:-ms-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0 transparent;
    background:-o-linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%) repeat scroll 0 0 transparent;
    content:"";
    display:block;
    height:100%;
    position:absolute;
    right:-75%;
    top:0;
    transform:skewX(-25deg);
    -webkit-transform:skewX(-25deg);
    -moz-transform:skewX(-25deg);
    -ms-transform:skewX(-25deg);
    -o-transform:skewX(-25deg);
    width:50%;
    z-index:2;
}
.subbanner2:hover::before, .subbanner3:hover::before, .subbanner4:hover::before{
    animation:1.25s ease 0s normal none 1 running fixedAnim;
    -webkit-animation:1.25s ease 0s normal none 1 running fixedAnim;
    -moz-animation:1.25s ease 0s normal none 1 running fixedAnim;
    -ms-animation:1.25s ease 0s normal none 1 running fixedAnim;
    -o-animation:1.25s ease 0s normal none 1 running fixedAnim;
}
@-webkit-keyframes fixedAnim{0%{right:125%;}125%{right:0;}}
@-moz-keyframes fixedAnim{0%{right:125%;}125%{right:0;}}
@keyframes fixedAnim{0%{right:125%}125%{right:0;}}
.subbanner2, .subbanner3, .subbanner4{background:#fff none repeat scroll 0 0;overflow:hidden;position:relative;}
.index .index-brands{margin:0 0 18px 0;height:80px;}
.index .index-brands .jcarousel_horizontal li{width:25%;}
.socialbar{margin-bottom:30px;padding:0px;position:relative;}
.socialbar.has_newsletterbar{margin-bottom:10px;}
.socialbar{margin:0 auto;}
.socialbar-container{padding:10px 20px;width:1010px;margin:0 auto;overflow:hidden;}
.border-shadow-light .socialbar.has_newsletterbar .box-border.box-border-bottom{/*background-image:url(border-none.png);*/}
.border-shadow-dark .socialbar.has_newsletterbar .box-border.box-border-bottom{/*background-image:url(border-none.png);*/}
.socialbar h4{border-color:#d9d9d9;}
.socialbar h4{padding:10px 0;text-indent:34px;background-position:left center;background-repeat:no-repeat;font-weight:normal;line-height:16px;font-size:16px;}
.socialbar .socialbar-blog h4{margin-bottom:10px;background-image:url(icon-24-blog.png);text-transform:uppercase;}
.socialbar .socialbar-twitter h4{background-image:url(icon-24-twitter.png);text-transform:uppercase;}
.socialbar .socialbar-facebook h4{background-image:url(icon-24-facebook.png);text-transform:uppercase;}
.socialbar .socialbar-blog , .socialbar .socialbar-twitter ,.socialbar .socialbar-facebook{width:320px;float:left;margin-right:20px;}
.socialbar .socialbar-blog .blog-article{margin-bottom:15px;}
.socialbar .socialbar-blog .blog-article h3{font-size:14px;font-weight:normal;line-height:18px;}
.socialbar .socialbar-facebook{margin-right:0 !important;}
.socialbar-blog-box, .socialbar-twitter-box , .socialbar-facebook-box{padding:10px 0;}
.socialbar .socialbar-twitter h2,
.socialbar .socialbar-facebook h2{margin-bottom:0;}
#newsletterbar{position:relative;}
.border-shadow-light #newsletterbar.has_socialbar .box-border.box-border-top{/*background-image:url(border-none.png);*/}
.border-shadow-dark #newsletterbar.has_socialbar .box-border.box-border-top{/*background-image:url(border-none.png);*/}
#newsletterbar label{font-size:13px;/*letter-spacing:1.3px;*/line-height:26px; width:100%;cursor:default;}
.subscribe-block > form{position:relative;display:inline-block;}
#newsletterbar input{border:medium none;float:left;height:33px;margin:6px 0 13px;padding:0 10px;width:93%;color:#999;}
.newsletter-box{clear:both;position:relative;margin-top:10px;float:left;width: 100%;}
/*.newsletter-box .btn{border-style:solid;border-width:1px;display:inline-block;font-size:11px;padding:4px 15px;text-transform:uppercase;}*/
.newsletter-box .btn{position:absolute;width:40px;height:40px;right:0;top:0;cursor:pointer;}
.newsletter-box .btn span{display:none;}
.newsletter-box .btn svg{width:13px;height:9px;fill:#fff;position:absolute;left:50%;top:50%;transform:translateX(-50%) translateY(-50%); }
#newsletterbar input{width:100%;height:40px;margin:0;padding-right: 50px;box-sizing:border-box;}
#newsletterbar input:focus{outline:none;}
.social_block{float:left;}
.social_block ul li{display:inline-block;margin:0 8px 0 0px;position:relative;}
.social_block ul li i{border:2px solid #808080;border-radius:50%;height:5px;padding:8px;position:relative;width:5px;}
.social_block ul li i::before{font-size:12px;left:6px;position:absolute;right:0;top:0; line-height: 22px;}
.social_block .fa-facebook:before {left:7px;}
.footer{/*margin-top:10px;*/padding-bottom:0px;box-shadow:0 1px 0 0 #eeeeee inset;-moz-box-shadow:0 1px 0 0 #eeeeee inset;-webkit-box-shadow:0 1px 0 0 #eeeeee inset;}
.footer ul { margin-left:0; }
.footer .footer-top #tmfootercms_block .wrapper_inner{padding:0;border:none;}
.footer .footer-top .wrapper_inner{padding:72px 0 73px;overflow:hidden;border-bottom-width:1px;border-bottom-style:solid;}
.footer-bottom{width:100%;display:inline-block; position: relative;}
.footer .footer-bottom .wrapper_inner{padding:20px 0px 13px;text-align:center;position:relative;overflow:hidden;}
.footer-hallmarks h4 , .footer-tags h4{display:none;}
.footer .footer-nav.border{margin-top:25px;padding-top:25px;border-top:1px solid #EEE;}
.footer .footer-nav ul{list-style:outside none none;margin-top:13px;}
.footer .footer-nav ul li{font-size:13px;line-height:26px;}
.footer .footer-nav ul li.email{white-space:nowrap;}
.footer .footer-nav .grid-4-last ul li i{margin-right:10px;padding-top:8px;text-align:center;width:15px;float:left;}
.footer .footer-nav .grid-4-last ul li.email a:hover{padding-left:0px;}
.footer .footer-nav .grid-4-last ul li.email a{cursor:pointer;}
.footer-tags ul.tagcloud li{margin:0 2px 0 0;}
.footer-tags ul.tagcloud li a ,.footer-tags ul.tagcloud li a:hover{background:none}
.footer-hallmarks{margin:0 auto;padding:0px;float:left; clear: left;}
.footer-hallmarks li{list-style:none outside none;}
.footer-hallmarks ul li a img{max-height:40px;}
.footer .footer-tags{margin:10px auto 5px;padding-bottom:0px;}
.footer .footer-tags ul{margin:0;}
.footer .footer-tags ul li a{padding:0 10px 0 0;}
ul.tagcloud{text-align:justify;list-style:none;margin:-2px -2px -3px -3px;}
ul.tagcloud li{margin:2px 2px 3px 3px;float:left;}
ul.tagcloud li a{display:block;height:24px;color:#fff;background:url(tag.png) 0px 0px no-repeat #000;line-height:24px;font-size:13px;padding:0 15px 0 25px;overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.footer .footer-payment{overflow:hidden;}
.footer .footer-payment img{margin:5px 0 0 5px;}
.footer-copyright{float:left; white-space: nowrap;}
.bottom-copyright{display:inline-block;font-size:13px;margin:10px 0;padding:0;text-align:center; white-space: normal;}
.categories,
.products{position:relative;}
h1.category-title , h1.page_title,.aboutus h1{font-size:20px;font-weight:bold;}
.products.products-horizontal{}
.products.products-grid{width:700px;}
.categories .category h3 a{font-weight:normal;}
.categories .category p.description{display:block;text-align:center;line-height:16px;font-size:13px;margin:5px 0 0;}
.categories .category.hover p.description{display:block;}
.index .sidebar .sidebar-main{background:none;border:none;box-shadow:none;-moz-box-shadow:none;-webkit-box-shadow:none;padding:0;width:770px;margin-bottom:0;}
/*.featured-product , .new-product , .categories-product , .sidebar .sidebar-main , .socialbar-container,
.gui-page-content , .gui-col2-left .gui-col2-left-col2 ,.gui-col2-right .gui-col2-right-col1 , .gui-thankyou .gui-block ,
#gui-block-review .gui-section , .gui-compare,#popularproduct{margin-bottom:15px;}*/
.featured-product , .new-product , .categories-product ,.productpage .related,#popularproduct{position:relative;}
.game .new-product,.game .featured-product{margin:0 -22px;padding:70px 60px 52px;}
.gui-wishlist .gui-page-content{background:none;border:none;box-shadow:none;padding:0;}
#collectionProductsContainer #products-grid{padding:0px;margin:0 -22px;}
#products-grid{list-style:none outside none;margin:0;padding:10px;position:relative;width:100%;}
.categories-product .categories ,.gui-thankyou .gui-block , #gui-block-review .gui-section , .gui-compare{padding:10px;}
.categories-product .product-block,
.products.products-horizontal .product,
.products.products-grid .product ,
.product-carousel.products .product-block,
#brand-grid li{position:relative;z-index:9;}
.products.products-horizontal .product,
.products.products-grid .product,
.product-carousel .slider-item{width:240px;}
.categories-product .slider-item,
.categories-product .product-items{width:188px;float:left;}
#brand-grid li{list-style:none;}
/*#products-grid .product-block .product-block-inner{padding:0px;position:relative;}*/
.products.products-grid .product{width:318px;float:left;}
.products.products-horizontal .product.product-last,
.products.products-grid .product.product-last{margin-right:0;}
.categories-product .product-block img, .products.products-horizontal .product .product-block img, .products.products-grid .product .product-block img, .product-carousel.products .product .product-block img, .popular img{margin-bottom:0;/*transform:scale(1);-webkit-transform:scale(1);-ms-transform:scale(1);-o-transform:scale(1);-moz-transform:scale(1);transition:all 0.9s ease 0s;-webkit-transition:all 0.9s ease 0s;-moz-transition:all 0.9s ease 0s;-ms-transition:all 0.9s ease 0s;-o-transition:aall 0.9s ease 0s;*/max-width:100%;height:auto;width:100%;display:inline;
    /* position: absolute;
     top: 50%;
     transform: translateX(-50%) translateY(-50%);
     display: block;
     left: 50%;
     width: 100%;
     */
}
/*.categories-product .product-block .product-image, .products.products-horizontal .product .product-block .product-image, .products.products-grid .product .product-block .product-image, .popular .product-block .product-image, .products.products-list .list-left .product-image, .product-carousel.products .product .product-block .product-image{-webkit-transition: border-color 300ms; transition: border-color 300ms; border-width:8px;border-style:solid;}*/
.categories-product .product-block .product-image, .products.products-horizontal .product .product-block .product-image, .products.products-list .list-left .product-image, .product-carousel.products .product .product-block {-webkit-transition: border-color 300ms; transition: border-color 300ms;}
.products.products-grid .product .product-block:hover,
.popular .product-block:hover,
.product-carousel.products .product .product-block:hover,
.products.products-grid .product .product-block:hover .product-image,
.popular .product-block:hover .product-image,
.product-carousel.products .product .product-block:hover .product-image { -webkit-transition: border-color 300ms; transition: border-color 300ms; /*border-width:8px ;border-style:solid;*/ }
.products.products-grid .product .product-block, .popular .product-block, .product-carousel.products .product .product-block { cursor: pointer; position: relative;  }
.products.products-grid .product .product-block-inner, .popular .product-block-inner, .product-carousel.products .product .product-block-inner { padding-bottom: 50px; }
.products.products-grid .product .product-block-inner .price-old, .popular .product-block-inner .price-old, .product-carousel.products .product .product-block-inner .price-old {margin-top: 7px; margin-bottom: 5px; }
.products.products-grid .product .product-block a h3, .popular .product-block a h3, .product-carousel.products .product .product-block a h3 { color: #252525; }
.categories-product .product-block .product-image a, .products.products-horizontal .product .product-block .product-image a, .products.products-grid .product .product-block .product-image a, .popular .product-block .product-image a, .products.products-list .list-left .product-image a, .product-carousel.products .product .product-block .product-image a{ display: block; width: 70%; margin-left: auto; margin-right: auto;}
.shop-beauty .categories-product .product-block .product-image a, .shop-beauty .products.products-horizontal .product .product-block .product-image a, .shop-beauty .products.products-grid .product .product-block .product-image a, .shop-beauty .popular .product-block .product-image a, .shop-beauty .products.products-list .list-left .product-image a, .shop-beauty .product-carousel.products .product .product-block .product-image a,
.shop-monster .categories-product .product-block .product-image a, .shop-monster .products.products-horizontal .product .product-block .product-image a, .shop-monster .products.products-grid .product .product-block .product-image a, .shop-monster .popular .product-block .product-image a, .shop-monster .products.products-list .list-left .product-image a, .shop-monster .product-carousel.products .product .product-block .product-image a { width: auto; }
.products.products-grid .product .product-block .product-detail, .product-carousel.products .product .product-block .product-detail { display: block; padding: 20px 35px;}
.categories-product .product-block:hover img,
.products.products-horizontal .product .product-block:hover img,
.products.products-grid .product .product-block:hover img{/*transform:scale(1.05);-webkit-transform:scale(1.05);-ms-transform:scale(1.05);-o-transform:scale(1.05);-moz-transform:scale(1.05);transition:all 0.9s ease 0s;-webkit-transition:all 0.9s ease 0s;-moz-transition:all 0.9s ease 0s;-ms-transition:all 0.9s ease 0s;-o-transition:aall 0.9s ease 0s;*/}
.products.products-grid .product-image ,
.products.products-horizontal .product-image ,
.product-carousel .product-image{display:block;margin-bottom:0;overflow:hidden;padding:0px;line-height:0;position:relative;z-index:9;}
.categories-product .category h3,
.products.products-horizontal .product h3,
.products.products-grid .product h3,
.product-carousel .product h3{margin:15px 0 5px;line-height:20px;font-size:16px;}
.categories-product .product-block h3 a,
.products.products-horizontal .product h3 a,
.products.products-grid .product h3 a{font-weight:normal;font-size:16px;}
.products.products-horizontal .product p.price,
.products.products-grid .product p.price,
.products.products-list .product p.price,
.product-carousel .product p.price,
.gui-products-price, .gui-price,.popular p.price{display:block;padding-top:0px;font-size:14px;margin-bottom:0px;line-height:25px;color:#a7a7a7;position:relative;}
/*.products.products-horizontal .product p.price.price-len5, .products.products-grid .product p.price.price-len5, .products.products-list .product p.price.price-len5{font-size:14px;}
.products.products-horizontal .product p.price.price-len6, .products.products-grid .product p.price.price-len6, .products.products-list .product p.price.price-len6{font-size:14px;}
.products.products-horizontal .product p.price.price-len7, .products.products-grid .product p.price.price-len7, .products.products-list .product p.price.price-len7{font-size:14px;}
.products.products-horizontal .product p.price.price-len8, .products.products-grid .product p.price.price-len8, .products.products-list .product p.price.price-len8{font-size:14px;}*/
.products.products-horizontal .product p.price.price-offer,
.products.products-grid .product p.price.price-offer,
.products.products-list .product p.price.price-offer,
.product p.price.price-offer{position:relative;}
.products.products-horizontal .product p.price span,
.products.products-grid .product p.price span,
.products.products-list .product p.price span{position:relative;}
.products.products-horizontal .product p.price span.price-old,
.products.products-grid .product p.price span.price-old,
.products.products-list .product p.price span.price-old,
.popular .product p.price span.price-old{font-size:14px;margin-right:5px;font-weight:500;color:#6c6c6c;}
.product p.price span.price-old .uvp{font-size:8px;display:inline-block;margin:1px 0px 0 2px; line-height: 8px;}
.productpage .product-info .pricing .price .uvp{font-size:9px;display:inline-block;}
.product p.price.price .asterisk{font-size:12px;}
.index .shippingreturn-de{padding-top:0;}
.shippingreturn-de{font-size:14px;padding:0;}
.products.products-horizontal .product p.price span.currency,
.products.products-grid .product p.price span.currency,
.products.products-list .product p.price span.currency{font-size:18px;letter-spacing:normal;text-transform:uppercase;float:none;}
.categories-product .product-block,
.products.products-horizontal .product-block,
.products.products-grid .product-block{margin:22px;padding:0px;position:relative;}
.ie8 .categories-product .product-block:hover ,.ie8 .products.products-horizontal .product-block:hover,
.ie8 .products.products-grid .product-block:hover, .ie8 #brand-carousel .product-block:hover ,
.ie9 .categories-product .product-block:hover,.ie9 .products.products-horizontal .product-block:hover,
.ie9 .products.products-grid .product-block:hover, .ie9 #brand-carousel .product-block:hover{border-color:#eee;}
.products.products-horizontal .product .actions,
.products.products-grid .product .actions,
.products.product-carousel .product .actions{text-align:center;white-space:nowrap;position:absolute;width:100%;bottom:-87px;transition:all 0.5s ease-in-out 100ms;-webkit-transition:all 0.5s ease-in-out 100ms;-moz-transition:all 0.5s ease-in-out 100ms;-ms-transition:all 0.5s ease-in-out 100ms;-o-transition:all 0.5s ease-in-out 100ms;visibility:hidden;opacity:0;padding:16px 0 8px;}
.products.products-horizontal .product-block:hover .actions,
.products.products-grid .product-block:hover .actions,
.products.product-carousel .product-block:hover .actions{opacity:1;visibility:visible;bottom:0;transition:all 0.5s ease-in-out 100ms;-webkit-transition:all 0.5s ease-in-out 100ms;-moz-transition:all 0.5s ease-in-out 100ms;-ms-transition:all 0.5s ease-in-out 100ms;-o-transition:all 0.5s ease-in-out 100ms;}
.products.products-horizontal .product .button-add ,
.products.products-grid .product .button-add ,
.product-carousel.products .product .actions a.button-add,
.products.products-list .product .actions a.button-add,
.button,
.product-info .buy .add,
.header .cart .contents .buttons a,
.gui a.gui-button-large,
#newsletterbar .wrapper_inner button ,
.gui a.gui-button-large, .gui a.gui-button-small , #newsletterbar button,.aboutus-btn.btn,.bundle .actions span{cursor:pointer;display:inline-block;font-size:14px;font-weight:normal;line-height:24px;margin:0;padding:4px 15px;text-align:center;transition: background-color 300ms, color 300ms;}
.products.products-grid .product .product-block .button-add,
.popular .product-block .button-add,
.product-carousel.products .product .product-block .button-add {
    width: 100%;
    width: calc(100% + 4px);
    margin-bottom: -2px;
    box-sizing: border-box;
    line-height: 40px;
    position: absolute;
    bottom: 0;
    left: -2px;
}
.product-info .buy .add:hover,.gui a.gui-button-large:hover{background-image:url("btn-bg-big.png");}
.products.products-horizontal a.button-wishlist,
.products.products-grid a.button-wishlist,.products.product-carousel a.button-wishlist{display:inline-block;}
.products.products-horizontal a.button-compare,
.products.products-grid a.button-compare,.products.product-carousel a.button-compare{display:inline-block;}
.products.products-list .product{position:relative;margin:26px 0;}
.ie8 .products.products-list .product:hover,
.ie9 .products.products-list .product:hover{border-color:#eee;}
.products.products-list .product.product-last{border-bottom:none;}
.products.products-list .list-left{float:left;margin-right:0;width: 28%; line-height:0px;}
.products.products-list .list-center{float:right;width:69%;text-align:left;}
.products.products-list .list-right{float:right;width:69%;}
.products.products-list .actions .button-wishlist,
.products.products-list .actions .button-compare{display:inline-block;}
.products.products-list .actions .button-wishlist{background:url("wishlist.png") no-repeat scroll left 1px;}
.products.products-list .actions .button-compare:hover{background-position:left -133px;}
.products.products-list .actions .button-compare{background:url("wishlist.png") no-repeat scroll left -93px;}
.products.products-list .actions .button-wishlist:hover{background-position:left -53px;}
.products.products-list .product.hover{z-index:100;background:#FFFFFF;}
.products.products-list .product img{padding:0px;max-width:100%;height:auto;}
.products.products-list .product h3{font-size:16px;margin:15px 0 10px;text-transform:capitalize;}
.products.products-list .product h3 a{display:block;font-weight:bold;}
.products.products-list .product p.description{/*letter-spacing:1px;*/padding:0 0 10px 0;}
.products.products-list .product .actions a.button-add{margin:10px 5px 10px 0;}
.products.products-sidebar .product{margin-bottom:18px;}
.products.products-livesearch .product,
.products.products-cart .product{padding:0 0px 5px;clear:both;margin-bottom:10px;}
.products.products-sidebar .product,
.products.products-livesearch .product{white-space:nowrap;}
.products.products-sidebar .product img,
.products.products-livesearch .product img,
.products.products-cart .product img{float:left;margin-right:10px;}
.products.products-sidebar .product h4 {font-size:14px;}
.products.products-sidebar .product h4 a {color:inherit;}
.products.products-sidebar .product h4,
.products.products-livesearch .product h4,
.products.products-cart .product h4{overflow:hidden;text-overflow:ellipsis;font-weight:normal;}
.products.products-livesearch .product h4 {font-size: 12px;}
.products-livesearch .product{min-height:40px;}
.products-livesearch h4{line-height:16px;margin-top:0;}
.products.products-cart h4 {line-height: 1.1em;}
.products.products-cart h4 a {line-height: 1.1em;}
.products.products-sidebar .product p.price ,
.products.products-cart .product p.price{text-align:left;}
.products.products-cart .product p.price strong{color:#777;}
.products.products-sidebar .product p.price span,
.products.products-livesearch .product p.price span,
.products.products-cart .product p.price span{text-decoration:line-through;}
.products.products-sidebar .product.hover{z-index:100;}
.products .products-loader{position:absolute;top:0;left:0;width:100%;height:100%;background:rgba(255, 255, 255, 0.9);line-height:340px;text-shadow:0 1px 0 #FFFFFF;z-index:100;text-align:center;display:none;}
.products .products-loader.visible{display:block;}
.products.products-list .products-empty,
.products.products-grid .products-empty{text-align:center;height:232px;line-height:232px;}
.elements-wrapper{height:26px;background:rgba(0, 0, 0, 0.05);background:#F00;margin:10px 0;}
.elements-wrapper-big{height:70px;}
.language,.currency{float:left;padding:0 15px;position:relative;cursor:pointer;}
.dropdown-menu{list-style:none;padding-top:0px;display:none;position:absolute;background-color:#f2f2f2;position:absolute;min-width:145px;left:0px;z-index:99;}
.collection-options .dropdown-menu{right:0;left:auto;}
.dropdown-menu li{border-bottom:1px solid #e6e6e6;padding:10px;}
.dropdown-menu li:last-child{border-bottom:none;}
ul.dropdown-menu li a{display:block; line-height: 1.5em;}
.language::after{border-left:1px solid #999999;content:"";height:10px;position:absolute;right:0;top:8px;}
.language{padding-left:0;position:relative;}
.tui-language span{background-position:0 center;background-repeat:no-repeat;padding-left:30px;}
.dropdown-menu li.tui-language{background-position:12px 12px;background-repeat:no-repeat;padding-left:35px;}
.tui-language-bg span,ul li.tui-language-bg{background-image:url(icon-flag-bg.png);}
.tui-language-da span,ul li.tui-language-da{background-image:url(icon-flag-da.png);}
.tui-language-de span,ul li.tui-language-de{background-image:url(icon-flag-de.png);}
.tui-language-el span,ul li.tui-language-el{background-image:url(icon-flag-el.png);}
.tui-language-en span,ul li.tui-language-en{background-image:url(icon-flag-en.png);}
.tui-language-us span,ul li.tui-language-us{background-image:url(icon-flag-us.png);}
.tui-language-es span,ul li.tui-language-es{background-image:url(icon-flag-es.png);}
.tui-language-fr span,ul li.tui-language-fr{background-image:url(icon-flag-fr.png);}
.tui-language-fc span,ul li.tui-language-fc{background-image:url(icon-flag-frca.gif);}
.tui-language-it span,ul li.tui-language-it{background-image:url(icon-flag-it.png);}
.tui-language-nl span,ul li.tui-language-nl{background-image:url(icon-flag-nl.gif);}
.tui-language-no span,ul li.tui-language-no{background-image:url(icon-flag-no.png);}
.tui-language-pl span,ul li.tui-language-pl{background-image:url(icon-flag-pl.png);}
.tui-language-pt span,ul li.tui-language-pt{background-image:url(icon-flag-pt.png);}
.tui-language-ru span,ul li.tui-language-ru{background-image:url(icon-flag-ru.png);}
.tui-language-sv span,ul li.tui-language-sv{background-image:url(icon-flag-sv.png);}
.tui-language-tr span,ul li.tui-language-tr{background-image:url(icon-flag-tr.png);}
.tui input[type=text],
.tui input[type=password]{display:block;border:1px solid #DDD;height:18px;line-height:18px;font-size:14px;padding:3px 5px;color:#333333;background:#F5F5F5;border-color:#DDD #EEE #EEE #DDD;text-shadow:0 1px 0 #FFFFFF;float:left;}
.tui input[type=checkbox],
.tui input[type=radio]{height:16px;width:20px;margin:0 10px 0 0;float:left;}
.tui input:hover,
.tui input:focus,
.tui textarea:hover,
.tui textarea:focus,
.tui select:hover,
.tui select:focus{border-color:#999 #DDD #DDD #AAA;}
.tui textarea{border:1px solid #CCCCCC;border-radius:4px;height:56px;line-height:20px;font-size:12px;padding:6px 5px;color:#333333;background:#F5F5F5;border-color:#DDD #EEE #EEE #DDD;float:left;}
.tui select{display:block;border:1px solid #e6e6e6;font-size:12px;color:#000;background:#FFF;border-color:#DDD #EEE #EEE #DDD;width:100%;height:28px;}
.tui label{font-weight:normal;overflow:hidden;white-space:nowrap;text-overflow:ellipsis; float: left; margin-right: 15px;}
.tui select[multiple]{height:70px;}
a.tui-button{display:inline-block;height:20px;line-height:20px;color:#FFF;padding:0 10px;background:#187EA2;border:1px solid #FFFFFF;outline:2px solid #187EA2;}
.product-configure{margin-bottom:5px;}
.product-configure label em{color:#FF0000;}
.product-configure .product-configure-custom-option-item{padding:3px 0;line-height:14px;}
.product-configure .product-configure-custom-option-item label{font-weight:normal;}
.product-configure-custom-option-date{float:left;}
.product-configure-custom-option-time{float:left;}
.product-configure .product-configure-custom-option-date select,
.product-configure .product-configure-custom-option-time select{margin-right:5px;}
.product-configure .product-configure-custom-option select.product-configure-custom-option-date-day,
.product-configure .product-configure-custom-option select.product-configure-custom-option-time-hour,
.product-configure .product-configure-custom-option select.product-configure-custom-option-time-minute{width:50px;}
.product-configure .product-configure-custom-option select.product-configure-custom-option-date-month{width:120px;}
.product-configure .product-configure-custom-option select.product-configure-custom-option-date-year{width:65px;}
.product-configure .product-configure-custom-option select.product-configure-custom-option-date-year,
.product-configure .product-configure-custom-option select.product-configure-custom-option-time-minute{margin-right:0;}
.product-configure .product-configure-variants,
.product-configure .product-configure-options-option,
.product-configure .product-configure-custom-option{padding-bottom:10px;}
.product-configure .product-configure-clear{clear:both;}
.product-configure  .product-configure-variants:after {content:'';display:block;clear:both;}
.product-configure  .product-configure-variants label, .product-configure  .product-configure-variants select {float:left;}
.product-configure  .product-configure-variants label {}
.product-configure  .product-configure-variants select { width: 50%; }
.collection-options{padding-bottom:10px;font-size:13px;}
.collection-nav{border-left:1px solid #dddddd;float:left;font-size:13px;margin:4px 10px 4px 0;padding:0 0 0 10px;}
.collection-nav .collection-nav-total{float:left;}
.collection-nav .collection-nav-pages{float:right;font-weight:bold;}
.collection-options .collection-options-mode{float:left;margin:7px 15px 19px 0;}
.collection-options-compare{float:left;border-left:1px solid #DDD;padding-left:10px;margin:4px 0 19px 0;}
.collection-options-sort{float:right;height:31px;}
.collection-options-sort span.label,
.collection-options-limit span.label{display:inline-block;float:left;padding-right:15px;line-height:34px;}
.collection-options .tui-dropdown ul{right:0px;left:auto;}
.collection-options-limit{float:right;margin-right:15px;height:31px;}
.clearfix:before,
.clearfix:after{content:'\0020';display:block;overflow:hidden;visibility:hidden;width:0;height:0;}
.clearfix:after{clear:both;}
.clearfix{zoom:1;}
.clearmargin{margin:0;}
.sidebar-filter-slider{padding:1px 0;}
.sidebar-filter-range{font-size:12px;}
.sidebar-filter-range .min{float:left;}
.sidebar-filter-range .max{float:right;}
#collection-filter-price{height:4px;margin:8px 10px;background:#ccc;position:relative;}
#collection-filter-price .ui-slider-range{margin:0;position:absolute;height:4px;background:#000;}
#collection-filter-price .ui-slider-handle{display:block;position:absolute;width:13px;height:13px;border:0;top:-5px;margin-left:-10px;background:url(tui-slider-handle.png) 0px 0px no-repeat;cursor:col-resize;}
.collection-spinner{height:16px;padding:15px;}
.collection-spinner.busy,
.collection-spinner.manual{height:16px;background:#f5f5f5;box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.2);border-radius:5px;line-height:16px;text-align:center;margin-top:20px;text-shadow:0 1px 0 #FFFFFF;}
.collection-spinner-loading{display:none;padding-left:26px;background:url(spinner-small.gif) left center no-repeat;}
.collection-spinner.busy .collection-spinner-loading{display:inline-block;}
.collection-spinner-more{display:none;text-align:center;}
.collection-spinner.manual .collection-spinner-more{display:block;}
.collection-spinner.busy.manual .collection-spinner-more{display:none;}
.collection-pagination{border-top:1px solid #dddddd;padding:20px 0 5px 0;margin-top:15px;}
.collection-pagination .info{float:left;padding:5px 0;}
.collection-pagination ul{float:right;list-style-type:none;margin:0;padding:0;}
.collection-pagination ul li{float:left;padding:0px;margin:0 3px 5px;}
.collection-pagination ul li.prev a, .collection-pagination ul li.next a{border:1px solid #e7e7e7;}
.collection-pagination ul li.prev a{display:block;padding:2px 10px;}
.collection-pagination ul li.next a{display:block;padding:2px 10px;}
.collection-pagination ul li.number{padding:0;}
.collection-pagination ul li.number a{background-color:#fff;border:1px solid #e7e7e7;display:block;padding:2px 10px;}
.collection-pagination ul li.number.active a,.collection-pagination ul li.number:hover a,
.collection-pagination ul li.prev:hover a, .collection-pagination ul li.next:hover a{border-width:1px;border-style:solid;font-weight:400;}
.sub-banner .banner{overflow:hidden;}
.sub-banner .banner img{max-width:100%;}
.col-right{float:right;width:220px;}
.grid_default_width{width:250px;}
.featured_default_width{width:280px;}
.testimonial_default_width{width:300px;}
.newproduct_default_width{width:280px;}
.categories_default_width{width:218px;} /* 5 col on desktop */
.brand_default_width{width:230px;}
.related_default_width{width:280px;}
.additional_default_width{width:100px;}
#topcontrol::before{color:#ffffff;content:"\f106";font-family:"FontAwesome";font-size:18px;left:0;line-height:24px;position:absolute;right:0;text-align:center;top:5px;vertical-align:middle;}
#topcontrol{background:#333333 none repeat scroll 0 0;bottom:45px !important;font-size:0;height:34px;right:45px !important;width:34px;z-index:999;}
.related-products{width:100%;}
.gui-checkout .gui-progressbar ul li a{color:#777777 !important;}
.gui-checkout .gui-progressbar ul li.gui-done a{color:#777 !important;}
.gui-checkout .gui-progressbar ul li a span{background-image:url(checkout-progress.png) !important;}
.gui-checkout .gui-progressbar ul li.gui-done a{color:#222 !important;}
.gui-checkout .gui-progressbar ul li.gui-done a span{background-position:-35px -7px !important;}
#gui-block-review .gui-block .gui-table thead.gui-block-title > tr > th.gui-align-left,
#gui-block-review .gui-block .gui-table thead.gui-block-title > tr > th.gui-align-right{text-align:center !important;}
body .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col1{box-sizing: border-box;margin-right:2%!important;width:40%;}
body .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2{box-sizing: border-box;padding:0;border:none;margin-right:2%!important;width:26%;}
body .gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col3{box-sizing: border-box;width:30%; float:right;}

.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2 .gui-section {padding:10px;border: 1px solid #dbdfe0;}
.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2 .gui-section.gui-inactive { opacity: 1; }
.gui-form .gui-checkout-steps.gui-col3-equal > .gui-col3-equal-col2 .gui-section.gui-inactive > div { opacity:0.3; }

.gui-checkout-steps .carrier-methods {margin-left:0;}
.flexslider{position:relative;}
#tmtestimonials_block{clear:both;padding:135px 0 100px;margin-bottom:53px;}
#tmtestimonials_block .item{text-align:center;margin:16px 0 0;}
/*#tmtestimonials_block .item::before{content:"\f10d";font-family:fontawesome;font-size:60px;}*/
#tmtestimonials_block h3 {font-size:28px;}
#tmtestimonials_block .des{font-size:18px;/*letter-spacing:1.5px;*/font-weight:300;line-height:30px;margin:16px auto 37px;text-align:center;width:860px;}
#tmtestimonials_block .name > a{font-size:16px;font-weight:bold;}
#tmtestimonials_block .avatar { margin-bottom:20px;display:inline-block; }
#tmtestimonials_block .designation{font-size:14px;line-height:26px;font-weight:300;}
.testimonial_main.container-inner{margin:0 auto;}
#tmtestionial_block .item{padding:10px;text-align:center;}
#tmtestionial_block .product_inner_cms{margin:2px 30px 30px;}
#tmtestionial_block .testimonial_main div .product_inner_cms .des{background:#f2f2f2;border-radius:3px;padding:25px;}
#tmtestionial_block .testimonial_main div .product_inner_cms .name{background:url("testimonial-img.png") no-repeat scroll 11% 0;font-size:16px;padding:10px 0 10px 24%;text-align:left;font-weight:bold;}
.social-block{margin:40px 0 0;text-align:center;float:right;}
.container-inner{margin-top:30px;}
#tab{overflow:hidden;}
#tab .container-inner{margin:60px auto 20px;}
.sale-box{position:absolute;left:10px;text-transform:uppercase;top:20px;display:none;}
.new-box{display:none;position:absolute;right:10px;text-transform:uppercase;top:20px;}
.list-left .sale-box{left:20px;top:30px;}
.template-product .sidebar-main{width:100%;}
.quantity-lable{float:left;margin:10px 10px 0 0;}
.social-link{display:inline-block;margin-right:4px;position:relative;vertical-align:bottom;top:0px;height:34px;width:34px;line-height:34px;}
.followus-title{font-size:12px;left:0;line-height:25px;min-width:90px;visibility:hidden;padding:0 10px;position:absolute;top:-35px;transition-duration:300ms;opacity:0;}
.social-link:hover .followus-title, .social-link:hover::after{visibility:visible;transition-duration:300ms;opacity:1;}
.social-link:after{border-left:8px solid transparent;border-right:0 solid transparent;border-top-width:7px;border-top-style:solid;bottom:38px;content:"";left:10px;visibility:hidden;position:absolute;text-align:center;transition-duration:300ms;-webkit-transition-duration:300ms;-moz-transition-duration:300ms;opacity:0;}
.newsletter{margin-top:15px;}
#testimonial-carousel .owl-controls.clickable{display:block !important;margin:30px auto 0;text-align:center;}
.owl-pagination{padding:0 20px;display:inline-block;}
.offer_slider .offer_slider_inner .flex-direction-nav .flex-prev{background:url("sprite.png") no-repeat scroll 3px -154px transparent;right:33px;left:auto;}
.offer_slider .offer_slider_inner .flex-direction-nav .flex-prev:hover{background-position:3px -133px;}
.offer_slider .offer_slider_inner .flex-direction-nav .flex-next{background:url("sprite.png") no-repeat scroll -22px -154px transparent;right:0px;left:auto;}
.offer_slider .offer_slider_inner .flex-direction-nav .flex-next:hover{background-position:-22px -133px;}
.special-offers .offer_slider .flexslider .slides img{width:auto;height:auto;max-width:100%;display:inline-block;}
.topnav{position:relative;float:right;}
.aboutus{clear:both;}
.aboutus .desc{margin-bottom:15px;overflow:hidden;}
.image1{background:url("cms-sprite.png") no-repeat scroll 7px -165px;float:left;height:50px;width:60px;}
.image2{background:url("cms-sprite.png") no-repeat scroll 7px -116px;float:left;height:50px;width:60px;}
.image3{background:url("cms-sprite.png") no-repeat scroll 7px -52px;float:left;height:50px;width:60px;}
.image4{background:url("cms-sprite.png") no-repeat scroll 7px 6px;float:left;height:50px;width:60px;}
.buttons{border-bottom:1px solid #e5e5e5;display:inline-block;margin:0;padding:6px 0;width:100%;}
.aboutus-btn.btn{float:right;}
.wishlist-compare{margin:5px 0;}
.spinner{width:100%;min-height:700px;z-index:9;background:url("ajax-loader.gif") 50% 50% no-repeat #fff;}
.wsa-demobar{background:none repeat scroll 0px 0px #000 !important;text-shadow:0 0px 0 rgba(0, 0, 0, 0.5) !important;border:none !important;box-shadow:none !important;height:42px !important;}
.header-links-responsive{display:none;}
.header-links-responsive li{list-style:none;text-align:left;padding:2px 0;}
.additional-carousel .customNavigation{width:100%;position:static;}
.testimonial_main.container-inner > h2,.brand-slider.container-inner > h2,.testimonial_main.container-inner > h2:before,.brand-slider.container-inner > h2:before,.testimonial_main.container-inner > h2:after,.brand-slider.container-inner > h2:after{border:none;margin:0px;background:none;}
.brand-slider.container-inner{margin-top:50px;padding-top:26px;border-top-width:1px;border-top-style:solid;}
.products.row.bundle-actions{display:block;overflow:hidden;width:100%;margin:60px 0 30px;}
.bundle.left{float:left;width:87%;}
.product.bundlecart.right{float:right;width:12%;margin:0;padding:20px 0 0;border:none;}
.product.bundlecart.right:hover{box-shadow:none;}
.bundle .product{border:1px solid #eeeeee;display:inline-block;vertical-align:top;margin:0 14px 10px;padding:13px 0 3px;position:relative;width:16%;}
.bundleproductinfo.info{height:auto;min-height:55px;text-align:center;}
.line-through{text-decoration:line-through;}
.glyphicon-plus::before{content:"+";}
.glyph-bundle{color:#999999;font-size:26px;font-weight:bold;margin-left:-22px;position:absolute;top:95px;width:1em;}
.product:nth-child(6) > .glyph-bundle{display:none;}
.bundle .actions{margin-top:10px;}
.bundle .actions span i{margin-right:5px;}
.bundle .image img{height:auto;max-width:100%;width:auto;}
.bundle .image{text-align:center;}
.map{border-radius:50%;cursor:pointer;font-size:18px;height:10px;margin:0 auto;padding:9px;width:10px;text-align:center;}
.map:hover{opacity:0.8;}
.map_parent {
    /*background: #1e1e1e none repeat scroll 0 0;*/
    top: -15px;
    left: 0;
    margin: 0 auto;
    position: absolute;
    right: 0;
    width: 50px;
    z-index: 9;
}
.map i{font-size:14px;position:relative;}
.map i::before{vertical-align:7px;line-height:10px;}
.map.active i::before{vertical-align:8px;line-height:0; content: "\f00d";font-size: 15px; margin-left: -1px;}
#tmfootercms_block{padding:30px 0px;clear:both;}
.footer-top .wrapper_inner{padding:0;}
.footer-top .wrapper_inner .footer-percent{width:25%;float:left;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner{overflow:hidden;}
.footer-top .wrapper_inner .footer-percent.footer-percent2 .footer-percent-inner{padding-left:48px;}
.footer-top .wrapper_inner .footer-percent.footer-percent3 .footer-percent-inner{padding-left:74px;}
.footer-top .wrapper_inner .footer-percent.footer-percent4 .footer-percent-inner{float:right;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .icon{float:left;background:rgba(0, 0, 0, 0) url("footer-icon.png") no-repeat scroll -6px 4px;height:40px;width:49px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .icon.icon2{background:rgba(0, 0, 0, 0) url("footer-icon.png") no-repeat scroll 0 -201px;width:63px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .icon.icon3{background:rgba(0, 0, 0, 0) url("footer-icon.png") no-repeat scroll 0 -64px;width:56px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .icon.icon4{background:rgba(0, 0, 0, 0) url("footer-icon.png") no-repeat scroll 0 -135px;width:56px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .service-content{float:left;color:#8c8c8c;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .service-content .service-text{font-size:14px;font-weight:bold;/*letter-spacing:2px;*/line-height:22px;text-transform:uppercase;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner .service-content .description{font-size:13px;font-weight:300;/*letter-spacing:1.4px;*/line-height:15px;text-transform:none;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner:hover .icon{background-position:-6px -276px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner:hover .icon.icon2{background-position:0 -481px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner:hover .icon.icon3{background-position:0 -344px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner:hover .icon.icon4{background-position:0 -415px;}
.footer-top .wrapper_inner .footer-percent .footer-percent-inner:hover .service-content{color:#fff;}
.product-tab ul{margin:30px auto 60px;text-align:center;}
.product-tab ul li{display:inline-block;position:relative;margin:0 27px;}
.product-tab ul li a span{transform:translateZ(0px);padding:10px 0;position:relative;color:#808080;}
.product-tab ul li a span::after{bottom:0;content:"";height:2px;left:0;position:absolute;right:100%;transition-duration:0.3s;transition-property:right;transition-timing-function:ease-out;}
/*.product-tab ul li a span::before{top:0;content:"";height:2px;left:0;position:absolute;right:100%;transition-duration:0.3s;transition-property:right;transition-timing-function:ease-out;}*/
.product-tab ul li:hover a span::before,.product-tab ul li:hover a span::after,.product-tab ul li.ui-tabs-active a span::before,.product-tab ul li.ui-tabs-active a span::after{right:0;}
/*.product-tab ul li a::after{border:1px solid;color:#000000;content:"";font-size:14px;height:14px;position:absolute;right:-28px;top:0;}*/
.product-tab ul li:last-child a::after{content:none;}
.product-tab ul li a{font-weight:bold;line-height:24px;padding:0;text-transform:uppercase;font-size:14px;/*letter-spacing:1.6px;*/position:relative;}
.homepage-blog-inner{margin:30px -15px 55px;}
.homepage-columns-inner{font-size:14px;line-height: 1.625em}
.item.single-post{padding:0 15px;position:relative;}
.post-image{margin:0 0 17px;position:relative;}
.game .post-image{margin: 0; overflow: hidden;}
.game .post-image:before{
    background: rgba(0, 0, 0, 0) linear-gradient(to bottom, rgba(231, 55, 39, 0) 0%, #000000 100%) repeat scroll 0 0;
    content: "";
    height: 100%;
    position: absolute;
    transform: translate3d(0px, 100%, 0px);
    transition: all 0.5s ease-out 0s;
    width: 100%;
}
.game #blog-carousel .item:hover .post-image::before{
    transform: translate3d(0px, 0px, 0px);
}
.game .item.single-post{padding: 0; margin: 10px;}
.post-image img{max-width:100%;height:auto; width: 100%; vertical-align: middle;}
.post-content{margin:30px 0 10px;}
.post-title{margin:0 0 9px;}
/*.post-title a{font-size:16px;letter-spacing:0.8px;font-weight:500;}*/
.post-date{font-size:11px;left:15px;/*letter-spacing:1px;line-height:*/26px;padding:0 16px;position:absolute;top:9px;}
.post-description{font-size:14px;/*letter-spacing:1.6px;*/line-height: 1.625em;margin:0 0 18px;}
.read-more a{/*letter-spacing:0.5px;*/text-transform:capitalize;font-size:12px;line-height:26px;}
.read-more a:after{content:"\f178";font-family:fontawesome;margin:0 0 0 8px;vertical-align:middle;}
.homepage-blog-inner .item:hover .read-more a{margin:0 0 0 7px;transition:all 0.3s ease 0s;}

.breadcrumb-box {
    background: #f2f2f2 none repeat scroll 0 0;
    display: inline-block;
    margin-bottom: 30px;
    padding: 20px 0;
    vertical-align: top;
    width: 100%;
}

.breadcrumb-box span {
    display: inline-block;
    margin: 0 5px;
}

.breadcrumb-box h1, .breadcrumb-box .gui-page-title {font-size:40px;line-height:1.4em;padding: 20px 0;}

.breadcrumb-box .breadcrumbs{margin:0 auto;}
.breadcrumbs.container-inner.clearfix > h1{float:left;margin:0;}
.breadcrumb-inner{float:left;}
.collection-options .tui{border:1px solid #e2e2e2;display:inline-block;padding:0 10px;position:relative;width:auto;height:31px;line-height:31px;}
.collection-options .tui > span{margin-right:45px;}
.collection-options .tui i{background:#f1f1f1 none repeat scroll 0 0;height:31px;line-height:31px;position:absolute;right:0;text-align:center;top:0;width:31px;}
.zoombox.fancybox .images{height: 0; padding-bottom: 100%; width: 100%; position:relative;display:inline-block;border:1px solid #e5e5e5;}
.zoombox.fancybox .images img { position: absolute; margin: auto; top: 0; left: 0; bottom: 0; right: 0;  }
.zoombox.fancybox .images a {display:none;cursor:pointer;cursor:-moz-zoom-in;cursor:-webkit-zoom-in;overflow:hidden;}
.zoombox.fancybox .images a.first{display:block;}
.zoombox.fancybox .images a img{position:relative;width:100%;height:100%;}
.zoombox.fancybox .images a img.zoomImg{max-height:none;}
.zoombox.fancybox .thumbs{width: auto;}
.zoombox.fancybox .product-carousel{border: 1px solid #e5e5e5;}
.zoombox.fancybox .product-carousel .slider-wrapper-outer {margin: -1px;}
.zoombox.fancybox .thumbs a{cursor:pointer;display:block;}
.zoombox .images a img, .zoombox .thumbs a img{height:auto;max-width:100%;}
.zoombox.fancybox .thumbs a.last{margin-right:0px;}
.additional-carousel .customNavigation a { background-color: #fff;}
body .additional-carousel .customNavigation a.prev { left:5px; top: 50%; transform: translateY(-50%);}
body .additional-carousel .customNavigation a.next { right:5px; top: 50%; transform: translateY(-50%);}
.productpage-images-thumbs li.product-items{margin: 0 10px; width:80px !important;}
.productpage-images-thumbs li.product-items:first-child{margin-left: 0;}
.productpage .tabs ul.tabs-tabs li::before{background:#000 none repeat scroll 0 0;bottom:0;content:"";left:0;position:absolute;right:0;top:0;transform:scaleY(0);transform-origin:50% 100% 0;transition-duration:0.5s;transition-property:transform;transition-timing-function:ease-out;z-index:-1;}
.productpage .tabs ul.tabs-tabs li{backface-visibility:hidden;box-shadow:0 0 1px rgba(0, 0, 0, 0);display:inline-block;position:relative;transform:translateZ(0px);transition-duration:0.5s;transition-property:color;vertical-align:middle;}
.productpage .tabs ul.tabs-tabs li.ui-tabs-active::before{transform:scaleY(1);transition-timing-function:cubic-bezier(0.2, 1, 0.3, 1);}
.actions .stars .yotpo-stars{margin:0 0 16px;display:block;}
.stars .yotpo .pull-left{float:none;text-align:center;}
.popular .stars .yotpo .pull-left,.products-list .stars .yotpo .pull-left{text-align:left;}
.stars .yotpo .pull-left .text-m{display:none;}
.products .product .product-block .actions a,.products.products-list .list-center .actions a{background-color: #fff; border:1px solid #b3b3b3;height:28px;line-height:28px !important;padding:0 !important;text-align:center;width:28px;color:#b3b3b3;}
.list-center .stars{margin:15px 0;}
.yotpo .yotpo-icon-empty-star::before{content:"\e60e" !important;color:#c7c7c7 !important;}
.yotpo .write-review .yotpo-header .stars-wrapper .yotpo-icon-empty-star:hover::before{color:#F2B611 !important;}
.yotpo .write-review .yotpo-header .stars-wrapper .review-star:hover { cursor:pointer; }
.yotpo .yotpo-bottomline .yotpo-icon-empty-star{color:#c7c7c7 !important;}
.yotpo .yotpo-icon-heart::before,.yotpo.yotpo-main-widget .yotpo-thank-you .yotpo-thankyou-header span, .yotpo .yotpo-modal-dialog .yotpo-thank-you .yotpo-thankyou-header span{color:#F2B611 !important;}
.header .cart .contents a{border:none;}
.product-info .yotpo .text-m{margin-left:10px;}
.gui-checkout .gui-section.gui-fixed{position:relative !important;}
.gui-checkout .gui-form .gui-right{margin-left:10px;}
.Service-CMS{float:left;padding:89px 0 38px;width:100%;}
.Service-CMS .content-text{margin-top:100px;text-align:center;}
.Service-CMS .heading{color:#000;display:block;font-size:13px;font-weight:700;/*letter-spacing:2px;*/margin-bottom:9px;text-transform:uppercase;}
.Service-CMS .text{color:#3d3d3d;font-size:13px;/*letter-spacing:1.4px;*/text-transform:capitalize;}
.features.left{float:left;text-align:right;}
.features.left, .features.right{margin-top:79px;width:311px;}
.Service-CMS .first,.Service-CMS .second,.Service-CMS .third{margin-bottom:89px;}
.Service-CMS .image{background-image:url("services.png");background-repeat:no-repeat;border-width:2px;border-style:solid;border-radius:50%;height:76px;width:76px;}
.features.left .image{float:right;margin-left:20px;}
.features.right .image{float:left;margin-right:20px;}
.features.left .headcms_img1{background-position:23px 28px;}
.features.left .headcms_img2{background-position:23px -150px;}
.features.left .headcms_img3{background-position:23px -325px;}
.features.right .headcms_img1{background-position:23px -500px;}
.features.right .headcms_img2{background-position:23px -676px;}
.features.right .headcms_img3{background-position:23px -852px;}
.features.right{float:right;text-align:left;}
.features.center{display:inline-block;text-align:center;width:411px;}
.Service-CMS .features.center img{max-width:100%;height:auto;}
.grid-4.grid-4-first > h4{display:none;}
.grid-4.grid-4-first > ul{margin:0;}
.footer_logo{margin-bottom:13px;}
.footer_logo svg{display:block;width:174px;height:21px;}
.shop-beauty .footer_logo svg, .shop-monster .footer_logo svg{width:80px;height:60px;}
.popular .actions{margin:20px 0;}
.popular .product .product-block .product-detail .actions a{border:1px solid #808080;display:inline-block;padding:7px 15px !important;width:auto !important;height:auto !important;color:#000;font-size:14px;margin:2px 0;}
.popular .product .product-block .product-detail .actions a i{font-size:14px;}
.popular .product .product-block .product-detail .actions a.button-add i{margin-right:10px;}
.popular .product-image::after{background:rgba(0, 0, 0, 0) url("shild.png") no-repeat scroll 0 0;top:7px;right:5px;content:"";position:absolute;height:381px;width:436px;}
.popular .price.price-offer.price-len5{color:#000;font-size:26px;}
.popular .price.price-offer.price-len5 .price-old{color:#808080;font-size:20px;}
.container-inner.popular{margin-top:80px;}
.blogicons a{display:inline-block;float:none;height:45px;width:45px;transition:all 0.5s ease 0s;position:relative;}
.blogicons{bottom:0;height:51px;left:0;margin:auto;opacity:0;position:absolute;right:0;top:0;transition:all 0.4s ease 0s;width:100%;text-align:center;}
.blogicons .zoom::before{border:2px solid white;border-radius:50%;bottom:0;color:white;content:"\f002";font-family:"FontAwesome";font-size:16px;height:15px;left:0;margin:auto;padding:14px;position:absolute;text-align:center;top:0;transform:scale(1);transition:all 0.4s ease 0s;width:15px;line-height:14px;}
.blogicons .zoom{margin-left:-20px;transition-delay:0.2s;}
.blogicons .readmore_link{margin-left:-52px;transition-delay:0.1s;}
.blogicons .readmore_link::before{border:2px solid white;border-radius:50%;bottom:0;color:white;content:"\f0c1";font-family:"FontAwesome";font-size:16px;height:15px;margin:auto;padding:14px;position:absolute;right:0;text-align:center;top:0;transform:scale(1);transition:all 0.4s ease 0s;width:15px;line-height:16px;}
.homepage-blog-inner .item:hover .blogicons{opacity:1;}
.homepage-blog-inner .item:hover .blogicons .zoom,.homepage-blog-inner .item:hover .blogicons .readmore_link{margin:0 5px;}
.game header .header-top{background:rgba(255, 255, 255, 0.1) none repeat scroll 0 0;}
.product-info h1 .brand{color:#a7a7a7;display:block; margin-bottom: 10px;}
.homepage-blog-inner .owl-theme .owl-controls{margin-top:30px;}
#brandContainer{margin-top: -32px;}
.container-inner.gui-breadcrumb.clearfix{margin-top: 0;}
.wysiwyg img{width: 100%; height: auto;}
.music header .header-top,.music .header-links li a{text-transform: uppercase;}
.footer-copyright li{
    display: inline-block;
    line-height: 24px;
}
.footer-copyright li:first-child a {
    padding-left: 0;
}
.footer-copyright li a {
    position: relative;
    padding: 0 6px 0 9px;
    text-transform: capitalize;
    /*letter-spacing: 1.5px;*/
}
.footer-copyright li a::before {
    border-left: 1px solid #999999;
    content: "";
    height: 11px;
    left: 0;
    position: absolute;
    top: 2px;
}

.footer-copyright li:first-child a::before {
    border: medium none;
    padding: 0;
}

.post-image-hover{
    background: rgba(0, 0, 0, 0.5) none repeat scroll 0 0;
    height: 100%;
    left: 0;
    opacity: 0;
    position: absolute;
    top: 0;
    transition: all 0.2s ease-out 0s;
    width: 100%;
}
.homepage-blog-inner .item:hover .post-image-hover{
    transition: all 0.5s ease-out 0s;
    opacity: 1;
}
.game .featured.container-inner{margin: 90px auto;overflow:hidden;}
.music .index .Service-CMS h2{border-color: #000000;}
.product-carousel .slider-item{width: 311px;}
.actions .button-add{margin-right: 5px !important;}

.button {
    -webkit-transition: background-color 300ms ease, color 300ms ease;
    transition: background-color 300ms ease, color 300ms ease;
}

.content-bottom-block {padding:55px 0;line-height:1.625em}
.content-bottom-block .container-inner:after{content:'';display:block;clear:both;}
.content-bottom-block img {width: 48%;height: auto;float:left;}
.content-bottom-block h3 {font-size:22px}
.content-bottom-block h4 {font-size:18px;font-weight:normal;margin-bottom: 4px;}
.content-bottom-block .content-bottom-content {float:left;width:52%;padding-left:4%;box-sizing: border-box;}
.arrow-link svg{width:13px;height:9px;margin-right:8px;}

.gui-page-title {
    line-height: 1em;
}

body .wsa-cookielaw {
    background: rgba(0,0,0,0.7);
    color: #fff;
    font-weight: 300;
    font-family: inherit;
    padding-bottom: 6px;
    top: auto;
    bottom: -1px;
}
body .wsa-cookielaw-link {
    color: rgba(255,255,255,0.7);
    cursor: pointer;
}
body .wsa-cookielaw-link:hover {
    color: rgba(255,255,255,1);
}
body .wsa-cookielaw-button:hover {
    color: #fff;
    cursor: pointer;
}
html body { margin-top: 0 !important; /*cookielaw reset*/ }

.gui-blog img { max-width: 100%; }
body .gui-blog-article > ul { width: auto; list-style: disc; }
body .gui-blog-article h1{font-size:40px;line-height:1.4em;}
body .gui-block-linklist li.gui-active a {color:inherit;font-weight:bold;}
body .gui-block-linklist li a {color:inherit;}
body .gui-blog-article { /* both overview & detail page */
    border-bottom: none;
}
body .gui-blog-article + .gui-blog-article { /* both overview & detail page */
    padding: 25px 0 15px 0;
    margin: 15px 0 0 0;
    border-top: 1px solid #CCCCCC;
}
.gui-blog-article header {z-index:initial;}
.gui-blog-article header ul {margin-left:0;}
.gui-blog-article h2 { font-family: inherit; font-size: 1.625em; }
.gui-blog-article h3 { font-size: 1.3em; }
.gui-blog-article h4 { font-size: 1.1em;font-weight: bold; }
body .gui-blogshort .gui-blog-article-image .gui-blog-article-content, body .gui-blogshort .gui-blog-article-image footer, body .gui-blogshort .gui-blog-article-image header { width:auto; padding-left:0; }
.gui-blog-article-summary a {display:block; margin-bottom:15px;}

.link-apotheekenhuid em, .link-apotheekenman em, .link-apotheekensport em, .link-apotheekenkind em, .link-apotheekenbeauty em {
    font-style: normal;
}
.link-apotheekenhuid em { color:#F89307; }
.link-apotheekenman em { color:#6ca7f3; }
.link-apotheekensport em { color:#4bdf95; }
.link-apotheekenkind em { color:#f4cf40; }
.link-apotheekenbeauty em { color:#f29000; }
.grid-4.grid-4-first > ul { display: block; }
.grid-4.grid-4-first .mobile_togglemenu { display: none; }


body .gui-select .gui-handle {background:none;}

.gui-select .gui-handle:before, .gui-select .gui-handle:after {
    content:'';position:absolute;top:50%;left:50%;
}
.gui-select .gui-handle:before {
    width:8px;height:8px;background-color:#000;transform:translateX(-50%) translateY(-50%) rotate(45deg);
}
.gui-select .gui-handle:after {
    width:20px;height:4px;background-color:#fff;transform:translateX(-50%) translateY(-50%);
}

body .gui-form label { white-space: initial; }

.gui-checkout .gui-form a.gui-button-fb { height: 24px; border-radius: 0; box-shadow: none; }
.gui-checkout .gui-form a.gui-button-fb:hover { background-color:#3B5998 !important; border-color: #3B5998 !important; opacity: .8; }
.gui-checkout .gui-button-fb + .gui-separator, .gui-checkout .gui-modal .gui-buttons .gui-separator { background:none; }
.gui-checkout-one-step > .gui-form > .gui-margin-fix { display:none; }
.gui-checkout .gui-progressbar.gui-fixed + #gui-block-method { padding-top: 80px; }

.hero-product-block {position: absolute; left:0; top:0; width: 100%; height:100%;}
.hero-product-inner {padding:0; height:100%; position:relative;}

.hero-product-block .hero-product-inner-inner {
    box-sizing: border-box;
    position: absolute; top: 50%;
    -webkit-transform: translate3d(0, -50%, 0); transform: translate3d(0, -50%, 0);
    padding: 40px 45px;
    width: 48.5%; /* 580px;*/
    background-color: #fff;
    display:-webkit-box; display: -ms-flexbox; display: flex;
    -webkit-box-pack: justify; -ms-flex-pack: justify; justify-content: space-between
}

.hero-product-block .hero-product-inner-inner:after {
    content: ''; display: block; clear:both;
}

.hero-product-block .hero-product-img {
    width: 35.4%; /*170px;*/
    float: left;
}

.hero-product-block .hero-product-content {
    width: 46.9%; /*225px;*/
    float: right;
    margin-left: 10%;
    -ms-flex-item-align: center; -ms-grid-row-align: center; align-self: center;
}

.hero-product-block .title {
    font-size: 24px;
    margin-top: .83em; /*20px;*/
    margin-bottom: .625em; /*15px;*/
}

.hero-product-block .title-label {
    font-size: 12px;
    text-transform: uppercase;
}

.hero-product-block .price.old { color:#b9b9b9; font-weight: 300; margin-bottom: 5px; }
.hero-product-block .price.old .price-number { text-decoration: line-through; }

.hero-product-block .price.current { font-size: 20px; margin-bottom: 16px; }

.hero-product-block .button {
    font-size: 20px;
    text-transform: uppercase;
    padding: 13px 15px;
}

#product-tab-reviews {margin-bottom:60px;}

.product-carousel.products .slider-item { max-width: 300px; }
.product-carousel.products .product-block { max-width: 256px; }

body .main-menu ul ul li a { text-transform: uppercase; }

.template-textpage.container-inner { margin-top: 0; }

a[x-apple-data-detectors], a[href*=tel] {
    color: inherit !important;
    text-decoration: none !important;
    font-size: inherit !important;
    font-family: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
}

body .gui a.dc_sociallogin_btn_google {width: auto; margin: 0;}
.gui-login .gui-buttons .gui-right + .gui-clear { display:none; }

.template-collection .wysiwyg a.leesmeer { display:none; }

.content-bottom-block h1 { font-size: 22px; margin-bottom: 0.643em; line-height: 1.286em; }

#gui-wrapper .gui-div-cart-coupons .gui-block-title strong { font-weight: normal; }
.gui-div-cart-coupons .gui-block-title { font-size: 14px; cursor: pointer; }
.gui-div-cart-coupons .gui-block-title.arrow-expand::after { content: ''; display: inline-block; border-bottom: 5px solid #3d3d3d; width: 1px; border-left: 5px solid transparent; border-right: 5px solid transparent;  margin-left: 3px; transition: transform 350ms ease; transform: rotate(90deg) translateX(-2px); }
.gui-div-cart-coupons .gui-block-title.arrow-collapsed::after { transform: translateY(-2px); }

/* geen checkout voor beauty */
.shop-beauty span.main_logo { float:left; /*tablet*/ }
.shop-beauty .header-cms { float: right; clear: none; padding-top: 0;}

/* behandelingen */
.shop-beauty .productpage .short-description { font-size: 1.2em; }
.shop-beauty .productpage .treatment-duration { color:#666;}
.shop-beauty .productpage .treatment-duration svg { width: 20px; height: 20px; float:left; fill:#666;}
.shop-beauty .productpage .treatment-duration span { padding-left: 10px;}
.shop-beauty .productpage .product-info .usps { display: inline-block; margin: 0;  }
.shop-beauty .productpage .usps { min-height: 120px; padding-right: 105px; background-image: url(joost.png); background-repeat: no-repeat; background-size: 100px auto; background-position: right bottom; }
.shop-beauty .productpage .usps h4 { font-size: 1.2em; font-weight: normal; margin-bottom: 0.2em; }
.shop-beauty .productpage .usps a { color: #6c6c6c; }
.shop-beauty .productpage .usp-list { margin-top: 25px; }
.shop-beauty .productpage .usp-list li { font-size:1.4em; line-height: 1.21em; margin-bottom: 0; }
.shop-beauty .productpage .product-info .details .pricing { margin-bottom: 10px; }
.shop-beauty .productpage .product-info .details { margin-bottom: 0; }

#newsletterbar input.firstName {
    float: left;
    padding: 0;
    margin: 0;
    height: 0;
    width: 0;
    opacity: 0;
    visibility: hidden;
    border: none;
    outline: none !important;
    background-color: transparent;
}