body {
	text-align: center;
	background-color: #050a14;
	color: white;
	margin: 0;
	padding: 0;
}

* {
	text-align: center;
	font-family: 'Poppins';
	font-weight: 100;
}

#loading-waiting {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0%;
	left: 0%;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 30;
	pointer-events: none;
}

.loader {
	width: 150px;
	display: flex;
	margin: auto;
	position: absolute;
}

.img-container {
	height: 100%;
	overflow: hidden;
	position: relative;
	width: 100%;
}

.img-container img {
	height: 100%;
	left: 0;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	opacity: 0;
	position: absolute;
	top: 0;
	width: 100%;
	z-index: -1;
}

.img-container img.next {
	opacity: 1;
	z-index: 1;
}

.img-container img.prev {
	opacity: 1;
	z-index: 2;
}

.img-container img.fade-out {
	opacity: 0;
	transition: visibility 0s 0.5s, opacity 0.5s linear;
	visibility: hidden;
}

.bannerNewModification {
	display: none;
}

.container-box {
	width: auto;
	display: flex;
	margin: 30px 5px;
	/* background-color: rgb(29, 29, 29, 1); */
	border-radius: 15px;
	overflow: hidden;
}

.content-box {
	width: 100%;
	padding: 10px 0;
	display: inline-flex;
	flex-flow: row wrap;
	justify-content: center;
	box-sizing: border-box;
}

.news-card {
	transition: .3s;
	width: 130px;
	height: 130px;
	margin: 5px;
	padding: 5px;
	box-sizing: border-box;
	display: inline-block;
	cursor: pointer;
	position: relative;
	overflow: hidden;
	border-radius: 17px;
}

.tableau {
	text-align: center;
	width: 100%;
	transition: .3s;
	border-radius: 15px;
}

.special-anim {
	transition: .3s ease-in-out;
	animation: 7s variantPreviewAnimation;
	animation-fill-mode: forwards;
}

@keyframes variantPreviewAnimation {
	0% {
		opacity: 0;
	}

	10% {
		opacity: 1;
	}

	90% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}

.preview-img {
	border-radius: 15px;
	display: flex;
	margin: auto;
	width: 100%;
	/* TESTING SPRAY WIDTH */
}

.news-card:hover {
	box-shadow: 0 0 0 2px rgba(255, 255, 255, 1);
}

.news-card-header {
	width: auto;
	min-height: 30px;
	bottom: 5px;
	left: 5px;
	right: 5px;
	position: absolute;
	z-index: 2;
	color: white;
	transition: .3s;
}

.news-card:hover .news-card-header {
	transform: translateY(-5px);
}

.variantItem {
	display: flex;
	flex-flow: row wrap;
	margin-left: 5px;
}

.info {
	width: 100%;
	text-transform: uppercase;
	font-size: 11px;
	text-align: left;
	font-family: var(--fontFamilyItemTitle);
}

.itemTags {
	display: flex;
	justify-content: center;
}

.variantItem img {
	margin: 5px;
	width: 10px;
}

