/*******************************************************
Product list Styles
********************************************************/
.filter-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 30px; }
  .filter-wrapper .filters-toggle {
    display: block;
    font-size: 16px;
    font-weight: 600;
    line-height: 56px;
    color: #fff;
    padding: 0 24px;
    background: #278d3d;
    border-radius: 4px;
    border: none; }
    .filter-wrapper .filters-toggle span {
      display: block;
      padding-left: 48px;
      line-height: 52px;
      background: url(../img/filter-icon-white.svg) left center no-repeat;
      background-size: 32px 32px; }
    .filter-wrapper .filters-toggle em {
      font-style: normal; }
    .filter-wrapper .filters-toggle:hover, .filter-wrapper .filters-toggle.active {
      background-color: #278d3d; }
  @media (max-width: 768px) {
    .filter-wrapper {
      display: grid;
      grid-template-columns: 1fr 1fr;
      grid-gap: 16px 16px;
      margin-bottom: 24px; }
      .filter-wrapper .left-sort {
        display: block; }
      .filter-wrapper .content_sortPagiBar {
        grid-column: 1 / span 2; } }

.change-view-mobile {
  display: none;
  justify-content: flex-end; }
  @media (max-width: 768px) {
    .change-view-mobile {
      display: flex;
      justify-self: end; } }
  .change-view-mobile ul {
    display: flex;
    list-style: none;
    margin: 0; }
    .change-view-mobile ul li {
      margin-left: 12px;
      opacity: 0.3; }
      .change-view-mobile ul li.selected {
        opacity: 1; }
    .change-view-mobile ul a {
      display: block;
      width: 20px;
      height: 20px; }
    .change-view-mobile ul img {
      vertical-align: top; }

.productsSortForm {
  display: flex;
  align-items: center; }
  .productsSortForm select {
    border: 2px solid #CFCCBF;
    border-radius: 2px;
    font-size: 14px;
    color: #101010;
    height: 34px;
    padding: 0 12px; }
    .productsSortForm select:hover, .productsSortForm select:focus {
      border-color: #101010; }

ul.product_list {
  list-style: none;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 64px;
  position: relative;
  z-index: 100;
  border-left: 1px solid #e5e5e5; }
  ul.product_list .ajax_block_product {
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5; }
  ul.product_list .product-container {
    display: flex;
    flex-direction: column;
    transition: all .3s ease;
    padding: 32px 24px;
    position: relative; }
  ul.product_list .left-block {
    order: 1; }
  ul.product_list .right-block {
    order: 2; }
  ul.product_list .labels {
    display: flex;
    position: absolute;
    left: 8px;
    top: 8px;
    z-index: 100; }
    ul.product_list .labels span {
      font-size: 9px;
      font-weight: bold;
      line-height: 26px;
      padding: 0 8px;
      border-radius: 20px; }
    ul.product_list .labels .new-label {
      background: #278d3d;
      color: #fff; }
    ul.product_list .labels .sale-label {
      background: #fff;
      color: #101010;
      border: 1px solid #E5E5E5; }
  ul.product_list .product-image-container {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 32px; }
    ul.product_list .product-image-container a {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      width: 100%; }
    ul.product_list .product-image-container img {
      width: auto;
      max-width: 100%;
      height: auto; }
  ul.product_list .right-block {
    display: block;
    padding: 0 8px; }
  ul.product_list .product-name {
    display: block;
    margin-bottom: 32px; }
    ul.product_list .product-name a {
      font-size: 18px;
      color: #000;
      font-weight: 400;
      display: inline-block;
      line-height: 1.3; }
      ul.product_list .product-name a:hover {
        text-decoration: underline; }
  ul.product_list .content_price {
    display: flex;
    align-items: center;
    height: 50px;
    justify-content: space-between; }
    ul.product_list .content_price span {
      display: block;
      line-height: 1; }
    ul.product_list .content_price .price-percent-reduction {
      display: none; }
    ul.product_list .content_price .old-price {
      color: #999;
      text-decoration: line-through;
      font-size: 15px; }
    ul.product_list .content_price .price {
      color: #000000;
      font-size: 18px;
      font-weight: 700; }
      ul.product_list .content_price .price.color-price {
        color: #000000; }
    ul.product_list .content_price a {
      display: block;
      width: 46px;
      height: 46px;
      border: 2px solid #E5E5E5;
      border-radius: 50%;
      text-indent: -9999px;
      background: #fff url(../img/arrow-right-long-gray.svg) center no-repeat;
      background-size: 16px 16px; }
      ul.product_list .content_price a:hover {
        background: #278d3d url(../img/arrow-right-long-white.svg) center no-repeat;
        background-size: 16px 16px;
        border-color: #278d3d; }
  ul.product_list .availability {
    display: none; }
  @media (max-width: 560px) {
    ul.product_list {
      grid-gap: 24px 24px; }
      ul.product_list .product-container {
        padding: 16px; }
      ul.product_list .right-block {
        padding: 0; }
      ul.product_list .product-image-container {
        margin-bottom: 20px; }
      ul.product_list .product-name {
        margin-bottom: 20px; }
        ul.product_list .product-name a {
          font-size: 15px; }
      ul.product_list .content_price {
        height: auto;
        flex-wrap: wrap; }
        ul.product_list .content_price .price {
          font-size: 16px; }
        ul.product_list .content_price span {
          flex: 0 0 100%; }
        ul.product_list .content_price a {
          display: none; } }

@media (min-width: 1024px) {
  body.index ul.product_list .ajax_block_product:nth-child(1), body.index ul.product_list .ajax_block_product:nth-child(2), body.index ul.product_list .ajax_block_product:nth-child(3), body.index ul.product_list .ajax_block_product:nth-child(4) {
    border-top: 1px solid #e5e5e5; } }
@media (max-width: 1024px) {
  body.index ul.product_list .ajax_block_product:nth-child(1), body.index ul.product_list .ajax_block_product:nth-child(2), body.index ul.product_list .ajax_block_product:nth-child(3) {
    border-top: 1px solid #e5e5e5; } }
@media (max-width: 768px) {
  body.index ul.product_list {
    grid-template-columns: 1fr 1fr; }
    body.index ul.product_list .product-container {
      padding: 20px; }
    body.index ul.product_list .ajax_block_product:nth-child(1), body.index ul.product_list .ajax_block_product:nth-child(2) {
      border-top: 1px solid #e5e5e5; } }
@media (max-width: 560px) {
  body.index ul.product_list {
    grid-gap: 20px; }
    body.index ul.product_list .product-container {
      padding: 16px; }
    body.index ul.product_list .ajax_block_product {
      border: 1px solid #e1e1e1; } }

@media (min-width: 1200px) {
  body.category ul.product_list .ajax_block_product:nth-child(1), body.category ul.product_list .ajax_block_product:nth-child(2), body.category ul.product_list .ajax_block_product:nth-child(3),
  body.search ul.product_list .ajax_block_product:nth-child(1),
  body.search ul.product_list .ajax_block_product:nth-child(2),
  body.search ul.product_list .ajax_block_product:nth-child(3) {
    border-top: 1px solid #e5e5e5; } }
@media (max-width: 1200px) {
  body.category ul.product_list,
  body.search ul.product_list {
    grid-template-columns: 1fr 1fr 1fr; }
    body.category ul.product_list .ajax_block_product:nth-child(1), body.category ul.product_list .ajax_block_product:nth-child(2), body.category ul.product_list .ajax_block_product:nth-child(3),
    body.search ul.product_list .ajax_block_product:nth-child(1),
    body.search ul.product_list .ajax_block_product:nth-child(2),
    body.search ul.product_list .ajax_block_product:nth-child(3) {
      border-top: 1px solid #e5e5e5; } }
@media (max-width: 768px) {
  body.category ul.product_list,
  body.search ul.product_list {
    grid-template-columns: 1fr 1fr; }
    body.category ul.product_list .product-container,
    body.search ul.product_list .product-container {
      padding: 20px; }
    body.category ul.product_list .ajax_block_product:nth-child(1), body.category ul.product_list .ajax_block_product:nth-child(2),
    body.search ul.product_list .ajax_block_product:nth-child(1),
    body.search ul.product_list .ajax_block_product:nth-child(2) {
      border-top: 1px solid #e5e5e5; } }
@media (max-width: 560px) {
  body.category ul.product_list,
  body.search ul.product_list {
    grid-gap: 20px; }
    body.category ul.product_list.list,
    body.search ul.product_list.list {
      grid-template-columns: 1fr; }
    body.category ul.product_list .product-container,
    body.search ul.product_list .product-container {
      padding: 16px; }
    body.category ul.product_list .ajax_block_product,
    body.search ul.product_list .ajax_block_product {
      border: 1px solid #e1e1e1; } }

@media (min-width: 1024px) {
  #best-sellers_block_right,
  #new-products_block,
  #special_block_right {
    margin-left: -32px; } }
#best-sellers_block_right ul.product_list,
#new-products_block ul.product_list,
#special_block_right ul.product_list {
  grid-template-columns: repeat(4, 1fr);
  border-left: none; }
  @media (max-width: 1024px) {
    #best-sellers_block_right ul.product_list,
    #new-products_block ul.product_list,
    #special_block_right ul.product_list {
      grid-template-columns: 1fr 1fr 1fr; } }
  @media (max-width: 768px) {
    #best-sellers_block_right ul.product_list,
    #new-products_block ul.product_list,
    #special_block_right ul.product_list {
      grid-template-columns: 1fr 1fr; } }
  @media (max-width: 560px) {
    #best-sellers_block_right ul.product_list,
    #new-products_block ul.product_list,
    #special_block_right ul.product_list {
      grid-template-columns: 1fr 1fr; } }

.ie8 .quick-view {
  background: #fff;
  border: 1px solid #d6d4d4; }

/*# sourceMappingURL=product_list.css.map */
