@charset "UTF-8";
.thumbnail-product-small {
  background: #fff;
  position: relative;
  padding: 48px;
  border-radius: 16px;
  transition: 200ms ease all;
  box-shadow: inset 0 0 0 1px #E7E9EE;
  cursor: pointer;
  padding: 0 !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (prefers-reduced-motion: reduce) {
  .thumbnail-product-small {
    transition: none;
  }
}
@media (max-width: 991.98px) {
  .thumbnail-product-small {
    padding: 32px;
  }
}
.thumbnail-product-small:hover {
  box-shadow: inset 0 0 0 1px #1B1B1B;
}
.thumbnail-product-small > .thumb-small-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-title {
  flex-grow: 1;
  font-family: "silkamedium", Helvetica, Arial, sans-serif;
  margin-bottom: 0;
  color: #0A152E;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 16px;
  line-height: 32px;
  padding: 6px 0;
  line-height: 20px;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta {
  white-space: nowrap;
  font-family: var(--default-font-family);
  color: #4B5159;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
  display: flex;
  flex-direction: row;
  margin-bottom: 24px;
}
@media (max-width: 991.98px) {
  .thumbnail-product-small > .thumb-small-content > .thumb-small-meta .code span {
    display: none;
  }
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta .stock-info {
  font-size: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta .stock-info:before {
  content: "|";
  order: 1;
  color: #4B5159;
  padding: 0 8px;
  font-family: var(--default-font-family);
  color: #4B5159;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta .stock-info:after {
  order: 2;
  content: "•";
  padding-right: 4px;
  font-family: var(--default-font-family);
  color: #009967;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta .stock-info span {
  order: 3;
  font-family: var(--default-font-family);
  color: #009967;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta .stock-info.out-of-stock:after,
.thumbnail-product-small > .thumb-small-content > .thumb-small-meta .stock-info.out-of-stock span {
  color: #4B5159;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-order {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-order > .thumb-small-prices {
  white-space: nowrap;
  text-align: left;
  font-family: "silkamedium", Helvetica, Arial, sans-serif;
  color: #0A152E;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 18px;
  line-height: 24px;
  display: flex;
  flex-direction: column;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-order > .thumb-small-prices > .thumb-small-price {
  margin-right: 12px;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-order > .thumb-small-prices > .thumb-small-vat {
  display: block;
  font-family: var(--default-font-family);
  color: #6E747C;
  font-weight: 400;
  letter-spacing: var(--default-letter-spacing);
  text-decoration: none;
  font-size: 12px;
  line-height: 18px;
}
.thumbnail-product-small > .thumb-small-content > .thumb-small-order > .thumb-small-prices > .thumb-small-vat.inline {
  display: inline-block;
}
.thumbnail-product-small > figure {
  overflow: hidden;
  padding: 0 0 66.67%;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.thumbnail-product-small > figure > picture {
  width: calc(100% - 2px);
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1px;
  right: 1px;
  bottom: auto;
  left: 1px;
  border-radius: 16px 16px 0 0;
}
.thumbnail-product-small > figure > picture img {
  max-width: 100%;
}
