/*COMMON*/
.cursor-pointer{
    cursor: pointer;
}
.piese-bg-grey{
    background-color: #F5F6F7;
}
.piese-bg-white{
    background-color: #fff;
}
.btn-hover-purple:hover{
    border-color: #1f104a;
    color: #fff;
}
.btn-hover-purple:hover span{
    color: #fff;
}
.btn-hover-purple:hover:after{
    background-color: #1f104a;
}
.btn-small{
    padding: 10px;
}

.piese-text-truncate {

    /*IE 11*/
    display: block;
    max-height: 3.6em;
    line-height: 1.8em;

    /*Others*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

.piese-text-truncate-offers {

    /*IE 11*/
    display: block;
    height: 48px;
    line-height: 24px;

    /*Others*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}

/*MENU*/
.piese-menu-container{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99;
}

/*SEARCH BAR*/
.p-search-bar-input{
    flex-grow: 1;
    flex-shrink: 1;
    height: 64px;
    border: none;
    font-weight: 400;
    font-size: 14px;
    color: #1F104A;
    font-family: AvenirRoman,Arial,sans-serif;
    padding: 2px 10px;
    min-width: 100px;
}
.p-search-bar-input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #1F104A;
    opacity: 1; /* Firefox */
}
.p-search-bar-input:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #1F104A;
}
.p-search-bar-input::-ms-input-placeholder { /* Microsoft Edge */
    color: #1F104A;
}
.p-search-bar-button{
    text-transform: uppercase;
    color: #fff;
    background: #FF533D;
    font-size: 12px;
    font-weight: 500;
    padding: 5px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    appearance: none;
    cursor: pointer;
    font-family: AvenirRoman,Arial,sans-serif;
}
@media screen and (min-width: 768px){
    .p-search-bar-input{
        font-size: 18px;
    }
    .p-search-bar-button{
        font-size: 16px;
        padding: 5px 25px;
    }
}

/*Home Main Slider*/
.piese-home-main-slider .swiper-slide img{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
}
.piese-home-main-slider .swiper-slide .tar-slider-content {
    padding-left: 15px;
    padding-right: 15px;
    color: #fff;
    position: absolute;
    z-index: 2;
    left: 0;
    right: 0;
    margin: 0 auto;
    bottom: 90px;
}

.type-1-slider-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;

    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 20px 0 rgba(31,16,74,.13);
}
.type-1-slider-arrow-left{
    left: 15px;
}
.type-1-slider-arrow-right{
    right: 15px;
}

.piese-home-main-slider .swiper-pagination {
    /*max-width: 90vw;*/
    margin: 0 auto;
    left: 0;
    display: flex;
    width: 100%;
    bottom: 60px;
    right: 0;
    padding: 0 15px;
}

@keyframes sliderActivePagination {
    0%{
        width: 0%;
    }
    100%{
        width: 100%;
    }
}
.piese-home-main-slider .swiper-pagination .swiper-pagination-bullet {
    flex: 1;
    width: 100%;
    border-radius: 0;
    height: 3px;
    position: relative;
    background-color: hsla(0,0%,100%,.2);
    opacity: 1;
}
.piese-home-main-slider .swiper-pagination .swiper-pagination-bullet::before {
    content: "";
    position: absolute;
    width: 0;
    height: 100%;
    left: 0;
    top: 0;
    background-color: #ff533d;
}
.piese-home-main-slider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
    width: 100%;
    -webkit-animation: sliderActivePagination 6s linear;
    animation: sliderActivePagination 6s linear;
}

