:root {
	--color1: #0e0e0e;
	--color2: #ba7a7b;
	--color3: #141c14;
	--color4: #253022;
	--font: 'Jost', sans-serif;
	--b-radius: 7px;
	--b-radius-s: 5px;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: var(--font);
	color: white;
}

body {
	position: relative;
	height: 100vh;
	background-color: var(--color1);
	background-image: url(../img/body.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-attachment: fixed;
	background-position-y: 77px;
}

.main-wrapper {
	position: relative;
}

#scrollTop {
	position: fixed;
	bottom: 80px;
	right: -35px;
	transition: 0.5s;
}

#scrollTop i {
	font-size: 2rem;
	cursor: pointer;
}

.header-top {
	border-bottom: 2px solid var(--color2);
	background-color: var(--color1);
	position: fixed;
	width: 100%;
	z-index: 100;
	top: 0;
}

.header-top-wrapper {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 75px;
}

.header-top-wrapper a {
	background-color: var(--color4);
	min-width: 135px;
	padding: 7px;
	margin: 9px;
}

.header-top-wrapper a i {
	margin-right: 10px;
}

.header-bottom {
	padding-top: 20px;
	position: relative;
	top: 100px;
}

.logo a img {
	width: 200px;
	height: auto;
}

.nav-menu {
	height: 100%;
	display: flex;
	align-items: center;
}

.nav-menu ul {
	display: flex;
	justify-content: space-around;
	width: 100%;
	padding: 20px;
	background-color: #253022a3;
	border-radius: 7px;
}

.content {
	position: relative;
	top: 100px;
}

.slider-container .col-12 {
	text-align: center;
}

.slider-container img {
	width: 85%;
}

.m-slide {
	display: none;
}

.carousel-header {
	padding: 10px 10px;
}

.carousel-header .col-6 {
	display: flex;
	align-items: center;
}

.carousel-header .col-6:nth-child(2) {
	justify-content: flex-end;
}

.countdown {
	display: flex;
}

.countdown .count {
	width: 35px;
	height: 35px;
	background-color: var(--color2);
	display: flex;
	border-radius: var(--b-radius-s);
	justify-content: center;
	align-items: center;
	font-weight: 600;
	font-size: 1.2rem;
	border-top-left-radius: 0;
	border-bottom-right-radius: 0;
	background: rgb(152,104,105);
	background: linear-gradient(0deg, rgba(152,104,105,1) 50%, rgba(186,122,123,1) 50%);
	-moz-user-select: none;
	user-select: none;
}

.countdown .count-wrapper:last-child span {
	margin-right: 0;
}

.count-wrapper {
	padding: 0px 10px;
	position: relative;
}

.count-wrapper:last-child {
	padding-right: 0px;
}

.count-label {
	font-size: 12px;
	text-align: center;
	margin-top: 2px;
	-moz-user-select: none;
	user-select: none;
}

.match-carousels-wrapper {
	margin-top: 30px;
}

.carousel-title {
	font-size: 1.7rem;
	color: var(--color2);
}

.match-grid {
	width: 100%;
	height: auto;
	background-color: var(--color3);
	border-radius: var(--b-radius);
	background-image: url(../img/bg-match.png);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: center top;
	padding: 15px;
	cursor: grab;
}

.match-grid .line {
	width: 100%;
	height: 100%;
	border-bottom: 2px solid var(--color2);
}

.match-grid .time {
	font-weight: 600;
	position: relative;
	top: 7px;
	padding-left: 16px;
}

.time p {
	font-size: 14px;
}

.club-wrapper {
	margin-top: 23px;
}

.club {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.club .flag {
	background-color: var(--bg2);
	width: 50px;
	height: 50px;
	border-radius: 5px;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100%;
}

.club-name {
	margin-top: 15px;
}

.club-name p {
	font-weight: 600;
	font-size: 14px;
}

.odds {
	padding-right: 30px;
	padding-left: 30px;
	width: 100%;
	display: flex;
	justify-content: space-between;
	margin-top: 6px;
}

.odds span {
	color: #b63b3b;
	font-size: 12px;
	text-align: center;
	padding: 2px 3px;
	width: 74px;
}

.btn-match {
	width: 100%;
	margin-top: 14px;
	display: flex;
	justify-content: center;
}

.btn-match a {
	background-color: var(--color2);
	width: 90%;
	display: block;
	text-align: center;
	border-radius: 7px;
	padding: 9px 10px;
	font-size: 13px;
	font-weight: 600;
}

#register {
	height: 45px;
	position: relative;
	top: -50px;
	z-index: 0;
}

