@font-face {
	font-family: 'OpenSans-Regular';
	src: url('../assets/font/OpenSans-Regular.ttf');
}

@font-face {
	font-family: 'OpenSans-Bold';
	src: url('../assets/font/OpenSans-Bold.ttf');
}

@font-face {
	font-family: 'OpenSans_Condensed-Bold';
	src: url('../assets/font/OpenSans_Condensed-Bold.ttf');
}

html {
	font-size: 16px;
}

@media screen and (max-width: 1023px) {
	html {
		font-size: 1.8vw;
	}
}

@media screen and (max-width: 800px) {
	html {
		font-size: 2.112676vw;
	}
}

@media screen and (max-width: 500px) {
	html {
		font-size: 3.2vw;
	}
}

body {
	background: #0C0F10;
	color: #FFF;
	margin: 0;
	font-family: 'OpenSans-Regular', sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

body * {
	box-sizing: border-box;
}

.container {
	width: 100%;
	max-width: 1084px;
	padding: 0 1rem;
	margin: auto;
}

/* ----- Header ----- */
.header__wrap {
	background: linear-gradient(90deg, #28313C00 8.27%, #28313C 27.29%, #28313C 71.38%, #28313C00 91.26%);
	height: 6rem;
}


.header__container {
	display: flex;
	align-items: center;
	height: 100%;
}

.header__logo {
	display: block;
	height: 3.375rem;
}

@media screen and (max-width: 1023px) {
	.header__wrap {
		background: linear-gradient(90deg, #28313C00, #28313C 7%, #28313C 93%, #28313C00);
		height: 7.66rem;
	}

	.header__container {
		justify-content: center;
	}

	.header__logo {
		height: 5.4rem;
	}
}

@media screen and (max-width: 500px) {
	.header__wrap {
		background: linear-gradient(90deg, #28313C00, #28313C 12%, #28313C 88%, #28313C00);
		height: 6.5rem;
	}

	.header__logo {
		height: 4.33rem;
	}
}

/* ----- Header - END ----- */


/* ----- Running ----- */
.running__container {
	margin: 2rem auto;
}

.running__wrap {
	background: linear-gradient(90deg, #FE642E00, #FE642E 5%, #FE642E 95%, #FE642E00);
	color: #000;
	height: 2.25rem;
	display: grid;
	align-items: center;
	grid-template-columns: auto 1fr;
	grid-gap: 0.5rem;
}

.running__icon {
	height: 1.5rem;
	padding: 0 0 0 1rem
}

@keyframes ticker {
	0% {
		transform: translate3d(100%, 0, 0);
		visibility: visible;
	}

	100% {
		transform: translate3d(-100%, 0, 0);
	}
}

.running__ticker-wrap {
	position: relative;
	overflow: hidden;
}

.running__ticker {
	white-space: nowrap;
	box-sizing: content-box;
	animation-iteration-count: infinite;
	animation-name: ticker;
	animation-duration: 20s;
	animation-timing-function: linear;
}

@media screen and (max-width: 1023px) {
	.running__container {
		margin: auto;
		padding: 0;
	}

	.running__wrap {
		background: linear-gradient(90deg, #4AF10200, #4AF102 10%, #4AF102 90%, #4AF10200);
	}
}

/* ----- Running - END ----- */


/* ----- Banner ----- */
.banner__container {
	position: relative;
}

.banner__bg {
	position: absolute;
	top: 0;
	left: 1rem;
	right: 1rem;
	bottom: 0;
	background: url(../assets/img/banner_bg-min.jpeg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	border-radius: 1rem;
}

.banner__wrap {
	position: relative;
	display: grid;
	grid-template-columns: 30% 70%;
	padding: 1.5rem;
}

.banner__text {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.banner__title {
	font-size: 3.5rem;
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
	line-height: 1;
	text-transform: uppercase;
	padding-right: 1rem;
}

.banner__button {
	background: linear-gradient(180deg, #7ADC60 0%, #46AB25 66.67%, #54CD2D 100%) padding-box, linear-gradient(180deg, #4FC12A 0%, #192E0A 58.85%, #398A1E 100%) border-box;
	color: #000;
	box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.25);
	border-radius: 1rem;
	border: 2px solid transparent;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 12rem;
	height: 3rem;
	font-size: 1.5rem;
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
	letter-spacing: 0.02em;
	margin-bottom: 1.5rem;
}

@media screen and (max-width: 1023px) {
	.banner__bg {
		border-radius: 0;
		left: 0;
		right: 0;
	}

	.banner__wrap {
		padding: 1.5rem 0;
	}

	.banner__title {
		font-size: 2.333333rem;
	}

	.banner__button {
		width: 9rem;
		height: 2.666667rem;
		border-radius: 0.666667rem;
	}
}

@media screen and (max-width: 500px) {
	.banner__wrap {
		grid-template-columns: 40% 60%;
	}

	.banner__title {
		font-size: 2rem;
	}
}

/* ----- Banner - END ----- */


/* ----- Game Items ----- */
.game-item {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
	justify-content: flex-start;
	text-align: center;
}

.game-item__img {
	width: 100%;
	display: block;
	transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
	transform: scale(1);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.game-item__img-wrap {
	overflow: hidden;
	position: relative;
	color: inherit;
	text-decoration: none;
	display: block;
	padding: 100% 0 0;
}

.game-item__hover {
	opacity: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #0c0f10c5;
	transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.game-item__button {
	opacity: 0;
	position: absolute;
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
	font-size: 1.25rem;
	color: #000;
	background: linear-gradient(180deg, #7ADC60 0%, #46AB25 66.67%, #54CD2D 100%) padding-box,
		linear-gradient(180deg, #4FC12A 0%, #192E0A 58.85%, #398A1E 100%) border-box;
	border: 2px solid transparent;
	bottom: 50%;
	right: 50%;
	transform: translate(50%, 50%);
	padding: 0.5rem 1rem;
	border-radius: 0.5rem;
	word-break: keep-all;
	white-space: nowrap;
	transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.game-item__img-wrap:hover .game-item__img {
	transform: scale(1.1);
}

.game-item__img-wrap:hover .game-item__hover {
	opacity: 1;
}

.game-item__img-wrap:hover .game-item__button {
	opacity: 1;
}

/* ----- Game Items - END ----- */


/* ----- Percent ----- */
.percent {
	height: 1.625rem;
	display: flex;
	overflow: hidden;
	line-height: 0;
	background: #e9ecef;
	/* border-radius: .25rem; */
	position: relative;
	z-index: 1;
	border-radius: .3rem;
	width: 100%;
	margin: 0 auto;
}

.percent__wrap {
	background: #e9ecef;
	padding: 0.2rem;
	border-radius: .3rem;
}

.percent__value {
	z-index: 15;
	position: absolute;
	right: 0.5rem;
	text-align: right;
	width: 100%;
	font-weight: bold;
	top: 50%;
	transform: translateY(-50%);
	color: black;
}

.percent__bar {
	background-image: linear-gradient(45deg, rgba(255, 255, 255, .15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .15) 50%, rgba(255, 255, 255, .15) 75%, transparent 75%, transparent);
	background-size: 1rem 1rem;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	-ms-flex-pack: center;
	justify-content: center;
	overflow: hidden;
	color: #fff;
	text-align: center;
	white-space: nowrap;
	transition: all .6s ease;
	-webkit-animation: progress-bar-stripes 1s linear infinite;
	animation: progress-bar-stripes 1s linear infinite;
	z-index: 10;
}

@keyframes progress-bar-stripes {
	0% {
		background-position-x: 1rem;
	}
}

.yellow {
	background-color: #ffc107;
}

.green {
	background-color: #28a745;
}

.red {
	background-color: #dc3545;
}

/* ----- Percent - END ----- */


/* ----- Button Section ----- */
.button__container {
	margin: 2rem auto 0;
	display: flex;
	justify-content: center;
}

.button__wrap {
	display: inline-grid;
	grid-template-columns: 1fr 1fr;
	grid-gap: 1rem;
}

.button {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	padding: 0px;
	width: 16.25rem;
	height: 3.5rem;
	border-radius: 1rem;
	border: none;
	font-size: 1.75rem;
	box-shadow: .25rem .25rem .5rem rgba(0, 0, 0, 0.25);
	text-transform: uppercase;
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
}

@media screen and (max-width: 1023px) {
	.button__container {
		margin: 0;
		padding: 0;
	}

	.button__wrap {
		grid-gap: 0;
		width: 100%;
	}

	.button {
		width: 100%;
		height: 4.5rem;
		border-radius: 0;
	}
}

.button-login {
	color: #000;
	background: linear-gradient(180deg, #FFE184 0%, #FFBE18 66.67%, #FFCB42 100%);
}

.button-register {
	color: #000;
	background: linear-gradient(180deg, #FFFFFF 0%, #CFCFCF 66.67%, #FFFFFF 100%);
	;
}

.button-facebook {
	color: #FFF;
	background: linear-gradient(180deg, #1ABBFF -77.38%, #004DC0 24.86%, #002B67 158.68%, #002B67 211.31%);
}

.button-whatsapp {
	color: #FFF;
	background: linear-gradient(180deg, #05EB00 -77.38%, #0C862E 24.86%, #063312 158.68%, #063312 211.31%);
}

/* ----- Button Section - END ----- */


.time-container {
	margin: 1.5rem auto;
	text-align: center;
}

#realDatetime {
	text-transform: uppercase;
}


/* ----- Provider ----- */
.provider__splide {
	position: relative;
}

.provider__wrap {
	position: relative;
	background: linear-gradient(180deg, #DF010100 -77.38%, #DF0101 24.86%, #063312 158.68%, #063312 211.31%);
	border-radius: 1rem;
	padding: 1rem 2rem;
}

.provider__wrap .splide__slide {
	padding: 0;
}

.provider__wrap .splide__arrow {
	z-index: 2;
}

.provider__wrap .splide__arrow svg {
	position: absolute;
	top: 50%;
	width: 1rem;
	height: 1rem;
	cursor: pointer;
}

.provider__wrap .splide__arrow--prev svg {
	left: -0.5rem;
	transform: translate(-100%, -50%) rotate(180deg);
}

.provider__wrap .splide__arrow--next svg {
	right: -0.5rem;
	transform: translate(100%, -50%);
}

.provider__item-img {
	width: 100%;
}

@media screen and (max-width: 1023px) {
	.provider__container {
		padding: 0;
	}

	.provider__wrap {
		border-radius: 0;
		padding: 1rem 1.5rem;
	}

	.provider__wrap .splide__arrow--prev svg {
		left: -0.25rem;
	}

	.provider__wrap .splide__arrow--next svg {
		right: -0.25rem;
	}
}

/* ----- Provider - END ----- */


/* ----- Search Input ----- */
.search-game__container {
	margin: 1.5rem auto 1rem;
	display: flex;
	justify-content: end;
}

.search-game__wrap {
	position: relative;
	width: 26.75rem;
	height: 2.5rem;
	background: #28323D;
	border-radius: 1rem;
	display: grid;
	grid-template-columns: auto 1fr;
	align-items: center;
	padding: 0 1rem;
	grid-gap: 0.5rem;
	box-sizing: border-box;
	cursor: text;
}

.search-game__icon {
	width: 1.5em;
	height: 1.5em;
}

.search-game__input {
	background: transparent;
	color: #F5F5F5;
	border: none;
	outline: none;
}

@media screen and (max-width: 1023px) {
	.search-game__container {
		margin: 1rem 0 0.5rem;
	}

	.search-game__wrap {
		border-radius: 0.666667rem;
		width: 100%;
	}
}

/* ----- Search Input - END ----- */


/* ----- List Game ----- */
.list-game__container {
	margin: 0 auto 5rem;
	padding: 0 0.5rem;
	display: flex;
	flex-wrap: wrap;
}

.list-game__item {
	flex-basis: calc((100% - 5rem) / 5);
	color: inherit;
	text-decoration: none;
	transition: all 0.3s cubic-bezier(0, 0, 0.2, 1);
	overflow: hidden;
	opacity: 1;
	margin: .5rem;
}

.list-game__item--hidden {
	flex-basis: 0 !important;
	opacity: 0;
	margin: 0;
}

@media screen and (max-width: 1023px) {
	.list-game__container {
		margin-bottom: 2.5rem;
	}

	.list-game__item {
		flex-basis: calc((100% - 3rem) / 3);
	}
}

@media screen and (max-width: 500px) {
	.list-game__item {
		flex-basis: calc((100% - 2rem) / 2);
	}
}

/* ----- List Game - END ----- */


/* ----- Footer ----- */
.footer__wrap {
	background: linear-gradient(180deg, #1F2630 0%, #11151C 185.27%);
	padding: 2rem 0;
}

.footer__wrap b {
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
	color: #49F102;
	font-size: 1.25em;
}

.footer__wrap a {
	text-decoration: none;
}

.footer__title {
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
	color: #49F102;
	letter-spacing: 0.02em;
	font-size: 2.5rem;
	text-align: center;
	letter-spacing: 0.02em;
}

/* ----- Footer - END ----- */


/* ----- Copyright ----- */
.copyright__container {
	padding: 1.5rem;
	text-align: center;
	color: #A0A0A0;
}

.copyright__container b {
	font-family: 'OpenSans_Condensed-Bold', sans-serif;
	color: #FFFFFF;
	font-size: 1.25em;
}

@media screen and (max-width: 1023px) {
	.copyright__container {
		padding: 1.25rem;
	}
}

@media screen and (max-width: 500px) {
	.copyright__container {
		padding: 1rem;
	}
}

/* ----- Copyright - END ----- */