/* Main styles */

body
{
	margin:0;
	padding:0;
	width:100vw !important;
	overflow-x:hidden !important;
	-webkit-overflow-x:hidden !important;
	background:#FAFAFA !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 Condensed', sans-serif;
	font-size:12px;
	line-height:25px;
	font-weight:500;
	color:#33334f;
	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:80vw;
	max-width:1100px;
}

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










/* Content settings */

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

.content
{
	display:none;
	padding:0;
	min-height:100vh !important;
	padding:0 0 130px 0;
}

.content_blur
{
	-webkit-filter: blur(5px);
	-moz-filter: blur(5px);
	-o-filter: blur(5px);
	-ms-filter: blur(5px);
	filter: blur(5px);
}










/* 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.3);
    -webkit-box-shadow: 0 5px 20px -10px rgba(0,0,0,0.3);
}

.content_holder_menu .item
{
	height:30px;
	line-height:30px;
	background:#FAFAFA; 
	padding:0 10px 0 30px;
	margin:0 0 15px 0;
	border-radius:6px;
	-webkit-border-radius:6px;
	font-weight:700;
	letter-spacing:2px;
	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;
}










/* Content elements */

.content_title
{
	line-height:20px;
	margin:40px 0 30px 0;
	font-weight:700;
	letter-spacing:2px;
	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: #F76B1C;
    background: -moz-linear-gradient(45deg, #F76B1C 0%, #FAD961 100%);
    background: -webkit-linear-gradient(45deg, #F76B1C 0%,#FAD961 100%);
    background: linear-gradient(45deg, #F76B1C 0%,#FAD961 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F76B1C', endColorstr='#FAD961',GradientType=1 );
	font-weight:700;
	letter-spacing:2px;
	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.3);
    -webkit-box-shadow: 0 5px 20px -10px rgba(0,0,0,0.3);
	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.3);
	-webkit-box-shadow:0 7px 20px -8px rgba(0,0,0,0.3);
}










/* 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.3);
    -webkit-box-shadow: 0 5px 20px -10px rgba(0,0,0,0.3);
}

.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:#33334f;
	font-weight:700;
	letter-spacing:2px;
	text-transform:uppercase;
	text-align:center;
	font-size:14px;
	border-bottom:2px solid #FAFAFA;
}

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

.content_box .description
{
	margin:10px 0 10px 0;
	font-size:12px;
	color:#999AA7;
	text-align:center;
}

.content_box .disclaimer
{
    max-width:250px;
    height:auto;
	margin:20px 0 10px 0;
	line-height:15px; 
    font-size:9px; 
    text-align:center;
    color:#33334f;
	opacity:0.15;
}

.content_box .label
{
	line-height:20px;
	margin:10px 0 0 0;
	text-align:center;
	font-size:12px;
	font-weight:700;
	text-align:center;
	color:#33334f;
}

.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:#FAFAFA;
	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:#FAFAFA;
	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:#FAFAFA 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:2px;
	text-transform:uppercase;
	text-align:center;
	font-size:10px;
	border-radius:6px;
	-webkit-border-radius:6px;
	color:#fff;
	background: #F76B1C;
    background: -moz-linear-gradient(45deg, #F76B1C 0%, #FAD961 100%);
    background: -webkit-linear-gradient(45deg, #F76B1C 0%,#FAD961 100%);
    background: linear-gradient(45deg, #F76B1C 0%,#FAD961 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F76B1C', endColorstr='#FAD961',GradientType=1 );
	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.3);
    -webkit-box-shadow: 0 5px 20px -10px rgba(0,0,0,0.3);
}

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








 

/* 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.3);
    -webkit-box-shadow: 0 5px 20px -10px rgba(0,0,0,0.3);
}












/* Content boxes */

.content_box .toggle
{
	height:40px;
}

.content_box .toggle .label
{
	height:40px;
	line-height:40px;
}

.content_box .toggle .label .slide
{
	position:absolute;
	right:0;
	top:8px;
	height:24px;
	width:30px;
	border-radius:12px;
	-webkit-border-radius:12px;
	background:#FAFAFA;
}

.content_box .toggle .label .slide .knob
{
	position:absolute;
	left:2px;
	top:2px;
	height:20px;
	width:20px;
	border-radius:50%;
	-webkit-border-radius:50%;
	background:#fff;
}

.content_box .toggle .label .slide .knob_false
{
	left:2px;
}

.content_box .toggle .label .slide .knob_true
{
	left:8px;
}







/* Item box */

.item_box
{
	max-width:100%;
	margin:10px 0 10px 0;
	padding:20px 40px 20px 40px; 
	overflow:hidden;
}

.item_box .item_name
{
	background:#fff;
	text-align:left;
	padding:0;
	color:#33334f;
	font-weight:700;
	height:40px;
	line-height:40px;
	margin:0;
	font-size:10px;
	text-transform:uppercase;
	letter-spacing:2px;
}

.item_box .item_buttons
{
	position:absolute;
	right:40px;
	top:20px;
	width:auto;
	height:40px;
}

.item_box .item_buttons .button
{
	width:40px;
	height:40px;
	margin:0 0 0 10px;
	border-radius:6px;
	-webkit-border-radius:6px;
	background: #F76B1C;
    background: -moz-linear-gradient(45deg, #F76B1C 0%, #FAD961 100%);
    background: -webkit-linear-gradient(45deg, #F76B1C 0%,#FAD961 100%);
    background: linear-gradient(45deg, #F76B1C 0%,#FAD961 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#F76B1C', endColorstr='#FAD961',GradientType=1 );
	cursor:pointer;
	transition:all 0.1s ease-in-out;
	-webkit-transition:all 0.1s ease-in-out;
	box-shadow:0 1px 5px -2px rgba(0,0,0,0.3);
	-webkit-box-shadow:0 1px 5px -2px rgba(0,0,0,0.3); 
}

.item_box .item_buttons .button .icon
{ 
	position:absolute; 
	left:0;
	top:0;
	width:40px;
	height:40px;
	background-position:center center !important;
	background-size:40% auto !important;
	background-repeat:no-repeat !important;
}

.item_box .item_buttons .button:hover
{
	transform:translate(0,-1px);
	-webkit-transform:translate(0,-1px); 
	box-shadow:0 2px 5px -2px rgba(0,0,0,0.3);
	-webkit-box-shadow:0 2px 5px -2px rgba(0,0,0,0.3);
}

.item_box .item_buttons .edit_button .icon
{
	background-image:url('../img/edit.png');
}

.item_box .item_buttons .delete_button .icon
{
	background-image:url('../img/delete.png');
}

.item_box .item_buttons .sort_button .icon
{
	background-image:url('../img/move.png');
}






 
/* Admin box */

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

.admin_box
{
	width:calc(33.33% - 40px);
	margin:20px;
	padding:100px 40px 40px 40px; 
	overflow:hidden;
	font-size:10px;
	text-transform:uppercase;
	letter-spacing:2px;
	color:#33334f;
	font-weight:700;
	text-align:center;
}



















.content_box .image_input
{
	height:auto;
	max-width:150px;
	margin:10px 0 10px 0;
	background:#FAFAFA;
	border-radius:6px;
	-webkit-border-radius:6px;
}

.content_box .image_input:before
{
	content:"";
	padding-top:100%;
	display:block;
}

.content_box .image_input input
{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	opacity:0;
}

.content_box .image_input .showcase
{
	position:absolute;
	left:0;
	top:0;
	width:100%;
	height:100%;
	border-radius:6px;
	-webkit-border-radius:6px;
	pointer-events:none;
	background-size:cover !important;
	background-position:center center !important;
	background-repeat:no-repeat !important;
}

.content_box .image 
{ 
	background:#FAFAFA;
	border-radius:6px;
	-webkit-border-radius:6px;
	background-size:cover !important;
	background-position:center center !important;
	background-repeat:no-repeat !important;
	margin:10px 0 10px 0;
}

.content_box .image:before
{
	content:"";
	padding-top:100%;
	display:block;
}

.content_box .save:before
{
	content:"";
	position:absolute;
	right:10px;
	top:10px;
	width:20px;
	height:20px;
	background:#5386ff url("../img/loader.gif") center center no-repeat;;
	background-size:60% auto;
	border-radius:50%;
	-webkit-border-radius:50%;
	z-index:999;
}

.content_box .saved:before
{
	content:"";
	position:absolute;
	right:10px;
	top:10px;
	width:20px;
	height:20px;
	background:#5386ff url("../img/save.png") center center no-repeat;;
	background-size:40% auto;
	border-radius:50%;
	-webkit-border-radius:50%;
	z-index:999;
}

.content_box .selected
{
	box-shadow: 0 0 0 2px #5386ff;
	-webkit-box-shadow: 0 0 0 2px #5386ff;
} 

.content_box .required
{
	box-shadow: 0 0 0 2px #F8A950;
	-webkit-box-shadow: 0 0 0 2px #F8A950;
} 










/* Theme colors */

.background_blue
{
	background:#5386ff;
}

.background_red
{
	background:#ed213e;
}

.background_green
{
	background:#35c871; 
}

.background_yellow
{
	background:#fec054;
}