
/*
	Colors
	------
	Blue		: #46a4da
	Red			: #ee5663
	Green		: #6cd262
	Gray STD	: #797979
	Gray Med 	: #d8d8d8
	Gray light 	: #f0f0f0
	
	------
*/

html{
	background-color: #46a4da;
}

body{
	background-color: #46a4da;
	padding-top: 50px;
}

#content{
	background-color: #fff;
	padding: 20px 0 60px;
}

/* 
	Buttons
*/
.btn-sl{
	text-transform: uppercase;
	border-radius: 0;
	transition: background-color 0.2s ease;
}

.btn-sl.active,
.btn-sl:active{
	-webkit-box-shadow:none;
	box-shadow: none;
}

.btn-sl.active.focus, 
.btn-sl.active:focus, 
.btn-sl.focus, 
.btn-sl:active.focus, 
.btn-sl:active:focus, 
.btn-sl:focus{
	position: relative;
	top: 1px;
	color: #fff;
	outline: none;
}

.btn-sl-red{
	color: #fff;
	background-color: #ee5663;
}

.btn-sl-red:hover{
	color: #fff;
	background-color: #f17882;
}

.btn-sl-green{
	color: #fff;
	background-color: #6cd262;
}

.btn-sl-green:hover{
	color: #fff;
	background-color: #98c793;
}

.btn-sl-gray{
	color: #797979;
	background-color: #d8d8d8;
}

.btn-sl-gray:hover{
	color: #797979;
	background-color: #f0f0f0;
}

.btn-default{
	font-weight: 300;
	color: #797979;
	border-color: #d8d8d8;
	background-color: #fff;
	border-radius: 0;
	transition: background-color 0.2s ease;	
}

.btn-default:hover,
.btn-default:active,
.btn-default.active,
.btn-default:focus,
.btn-default.focus{
	color: #6cd262 !important;
	border-color: #6cd262 !important;
	background-color: #fff !important;
	-webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.btn-sl-fake{
	cursor: default;
}

.btn-sl-fake.btn-sl-green,
.btn-sl-fake.btn-sl-green:hover{
	color: #fff;
	background-color: #6cd262;
}

.btn-sl-fake.btn-sl-gray,
.btn-sl-fake.btn-sl-gray:hover{
	color: #797979;
	background-color: #d8d8d8;
}

.btn-sl.btn-sl-red-alt,
.btn-sl.btn-sl-red-alt:hover{
	color: #f17882!important;
	border-color: #f17882!important;
}

/* 
	FORM
*/

form.submitting{
	position: relative;
}

form.submitting:after{
	position: absolute;
	top: 0;
	left: 0;
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.7);
}

.form-control{
	color: #797979;
	border-radius: 0;
	border-color: #d8d8d8;
}

.form-control:focus {
	border-color: #797979;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.sl-form-error-label{
	color: #ee5663;
	font-weight: bold;
	font-size: 0.9em;
}

.form-control.in-error{
	border-color: #ee5663;
}

hr{
	border-top: 1px solid #d8d8d8;
}

.no-content{
	color: #797979;
	font-size: .8em;
	text-decoration: none;
	text-transform: uppercase;
}

/*
	AVATAR UPDATE
*/
.avatar .avatar-loader{
	display: none;
}

.avatar.uploading{
	position: relative;
	display: block;
}

.avatar.uploading:after{
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1020;
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.7);
}

.avatar.uploading .avatar-loader{
	display: block;
	position: absolute;
	z-index: 1021;
	top: 50%;
	left: 50%;
	margin: -25px 0 0 -25px;
}

/*
	MESSAGE BAR
*/
#sl-message-bar{
    position: fixed;
    top: -50px;
    left: 0;
    z-index: 1050;
    width: 100%;
    height: 50px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    line-height: 50px;
    color: white;
    background: rgba(51,153,204,.9);
}

#sl-message-bar.success{
    background: rgba(0,153,0,.9);
}

#sl-message-bar.error{
    background: rgba(255,0,0,.9);
}

#sl-message-bar.infos{
    background: rgba(51,153,204,.9);
}


/*
	Helpers
*/
.sl-title-bar{
	font-size: 1.3em;
	font-weight: 300;
	margin: 0;
	padding: 0 0 5px;
	text-transform: uppercase;
	color: #797979;
	border-bottom: 2px solid #46a4da;
}

.sl-title-bar-alt{
	border-bottom: 2px solid #ee5663;
}

.sl-title-bar .filter-label{
	line-height: 20px;
	text-transform: none;
	color: #797979; 
}

.sl-title-bar .filter-label .filter-label-date{
	display: none;
}

.sl-title-bar .filter-label a{
	color: #797979;
	text-decoration: underline;
}

.sl-title-bar .filter-label a:hover{
	text-decoration: none;
}

.sl-title-bar .filter-nav{
	font-size: 14px;
	line-height: 20px;
	margin-bottom: 0;
	text-transform: none;
	color: #d8d8d8;
}

.sl-title-bar .filter-nav>li{
	font-size: .8em;
}

.sl-title-bar .filter-nav>li>a{
	color: #797979;
}

.sl-title-bar .filter-nav>li>a:hover{
	text-decoration: underline;
}

.sl-title-bar .filter-nav>li.active>a{
	font-weight: bold;
	text-decoration: none;
	cursor: default;
}

.sl-title-bar .filter-nav>li.disabled>a,
.sl-title-bar .filter-nav>li.disabled>a:hover{
	color: #d8d8d8;
	cursor: default;
	text-decoration: none;
}

.alert{
	font-size: 14px;
    font-weight: bold;
    line-height: 1.42857143;
	text-transform: uppercase;
	padding: 5px 12px;
	border-radius: 0;
	border-width: 2px;
}

