@charset "UTF-8";
/* ==============================
  COLORS
============================== */
/* ==============================
   			TYPOGRAPHY
============================== */
/* ==============================
  SPACING / GRID
============================== */
/* ==============================
   			BREAKPOINTS
============================== */
/* Micro clearfix hack*/
/* See http://nicolasgallagher.com/micro-clearfix-hack/ */
/**
 * Give an element full browser width when it’s already contained in an element with a width
 */
/* ==============================
  POSITION CENTER MIXIN
  https://css-tricks.com/snippets/sass/centering-mixin/
============================== */
/* This is for 16:9 only and intended to YouTube video */
/* This takes any ratio and apply it to the :before pseudo element and make sure the image fits the parent div on any breakpoints */
/* REF - https://css-tricks.com/snippets/css/less-mixin-for-rem-font-sizing/ */
body {
  width: 100vw;
  overflow-x: hidden;
  transition: all 0.5s ease;
}
img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .mobile-only {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .desktop-only {
    display: none !important;
  }
}
html {
  font-size: 62.5%;
  /* Sets up the Base 10 stuff for REMS */
}
body {
  font-family: "Helvetica", Arial, sans-serif;
}
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
  font-family: "ABChanel-Semibold", Helvetica, sans-serif;
}
h1, .h1 {
  font-size: 30px;
}
h2, .h2 {
  font-size: 30px;
}
a, a:hover, a:focus, a:active, a:visited, .breadcrumbs a, .breadcrumbs a:focus, .breadcrumbs a:active, .breadcrumbs a:visited, .pages a.page, .pages a.page:focus, .pages a.page:active, .pages a.page:visited, .minicart-items .product-item-name a, .minicart-items .product-item-name a:focus, .minicart-items .product-item-name a:active, .minicart-items .product-item-name a:visited {
  color: #000000;
  font-style: normal;
  text-decoration: none;
}
a:hover, .breadcrumbs a:hover, .pages a.page:hover, .minicart-items .product-item-name a:hover {
  text-decoration: underline;
}
.message.notice a, .message.notice a:focus, .message.notice a:active, .message.notice a:visited, .message.notice a:hover {
  color: #6f4400;
}
.message.success a, .message.success a:focus, .message.success a:active, .message.success a:visited, .message.success a:hover {
  color: #006400;
}
.message.error a, .message.error a:focus, .message.error a:active, .message.error a:visited, .message.error a:hover {
  color: #e02b27;
}
button.primary, a.primary, .action.primary, .product-item .tocart {
  display: block;
  width: 100%;
  font-family: "ABChanel-Semibold", Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  padding: 10px 0;
  position: relative;
  margin: 0;
  line-height: 18px;
  transition: all 0.5s ease;
  border: 1px solid #000000;
  font-size: 11px !important;
  color: #ffffff;
  box-shadow: 0 0 0 2px #000000;
  border-color: #000000;
  background: #000000;
}
button.primary span, a.primary span, .action.primary span, .product-item .tocart span {
  font-size: 11px !important;
}
button.primary:hover, a.primary:hover, .action.primary:hover, .product-item .tocart:hover {
  color: #ffffff;
  box-shadow: 0 0 0 2px #000000;
  border-color: #ffffff;
  background: #000000;
}
button.primary:active, button.primary:focus, a.primary:active, a.primary:focus, .action.primary:active, .action.primary:focus, .product-item .tocart:active, .product-item .tocart:focus {
  color: #000000;
  box-shadow: 0 0 0 2px #ffffff;
  border-color: #000000;
  background: #ffffff;
}
button.secondary, a.secondary, button.action.update {
  display: block;
  width: auto;
  font-family: "ABChanel-Semibold", Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  text-transform: uppercase;
  letter-spacing: 0;
  text-decoration: none;
  padding: 10px 20px;
  position: relative;
  margin: 0;
  line-height: 18px;
  transition: all 0.5s ease;
  border: 1px solid #000000;
  font-size: 11px !important;
  color: #000000;
  box-shadow: 0 0 0 2px #000000;
  border-color: #ffffff;
  background: #ffffff;
}
button.secondary span, a.secondary span, button.action.update span {
  font-size: 11px !important;
}
button.secondary:before, button.secondary:after, a.secondary:before, a.secondary:after, button.action.update:before, button.action.update:after {
  display: none;
}
button.secondary:hover, a.secondary:hover, button.action.update:hover {
  color: #ffffff;
  box-shadow: 0 0 0 2px #000000;
  border-color: #ffffff;
  background: #000000;
}
button.secondary:active, button.secondary:focus, a.secondary:active, a.secondary:focus, button.action.update:active, button.action.update:focus {
  color: #ffffff;
  box-shadow: 0 0 0 2px #000000;
  border-color: #000000;
  background: #000000;
}
.modal-popup .modal-footer .action-primary.action-accept {
  color: #ffffff;
  background: #000000;
  padding: 10px 40px;
  box-shadow: none;
  border: 1px solid #000000;
  border-radius: 0;
  font-family: "ABChanel-Semibold", Helvetica, sans-serif;
  font-size: 12px;
  transition: 0.5s ease box-shadow;
}
.modal-popup .modal-footer .action-primary.action-accept:hover {
  box-shadow: inset 1px 1px 0 0 #ffffff, inset -1px -1px 0 0 #ffffff;
}
@font-face {
  font-family: "ABChanel-Regular";
  src: url("../fonts/ABChanelPBRegularM.eot");
  src: url("../fonts/ABChanelPBRegularM.eot?#iefix") format("embedded-opentype"), url("../fonts/ABChanelPBRegularM.woff") format("woff"), url("../fonts/ABChanelPBRegularM.ttf") format("truetype"), url("../fonts/ABChanelPBRegularM.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "ABChanel-Semibold";
  src: url("../fonts/ABChanelPBSemiBoldM.eot");
  src: url("../fonts/ABChanelPBSemiBoldM.eot?#iefix") format("embedded-opentype"), url("../fonts/ABChanelPBSemiBoldM.woff") format("woff"), url("../fonts/ABChanelPBSemiBoldM.ttf") format("truetype"), url("../fonts/ABChanelPBSemiBoldM.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Helvetica";
  src: url("../fonts/Helvetica-Regular.eot");
  src: url("../fonts/Helvetica-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica-Regular.woff") format("woff"), url("../fonts/Helvetica-Regular.ttf") format("truetype"), url("../fonts/Helvetica-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
input[type="text"], input[type="password"], input[type="url"], input[type="tel"], input[type="search"], input[type="number"], input[type="datetime"], input[type="email"] {
  padding: 1.75rem 1.5rem;
  border: 1px solid #000000;
  box-shadow: 0 0 0 0 #000000;
  transition: box-shadow 0.5s ease;
}
input[type="text"]:focus, input[type="password"]:focus, input[type="url"]:focus, input[type="tel"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="datetime"]:focus, input[type="email"]:focus {
  box-shadow: 0 0 0 1px #000000;
}
.page-footer {
  background: none;
  border-top: 1px solid #d8d8d8;
  padding-bottom: 0;
}
.page-footer .widget.block {
  margin: 0 auto;
}
.page-footer .footer-info {
  display: block;
  width: 100%;
  max-width: 1240px;
  padding: 5rem 2rem;
  border: 0;
  margin: 0 auto;
  box-sizing: border-box;
  text-align: center;
}
.page-footer .copyright {
  background: #000000;
  border-top: 1px solid #ffffff;
  padding: 2rem;
}
.footer.content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row;
  -ms-flex-flow: row;
  flex-flow: row;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 100%;
  padding: 0;
}
.footer.content .links {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2;
  background: #000000;
  padding: 2rem 2rem 1rem;
  text-align: center;
}
.footer.content .links li {
  background: none;
  border: none;
  display: inline-block;
  font-size: 14px;
  margin: 0 1.5rem 1rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .footer.content .links li {
    width: 100%;
    margin: 0 0 1rem;
  }
}
.footer.content .links a, .footer.content .links a:active, .footer.content .links a:focus, .footer.content .links a:hover, .footer.content .links a:visited {
  color: #ffffff;
  display: inline;
  padding: 0;
}
.footer.content .block {
  -webkit-flex-basis: 100%;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}
.page-header {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border-top: 8px solid #000000;
  box-sizing: border-box;
  border-bottom: 0;
}
.page-header .header-top-wrapper {
  display: block;
  position: relative;
  width: 100%;
  margin: -8px 0 0 0;
  padding: 0;
}
.page-header .header-top-wrapper .widget.block.block-static-block {
  border-top: 8px solid #ffffff;
  border-bottom: 8px solid #000000;
  margin: 0 auto;
  padding: 5px 0 10px 0;
  text-align: center;
}
.page-header .header.content {
  display: block;
  position: relative;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  border: 0;
  padding: 3rem 0 calc(3rem - 8px);
  box-sizing: border-box;
}
.page-header .header.content .header-content-center {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  z-index: 1;
}
.page-header .header.content .header-content-left, .page-header .header.content .header-content-right {
  display: block;
  position: absolute;
  top: 22px;
  margin: 0 auto;
  border: 0;
  padding: 0;
  box-sizing: border-box;
  z-index: 10;
}
@media screen and (max-width: 480px) {
  .page-header .header.content .header-content-left, .page-header .header.content .header-content-right {
    padding: 0 1rem;
  }
}
.page-header .header.content .header-content-left {
  left: 0;
}
.page-header .header.content .header-content-right {
  right: 0;
}
.page-header .logo {
  display: block;
  width: 100%;
  max-width: 175px;
  float: none;
  margin: 0 auto;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}
.page-header .logo img {
  margin: 0 auto;
}
@media screen and (max-width: 480px) {
  .page-header .logo img {
    max-width: 123px;
  }
}
.page-header .header-quick-links-container {
  display: table;
  height: 100%;
  list-style: none;
  margin: 4px 0 0 0;
  border: 0;
  padding: 0;
  box-sizing: border-box;
}
.page-header .header-quick-links-container li.quick-link {
  display: table-cell;
  vertical-align: middle;
  margin: 0;
  padding: 0 0.5rem;
  border: 0;
  line-height: 0;
  box-sizing: border-box;
  cursor: pointer;
}
.page-header .header-quick-links-container li.quick-link.search a, .page-header .header-quick-links-container li.quick-link.search a:hover, .page-header .header-quick-links-container li.quick-link.search a:focus, .page-header .header-quick-links-container li.quick-link.search a:active, .page-header .header-quick-links-container li.quick-link.wishlist a, .page-header .header-quick-links-container li.quick-link.wishlist a:hover, .page-header .header-quick-links-container li.quick-link.wishlist a:focus, .page-header .header-quick-links-container li.quick-link.wishlist a:active, .page-header .header-quick-links-container li.quick-link.account a, .page-header .header-quick-links-container li.quick-link.account a:hover, .page-header .header-quick-links-container li.quick-link.account a:focus, .page-header .header-quick-links-container li.quick-link.account a:active, .page-header .header-quick-links-container li.quick-link.hamburger-menu a, .page-header .header-quick-links-container li.quick-link.hamburger-menu a:hover, .page-header .header-quick-links-container li.quick-link.hamburger-menu a:focus, .page-header .header-quick-links-container li.quick-link.hamburger-menu a:active {
  text-decoration: none;
}
.page-header .header-quick-links-container li.quick-link.search i, .page-header .header-quick-links-container li.quick-link.wishlist i, .page-header .header-quick-links-container li.quick-link.account i, .page-header .header-quick-links-container li.quick-link.hamburger-menu i {
  display: block;
  height: 25px;
  width: 25px;
  overflow: hidden;
  text-indent: -999px;
  background-size: contain;
}
.page-header .header-quick-links-container li.quick-link.search {
  background: url("../images/icon-search.svg") center center no-repeat;
}
.page-header .header-quick-links-container li.quick-link.account {
  background: url("../images/icon-user.svg") center center no-repeat;
}
.page-header .header-quick-links-container li.quick-link.wishlist {
  background: url("../images/heart.svg") center center no-repeat;
  background-size: 17px 17px;
}
.page-header .header-quick-links-container li.quick-link.hamburger-menu {
  position: static;
  background: url("../images/icon-mobilemenu.svg") center center no-repeat;
}
.page-header .header-quick-links-container li.quick-link.hamburger-menu:before {
  content: none;
  display: none;
}
.page-header .header-quick-links-container li.quick-link.bag .minicart-wrapper {
  float: none;
  margin: 0;
  padding: 0;
  border: 0;
  box-sizing: border-box;
  line-height: 0;
}
.page-header .header-quick-links-container li.quick-link.bag .minicart-wrapper a {
  position: relative;
}
.page-header .header-quick-links-container li.quick-link.bag .minicart-wrapper a:before {
  display: none;
  content: "";
}
.page-header .header-quick-links-container li.quick-link.bag .minicart-wrapper a span.text {
  display: block;
  height: 25px;
  width: 25px;
  overflow: hidden;
  text-indent: -999px;
  margin: 0;
  clip: unset;
  position: static;
  background-size: contain;
  background: url("../images/icon-basket.svg") center center no-repeat;
}
.page-header .header-quick-links-container li.quick-link.bag .minicart-wrapper a span.counter:not(.empty) {
  display: block;
  min-width: auto;
  width: 17px;
  height: 17px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  box-sizing: border-box;
  position: absolute;
  top: -2px;
  right: -6px;
  background: #000000;
  line-height: 1.9;
  font-size: 11px;
}
.page-header .header-quick-links-container li.quick-link.bag .minicart-wrapper #minicart-content-wrapper {
  line-height: 1.5;
}
.page-header .block.block-search {
  display: block;
  width: 100%;
  position: fixed;
  top: -77px;
  float: none;
  padding: 2rem;
  margin: 0 auto;
  border: 0;
  box-sizing: border-box;
  transition: top 0.5s ease;
  z-index: 5;
}
.page-header .block.block-search form {
  display: table;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.page-header .block.block-search form > * {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
}
.page-header .block.block-search form .field.search .control {
  border-top: none;
  margin: 0 auto;
  padding: 0;
}
.page-header .block.block-search form .field.search label {
  display: none;
}
.page-header .block.block-search form .field.search input {
  position: static;
  margin: 0 auto;
  left: auto;
  box-shadow: 0 0 0 1px #000000 !important;
}
.page-header .block.block-search form .action.search {
  position: static;
  background: #000000;
  width: 100%;
  padding: 0 0.5rem;
  margin: 0 auto;
  border-radius: 0;
  line-height: 0;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  .page-header .block.block-search form .action.search {
    display: table-cell;
    height: 100%;
    float: none;
    color: #ffffff;
    border: none;
    box-shadow: none;
    padding: 1rem;
    line-height: normal;
  }
}
.page-header .block.block-search form .action.search:before {
  padding: 1rem 0;
  font-size: 19px;
  line-height: 1;
  display: block;
  color: #ffffff !important;
}
.page-header .block.block-search form .action.search:disabled {
  opacity: 1;
}
.page-header .block.block-search form .search-autocomplete {
  margin-top: 0;
  background: #ffffff;
  top: 59px;
}
body.search-block-active {
  position: fixed;
  width: 100vw;
  margin-top: 77px;
}
body.search-block-active .block.block-search {
  top: 0;
}
.nav-toggle {
  top: 10px;
}
.nav-sections, .navigation {
  background: #ffffff;
  text-align: center;
}
.nav-sections {
  border-bottom: 1px solid #d8d8d8;
}
.nav-sections .ui-menu-icon {
  display: none !important;
}
.navigation .level0 {
  font-family: "ABChanel-Semibold", Helvetica, sans-serif;
  font-size: 12px;
}
.navigation .level0 > .level-top {
  color: #000000;
  line-height: 1;
  padding: 1.8rem 1.2rem;
}
.navigation .level0 > .level-top:active, .navigation .level0 > .level-top:focus, .navigation .level0 > .level-top:hover, .navigation .level0 > .level-top:visited, .navigation .level0 > .level-top.ui-state-focus {
  color: #000000;
}
.navigation .level0.active > .level-top, .navigation .level0.has-active > .level-top {
  border-color: #ffffff;
}
@media screen and (max-width: 768px) {
  .navigation .level0.active .all-category .ui-state-focus, .navigation .level0.active > a:not(.ui-state-active), .navigation .level0.has-active > a:not(.ui-state-active) {
    border: none;
    padding-left: 1.2rem;
  }
  .navigation .level0.active .all-category .ui-state-focus span:not(.ui-menu-icon), .navigation .level0.active > a:not(.ui-state-active) span:not(.ui-menu-icon), .navigation .level0.has-active > a:not(.ui-state-active) span:not(.ui-menu-icon) {
    margin-left: 0;
  }
}
.navigation .level0 .submenu li {
  margin-bottom: 0;
}
.navigation .level0 .submenu li a {
  padding: 1.5rem;
}
@media screen and (max-width: 768px) {
  .nav-sections-item-content {
    padding: 0;
    margin-top: 0;
  }
  .nav-sections-item-title {
    display: none;
    background: #ffffff;
    border: none;
    cursor: pointer;
  }
  .nav-sections-item-title a {
    color: #000000;
  }
  .nav-sections-item-title.active {
    background: #000000;
  }
  .nav-sections-item-title.active a {
    color: #ffffff;
  }
  .navigation .parent .level-top:after {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.product-info-main .page-title-wrapper h1 {
  border-bottom: 4px solid #000000;
  font-size: 25px;
  padding-bottom: 1.2rem;
  line-height: 1.3;
}
.product-info-main .product-options-wrapper .field:not(.required) {
  display: none;
}
.product-info-main .product-options-bottom .price-box .price-container .price, .product-info-main .product-info-price .price-box .price-container .price {
  color: #000000;
  font-family: "ABChanel-Semibold", Helvetica, sans-serif;
  font-size: 16px;
}
.products-grid .product-item-info:not(:hover):not(.active) .product-item-inner {
  clip: auto;
  height: auto;
  margin: 0;
  position: inherit;
  overflow: inherit;
  width: auto;
}
.products-grid .product-item {
  padding: 5px !important;
  box-sizing: border-box !important;
}
@media screen and (min-width: 1024px) {
  .products-grid .product-item {
    margin-left: calc((100% - 4 * 25%) / 3) !important;
    width: calc((100% - 6%)/4) !important;
  }
  .products-grid .product-item::nth-child(4n + 1) {
    margin-left: 0 !important;
  }
}
@media screen and (max-width: 1023px) {
  .products-grid .product-item {
    margin-left: 0 !important;
    width: 32% !important;
  }
}
@media screen and (max-width: 767px) {
  .products-grid .product-item {
    margin-left: 0 !important;
    width: 32% !important;
  }
}
@media screen and (max-width: 639px) {
  .products-grid .product-item {
    margin-left: 0 !important;
    width: 49% !important;
  }
}
.products-grid .product-item-inner {
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
  position: relative;
  right: 0;
}
.products-grid .product-item-info:hover, .products-grid .product-item-info.active {
  border: none;
  box-shadow: none;
  margin: 0;
  padding: 0;
}
.products-grid .product-item-details {
  padding: 0 1rem;
  text-align: center;
}
.products-grid .product-item-actions {
  display: block;
}
.products-grid .product-item-actions .actions-primary {
  display: block;
  width: 100%;
}
.products-grid .product-item-actions .actions-primary .stock.unavailable {
  text-align: center;
  padding: 1rem 0;
}
.products-grid.wishlist .product-item .price-box {
  margin-bottom: 2.5rem;
}
.catalog-product-view .box-tocart .actions .action.primary.tocart {
  width: 100%;
  padding: 10px 0;
}
.catalog-product-view .box-tocart .actions .action.primary.tocart span {
  font-size: 11px !important;
}
.mp-product-slider-content .product-item.product-slider {
  text-align: center;
}
.mp-product-slider-content .product-item.product-slider .slider-product-item-info {
  width: 100% !important;
}
.mp-product-slider-content .product-item.product-slider .slider-product-item-info .slider-product-item-details {
  padding: 0 1rem;
  margin: 0;
}
.block-collapsible-nav .item.current a, .block-collapsible-nav .item.current > strong {
  border-color: #000000;
}
.checkout-cart-index .loading-mask .loader > img, .checkout-cart-index .checkout-loader .loader > img, .checkout-index-index .loading-mask .loader > img, .checkout-index-index .checkout-loader .loader > img {
  max-width: 250px;
}
.block-minicart .minicart-items .product-item-details .product.options {
  display: none;
}
.checkout-index-index .product-item-details .product.options {
  display: none;
}
.checkout-index-index #checkout-loader .loader > img {
  width: 50px !important;
}
.checkout-index-index .opc-progress-bar {
  display: none;
}
.checkout-index-index .payment-method img {
  max-width: 65px;
}
.checkout-index-index .payment-method .checkout-agreement.field.choice label button.action.action-show {
  color: #000000;
}
.checkout-index-index .discount-code .form-discount button.action-apply {
  padding: 1.75rem 1.5rem;
  height: 0;
  line-height: 0.2rem;
}
.checkout-index-index .opc-block-summary .loader > img {
  width: 50px !important;
}
.checkout-cart-index .cart.table-wrapper .item-options {
  display: none;
}
.checkout-cart-index .cart.table-wrapper .actions-toolbar > .towishlist {
  position: absolute;
  right: 60px;
  top: 0;
  display: inline-block;
  text-decoration: none;
}
.checkout-cart-index .block.discount button.apply {
  padding: 1.75rem 1.5rem;
  height: 0;
  line-height: 0.5rem;
}
@media (min-width: 768px), print {
  .checkout-cart-index .cart-discount .block.discount {
    width: 50%;
  }
}
.allocation-products {
  display: none;
}
.ba-allocated .allocation-products {
  display: block;
}
@media (min-width: 768px) {
  .wishlist-buttons {
    display: flex !important;
  }
}
.products-grid.wishlist .product-item-name {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  -webkit-box-orient: vertical;
  min-height: 76px;
}
@media (min-width: 768px) {
  .products-grid.wishlist .product-item-name {
    min-height: 51px;
    -webkit-line-clamp: 3;
    line-clamp: 3;
  }
}