.form-register-wrapper {
	background-color: #253022a3;
	border-radius: var(--b-radius);
	padding: 15px;
	margin-bottom: 40px;
}

.input-wrapper {
	position: relative;
}

.form-title {
	font-size: 1.5rem;
	margin-bottom: 30px;
}

.form input[type="text"] {
	background-color: transparent;
	outline: none;
	width: 100%;
	margin-bottom: 30px;
	padding: 10px 0px;
	border: none;
	border-bottom: 2px solid var(--color2);
	font-size: 15px;
}

.warning {
	position: absolute;
	display: block;
	color: red;
	bottom: 7px;
	font-size: 13px;
}

#btnForm {
	background-color: var(--color2);
	border: none;
	padding: 7px 30px;
	border-radius: var(--b-radius-s);
	font-weight: 600;
	font-size: 1rem;
}

.form-register-wrapper .col-6 {
	padding: 15px;
}

#message-box {
	text-align: center;
	font-size: 1rem;
	border-radius: var(--b-radius-s);
	background-color: var(--color2);
	margin-bottom: 20px;
	text-transform: capitalize;
	font-weight: 500;
}

#message-box p {
	color: white;
	padding: 10px;
}

#message-box i {
	font-size: 1.3rem;
	margin-left: 5px;
	color: white;
}

#message-box.hide {
	opacity: 0;
	transition: all 1s;
	-webkit-transition: all 1s;
}

.game-slide-title {
	position: absolute;
	z-index: 1;
	bottom: 15px;
	left: 15px;
	text-transform: uppercase;
	letter-spacing: 1px;
	font-size: 1.2rem;
}

.games-slide img {
	width: 100%;
	border-radius: var(--b-radius);
}

.art-work img {
	width: 100%;
	height: auto;
}

.about-txt {
	display: flex;
	height: 100%;
	flex-direction: column;
	justify-content: center;
}

.about-txt h2 {
	margin-bottom: 5px;
	color: var(--color2);
}

.guidelines {
	background-color: var(--color3);
	text-align: center;
	margin: 30px 0px;
}

.guidelines img {
	padding: 15px;
	width: auto;
	height: auto;
}

.accordion-wrapper {
	margin-top: 40px;
}

.accordion-head {
	text-align: left;
	cursor: pointer;
	padding-left: 30px;
	background-color: transparent;
	border-radius: var(--b-radius);
}

.accordion-body {
	margin-top: 25px;
	max-height: 0;
	overflow: hidden;
	transition: max-height 0.2s ease-out;
}

.accordion-head a {
	position: relative;
	justify-content: flex-start;
	padding: 15px;
	background-color: var(--color3);
	border-bottom: 3px solid var(--color2);
}

.accordion-head a i {
	position: absolute;
	top: 17px;
	transition: 0.8s;
	transform: rotate(0deg);
	left: -30px;
}

.accordion-head a i.rotate {
	transition: 0.8s;
	transform: rotate(-180deg);
}

.accordion-head a h3 {
	padding-left: 10px;
	margin-bottom: 0;
	font-size: 1rem;
	font-weight: 500;
	text-transform: capitalize;
}

.faq-content {
	padding: 0px 30px;
}

.faq-content p {
	margin-bottom: 0;
	text-align: left;
	padding: 0 15px;
}

.faq-content a {
	display: inline;
}

.footer {
	margin-top: 10rem;
}

.copyright {
	text-align: center;
	background-color: var(--color4);
	padding: 20px;
	letter-spacing: 2px;
	font-size: 13px;
}

.copyright span {
	color: var(--color2);
}

#preLoader {
	position: fixed;
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--color1);
	z-index: 200;
}

#preLoader img {
	width: 200px;
}