.alert.alert-danger{
	background: none;
	color: #ee5663;
	border-color: #ee5663;
}


/* MODAL */
body.modal-open #top{
	left: -15px;
}

#sl-modal{}

#sl-modal .modal-dialog{}

#sl-modal .modal-dialog .modal-header{
	font-size: 14px;
	text-transform: uppercase;
	padding: 15px 15px 10px;
	color: #fff;
	border: none;
	background-color: #46a4da;
}

#sl-modal .modal-dialog .modal-header>h4{
	font-size: .9em;
	font-weight: normal;
}

#sl-modal .modal-dialog .modal-header .close {
    margin-top: -5px;
    font-weight: 400;
    color: #fff;
    text-shadow: none;
    filter: alpha(opacity=100);
    opacity: 1;    
}

#sl-modal .modal-dialog .modal-header .close:hover{
	filter: alpha(opacity=70);
    opacity: .7;
}

#sl-modal .modal-dialog .modal-content{
	color: #797979;
	border: none;
	border-radius: 0;
	box-shadow: none;
	-webkit-box-shadow: none;
}

#sl-modal .modal-dialog .modal-content .modal-body{
	border: 1px solid #d8d8d8;
	border-top: none;
}

.modal-backdrop{
	background-color: #fff;
}

.modal-backdrop.in{
    filter: alpha(opacity=70);
    opacity: .7;
}

#sl-modal #sl-modal-loading{
	width: 300px;
}

#sl-modal #sl-modal-loading .modal-body{
	height: 120px;
	text-indent: -9999px;
	background-color: #fff;
	background-image: url(../images/loader/6cd262.gif);
	background-position: center center;
	background-repeat: no-repeat;
}

/* 
	TOP & Nav
*/

#top{
	background-color: #46a4da;
	border: none;
}

#top .navbar-brand{
	color: #fff;
	font-size: 2.3em;
	font-weight: bold;
	margin-right: 20px;
}

#top .nav>li{
	font-size: .9em;
	text-transform: uppercase;
	margin-right: 15px;
}

#top .nav.navbar-right{
	margin-right: 0;
}

#top .nav.navbar-right>li{
	margin-right: 0;
	margin-left: 15px;
}

#top .nav>li>a{
	color: #fff;
	padding: 12px 0 15px;
	border-top: 4px solid transparent;
}

#top .nav>li>a:hover{
	color: rgba(255,255,255,.7);
	border-top-color: #fff;
}

#top .nav>li.active>a{
	cursor: default;
	border-top-color: #fff;
	color: rgba(255,255,255,.7);
	background-color: #46a4da;
}

#top .nav>li>div>a{
	display: block;
	color: #fff;
	text-decoration: none;
	padding: 13px 0 15px;
	border-top: 4px solid transparent;
}

#top .nav>li>div>a:hover{
	color: rgba(255,255,255,.7);
	border-top-color: #fff;
}

#top .nav>li.separator{
	padding: 16px 0 15px;
	color: #fff;
}

#top .nav .open>a, 
#top .nav .open>a:focus, 
#top .nav .open>a:hover{
	color: #fff;
	background-color: transparent;
	border-color: transparent;
	border-top-color: #fff;
}

#top .dropdown-menu{
	font-size: 14px;
	border: none;
	border-radius: 0;
	background-color: #46a4da;
}

#top .dropdown-menu a{
	color: #fff;
	font-size: .9em;
}

#top .dropdown-menu a:hover{
	color: rgba(255,255,255,.7);
	background-color: #46a4da;
}

.dropdown:hover .dropdown-menu,
#top .nav .open .dropdown-menu{
	display: block;
	top: 90%;
	left: -20px;
	right: auto;
	-webkit-box-shadow: 0 6px 12px rgba(0,0,0,0);
    box-shadow: 0 6px 12px rgba(0,0,0,0);
}

@media(max-width:767px){
	#top .navbar-nav{
		margin: 0;
	}	
	
	#top .nav.navbar-right>li{
		margin: 0;
	}
}

/*
	PSA
*/

#psa{
	position: relative;
	margin-bottom: 20px;
}

#psa #psa-form{
	display: none;
}

#psa #psa-edit{
	position: absolute;
	right: 0;
	top: 0;
}

#psa #psa-edit #edit-psa{
	display: inline-block;
	color: #797979;
}

#psa .psa-content{
	text-transform: uppercase;
	padding-bottom: 5px;
	color: #ee5663;
	border-bottom: 4px solid #ee5663;
}

#psa #psa-form #psa-text{
	margin-bottom: 10px;
}

#psa.editing #psa-edit,
#psa.editing .psa-content{
	display: none;
}

#psa.editing #psa-form{
	display: block;
}

/* 
	Footer
*/
#bottom{
	position: relative;
	padding: 50px 0;
	min-height: 120px;
	color: #fff;
	background-color: #46a4da; 
}

#bottom .about-slashleaks{
	font-size: .9em;
	line-height: 1.2em;
	font-weight: 300;
}

#bottom .about-slashleaks h4{
	font-size: 1em;
	font-weight: normal;
	margin-top: 0;
	margin-bottom: 15px;
	text-transform: uppercase;
}

#bottom .about-slashleaks a{
	color: #fff;
	text-transform: uppercase;
    transition: color 0.2s ease;
}

#bottom .about-slashleaks a:hover{
	color: #b5dbf0;
	text-decoration: none;
}

#bottom form{
	margin-bottom: 15px;
}