/*Brand Selection*/
.piese-slider-logos{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 7px;
    width: 100%;
    flex-wrap: wrap;
}
.piese-slider-logos > a{
    width: calc(50% - 7px);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    border: 2px solid #B8B8B8;
    border-radius: 5px;
    max-height: 75px;
}
@media screen and (min-width: 768px){
    .piese-slider-logos > a{
        width: calc(33.33% - 7px);
    }
}
@media screen and (min-width: 1400px){
    .piese-slider-logos > a{
        width: calc(16.66% - 7px);
    }
}
.piese-slider-logos > a:hover, .piese-slider-logos > a:active, .piese-slider-logos > a:focus{
    border: 2px solid #FF533D;
}
.piese-slider-logos > a > img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/*OFFER CARD*/
.piese-offer-card{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    justify-content: space-between;
    align-items: center;
}
.piese-offer-card-image{
    border-radius: 5px;
    width: 100%;
}
.piese-offer-card-image img{
    display: block;
    margin: 0;
    object-fit: contain;
    width: 100%;
}
.piese-offer-card-title{
    width: 100%;
}
.piese-offer-card-title h4{
    color: #1F104A;
    font-size: 20px;
    font-weight: 700;
}
.piese-offer-card-title p{
    color: #B8B8B8;
    font-size: 14px;
    font-weight: 500;
}
.piese-offer-card-text{
    width: 100%;
}
.piese-offer-card-text p{
    color: #000;
    font-size: 16px;
    font-weight: 500;
}
.piese-offer-card-button{
    padding-top: 10px;
    width: 100%;
}
.piese-offer-card-button .btn span{
    font-size: 14px;
}

/*PIESA CARD*/
.piese-products-slider .swiper-wrapper{
    align-items: stretch;
}
.piese-products-slider .swiper-wrapper .swiper-slide{
    height: auto;
}
.piese-card{
    border-radius: 5px;
    border: 1px solid #B8B8B8;
    background-color: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}
.piese-card-image-container{
    position: relative;
    z-index: 9;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.piese-card-image{
    z-index: 10;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.piese-card-ribbon-container{
    position: absolute;
    max-width: 50%;
    z-index: 11;
    left: 0;
    top: 10px;
}
.piese-card-ribbon{
    background: #FF533D;
    max-width: 150px;
    border-radius: 0 5px 5px 0;
    margin-bottom: 3px;
}
.piese-card-ribbon a{
    margin: 0;
    padding: 2px 3px;
    color: #fff !important;
    font-size: 13px;
}
.piese-card-favorite-button{
    z-index: 12;
    position: absolute;
    top: 10px;
    right: 10px;
}
.piese-card-title{
    flex-grow: 1;
}
.piese-card-title h4{
    color: #1F104A;
    font-weight: 700;
    font-size: 20px;
    padding-top: 10px;
}
.piese-card-price{
    padding-top: 7px;
}
.piese-card-price-cut{
    color: #565656;
    font-size: 16px;
    font-weight: 700;
    text-decoration: line-through;
    margin: 0;
    line-height: 1;
}
.piese-card-price-normal{
    color: #FF533D;
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    line-height: 1;
}
.piese-card-price-tva{
    color: #B8B8B8;
    font-size: 13px;
    font-weight: 400;
    margin: 0;
}

/*FAVORITE BUTTON */

.piese-favorite-button{
    width: 36px;
    height: 36px;
    background: #1F104A;
    border-radius: 36px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
}
.piese-favorite-button svg{
    width: 22px;
    height: 19px;
    fill: #fff;
}
.piese-favorite-button.p-favorited{
    background: #ff533d;
}
.piese-favorite-button.p-favorited svg{
    fill: #1F104A;
}

/*PRODUCTS SLIDER*/
.piese-product-slide{
    padding: 1px;
}
.piese-swiper-pagination-static .swiper-pagination{
    position: static;
    padding-top: 10px;
}
.piese-swiper-pagination .swiper-pagination-bullet{
    /*background: #E0E0E0;*/
}
.piese-swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
    background: #1F104A;
}
.piese-arrow-type-2{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 34px;
    background-color: #F5F6F7;
    border-radius: 5px;
    /*box-shadow: 0 5px 20px 0 rgba(31,16,74,.13);*/
}
.piese-arrow-type-2-left{
    left: 15px;
}
.piese-arrow-type-2-right{
    right: 15px;
}
#piese-products-slider-hp-arr-left{
    left: 15px;
}
#piese-products-slider-hp-arr-right{
    right: 15px;
}

