/* --------------------------------------- */
/* -- Basic styles ----------------------- */
/* --------------------------------------- */
.page-container {
    padding-left: 20px;
    padding-right: 20px;
}

.page-container-main {
    margin-top: 70px;
}

.text-strike {
    text-decoration: line-through;
}

/* -- Search Highlight ----------- */
.highlight {
    background-color: #ffd700;
}

.label-badge {
    border-radius: 8px;
    vertical-align: top;
}

.alert-link:link, .alert-link:visited, .alert-link:active {
    color: #cccccc;
    border-bottom: 1px dashed #cccccc;
    display: inline;
    text-decoration: none;
}

.alert-link:hover {
    color: #ffffff;
    border-bottom: 1px dashed #ffffff;
    text-decoration: none;
 }

.alert {
    margin-bottom: 6px;
}

.inline-edit-icon {
    color: #aaaaaa;
    font-size: small;
}

.inline-edit-icon:hover {
    color: #666666;
}

/* --------------------------------------- */
/* -- Datepicker ------------------------- */
/* --------------------------------------- */
#ui-datepicker-div {
    font-size: 12px;
}

.ui-state-highlight {
    border: 4px solid #ff942a !important;
}

.date-danger, .date-danger a {
    color: #F04124 !important;
    font-weight: bold !important;
}

.date-today, .date-today a {
    color: #008cba !important;
    font-weight: bold !important;
}

/* --------------------------------------- */
/* -- Scrollable Drop-down --------------- */
/* --------------------------------------- */
ul.scroll-menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -moz-overflow-scrolling: touch;
    -ms-overflow-scrolling: touch;
    -o-overflow-scrolling: touch;
    overflow-scrolling: touch;
    height: auto;
    max-height: 300px;
}
ul.scroll-menu-2x {
    max-height: 230px;
}

/* --------------------------------------- */
/* -- Drop-down styles ------------------- */
/* --------------------------------------- */
.dropdown-submenu {
    position:relative;
}
.dropdown-submenu>.dropdown-menu {
    top:0;
    left:100%;
    margin-top:-6px;
    margin-left:-1px;
    -webkit-border-radius:0 6px 6px 6px;
    -moz-border-radius:0 6px 6px 6px;
    border-radius:0 6px 6px 6px;
}
.dropdown-submenu:hover>.dropdown-menu {
    display:block;
}
.dropdown-submenu>a:after {
    display:block;
    content:" ";
    float:right;
    width:0;
    height:0;
    border-color:transparent;
    border-style:solid;
    border-width:5px 0 5px 5px;
    border-left-color:#cccccc;
    margin-top:5px;
    margin-right:-10px;
}
.dropdown-submenu:hover>a:after {
    border-left-color:#ffffff;
}
.dropdown-submenu.pull-left {
    float:none;
}
.dropdown-submenu.pull-left>.dropdown-menu {
    left:-100%;
    margin-left:10px;
    -webkit-border-radius:6px 0 6px 6px;
    -moz-border-radius:6px 0 6px 6px;
    border-radius:6px 0 6px 6px;
}

.dropdown-submenu-right {

}

.dropdown-submenu-right>.dropdown-menu {
    left: -180px;
    min-width: 190px;
}

.dropdown-header>a {
    color: #ffffff;
    font-size: 14px;
}

.dropdown-header-default {
    background-color: #aaaaaa;
    color: #ffffff;
}

.dropdown-header-danger  {
    background-color: #F04124;
    color: #ffffff;
}

.dropdown-header-warning  {
    background-color: #ffa500;
    color: #ffffff;
}

.dropdown-header-success  {
    background-color: #43ac6a;
    color: #ffffff;
}

.dropdown-header-primary  {
    background-color: #008cba;
    color: #ffffff;
}

.dropdown-header-info  {
    background-color: #3db5d8;
    color: #ffffff;
}

.dropdown-row-default {
    margin: 2px;
    border-left: 6px solid #aaaaaa;
}

.dropdown-row-danger {
    margin: 2px;
    border-left: 6px solid #F04124;
}

.dropdown-row-warning {
    margin: 2px;
    border-left: 6px solid #ffa500;
}

.dropdown-row-success {
    margin: 2px;
    border-left: 6px solid #43ac6a;
}

.dropdown-row-primary {
    margin: 2px;
    border-left: 6px solid #008cba;
}

.dropdown-row-info {
    margin: 2px;
    border-left: 6px solid #3db5d8;
}

.dropdown-row-description {
    display: block;
    font-size: 12px;
    line-height: 1.42857143;
    color: #999;
    white-space: nowrap;
}

