/*** Página: FICHA ***/
.cont-ficha {
    width: 60%;
    margin-top: 40px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 3rem 1fr 4rem;
    margin-bottom: 20px;
    grid-template-areas:
        "img titulo"
        "img sinop"
        "img info";
    column-gap: 2rem;
    row-gap: 6px;
    background-color: #fff;
}

.panel-sesiones {
    width: 60%;
    margin-top: 40px;
    display: flex;
    margin-bottom: 20px;
    background-color: #fff;
}

.cont-ficha div, .panel-sesiones div {
    padding: 0 !important;
}
.titulo-ficha {
    grid-area: titulo;
    text-align: left;
    margin: 6px 0;
    font-weight: bold;
    font-size: x-large;
color: #222 !important;
}

.img-ficha {
    grid-area: img;
    width: 194px;	
    height: 310px;
}

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

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

.info-durac {
    margin-bottom: 10px;
}
.info-genero {
    clear: none;
}
.info-calif {
    float: left;
}

.sinopsis-ficha {
    grid-area: sinop;
    text-align: left;
    line-height: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.cont-ses, .mas-ses {
    color: #fff;
    width: 96px;
    height: 68px;
    margin: 10px 6px 6px 6px;
    border: 5px solid var(--azul);
    cursor: pointer;
}

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

.etiq-ses {
    background-color: var(--azul);
    height: 40%;
    /*line-height: 100%;*/
    display: flex;
    justify-content: center;
    align-items: start;
    font-size: small;
}

.mas-ses .etiq-ses {
    background-color: var(--rojo);
}

.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;
}

.btn-ficha {
    border: 1px solid #fff;
    color: #fff;
    font-size: small;
    cursor: pointer;
    text-decoration: none !important;
    width: 100% !important;
    height: 33px;
}

.ver-ficha {
    cursor: pointer;
}

.ico-calif {
    float: left;
    clear: both;
    margin-left: 0px;
    margin-right: 4px;
}

@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;
	}

}