/* *********************************************************************************************************************
	One% CSS Grid - 12 Columns Fluid CSS Grid System

	Why One% ? Let’s count ...
		we have 12 columns (magic number divided by 2, 3, 4, 6)

		for 12 columns we need 11 margins

		so if we count margin 3%, then 3% * 11 margins = 33%

		and if we count width of 1 column 5.5%, than 5.5% * 12 columns = 66%

		in the end we have 33% + 66% = 99% aaand ???

		1% is still here so that's the name - One%

	2 starting options ? Let’s count a bit more ...
		1200px - perfectly fits 1280 screens
			12 columns
			margin 3% / 36px (full-width)
			col1 5.5% / 66px (full-width)

		1000px - perfectly fits 1024 screens
			12 columns
			margin 3% / 30px (full-width)
			col1 5.5% / 55px (full-width)
*/





/* *********************************************************************************************************************
 * Main container for all
 */
.main_wrapper {
	margin: 0 auto;
	padding: 0 0 0 1%; /* THAT'S THE NAME ;) */
}

.main_wrapper {
	max-width:1180px;
}

.onerow {
	clear: both;
	padding: 0 10px;
}





/* *********************************************************************************************************************
 * Common columns definitions
 */
.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11, .col12 {
	float: left;
	margin: 0 3% 0 0;
}

.col1.last, .col2.last, .col3.last, .col4.last, .col5.last, .col6.last, .col7.last, .col8.last, .col9.last, .col10.last, .col11.last, .col12 {
	margin: 0;
}

.col1 { width: 5.5%; }
.col2 { width: 14%; }
.col3 { width: 22.5%; }
.col4 { width: 31%; }
.col5 { width: 39.5%; }
.col6 { width: 48%; }
.col7 { width: 56.5%; }
.col8 { width: 65%; }
.col9 { width: 73.5%; }
.col10 { width: 82%; }
.col11 { width: 90.5%; }
.col12 { width: 99%; margin: 0; }

.col1 img, .col2 img, .col3 img, .col4 img, .col5 img, .col6 img, .col7 img, .col8 img, .col9 img, .col10 img, .col11 img, .col12 img {
	width: 100%;
	height: auto;
	display: block;
}

/* *********************************************************************************************************************
 * Disable padding left/right 10px if I'm 1024 or gibber - correct percentage math
 */

@media all and (max-width: 1024px) {
	.main_wrapper {
		max-width: 1010px;
	}

	.main_wrapper .onerow {
		padding: 0;
	}
	
	
}

/* *********************************************************************************************************************
 * Small devices
 */
@media all and (max-width: 768px) 

	{	
		.col1, .col2, .col3, .col4, .col5, .col6, .col7, .col8, .col9, .col10, .col11 
		{
			float: none; width: 99%;
		}
		
		.header {height:auto; width:100%; box-sizing:border-box;}
		.header .inner {display:block; height:auto; padding:70px 20px 20px;}
		.header .inner .content .presents {text-align:center;}
		.header .inner .login_box {max-width:inherit;}
	}

@media all and (max-width:640px) 

	{
		
		
		body {background:#07060e;}
		
		
		.header .inner .content .presents strong.title.sub {font-size:30px; letter-spacing:0.5px; line-height:32px;}
		
		.partners_blk {display:block; width:auto; position:inherit; left:inherit; top:inherit; padding:50px 0 0;}
		
		
		.header.lobby.main_session .content .left {margin:0;}
		.header.lobby.main_session .content .right {display:block; width:auto; position:inherit; height:auto; top:inherit; right:inherit; padding:110px 0 0;}
		.live--chat--aside {top:12px!important; width:30%!important; height: calc(100% - 104px)!important; display:block; overflow:hidden; z-index:1000!important;}
		
		.header.lobby.main_session {width:100vw; height:100vh; padding: 20px;}
		.lobby .bottom_row .br_inner ul {width:auto; float:none; display:block; padding:0 0 20px;}
		.lobby .bottom_row .br_inner ul li {width:auto; float:none; display:block;}
		.header.lobby.main_session .bottom_row .br_inner {padding:20px;}
		.lobby .bottom_row .br_inner ul li a {margin:0 0 10px; text-align:center;}
		.lobby .bottom_row .br_inner .info_bar {padding:0; width:auto; float:none; display:block;}
		.lobby .bottom_row .br_inner .info_bar strong {display:block; margin:0; text-align:center; max-width:inherit;}
		.lobby .bottom_row .br_inner .info_bar .logo {display:block; margin:15px 0 0; text-align:center; max-width:inherit; padding:0 0 20px;}
		
		.chat-room--chat--header--wrapper {display:block!important;}
		
		.register .header .inner .presents .logo {padding-top:0;} 
		.login_box_outer {padding-top:30px;}
		
	}
	
@media all and (max-width:480px) 

	{	
		.header .inner .content {padding:0;}
		.header .inner .presents .logo {padding:0 0 30px;}
		.header .inner .presents .logo img {max-width:200px;}
		.header .inner .content .presents h1 {font-size:32px; line-height:36px;}
		.header .inner .login_box {margin:50px 0 0;}
	}
	
@media all and (max-width:360px) 

	{
		
	}

@media all and (max-width:320px) 

	{
		
	}