/*--- standard variables ---*/
/*--- product item ratio (thumb + content) ---*/
/* set ProductImageRatio in productOverview! */
/*--- media queries. When using responsive ---*/
/* Range breakpoints */
/*--- media queries. When using responsive: only mobile & desktop ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 480px)";
@tablet:		~"only screen and (min-width: 999999999px)";
@tabletLand:	~"only screen and (min-width: 768px)";
@desktop:		~"only screen and (min-width: 768px)";

@upToTablet:	~"only screen and (max-width: 767px)";
@upToDesktop:	~"only screen and (max-width: 767px)";*/
/*--- media queries. When not using responsive ---
@responsive:	false;
@largePhone:	~"only screen and (min-width: 1px)";
@tablet:		~"only screen and (min-width: 1px)";
@tabletLand:	~"only screen and (min-width: 1px)";
@desktop:		~"only screen and (min-width: 1px)";

@upToTablet:	~"only screen and (max-width: 1px)";
@upToDesktop:	~"only screen and (max-width: 1px)";*/
/*----- Default functions -----*/
/*----- Default Crossbrowser functions -----*/
/*----- CSS3 functions -----*/
/*----- CSS3 Animation functions -----*/
/*----- Buttons -----*/
/*----- Responsive functions -----*/
.productItemList__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  border-bottom: 1px dotted #c2bfb6;
}
.no-flexbox.no-flexboxlegacy .productItemList__item {
  display: table;
  width: 100%;
}
.productItemList__title {
  color: #142632;
}
.productItemList__thumb {
  -webkit-flex: 0 0 80px;
  -ms-flex: 0 0 80px;
  flex: 0 0 80px;
  -webkit-align-self: center;
  -ms-align-self: center;
  align-self: center;
}
.no-flexbox.no-flexboxlegacy .productItemList__thumb {
  display: table-cell;
  width: 80px;
}
.productItemList__thumb a {
  width: 80px;
  height: 90px;
  padding: 10%;
}
.productItemList__content {
  position: relative;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  vertical-align: top;
  padding: 15px 0 15px 10px;
}
.no-flexbox.no-flexboxlegacy .productItemList__content {
  display: table-cell;
}
.productItemList__content .deleteButton {
  position: absolute;
  top: 20px;
  right: 20px;
}
.productItemList__title {
  display: block;
}
.productItemList__price span {
  margin-right: 10px;
}
.productItemList__price span:empty,
.productItemList__price span:last-child {
  margin: 0;
}
.productItemList__delete {
  -webkit-flex: 0 0 50px;
  -ms-flex: 0 0 50px;
  flex: 0 0 50px;
  padding: 15px 0;
  text-align: center;
}
.productItemList__delete:before {
  content: "\f1f8";
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: 18px;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 30px;
  height: 30px;
  line-height: 30px;
  color: black;
  text-align: center;
}
.no-flexbox.no-flexboxlegacy .productItemList__delete {
  display: table-cell;
  width: 50px;
}
