/*	ul.thumb
============================== */

ul.thumb {
	display:flex;
	flex-wrap:wrap;
	justify-content:left;
}
ul.thumb.case-2 {
	justify-content:center;
}
ul.thumb li {
	background-color:hsla(0,100%,100%,0.4);
}
ul.thumb li > span, ul.thumb li img {
	display:block;
}
ul.thumb li > span:first-child {
	position:relative;
	height:0;
	padding-top: -webkit-calc(9 / 16 * 100%);
	padding-top: calc(9 / 16 * 100%);
	background-size:contain;
	background-position:center center;
	background-repeat:no-repeat;
}
ul.thumb li > span:first-child.lazy-done {
	background-color:hsla(220,100%,81%,0.4);
	-webkit-animation: fadeIn 800ms;
	animation: fadeIn 800ms;
}
ul.thumb li > span:first-child img {
	position: absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
}
ul.thumb li > span:last-child {
	padding:0.75em;
	flex-grow: 1;
	/**/
	display: flex;
	flex-direction: column;
	justify-content: center;
}
ul.thumb li > span:last-child > span {
	text-align:center;
	line-height:1.25;
}
@media all and (min-width: 992px) {
ul.thumb {
	gap:20px;
}
ul.thumb:not(:last-child) {
	margin-bottom:20px;
}
ul.thumb li {
	display: flex;
	flex-direction:column;
	width:calc((100% - 20*2px)/3);
}
ul.thumb li > span:last-child {
	font-size:100%;
}
ul.thumb.case-2 {
	margin-right:12%;
	margin-left:12%;
}
ul.thumb.case-2 li {
	width:calc((100% - 3.125vw)/2);
}
}
@media all and (max-width: 991.98px) {
ul.thumb {
	gap:3.125vw;
}
ul.thumb:not(:last-child) {
	margin-bottom:3.125vw;
}
ul.thumb li {
	display: flex;
	flex-direction:column;
	width:calc((100% - 3.125vw)/2);
}
ul.thumb li > span:last-child {
	font-size:87.5%;
}
}





/*	.new
============================== */
ul.thumb li.new {
	position:relative;
}
ul.thumb li.new:after {
	content:"NEW";
	font-size:12px;
	position:absolute;
	display:inline-block;
	text-decoration:none;
	color:#fffa00;
	background-color:#ff006e;
	font-weight:700;
	padding:0 6px;
	-webkit-animation: blinking 1s ease-in-out infinite alternate;
	animation: blinking 1s ease-in-out infinite alternate;
}
@media all and (min-width: 992px) {
ul.thumb li.new:after {
	line-height:18px;
	right:-3px;
	bottom:-3px;
}
}
@media all and (max-width: 991.98px) {
ul.thumb li.new:after {
	line-height:16px;
	right:-2px;
	bottom:-5px;
}
}


@media print {
ul.thumb li > span:first-child {
	display:none;
}
}