#bottom form #s{
	text-transform: uppercase;
	text-align: right;
	font-size: .9em;
	line-height: 1.2em;
	font-weight: 300;
	padding-right: 5px;
	color: #fff;
	border: none;
	border-radius: 0;
	background: rgba(65,151,200,.4);
	-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0);
    border-bottom: 2px solid #d8d8d8;
}

#bottom form #s::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #fff;
	transition: color 0.2s ease;
}

#bottom form #s::-moz-placeholder { /* Firefox 19+ */
	color: #fff;
	transition: color 0.2s ease;
}

#bottom form #s:-ms-input-placeholder { /* IE 10+ */
	color: #fff;
	transition: color 0.2s ease;
}

#bottom form #s:-moz-placeholder { /* Firefox 18- */
	color: #fff;
	transition: color 0.2s ease;
}

#bottom form #s:focus::-webkit-input-placeholder { /* Chrome/Opera/Safari */
	color: #b5dbf0;
}
#bottom form #s:focus::-moz-placeholder { /* Firefox 19+ */
	color: #b5dbf0;
}
#bottom form #s:focus:-ms-input-placeholder { /* IE 10+ */
	color: #b5dbf0;
}
#bottom form #s:focus:-moz-placeholder { /* Firefox 18- */
	color: #b5dbf0;
}

#bottom ul.footer-nav{	
	text-align: right;
}

#bottom ul.footer-nav>li{	
	font-size: .9em;
	font-weight: 300;
	text-transform: uppercase;
}

#bottom ul.footer-nav>li>a{
	color: #fff;	
	text-decoration: none;
	transition: color 0.2s ease;
}

#bottom ul.footer-nav>li>a:hover{
	color: #b5dbf0;	
}

#bottom #gototop{
	position: absolute;
	top: 0px;
	left: 50%;
	display: inline-block;
	padding: 0 4px;
	margin-left: -18px;
	font-size: 30px;
	line-height: 22px;
	color: #b5dbf0;
	background: #46a4da;
	transition: all 0.2s ease;
}

#bottom #gototop:hover{
	color: #fff;
	top: -3px;
}

/* 
	Leak Loop
*/

.leak-loop{
	padding-top: 10px;
}

.leak-loop .item-leak{
	text-transform: uppercase;
	margin: 10px 0 15px;
	padding-bottom: 2px;
	border-bottom: 1px solid #d8d8d8;
	transition: border-bottom-color 0.2s ease;
}

.leak-loop .item-leak.item-leak-last{
	border-bottom: 1px solid #797979;
}

.leak-loop .item-leak a.leak-link{
	position: relative;
	display: block;
	height: 20px;
	font-size: .9em;
	line-height: 20px;
	text-decoration: none;
	color: #797979;
	transition: color 0.2s ease;
}

.leak-loop .item-leak a.leak-link:hover{
	color: #6cd262;
}

.leak-loop .item-leak .leak-title{	
	position: relative;
	padding-left: 75px;
    width: 100%;
	display: block;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
}

.leak-loop .item-leak .leak-date{	
	position: absolute;
	left: 0;
	bottom: 0;
	width: 75px;
	color: #9a9a9a;
}

.leak-loop .item-leak .leak-score{
	text-align: right;
	position: relative;
}

.leak-loop .item-leak .leak-score .leak-progress-bar-label{
	color: #797979;
	font-size: .9em;
}

.leak-loop .item-leak .leak-score .leak-progress{	
}

.leak-loop .item-leak .leak-score .leak-progress .leak-progress-bar{
	content: '';
	position: absolute;
	bottom: -3px;
	right: 0;
	display: block;
	height: 2px;
	background-color: #ee5663;
}

.leak-loop .item-leak .leak-score .leak-progress.confirmed .leak-progress-bar{
	background-color: #6cd262;
}

.leak-loop .item-leak .leak-score .leak-progress.busted .leak-progress-bar{
	background-color: #d8d8d8;
}

.leak-loop .item-leak .leak-locked{
	text-align: right;
	position: relative;
	height: 20px;
	width: 100%;
}

.leak-loop .item-leak .leak-locked>span{
	cursor: pointer;
	position: absolute;
	bottom: -3px;
	right: 0;
	display: block;
	color: #f17882;
	font-size: .9em;
	width: 100%;
	border-bottom: 2px solid #d8d8d8;
}

.leak-loop .item-leak .item-admin-links{}

.leak-loop .item-leak .item-admin-links .btn{
	padding: 0 5px;
	margin-top: -1px;
	height: 20px;
    font-size: .9em;
    line-height: 20px;
    vertical-align: top;
    color: #797979;
    border: 1px solid #D8D8D8;
}

.leak-loop .item-leak .item-admin-links .btn:hover{
	color: #6cd262;
	border-color: #6cd262;
}

.ajax-loop .ajax-load-more{
	margin-top: 25px;
}

.ajax-loop .ajax-load-more .no-more-post{
	display: none;
	font-size: .8em;
	color: #797979;
	text-decoration: none;
	text-transform: uppercase;
}

/* 
	Term Loop (Categories, OS, Brands)
*/

.term-loop{
	padding-top: 10px;
}

.term-loop .item-term{
	text-transform: uppercase;
	margin: 10px 0 15px;
	padding-bottom: 2px;
	border-bottom: 1px solid #d8d8d8;
}

.term-loop .item-term a{
	color: #797979;
	text-decoration: none;
	transition: color 0.2s ease;
}

.term-loop .item-term a:hover{
	color: #6cd262;
}

.term-loop .item-term h2{
	font-size: 1em;
	margin: 0;
	font-weight: normal;
}

.term-loop .item-term .term-name{	
	font-size: .9em;
}

