/* -- BASIC LAYOUT ----------------------*/
/* --------------------------------------*/
HTML,
BODY {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'Open Sans';
	font-size: 100%;
	overflow: hidden;
	text-transform: uppercase;
	color:#fff;
}

@media screen and (min-width: 500px) and (max-width: 1024px)and (orientation: landscape) {
	html {
		transform: rotate(-90deg);
		transform-origin: left top;
		width: 100vh;
		overflow-x: hidden;
		position: absolute;
		top: 100%;
		left: 0;
		height:100vw;
	}
}

p {
	font-size: 1rem
}

p,img {
	margin-bottom: 2rem;
}

a,a:hover {
	color:#fff;
	text-decoration: none;
}


#moregames-content {
	background-image: url(../img/ch-background-image.jpg);
	min-height: 100%;
	text-transform: none;
	background-size: cover;
	background-repeat: no-repeat;
	max-width: 1024px;
	max-height: 1366px;
}


/* --------------------------------------*/
/* -- content ---------------------------*/
/* --------------------------------------*/

.ch-title-container {
	bottom: 0;
	position: relative;
	left: 0;
}

.ch-content-message-title {
	font-size: 22px;
	text-transform:none;
	font-weight:700;
}

.ch-content-message-subtitle {
	color: #ebe448;
	font-size: 13px;
	text-transform:none;
	font-weight: 600;
	/* line-height: 10px; */
}

.ch-content-message-time {
	text-align:center;
	font-weight: 700;
	margin-bottom: 5px;
}


/* --------------------------------------*/
/* -- More Games ------------------------*/
/* --------------------------------------*/

.ch-more-games-body {
	/* height: fit-content; */
	/* min-height: calc(100vh - 250px); */
	/* margin-top: 20px; */
	/* margin-bottom: 60px; */
	position: absolute;
	height: 50%;
	width: 100%;
	max-width: 1024px;
}

.ch-more-games-code {
	height: 50%;
	width: 100%;
	max-width: 1024px;
	position: absolute;
	bottom: 0px;
}


/* --------------------------------------*/
/* -- OTHER -----------------------------*/
/* --------------------------------------*/

.ch-check-button {
	background: white;
	color: #4277b0;
	font-size: 0.95rem;
	font-weight: 600;
	width: 90%;
	height: 45px;
	margin-left: 5%;
	text-align:center;
	border-radius: 2px;
}


/* --------------------------------------*/
/* -- TICKET CODE -----------------------*/
/* --------------------------------------*/

.ch-input-code-container {
	bottom: 0;
	position: relative;
	margin-bottom: 20px;
	margin-top: 5px;
	max-width: 1024px;
	left:0px;
}

.ch-code-is-invalid{
	height: 45px;
	width: 90%;
	font-size: 0.95rem;
	margin-bottom: 10px;
	padding-left: 5%;
	background-color: #feebe5;
	border: none;
	color: #eb4535;
	border-radius: 0px;
}

.ch-code-normal{
	height: 45px;
	width: 90%;
	font-size: 0.95rem;
	margin-bottom: 10px;
	padding-left: 5%;
	background-color: rgba(255, 255, 255, 0.3);
	border: none;
	color: white;
	border-radius: 0px;
}

input.ch-code-normal::-webkit-input-placeholder{
	color:white;
	opacity: 0.8;
}

input.ch-code-is-invalid::-webkit-input-placeholder{
	color:#eb4535;
	opacity: 0.8;
}

.ch-code-is-invalid-text{
	color: white;
	font-size: 0.70rem;
	background-color: #eb4535;
	font-weight: 500;
	padding-top: 2px;
	padding-bottom: 2px;
	padding-left: 5%;
	margin-left: 5%;
	width: 90%;
	height: 22px;
	text-align: left;
	line-height: 22px;
}

.ch-code-normal-text{
	display: none;
}

/* --------------------------------------*/
/* -- LOADING SPINNER -------------------*/
/* --------------------------------------*/

.loader {
	border: 2px solid white;
	border-radius: 50%;
	border-top: 2px solid #3498db;
	border-right: 2px solid #3498db;
	border-left: 2px solid #3498db;
	width: 20px;
	height: 20px;
	-webkit-animation: spin 2s linear infinite; /* Safari */
	animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
	0% { -webkit-transform: rotate(0deg); }
	100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
	0% { transform: rotate(0deg); }
	100% { transform: rotate(360deg); }
}