

@keyframes octocat-wave {
	0%,
	100% {
		transform: rotate(0);
	}
	20%,
	60% {
		transform: rotate(-25deg);
	}
	40%,
	80% {
		transform: rotate(10deg);
	}
}


/* Grid */

.grid {
	position: relative;
	z-index: 2;
	display: block;
	margin: 0 auto;
}

.grid--hidden {
	position: fixed !important;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	pointer-events: none;
	opacity: 0;
}

.js .grid--loading::before,
.js .grid--loading::after {
	content: '';
	z-index: 1000;
}

.js .grid--loading::before {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #2c2d31;
}

.js .grid--loading::after {
	position: absolute;
	top: calc(25vh - 20px);
	left: 50%;
	width: 40px;
	height: 40px;
	margin: 0 0 0 -20px;
	border: 8px solid #383a41;
	border-bottom-color: #565963;
	border-radius: 50%;
	animation: animLoader 0.8s linear forwards infinite;
}

.grid__sizer {
	margin-bottom: 0 !important;
	background: whitesmoke;
	
}

.grid__link,
.grid__img {
	display: block;
	border-radius: 15px;
}

.grid__img {
	width: 100%;
	border-radius: 15px;
}


.grid__item,
.grid__sizer {
	width: calc(90% - 10px);
	margin-left: 5%;
	margin-right: 5%;
	margin-top: 5px;
	margin-bottom: 5px;
	position: relative;
	background: whitesmoke;

}

.grid__item .tagcatego {
	right: 0;
	top: 10px;
	padding: 2px 5px 1px;
	font-weight: 600;
	font-size: 9px;
	position: absolute;
	color: #fffefe;
	background-color: #c52585;

}
@media screen and (min-width: 30em) {
	.grid__item,
	.grid__sizer {
		width: calc((100% / 2) - 20px);
		margin: 5px 5px 5px 10px;
		position: relative;
		background: whitesmoke;
	
	}

	.grid__item .tagcatego {

		right: 0;
		top: 10px;
		padding: 2px 5px 1px;
		font-weight: 800;
		font-size: 15px;

	
	}
}
@media screen and (min-width: 60em) {
	.grid__item,
	.grid__sizer {
		width: calc((100% / 3) - 20px);
		margin: 5px 5px 5px 10px;
		position: relative;
		background: whitesmoke;
	
	}

	.grid__item .tagcatego {

		right: 0;
		top: 10px;
		padding: 2px 5px 1px;
		font-weight: 800;
		font-size: 15px;

	
	}
}

@media screen and (min-width: 70em) {
	.grid__item,
	.grid__sizer {
		width: calc(25% - 10px);
		margin: 5px 5px 5px 5px;
		position: relative;
		background: whitesmoke;

	}

	.grid__item .tagcatego {

		right: 0;
		top: 10px;
		padding: 2px 5px 1px;
		font-weight: 800;
		font-size: 15px;

	
	}
}