.term-loop .item-term .term-leak-count{
	font-size: .8em;
}

.term-loop .item-term .term-link{
	font-size: .8em;
}


/*
	Contributor loop
*/

.contributor-loop{
	padding-top: 20px;
}

.contributor-loop .item-contributor{
	position: relative;
	z-index: 1;	
	margin-bottom: 20px;
	cursor: pointer;
	border-bottom: 1px solid #d8d8d8;
}

.contributor-loop .item-contributor .item-contributor-left{
	position: relative;
	height: 67px;
	z-index: 1002;
}

.contributor-loop .item-contributor .item-contributor-left .item-contributor-avatar{
	position: absolute;
	z-index: 1003;
	bottom: -1px;
	left: 0;
	display: block;
	height: 100%;
	width: 67px;
	background: #ee5663;
}

.contributor-loop .item-contributor .item-contributor-left .item-contributor-avatar .avatar-position{
	position: absolute;
	bottom: 0;
	left: 0;
	font-size: .8em;
	padding: 2px 4px;
	color: #fff;
	transition: background 0.2s ease;
	background: #46a4da;
}

.contributor-loop .item-contributor .item-contributor-left div{
	position: absolute;
	left: 82px;
	top: 20px;	
	transition: color 0.2s ease;
	color: #797979;
}

.contributor-loop .item-contributor .item-contributor-left div strong{
	display: block;
	text-transform: uppercase;
	margin-bottom: 5px;
}

.contributor-loop .item-contributor .item-contributor-left div span{
	display: block;
	white-space: nowrap;
}

.contributor-loop .item-contributor .item-contributor-left div span span{
	display: inline-block;
}

.contributor-loop .item-contributor .item-contributor-right{
	text-align: right;
	position: relative;
	padding-top: 45px;
}

.contributor-loop .item-contributor .item-contributor-right .leak-progress-bar-label{
	color: #797979;
	font-size: .9em;
}

.contributor-loop .item-contributor .item-contributor-right .leak-progress .leak-progress-bar{
	content: '';
	position: absolute;
	bottom: -3px;
	right: 0;
	display: block;
	height: 2px;
	background-color: #ee5663;
}

.contributor-loop .item-contributor .item-contributor-right .leak-progress.confirmed .leak-progress-bar{
	background-color: #6cd262;
}

.contributor-loop .item-contributor .item-contributor-right .leak-progress.busted .leak-progress-bar{
	background-color: #d8d8d8;
}

.contributor-loop .item-contributor:hover .item-contributor-left div{
	color: #6cd262;
}

.contributor-loop .item-contributor:hover .item-contributor-left .item-contributor-avatar .avatar-position{
	background: #6cd262;
}

/* 
	Contributor block on homepage
*/

#top-contributor .contributor-loop .item-contributor {
	
}

#top-contributor .contributor-loop .item-contributor .item-contributor-left div{
	top: 5px;
}

#top-contributor .contributor-loop .item-contributor .item-contributor-left div span.stats{
	white-space: nowrap;
}

#top-contributor .contributor-loop .item-contributor .item-contributor-left div span span.comments-count{
	display: none;
}

#top-contributor .contributor-loop .item-contributor .item-contributor-left div span span.joined-on{
	display: none;
}

#top-contributor .contributor-loop .item-contributor .item-contributor-right .leak-progress .leak-progress-bar{
	bottom: -3px;
}

@media (max-width: 1200px){
	#top-contributor .contributor-loop .item-contributor .item-contributor-right .leak-progress .leak-progress-bar{
		bottom: -1px;
	}
}

/*
	Contributor Profile
*/

#contributor-content .contributor-loop .item-contributor .item-contributor-left .item-contributor-avatar .avatar-position{
	display: none;
}

#contributor-content .contributor-loop .item-contributor .item-contributor-left div{
	top: 5px;
}

#contributor-content .contributor-loop .item-contributor .item-contributor-left div strong{
	margin-bottom: 0;
}

#contributor-content .contributor-loop .item-contributor .item-contributor-left div span span.joined-on{
	display: block;
}

#contributor-content .contributor-loop .item-contributor .item-contributor-left div span span.comments-count{
	display: none;
}

#contributor-content #contributor-badges{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start; 
	margin: 0 -2px 20px;
}

#contributor-content #contributor-badges .item-badge{
	text-align: center;
	max-height: 71px;
	max-width: 71px;
	margin-bottom: 4px;
}

#contributor-content #contributor-badges .item-badge>div.inner{
	position: relative;
	margin: 0 2px;
	border: 1px solid #ccc;
}

#contributor-content #contributor-badges .item-badge.item-badge-locked>div.inner>div:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.8);
}

#contributor-content #contributor-badges .item-badge>div.inner .badge{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 3px 3px 2px;
	border-radius: 0px;
	background-color: #46a4da;
}

/*
	Term Index
*/

.nav-tabs-alphabet{}

.nav-tabs-alphabet>li{}

.nav-tabs-alphabet>li>a{
	color: 	#797979;
	text-decoration: none;
	border-radius: 0!important;
	transition: color 0.2s ease;
}

.nav-tabs-alphabet>li>a:hover{
	color: #6cd262;
}

.term-index{	
}

.term-index .item-term{	
}

.term-index .item-term a{
	color: 	#797979;
	text-decoration: none;
	transition: color 0.2s ease;
}

.term-index .item-term a:hover{
	color: #6cd262;
}

.taxonomy-alpha-item .alpha-letter{
	display: inline-block;
    font-size: 22px;
    line-height: 32px;
    text-align: center;
    width: 100%;
    color: #797979;
	border: 1px solid #d8d8d8;
	background-color: #fff;
    transition: all 0.2s ease;
}

