body#product .floating-view
{
    display: none;
}

@media all and (max-width: 768px)
{
    body#product .floating-view
    {
        display: block;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100vw;
        z-index: 50;
        background: #FFF;
        padding: 1rem;
        transform: translateY(100%);
        transition: all .2s;
        box-shadow: 0 0 10px rgba(0, 0, 0, .2);
    }

    body#product .floating-view.visible
    {
        transform: translateY(0%);
    }

    body#product .floating-view .price {
        font-size: var(--font-size-md) !important;
    }

    body#product .floating-view .product-discount .regular-price {
        font-size: var(--font-size-sm) !important;
    }

    body#product .floating-view .price .discount
    {
        display: none;
    }

    body#product .floating-view .actions
    {
        display: flex;
        justify-content: space-between;
    }

    body#product .floating-view .actions > * + *
    {
        margin-left: 15px;
    }

    body#product .floating-view .product__product-price
    {
        margin: 0 0 .5rem 0;
    }

    body#product .floating-view .btn-add-to-cart
    {
        padding: .5rem;
    }
}

body#product #product-modal figure.slick-slide.rc > *
{
    height: auto;
    width: auto;
    max-width: 100%;
    max-height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

body#product #product-modal figure.slick-slide.rc
 {
    width: 100%;
    padding-top: calc(100vh - 150px);
    background: transparent;
}

/* Wishlist */
.wishlist-add-to-new i
{
    display: none;
}

.add-wrapper .btn-add-to-wishlist
{
    font-size: 1.5rem;
    padding: 1.05rem;
}

.add-wrapper .btn-add-to-wishlist i
{
    position: relative;
    top: 1px;
    margin: 0 !important;
}

/* Botón de actualizar */
.product-refresh.ps-hidden-by-js
{
    display: none;
}