			#ItesCollection {
				margin: auto;
				margin-bottom: 42px;
				max-width: 100%;
			}
			#ItesCards {
				margin: auto;
				display: grid;
				grid-template-columns: repeat(auto-fit, 160px);
				justify-content: center;
				gap: 8px;
			}
			.ite_card {
				color: #62314c;
				border: solid 2px #62314c;;
				width: 160px;
				height: 260px;
				padding: 0px;
				margin: 4px;
			}
			.ite_card > div {
				padding: 10px;
				height: 100%;
			}
			.ite_card i {
				font-size: 0.9em;
			}
			.f_new {
				font-size: 1.5em;
				position: absolute;
				color: red;
				font-weight: 600;
				transform: rotate(-15deg);

				text-shadow:
					-1px -1px 0 white,
					 1px -1px 0 white,
					-1px  1px 0 white,
					 1px  1px 0 white
				;

				animation: a_bombbeat 1s infinite ease-in-out;
			}
			@keyframes a_bombbeat {
				0% {
					transform: rotate(-15deg) scale(1);
				}
				50% {
					transform: rotate(-15deg) scale(1.2);
				}
				100% {
					transform: rotate(-15deg) scale(1);
				}
			}