.taxonomy-alpha-item.blink .alpha-letter{
	background-color: #6cd262;
	border-color: #6cd262;
	color: #fff;
}

/* 
	Term Single (taxonomy-content)
*/
#taxonomy-statistics{
	padding-top: 15px;
	margin-bottom: 30px;
}

#taxonomy-statistics .taxonomy-statistics-separator{
	height: 15px;
	width: 100%;
}

#taxonomy-statistics .taxonomy-statistics{
	text-align: center;
}

#taxonomy-statistics .taxonomy-statistics>strong{
	display: block;
	font-size: 2.2em;
	line-height: 1;
	font-weight: bold;
    color: #797979;	
}

#taxonomy-statistics .taxonomy-statistics>strong>span.text-muted{
	color: #d8d8d8;
	font-weight: 200;
}

#taxonomy-statistics .taxonomy-statistics>span{
	display: block;
	font-size: .9em;
	color: #797979;
}

#taxonomy-statistics .taxonomy-statistics>span>small{
	font-style: italic;
	color: #d8d8d8;
}

#taxonomy-statistics .chart{
	text-align: center;
	width: 68px;
	margin: 0 auto;
}

#taxonomy-statistics .chart-value{
	text-align: center;
	font-weight: bold;
	color: #797979;
}

#taxonomy-statistics .chart-value>span{
	font-weight: 200;
	color: #d8d8d8;
}

#taxonomy-statistics .chart-label{
	text-align: center;
	color: #797979;
	font-size: .9em;
}

#taxonomy-statistics .bx-wrapper .bx-controls-direction a{
	position: absolute;
	top: 94px;
	height: auto;
	font-size: .9em;
	line-height: 1;
	outline: 0;	
	z-index: 1029;
	color: #ee5663;
}

#taxonomy-statistics .bx-wrapper .bx-controls-direction a:hover{
	color: #d8d8d8;
}

#taxonomy-statistics .bx-wrapper .bx-controls-direction a:active{
	color: #46a4da;
}

#taxonomy-statistics .bx-wrapper .bx-prev {
	left: 0px;
}

#taxonomy-statistics .bx-wrapper .bx-next {
	right: 0px;
}

#taxonomy-statistics .bx-wrapper .bx-controls-direction a.disabled {
	display: inline-block;
	cursor: default;
	color: #f0f0f0;
}

#stats-taxo .row{
	margin: 0;
}

#stats-taxo .statistic-col .bar-outer{
	height: 68px;
	margin-bottom: 5px;
}

#stats-taxo .statistic-col .bar-label{
	font-size: inherit;
}

#stats-taxo .statistic-col.current .bar-outer>.bar{
	background: #46a4da;
}

#stats-taxo .statistic-col.future .bar-outer{
	background: #f8f8f8;
}

#stats-taxo .statistic-col.future .bar-label{
	color: #d8d8d8;
}

#stats-taxo-bottom{
	font-size: .9em;
}

#stats-taxo-bottom .slider-label{
	color: #797979;
}

/* 
	Stats (home)
*/

.statistics-blocks{
	padding-top: 20px;
}

.statistics-blocks>.row{
	margin-bottom: 20px;
}

.statistics-blocks .term-badge{
	display: block;
	text-align: center;
	text-decoration: none;
}

.statistics-blocks .term-badge>span{
	display: block;
	color: #797979;
}

.statistics-blocks .term-badge>span.count{	
	font-size: 2.2em;
	white-space: nowrap;
	line-height: 50px;
	height: 50px;
	font-weight: bold;
	transition: color 0.2s ease;
}

.statistics-blocks .term-badge>span.count>.text-muted{
	color: #d8d8d8;
	font-weight: 200;
	transition: color 0.2s ease;
}

.statistics-blocks .term-badge>span.name{
	text-transform: uppercase;
	font-size: small;
}

.statistics-blocks .term-badge:hover>span.count{
	color: #6cd262;
}

.statistics-area{
	padding: 0 15px;
}

.statistic-col{
	text-align: center;
	padding: 0 2px;
}

.statistic-col .bar-outer{
	position: relative;
	width: 100%;
	height: 50px;
	background: #f0f0f0;
}

.statistic-col .bar-outer .bar{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background: #ee5663;
	transition: background-color 0.2s ease;
}

.statistic-col .bar-label{
	color: #797979;
	font-size: small;
}

.statistic-col.clickable{
	cursor: pointer;
}

.statistic-col.clickable:hover .bar-outer .bar{
	background: #6cd262;
}

.statistics-area.loading{
	position: relative;
	height: 68px;
}

.statistics-area.loading:after{
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background-color: rgba(255,255,255,.8);
	background-image: url(../images/loader/6cd262.gif);
	background-position: center center;
	background-repeat: no-repeat;
}

.view-all-link a{
	font-size: .8em;
	color: #797979;
	text-decoration: none;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.view-all-link a:hover{
	color: #6cd262;
}

/*
	Single
*/

#single-content{
	
}

#single-content.single-locked{
	position: relative;
	z-index: 1029;
}

#single-content.single-locked:after{
	content: "";
	position: absolute;
	z-index: inherit;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.8);
}

#single-content.single-locked #ad-widget,
#single-content.single-locked .alert-locked{
	position: relative;
	z-index: 1030;
}

#single-content .sl-title-bar{
	font-size: 1em;
	margin-bottom: 20px;
}

#single-content .entry-video{
	margin-bottom: 20px;
}

#single-content .entry-video .sl-video{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}


#single-content .entry-ad-banner{
	padding: 10px;
	background-color: #f0f0f0;
	margin: 30px 0;
}

