@font-face { font-family: "200"; src:url("../font/200.ttf") format("truetype"); }
@font-face { font-family: "300"; src:url("../font/300.ttf") format("truetype"); }
@font-face { font-family: "400"; src:url("../font/400.ttf") format("truetype"); }
@font-face { font-family: "500"; src:url("../font/500.ttf") format("truetype"); }
@font-face { font-family: "600"; src:url("../font/600.ttf") format("truetype"); }




/* Main styles */

body
{
	margin:0;
	padding:0;
	overflow-x:hidden !important;
	-webkit-overflow-x:hidden !important;
	background:#fff !important; 
}

* 
{
	position:relative;
	float:left;
	display:table-cell;
	width:100%;
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	font-family:"Roboto",sans-serif;
	font-size:12px;
	line-height:25px;
	font-weight:500;
	color:#3D415F;
	border:none;
	outline:none;
	text-decoration:none;
	appearance:none;
	-webkit-appearance:none;
	-moz-appearance:none;
	font-smoothing:antialiased;
	-webkit-font-smoothing:antialiased;
	-moz-font-smoothing:antialiased;
}

head, link, meta, script, style, title
{
	display:none !important;
	opacity:0 !important;
	width:0 !important;
	height:0 !important;
}

.center_horizontal
{	
	left:50%;
	transform:translate(-50%,0);
	-webkit-transform:translate(-50%,0);
	-moz-transform:translate(-50%,0);
}

.center_vertical
{	
	top:50%;
	transform:translate(0,-50%);
	-webkit-transform:translate(0,-50%);
	-moz-transform:translate(0,-50%);
}

.center_total
{
	left:50%;
	top:50%;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
}

.center_page
{
	left:50%;
	top:50vh;
	transform:translate(-50%,-50%);
	-webkit-transform:translate(-50%,-50%);
	-moz-transform:translate(-50%,-50%);
	margin-top:-120px !important;
}

.content_width
{
	width:100vw;
}

.screen_width
{
	width:calc(100vw - 20px); 
}










/* Content settings */

.content_background 
{
	position:fixed;
	left:0;
	top:0;
	width:100%;
	height:100%;
	z-index:0;
	background:#ffffff;
}

.content
{
	padding:90px 0 40px 0;
	min-height:100vh;
}

.content_blur
{
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
	transition:0.3s all ease-in-out;
	-webkit-transition:0.3s all ease-in-out;
}










/* Content containers */

.half_content_container
{
	width:calc(100% + 40px);
}

.half_content_container .menu_content
{
	width:calc(30% - 40px);
	margin:0 20px 0 20px;
}

.half_content_container .content_content
{
	width:calc(70% - 40px);
	margin:0 20px 0 20px;
}

@media screen and (max-width:600px) 
{
    .half_content_container .menu_content, .half_content_container .content_content
	{
		width:calc(100% - 40px);
	}
}










/* Content holders */

.content_holder
{
	display:none;
}

.content_holder_menu
{
	width:100%;
	background:#fff;
	padding:25px 25px 10px 25px;
	margin:0 0 40px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
}

.content_holder_menu .item
{
	height:30px;
	line-height:30px;
	background:#f6f6f6; 
	padding:0 10px 0 30px;
	margin:0 0 15px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	font-size:10px;
	cursor:pointer;
}

.content_holder_menu .item:before
{
	content:"";
	position:absolute;
	left:10px;
	top:11px;
	width:8px;
	height:8px;
	border-radius:50%;
	-webkit-border-radius:50%;
	box-shadow:inset 0 0 0 1px #767ead;
	-webkit-box-shadow:inset 0 0 0 1px #767ead;
}

.content_holder_menu .selected
{
	background:#5386ff !important; 
	color:#fff;
}

.content_holder_menu .selected:before
{
	background:#fff;
	box-shadow:inset 0 0 0 1px #fff;
	-webkit-box-shadow:inset 0 0 0 1px #fff;
}





 



/* Borders */

.border_left, .border_right
{
	position:fixed;
	top:0;
	width:10px;
	height:100vh;
	background:#fff;
	z-index:990;
}

.border_left
{
	left:0;
}

.border_right
{
	right:0;
}

