/*** Página: CARTELERA ***/
.cont-ficha {
    display: grid;
    grid-template-columns: 200px 1fr;
    grid-template-rows: 3rem 4rem 1fr;
    margin-bottom: 20px;
    grid-template-areas:
        "img titulo"
        "img info"
        "img ses";
	column-gap: 2rem;
    row-gap: 6px;		
    /*background-color: var(--negro);
color: var(--blanco);*/
padding: 40px 40px !important;
background-color: #EBEBEB !important;
}

.cont-ficha div {
    padding: 0 !important;
}
.titulo-ficha {
    grid-area: titulo;
    text-align: left;
    margin: 6px 0;
    font-weight: bold;
    font-size: 20px;
color: var(--negro) !important;
font-family: var(--fuente-corporativa);
}
.titulo-compra {
    /*grid-area: compra;*/
    text-align: left;
    margin: 6px 0;
    font-weight: bold;
    font-size: 16px;
color: var(--color-corporativo) !important;
font-family: var(--fuente-corporativa);
}

.img-ficha {
    grid-area: img;
    width: 200px;	
    height: auto;
    /*border:1px solid #cccccc;*/
}

.img-v-ficha {
    width: 194px;
    height: auto;
}

.info-ficha {
    grid-area: info;
    text-align: left;
    color: #666 !important;
}

.sesiones-ficha {
    grid-area: ses;    
    display: inline-flex;
    flex-wrap: wrap;
    align-content: stretch;
    /*justify-content: center;	*/
}

.cont-ses, .mas-ses {
    color: #fff;
    width: 170px;
    height: 68px;
    margin: 10px 6px 6px 0px;
   /* border: 5px solid #5cb85c;*/
border: 5px solid var(--color-corporativo); /*#454e90;*/    
cursor: pointer;
opacity:1;
}

.cont-ses:hover, .mas-ses:hover {
    opacity:0.5;
}

.cont-ses.ses-caduc {
    opacity:0.3;
}

.mas-ses {
    /*border: 5px solid #f59e9b;*/
    border: 5px solid #000000;
}

.etiq-ses {
    /*background-color: #5cb85c;*/
    background-color: var(--color-corporativo);
    height: 40%;
    /*line-height: 100%;*/
    display: flex;
    justify-content: center;
    align-items: start;
    font-size: small;
    text-align:left;
}
.etiq-ses p{
    text-align:left;
}

.mas-ses .etiq-ses {
   /* background-color: #f59e9b;*/
    background-color: #000000;
}

.hora-ses {
    height: 60%;
    background-color: #fff;
    color: #222;
    font-weight: bold;
    line-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;	
}

.mas-ses .hora-ses {
    font-size: x-large;
	color: #666;
}

.ver-ficha {
    cursor: pointer;
opacity:1;
}

.ver-ficha:hover {
    cursor: pointer;
opacity: 0.5;
}

@media only screen and (max-width: 768px) {

	.cont-ficha {
		display: flex;
        flex-direction: column;
	}

	.titulo-ficha {
		order: 1;
		text-align: center;
	}

	.img-ficha {
		order: 2;
		margin: 0 auto;
	}

	.calif-ficha {
		order: 3;
		text-align: center;		
	}

	.sesiones-ficha {
		order: 4;
	}

}