#single-content .entry-video .sl-video iframe,
#single-content .entry-video .sl-video object,
#single-content .entry-video .sl-video embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#single-content .entry-side-posts{
	margin-top: 30px;
}

#single-content .entry-side-posts .btn{
	font-size: 1em;
	font-weight: 300;
}

#single-content .entry-side-posts .btn:hover{ 
}

#leak-img-gallery{
	border: 1px solid #d8d8d8;
	margin-bottom: 20px;
}

#leak-img-gallery img{
	margin: 0 auto;
}

#single-content .widget{
	margin-bottom: 40px;
}

#single-content #ad-widget{
	margin: 0px 0 40px;
	padding-top: 30px;
	background: #f0f0f0;
}

#single-content #videos-widget .sl-video{
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}

#single-content #videos-widget .sl-video iframe,
#single-content #videos-widget .sl-video object,
#single-content #videos-widget .sl-video embed{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

#single-content #gallery-widget{
	margin-bottom: 20px;
}

#single-content #gallery-widget a{
	display: block;
	transition: border-color 0.2s ease;
	border: 1px solid #d8d8d8;
}

#single-content #gallery-widget a:hover{
	border-color: #6cd262;
}

#single-content #gallery-widget a.active,
#single-content #gallery-widget a.active:hover{
	cursor: default;
	border-color: #46a4da;
}

#single-content #gallery-widget .a{
	content: "";
	display: block;
	width: 100%;
	height: 0;
	padding-bottom: 83%;
	background: #f0f0f0;
	border: 1px solid #d8d8d8;
}

#single-content #vote-widget .leak-score{
	position: relative;
	margin-top: 20px;
	border-bottom: 1px solid #d8d8d8;
}

#single-content #vote-widget .leak-score.admin_rated{
	opacity: .4;
	filter:alpha(opacity=40);
}

#single-content #vote-widget #trust-score-buttons.voting{
	position: relative;
}

#single-content #vote-widget #trust-score-buttons.voting:after{
	content: '';
	position: absolute;
	top: -5%;
    right: -5%;
    bottom: -5%;
    left: -5%;
    padding: 5%;
    height: 110%;
    width: 110%;
	background-color: rgba(255,255,255,.8);
	background-image: url(../images/loader/6cd262.gif);
	background-position: center center;
	background-repeat: no-repeat;
}

#single-content #vote-widget .leak-score .leak-progress-bar-label{
	color: #797979;
	font-size: .9em;
	font-weight: bold;
	text-transform: uppercase;
	text-align: right;
	display: block;
}

#single-content #vote-widget .leak-score .leak-progress-bar-label .score{
	display: inline-block;
	font-weight: normal;
	float: left;
}

#single-content #vote-widget .leak-score .leak-progress .leak-progress-bar{
	content: '';
	position: absolute;
	bottom: -1px;
	right: 0;
	display: block;
	height: 2px;
	background-color: #ee5663;
}

#single-content #vote-widget .leak-score .leak-progress.confirmed .leak-progress-bar{
	background-color: #6cd262;
}

#single-content #vote-widget .leak-score .leak-progress.busted .leak-progress-bar{
	background-color: #d8d8d8;
}

#single-content #contributor-widget .contributor-loop{
	padding: 0;
}

#single-content #contributor-widget .contributor-loop .item-contributor .item-contributor-left .item-contributor-avatar .avatar-position{
	display: none;
}

#single-content #contributor-widget .contributor-loop .item-contributor .item-contributor-left div{
	top: 5px;
}

#single-content #contributor-widget .contributor-loop .item-contributor .item-contributor-left div strong{
	font-weight: normal;
	margin: 20px 0 0;
}

#single-content #contributor-widget .contributor-loop .item-contributor .item-contributor-left div span span.joined-on{
	display: none;
}

#single-content #contributor-widget .contributor-loop .item-contributor .item-contributor-left div span span.comments-count{
	display: none;
}

#single-content #statistics-widget .statistics-blocks{
	padding-top: 0;
}

#single-content #meta-widget{
}

#single-content #meta-widget .taxonomies>a{
	display: inline-block;
	margin-bottom: 5px;
}

/*
	Dashboard
*/

#dashboard-breadcrumb{
	text-transform: uppercase;
	font-size: .8em;
	margin-bottom: 30px;
	color: #d8d8d8;
}

#dashboard-breadcrumb ul{
	margin: 0;
}

#dashboard-breadcrumb a{
	color: #797979;
}

#dashboard-breadcrumb a:hover{
}

#dashboard-content{}

#dashboard-content #statistics-widget{
	margin-bottom: 30px;
}

#dashboard-content #last-leaks-widget{
	margin-bottom: 30px;
}

#dashboard-content #last-comments-received-widget{}

#dashboard-content #last-comments-received-widget ul{
	margin: 0;
	padding-top: 10px;
}

#dashboard-content #last-comments-received-widget ul>li{
	margin-bottom: 10px;
	padding-bottom: 10px;
	border-bottom: 1px solid #d8d8d8;
}

#dashboard-content #last-comments-received-widget ul>li>.comment-content{
	
}

#dashboard-content #last-comments-received-widget ul>li>.comment-meta{
	font-size: .8em;
	color: #797979;
}

#dashboard-content #last-comments-received-widget ul>li>.comment-meta a{
	color: #797979;
	text-decoration: underline;
}

#dashboard-content #last-comments-received-widget ul>li>.comment-meta a:hover{
	text-decoration: none;
}

#dashboard-content #contributor-badges{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start; 
	margin: 0 -2px 20px;
	padding-top: 10px;
}

