/*
 * Title: Pure CSS3 Backend Panel
 * Author: Clear
 * Version: 1.0.0
 * Create: 2015-06-05
 * Update: 2015-06-05
 */
 /* CSS Reset */


.fl {
	float: left
}

.fr {
	float: right
}

.ease {
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
		 -o-transition: all .5s;
			transition: all .5s;
}

.container {
	width: 100%;
	max-width: 1200px;
	margin: 0 auto;
}

/* Backend Panel Start */

.clear-backend {
	background: #fff;
	width: 100%;
	height: 320px;
	position: relative;
}

.avatar {
	background: #f0f0f0;
	width: 200px;
	height: 200px;
}

.avatar div {
	width: 150px;
	height: 150px;
	border-radius: 50%;
	overflow: hidden;
	position: relative;
	top: 25px;
	left: 25px;
}

.avatar div img {
	width: 100%;
	height: auto;
}

.clear-backend > input {
	position: absolute;
	filter: alpha(opacity=0);
	opacity: 0;
}

.clear-backend > input:hover {
	cursor: pointer;
}

.clear-backend > input:hover + span,
.clear-backend > input:checked + span {
	background: #fff;
	color: #4f2b18;
    font-weight: 700;
}

.clear-backend > input:hover + span {
	background: #fff;
	color: #4f2b18;
	padding-left: 65px;	
    font-weight: 700;
}

.clear-backend > input:checked + span + i { color: #103340;}
.clear-backend > i {
	color:#fff;
	position: absolute;
	margin-top: -30px;
	padding: 0 20px;
	font-size: 20px;
}


.clear-backend > i  b{
    background: #da5d09;
    color: #fff !important;
    position: absolute !important;
    margin-top: -3px !important;
    padding: 6px 10px !important;
    margin-left: -52px !important;
    font-size: 14px;
    font-weight: 700;
    border-radius: 13px;
}

.clear-backend > span,
.clear-backend > i {
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
		 -o-transition: all .5s;
			transition: all .5s;
}

.clear-backend > input,
.clear-backend > span {
    background: #4f2b18 url(../images/page.png);
    display: block;
    width: 250px;
    height: 40px;
    line-height: 40px;
    z-index: 9;
    font-weight: 700;
    font-size: 12px;	
	color: #fff;
    text-align: left;
    padding-left: 45px;
    border-bottom: 1px solid #fff;	
}

.top-bar {
	background: #f0f0f0;
	color: #000;
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 200px);
	height: 60px;
	line-height: 60px;
	font-size: 20px;
	z-index: 9;
}

.top-bar li {
	float: right;
}

.top-bar a {
	display: block;
	padding: 0 20px;
	-webkit-transition: all .5s;
	   -moz-transition: all .5s;
		 -o-transition: all .5s;
			transition: all .5s;
}

.top-bar a:hover {
	color: #1ABC9C;
}

.top-bar li:hover {
	background: #fff;
}

.tab-content {
	position: absolute;
	top: 0;
	right: 0;
	width: calc(100% - 200px);
	height: 100%;
	padding-top: 0px;
	overflow: hidden;
}

.tab-content section {
	position: absolute;
	width: 100%;
	height: 100%;
	padding: 50px;
	display: none;
}


.clear-backend > input.tab-1:checked ~ .tab-content .tab-item-1 {display: block;}
.clear-backend > input.tab-2:checked ~ .tab-content .tab-item-2 {display: block;}
.clear-backend > input.tab-3:checked ~ .tab-content .tab-item-3 {display: block;}
.clear-backend > input.tab-4:checked ~ .tab-content .tab-item-4 {display: block;}
.clear-backend > input.tab-5:checked ~ .tab-content .tab-item-5 {display: block;}
.clear-backend > input.tab-6:checked ~ .tab-content .tab-item-6 {display: block;}
.clear-backend > input.tab-7:checked ~ .tab-content .tab-item-7 {display: block;}
.clear-backend > input.tab-8:checked ~ .tab-content .tab-item-8 {display: block;}
.clear-backend > input.tab-9:checked ~ .tab-content .tab-item-9 {display: block;}
.clear-backend > input.tab-10:checked ~ .tab-content .tab-item-10 {display: block;}


/* Responsive */

@media screen and (max-width: 1367px) {}
@media screen and (max-width: 1281px) {}
@media screen and (max-width: 1025px) {}
@media only screen and (max-width: 961px) {}
@media only screen and (max-width: 641px) {
	.avatar, 
	.clear-backend > input,
	.clear-backend > span {
		width: 60px;
		height: 60px;
	}
	.clear-backend > span {
		filter: alpha(opacity=0);
		opacity: 0;
	}
	.avatar div {
		width: 40px;
		height: 40px;
		border-radius: 50%;
		top: 5px;
		left: 5px;
	}
	.top-bar,
	.tab-content {
	width: calc(100% - 60px);
	}
}

@media only screen and (max-width: 481px) {
}

.clear-backend > input.tab-01:checked ~ .tab-content .tab-item-01 {display: block;}
.clear-backend > input.tab-02:checked ~ .tab-content .tab-item-02 {display: block;}
.clear-backend > input.tab-03:checked ~ .tab-content .tab-item-03 {display: block;}
.clear-backend > input.tab-04:checked ~ .tab-content .tab-item-04 {display: block;}
.clear-backend > input.tab-05:checked ~ .tab-content .tab-item-05 {display: block;}
.clear-backend > input.tab-06:checked ~ .tab-content .tab-item-06 {display: block;}
.clear-backend > input.tab-07:checked ~ .tab-content .tab-item-07 {display: block;}
.clear-backend > input.tab-08:checked ~ .tab-content .tab-item-08 {display: block;}
.clear-backend > input.tab-09:checked ~ .tab-content .tab-item-09 {display: block;}
.clear-backend > input.tab-010:checked ~ .tab-content .tab-item-010 {display: block;}