/* --------------------------------------- */
/* -- Required label --------------------- */
/* --------------------------------------- */
label.required:after {
    content: "*";
}

/* --------------------------------------- */
/* -- Error label ------------------------ */
/* --------------------------------------- */
label.error:before {
    font-family: FontAwesome;
    content: "\F071 \0020";
    color: #dfb800;
}

label.error {
    color: #DF382C;
}

/* --------------------------------------- */
/* -- Content Block ---------------------- */
/* --------------------------------------- */
#content-block {
    padding-bottom: 30px;
    min-height: 480px;
}

#right-content-col {
    margin-top: 30px;
}

/* --------------------------------------- */
/* -- Copyright -------------------------- */
/* --------------------------------------- */
#copyright-footer {
    position: fixed;
    bottom: 10px;
    width: 100%;
    z-index: -100;
    /*margin-top: 30px;
    margin-bottom: 30px;*/
    text-align: center;
    color: #AAAAAA;
    text-shadow: 0px 2px 3px #FFFFFF;
}

/* --------------------------------------- */
/* -- Big Quote--------------------------- */
/* --------------------------------------- */
q:before {
    content: " ";
    background: url('../images/quote.png') top left no-repeat transparent;
    height: 1em;
    width: 52px;
    display: inline-block;
    font-size: 36px;
    font-weight: 300;
    line-height: 1em;
}

q:after {
    content: "";
}

/* --------------------------------------- */
/* -- Scroll to top ---------------------- */
/* --------------------------------------- */
#toTop {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 25px;
    font-size: 64px;
    opacity: 0.4;
    filter: alpha(opacity=40); /* For IE8 and earlier */
}

#toTop:hover {
    opacity: 0.8;
    filter: alpha(opacity=80); /* For IE8 and earlier */
}

/* --------------------------------------- */
/* -- Trash for drag & drop -------------- */
/* --------------------------------------- */
#trash {
    display: none;
    position: fixed;
    bottom: 0px;
    right: 25px;
    font-size: 64px;
    background-color: red;
    padding-top: 20px;
    padding-right: 15px;
    padding-left: 10px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #ffffff;
}

.trash-highlight {
    background-color: darkred !important;
}

/* --------------------------------------- */
/* -- Bubble Box ------------------------- */
/* --------------------------------------- */
.bubble {
    font-size: 14px;
    position: relative;
    width: 250px;
    height: auto;
    padding: 5px;
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 2px 2px 10px 0px #616161;
    -moz-box-shadow: 2px 2px 10px 0px #616161;
    box-shadow: 2px 2px 10px 0px #616161;

}

.bubble:after {
    content: "";
    position: absolute;
    border-style: solid;
    display: block;
    width: 0;
    z-index: 1;
}

.bubble-bottom:after {
    border-width: 15px 15px 0;
    bottom: -15px;
    left: 50%;
}

.bubble-bottom-left:after {
    border-width: 15px 15px 0;
    bottom: -15px;
    left: 10px;
}

.bubble-top:after {
    border-width: 0 15px 15px;
    top: -15px;
    left: 50%;
}

.bubble-top-left:after {
    border-width: 0 15px 15px;
    top: -15px;
    left: 25%;
}

.bubble-top-right:after {
    border-width: 0 15px 15px;
    top: -15px;
    right: 25%;
}

.bubble-right:after {
    border-width: 0 15px 15px;
    -webkit-transform: rotate(90deg);
    right: -22px;
    top: 50%;
}

.bubble-right-top:after {
    border-width: 0 15px 15px;
    -webkit-transform: rotate(90deg);
    right: -22px;
    top: 25%;
}

.bubble-left:after {
    border-width: 0 15px 15px;
    -webkit-transform: rotate(270deg);
    left: -22px;
    top: 50%;
}

.bubble-left-top:after {
    border-width: 0 15px 15px;
    -webkit-transform: rotate(270deg);
    left: -20px;
    top: 25%;
}

.bubble-default {
    background: #CCCCCC;
}

.bubble-default:after {
    border-color: #CCCCCC transparent;
}

.bubble-info {
    color: #FFFFFF;
    background: #008cba;
}

.bubble-info:after {
    border-color: #008cba transparent;
}

.bubble-success {
    color: #FFFFFF;
    background: #43ac6a;
}

.bubble-success:after {
    border-color: #43ac6a transparent;
}

.bubble-warning {
    color: #FFFFFF;
    background: #ffa500;
}

.bubble-warning:after {
    border-color: #ffa500 transparent;
}

.bubble-danger {
    color: #FFFFFF;
    background: #F04124;
}

.bubble-danger:after {
    border-color: #F04124 transparent;
}

