@charset "utf-8";
/** Product Listing ITEM **/
/**
 * product listing.less include the css for product list item
 * 
 *
 * STRUCTURE OF PRODUCT LISTING 
 *   
 *   Block: Block to decide the info float left or right
 *   Placeholder: Position Setting for every attribute 
 *
 *   .product-item-list
 *     li.product-item
 *      .product-item-card
 *       .product-item-link
 *        .product-item-figure-block 
 *          .product-item-thumbnail-list
 *          .product-item-image-wrapper
 *            .product-item-emphasis          
 *        .product-item-description-block 
 *          .product-item-name
 *          .product-item-rating-placeholder
 *          .product-item-promotion-content
 *          .product-item-seller-placeholder
 *        .product-item-meta-block 
 *          .product-item-price-placeholder
 *          .product-item-selling-price              .
 *
 * TABLE OF CONTENT
 *
 * 1.0 - General Style for Grid and List view
 * 2.0 - General Style for Grid view *   
 * 3.0 - Grid *
 *     3.1 Grid 4 Column (Width 940px, midWidth 980px bordered)
 *     3.2 Grid 3 column (Width 940px, midWidth 980px bordered)
 *     3.3 Grid 5 column (Width 940px, midWidth 980px bordered, fullWidth: 1180 bordered)
 *     3.4 Grid 4 column Sponsorhip (Width 940px) - Hover no enlarge Effect
 *     3.5 Grid 4 column Inspired (Width 940px) - Hover no enlarge Effect
 * 4.0 - List 
 *      4.1 List (width 940px)
 * 
 */
/* Mixin: Logo Image Position - vertical align middle in inline-block*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
main figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
  width: inherit;
}
body {
  line-height: 1;
}
ol,
ul {
  list-style-type: none;
}
ol li ol,
ul li ul {
  list-style-image: url('/img_glb/common/blank.gif');
}
blockquote,
q {
  quotes: none;
}
blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
/**
 * Table of Contents 
 *
 * + Button: btn
 *   - btn-primary, btn-red
 *   - btn-secondary, btn-blue
 *   - btn-secondary-reverse, btn-blue-reverse
 *   - btn-default, btn-grey
 *   ---> :hover or :focus, :active, disabledaccent
 *   ---> btn-lg, btn-sm, btn-xs, btn-block
 *
 * + Radio button
 * + Checkbox
 * + Text Input
 * + Drop down menu
 + range slider 
 */