.border_bottom
{
	position:fixed;
	bottom:0;
	width:100vw;
	height:10px;
	background:#fff;
	z-index:990;
}





 



/* Content Box Shadow */

.content_box_shadow
{
	position:fixed;
	left:10px;
	top:60px;
	width:calc(100vw - 20px);
	height:calc(100% - 70px);
	box-shadow:inset 0 0 15px rgba(0,0,0,0.1);
	-webkit-box-shadow:inset 0 0 15px rgba(0,0,0,0.1);
	z-index:999;
	pointer-events:none;
}










/* Content elements */

.content_title
{
	line-height:20px;
	margin:40px 0 30px 0;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	font-size:13px;
	opacity:0.5;
}

.content_title:first-child
{
	margin-top:0;
}

.content_info
{
	line-height:10px;
	font-size:10px;
	text-align:center;
	opacity:0.5;
	margin:20px 0 20px 0;
}

.content_button
{
	max-width:500px;
	height:40px;
	line-height:40px !important;
	border-radius:6px;
	-webkit-border-radius:6px;
	background:#5386ff;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	font-size:10px;
	color:#fff;
	margin:0 0 40px 0;
	box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
	cursor:pointer;
	transition:0.1s all ease-in-out;
	-webkit-transition:0.1s all ease-in-out;
}

.content_button:hover
{
	transform:translate(-50%,-2px);
	-webkit-transform:translate(-50%,-2px);
	box-shadow:0 7px 20px -8px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 7px 20px -8px rgba(0,0,0,0.2);
}










/* Content boxes */

.content_box
{
	max-width:500px;
	background:#fff;
	padding:40px 40px 30px 40px;
	margin:0 0 40px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
}

.content_box_small
{
	max-width:300px;
}

.content_box .title
{
	line-height:25px;
	margin:0 0 20px 0;
	padding:0 0 30px 0;
	font-family:"Ubuntu",sans-serif;
	color:#3D415F;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	font-size:14px;
	border-bottom:2px solid #f6f6f6;
}

.content_box .text
{
	margin:10px 0 20px 0;
	font-size:12px;
	padding:0 0 30px 0;
	text-align:center;
	border-bottom:2px solid #f6f6f6;
}

.content_box .label
{
	line-height:25px;
	margin:15px 0 0 0;
	text-align:center;
	font-size:10px;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	color:#3D415F;
}

.content_box .info
{
	line-height:10px;
	font-size:10px;
	text-align:center;
	opacity:0.5;
	margin:30px 0 10px 0;
}

.content_box .input
{
	height:auto;
	margin:10px 0 10px 0;
}

.content_box input
{
	height:40px;
	line-height:20px;
	padding:10px 15px 10px 15px;
	background:#f6f6f6;
	margin:10px 0 10px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	text-align:center;
}

.content_box textarea
{
	height:120px;
	line-height:25px;
	padding:10px 15px 10px 15px;
	background:#f6f6f6;
	margin:10px 0 10px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
}

.content_box select
{
	height:40px;
	line-height:20px;
	padding:10px 15px 10px 35px;
	margin:10px 0 10px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	text-align:center;
	background:#f6f6f6 url('../img/select.png') left 15px center no-repeat;
	background-size:8px auto;
}

.content_box .input input, .content_box .input textarea, .content_box .input select
{
	margin:0;
}

.content_box .button
{
	height:40px;
	line-height:40px !important;
	padding:0 !important;
	font-weight:700;
	letter-spacing:1px;
	text-transform:uppercase;
	text-align:center;
	font-size:10px;
	border-radius:6px;
	-webkit-border-radius:6px;
	color:#fff;
	background:#5386ff;
	margin:10px 0 10px 0;
	cursor:pointer;
	transition:0.1s all ease-in-out;
	-webkit-transition:0.1s all ease-in-out;
	box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
}

.content_box .button:hover
{
	transform:translate(0,-2px);
	-webkit-transform:translate(0,-2px);
	box-shadow:0 7px 20px -8px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 7px 20px -8px rgba(0,0,0,0.2);
}








 

/* Content items */

.content_item
{
	background:#fff;
	padding:20px 40px 20px 40px;
	margin:0 0 40px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
	-webkit-box-shadow:0 5px 20px -10px rgba(0,0,0,0.2);
}