/* --------------------------------------- */
/* -- Activity Panel --------------------- */
/* --------------------------------------- */
.activity-panel-title, .activity-panel-title:active, .activity-panel-title:visited {
    padding: 5px 10px;
    font-weight: bold;
    /*font-size: 15px;*/
    text-shadow: 0px 1px 1px #555555;
    background-color: transparent !important;
    color: #FFFFFF !important;
    border-bottom: 0px;
    text-decoration: none;
    /*color: #555555 !important;*/
    /*opacity: 0.8;*/
}
.activity-panel {
    width: 250px;
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}

.activity-panel-body {
    cursor: pointer;
    height: 100px;
    padding-top: 0px;
    padding-bottom: 3px;
    padding-left: 10px;
    padding-right: 10px;
}

.activity-panel-footer {
    cursor: pointer;
    padding: 2px 10px;
    font-size: 8pt;
    /*background-color: #000000;*/
    color: #FFFFFF;
    border-top: 0px;
    /*opacity: 0.3;*/
}

.organisation-headline {
    /*font-size: 25px;*/
    color: #AAAAAA;
    text-shadow: 0px 1px 2px #FFFFFF;
    margin-top: 15px;
}

.organisation-hr {
    margin-top: 0px;
    margin-bottom: 15px;
}

.simplecolorpicker {
    margin-left: 10px;
    width: 25px;
    border: 1px solid #ccc !important;
    border-radius: 4px;
}

/* --------------------------------------- */
/* -- Section Panel ---------------------- */
/* --------------------------------------- */
.section-panel {
    /*padding: 5px 10px;*/
    margin-bottom: 10px;
    border-radius: 4px;
    width: 100%;
}

.section-panel-title {
    padding: 5px 10px;
    font-weight: bold;
    color: white;
    text-shadow: 0px 1px 1px #555555;
    /*border-radius: 4px;*/
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
}

.section-panel-title a:link, .section-panel-title a:hover, .section-panel-title a:visited, .section-panel-title a:active {
    font-weight: bold;
    color: white;
    text-shadow: 0px 1px 1px #555555;
}

.section-panel-body {
    padding: 5px 0;
}

.section-panel-body-item, .section-panel-body-item-empty {
    padding: 3px 6px;
}

.section-panel-body-item a {
    color: #222222;
}

.section-panel-body-item-completed {
    padding: 3px 6px;
}

.section-panel-body-item-completed a {
    color: #222222;
    opacity: 0.4;
    text-decoration: line-through;
}

.section-panel-body-item-highlight {
    /*background-color: #fafad2 !important;*/
    background-color: #ffffff !important;
    /*border-radius: 4px !important;*/
    opacity: 0.8;
    border-left: 1px solid #999999;
    border-right: 1px solid #999999;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
}

.section-panel-body-item-highlight a {
    /*color: #ffffff !important;*/
}

/* --------------------------------------- */
/* -- Content Container ------------------ */
/* --------------------------------------- */
.content-headline {
    color: #AAAAAA;
    text-shadow: 0px 1px 2px #FFFFFF;
    margin-top: 15px;
    height: 42px;
}

.content-headline a {
    color: #AAAAAA;
}

/* --------------------------------------- */
/* -- Aloha text editor ------------------ */
/* --------------------------------------- */
.aloha-textarea {
    background-color: #FFFFFF !important;
    border-radius: 4px !important;
}

/* --------------------------------------- */
/* -- Close Icon ------------------------- */
/* --------------------------------------- */
.close-icon-style, .close-icon-style:active, .close-icon-style:visited {
    position: absolute;
    top:6px;
    left:20px;
    font-size: 20px;
    line-height: 18px;
    color: #d0d0d0;
    text-shadow: 0 1px 0 #ffffff;
    text-decoration: none;
}

.close-icon-style:hover {
    color: #b2b2b2;
    text-decoration: none;
    cursor: pointer;
}

/* --------------------------------------- */
/* -- Workspace Widget ------------------- */
/* --------------------------------------- */
.workspace-widget-block {
    color: #AAAAAA;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 20px 20px;
    margin-bottom: 20px;
    border-left: 15px solid;
}

.workspace-widget-headline {
    font-size: 23px;
    line-height: 32px;
    margin-bottom: 10px;
    margin-top: 0;
    /*border-bottom: 1px solid #dddddd;*/
}

.workspace-widget-body {
    /*background-color: white;
    border-radius: 10px;
    padding: 20px;
    border: 1px solid #dddddd;*/
}

.workspace-widget-block a:link, .workspace-widget-block a:visited , .workspace-widget-block a:active {
    color: #AAAAAA;
    text-decoration: underline;
}

