* {
	box-sizing: border-box;
}

body {
	background: linear-gradient(rgba(20, 26, 35,0.55),rgba(20, 26, 35, 0.55)),
				url("https://proxy-files.ashcraft.cz/sunlight.jpg") no-repeat center center fixed;
	background-size: cover;
	font-family: "Open Sans", Helvetica;
	margin: 0;
	position: relative;
}

html, body {
	width: 100vw;
	height: 100vh;
	overflow-x: hidden;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

a {
	text-decoration: none;
}

p {
	margin: 0;
	padding: 3px;
}

.container {
	text-align: center;
}

.linkEmpty {
	color: white;
}

.logo img {
	width: 225px; /* Change image size for mobile */
	-webkit-animation-name: logo;
	        animation-name: logo;
	-webkit-animation-duration: 5s;
	        animation-duration: 5s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: ease-in-out;
	        animation-timing-function: ease-in-out;
}


@-webkit-keyframes logo {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.07);
		        transform: scale(1.07);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

@keyframes logo {
	0% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
	50% {
		-webkit-transform: scale(1.07);
		        transform: scale(1.07);
	}
	100% {
		-webkit-transform: scale(1);
		        transform: scale(1);
	}
}

.playercount {
	display: inline-block;
	margin: 20px 15px 0 15px;
	padding: 2px 0;
	background-color: rgba(255,255,255,.2);
	font-size: 1em;
	color: white;
	text-align: center;
	border-radius: 10px;
	line-height: 27px;
	opacity: .8;
}

.playercount > p > span {
	font-weight: bold;
	padding: 1px 4px;
	border-radius: 3px;
	background: rgba(255,255,255,.1);
	margin: 0 2px;
}

.playercount > p > a {
	font-weight: bold;
	padding: 1px 4px;
	border-radius: 3px;
	background: rgba(255,255,255,.1);
	margin: 0 2px;
}

.extrapad {
	padding: 0;
}

.ip {
	cursor: pointer;
}

.items {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-pack: distribute;
	    justify-content: space-around;
	-ms-flex-preferred-size: 100px;
	    flex-basis: 100px;
	padding: 18px 0 10px 0;

}

.item img {
	-webkit-transition: all 0.2s ease;
	-o-transition: all 0.2s ease;
	transition: all 0.2s ease;
	margin-bottom: 7px;
}

.item img:hover {
	-webkit-transform:scale(1.1);
	    -ms-transform:scale(1.1);
	        transform:scale(1.1);
}

.img {
	width: 60%;
}

.title {
	font-weight: bold;
	font-size: 17px;
	color: white;
	width: 90px;
}

.subtitle {
	color: #cfcfcf;
	font-size: 12px;
}

.title,
.subtitle {
	margin: 0;
	padding: 0;
}

.item {
	padding: 0px;
	opacity: .7;
	border-radius: 100px;
}

.item:hover {
	transition: all 0.5s ease;
	border-radius: 10px;
	opacity: 1;
	background-color: rgba(255, 255, 255, .2);
}

.item:hover .img {
	margin-bottom: 0;
}

.donate {
	margin-top: 50px;
	opacity: .4;
}

.online {
	color: white;
}

.invite {
	margin-top: 20px;
	font-size: 22px;
}

.link {
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	font-weight:bold;
	-webkit-margin-before: 0.3em;
	-webkit-margin-after: 0.2em;
	background-image: -webkit-linear-gradient(#E8D800, #E0CF00 50%, #A86800 60%, #A86800 );
	text-shadow: -1px -1px 1px rgba(255, 255, 0, 0.56);
}

/* The Modal (background) */
.modal {
	display: none; /* Hidden by default */
	position: fixed; /* Stay in place */
	z-index: 1; /* Sit on top */
	left: 0;
	top: 0;
	width: 100%; /* Full width */
	height: 100%; /* Full height */
	overflow: auto; /* Enable scroll if needed */
	background-color: rgb(0,0,0); /* Fallback color */
	background-color: rgba(0,0,0,0.8); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
	margin: 15% auto; /* 15% from the top and centered */
	padding: 20px;
	border-radius:10px;
	width: 340px; /* Could be more or less, depending on screen size */
	text-align: center;
}

/* The Close Button */
.close {
	color: #aaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: black;
	text-decoration: none;
	cursor: pointer;
}

.maps {
	color: white;
	text-decoration: none;
	text-align: center;
	margin: 10px auto 0;
	padding: 10px;
	border-radius: 10px;
	width: 100%;
	background-color: rgba(255,255,255,.2);
	display: inline-flex;
}

.maps:hover {
	/* Start the shake animation and make the animation last for 0.5 seconds */
	animation: shake 1s;

	/* When the animation is finished, start again */
	animation-iteration-count: infinite;
}

@keyframes shake {
	0% { transform: translate(1px, 1px) rotate(0deg); }
	10% { transform: translate(-1px, -2px) rotate(-1deg); }
	20% { transform: translate(-3px, 0px) rotate(1deg); }
	30% { transform: translate(3px, 2px) rotate(0deg); }
	40% { transform: translate(1px, -1px) rotate(1deg); }
	50% { transform: translate(-1px, 2px) rotate(-1deg); }
	60% { transform: translate(-3px, 1px) rotate(0deg); }
	70% { transform: translate(3px, 1px) rotate(-1deg); }
	80% { transform: translate(-1px, -1px) rotate(1deg); }
	90% { transform: translate(1px, 2px) rotate(0deg); }
	100% { transform: translate(1px, -2px) rotate(-1deg); }
}

#myBtn {
	cursor: pointer;
}

.mapName {
	width: 100%;
}

.like {
	width: 20%;
}

.likeA {
	display: inline-flex;
}

.likeText {
	height: 36px;
	padding-top: 6px;
	font-size: 16px;
	width: 80%;
}

.likeDiv {
	max-height: 93px;
	background: none;
	border-radius: 100px;
	opacity: .7;
	display: inline-flex;
}

.likeDiv:hover {
	transition: all 0.5s ease;
	border-radius: 10px;
	opacity: 1;
	background-color: rgba(255, 255, 255, .2);
	-webkit-transform:scale(1.05);
	-ms-transform:scale(1.05);
	transform:scale(1.05);
}

.likeDiv:hover .like {
	-webkit-animation: spin 0.4s ease-in-out 0.1s infinite alternate;
}

@-webkit-keyframes spin {
	from {
		-webkit-transform: rotate(10deg);
	}
	to {
		-webkit-transform-origin:center center;
		-webkit-transform: rotate(-10deg);
	}
}

.h_b-sec {
	color: #fff !important;
	background-color: rgba(255, 255, 255, .2) !important;
}

.h_b {
	background-color: rgba(255, 255, 255, .2) !important;
}

.booked-prime-date-22 {
	color: white !important;
}

.clock {
	position: absolute;
	left: 20px;
	top: 0;
	opacity: .7;
	display: none;
}

.dot {
	color: #fff !important;
}

.mail {
	position: absolute;
	bottom: 20px;
	left: -5px;
	opacity: .5;
}

.mail a {
	color: #fff;
	text-decoration: none;
}

.mailIcon {
	width: 10%;
	color: #fff;
	filter: brightness(1000%);
	position: relative;
	top: 6px;
}

.navbar-item {
	position: absolute;
	top: 20px;
	right: 20px;
	opacity: .7;
}

.navbar-item:hover {
	opacity: 1;
}

.navbar-item a {
	color: #fff;
	text-decoration: none;
}

@media(min-width: 400px) {
	.logo img {
		width: 290px; /* Change image size for mid sized devices */
	}

	.playercount {
		margin-top: 30px;
		padding: 5px;
	}

	.playercount > p > span {
		padding: 2px 7px;
	}

	.item:not(:first-child) {
		margin-left: 0;
	}
}

@media(min-width: 1250px) {
	.title {
		font-size: 24px;
	}

	.subtitle {
		font-size: 15px;
	}

	.logo img {
		width: 600px; /* Change image size for desktop */
	}

	.logo {
		margin-bottom: 80px;
	}
	.img {
		width: 100%;
	}
	.items {
		padding: 30px 0 20px 0;
	}
	.playercount {
		font-size: 1.22em;
		padding: 10px;
	}

	.extrapad {
		padding: 0 42.5px;
	}

	.playercount > p > span {
		padding: 4px 7px;
	}
}

@media(min-width: 1000px) {
	.items {
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}

	.title {
		width: 110px;
	}

	.item:not(:first-child) {
		margin-left: 60px;
	}

	.item {
		padding: 10px;
		opacity: .7;
		border-radius: 100px;
	}

	.item:hover {
		transition: all 0.5s ease;
		border-radius: 10px;
		opacity: 1;
		background-color: rgba(255, 255, 255, .2);
	}

	.img {
		width: 80%;
	}

	.like {
		width: 30%;
		height: 100%;
	}

	.likeText {
		height: 64px;
		padding-top: 19px;
		font-size: 24px;
	}

	.clock {
		display: unset;
	}
}