/*BREADCRUMBS*/
.breadcrumb{
    background: transparent;
}
.breadcrumb-item + .breadcrumb-item::before{
    content: ">";
    color: #B8B8B8;
    font-weight: 400 !important;
    font-size: 18px;
}
.breadcrumb-item a{
    font-size: 16px;
    font-weight: 400;
    color: #1F104A;
    line-height: 18px;
}
.breadcrumb-item.active{
    font-size: 16px;
    color: #B8B8B8;
    font-weight: 400;
}

/*PRODUCT INFO TOP*/
.piese-product-info{

}
.piese-product-info h1{
    color: #1F104A;
    font-size: 26px;
    font-weight: 700;
}
.piese-product-info p.piese-product-code{
    color: #B8B8B8;
    font-size: 14px;
    font-weight: 400;
}
.piese-product-info-text p{
    color: #000;
    font-size: 16px;
    font-weight: 400;
}
.piese-product-info-price{

}
.piese-product-info-price-cut{
    color: #565656;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
    text-decoration: line-through;
}
.piese-product-info-price-normal{
    color: #FF533D;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    margin: 0;
}
.piese-product-info-price-tva{
    color: #B8B8B8;
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    margin: 0;
}
.piese-product-info-price-remaining{
    color: #1F104A;
    font-size: 16px;
    font-weight: 400;
    margin-top: 10px;
}

/*PRODUCT SLIDER*/
.product-images-slider .swiper-slide{
    height: auto;
}
@media screen and (min-width: 768px){
    .product-images-slider .swiper-slide{
        height: 400px;
    }
}
.product-images-slider .swiper-slide img{
    height: 100%;
    object-fit: contain;
}

