@charset "UTF-8";

/* Mediateca item */

#mediateca-item .mediateca-item-cover {
	cursor: pointer;
}

#mediateca-item .mediateca-item-cover:not(.show)::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	transition: all .2s ease-out;
}

#mediateca-item .mediateca-item-cover:not(.show):hover::before {
    background-color: var(--theme-text-color);
    opacity: .7;
}

#mediateca-item .mediateca-item-cover:not(.show)::after {
	content: '\f0da';
	font-family: "Font Awesome 5 Free";
	font-weight: 900;
	color: #fff;
	opacity: 0;
	transition: all .2s ease-out;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	font-size: 10rem;
}

#mediateca-item .mediateca-item-cover:not(.show):hover::after {
    opacity: 1;
}

/* XS */
@media only screen and (min-width : 0px) {

	#mediateca-item .mediateca-item-cover {
		margin-bottom: 1rem;
	}
}

/* SM (landscape phones, 576px and up) */
@media (min-width: 576px) {
}

/* MD (tablets, 768px and up) */
@media (min-width: 768px) {
}

/* LG (desktops, 992px and up) */
@media (min-width: 992px) {

	#mediateca-item .mediateca-item-cover {
		margin-bottom: 0;
	}
}

/* XL (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}