body { 
  background: url(Seaside.jpg) no-repeat center center fixed; 
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  image-rendering: pixelated;
}

.transparent {
	background-color: rgba(245, 245, 245, 0.4);
	backdrop-filter: blur(2px);
}

.header{
	color:white;
}

.leftcontent { 
	margin-left: -50px;
	margin-top: -15px;
}

@media screen (min-width: 600px){
	.wider{
		margin-left: 10%;
		margin-right: 10%;
		width: 80%;
	}

}

.rounded {
	border-radius: 15px;
	border-top: 1px solid #e9ffff;
	border-left: 1px solid #e9ffff;
	border-right: 1px solid #00fcff;
	border-bottom: 1px solid #00fcff;
}

.container {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.container-inner {
	background-color: transparent;
	border-radius: 14px;
	-webkit-box-shadow: inset -5px -5px 2px 2px rgba(200,253,255,0.5), inset 5px 5px 2px 2px rgba(215,254,255,0.5);
	box-shadow: inset -5px -5px 2px 2px rgba(200,253,255,0.5), inset 5px 5px 2px 2px rgba(215,254,255,0.5);
}


.checkbox-32 input {
	height: 32px;
	width: 32px;
	margin-left: 15px;
}

.zendots{
	font-family: Zen Dots;
}

/* D Sibthorp  */

.panel {
		margin: auto;
	}

.freeterms {
	margin-top: 5px;
	font-size: 10px;
}

.featuresone {
	margin-left: 20px;
	margin-right: 20px;
	margin-bottom: 15px;
	color: #000000;
	font-size: 16px;
}
	
/* Login Frame */

.panel-Table {
	text-align: center;
}

.panel-TableRow {
	display: table-row;
}

.panel-Table-TL {
	display: table-cell;
	width: 18px;
	min-width: 18px;
	height: 25px;
	background: url(panelsmall-TL.png);
	background-size: 18px 25px;
}

.panel-Table-TM {
	display: table-cell;
	height: 25px;
	background: url(panelsmall-TM.png);
	background-size: 100% 25px;
}

.panel-Table-TR {
	display: table-cell;
	width: 18px;
	min-width: 18px;
	height: 25px;
	background: url(panelsmall-TR.png);
	background-size: 18px 25px;
}

.panel-Table-ML {
	display: table-cell;
	width: 18px;
	background: url(panelsmall-ML.png);
	background-size: 18px 100%;
}

.panel-Table-C {
	display: table-cell;
	word-break: break-strict;
	background-color: #FFF;
}

.panel-Table-C-center {
	text-align: center;
}

.panel-Table-MR {
	display: table-cell;
	width: 18px;
	background: url(panelsmall-MR.png);
	background-size: 18px 100%;
}

.panel-Table-BL {
	display: table-cell;
	width: 18px;
	height: 8px;
	background: url(panelsmall-BL.png);
	background-size: 18px 8px;
}

.panel-Table-BM {
	display: table-cell;
	height: 8px;
	background: url(panelsmall-BM.png);
	background-size: 100% 8px;
}

.panel-Table-BR {
	display: table-cell;
	width: 18px;
	height: 8px;
	background: url(panelsmall-BR.png);
	background-size: 18px 8px;
}

.controls {
	text-align: center !important;
}

.image-responsive {
	image-rendering: auto;
}

/* Experimental */

@media (max-width: 767px) {
	.container {
		margin-left: 10px !important;
		margin-right: 10px !important;
	}

	.featuresone {
		font-size: 12px;
	}
}

@media (max-width: 992px) { /*Fix for login box centering*/
	.col-xs-12:not(.h-captcha), .col-sm-8 {
		width: 80% !important;
		margin-left: auto !important;
		margin-right: auto !important;
		float: none !important;
	}

	#chat-as-guest {
		margin-top: 15px;
	}
}

.button {
	-webkit-animation: glowing 1300ms infinite;
	-moz-animation: glowing 1300ms infinite;
	-o-animation: glowing 1300ms infinite;
	animation: glowing 1300ms infinite;
}

@-webkit-keyframes glowing {
	0% {
		background-color: #0091b2;
		-webkit-box-shadow: 0 0 3px #0091b2;
	}

	50% {
		background-color: #fff;
		-webkit-box-shadow: 0 0 30px #fff;
	}

	100% {
		background-color: #0091b2;
		-webkit-box-shadow: 0 0 3px #0091b2;
	}
}

@keyframes glowing {
	0% {
		background-color: #0091b2;
		box-shadow: 0 0 3px #0091b2;
	}

	50% {
		background-color: #fff;
		box-shadow: 0 0 30px #fff;
	}

	100% {
		background-color: #0091b2;
		box-shadow: 0 0 3px #0091b2;
	}
}