* {
	margin: 0;
	padding: 0;
}

body {
	background-image: url(../Images/FUNDODESKTOP.png);
	background-repeat: no-repeat;
	background-size: cover;
	color: white;
	font-family: "Montserrat", "Open Sans", sans-serif;
	font-size: 16px;
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}
html {
	scroll-behavior: smooth;
}

.hidden {
	display: none;
}
.center {
	display: flex;
	justify-content: center;
	align-items: center;
}
.icon-sides img {
	width: 30px;
	height: 30px;
	margin: 0 5px;
}
button {
	cursor: pointer !important;
}
.green-dark {
	color: #2bff00;
}
.red.glow {
	text-shadow: red 0.1px 0.5px 10px;
}
.red {
	color: red;
}
.white {
	color: white;
}
.white.glow {
	text-shadow: white 0.1px 0.5px 10px;
}
.green {
	color: #00ff94;
}
.green.glow {
	text-shadow: #00ff94 0.1px 0.5px 10px;
}
.thin {
	font-weight: 200;
}
.bold {
	font-weight: 900;
}
.italic {
	font-style: italic;
}
.hidden {
	display: none;
}

/* SLIDE NAMES */
.bar-slide {
	white-space: nowrap;
	width: 99vw;
	background-color: #013cff;
	display: flex;
	overflow-x: hidden;
	margin-bottom: 2em;
}
.scroll-left {
	animation: scroll-left 400s linear infinite;
}
.item-box {
	font-weight: 700;
	color: white;
	font-size: 0.6em;
	padding: 1em;
	border-radius: 20px;
	margin-right: 5px;
	text-align: center;
	display: flex;
}
.item-box h1 {
	font-weight: 700;
	font-size: 1.5em;
	margin: 0 5px;
}
.item-box span {
	margin: 0 4px;
}
@keyframes scroll-left {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(-100%);
	}
}

/* Landing Page */
.logo img {
	width: 300px;
	margin-bottom: 10px;
}

.btn-search {
	color: white;
	font-size: 1.6em;
	font-weight: 900;
	background-color: #013cff;
	border: none;
	border-radius: 10px;
	margin: 1em;
	padding: 0.8em 1em;
	box-shadow: 2px 2px 20px #2a3cc4;
}
.title-btn {
	margin: 1em 0;
}
.title-btn2 {
	font-size: 0.9em;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 0 1em 0;
}
.title-btn2 div {
	width: 300px;
}
.title-btn2 img {
	width: 20px;
	height: 20px;
	margin: 0 0px;
}

#gif-loading img {
	margin: 1em 0;
	width: 500px;
	height: 200px;
}
#gif-loading::after {
	content: "HACKEANDO SISTEMA";
	position: absolute;
	transform: translate(-50%, 170%);
	background-color: #2bff0065;
	left: 50%;
	padding: 0.4em;
	border-radius: 8px;
	font-size: 1.5em;
	font-weight: 700;
	z-index: 9999;
	white-space: nowrap;
}

.results {
	display: flex;
	justify-content: center;
	margin: 1em 0 0 0;
}
.number-results {
	color: #00fb03;
}

.accuracy {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.accuracy h4 {
	width: max-content;
	background-color: #ffde04;
	padding: 0.6em;
	color: #000;
	margin: 0.5em 0 0.2em 0;
	border-radius: 10px;
	animation: pulse 1s infinite;
}
@keyframes pulse {
	0%,
	100% {
		transform: scale3d(1, 1, 1);
	}

	50% {
		transform: scale3d(1.04, 1.04, 1.04);
	}
}

.games {
	margin-bottom: 2em;
	display: flex;
	justify-content: center;
	align-self: center;
}
.games div {
	display: flex;
	justify-content: center;
	align-items: center;
	width: max-content;
	flex-direction: column;
	margin-right: 10px;
}
.games div:last-child {
	margin-right: 0;
}
.games div img {
	width: 100px;
	height: 70px;
}
.games div span {
	font-weight: bold;
}
.games div:nth-child(1),
.games div:nth-child(2) {
	color: #00fb03;
}
.games div:nth-child(3) {
	color: #ffde04;
}
.games div:nth-child(4),
.games div:nth-child(5) {
	color: red;
}

.games img {
	width: 100px;
}

.cassino-title {
	margin-bottom: 1.2em;
}
.cassino {
	width: 70vw;
	margin-bottom: 2em;
}

.prize-draw img {
	width: 900px;
	margin-bottom: 2em;
}
.prize-draw a {
	position: absolute;
	text-decoration: none;
	color: white;
	background: #00fb03;
	text-shadow: 1px 4px 10px #000000d0;
	box-shadow: 1px 4px 1px rgba(24, 141, 0, 0.816);
	/* box-shadow: 2px 2px 10px #ffae00; */
	left: 50%;
	padding: 0.6em 2em;
	border-radius: 1em;
	font-size: 1.4em;
	font-weight: 900;
	z-index: 9999;
	white-space: nowrap;
	animation: pulse-prize 1s infinite;
}
@keyframes pulse-prize {
	0%,
	100% {
		transform: scale3d(1, 1, 1) translate(-50%, 660%);
	}

	50% {
		transform: scale3d(1.04, 1.04, 1.04) translate(-48%, 635%);
	}
}
@media screen and (max-width: 900px) {
	#gif-loading img {
		width: 290px;
		height: 150px;
	}
	#gif-loading::after {
		content: "HACKEANDO SISTEMA";
		transform: translate(-50%, 180%);
		font-size: 1.4em;
	}

	body {
		background-image: url(../Images/FUNDOMOBILE.png);
		font-size: 12px;
	}
	.content {
		max-width: 100vw;
	}

	.logo img {
		width: 200px;
		margin-bottom: 10px;
	}

	.results {
		display: block;
		font-size: 1.2em;
	}
	.results div {
		margin: 0.5em 0;
	}
	.results img {
		width: 20px;
		height: 20px;
		margin: 0 5px;
	}
	.number-results {
		color: #00fb03;
	}

	.games {
		padding: 1em;
		background-color: #23398131;
	}
	.games div img {
		width: 63px;
		height: 45px;
	}
	.games div span {
		font-size: 1.2em;
		font-weight: bold;
	}

	.cassino-title {
		font-size: 10px;
	}

	.cassino {
		width: 90vw;
		margin-bottom: 2em;
	}

	.prize-draw img {
		width: 300px;
	}

	@keyframes pulse-prize {
		0%,
		100% {
			transform: scale3d(1, 1, 1) translate(-50%, 630%);
		}

		50% {
			transform: scale3d(1.04, 1.04, 1.04) translate(-48%, 605%);
		}
	}
}

@media screen and (max-width: 350px) {
	.prize-draw img {
		width: 100%;
	}
}
