/* Roxart-list-type */
.roxart-list-type {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 12px;
}

.roxart-list-type .roxart-list-item {
    width: 22px;
    height: 22px;
    background-size: 100% 100%;
    opacity: 0.5;
    transition: opacity .2s ease-in-out;
    pointer-events: none;
}

.roxart-list-type .roxart-list-item.active {
    opacity: 1;
}

.roxart-list-type .roxart-list-item:not(.active) {
    pointer-events: all;
    cursor: pointer;
}

.roxart-list-type .roxart-list-item[data-type="grid"] {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='8' width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='16' width='6' height='6' fill='%235C5C5B'/%3E%3Crect y='8' width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='8' y='8' width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='16' y='8' width='6' height='6' fill='%235C5C5B'/%3E%3Crect y='16' width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='8' y='16' width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='16' y='16' width='6' height='6' fill='%235C5C5B'/%3E%3C/svg%3E%0A");
}

.roxart-list-type .roxart-list-item[data-type="list"] {
    background-image: url("data:image/svg+xml,%3Csvg width='22' height='22' viewBox='0 0 22 22' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect width='6' height='6' fill='%235C5C5B'/%3E%3Crect y='8' width='6' height='6' fill='%235C5C5B'/%3E%3Crect y='16' width='6' height='6' fill='%235C5C5B'/%3E%3Crect x='8' y='16' width='14' height='6' fill='%235C5C5B'/%3E%3Crect x='8' y='8' width='14' height='6' fill='%235C5C5B'/%3E%3Crect x='8' width='14' height='6' fill='%235C5C5B'/%3E%3C/svg%3E%0A");
}

#js-product-list .products {
    display: grid;
    margin: 0;
    gap: 30px;
}

#js-product-list .products .js-product {
    padding: 0;
}

#js-product-list.grid .products {
    grid-template-columns: repeat(4, 1fr);
}
@media (max-width: 1400px) {
    #js-product-list.grid .products {
      grid-template-columns: repeat(3, 1fr);
    }
  }
@media (max-width: 1200px) {
    #js-product-list.grid .products {
      grid-template-columns: repeat(2, 1fr);
    }
    #category #left-column {
      max-width: 350px;
    }
}
@media (max-width: 992px) {
    #js-product-list.grid .products {
      grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    #js-product-list.grid .products {
        grid-template-columns: repeat(2, 1fr);
    }
    #category .col-xs-12{
        padding: 0px;
    }
    #category .cs-category-wrapper{
        flex-direction: column;
    }
    #js-product-list.grid .products {
        grid-template-columns: repeat(2, 1fr);
      }
      #category #left-column {
        max-width: 100%;
      }
}
@media (max-width: 576px) {
    #js-product-list.grid .products {
       grid-template-columns: repeat(1, 1fr);
       gap: 60px 0px;
    }
}
#js-product-list.list .products {
    grid-template-columns: 1fr;
}

#js-product-list .products .js-product {
    width: 100%;
    float: unset;
}
/* END Roxart-list-type */

/* Product-list */
#js-product-list-top {
    margin: 0;
    border-top: 1px solid #EAEEF2;
    border-bottom: 1px solid #EAEEF2;
    padding: 11px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 60px;
}

#js-product-list-top::after {
    display: none;
}

#js-product-list-top > div {
    padding: 0;
    width: fit-content;
}

#js-product-list-top .sort-by-row {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin: 0;
}

#js-product-list-top .sort-by-row::after {
    display: none;
}

#js-product-list-top .sort-by-row > * {
    padding: 0;
    width: fit-content;
    margin: 0;
}

#js-product-list-top span.sort-by {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-weight: 400;
}

#js-product-list-top .dropdown, 
#js-product-list-top .dropdown button {
    width: fit-content;
}

#js-product-list-top .dropdown button {
    color: rgba(0, 0, 0, 0.60);
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    border: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

#js-product-list-top .dropdown i {
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%235C5C5B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    background-size: 100% 100%;
    font-size: 0;
}

#js-product-list-top .dropdown-menu {
    right: 0;
}
@media (max-width: 768px) {
    #js-product-list-top{
        border-top: none;
        border-bottom: none;
    }
    #js-product-list-top .showing{
        display: none;
    }
    #js-product-list-top .col-lg-7{
        width: 100%;
    }
    #js-product-list-top .sort-by-row{
        flex-direction: row-reverse;
        justify-content: center;
    }
}
@media (max-width: 360px) {
    .cs-mobile-sort-order, .cs-mobile-filter{
        padding: 10px 20px !important;
    }
}

#js-product-list.list .product-miniature .thumbnail-top {
    display: grid;
    grid-template-columns: 0.4fr 1fr;
    align-items: center;
    gap: 60px;
}

#js-product-list.list .product-miniature .thumbnail-container .product-thumbnail {
    margin: 0;
    height: auto;
}

#js-product-list.list .product-miniature .product-subtitle {
    text-align: left;
    margin-bottom: 2px;
}

#js-product-list.list .product-miniature .product-title {
    text-align: left;
}

#js-product-list.list .product-miniature .wishlist-button-add {
    display: none;
}

#js-product-list.list .product-miniature .product-description .last-days-price p {
    text-align: left;
}

/* #js-product-list.list .product-miniature .product-title {
    margin-bottom: 6px;
} */

#js-product-list.list .product-miniature .product-list-reviews {
    justify-content: flex-start;
    gap: 12px;
    /* margin-bottom: 10px; */
}

#js-product-list.list .product-miniature .product-price-and-shipping {
    border: 0;
}

#js-product-list.list .product-miniature .product-price-and-shipping .price {
    margin: 0;
    align-items: center;
    display: flex;
    gap: 10px;
    margin-bottom: 10px;
}

#js-product-list.list .product-miniature .product-price-and-shipping .rox-qty {
    display: none;
}

#js-product-list.list .product-miniature .star-content {
    margin: 0 0 0 -3px;
}

#js-product-list.list .product-miniature .product-description .add .button {
    font-size: 0;
}

#js-product-list.list .product-miniature .product-description .add .button::after {
    content: attr(data-mobile-lang);
    font-size: 1rem;
    margin-left: -10px;
}

.rox-categorydesc {
    padding-top: 24px;
    border-top: 1px solid #EAEEF2;
    margin-bottom: 140px;
}

.rox-categorydesc p {
    font-size: 16px;
    font-weight: 400;
    line-height: 29px;
}

.rox-categorydesc p strong {
    font-weight: 700;
}

.rox-categorydesc p a {
    color: #000;
    text-decoration: underline;
}
/* END Product-list */

/* Checkout */
body#checkout section.checkout-step #check-all-form {
    margin-top: 20px;
}

body#checkout section.checkout-step #conditions-to-approve {
    padding: 0;
}
/* END Checkout */