.barra-menu{
	background: #e30613;
	position: relative;
	padding: 0;
    text-align: center;
    z-index: 10;
}

.barra-menu li{
	display: inline-block;
	padding: 8px 12px;
	cursor: pointer;
    cursor: pointer;
    color: #fff;
}

.barra-menu li a{
    color: #fff;
    text-decoration: none;
}

.barra-menu div{
    transition: all 0.5s;
	position: absolute;
	width: 100%;
	z-index: 5;
	display: none;
    background: #333;
    margin-left: 0;
    padding-bottom: 20px;
    height: 0;
}

.barra-menu div.activo{
    transition: all 0.5s;
    display: flex;   
    height: auto;
}

.barra-menu div li{
    padding: 12px 8px;
}

.barra-menu div li:hover{
    background: #262626;
}

.box{
    text-align: center;
    overflow: hidden;
    position: relative;
}

.box .agregar{
	max-width: 20px;
	height: 20px;
	display: inline-block;
	transform: scale(1) !important;
	background: none !important;
}
.box img{
    width: 100%;
    height: auto;
    transform: scale(1);
    transition: all 0.3s ease 0s;
    background: #fff !important;
}
.box:hover img{ transform: scale(1.3); }
.box .box-content{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all 0.2s ease 0s;
    line-height: 1.25;
}
.box:hover .box-content{ background: rgba(0,0,0,0); }
.box:before,
.box:after,
.box .box-content:before,
.box .box-content:after{
    content: "";
    width: 105%;
    height: 105%;
    background: rgba(0,0,0,0.6);
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 1;
    transform: translate(-50%, -170%) rotate(45deg);
    transition: all 0.3s ease 0s;
}
.box:hover:before{ transform: translate(-50%, -80%) rotate(45deg); }
.box:hover:after{
    background: rgba(0,0,0,0.4);
    transform: translate(-50%, -93%) rotate(45deg);
}
.box:hover .box-content:before{
    background: rgba(0,0,0,0.3);
    transform: translate(-50%, -113%) rotate(45deg);
}
.box:hover .box-content:after{
    background: rgba(0,0,0,0.2);
    transform: translate(-50%, -133%) rotate(45deg);
}
.box .inner-content{
    width: 100%;
    padding: 7px 0;
    opacity: 0;
    position: absolute;
    top: 40%;
    left: 0;
    z-index: 2;
    transform: translateY(-50%);
    transition: all 0.3s ease 0.1s;
}

a .box-content  span{
    color: #fff;
}
.box:hover .inner-content{ opacity: 1; }
.box .title{
    padding: 0 10px;
    margin: 0 0 3px 0;
    font-size: 1.5em;
    font-weight: 900;
    color: #f1c40f;
    transition: all 0.6s ease 0s;
    line-height: 18px;
}
.box .post{
    display: block;
    font-size: 1em;
    color: #333;
    transition: all 0.6s ease 0s;
    font-weight: 600;
}
.box .icon{
    padding: 0;
    margin: 0;
    list-style: none;
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.5s ease 0s;
}
.box .icon li{
    display: inline-block;
    margin: 0 5px;
    opacity: 0;
    transition: all 400ms cubic-bezier(1.000, -0.360, 0.570, -0.150);
}
.box .icon li:first-child{ transform: translateX(-120px); }
.box .icon li:last-child{ transform: translateX(120px); }
.box:hover .icon li{
    opacity: 1;
    transform: translateX(0);
}
.box .icon li a{
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    background: #f1c40f;
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    position: relative;
    transition: all 0.3s ease 0s;
}

.filtr-container{margin-left: 0}

.precioAnterior{
    text-decoration:  line-through;
    display: inline-block;
    margin-top: 4px;
    color: #333;
}

.box .descuento-ticket{
    top: 60px !important;
    z-index: 5;
}

.box:hover .descuento-ticket{
    opacity: 0;
}


@media only screen and (max-width:990px){
    .box{ margin-bottom: 30px; }
}


@media (max-width: 575px){
    a .box-content span{
        color: #000;
        font-size: 18px;
    }

    .box{
        overflow: visible;
    }

    .box::before, .box::after, .box .box-content::before, .box .box-content::after {
        content: none;
    }

    .box:hover img{
        transform: scale(1) !important;
    }
    

    .box .box-content{
        position: relative;
        display: inline-block;
        opacity: 1;
    }

    .box .box-content .inner-content{
        opacity: 1;
        position: relative;
        transform: translateY(0);
    }

    .box .title{
        font-stretch: 2em;
    }

    .box .icon{
        transform: translateY(0);
        opacity: 1;
    }


}