html, body{
	height:100%;
	padding:0;
	margin:0;
}
body{
	font-family: "Open Sans",sans-serif;
	background: #f5f5f5 none repeat scroll 0 0;
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
	display: none !important;
}


.background-login{
	display:block;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	z-index: 1;
	background: #293863;
	background: -moz-linear-gradient(top, #293863 0%, #26163a 100%);
	background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#293863), color-stop(100%,#26163a));
	background: -webkit-linear-gradient(top, #293863 0%,#26163a 100%);
	background: -o-linear-gradient(top, #293863 0%,#26163a 100%);
	background: -ms-linear-gradient(top, #293863 0%,#26163a 100%);
	background: linear-gradient(to bottom, #293863 0%,#26163a 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#293863', endColorstr='#26163a',GradientType=0 );
}

.background-login:before{
	content: ' ';
	display:block;
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	left:0;
	-webkit-animation-name: image-fade;
	animation-name: image-fade;
	-webkit-animation-duration: 4s;
	animation-duration: 4s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
	background: url("../img/background2.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;
}
@-webkit-keyframes image-fade
{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 0.2;
	}
}
@keyframes image-fade
{
	0%{
		opacity: 0;
	}
	100%{
		opacity: 0.2;
	}
}
.authentication{
	margin: 150px 30px;
	-webkit-animation-name: authentication-fade;
	animation-name: authentication-fade;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}
@-webkit-keyframes authentication-fade
{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		margin-top: 240px;
	}
}
@keyframes authentication-fade
{
	0%{
		opacity: 0;
	}
	50%{
		opacity: 0;
	}
	100%{
		opacity: 1;
		margin-top: 240px;
	}
}


.authentication .panel{
	background-color: rgba(10,10,10,0.1);
	border: none;
}
.authentication .form-group{
	margin: 20px 0;
}
.authentication input{
	background-color: rgba(150,150,150,0.3);
	box-shadow: none;
	border: none;
	color: #ddd;
}
.authentication input:focus {
	background-color: rgba(150,150,150,0.3);
	box-shadow: none;
	border: none;
}
.authentication .checkbox label::before{
	background-color: rgba(150,150,150,0.3);
}
.authentication label{
	color: #fff;
	font-size: 11px;
	font-weight: 700;
}
.authentication hr{
	border:1px solid rgba(150,150,150,0.3);
}
.authentication a{
	font-weight: 700;
	text-decoration: none;
	color:rgba(210,210,210,0.8);
	border-bottom:none;
}
.authentication a:hover{
	border-bottom:1px solid #1161ee;
}
.authentication .btn{
	font-weight: 700;
}

.authentication .input-group-addon{
	background-color: rgba(150,150,150,0.3);
	border: none;
	color: #fff;
}
/*
.wrapper {
	min-height: 100%;
	height: auto !important;
	height: 100%;
	margin: 0 auto -105px;
}*/



footer, .push{
	height: 105px;
}
.top-bar{
	background: #399bff none repeat scroll 0 0;
	color: #fff;
	height: 60px;
	position: fixed;
	top: 0;
	width: 100%;
	z-index: 900;
}
.applogo .logo{
	font-family: "Montserrat",sans-serif;
}

.top-right .notifications{
	background: rgba(0, 0, 0, 0.4) none repeat scroll 0 0;
}
.main{
	-webkit-transition: all .1s linear;
	transition: all .1s linear;
}
.main.ng-enter{
	opacity: 0;
}
.main.ng-enter-active{
	opacity: 1;
}
.main.ng-leave{
	opacity: 1;
}
.main.ng-leave-active{
	opacity: 0;
}
.page-header{
	background: #fff none repeat scroll 0 0;
	border-bottom: medium none;
	margin: -20px -30px 30px;
	padding: 15px 30px;
}
.page-header .title{
	font-family: "Montserrat",sans-serif;
	padding: 0 0 6px;
}

fixbar > div {
	position: fixed;
	opacity: 0;
	visibility: collapse;
	top:60px;
	left: 250px;
	z-index: 99;
	padding: 20px 30px;
	width: 100%;
	background-color: #fff;
	border-bottom: 1px solid #ddd;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);

	/*
	-webkit-transition: opacity .15s ease-in-out;
	transition: opacity .15s ease-in-out;
	*/

}

@-webkit-keyframes fadeInFromNone {
	0% {
		display:none;
		opacity: 0;

	}

	1% {
		display: block ;
		opacity: 0;

	}

	100% {
		display: block ;
		opacity: 1;

	}
}
@keyframes fadeInFromNone {
	0% {
		display:none;
		opacity: 0;

	}

	1% {
		display: block ;
		opacity: 0;

	}

	100% {
		display: block ;
		opacity: 1;

	}
}

fixbar > div.fadein {
	visibility: visible;
	-webkit-animation-name: fadeInFromNone;
	animation-name: fadeInFromNone;
	animation-duration: 0.5s;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-fill-mode: forwards;
	animation-fill-mode: forwards;
}

fixbar > div.fadeout {
	visibility: collapse;
}

.sidebar{
	background: #3d464d none repeat scroll 0 0;
	font-family: "Montserrat",sans-serif;
	position: fixed;
	height: 100%;
}
.sidebar a{
	color: rgba(255, 255, 255, 0.6);
	display: block;
	margin-left: -20px;
	margin-right: -20px;
	padding: 9px 20px 9px 54px;
	position: relative;
}
.sidebar-panel{
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
	margin: 0 20px;
	padding: 15px 0;
}
.sidebar-panel li a:hover, .sidebar-panel li a.active, .sidebar-panel li a:focus{
	background: rgba(0, 0, 0, 0.2) none repeat scroll 0 0;
	color: #f2f2f2;
}
.sidebar-panel li a:hover .icon, .sidebar-panel li a.active .icon{
	color: #fff;
}
.sidebar-panel li ul{
	display: block;
	background: rgba(0, 0, 0, 0.1) none repeat scroll 0 0;
	margin: 0 -20px;
}
.sidebar-panel li ul li a{
	margin: 0;
}
.sidebar-panel li ul li a:hover{
	background: rgba(0, 0, 0, 0.08) none repeat scroll 0 0;
}
.sidebar-right{
	background: #3d464d none repeat scroll 0 0;
	color: rgba(255, 255, 255, 0.8);
	right: 0;
	position: fixed;
	top: 30px;
	width: 300px;
	z-index: 500;
	height: 100%;
	font-size: 12px;
}
.panel{
	background: #fff none repeat scroll 0 0;
}
.panel-body, .panel-heading{
	background-color: transparent;
	color: inherit;
	padding: 0;
}
.panel-body{
	margin: 10px 0;
}
.panel-footer{
	background-color: transparent;
	margin: 10px 0;
	padding: 10px 0;
}
.panel-tools{
	font-family: "Open Sans",sans-serif;
}

.panel-default .list-group li ul li {
  list-style-type: none;
	padding: 10px 0;
	border-bottom: none;
}

.gridster-item i{
	font-size: 1.5vw;
}
.gridster-item h3{
	font-size: 1.8vw;
}
thead{
	font-family: "Montserrat",sans-serif;
}
table a{
	color: #333;
}
.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td{
	line-height: 1.7;
	padding: 8px;
}
.table caption{
	font-family: 'Montserrat', sans-serif;
	color: #58666e;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 0 8px;
}
.pagination{
	margin: 0;
}
.pagination > .disabled > span, .pagination > .disabled > span:hover, .pagination > .disabled > span:focus, .pagination > .disabled > a, .pagination > .disabled > a:hover, .pagination > .disabled > a:focus{
	background-color: #fff;
	border: none;
	color: #777;
}
.pagination > li > a, .pagination > li > span{
	background: #f2f2f2 none repeat scroll 0 0;
	border: none;
	border-radius: 2px;
	box-sizing: border-box;
	color: #666;
	display: inline-block;
	margin-left: 2px;
	min-width: 1.5em;
	padding: 0.5em 0.8em;
	text-align: center;
	text-decoration: none !important;
}
.pagination > .active > a, .pagination > .active > span, .pagination > .active > a:hover, .pagination > .active > span:hover, .pagination > .active > a:focus, .pagination > .active > span:focus{
	background-color: #ddd;
	border: none;
	color: #fff;
	cursor: default;
	z-index: 2;
}
.breadcrumb{
	background-color: transparent;
	border-radius: none;
	margin-bottom: 5px;
	font-weight: 700;
}
.btn-default[disabled='disabled'] {
	background-color: #333;
	opacity: 0.3;
}
.btn .fa {
	font-size: 15px;
	margin-right: auto;
}
.btn {
	border-radius: 2px;
}
.btn-success{
	background-color: #399bff;
	border-color: #399bff;
	transition: background-color 0.5s ease;
}
.btn-success:hover, .btn-success:focus{
	background-color: #1161ee;
	border-color: #1161ee;
}


.datepicker .btn-default {
	background-color: #e4e4e4;
	color: black;
}

.datepicker .btn-info.active {
	background-color: #208eff;
}

.datepicker .btn-info.active .text-info {
	color: #fff;
}


td .radio, td .checkbox{
	display: inline-block;
	margin-bottom: 10px;
	margin-top: 0;
	min-height: 20px;
	position: relative;
}
.input-group-addon{
	padding: 0 12px;
	font-size: 12px;
	line-height: 1.6;
}
.nav-tabs{
	background: #e9e9e9 none repeat scroll 0 0;
	border-bottom: medium none;
}
.nav-tabs > li > a{
	margin-right: 0;
	color:#333;
}
.nav-tabs > li:hover > a{
	background-color: #ccc;
	border: none;
}
.nav-tabs > li.active > a, .nav-tabs > li.active > a:hover, .nav-tabs > li.active > a:focus{
	-moz-border-bottom-colors: none;
	-moz-border-left-colors: none;
	-moz-border-right-colors: none;
	-moz-border-top-colors: none;
	background-color: #fff;
	border-color: -moz-use-text-color -moz-use-text-color transparent;
	border-image: none;
	border-style: none;
	border-width: medium;
	color: #555;
	cursor: default;
}
.label-default{
	background: #399bff none repeat scroll 0 0;
}
.tab-content{
	background: #fff none repeat scroll 0 0;
	padding: 20px 0;
}
.ta-toolbar .btn{
	font-size: 13px;
	padding: 4px 8px;
}

.cursor, .cursor-link{
	cursor: pointer;
}
.cursor-link:active, .cursor-link:focus, .cursor-link:hover{
	background-color: #cfe8f5;
}
.tree-link-row{
	min-height: 30px;
}
.tree-slug{
	color: #333;
}
.tree-menu{
	color: #cc8c42;
	font-weight: 700;
}
.tree-link{
	color: dodgerblue;
	font-weight: 300;
}

.modal-content {
	-webkit-box-shadow: 0 5px 15px rgba(0,0,0,.5);
	box-shadow: 0 5px 15px rgba(0,0,0,.5);
}

.ngdialog.ngdialog-theme-media .ngdialog-content{
	-webkit-animation: ngdialog-flyin .5s;
	animation: ngdialog-flyin .5s;
	background: #fff;
	border-radius: 2px;
	color: #444;
	font-family: 'Helvetica',sans-serif;
	font-size: 1.05em;
	line-height: 1.5em;
	margin: 0 auto;
	max-width: 100%;
	padding: 1em;
	position: relative;
	width: 90%;
}
.filesTable a{
	cursor: pointer;
}

.slideToggle {
	clear: both;
	padding: 5px 0;
}

audio {
	width: 100%;
}


.drop-photos ul {
  min-height: 120px !important;
	list-style-type: none;
	margin: 0;
	padding: 0;
  }

.drop-photos ul > li {
	background-color: #ddd;
  border: none;
  color: #fff;
  float: left;
  font-weight: 700;

  margin: 5px;
  padding: 0;
  text-align: center;

	width: 120px;
	height: 120px;

	position: relative;
}

.drop-photos-title{
	font-family: 'Montserrat', sans-serif;
	color: #58666e;
	font-size: 13px;
	font-weight: bold;
	text-transform: uppercase;
	padding: 2px 0;
	margin-bottom: 5px;
	border-bottom: 1px solid #ddd;
}
.drop-photos-placehoder{
	margin: 0;
	padding: 0;
}
/*
.drop-photos-thumb{
	position: relative;
	display: block;
	float: left;
	width: 130px;
	height: 130px;
	font-size: 40px;
	color: dimgrey;
	margin: 2px;
	padding: 6px;
	background-color: #fff;
	-webkit-box-shadow: 0 1px 1px rgba(0,0,0,0.1);
	box-shadow: 0 1px 1px rgba(0,0,0,0.1);
}*/
.drop-photos-index {
	font-size: 10px;
	position: absolute;
	padding: 5px;
	color: #fff;
	top: 6px;
	left: 6px;
	z-index: 10;
	background-color: rgba(0,0,0,0.8);
}
.drop-photos-hover{
	cursor: move;
	position: absolute;
	width: 120px;
	height: 120px;
	background-color: black;
	opacity: 0;
	color: #fff;
	font-size: 26px;
	text-align: center;
	-webkit-transition: opacity 0.2s ease-in-out;
	transition: opacity 0.2s ease-in-out;
}
.drop-photos-thumb:hover .drop-photos-hover{
	opacity: 0.8;
}
.drop-photos-add {
	background-color: #337ab7 !important;
	cursor: pointer;
	font-size: 44px;
	line-height: 120px;
	text-align: center;
	-webkit-transition: background-color 0.2s linear;
	transition: background-color 0.2s linear;
}
.drop-photos-add:hover {
	opacity: 0.8;
	color: #fff;
	background-color: dodgerblue;
}
.drop-photos-legend {
	position: absolute;
	padding: 10px;
	color: #fff;
	bottom: 5px;
	left: 5px;
	z-index: 10;
	background-color: rgba(0,0,0,0.8);
}
.drop-photos-tool {
	font-size: 14px;
	cursor: pointer;
	background-color: black;
	padding: 4px;
	margin: 0;
}
.ta-editor a[href^="http:"]{
	position: relative;
	padding-left: 15px;
}
.ta-editor a[data-type="file"]{
	position: relative;
	padding-left: 15px;
}
.ta-editor a[data-type="file"]:before{
	content: "\f15b";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: red;
	padding-right: 1.5em;
	position: absolute;
	top: 1px;
	left: 0;
}
.ta-editor a[href^="http:"]:before{
	content: "\f08e";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	text-decoration: inherit;
	color: red;
	padding-right: 1.5em;
	position: absolute;
	top: 2px;
	left: 0;
}
.file-doc-preview{
	display: block;
	width: 100%;
	font-size: 45px;
	text-align: center;
	padding: 20px;
}
.uploadActive{
	border: 1px solid red;
}
.thumbnail{
	position: relative;
	min-height: 155px;
}
.thumbnail .edit-thumb {
	position: absolute;
	left: 0;
	bottom:8px;
	width: 100%;
	padding: 0 20px;
}
.thumbnail .edit-thumb .checkbox {
	margin: 0;
}

.thumbnail .edit-thumb-bt {
	cursor: pointer;
	padding: 4px 6px;
	font-size: 13px;
	color: #fff;
	border-radius: 3px;
	background-color: rgba(0, 0, 0,0.5);
}

.thumbnail a.folder{
	text-decoration: none;
	text-align: center;
}
.thumbnail a.folder span{
	width: 100%;
	display: block;
}
.thumbnail a.folder i{
	display: block;
	margin-top: 30px;
	font-size: 56px;
}
.thumbnail .grey-filter{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: #ccc;
	mix-blend-mode: difference;
}
.thumbnail-title{
	text-align: center;
	margin-bottom: 5px;
}
.thumbnail-upload{
	height: 155px;
	overflow: hidden;
}
.file-thumbnail{
	width: inherit;
	height: inherit;
	font-size: 50px;
	line-height: 140px;
	text-align: center;
}

.progress{
	height: 10px;
}

.infinite-bounce{
	animation: bounce 2s infinite;
	-webkit-animation: bounce 2s infinite;
	-moz-animation: bounce 2s infinite;
	-o-animation: bounce 2s infinite;
}

.affix-fixed {
	position: fixed;
}

.ng-aside.horizontal, .ng-aside.horizontal .modal-dialog .modal-content {
    padding: 10px;
}

@-webkit-keyframes bounce
{
	0%, 20%, 50%, 80%, 100%{
		-webkit-transform: translateY(0);
	}
	40%{
		-webkit-transform: translateY(-30px);
	}
	60%{
		-webkit-transform: translateY(-15px);
	}
}
@-moz-keyframes bounce
{
	0%, 20%, 50%, 80%, 100%{
		-moz-transform: translateY(0);
	}
	40%{
		-moz-transform: translateY(-30px);
	}
	60%{
		-moz-transform: translateY(-15px);
	}
}
@-o-keyframes bounce
{
	0%, 20%, 50%, 80%, 100%{
		-o-transform: translateY(0);
	}
	40%{
		-o-transform: translateY(-30px);
	}
	60%{
		-o-transform: translateY(-15px);
	}
}
@keyframes bounce
{
	0%, 20%, 50%, 80%, 100%{
		transform: translateY(0);
	}
	40%{
		transform: translateY(-30px);
	}
	60%{
		transform: translateY(-15px);
	}
}
