/* Rejilla productos */

.rejilla-productos {
    overflow: hidden;
    text-align: center;
}

.rejilla-productos .rejilla-productos-item {
    display: inline-block;
    vertical-align: top;
    width: calc(25% - 65px);
    max-width: 300px;
    margin: 30px;
    position: relative;
    /*border:1px solid black;*/

    height:610px;
    padding:10px;

    -webkit-box-shadow: 0px 0px 15px -2px rgba(0,0,0,0.59);
    -moz-box-shadow: 0px 0px 15px -2px rgba(0,0,0,0.59);
    box-shadow: 0px 0px 15px -2px rgba(0,0,0,0.59);

    border-radius: 5px;
}

.rejilla-productos-imagen {
    position: relative;
}

.rejilla-productos-imagen img {
    width: 100%;
    height: auto !important;
}

.rejilla-productos p {
    text-align: center;
}

.rejilla-productos .layer {
    background-image: url(/images/ico-mas.svg);
    background-size: 40px 40px;
    background-position: center center;
    background-repeat: no-repeat;
}

.path-blogs .views-field-path {
    margin-top: 30px;
}


@media all and (max-width: 780px) {
    .rejilla-productos {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin-bottom: 30px;
    }

    .rejilla-productos .rejilla-productos-item {
        width: 100%;
        max-width: 100%;
        margin: 0;
        height: auto;
    }

    .slideshow-container .active {
        background-color: white;
    }
}