/* Override Modal */
.pl-modal {
    width: 100%;
    z-index:99;
}

.pl-modal-content {
    background-color: transparent;
    position: relative;
    height: 100%;
}

.material-carrusel {
    max-width: 650px;
    height:100%;
    display: flex;
    align-items: center;

}

.material-carrusel .carrousel-wrapper ,
.material-carrusel .thumb .description{
    opacity: 0;
    transition: all .38s ease-in-out;
}
.material-carrusel.show .carrousel-wrapper ,
.material-carrusel.show .thumb .description{
    opacity: 1;
}

.material-carrusel .thumb {
    position: relative;
}

.material-carrusel .thumb .image .inner-image {
    padding-bottom: 100%;
}

.material-carrusel .thumb .description {
    align-items: flex-end;
    bottom: 0;
    color: #fff;
    display: flex;
    font-family: 'Bulo';
    font-size: 14px;
    justify-content: space-between;
    min-height: 35px;
    padding: 10px 20px;
    position: absolute;
    left: 0;
    width: 100%;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
    /*background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); !* FF3.6-15 *!
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); !* Chrome10-25,Safari5.1-6 *!
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); !* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ *!
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); !* IE6-9 *!*/
    background-color: #818172;
}

.material-carrusel .prev-button:after {
    display: none;
}

.material-carrusel .prev-button {
    background-image: url('../imgs/iconos/right-arrow-white.svg');
    background-size: cover;
    width: 30px;
    height: 30px;
    transform: rotate(180deg) translateY(50%);
    margin-left: 0;
}

.material-carrusel .next-button {
    background-image: url('../imgs/iconos/right-arrow-white.svg');
    background-size: cover;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    margin-right: 0;
}

.material-carrusel .next-button,
.material-carrusel .prev-button {
    top: 50%;
}

@media(max-width: 767px) {
    .material-carrusel .prev-button {
        background-image: url('../imgs/iconos/right-arrow-white.svg');
        background-size: cover;
        width: 22px;
        height: 22px;
        transform: rotate(180deg) translateY(0);
        margin-left: 0;
    }

    .material-carrusel .next-button {
        background-image: url('../imgs/iconos/right-arrow-white.svg');
        background-size: cover;
        transform: translateY(0);
        width: 22px;
        height: 22px;
        margin-right: 0;
    }

    .material-carrusel .next-button,
    .material-carrusel .prev-button {
        bottom: 0;
        top: 100%;
        margin: 0 auto
    }
}