.product-images-slider-thumbs .swiper-slide{
    height: 137px;
}
.piese-thumb-card{
    border: 1px solid #B8B8B8;
    border-radius: 5px;
    background: #fff;
    overflow: hidden;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-images-slider-thumbs .swiper-slide img{
    display: block;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/*PRODUCT TABS*/
.piese-tabs{
    margin-bottom: -1px;
}
.piese-tabs .nav-item{

}
.piese-tabs .nav-item .nav-link{
    color: #1F104A;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
    border-color: #dee2e6;
    border-collapse: collapse;
    padding: 5px;
}
@media screen and (min-width: 768px){
    .piese-tabs .nav-item .nav-link{
        font-size: 20px;
        padding: .5rem 1rem;
    }
}
.piese-tabs .nav-item .nav-link.active{
    color: #565656;
    border-color: #dee2e6 #dee2e6 #fff;
}

.product-description-text{
    color: #1f104a;
}
.product-description-text h2{
    font-size: 30px;
    margin-bottom: 16px;
}
.product-description-text h3{
    font-size: 24px;
    margin-bottom: 10px;
}
.product-description-text p{
    margin-bottom: 5px;
}
.piese-check-list{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: center;
    list-style: none;
    padding: 0;
}
.piese-check-list li{
    background-image: url(../../images/pre-owned/custom-icons/check.svg);
    background-repeat: no-repeat;
    padding-left: 35px;
    background-position: 0;
    flex: 0 0 100%;
    padding-right: 15px;
}
@media screen and (min-width: 768px){
    .piese-check-list li{
        flex: 0 0 50%;
    }
}
@media screen and (min-width: 992px){
    .piese-check-list li{
        flex: 0 0 33.33%;
    }
}
@media screen and (min-width: 1200px){
    .piese-check-list li{
        flex: 0 0 25%;
    }
}

.product-table{
    table-layout: fixed;
}
.product-table.table-striped tbody tr:nth-of-type(2n+1) {
    background-color: #F5F6F7;
}
.product-table.table-striped.table-hover tbody tr:hover {
    color: #212529;
    background-color: rgba(0,0,0,.075);
}
.product-table tr td{
    font-size: 16px;
    color: #1F104A;
    font-weight: 400;
}
.product-table tr td:first-child{
    width: auto;
    color: #565656;
}
@media screen and (min-width: 992px){
    .product-table tr td:first-child{
        width: 450px;
    }
}

/*PRODUCT INPUTS*/
.btn-product{
    font-size: 14px;
    font-weight: 700;
}

.piese-number-input-border{
    border: 1px solid #6B6B6B;
    border-radius: 5px;
    height: 100%;
}
.piese-number-input{
    position: relative;
    border: 1px solid #fff;
    border-radius: 5px;
    height: 100%;
}
.piese-number-input input{
    background: #fff;
    font-weight: 400;
    font-size: 14px;
    color: #000;
    border: none;
    border-radius: 5px;
    padding: 0 5px 0 30px;
    width: 100%;
    height: 100%;
    min-height: 48px;
    display: block;
}
.piese-number-input .btn-increase{
    position: absolute;
    right:0;
    top: 0;
    height: calc(50% - 1px);
    width: 25px;
    font-size: 10px;
    color: #fff;
    line-height: 1;
    border: none;
    background: #1F104A;
    border-radius: 5px 5px 0 0;
}
.piese-number-input .btn-decrease{
    position: absolute;
    right:0;
    bottom: 0;
    height: calc(50% - 1px);
    width: 25px;
    font-size: 10px;
    color: #fff;
    line-height: 1;
    border: none;
    background: #1F104A;
    border-radius: 0 0 5px 5px;
}



.btn-white-piese{
    background-color: #fff;
    border-color: #6B6B6B;
}
.btn-white-piese span{
    color: #1F104A;
}

.btn-white-piese:hover span{
    color: #fff;
}

.piese-search-filter{
    padding: .5rem 0 15px 0;
}
.piese-search-filter.piese-search-filter-2{
    padding: 15px 10px 15px 10px;
    background-color: #fff;
    border-radius: 5px;
}
.piese-search-filter h4{
    font-size: 18px;
    font-weight: 700;
    color: #1F104A;
}
.piese-search-filter label span{
    margin-left: 10px;
    color: #6B6B6B;
    font-size: 14px;
    font-weight: 700;
}

.piese-checkbox{
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    width: 20px;
    height: 20px;
}
.piese-checkbox input[type='checkbox'], .piese-checkbox input[type='radio'] {
    position: absolute;
    opacity: 0;
    border: 1px solid #B8B8B8;
    background: #fff;
    top: 0;
    left: 0;
}
.piese-checkbox input[type='checkbox'] ~ span.indicator, .piese-checkbox input[type='radio'] ~ span.indicator{
    border-radius: 3px;
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background-color: #fff;
    border: 1px solid #B8B8B8;
    pointer-events: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    margin-left: 0;
}

.piese-checkbox input[type='checkbox']:checked ~ span.indicator, .piese-checkbox input[type='radio']:checked ~ span.indicator{
    color: #fff;
    background: #1F104A url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+DQo8c3ZnIHdpZHRoPSIxMiIgaGVpZ2h0PSI5IiB2aWV3Qm94PSIwIDAgMTIgOSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4NCiAgPHBhdGggZD0iTTQuNTc1IDguOTc3cy0uNDA0LS4wMDctLjUzNi0uMTY1TC4wNTcgNS42NGwuODI5LTEuMjI3TDQuNDcgNy4yNjggMTAuOTIxLjA4NmwuOTIzIDEuMTAzLTYuODYzIDcuNjRjLS4xMzQtLjAwMy0uNDA2LjE0OC0uNDA2LjE0OHoiIGZpbGw9IiNGRkYiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPg0KPC9zdmc+) 50% 40% no-repeat;
    border: 1px solid #1F104A;
}
.piese-checkbox input[type='checkbox']:focus ~ span.indicator, .piese-checkbox input[type='radio']:focus ~ span.indicator{
    border: 1px solid #1F104A;
}
.piese-checkbox input[type='checkbox']:focus:checked ~ span.indicator, .piese-checkbox input[type='radio']:focus:checked ~ span.indicator{
     border: 1px solid #1F104A;
}

.piese-search-loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: rgba(0,0,0,0.5);
    font-size: 30px;
    font-weight: 700;
    color: #fff;
}
.piese-search-loading .loading-icon{
    font-size: 70px;
}


/*NAV CART*/
.piese-nav-cart-icon{
    position: relative;
    margin-right: 0;
    padding: 0 !important;
}
.piese-nav-cart-number{
    position: absolute;
    top: -10px;
    right: -10px;
    background-color: #FF533D;
    width: 20px;
    height: 20px;
    border-radius: 20px;
}
.piese-nav-cart-number > span{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    font-size: 10px;
    color: #fff;
    line-height: 1;
}
.piese-nav-cart-hover{

}
.piese-nav-cart-hover .piese-nav-cart-list{
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    border-radius: 5px;
    background-color: #fff;
    min-width: 300px;
    max-width: 340px;
    -webkit-box-shadow: 0px 15px 20px 4px rgba(0,0,0,0.4);
    -moz-box-shadow: 0px 15px 20px 4px rgba(0,0,0,0.4);
    box-shadow: 0px 15px 20px 4px rgba(0,0,0,0.4);
}
.piese-nav-cart-list .btn:hover{
    color: #1F104A;
}
@media screen and (max-width: 768px){
    .piese-nav-cart-hover .piese-nav-cart-list {
        max-width: 95vw;
    }
}
.piese-nav-cart-hover:hover .piese-nav-cart-list{
    display: block;
}
.piese-nav-cart-list-overflown{
    overflow-y: scroll;
    max-height: 300px;
}
.piese-nav-cart-product-image{
    flex-grow: 0;
}
.piese-nav-cart-product-image img{
    width: 50px;
    height: 50px;
    object-fit: contain;
    border-radius: 5px;
    border: 1px solid #B8B8B8;
}
.piese-nav-cart-product-text{
    flex-grow: 1;
}
.piese-nav-cart-product-text h4{
    color: #6B6B6B;
    font-size: 12px;
    font-weight: 400;
    text-align: left;

    /*IE 11*/
    display: block;
    height: 28px;
    line-height: 14px;

    /*Others*/
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* number of lines to show */
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.piese-nav-cart-product-text p{
    font-size: 12px;
    font-weight: 700;
}
.piese-menu-padding{
    height: 61px;
    width: 100%;
}
@media screen and (min-width: 768px){
    .piese-menu-padding{
        height: 104px;
    }
}
@media screen and (min-width: 960px){
    .piese-menu-padding{
        height: 158px;
    }
}
@media screen and (min-width: 768px){
    .piese-menu-padding{

    }
}
/**/
.small-select{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.small-select label{
    color: #565656;
    font-size: 14px;
    flex-shrink: 0;
    margin-right: 5px;
    margin-bottom: 0;
}
.small-select .select2-container{
    flex-grow: 1;
}
@media screen and (max-width: 992px){
    .small-select{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }
    .small-select label{
        margin-right: 0;
        margin-bottom: 5px;
    }
}
.small-select .select2-container .selection{
    font-size: 14px;
}
.small-select .select2-container .select2-selection--multiple .select2-selection__arrow, .small-select .select2-container .select2-selection--single .select2-selection__arrow{
    right: 3px;
    top: 55%;
}
.small-select .select2-container .select2-selection--multiple, .small-select .select2-container .select2-selection--single{
    height: 36px;
}
.small-select .select2-container .select2-selection--multiple .select2-selection__arrow b, .small-select .select2-container .select2-selection--single .select2-selection__arrow b{
    background-size: contain;
    width: 14px;
    height: 10px;
}
.small-select .select2-container .select2-selection--multiple .select2-selection__rendered, .small-select .select2-container .select2-selection--single .select2-selection__rendered{
    color: #000;
    line-height: 36px;
    padding-left: 10px;
}

.small-select .select2-container .select2-selection[aria-expanded="true"] .select2-selection__arrow{
    top: 19%;
}
.piese-display-type-button{
    appearance: none;
    border: 1px solid #6B6B6B;
    background-color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 36px;
    width: 36px;
}
.piese-display-type-button:hover, .piese-display-type-button.selected{
    border-color: #1F104A;
}

/*PRODUCT ROW*/
.piese-row{
    display: flex;
    flex-direction: row;
    border: 1px solid #1F104A;
    background-color: #fff;
    border-radius: 5px;
    overflow: hidden;
}
.piese-row .piese-card-image-container{
    position: relative;
    flex-shrink: 0;
    flex-grow: 0;
    width: 300px;
    height: 200px;
    padding-bottom: 0;
}
.piese-row .piese-card-image-container .piese-card-image{
    width: 300px;
    height: 200px;
}
.piese-row .piese-row-info{
    flex-shrink: 1;
    flex-grow: 1;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-evenly;
}
.piese-row .piese-card-title{
    flex-shrink: 1;
    flex-grow: 1;
}
.piese-row .piese-card-price{
    flex-shrink: 0;
    flex-grow: 0;
}
.piese-row .piese-offer-card-button{
    flex-shrink: 0;
    flex-grow: 0;
    width: 175px;
}
@media screen and (max-width: 768px){
    .piese-row{
        flex-direction: column;
    }
    .piese-card-image-container{
        width: 100%;
        aspect-ratio: 3 / 2;
        height: auto;
    }
    .piese-row .piese-card-image-container{
        padding-top: 50px;
    }
    .piese-row .piese-card-image-container .piese-card-image{
        width: 100%;
        height: 100%;
    }
    .piese-row .piese-card-image-container .piese-card-ribbon-container{
        max-width: 100%;
        z-index: 11;
        position: static;
    }
    .piese-row .piese-row-info{
        align-items: start;
        flex-wrap: wrap;
    }
    .piese-row .piese-row-info .piese-offer-card-button, .piese-row .piese-row-info .piese-card-price{
        width: 100%;
    }
    .piese-row .piese-card-favorite-button{
        right: 20px;
    }
}

@media screen and (max-width: 992px){
    .piese-search-mobile-menu{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #fff;
        z-index: 1000;
        overflow-y: scroll;
    }
    .piese-search-mobile-menu.active{
        display: block;
    }
}

.piese-block-container{
    border: 1px solid #6B6B6B;
    border-radius: 5px;
    background-color: #fff;
}


/*CART DETAILS*/
.piese-cart-details-table td{
    vertical-align: middle;
}
.piese-cart-details-product-delete-cell{
    width: 44px;
}
.piese-cart-details-product-image-cell{
    width: 100px;
}
.piese-cart-details-product-image{
    object-fit: contain;
}
.piese-cart-details-product-title-cell h3{
    font-size: 16px;
    font-weight: 700;
}
.piese-cart-details-product-quantity-cell{
    width: 105px;
}
.piese-cart-details-product-favorite-cell{
    position: relative;
    width: 100px;
    text-align: center;
}
.piese-card-favorite-button-static .piese-card-favorite-button, .piese-cart-details-product-favorite-cell .piese-card-favorite-button{
    position: static;
}
.piese-cart-details-product-price-cell{
    width: 125px;
}
.piese-cart-details-product-total-cell{
    width: 125px;
}
.piese-checkout-card-image{
    width: 200px;
    height: 200px;
    object-fit: contain;
}

.hoverable_address{
    padding: 10px;
    border-radius: 5px;
    cursor: pointer;
    display: block;
    border: 1px solid #ccc !important;
}
.hoverable_address * {
    cursor: pointer;
}
.hoverable_address:hover{
    background-color: #F5F6F7;
}
.hoverable_address.active_address{
    background-color: #FF533D;
    color: #fff;
}
.hoverable_address .piese-checkbox{
    display: none;
}