/*---------------------------------------- btn ---------------------------------------*/
.btn {
  font-size: 16px;
  line-height: 38px;
  font-weight: 500;
  text-align: center;
  vertical-align: middle;
  margin: 0;
  padding: 0 16px;
  border-radius: 4px;
  border: 1px solid transparent;
  display: inline-block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  cursor: pointer;
  white-space: nowrap;
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
}
/*--- btn primary---*/
.btn-primary,
.btn-red {
  background-color: #f22a2c;
  color: #fff;
  border-color: #f22a2c;
}
.btn-primary:hover,
.btn-red:hover,
.btn-primary:focus,
.btn-red:focus,
.btn-primary.hover,
.btn-red.hover {
  background-color: #dc0d0f;
  color: #fff;
  border-color: #dc0d0f;
  text-decoration: none;
  cursor: pointer;
}
.btn-primary.active,
.btn-red.active,
.btn-primary:active,
.btn-red:active {
  background-color: #ac0a0c;
  color: #fff;
  border-color: #ac0a0c;
  text-decoration: none;
  cursor: pointer;
}
/*--- btn secondary---*/
.btn-secondary,
.btn-blue {
  background-color: #4c6ccd;
  color: #fff;
  border-color: #4c6ccd;
}
.btn-secondary:hover,
.btn-blue:hover,
.btn-secondary:focus,
.btn-blue:focus,
.btn-secondary.hover,
.btn-blue.hover {
  background-color: #3252b4;
  color: #fff;
  border-color: #3252b4;
  text-decoration: none;
}
.btn-secondary.active,
.btn-blue.active,
.btn-secondary:active,
.btn-blue:active {
  background-color: #2d49a0;
  color: #fff;
  border-color: #2d49a0;
  text-decoration: none;
}
/*--- btn secondary inverse ---*/
.btn-secondary-inverse,
.btn-blue-inverse {
  background-color: #fff;
  color: #4c6ccd;
  border-color: #4c6ccd;
}
.btn-secondary-inverse:hover,
.btn-blue-inverse:hover,
.btn-secondary-inverse:focus,
.btn-blue-inverse:focus,
.btn-secondary-inverse.hover,
.btn-blue-inverse.hover {
  background-color: #3252b4;
  color: #fff;
  border-color: #3252b4;
  text-decoration: none;
}
.btn-secondary-inverse.active,
.btn-blue-inverse.active,
.btn-secondary-inverse:active,
.btn-blue-inverse:active {
  background-color: #2d49a0;
  color: #fff;
  border-color: #2d49a0;
  text-decoration: none;
}
/*--- btn default---*/
.btn-default,
.btn-grey {
  background-color: #fff;
  color: #757575;
  border-color: #ccc;
}
.btn-default:hover,
.btn-grey:hover,
.btn-default:focus,
.btn-grey:focus,
.btn-default.hover,
.btn-grey.hover {
  background-color: #ddd;
  color: #757575;
  border-color: #ddd;
  text-decoration: none;
}
.btn-default.active,
.btn-grey.active,
.btn-default:active,
.btn-grey:active {
  background-color: #b7b7b7;
  color: #757575;
  border-color: #b7b7b7;
  text-decoration: none;
}
/*----- btn size ----*/
.disabled,
button[disabled] {
  cursor: not-allowed;
  filter: alpha(opacity=55);
  -webkit-box-shadow: none;
  box-shadow: none;
  opacity: 0.55;
}
.btn-lg {
  font-size: 20px;
  padding: 7px 24px;
}
.btn-sm {
  font-size: 14px;
  line-height: 22px;
  padding: 3px 10px;
}
.btn-xs {
  font-size: 11px;
  line-height: 20px;
  font-weight: 400;
  padding: 2px 10px 0;
}
.btn-block {
  display: block;
}
/*---------------------------------------- Radio ---------------------------------------*/
.form-group-title {
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 8px;
}
.form-group label span {
  color: #999999;
}
.form-checkbox,
.form-radio {
  position: relative;
  margin-bottom: 8px;
  cursor: pointer;
}
.form-checkbox input[type="radio"]:disabled + label,
.form-radio input[type="radio"]:disabled + label,
.form-checkbox input[type="checkbox"]:disabled + label,
.form-radio input[type="checkbox"]:disabled + label {
  color: #757575;
  cursor: not-allowed;
}
.form-checkbox input[type="radio"]:disabled + label:hover:before,
.form-radio input[type="radio"]:disabled + label:hover:before,
.form-checkbox input[type="checkbox"]:disabled + label:hover:before,
.form-radio input[type="checkbox"]:disabled + label:hover:before {
  color: #eee;
  width: 17px;
  height: 17px;
}
.form-checkbox input[type="radio"]:disabled + label:before,
.form-radio input[type="radio"]:disabled + label:before,
.form-checkbox input[type="checkbox"]:disabled + label:before,
.form-radio input[type="checkbox"]:disabled + label:before {
  color: #eee;
}
.form-checkbox input[type="radio"],
.form-radio input[type="radio"],
.form-checkbox input[type="checkbox"],
.form-radio input[type="checkbox"] {
  display: none;
  cursor: pointer;
}
.form-checkbox input[type="radio"]:checked + label,
.form-radio input[type="radio"]:checked + label,
.form-checkbox input[type="checkbox"]:checked + label,
.form-radio input[type="checkbox"]:checked + label {
  font-weight: 600;
  cursor: pointer;
}
.form-checkbox input[type="radio"] + label,
.form-radio input[type="radio"] + label,
.form-checkbox input[type="checkbox"] + label,
.form-radio input[type="checkbox"] + label {
  display: block;
  font-size: 13px;
  line-height: 1.3;
}
.form-checkbox input[type="radio"] + label:before,
.form-radio input[type="radio"] + label:before,
.form-checkbox input[type="checkbox"] + label:before,
.form-radio input[type="checkbox"] + label:before {
  float: left;
  font-size: 22px;
  margin-right: 8px;
  line-height: 0.7em;
  font-weight: normal;
  color: #ccc;
  width: 17px;
  height: 17px;
  background: url('/img_glb/form-sprites.png') no-repeat;
  cursor: pointer;
  vertical-align: bottom;
}
.form-checkbox input[type="radio"] + label:hover,
.form-radio input[type="radio"] + label:hover,
.form-checkbox input[type="checkbox"] + label:hover,
.form-radio input[type="checkbox"] + label:hover {
  cursor: pointer;
}
.form-checkbox input[type="radio"] + label:hover:before,
.form-radio input[type="radio"] + label:hover:before,
.form-checkbox input[type="checkbox"] + label:hover:before,
.form-radio input[type="checkbox"] + label:hover:before {
  -webkit-transition: all 0.3s fade;
  -o-transition: all 0.3s fade;
  transition: all 0.3s fade;
}
.form-radio input[type="radio"] + label:before {
  display: inline-block;
  content: '';
  background-position: 0px 0px;
}
.form-radio input[type="radio"]:checked + label:before {
  display: inline-block;
  content: '';
  background-position: 0px -20px;
}
.form-checkbox input[type="checkbox"] + label:before {
  display: inline-block;
  content: '';
  background-position: -20px 0px;
}
.form-checkbox input[type="checkbox"]:checked + label:before {
  display: inline-block;
  font-family: "my11street";
  content: '';
  background-position: -20px -20px;
}
/*------- text input ----------*/
.form-control {
  display: block;
  width: 100%;
  padding: 10px 8px;
  font-size: 13px;
  line-height: 20px;
  height: 30px;
  color: #757575;
  background-color: #fff;
  background-image: none;
  border: 1px solid #cccccc;
  border-radius: 4px;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  -webkit-transition: ease all 0.3s;
  -o-transition: ease all 0.3s;
  transition: ease all 0.3s;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.form-control:hover {
  border-color: #d9d9d9;
}
.form-control:focus {
  border-color: #b3b3b3;
  outline: 0;
}
.form-control[disabled],
.form-control[readonly],
.form-controlfieldset[disabled] {
  background-color: #f2f2f2;
  border-color: #f2f2f2;
  cursor: not-allowed;
  opacity: 0.9;
}
.form-control::-webkit-input-placeholder {
  color: #b3b3b3;
}
.form-control::-moz-placeholder {
  color: #999999;
}
.form-control:-ms-input-placeholder {
  color: #b3b3b3;
}
.form-control:-moz-placeholder {
  color: #999999;
}
.form-control.form-inline-input {
  display: inline-block;
}
/*-------------- drop down Menu ------------*/
.select-style {
  position: relative;
}
.select-style:after {
  content: '';
  background: url(/img_glb/common/icon/select-arrow.png);
  position: absolute;
  line-height: 40px;
  right: 16px;
  top: 2px;
}
select.form-control {
  appearance: none;
  -ms-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  background: transparent;
}
select.form-control::-ms-expand {
  display: none;
}
.form-control:after {
  pointer-events: none;
}
/*-------------jquery slider--------------*/
/* price slider */
.form-slider {
  height: 24px;
  display: block;
  padding-top: 12px;
  margin: 8px 0px;
}
.ui-widget-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.ui-slider {
  position: relative;
  text-align: left;
  background: #cccccc;
}
.ui-slider.ui-slider-horizontal {
  height: 4px;
}
.ui-slider.ui-state-disabled .ui-slider-handle,
.ui-slider.ui-state-disabled .ui-slider-range {
  -webkit-filter: inherit;
  filter: inherit;
}
.ui-slider .ui-slider-handle {
  position: absolute;
  background: url('/img_glb/common/icon/slider-handle.png') no-repeat;
  z-index: 2;
  width: 17px;
  height: 17px;
  cursor: pointer;
  -ms-touch-action: pointer;
  touch-action: pointer;
  top: -8px;
  outline: none;
}
.ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  top: -1px;
  height: 100%;
}
.ui-slider .ui-widget-header {
  background: #4c6ccd;
}
/*-------------------- 0 Listing Filter -----------------*/
.cta-view {
  display: inline-block;
  width: 18px;
  height: 20px;
  padding-top: 5px;
  margin-left: 5px;
}
.cta-view i {
  width: 18px;
  height: 20px;
  display: block;
  cursor: pointer;
}
.cta-view .icon-grid {
  background-position: -255px -23px;
}
.cta-view .icon-list {
  background-position: -282px -23px;
}
.cta-view.selected .icon-grid {
  background-position: -255px -1px;
}
.cta-view.selected .icon-list {
  background-position: -282px -1px;
}
select::-ms-expand {
  display: none;
}
.product-listing-section-sorting {
  display: inline-block;
  width: 55%;
  float: right;
  text-align: right;
}
.product-listing-section-sorting label {
  color: #757575;
  font-size: 14px;
  font-weight: 600;
  margin-right: 5px;
  margin-left: 8px;
  line-height: 2.2em;
  vertical-align: bottom;
}
.product-listing-section-sorting .cta-view {
  line-height: 2.2em;
  vertical-align: top;
}
.product-listing-section-sorting .select-style {
  display: inline-block;
  margin-left: 5px;
}
.product-listing-section-sorting .select-style .form-control {
  padding: 0px 30px 0px 10px;
}
.product-listing-section-sorting .select-sorting {
  width: 180px;
}
.product-listing-section-sorting .select-style {
  content: '';
  background: url('/img_glb/common/icon/select-arrow.png') no-repeat;
  background-position: right;
  line-height: 30px;
  z-index: 1;
  background-size: 22px 20px;
}
.product-listing-section-sorting .select-style::-ms-expand,
.product-listing-section-sorting .select-style:-ms-expand {
  display: none;
}
/*---------------------1.0 - General Style for Grid and List view------------------*/
body {
  line-height: 1;
}
.product-item-sprites {
  background: url('/img_glb/product-listing-sprites.png') no-repeat;
  background-size: 300px 300px;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  display: inline-block;
}
.product-item-list {
  *zoom: 1;
  padding: 0;
  list-style: none;
  width: 100%;
  font-family: 'Roboto', Verdana;
}
.product-item-list:before,
.product-item-list:after {
  content: '';
  display: table;
}
.product-item-list:after {
  clear: both;
}
.product-item-list * {
  color: #212121;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-item-list .product-item {
  position: relative;
  outline: 0px;
}
.product-item-list .product-item-link-review:hover,
.product-item-list .product-item-link-seller:hover,
.product-item-list .product-item-name a:hover {
  color: #4c6ccd;
}
.product-item-list .product-item-card {
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -moz-transition: all 50ms;
  -ms-transition: all 50ms;
  -webkit-transition: all 50ms;
  -o-transition: all 50ms;
  transition: all 50ms;
}
.product-item-list .product-item-card:hover {
  -moz-transition: all 100ms;
  -ms-transition: all 100ms;
  -webkit-transition: all 100ms;
  -o-transition: all 100ms;
  transition: all 100ms;
}
.product-item-list .product-item-image-wrapper {
  position: relative;
  background-color: #f1f1f1;
  display: block;
  border: 1px solid #f1f1f1;
}
.product-item-list .product-item-meta-block {
  display: block;
}
.product-item-list .product-item-selling-price span {
  float: left;
}
.product-item-list .product-item-selling-price:after {
  content: '';
  display: table;
  clear: both;
}
.product-item-list .product-item-rating-placeholder {
  display: block;
  height: 12px;
  padding: 0px;
  margin-bottom: 8px;
  vertical-align: text-top;
}
.product-item-list .rank {
  background: url('/img_glb/product-listing-sprites.png') no-repeat;
  background-size: 300px 300px;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  display: inline-block;
  background-position: -30px -69px;
  width: 27px;
  height: 31px;
  font-size: 13px;
  position: absolute;
  color: #fff;
  font-weight: 500;
  text-align: center;
  line-height: 1.7;
  z-index: 2;
}
.product-item-list .rank.num,
.product-item-list .rank.num1,
.product-item-list .rank.num2,
.product-item-list .rank.num3 {
  background: url('/img_glb/product-listing-sprites.png') no-repeat;
  background-size: 300px 300px;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  display: inline-block;
  background-position: 0px -69px;
}
.product-item-list .product-item-header {
  position: relative;
}
.product-item-list .product-item-header .click {
  background-color: #f22a2c;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  position: absolute;
  display: block;
  width: 100%;
  border: 2px solid #f22a2c;
  margin-top: -24px;
}
.product-item-list .product-item.clickitem .product-item-card {
  border: 2px solid #f22a2c !important;
}
.product-item-list .product-item.clickitem .product-item-header {
  position: relative;
}
.product-item-list .product-item.clickitem .product-item-header .click {
  background-color: #f22a2c;
  text-align: center;
  font-weight: 500;
  color: #fff;
  font-size: 12px;
  padding: 5px;
  position: absolute;
  display: block;
  width: 100%;
  border: 2px solid #f22a2c;
  margin-top: -24px;
}
.product-item-list .oversea {
  background: url('/img_glb/common/icon/oversea.png') transparent 0 2px no-repeat;
  text-indent: 17px;
}
/*--------------------------2.0 - General Grid View Style ------------------------------*/
.product-item-list.grid-view {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -webkit-justify-content: flex-start;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  /*---------- Shocking Deals ----------*/
  /*-------- Block -----------*/
  /*-------- Placeholder ---------*/
  /*-------- product rating ---------*/
  /*----- product pricing---*/
  /*------------- product installment plan--------*/
  /*------------- product badge --------------*/
  /*---------- product seller and seller rating ---------*/
}
.product-item-list.grid-view .product-item-thumbnail-list,
.product-item-list.grid-view .product-item-status-list,
.product-item-list.grid-view .product-item-promotion-content {
  display: none;
}
.product-item-list.grid-view .product-item {
  float: left;
  margin-right: 20px;
  margin-bottom: 40px;
}
.product-item-list.grid-view .product-item:hover .product-item-rank,
.product-item-list.grid-view .product-item:hover .rank {
  z-index: 10;
}
.product-item-list.grid-view .product-item-card:hover {
  z-index: 9;
}
.product-item-list.grid-view .product-item-card:hover .product-item-image-wrapper {
  border: 1px solid #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-item-list.grid-view .product-item-name {
  font-family: 'Roboto', verdana;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 400;
  margin-top: 10px;
  margin-bottom: 0px;
  display: -webkit-box;
  display: box;
  height: 2.4em;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -ms-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-box-orient: vertical;
  box-orient: vertical;
  overflow: hidden;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
}
.product-item-list.grid-view .product-item-name * {
  line-height: 1.25;
}
.product-item-list.grid-view .product-item-emphasis {
  width: 55px;
  height: auto;
  list-style: none;
  position: absolute;
  right: 0px;
}
.product-item-list.grid-view .product-item-emphasis li {
  width: 52px;
  display: inline-block;
}
.product-item-list.grid-view .product-item-emphasis .icon-shocking-deals {
  width: 52px;
  height: 30px;
  background-position: -248px -95px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.grid-view .product-item-emphasis .icon-madness-sale {
  width: 52px;
  height: 30px;
  background-position: -240px -95px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.grid-view .product-item-emphasis .icon-shocking-deals-plus {
  width: 50px;
  height: 44px;
  background-position: -250px -50px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.grid-view .product-item-description-block {
  position: relative;
  display: block;
}
.product-item-list.grid-view .product-item-seller-placeholder {
  position: absolute;
  top: 100px;
  width: 100%;
  display: block;
  *zoom: 1;
}
.product-item-list.grid-view .product-item-seller-placeholder:before,
.product-item-list.grid-view .product-item-seller-placeholder:after {
  content: '';
  display: table;
}
.product-item-list.grid-view .product-item-seller-placeholder:after {
  clear: both;
}
.product-item-list.grid-view .product-item-badges-placeholder {
  display: block;
  height: 33px;
  width: 140px;
  position: absolute;
  *zoom: 1;
}
.product-item-list.grid-view .product-item-badges-placeholder:before,
.product-item-list.grid-view .product-item-badges-placeholder:after {
  content: '';
  display: table;
}
.product-item-list.grid-view .product-item-badges-placeholder:after {
  clear: both;
}
.product-item-list.grid-view .product-item-price-placeholder {
  display: block;
  margin-top: 3px;
}
.product-item-list.grid-view .product-item-rating {
  line-height: 0px;
  background-position: -125px -15px;
  width: 64px;
  height: 11px;
  display: inline-block;
  margin-right: 3px !important;
}
.product-item-list.grid-view .product-item-rating-star {
  background-position: -125px 0px;
  overflow: hidden;
  height: 11px;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-0 {
  width: 0%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-5 {
  width: 10%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-10 {
  width: 20%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-15 {
  width: 30%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-20 {
  width: 40%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-25 {
  width: 50%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-30 {
  width: 60%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-35 {
  width: 71%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-40 {
  width: 80%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-45 {
  width: 91%;
}
.product-item-list.grid-view .product-item-rating-star.rating-star-50 {
  width: 100%;
}
.product-item-list.grid-view .product-item-review-number {
  font-size: 11px;
  color: #757575;
  display: inline-block;
  line-height: 17px;
  vertical-align: bottom;
}
.product-item-list.grid-view .product-item-selling-price {
  font-size: 22px;
  font-weight: 600;
}
.product-item-list.grid-view .product-item-original-price {
  display: inline-block;
  font-size: 12px;
  text-decoration: line-through;
  margin-right: 3px;
}
.product-item-list.grid-view .product-item-original-price span {
  color: #757575;
  margin-right: 0px;
}
.product-item-list.grid-view .product-item-price-currency {
  margin-right: 5px;
}
.product-item-list.grid-view .product-item-deal {
  display: inline-block;
  color: #f22a2c;
  font-size: 12px;
  font-weight: 600;
  line-height: 15px;
  text-transform: uppercase;
}
.product-item-list.grid-view .product-item-installment-plan,
.product-item-list.grid-view .product-item-installment-plan span {
  font-size: 12px;
  color: #757575;
  margin-top: 5px;
}
.product-item-list.grid-view .product-item-badge-list {
  width: 100%;
  display: block;
}
.product-item-list.grid-view .product-item-badge {
  display: inline-block;
  margin-right: 8px;
}
.product-item-list.grid-view .product-item-badge span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.grid-view .product-item-badge span.product-item-sprites {
  display: block;
  width: 33px;
  height: 30px;
}
.product-item-list.grid-view .product-item-badge .badge-free-shipping {
  background-position: 0px 0px;
}
.product-item-list.grid-view .product-item-badge .badge-lowest-price {
  background-position: -43px 0px;
}
.product-item-list.grid-view .product-item-badge .badge-official-seller {
  background-position: -82px 0px;
}
.product-item-list.grid-view .product-item-seller {
  padding: 0px;
  font-size: 12px;
}
.product-item-list.grid-view .product-item-seller dt {
  font-weight: 400;
  color: #757575;
  margin-bottom: 1px;
  line-height: 1.2;
}
.product-item-list.grid-view .product-item-seller dt strong {
  color: #212121;
  font-weight: 500;
  margin-left: 3px;
  white-space: normal;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating {
  display: inline-block;
  background-position: -125px -45px;
  width: 60px;
  height: 11px;
  padding: 0px;
  line-height: 8px;
  vertical-align: top;
  margin-top: 5px;
  margin-right: 5px;
  line-height: 0px;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star {
  background-position: -125px -31px;
  overflow: hidden;
  height: 11px;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-0 {
  width: 0%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-5 {
  width: 10%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-10 {
  width: 20%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-15 {
  width: 31%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-20 {
  width: 40%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-25 {
  width: 51%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-30 {
  width: 60%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-35 {
  width: 72%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-40 {
  width: 80%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-45 {
  width: 92%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating-star.rating-star-50 {
  width: 100%;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-rating span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-power {
  display: inline-block;
  font-size: 11px;
  line-height: 13px;
  vertical-align: bottom;
  color: #666666;
}
.product-item-list.grid-view .product-item-seller .product-item-seller-power:before {
  display: inline-block;
  width: 12px;
  height: 14px;
  content: '';
  background: url('/img_glb/product-listing-sprites.png') no-repeat;
  background-size: 300px 300px;
  background-position: -200px 0px;
  vertical-align: top;
  line-height: 5px;
  margin-right: 2px;
}
/*---------------------------------  3.1 - Grid 4 Column ---------------------*/
/*---------- 4 column with midwidth with border 980px or default style----------*/
.product-item-list.grid-view.four-column-view {
  border-top: 1px solid #ddd;
}
.product-item-list.grid-view.four-column-view .product-item {
  width: 245px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.product-item-list.grid-view.four-column-view .product-item:nth-child(4n) .product-item-card,
.product-item-list.grid-view.four-column-view .product-item:nth-of-type(4n) .product-item-card {
  border-right: 0px;
}
.product-item-list.grid-view.four-column-view .product-item {
  height: 405px;
}
.product-item-list.grid-view.four-column-view .product-item .product-item-card {
  padding: 10px;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 245px;
  height: 405px;
  overflow: hidden;
}
.product-item-list.grid-view.four-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
  overflow: hidden;
  width: 225px;
  height: 225px;
}
.product-item-list.grid-view.four-column-view .product-item .product-item-image-wrapper img {
  width: 100%;
  height: auto;
}
.product-item-list.grid-view.four-column-view .product-item .product-item-image,
.product-item-list.grid-view.four-column-view .product-item .product-item-name .product-item-link {
  width: 205px;
  display: block;
}
.product-item-list.grid-view.four-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.product-item-list.grid-view.four-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.product-item-list.grid-view.four-column-view .product-item:hover .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.product-item-list.grid-view.four-column-view .product-item:hover .product-item-card {
  width: 265px;
  height: 485px;
  padding: 20px;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---- // 4 column with midwidth with border 980px or Default width-----*/
/*---------- 4 column with smallwidth with border, 730px ----------*/
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view {
  border-top: 1px solid #ddd;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item {
  width: 182.5px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:nth-child(4n) .product-item-card,
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:nth-of-type(4n) .product-item-card {
  border-right: 0px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item-selling-price {
  font-size: 18px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item {
  height: 330px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-card {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 182.5px;
  height: 330px;
  overflow: hidden;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 142.5px;
  height: 142.5px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-image {
  width: 142.5px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.smallwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:hover .product-item-card {
  width: 187.5px;
  height: 415px;
  padding: 25px 18px 20px 23px;
  margin-left: -3px;
  margin-top: -5px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---------- 4 column with fullwidth with border, 1180px ----------*/
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view {
  border-top: 1px solid #ddd;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item {
  width: 295px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:nth-child(4n) .product-item-card,
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:nth-of-type(4n) .product-item-card {
  border-right: 0px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item {
  height: 445px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-card {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 295px;
  height: 445px;
  overflow: hidden;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 255px;
  height: 255px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-image {
  width: 255px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.fullwidth-bordered-list .product-item-list.grid-view.four-column-view .product-item:hover .product-item-card {
  width: 300px;
  height: 510px;
  padding: 25px 18px 20px 23px;
  margin-left: -3px;
  margin-top: -5px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*----------- // 4 column fullwidht 1180 bordered ----------------*/
/*----------------- 4 column 940px with NO border -----------*/
.product-item-list.grid-view.four-column-view.borderless {
  border-top: 0px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.product-item-list.grid-view.four-column-view.borderless .product-item {
  width: 220px;
  height: 385px;
  margin-bottom: 40px;
  margin-right: 20px;
}
.product-item-list.grid-view.four-column-view.borderless .product-item:nth-child(4n) {
  margin-right: 0px;
}
.product-item-list.grid-view.four-column-view.borderless .product-item:nth-of-type(4n) {
  margin-right: -1px;
}
.product-item-list.grid-view.four-column-view.borderless .product-item-image-wrapper {
  overflow: hidden;
  width: 218px;
  height: 218px;
}
.product-item-list.grid-view.four-column-view.borderless .product-item-image {
  width: 218px;
}
.product-item-list.grid-view.four-column-view.borderless .product-item-seller-placeholder {
  top: 160px;
}
.product-item-list.grid-view.four-column-view.borderless .product-item-card {
  width: 220px;
  height: 385px;
  overflow: hidden;
  padding: 0px;
  border-bottom: 0px solid #ddd;
  border-right: 0px solid #ddd;
  border: 1px solid #ffffff;
}
.product-item-list.grid-view.four-column-view.borderless .product-item-card:hover {
  width: 240px;
  height: 455px;
  margin-left: -10px;
  margin-top: -10px;
  padding: 10px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*-------------------------------------  3.2 - Grid 3 Column ----------------------------*/
/*---------- 3 column with midwidth with border 980px or Default ----------*/
.product-item-list.grid-view.three-column-view {
  border-top: 1px solid #ddd;
}
.product-item-list.grid-view.three-column-view .product-item {
  width: 326.66666667px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.product-item-list.grid-view.three-column-view .product-item:nth-child(3n) .product-item-card,
.product-item-list.grid-view.three-column-view .product-item:nth-of-type(3n) .product-item-card {
  border-right: 0px;
}
.product-item-list.grid-view.three-column-view .product-item {
  height: 490px;
}
.product-item-list.grid-view.three-column-view .product-item .product-item-card {
  padding: 10px;
  border: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 326.66666667px;
  height: 490px;
  overflow: hidden;
}
.product-item-list.grid-view.three-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.product-item-list.grid-view.three-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 306.66666667px;
  height: 306.66666667px;
}
.product-item-list.grid-view.three-column-view .product-item .product-item-image {
  width: 306.66666667px;
}
.product-item-list.grid-view.three-column-view .product-item .product-item-seller-placeholder {
  top: 180px;
}
.product-item-list.grid-view.three-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.product-item-list.grid-view.three-column-view .product-item:hover .product-item-card {
  width: 346.66666667px;
  height: 570px;
  padding: 20px;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---- // bordered midWidth 980 - 3 column or default style -----*/
/*---------- 3 column with fullwidth with border, 1180px ----------*/
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view {
  border-top: 1px solid #ddd;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item {
  width: 393.33333333px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:nth-child(3n) .product-item-card,
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:nth-of-type(3n) .product-item-card {
  border-right: 0px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item {
  height: 540px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-card {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 393.33333333px;
  height: 540px;
  overflow: hidden;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 353.33333333px;
  height: 353.33333333px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-image {
  width: 353.33333333px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.fullwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:hover .product-item-card {
  width: 398.33333333px;
  height: 605px;
  padding: 25px 18px 20px 23px;
  margin-left: -3px;
  margin-top: -5px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---- // 3 column fullwidht 1180 bordered ----*/
/*---------- 3 column with Smallwidth with border, 730px ----------*/
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view {
  border-top: 1px solid #ddd;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item {
  width: 243.33333333px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:nth-child(3n) .product-item-card,
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:nth-of-type(3n) .product-item-card {
  border-right: 0px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item {
  height: 395px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-card {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 243.33333333px;
  height: 395px;
  overflow: hidden;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 203.33333333px;
  height: 203.33333333px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-image {
  width: 203.33333333px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.smallwidth-bordered-list .product-item-list.grid-view.three-column-view .product-item:hover .product-item-card {
  width: 248.33333333px;
  height: 470px;
  padding: 25px 18px 20px 23px;
  margin-left: -3px;
  margin-top: -5px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---- // 3 column smallwidht 730 bordered ----*/
/*-----------------   Grid 3 Column (Width 940px) no border---------------*/
.product-item-list.grid-view.three-column-view.borderless {
  border-top: 0px;
}
.product-item-list.grid-view.three-column-view.borderless .product-item {
  width: 300px;
  height: 460px;
  margin-right: 20px;
  margin-bottom: 40px;
}
.product-item-list.grid-view.three-column-view.borderless .product-item:nth-child(3n) {
  margin-right: 0px;
}
.product-item-list.grid-view.three-column-view.borderless .product-item:nth-of-type(3n) {
  margin-right: -1px;
}
.product-item-list.grid-view.three-column-view.borderless .product-item-card {
  width: 300px;
  height: 460px;
  overflow: hidden;
  padding: 0px;
  border-bottom: 0px solid #ddd;
  border-right: 0px solid #ddd;
  border: 1px solid #ffffff;
}
.product-item-list.grid-view.three-column-view.borderless .product-item-card:hover {
  width: 320px;
  height: 530px;
  margin-left: -10px;
  margin-top: -10px;
  padding: 10px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
.product-item-list.grid-view.three-column-view.borderless .product-item-image-wrapper {
  overflow: hidden;
  width: 298px;
  height: 298px;
}
.product-item-list.grid-view.three-column-view.borderless .product-item-image {
  width: 298px;
}
.product-item-list.grid-view.three-column-view.borderless .product-item-seller-placeholder {
  top: 167px;
}
/*---------------------------------  3.3 - Grid 5 Column ------------------------------*/
/*---------- 5 column with midwidth with bordered 980px or default ----------*/
.product-item-list.grid-view.five-column-view {
  border-top: 1px solid #ddd;
}
.product-item-list.grid-view.five-column-view .product-item {
  width: 196px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.product-item-list.grid-view.five-column-view .product-item:nth-child(5n) .product-item-card,
.product-item-list.grid-view.five-column-view .product-item:nth-of-type(5n) .product-item-card {
  border-right: 0px;
}
.product-item-list.grid-view.five-column-view .product-item {
  height: 360px;
}
.product-item-list.grid-view.five-column-view .product-item .product-item-card {
  padding: 10px;
  border-top: 1px solid transparent;
  border-left: 1px solid transparent;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 196px;
  height: 360px;
  overflow: hidden;
}
.product-item-list.grid-view.five-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 176px;
  height: 176px;
  border: 0px solid #ffffff;
}
.product-item-list.grid-view.five-column-view .product-item .product-item-image {
  width: 176px;
}
.product-item-list.grid-view.five-column-view .product-item .product-item-seller-placeholder {
  top: 170px;
}
.product-item-list.grid-view.five-column-view .product-item:hover .product-item-card {
  width: 216px;
  height: 440px;
  padding: 20px;
  margin-left: -10px;
  margin-top: -10px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*------- //  mid width 980px 5 column bordered or default-----*/
/*---------- 5 column with fullwidth with border 1180px ----------*/
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view {
  border-top: 1px solid #ddd;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item {
  width: 236px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:nth-child(5n) .product-item-card,
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:nth-of-type(5n) .product-item-card {
  border-right: 0px;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item {
  height: 390px;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-card {
  padding: 20px;
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 236px;
  height: 390px;
  overflow: hidden;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 196px;
  height: 196px;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-image,
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-name .product-item-link {
  width: 196px;
  display: block;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.fullwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:hover .product-item-card {
  width: 241px;
  height: 455px;
  padding: 25px 18px 20px 23px;
  margin-left: -3px;
  margin-top: -5px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---------- 5 column with smallwidth with border 730px ----------*/
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view {
  border-top: 1px solid #ddd;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item {
  width: 146px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 0px;
  margin-bottom: 0px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:nth-child(5n) .product-item-card,
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:nth-of-type(5n) .product-item-card {
  border-right: 0px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item-selling-price {
  font-size: 18px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item {
  height: 310px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-card {
  border-bottom: 1px solid #ddd;
  border-right: 1px solid #ddd;
  width: 146px;
  height: 310px;
  overflow: hidden;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-image-wrapper {
  overflow: hidden;
  width: 126px;
  height: 126px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-image {
  width: 126px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-name,
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item .product-item-seller {
  width: 126px;
  display: block;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:hover .product-item-rank {
  margin-top: -5px;
  margin-left: -2px;
}
.smallwidth-bordered-list .product-item-list.grid-view.five-column-view .product-item:hover .product-item-card {
  width: 151px;
  height: 400px;
  padding: 15px 8px 10px 13px;
  margin-left: -3px;
  margin-top: -5px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
/*---------------------------------  3.3 - Grid 5 Column (Width 940px)---------------------*/
.product-item-list.grid-view.five-column-view.borderless {
  border-top: 0px;
}
.product-item-list.grid-view.five-column-view.borderless .product-item {
  width: 172px;
  height: 335px;
  margin-right: 20px;
  margin-bottom: 40px;
}
.product-item-list.grid-view.five-column-view.borderless .product-item:nth-child(5n) {
  margin-right: 0px;
}
.product-item-list.grid-view.five-column-view.borderless .product-item:nth-of-type(5n) {
  margin-right: -1px;
}
.product-item-list.grid-view.five-column-view.borderless .product-item-card {
  width: 172px;
  height: 335px;
  overflow: hidden;
  padding: 0px;
  border-bottom: 0px solid #ddd;
  border-right: 0px solid #ddd;
  border: 1px solid #ffffff;
}
.product-item-list.grid-view.five-column-view.borderless .product-item-card:hover {
  width: 192px;
  height: 405px;
  margin-left: -10px;
  margin-top: -10px;
  padding: 10px;
  position: absolute;
  z-index: 5;
  border: 1px solid #cccccc;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
.product-item-list.grid-view.five-column-view.borderless .product-item-image-wrapper {
  overflow: hidden;
  width: 170px;
  height: 170px;
}
.product-item-list.grid-view.five-column-view.borderless .product-item-image {
  width: 170px;
}
.product-item-list.grid-view.five-column-view.borderless .product-item-seller-placeholder {
  top: 155px;
}
/*------------------------------ 3.4 sponsored grid view ----------------------------------*/
.sponsored-products-section {
  padding: 15px 20px;
  position: relative;
}
.sponsored-products-section a:-webkit-any-link {
  text-decoration: none !important;
}
.sponsored-products-section .product-item:hover .product-item-name {
  text-decoration: underline !important;
}
.sponsored-products-section .product-item {
  margin-right: 20px;
  margin-bottom: 20px;
}
.sponsored-products-section .section-title {
  font-size: 14px;
  display: inline-block;
}
.sponsored-products-section .sponsored-products-note {
  position: absolute;
  left: 180px;
  top: 15px;
}
.sponsored-products-section .sponsored-ads-info {
  background-position: -215px -335px;
}
.sponsored-products-section .product-item-list {
  margin: 5px auto 0px;
}
/*---------- Sponsored fullwidth ---------*/
.fullwidth .product-item-list.sponsored-products-list {
  /*---------- Sponsore fullwidth  5 column---------*/
  /*---------- Sponsore fullwidth  4 column---------*/
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view {
  height: 300px;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item {
  width: 212px;
  height: 300px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 20px;
  margin-bottom: 0px;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item:nth-child(5n) {
  margin-right: 0px;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item:nth-of-type(5n) {
  margin-right: -1px;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item .product-item-card {
  width: 212px;
  height: 300px;
  overflow: hidden;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
  overflow: hidden;
  width: 212px;
  height: 212px;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item .product-item-name,
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item .product-item-price-placeholder {
  width: 212px;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item .product-item-image {
  width: 212px;
  height: auto;
}
.fullwidth .product-item-list.sponsored-products-list.five-column-view.grid-view .product-item .product-item-seller-placeholder {
  top: 165px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view {
  border-top: 0px;
  height: 365px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item {
  width: 270px;
  height: 365px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-right: 20px;
  margin-bottom: 0px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item:nth-child(4n) {
  margin-right: 0px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item:nth-of-type(4n) {
  margin-right: -1px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item .product-item-card {
  border: 0px;
  padding: 0px;
  width: 270px;
  height: 365px;
  overflow: hidden;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item .product-item-card:hover {
  padding: 0px;
  margin: 0px;
  width: 270px;
  height: 365px;
  background: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item .product-item-image-wrapper {
  border: 0px solid #ffffff;
  overflow: hidden;
  width: 270px;
  height: 270px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item .product-item-name,
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item .product-item-price-placeholder {
  width: 270px;
}
.fullwidth .product-item-list.sponsored-products-list.four-column-view.grid-view .product-item .product-item-image {
  width: 270px;
  height: auto;
}
/*---------- Sponsored width 940px page 5 column---------*/
.product-item-list.sponsored-products-list.five-column-view.grid-view {
  height: 256px;
  overflow: hidden;
  border-top: 0px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-image-wrapper:hover {
  border: 0px solid transparent;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item {
  width: 164px;
  height: 256px;
  margin-bottom: 0px;
  margin-right: 20px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item:last-child,
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item:nth-child(5n) {
  margin-right: 0px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item:nth-of-type(5n) {
  margin-right: -1px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .slick-track .product-item:last-child,
.product-item-list.sponsored-products-list.five-column-view.grid-view .slick-track .product-item:nth-child(5n),
.product-item-list.sponsored-products-list.five-column-view.grid-view .slick-track .product-item:nth-of-type(5n) {
  margin-right: 20px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-image-wrapper {
  border: 0px solid #edf1fa;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-name,
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-price-placeholder {
  width: 164px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-image,
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-image-wrapper {
  width: 164px;
  height: 164px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-card {
  height: 256px;
  overflow: default;
  border: 0px solid #fff;
  padding: 0px;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-card:hover {
  width: 164px;
  height: 256px;
  margin-left: 0px;
  margin-top: 0px;
  padding: 0px;
  position: relative;
  z-index: 1;
  border: 0px solid #cccccc;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.product-item-list.sponsored-products-list.five-column-view.grid-view .product-item-card:hover .product-item-image-wrapper {
  border: 0px;
}
/*---------- Sponsored width 940px page 4 column---------*/
.product-item-list.sponsored-products-list.four-column-view.grid-view {
  height: 300px;
  overflow: hidden;
  border-top: 0px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-image-wrapper:hover {
  border: 0px solid transparent;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item {
  width: 210px;
  margin-bottom: 0px;
  margin-right: 20px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item:nth-child(4n) {
  margin-right: 0px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item:nth-of-type(4n) {
  margin-right: -1px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .slick-track .product-item:last-child,
.product-item-list.sponsored-products-list.four-column-view.grid-view .slick-track .product-item:nth-child(4n),
.product-item-list.sponsored-products-list.four-column-view.grid-view .slick-track .product-item:nth-of-type(4n) {
  margin-right: 20px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-image-wrapper {
  border: 0px solid #edf1fa;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-name,
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-price-placeholder {
  width: 210px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-image,
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-image-wrapper {
  width: 210px;
  height: 210px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-card {
  overflow: default;
  border: 0px solid #fff;
  padding: 0px;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-card:hover {
  width: 210px;
  margin-left: 0px;
  margin-top: 0px;
  padding: 0px;
  position: relative;
  z-index: 1;
  border: 0px solid #cccccc;
  background-color: transparent;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  box-shadow: none;
}
.product-item-list.sponsored-products-list.four-column-view.grid-view .product-item-card:hover .product-item-image-wrapper {
  border: 0px;
}
/*------------------------------ 3.5 inspired grid view ----------------------------------*/
.inspired-products-section {
  padding-top: 40px;
  position: relative;
  width: 940px;
  border-top: 1px solid #ddd;
  overflow: hidden;
}
.inspired-products-section-content {
  border: 1px solid #ddd;
  width: 940px;
  padding: 18px 0px;
  overflow: hidden;
}
.inspired-products-section .section-title {
  font-size: 16px;
  display: inline-block;
}
.inspired-products-section .product-item-list {
  margin: 5px auto 0px;
}
.product-item-list.inspired-products-list {
  padding-left: 20px;
}
.product-item-list.inspired-products-list.grid-view .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.product-item-list.inspired-products-list.grid-view .product-item-image-wrapper:hover {
  border: 0px solid #ffffff;
}
.product-item-list.inspired-products-list .product-item-card:hover .product-item-image-wrapper {
  border: 0px solid #ffffff;
}
.product-item-list.inspired-products-list .product-item {
  margin-right: 20px;
  margin-bottom: 0px;
  width: 210px;
  height: 310px;
}
.product-item-list.inspired-products-list .product-item:last-child {
  margin-right: 0px;
}
.product-item-list.inspired-products-list .product-item-image {
  width: 210px;
  height: 210px;
}
#container .slick-slider .slick-arrow {
  background: url('/img_glb/sprites.png') no-repeat;
  background-size: 600px 500px;
  image-rendering: optimizeSpeed;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: -o-crisp-edges;
  image-rendering: crisp-edges;
  -ms-interpolation-mode: nearest-neighbor;
  display: inline-block;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  position: absolute;
  z-index: 9;
  top: 50%;
  margin-top: -20px;
  cursor: pointer;
  outline: none;
}
#container .slick-slider .slick-arrow.slick-prev {
  background-position: 0px -55px;
  left: 0;
}
#container .slick-slider .slick-arrow.slick-next {
  background-position: -42px -55px;
  right: 0;
}
#container .slick-slider .slick-arrow.slick-disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  -moz-opacity: 0.5;
  -khtml-opacity: 0.5;
  opacity: 0.5;
  cursor: default;
}
#container .slick-slider .slick-arrow:hover.slick-prev:not(.slick-disabled) {
  background-position: 0px -95px;
}
#container .slick-slider .slick-arrow:hover.slick-next:not(.slick-disabled) {
  background-position: -42px -95px;
  right: 0;
}
/*--------------------------4.0 - General List View Style ------------------------------*/
.product-item-list.list-view {
  display: block;
  /*-------- Block -----------*/
  /*-------- Placeholder ---------*/
  /*----- image ---*/
  /*-------- product rating ---------*/
  /*----- product pricing---*/
  /*------------- product installment plan--------*/
  /*------------- product badge --------------*/
  /*---------- product seller and seller rating ---------*/
}
.product-item-list.list-view .product-item {
  border-bottom: 1px solid #dddddd;
  width: 940px;
  height: 259px;
  position: relative;
  display: block;
  *zoom: 1;
  padding-top: 18px;
}
.product-item-list.list-view .product-item:before,
.product-item-list.list-view .product-item:after {
  content: '';
  display: table;
}
.product-item-list.list-view .product-item:after {
  clear: both;
}
.product-item-list.list-view .product-item-card {
  display: block;
  width: 940px;
  height: 240px;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.product-item-list.list-view .product-item-card:hover {
  width: 1042px;
  height: 264px;
  padding: 22px 20px 22px 80px;
  z-index: 5;
  position: absolute;
  background-color: #ffffff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin-left: -80px;
  margin-top: -22px;
  border: 1px solid #cccccc;
  -webkit-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  -moz-box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
  box-shadow: 0px 2px 4px 1px rgba(89, 88, 89, 0.2);
}
.product-item-list.list-view .product-item-figure-block {
  position: relative;
  float: left;
  margin-right: 20px;
}
.product-item-list.list-view .product-item-description-block {
  position: relative;
  width: 460px;
  height: 220px;
  margin-right: 20px;
  float: left;
}
.product-item-list.list-view .product-item-meta-block {
  position: relative;
  float: left;
  width: 218px;
  height: 220px;
}
.product-item-list.list-view .product-item-seller-placeholder {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0px;
  *zoom: 1;
}
.product-item-list.list-view .product-item-seller-placeholder:before,
.product-item-list.list-view .product-item-seller-placeholder:after {
  content: '';
  display: table;
}
.product-item-list.list-view .product-item-seller-placeholder:after {
  clear: both;
}
.product-item-list.list-view .product-item-badges-placeholder {
  display: block;
  position: absolute;
  *zoom: 1;
}
.product-item-list.list-view .product-item-badges-placeholder:before,
.product-item-list.list-view .product-item-badges-placeholder:after {
  content: '';
  display: table;
}
.product-item-list.list-view .product-item-badges-placeholder:after {
  clear: both;
}
.product-item-list.list-view .product-item-price-placeholder {
  display: block;
  height: 78px;
  margin-top: 0px;
}
.product-item-list.list-view .product-item-image-wrapper {
  display: block;
  width: 220px;
  height: 220px;
}
.product-item-list.list-view .product-item-image-wrapper img {
  width: 100%;
}
.product-item-list.list-view .product-item-thumbnail-list {
  position: absolute;
  left: -60px;
  display: block;
  width: 60px;
  height: 220px;
  z-index: 5;
}
.product-item-list.list-view .product-item-thumbnail-list .product-item-thumbnail {
  width: 50px;
  height: 50px;
  margin-bottom: 5px;
}
.product-item-list.list-view .product-item-emphasis {
  width: 68px;
  height: 100%;
  list-style: none;
  position: absolute;
  right: 2px;
  z-index: 2px;
  text-align: left;
}
.product-item-list.list-view .product-item-emphasis .icon-madness-sale {
  font: 0/0 a;
  background-position: -240px -95px;
  width: 52px;
  height: 30px;
}
.product-item-list.list-view .product-item-emphasis li {
  display: inline-block;
}
.product-item-list.list-view .product-item-emphasis .icon-shocking-deals {
  width: 68px;
  height: 30px;
  margin-right: 2px;
  background-position: -232px -125px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.list-view .product-item-emphasis .icon-shocking-deals-plus {
  width: 60px;
  height: 56px;
  margin-left: 5px;
  background-position: -240px -153px;
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.list-view .product-item-status-list {
  font-size: 12px;
  margin-bottom: 5px;
  line-height: 1;
}
.product-item-list.list-view .product-item-status-list li {
  color: #757575;
  display: inline-block;
}
.product-item-list.list-view .product-item-status-list li:nth-child(2),
.product-item-list.list-view .product-item-status-list li:nth-of-type(2) {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid #757575;
}
.product-item-list.list-view .product-item-name {
  font-family: 'Roboto', verdana;
  font-size: 16px;
  line-height: 1.3;
  display: -webkit-box;
  display: box;
  height: 2.5em;
  overflow: hidden;
  -ms-box-orient: vertical;
  -moz-box-orient: vertical;
  -webkit-box-orient: vertical;
  -ms-line-clamp: 2;
  -moz-line-clamp: 2;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  box-orient: vertical;
  margin-bottom: 0px;
  font-weight: 400;
}
.product-item-list.list-view .product-item-rating {
  line-height: 0px;
  background-position: -125px -115px;
  width: 85px;
  height: 16px;
  display: inline-block;
  margin-top: 10px;
  margin-right: 5px;
}
.product-item-list.list-view .product-item-rating-star {
  background-position: -125px -95px;
  overflow: hidden;
  height: 16px;
}
.product-item-list.list-view .product-item-rating-star.rating-star-0 {
  width: 0%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-5 {
  width: 10%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-10 {
  width: 20%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-15 {
  width: 30%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-20 {
  width: 40%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-25 {
  width: 50%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-30 {
  width: 60%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-35 {
  width: 71%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-40 {
  width: 80%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-45 {
  width: 91%;
}
.product-item-list.list-view .product-item-rating-star.rating-star-50 {
  width: 100%;
}
.product-item-list.list-view .product-item-review-number {
  font-size: 12px;
  color: #757575;
  display: inline-block;
  line-height: 22px;
  vertical-align: bottom;
}
.product-item-list.list-view .product-item-promotion-content {
  display: block;
  line-height: 1.2;
  font-size: 14px;
  color: #757575;
  margin-top: 25px;
}
.product-item-list.list-view .product-item-selling-price {
  font-size: 22px;
  font-weight: 600;
}
.product-item-list.list-view .product-item-original-price {
  display: inline-block;
  font-size: 12px;
  text-decoration: line-through;
}
.product-item-list.list-view .product-item-original-price span {
  color: #757575;
  margin-right: 0px;
}
.product-item-list.list-view .product-item-price-currency {
  margin-right: 5px;
}
.product-item-list.list-view .product-item-deal {
  display: inline-block;
  color: #f22a2c;
  font-size: 12px;
  font-weight: 600;
}
.product-item-list.list-view .product-item-installment-plan,
.product-item-list.list-view .product-item-installment-plan span {
  font-size: 12px;
  color: #757575;
  margin-top: 5px;
}
.product-item-list.list-view .product-item-badge-list {
  width: 100%;
  display: block;
}
.product-item-list.list-view .product-item-badge {
  display: inline-block;
  margin-bottom: 2px;
}
.product-item-list.list-view .product-item-badge span {
  font-size: 12px;
  color: #757575;
  float: left;
  margin-right: 10px;
  line-height: 1.4;
}
.product-item-list.list-view .product-item-badge span.product-item-sprites {
  width: 20px;
  height: 20px;
}
.product-item-list.list-view .product-item-badge .badge-free-shipping {
  background-position: 0px -38px;
}
.product-item-list.list-view .product-item-badge .badge-lowest-price {
  background-position: -25px -38px;
}
.product-item-list.list-view .product-item-badge .badge-official-seller {
  background-position: -50px -38px;
}
.product-item-list.list-view .product-item-seller {
  padding: 0px;
  font-size: 12px;
}
.product-item-list.list-view .product-item-seller dt {
  font-weight: 400;
  color: #757575;
}
.product-item-list.list-view .product-item-seller dt strong {
  color: #212121;
  font-weight: 500;
  display: block;
  line-height: 1.4;
  font-size: 14px;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating {
  display: inline-block;
  background-position: -124px -75px;
  width: 66px;
  height: 12px;
  padding: 0px;
  line-height: 10px;
  vertical-align: top;
  margin-top: 7px;
  margin-right: 8px;
  line-height: 0px;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star {
  background-position: -124px -60px;
  overflow: hidden;
  height: 12px;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-0 {
  width: 0%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-5 {
  width: 10%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-10 {
  width: 20%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-15 {
  width: 31%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-20 {
  width: 40%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-25 {
  width: 52%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-30 {
  width: 60%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-35 {
  width: 72%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-40 {
  width: 80%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-45 {
  width: 92%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating-star.rating-star-50 {
  width: 100%;
}
.product-item-list.list-view .product-item-seller .product-item-seller-rating span {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.product-item-list.list-view .product-item-seller .product-item-seller-power {
  display: inline-block;
  font-size: 12px;
  line-height: 20px;
  vertical-align: bottom;
  color: #666666;
  margin-top: 2px;
}
.product-item-list.list-view .product-item-seller .product-item-seller-power:before {
  display: inline-block;
  width: 16px;
  height: 16px;
  content: '';
  background: url('/img_glb/product-listing-sprites.png') no-repeat;
  background-size: 300px 300px;
  background-position: -215px 0px;
  vertical-align: top;
  line-height: 5px;
  margin-right: 5px;
}
/*----------- Full width 1180px LIST VIEW --------*/
.fullwidth-bordered-list .product-item-list.list-view {
  display: block;
}
.fullwidth-bordered-list .product-item-list.list-view .product-item {
  width: 1180px;
  height: 259px;
}
.fullwidth-bordered-list .product-item-list.list-view .product-item-description-block {
  width: 698px;
}
.fullwidth-bordered-list .product-item-list.list-view .product-item-card {
  display: block;
  width: 1180px;
  height: 240px;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.fullwidth-bordered-list .product-item-list.list-view .product-item-card:hover {
  width: 1282px;
  height: 264px;
}
/*----------- // Full width 1180px LIST VIEW --------*/
/*----------- Mid width 980px LIST VIEW --------*/
.midwidth-bordered-list .product-item-list.list-view {
  display: block;
}
.midwidth-bordered-list .product-item-list.list-view .product-item {
  width: 980px;
  height: 259px;
}
.midwidth-bordered-list .product-item-list.list-view .product-item-description-block {
  width: 498px;
}
.midwidth-bordered-list .product-item-list.list-view .product-item-card {
  display: block;
  width: 980px;
  height: 240px;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.midwidth-bordered-list .product-item-list.list-view .product-item-card:hover {
  width: 1082px;
  height: 264px;
}
/*----------- small width 730px LIST VIEW --------*/
.smallwidth-bordered-list .product-item-list.list-view {
  display: block;
}
.smallwidth-bordered-list .product-item-list.list-view .product-item {
  width: 730px;
  height: 259px;
}
.smallwidth-bordered-list .product-item-list.list-view .product-item-description-block {
  width: 248px;
}
.smallwidth-bordered-list .product-item-list.list-view .product-item-status-list li:nth-child(2),
.smallwidth-bordered-list .product-item-list.list-view .product-item-status-list li:nth-of-type(2) {
  margin-left: 0px;
  padding-left: 0px;
  border-left: 0px solid #757575;
  display: block;
  clear: both;
}
.smallwidth-bordered-list .product-item-list.list-view .product-item-card {
  display: block;
  width: 730px;
  height: 240px;
  overflow: hidden;
  border: 1px solid #ffffff;
}
.smallwidth-bordered-list .product-item-list.list-view .product-item-card:hover {
  width: 832px;
  height: 264px;
}
/*----- Hack Existing CSS in common and layout ---*/
.ls_prdtype.ls_prdtype1_wrap .product-item-list.grid-view .product-item * {
  -webkit-box-sizing: border-box !important;
  -moz-box-sizing: content-box !important;
  box-sizing: border-box !important;
}
