body {
	background-image: url('/assets/img/dark_bg.png');
	background-repeat: repeat;
}

a {
    cursor: pointer;
}

header {

}

header ul {
	margin: 0;
}

header ul li {
	padding: 23px 0;
}

header ul a {
	color: #cccccc;
	font-size: 14px;
	font-weight: bold;
	padding: 0 14px;
	letter-spacing: 0.2px;
}

header ul a:hover {
	color: #ffffff;
	text-decoration: none;
}

header .header-links {
	color: #6fcfe3;
	padding-left: 18px;
}

header .header-links:hover {
	color: #fff;
}

nav {
	background-color: #53b9cf;
	border-bottom: 4px solid #6fcfe3;
}

nav .developer {
	padding: 12px 20px 6px;
	background-color: #6fcfe3;
	color: #fff;
	font-size: 19px;
	margin-right: 20px;
}

nav .developer.dropdown {
    cursor: pointer;
}

nav .dropdown-link {
  color: #333;
}

nav .developer .caret {
    border-top: 5px solid #fff;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    margin-left: 10px;
    cursor: pointer;
}

nav .developer .dropdown-menu {
    border-radius: 0 0 4px 4px;
}

nav .developer-nav {
	padding: 14px 4px 6px;
}

nav .developer-nav a {
	margin: 6px 10px;
	padding: 5px 9px 3px;
	color: #ffffff;
	text-decoration: none;
	border-radius: 3px;
		-moz-border-radius: 3px;
		-webkit-border-radius: 3px;
    font-size: 16px;
    font-weight: bold;
}

nav .developer-nav a:hover {
	color: #d5f0f6;
	text-decoration: none;
}

nav .developer-nav a.active {
	background-color: #ffffff;
	color: #595959;
}

section {
	padding: 40px 0;
	background-color: #ffffff;
}

footer {
	background-image: url('/assets/img/dark_bg.png');
	background-repeat: repeat;
	color: #cccccc;
	font-size: 13px;
	padding: 20px 0;
}


/* panel used for forms */
.form-panel {
	background-color: #f5f5f5;
    padding: 30px;
    border-radius: 5px;

}
/*.form-panel-header {
	background-color: #53b9cf;
	border-bottom: 8px solid #6fcfe3;
	color: #ffffff;
	padding: 10px 30px;
}

.form-panel-header h2 {
	margin: 0;
}

.form-panel-body {
	padding: 20px 30px 20px;
}  */

.base-form-control {
    padding: 3px 12px;
    margin-right: 10px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    outline: 0;
}

.form-group .form-error {
    color: #fff;
    font-size: 12px;
    background-color: #EF7375;
    -webkit-border-radius: 0 0 4px 4px;
    -moz-border-radius: 0 0 4px 4px;
    border-radius: 0 0 4px 4px;
    padding: 3px 6px;
    position: relative;
    text-shadow: 1px 1px #ff0000;
    width: 100%;
    top: -4px;
    display: inline-block;
}

.form-group .form-error .icon-attention {
    background: url(/img/icon-attention.png) no-repeat center center;
    width: 12px; height: 12px;
    display: block;
    position: absolute;
    top: -20px;
    right: 6px;
    font-size: 0;
}

.form-search {
    position: relative;
}

.form-search .icon-search {
    position: absolute;
    top: 2px;
    right: 8px;
    width: 16px; height: 16px;
    color: #ccc;
    cursor: pointer;
    opacity: 1;
    font-size: 14px;
}

.form-search .close {
    position: absolute;
    top: 0;
    right: 8px;
    font-size: 14px;
}

.form-search .base-form-control {
    margin-right: 0;
    width: 220px;
}

#data-editor .form-search .base-form-control {
    width: 100%;
}

input.ng-invalid-required,
input.ng-invalid-unique,
textarea.ng-invalid-required,
select.ng-invalid-required,
.redactor_editor.ng-invalid-required {
    border-left: 6px solid #b94a48;
}

