/*--- standard variables ---*/
/* @fontFamily1:        'PT Sans', sans-serif;*/
/*--- product item ratio (thumb + content) ---*/
/*--- media queries. When using responsive ---*/
/*--- media queries. When not using responsive ---
@useResponsive:			false;

@breakPointLargePhone:	~"only screen and (min-width : 1px)";
@breakPointTablet:		~"only screen and (min-width : 1px)";
@breakPointDesktop:		~"only screen and (min-width : 1px)";

@breakPointUpToTablet:	~"only screen and (max-width: 1px)";
@breakPointUpToTabletLand:~"only screen and (max-width: 1023px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 1px)";
*/
/*--- media queries. When using responsive: only mobile & desktop ---
@useResponsive:			false;
@breakPointLargePhone:	~"only screen and (min-width : 480px) and (max-width: 768px )";
@breakPointTablet:		~"only screen and (min-width : 999999999px)";
@breakPointDesktop:		~"only screen and (min-width : 768px)";

@breakPointUpToTablet:	~"only screen and (max-width: 768px)";
@breakPointUpToDesktop:	~"only screen and (max-width: 768px)";
*/
/*--- custom class functions ---*/
/*----- Default functions -----*/
/*----- LESS functions -----*/
.productItemList__item {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -ms-flex;
  display: flex;
  border-bottom: 1px dotted #dedede;
}
.no-flexbox.no-flexboxlegacy .productItemList__item {
  display: table;
  width: 100%;
}
.productItemList__title {
  color: #383838;
}
.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;
  color: initial;
  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;
}
.no-flexbox.no-flexboxlegacy .productItemList__delete {
  display: table-cell;
  width: 50px;
}
