.item.item-eshopItem {
  vertical-align: top;
  border-right: 1px dotted var(--lines-color);
  border-bottom: 1px dotted var(--lines-color);
  margin: 0;
}
.eshopItem {
  padding: 0px;
  text-align: left;
  margin: 16px 0;
  line-height: var(--def-line-height);
  padding: 6px;
  vertical-align: top;
}
.eshopItem_title {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  font-size: 120%;
  line-height: var(--def-line-height);
  max-height: 2.6em;
}
.eshopItem_thumbnail {
  position: relative;
  margin: 8px auto;
  transition: 0.5s transform;
}
.item:hover:not(.item-disabled) .eshopItem_thumbnail {
  transform: scale(1.02);
}
.item-disabled .eshopItem_buttons {
  opacity: 0;
}

.eshopItem_description {
  font-weight: 300;
  height: 40px;
}
.eshopItem_buttons {
  margin: 8px 0;
  text-align: center;
}
.eshopItem_button {
  width: auto;
}
.eshopProductDetails .eshopItem_button {
  pointer-events: all;
}
.eshopItem_infoText {
  margin: 1em 0;
  font-weight: 300;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.thumbnail-eshopItem {
  padding-bottom: 100%;
}
.thumbnail-eshopItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.thumbnail-eshopItem.thumbnail-noThumbnail {
  color: var(--gray-b);
  text-align: center;
}
.thumbnail-eshopItem.thumbnail-noThumbnail i {
  margin-top: 8px;
  font-size: 120px;
}

.tShopCart_col .thumbnail-eshopItem.thumbnail-noThumbnail i {
  font-size: 40px;
}

.eshopItem_thumbnail .thumbnail-eshopItem {
  width: 100%;
  height: 100%;
  padding-bottom: 100%;
}
.eshopItem_onSaleBox {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0.3em;
  background-color: red;
  color: white;
}
.thumbnail_wrapper .eshopItem_onSaleBox {
  font-size: 14px;
}

.eshopItem_price {
  border: 1px dotted var(--highlighting-color);
  background-color: var(--inputs-background);
  display: inline-block;
  padding: 0.5em;
  margin: 1em 0;
  font-weight: bold;
  color: var(--highlighting-color);
}
.eshopItem_price-onSale {
  display: inline-block;
  text-decoration: line-through;
  opacity: 0.8;
  margin-right: 0.5em;
}

.eshopProductDetails_buttons {

}
.eshopProductDetails_buttons .mButton {
  margin-left: 0;
  margin-right: 0.5em;
}
.eshopProductDetails_variantsTitle {
  font-size: 15px;
  font-weight: bold;
  margin-bottom: 8px;
}
.eshopProductDetails_variantsInfo {
  font-size: 13px;
  margin-top: 8px;
}
.eshopItemVariantsTable {
  font-size: 15px;
  border: 1px solid var(--lines-color);
  margin: 0 0 16px 0;
}
.eshopItemVariantsTable_tr {
  cursor: pointer;
}
.eshopItemVariantsTable_tr:nth-child(even) {
  background-color: rgba(128,128,128,0.1);
}
.eshopItemVariantsTable_tr:hover {
  background-color: rgba(128,128,128,0.2);
}
.eshopItemVariantsTable td {
  padding: 0.5em;
  border: 1px solid var(--lines-color);
  vertical-align: middle;
}
.eshopItemVariantsTable_td-checked .mCheckbox {
  pointer-events: none;
  padding: 0;
}
.eshopItemVariantsTable_td-checked .mCheckbox_checkbox {
  margin-right: 0;
}
.eshopItemVariantsTable_td-title {
  text-align: right;
}
.eshopItemVariantsTable td.eshopItemVariantsTable_td-buy {
  padding: 0;
}
.eshopItemVariantsTable_td-buy .mButton {
  margin: 0;
  border-radius: 0;
  padding: 4px 6px;
}


.eshopItemVariant_stockInfo {
  font-weight: bold;
}
.eshopItemVariant_stockInfo-onStock {
  color: #0a0;
}
.eshopItemVariant_stockInfo-onOrder {
  color: #f80;
}