#dashboard-content #contributor-badges .item-badge{
	text-align: center;
	max-height: 71px;
	max-width: 71px;
	margin-bottom: 4px;
}

#dashboard-content #contributor-badges .item-badge>div.inner{
	position: relative;
	margin: 0 2px;
	border: 1px solid #ccc;
}

#dashboard-content #contributor-badges .item-badge.item-badge-locked>div.inner>div:after{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.8);
}

#dashboard-content #contributor-badges .item-badge>div.inner .badge{
	position: absolute;
	bottom: 0;
	left: 0;
	padding: 3px 3px 2px;
	border-radius: 0px;
	background-color: #46a4da;
}


#dashboard-edit-leak .form-group-taxonomy .list-inline>li{
    margin-top: 5px;
    padding-right: 0;
    float: left;
}

#dashboard-edit-leak .form-group-taxonomy .list-inline>li>label{
    text-transform: lowercase;
    font-weight: normal;
    margin: 0;
    padding: 2px 5px;
    overflow: hidden;
    cursor: pointer;
    background: #979797;
    color: #f6f6f6;
}

#dashboard-edit-leak .form-group-taxonomy .list-inline>li>label:hover{
    background: #666;
    color: #fff;
}

#dashboard-edit-leak .form-group-taxonomy .list-inline>li>label.checked{
    color: #fff;
    background: #ed5564;
}

#dashboard-edit-leak .form-group-taxonomy .list-inline>li>label>input{
    position: relative;
    top: -30px;
    margin-left: -15px; 
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper a{
	color: #797979;
	text-decoration: underline;
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper a:hover{
	text-decoration: none;
	color: #6cd262;
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper .autocomplete-wrapper{
	position: relative;	
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper .autocomplete-wrapper .autocomplete-open{
	border-bottom-color: #d8d8d8;
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper ul.ui-autocomplete{
	position: absolute;
	z-index: 1;
	list-style: none;
	margin: 0;
	padding: 0;
	max-width: 100%;
	background: #fff;
	border: 1px solid #797979;
	border-top: 0;
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper ul.ui-autocomplete>li.ui-menu-item{
	font-size: small;
	padding: 2px 12px;
    color: #797979;
    border-bottom: 1px solid #d8d8d8;
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper ul.ui-autocomplete>li.ui-menu-item:last-child{
	border-bottom: 0;
}

#dashboard-edit-leak .form-group-taxonomy #insert-new-device-wrapper ul.ui-autocomplete>li.ui-menu-item.ui-state-focus{
	background: #f0f0f0;
}


#dashboard-edit-leak .form-group-sources #leak_sources_loop{}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li{
	position: relative;	
	text-align: left;
	line-height:20px;
	margin-bottom: 5px;
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li .value{
	display: block;
	width: 100%;
	font-style: italic;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;	
	color: #797979;
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li .cta{
	display: none;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	text-align: left;
	text-transform: uppercase;
	line-height: 20px;
	vertical-align: middle;
	background: rgba(255,255,255,.8);
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li .cta > span{
	display: inline-block;
	padding: 0 2px;
	color: #d8d8d8;
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li .cta > span:hover{
	text-decoration: underline;
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li .cta .follow{
	color: #46a4da;
	cursor: pointer;	
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li .cta .delete{
	color: #ee5663;
	cursor: pointer;	
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li:hover .cta{
	display: block;
}

#dashboard-edit-leak .form-group-sources #leak_sources_loop li:hover .value{
	color: #d8d8d8;
}

#dashboard-edit-leak .form-group-sources #insert-new-source-wrapper a{
	color: #797979;
	text-decoration: underline;
}

#dashboard-edit-leak .form-group-sources #insert-new-source-wrapper a:hover{
	text-decoration: none;
	color: #6cd262;
}

#dashboard-edit-leak .form-group-sources #insert-new-source-wrapper .input-group{
}

#dashboard-edit-leak .quicktags-toolbar{
	border: 1px solid #d8d8d8;
}

#dashboard-edit-leak #post_content.form-control{
	border: 1px solid #d8d8d8;
	border-top: none;
}

#dashboard-edit-leak .picture-row{
	margin-bottom: 30px;
}

#dashboard-edit-leak .picture-row .picture-post_title{
	margin-bottom: 5px;
}

#dashboard-edit-leak .picture-row .picture-post_excerpt{
	margin-bottom: 5px;
}

#dashboard-edit-leak .picture-row .picture-submit-buttons{
	display: none;
}

#dashboard-edit-leak .picture-row .picture-delete{
	cursor: pointer;
	color: #ee5663;
}

#dashboard-edit-leak .picture-row .picture-delete:hover{
	color: #46a4da;
}

#dashboard-edit-leak .picture-row .picture-delete:active{
	color: #6cd262;
}

#dashboard-edit-leak .picture-row .picture-thumbnail .inner{
	position: relative;	
	cursor: pointer;
}

#dashboard-edit-leak .picture-row .picture-thumbnail .inner.hovered:before{
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(255,255,255,.8);
}

#dashboard-edit-leak .picture-row .picture-thumbnail .inner.hovered:after{
	content: "\e031";
	font-family: 'Glyphicons Halflings';
	display: block;
	height: 30px;
	width: 100%;
	line-height: 30px;
	font-size: 50px;
	margin-top: -15px;
	text-align: center;
	position: absolute;
	top: 50%;
	left: 0;
	color: #46a4da;
	background: transparent;
}

#dashboard-edit-leak .picture-row .picture-thumbnail .inner.hovered:active:after{
	color: #6cd262;
}

#dashboard-edit-leak .video-list{
	margin-right: -15px;
    margin-left: -15px;
}

