.full-price{
    font-weight: normal;
    text-decoration: line-through;
    color: #383838;
    opacity: 0.50;
}

.final-price{
    font-weight: bold;
    color: #F46B5B;
}

.cart-disabled{
    pointer-events: none;
}

.product-slide-wrapper .slick-slide{
    margin: 0 10px;
}

.card-sku-code{
    font-size: 0.75rem;
    height: 35px;
}

.product-slide-wrapper .product-price,
#product_container .product-price{
    font-size: 0.75rem;
}

.product-slide-wrapper .product-image,
#product_container .product-image{
    object-fit: contain;
    width: 100%;
    height: 150px;
}

.product-slide-wrapper .card,
.product-slide-wrapper .card .card-body .product-image,
#product_container .card,
#product_container .card .card-body .product-image{
    border-radius: 20px;
    border: none;
}

.product-slide-wrapper .slick-dots,
#product_container .slick-dots{
    bottom: -45px;
}

.card-sku-code,
.product-slide-wrapper .product-text,
#product_container .product-text{
    @supports (-webkit-line-clamp: 2) {
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: initial;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
}

.product-slide-wrapper .product-text,
#product_container .product-text{
    font-size: 0.75rem;
    height: 60px;
    font-weight: 500;
}

.icon-container {
    margin-top: 15px;
    margin-right: 15px;
    display: flex;
    flex-direction: column;
}

.promotion-tag {
    width: 35px;
    height: 35px;
    margin-left: auto;
    z-index: 2;
}

.soldout-tag {
    width: 80px;
    height: 30px;
    margin-left: auto;
    z-index: 2;
}

@media (min-width: 1200px) {
    .promotion-tag {
        width: 70px;
        height: 70px;
    }

    .soldout-tag {
        width: 133px;
        height: 43px;
        margin-left: auto;
        z-index: 2;
    }

    .product-slide-wrapper .slick-arrow,
    #product_container .slick-arrow{
        z-index: 1;
        width: 35px;
        height: 40px;
        color: #4DCBA3;
        font-size: 30px;
        border: none;
        cursor: pointer;
        transition: background-color 0.15s, color 0.15s;
    }

    .product-slide-wrapper .product-text,
    #product_container .product-text{
        font-size: 18px;
        height: 80px;
    }

    .product-slide-wrapper .product-price,
    #product_container .product-price{
        font-size: 22px;
    }

    .product-slide-wrapper .product-image,
    #product_container .product-image{
        min-height: 270px;
    }

    .product-slide-wrapper .product-image:hover,
    #product_container .product-image:hover{
        transform: scale(1.08);
        transition: all 0.25s ease;
    }

    .card-sku-code{
        height: 55px;
        font-size: 1rem;
    }

}