@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');


:root {
	--primary: #cc0000;
}

body {
	background: #fff url(../images/bg-main.jpg) no-repeat;	
	font-family: 'Roboto Condensed', sans-serif;
}

a {
	cursor: pointer;
	color: var(--primary);
}

.nav-link:focus, .nav-link:hover {
	color: var(--primary);
	opacity: .8;
}

	.mobile {
		display: none !important;
	}

h1,h2,h3,h4 {
	text-transform: uppercase;
    font-weight: 700;
    font-size: 1rem;
}

header .logo {
	max-width: 350px;
	width: 100%;
}

.primary {
	color: var(--primary) !important;
}

.primary-bg {
	background: var(--primary) !important;
	border:1px solid var(--primary) !important;
}

.container {
	max-width:960px;
}

.menu-sep {
	background: -moz-linear-gradient(left, rgba(204,0,0,0) 0%, var(--primary) 49%, var(--primary) 50%, rgba(204,0,0,0) 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(left, rgba(204,0,0,0) 0%,var(--primary) 49%,var(--primary) 50%,rgba(204,0,0,0) 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to right, rgba(204,0,0,0) 0%,var(--primary) 49%,var(--primary) 50%,rgba(204,0,0,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00cc0000', endColorstr='#00cc0000',GradientType=1 ); /* IE6-9 */	
	height: 1px;
	width: 100%;
	border-bottom: 0 !important;
	margin: .5rem 0;
}

.main-menu {
	padding: 0;
}

.main-menu a {
	text-transform: uppercase;
	font-size: 1.8rem;
	color: #fff;
	font-weight: 500;
}

.call-free {
	color: #fff;
	text-transform: uppercase;
}

	.carousel-indicators .active {
		background-color: var(--primary);
	}


.quick-access {
	position: relative;
	z-index: 999;
}

	.quick-access .box {
		border: 1px solid #333;
		color: #fff !important;
		border-radius: 0;
	}

	.quick-access .box h3 {
		padding-top: 0.5rem;
		border-top: 1px solid var(--primary);
	}

	.quick-access .box a {
		border: 1px solid #ccc;
		display: block;
		max-width: 50%;
		border-radius: 1rem;
		margin: 3rem auto 1rem auto;
		text-transform: uppercase;
		color: #fff;
		padding: 0.5rem 1rem;
	}

	.quick-access .box-1 { background: #1f1c23 url(../images/bg-box-1.png)no-repeat; background-size: cover; }
	.quick-access .box-2 { background: #1f1c23 url(../images/bg-box-2.png)no-repeat; background-size: cover; }
	.quick-access .box-3 { background: #1f1c23 url(../images/bg-box-3.png)no-repeat; background-size: cover; }	

.modal h4 {
    border-bottom: 1px solid #ccc;
    padding-bottom: .5rem;
    font-size: 1rem;
    color: var(--primary);
}

.wrap-content .container {
	background: rgb(255,255,255);
	background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(230,230,230,1) 80%);
	border-radius: 2rem;
}

.breadcrumb {
    background-color: transparent; 
    border-radius: 0;
    border-bottom: 1px solid #ccc;
}

	footer.main-footer {
		font-size: 0.725rem;

	}


	.btn-circle-odds.btn-xl {
		width: 70px;
		height: 70px;
		padding: 1rem;
		border-radius: 50%;
		font-size: 1rem;
		line-height: 1;
		z-index: 1030;
		position: fixed;
		right: 1rem;
		bottom: 1rem;
		transition: all .25s ease 0s;
	  }

	  .btn-circle-odds:focus {
		outline: none !important;
		box-shadow: none !important;
	 }
	  
	  #modal-live-odds{
	  
	  z-index: 99999;
	  
	  }



@media only screen and (max-width: 568px) { 

	
	body {
		padding: 1rem !important;
	} 

	.mobile {
		display: block !important;
	}

	.hero {
		display: none;
	}

	.login h2 {
		text-transform: uppercase;
		color: #fff;
	    font-weight: 700;
	    font-style: italic;
	}

	.main-menu .collapse {
		background-color: var(--primary);
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
	}

}	