.base-form-control {
    padding: 3px 12px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 6px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

/* tables */
.table thead {
    background-color: #53b9cf;
    border-bottom: 4px solid #6fcfe3;
	color: #ffffff;
}

.table thead > tr > th {
	border: 0;
    font-weight: normal;
}

.table thead > tr > th.header {
    white-space: nowrap;
}

.table thead > tr > th.sortable{
    cursor: pointer;
    white-space: nowrap;
}

.table thead > tr > th.sort-asc:after{
    content: "\2191";
}

.table thead > tr > th.sort-desc:after{
    content: "\2193";
}

.table tbody > tr {
    height: 45px;
}

.table tbody > tr > th {
    background-color: #53b9cf;
    border: 0;
    font-weight: normal;
    border-bottom: 4px solid #6fcfe3;
    color: #ffffff;
}

.table tbody > tr > td {
	background-color: #f6fafa;
    border-left: 2px solid #fff;
    border-top: 2px solid #fff;
}

.table tbody > tr > td:first-child {
    border-left: 0;
}

.table tbody > tr.even > td {
    background-color: #eff3f3;
}

/* add new image icon */
.add-image
{
    position: relative;
    text-align: right;
}

.add-image .icon-plus-circle
{
    position: absolute;
    bottom: -10px;
    right: -10px;
    cursor: pointer;
    color: #6dcee2;
    font-size: 18px;
    opacity: 1;
    line-height: normal;
}

.add-image .icon-plus-circle:before
{
    border-radius: 9px;
    width: 18px;
    height: 18px;
    line-height: 18px;
    background: #fff;
}

/* container for icons that appear on ng-grid mouseover */
.row-icons span {
    cursor: pointer;
}

/* data editor */
.table td[contenteditable] {
    outline: none;
}
.table tbody > tr > td.required
{
    border-bottom: 1px solid red !important;
    outline: red solid thin !important;
}

.table tbody > tr > td:first-child.required {
    border-left: 1px solid red !important;
}

/* equal height */
.equal-height-container
{
    margin: 0 auto;
    overflow: hidden;
}

.equal-height-section, .equal-height-section.modal-section
{
    padding: 0 0 2000px 0;
    margin: 0 0 -2000px 0;
}

/* new banner */
.banner-new-box {
    padding-left: 24px !important;
}

.banner-new {
    background-color: #6dcee2;
    color: #fff;

    transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);

    display: inline-block;
    font-size: 12px;
    position: absolute;
    top: 5px; left: -37px;
    padding: 0 10px;
}

.modal-sidebar
{
    margin: 0;
    padding: 0;
}

.modal-sidebar > li > a
{
    color: #106DB0;
    display: block;
    margin: 0;
    padding: 6px 14px;
    border-bottom: 1px dotted #e5e5e5;
    text-align: right;
    font-weight: bold;
    white-space: nowrap;

    -webkit-border-radius: 4px 0 0 4px;
    -moz-border-radius: 4px 0 0 4px;
    border-radius: 4px 0 0 4px;
}

.modal-sidebar > .active > a,  .modal-sidebar > .active > a:hover
{
    background-color: #53b9cf;
    color: #fff;
}

.modal-section
{
    border-left: 5px solid #53b9cf;
    padding: 10px;
}

.modal-section-inner
{
    padding-left: 20px;
    padding-top: 10px;
}

.modal-section-inner h3 {
    margin-top: 10px;
}

.modal div.border-bottom
{
    border-bottom: 1px solid #e5edef;
    padding: 8px 0;
}

.modal.overflow-hidden {
    overflow: hidden;
}

.blue {
    color: #3a87ad;
}

.red {
    color: #ff3333;
   /* color: #b94a48;*/
}

.yellow {
    color: #e2e257;
}

.green {
    color: #80b500;
}

.nowrap {
    white-space: nowrap;
}

.per-page {
    margin-bottom: 10px;
}

.list-view
{
    margin: 5px 0 40px;
    padding: 0;
    list-style-type: none;
}

.list-view li
{
    margin: 0;
    padding: 7px 20px 5px;
}

.list-view li a
{
    color: #0087CF;
}

.list-view .even, table .grey
{
    background-color: #f6fafa;
}

.list-view a.link-icon
{
    color: #ccc;
    display: inline-block;
}

.list-view a.link-icon:hover
{
    color: #555;
    text-decoration: none;
}

/* makes text in placeholder invisible on field focus */
::-webkit-input-placeholder {
    color: #ccc;
    font-style: italic;
}

:-moz-placeholder { /* Firefox 18- */
    color: #ccc;
    font-style: italic;
}

::-moz-placeholder {  /* Firefox 19+ */
    color: #ccc;
    font-style: italic;
}

:-ms-input-placeholder {
    color: #ccc;
    font-style: italic;
}

:focus::-webkit-input-placeholder{
    color: transparent;
}

:focus::-moz-placeholder{
    color: transparent;
}

:focus:-ms-input-placeholder {
    color: transparent;
}

.spinner {
    position: relative;
    min-height: 300px;
}

.spinner img {
    position: fixed;
    top:50%;
    left:50%;
}

.alert.warning {
    color: #ADA23A;
    background-color: #F7F7D9;
    border-color: #F1F0BC;
}

#multiEditForm input, #multiEditForm select {
    height: 28px;
}

#multiEditForm input[type="checkbox"] {
    height: auto;
}