.workspace-widget-block a:hover {
    color: #555555;
    text-decoration: underline;
}

table.workspace-widget-table
{
    border-collapse: separate;
    border-spacing:0 20px;
}

/* --------------------------------------- */
/* -- Application Window                -- */
/* --------------------------------------- */
.application-window {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    background-clip: padding-box;
    padding: 10px 10px;
    min-height: 480px;
    height: 90%;
    width: 80%;
    outline: 0;
    margin: 5% auto;
}

.application-window-bg {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}


/* --------------------------------------- */
/* -- Workspace Content Window          -- */
/* --------------------------------------- */
.workspace-window-content {
    position: relative;
    background-color: #fff;
    border: 1px solid #999;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 6px;
    -webkit-box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    box-shadow: 0 3px 9px rgba(0,0,0,0.5);
    background-clip: padding-box;
    padding: 20px 20px;
    min-height: 480px;
    outline: 0;
    margin: 5% auto;
    max-width: 1024px;
}

.workspace-window-bg {
    position: fixed;
    left: 0px;
    right: 0px;
    top: 0px;
    bottom: 0px;
}

/* --------------------------------------- */
/* -- Workspace Container Content Style -- */
/* --------------------------------------- */
.workspace-container-content-headline {
    margin-top: 10px;
    line-height: 32px;
    color: #aaaaaa;
    margin-bottom: 0px;
}

.workspace-container-content-item-title {
    font-weight: bold;
    color: #000080;
}

.workspace-container-content-item-description {
    max-height: 150px;
    overflow-x:hidden;
    overflow-y:auto;
}

.workspace-container-content-item-description p {
    margin: 0;
}

.workspace-container-content-body a {
    color: #999;
}

.workspace-container-content-item-description a {
    color: #439286;
    text-decoration: underline;
}

.workspace-container-content-item-description a:before {
    font-family: FontAwesome;
    font-size: small;
    content: "\f08e \0020";
}

.workspace-container-content-item-description a:hover {
    text-decoration: underline;
    color: #000080;
}

.workspace-container-content-item-info {
    font-weight: normal;
    color: #999999;
}

.workspace-container-content-item-info a {
    color: #999999;
    border-bottom: 1px dashed #999;
    display: inline;
}

.workspace-container-content-item-info a:hover {
    text-decoration: none;
    color: #439286;
}

.workspace-container-item-options {
    display: none;
    color: #bbbbbb;
}

.workspace-container-item-options a {
    color: #bbbbbb;
    border-bottom: 1px dashed #bbbbbb;
 }

.workspace-container-item-highlight[style] {
    background-color: #fafad2 !important;
}

.workspace-container-item-default {
}

.workspace-container-item-completed {
    opacity: 0.4;
}

.workspace-container-item-own {
    background-color: #CCFDFD !important;
}

.workspace-container-item-overdue {
    background-color: #f5df49 !important;
}

.workspace-container-item-today {
    background-color: #9ed3e4 !important;
}

.workspace-container-item-active-owner {
    color: #000080;
}

.workspace-container-item-active-owner a {
    color: #000080;
}

/* --------------------------------------- */
/* --- Widget box ------------------------ */
/* --------------------------------------- */
.widget-box-list {
    margin: 0;
    padding: 0;
    list-style: none;
    min-height: 200px;
    overflow: auto;
    position: relative;
}

.widget-box-list > li {
    position: relative;
    margin: 0 0 10px 0;
}

.widget-box-bar {
    width: 60px;
    height: 100px;
    line-height: 110px;
    float: left;
    position: relative;
    border-radius: 4px 0 0 4px;
    text-align: center;
    vertical-align: middle;
}

.widget-box-content {
    overflow: hidden;
    height: 100px;
    padding: 10px 10px 10px 16px;
    border-top: 1px solid #CCC;
    border-right: 1px solid #CCC;
    border-bottom: 1px solid #CCC;
    border-radius: 0 4px 4px 0;
    background-color: #ffffff;
    font-size: 11px;
}

.widget-box-arrow {
    position: absolute;
    top: 28px;
    right: -6px;
    border-left: 6px solid #555555;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.widget-box-content > h1 {
    font-size: 40px;
    font-weight: bold;
    margin: 0;
    /*cursor: pointer;*/
    display: inline-block;
}

.widget-box-content > h2 {
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    margin: 0 0 5px 0;
}

/* --------------------------------------- */
/* -- Section Panel ---------------------- */
/* --------------------------------------- */
.panel-canvas {
    display: none;
    z-index: 10000;
    position: absolute;
    right: 0px;
    width: 28%;
    min-width: 250px;
    max-width: 350px;
}