@media only screen and (max-width : 1200px) {
	.news-card {
		min-width: 130px;
		width: 180px;
		min-height: 130px;
		height: 180px;
	}

	.more-item {
		position: fixed;
		z-index: 10;
		display: flex;
		width: 100%;
		background-color: #050a14;
		top: 0;
		bottom: 0;
	}

	.more-item-container {
		display: block;
		width: 100%;
		overflow-y: auto;
	}

	.closeItem {
		width: 100%;
		height: 40px;
		display: flex;
		margin: 30px auto;
	}

	.close-more {
		width: 80%;
		height: 40px;
		margin: auto;
		display: flex;
	}

	.close-more p {
		text-align: center;
		display: flex;
		margin: auto;
	}

	.more-item-content {
		width: 100%;
		display: block;
	}

	.item-display-images {
		width: 100%;
		height: 100%;
		display: flex;
		flex-flow: row wrap;
	}

	.item-display-images-loading {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	#img-variant {
		width: 100px;
		margin: 10px;
		border: 2px solid white;
	}

	.more-item-img {
		width: 80%;
		margin-top: 30px;
		display: flex;
		margin: auto;
		border-radius: 15px;
		box-shadow: 0 0 0 2px white;
		overflow: hidden;
	}

	.more-item-img img {
		width: 100%;
	}

	.more-item-img-loading {
		width: 95%;
		display: flex;
		margin: 50px auto;
		border-radius: 15px;
		box-shadow: 0 0 0 2px white;
		overflow: hidden;
	}

	.more-item-img-loading img {
		width: 100%;
	}

	.item-display-images-loading .item-display-images-select {
		display: none;
	}

	.item-display-images-select {
		width: 100%;
		margin: 0 15px;
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
	}

	.item-display-images-card {
		width: 70px;
		height: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 5px;
		border-radius: 10px;
		/* box-shadow: 0 0 0 5px transparent; */
		overflow: hidden;
		transition: .3s;
		cursor: pointer;
	}

	.item-display-images-card-hover {
		box-shadow: 0 0 0 3px var(--itemReviewStyleHover);
	}

	.item-display-images-card:hover {
		box-shadow: 0 0 0 3px white;
	}

	.item-display-images-card img {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.more-item-infos {
		width: 100%;
		margin: 20px auto;
	}

	.more-tags {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		width: 100%;
	}

	.more-item-tag {
		background-color: var(--itemTagBackground);
		min-width: 100px;
		width: auto;
		display: flex;
		margin: 0 5px 0 0;
		border-radius: 15px;
	}

	.more-item-tag-content {
		width: 100%;
		padding: 5px 10px;
		display: flex;
		margin: auto;
		justify-content: center;
		align-items: center;
	}

	.more-item-tag-p {
		width: 100%;
		display: flex;
		text-align: center;
		margin: auto;
		font-size: 13px;
	}

	.more-item-infos-audio {
		width: 100%;
		margin-top: 80px;
	}

	.load-audio {
		width: 100%;
		display: flex;
		margin: auto 0;
	}

	.more-item-header {
		width: 100%;
	}

	.more-item-title {
		text-transform: uppercase;
		font-size: 20px;
		font-family: var(--fontFamilyItemTitle);
	}

	.more-item-p {
		font-size: 13px;
		font-style: italic;
		font-family: 'Roboto Condensed';
	}

	.more-item-type {
		/* text-align: left; */
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-type-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-rarity {
		/* text-align: left; */
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-rarity-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-since {
		font-size: 13px;
		font-family: 'Roboto Condensed';
	}

	.more-item-since-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-id {
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-id-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-set {
		display: block;
		width: 100%;
	}

	.more-set {
		display: block;
	}

	.more-set-title {
		font-size: 14px;
		font-family: 'Oswald';
	}

	.more-set-title-title {
		color: var(--itemColorTitleValue);
	}

	.set-items {
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
		box-sizing: border-box;
	}

	.set-item {
		display: flex;
		margin: 5px;
		width: 50px;
		height: 50px;
		box-shadow: 0 0 0 1px white;
		cursor: pointer;
		border-radius: 15px;
		overflow: hidden;
	}

	audio {
		margin: 0 5px;
		width: 95%;
	}
}

@media only screen and (min-width : 1200px) {

	#loading-waiting {
		position: fixed;
		width: 100%;
		height: 100%;
		top: 0%;
		left: 0%;
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 30;
		pointer-events: none;
	}

	.loader {
		width: 150px;
		display: flex;
		margin: auto;
		position: absolute;
	}

	.bannerNewModification {
		width: 600px;
		height: 40px;
		display: none;
		/* display: flex; */
		margin: 50px auto;
	}

	.bannerNew {
		border-radius: 15px;
		box-shadow: 0 0 0 1px white;
		width: 100%;
		height: 100%;
		display: flex;
		justify-content: center;
		align-items: center;
	}

	.bannerCodeError {
		background-color: rgb(217, 96, 15);
	}

	.bannerCodeNew {
		background-color: rgb(0, 198, 17);
	}

	.bannerCodeTranslation {
		background-color: rgb(217, 173, 15);
	}

	.bannerNewTitle {
		text-align: center;
		font-size: 13px;
		color: white;
	}

	.container-box {
		width: 70%;
		display: flex;
		margin: 30px auto;
		/* background-color: rgb(29, 29, 29, 1); */
		border-radius: 15px;
		overflow: hidden;
	}

	.content-box {
		padding: 5px 0;
	}

	.news-card {
		width: 200px;
		height: 200px;
		margin: 5px;
		padding: 5px;
		box-shadow: 0 0 0 12px transparent;
		transition: .2s;
	}

	.news-card:hover {
		box-shadow: 0 0 0 4px rgba(255, 255, 255);
	}

	.news-card-background-hover {
		position: absolute;
		left: 0;
		right: 0;
		top: 0;
		bottom: 0;
		transition: .2s;
		z-index: 1;
	}

	.news-card:hover .news-card-background-hover {
		background-color: rgb(0, 0, 0, 0.5);
	}

	.news-card-header {
		display: block;
		min-height: 30px;
		margin: 0;
		color: white;
		text-align: center;
		bottom: 10px;
		left: 10px;
		right: 10px;
	}

	.itemTags {
		display: flex;
		align-items: center;
	}

	.variantItem {
		display: flex;
		flex-flow: row wrap;
		align-items: center;
		margin: 5px 0;
	}

	.variantItem img {
		display: flex;
		margin: 5px;
	}

	.info {
		font-size: 13px;
		text-transform: uppercase;
		margin: 0px 5px;
		width: 100%;
	}

	/* DETAILS ITEM */
	.more-item {
		position: fixed;
		z-index: 10000;
		display: flex;
		width: 100%;
		top: 0;
		bottom: 0;
		background-color: #050a14;
	}

	.more-item-scrolling {
		height: 100%;
		overflow-y: scroll;
	}

	.more-item-container {
		display: flex;
		flex-flow: row wrap;
		width: 70%;
		margin: auto;
		overflow: visible;
	}

	.closeItem {
		width: 100%;
		display: flex;
		justify-content: right;
	}

	.close-more {
		height: auto;
		min-height: 30px;
		margin: auto 0;
		display: flex;
	}

	.close-more p {
		display: flex;
		margin: auto;
		text-align: center;
		padding: 5px 20px;
	}

	.more-item-content {
		width: 100%;
		height: 100%;
		display: flex;
		margin: 5px;
	}

	.more-item-content-loading {
		width: 100%;
		display: flex;
	}

	.item-display-images {
		width: 100%;
		height: 100%;
		display: flex;
		flex-flow: row wrap;
	}

	.item-display-images-loading {
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.more-item-img {
		/* width: 70%; */
		width: 100%;
		display: flex;
		margin: auto 30px;
		border-radius: 15px;
		box-shadow: 0 0 0 2px white;
		overflow: hidden;
	}

	.more-item-img-leak img {}

	#img-variant {
		width: 200px;
		margin: 10px;
	}

	.more-item-img img {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.more-item-img-loading {
		width: 100%;
		display: flex;
		margin: auto 10px;
		box-shadow: 0 0 0 2px white;
		border-radius: 15px;
		overflow: hidden;
	}

	.more-item-img-loading img {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.item-display-images-loading .item-display-images-select {
		display: none;
	}

	.item-display-images-select {
		width: 100%;
		margin: 10px 15px;
		display: flex;
		flex-flow: row wrap;
		justify-content: center;
	}

	.item-display-images-card {
		width: 70px;
		height: 70px;
		display: flex;
		justify-content: center;
		align-items: center;
		margin: 5px;
		border-radius: 10px;
		/* box-shadow: 0 0 0 5px transparent; */
		overflow: hidden;
		transition: .3s;
		cursor: pointer;
	}

	.item-display-images-card-hover {
		box-shadow: 0 0 0 3px var(--itemReviewStyleHover);
	}

	.item-display-images-card:hover {
		box-shadow: 0 0 0 3px white;
	}

	.item-display-images-card img {
		width: 100%;
		display: flex;
		margin: auto;
	}

	.more-item-infos {
		width: 100%;
		display: inline-flex;
		flex-flow: row wrap;
		justify-content: left;
		margin: auto 5px;
	}

	.more-tags {
		display: flex;
		flex-flow: row wrap;
		justify-content: left;
		width: 100%;
	}

	.more-item-tag {
		background-color: var(--itemTagBackground);
		min-width: 100px;
		width: auto;
		display: flex;
		margin: 0 5px 0 0;
		transform: skew(-10deg);
		border-radius: 5px;
	}

	.more-item-tag-content {
		width: 100%;
		padding: 5px 10px;
		display: flex;
		margin: auto;
		justify-content: center;
		align-items: center;
	}

	.more-item-tag-p {
		/* width: 100%; */
		display: flex;
		text-align: center;
		margin: auto;
		font-size: 13px;
		transform: skew(10deg);
	}

	.more-item-infos-audio {
		width: 100%;
		display: inline-flex;
		flex-flow: row wrap;
		justify-content: left;
		margin: auto 0;
	}

	.load-audio {
		width: 100%;
		display: flex;
		margin: auto 0;
	}

	.more-item-header {
		width: 100%;
	}

	.more-item-title {
		text-transform: uppercase;
		text-align: left;
		font-size: 22px;
		font-family: var(--fontFamilyItemTitle);
	}

	.more-item-p {
		text-align: left;
		font-size: 18px;
		font-style: italic;
		font-family: 'Roboto Condensed';
	}

	.more-item-type {
		text-align: left;
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-type-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-rarity {
		text-align: left;
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-rarity-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-since {
		text-align: left;
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-since-title {
		color: var(--itemColorTitleValue);
	}

	.more-item-id {
		text-align: left;
		font-size: 14px;
		font-family: 'Roboto Condensed';
	}

	.more-item-id-title {
		color: var(--itemColorTitleValue);
	}

	audio {
		margin: 0;
		width: 70%;
	}

	.more-item-set {
		display: block;
		width: 100%;
	}

	.more-set {
		display: block;
	}

	.more-set-title {
		font-size: 14px;
		text-align: left;
		font-family: 'Oswald';
	}

	.more-set-title-title {
		color: var(--itemColorTitleValue);
	}

	.set-items {
		display: flex;
		flex-flow: row wrap;
		justify-content: left;
		box-sizing: border-box;
	}

	.set-item {
		display: flex;
		margin: 5px;
		width: 80px;
		height: 80px;
		box-shadow: 0 0 0 2px white;
		cursor: pointer;
		border-radius: 10px;
		overflow: hidden;
	}
}