#dashboard-edit-leak .video-list .video-item{
	max-width: 50%;
	padding-right: 15px;
	padding-left: 15px;
}

#dashboard-edit-leak .video-list .video-item .sl-video{
    position: relative;
    height: 0;
    overflow: hidden;
    padding-bottom: 56.5%;
    margin-bottom: 30px;
}

#dashboard-edit-leak .video-list .video-item .sl-video iframe,
#dashboard-edit-leak .video-list .video-item .sl-video object,
#dashboard-edit-leak .video-list .video-item .sl-video embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#dashboard-edit-leak .video-list .video-item .sl-video .sl-video-tools{
    position: absolute;
    top: 0;
    right: 0;
    text-align: center;
    height: 30px;
}

#dashboard-edit-leak .video-list .video-item .sl-video .sl-video-tools .handle{
    display: none;
    line-height: 30px;
    padding: 0 10px;
    color: #ee5663;
    background: #000;
    cursor: move;
}

#dashboard-edit-leak .video-list .video-item .sl-video .sl-video-tools a{
    display: none;
    line-height: 30px;
    padding: 0 10px;
    color: #fff;
    background: #ee5663;
}

#dashboard-edit-leak .video-list .video-item .sl-video .sl-video-tools a:hover{
    background: #46a4da;
}

#dashboard-edit-leak .video-list .video-item .sl-video:hover .sl-video-tools a{
    display: inline-block;
}

#dashboard-edit-leak .video-list .video-item.deleting{
	position: relative;
}

#dashboard-edit-leak .video-list .video-item.deleting:after{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	height: 100%;
	width: 100%;
	background: rgba(255,255,255,.8);
}

#leak-toolbar.toolbar{	
	margin-bottom: 30px;
}

#leak-toolbar.toolbar .message,
#leak-toolbar.toolbar .saving{
	color: #797979;
    font-size: 12px;
    line-height: 30px;
    text-decoration: none;
    text-transform: uppercase;
}

#leak-toolbar.toolbar .saving{
	display: none;
}

#leak-toolbar.toolbar.saving .saving{
	display: inline-block;
}

#leak-toolbar.toolbar.saving .message{
	display: none;
}

#leak-toolbar.toolbar .published-leak-disclaimer{
	margin-top: 10px;
}

/*
	PAGES
*/

#page-content{}

#page-content .page-content{
	margin: 10px 0;
	border-bottom: 1px solid #d8d8d8;
}

#page-content .page-modified{
	color: #797979;
	font-size: .8em;
	text-decoration: none;
	text-transform: uppercase;
}

/* 
	PAGE 404
*/

#page-error-404 .entry-content{
	margin-top: 10px;
}

@media(min-width: 768px)
{
	#page-error-404 .entry-content{
		min-height: 600px;
	}
}

.ui-helper-hidden-accessible{
	display: none;
}

.popover,
.popover-title,
.popover-content{
	border-radius: 0;
}

.popover-title{
	text-transform: uppercase;
}

#admin-bar{
	color: #fff;
	font-size: .9em;
    text-transform: uppercase;
	background-color: #ee5663;
	border-color: transparent;
	border-top: 1px solid rgba(0,0,0,.15);
}

#admin-bar a{
	color: #fff;
}

#admin-bar a:hover{
	color: rgba(255,255,255,.7);
}

#admin-bar .navbar-nav>.active>a, 
#admin-bar .navbar-nav>.active>a:focus, 
#admin-bar .navbar-nav>.active>a:hover,
#admin-bar .navbar-nav>.open>a, 
#admin-bar .navbar-nav>.open>a:focus,
#admin-bar .navbar-nav>.open>a:hover{
    color: #fff;
    border-color: transparent; 
    background-color: #ee5663;
}

#admin-bar .nav>li {    
    margin-right: 15px;
}

#admin-bar .nav>li>a {
    padding: 12px 0 15px;
    border-top: 4px solid transparent;
}

#admin-bar .nav>li>a:hover {
    border-top-color: #fff;
}

#admin-bar .dropdown-menu{	
	font-size: .9em;
	border: 1px solid rgba(0,0,0,.15);
	border-bottom: none;
    border-radius: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
	background-color: #ee5663;
}

#admin-bar .dropdown-menu>li>a:hover,
#admin-bar .dropdown-menu>li>a:focus{
	background-color: rgba(0,0,0,.15); 
}

#admin-bar .dropdown-menu .divider{
	background-color: rgba(0,0,0,.15);
}

@media (max-width: 768px){
	.navbar-toggle{
		margin-right: 15px;
	}
	#most-leaked-devices{
		margin-top: 40px;
	}
}

@media (max-width: 991px){
	.navbar-default .navbar-toggle{
		border-radius: 0;
		border-color: #fff;	
	}
	.navbar-default .navbar-toggle .icon-bar{
		background-color: #fff;
	}
	.navbar-default .navbar-toggle:focus, 
	.navbar-default .navbar-toggle:hover{
		border-color: rgba(255,255,255,.7);
		background-color: transparent;
	}
	.navbar-default .navbar-toggle:focus .icon-bar, 
	.navbar-default .navbar-toggle:hover .icon-bar{
		background-color: rgba(255,255,255,.7);
	}
	#top-contributor{
		margin-top: 40px;
	}
}

@media (min-width: 768px) and (max-width: 991px) {
    .navbar-collapse.collapse {
        display: none !important;
    }
    .navbar-collapse.collapse.in {
        display: block !important;
    }
    .navbar-header .collapse, .navbar-toggle {
        display:block !important;
        margin-right: 0;
    }
    .navbar-header {
        float:none;
    }
}