/* reset */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


/* general */
body {
    background-color: #FAFAFA;
    font-family: Calibri, Verdana, Helvetica, sans-serif;
}

pre code {
    display: block;
    margin: 10px 0;
    padding: 0 15px 15px 10px;
}

code {
    display: inline-block;
    *display: inline;
    padding: 4px 5px;
    background-color: #FAFAFA;
}

h1 {
    padding-right: 30px;
    display: inline-block;
    color: #FAFAFA;
    vertical-align: top;
}

h1 span {
    color: #3498db;
}

.page-side-navigation h2 {
    color: #FAFAFA;
}

.page-side-navigation h2 span {
    color: #3498db;
}

form textarea,
form select,
form input[type="text"],
form input[type="password"],
form input[type="date"],
form input[type="datetime-local"],
form input[type="number"],
form input[type="email"] {
    padding: 10px 15px;
    border: #EFEFEF solid 1px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    color: #333;
    width: 100%;
    max-width: 350px;
}

form input[type="date"] {
    padding: 7px 15px;
}

form input[type="checkbox"],
form input[type="radio"] {
    width: auto;
}

form select:disabled,
form input:disabled,
form textarea:disabled {
    padding: 9px 15px;
}

form textarea {
    min-width: 100%;
    width: 100%;
    max-width: 100%;
    min-height: 300px;
    height: 300px;
    max-height: 400px;
}

input[type="submit"],
input[type="button"],
label[for="search"],
button,
a {
    cursor: pointer;
}

input[type="submit"]:disabled,
input[type="button"]:disabled,
button:disabled {
    opacity: 0.3;
}

table {
    border: none;
    width: 100%;
}

a {
    color: #2980b9;
    text-decoration: none;
}

a:hover,
a:focus {
    color: #3498db;
    text-decoration: underline;
}

iframe {
    border: none;
    width: 100%;
    height: 100%;
}

.action-assignme {
    font-style: italic;
}


/* page */
.page-wrapper {
    margin: 0 auto;
}

.page-wrapper.expanded,
.page-wrapper.minified {
    float: right;
    padding: 20px;
}

.page-wrapper.expanded {
    width: calc(100% - 52px);
}
.page-wrapper.minified {
    width: calc(100% - 250px);
}


.page-header {
    padding: 10px 20px;
    background-color: #2c3e50;
    color: #FFF;
}

.page-header:after {
    clear: both;
    content: "";
    display: block;
}

.page.is-tool .page-header {
    padding: 0 10px;
    background-color: #FFFFFF;
    border-bottom: #F1F1F1 solid 1px;
    color: #333;
}

.page.is-tool .page-body {
    padding: 0;
}

.page-body:after {
    clear: both;
    content: "";
    display: block;
}

.page-side-navigation {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    float: left;
    background-color: #2c3e50;
    width: 250px;
}

.page-side-navigation h1 {
    display: block;
    padding: 20px 10px 20px 0;
    text-align: center;
}

.page-side-navigation h2 {
    display: block;
    padding: 15px 0 40px 0;
    text-align: center;
}

.page-side-navigation ol {
    list-style: none;
}
.page-side-navigation ol li {
    display: block;
}
.page-side-navigation ol li a {
    position: relative;
    display: block;
    padding: 10px 15px 10px 80px;
    border-left: #2c3e50 solid 2px;
    color: #FAFAFA;
    text-decoration: none;
}
.page-side-navigation ol li a svg {
    position: absolute;
    top: 50%;
    left: 40px;
    opacity: 0.5;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.page-side-navigation ol li a svg.small {
    left: 43px;
}

.page-side-navigation ol li.active a,
.page-side-navigation ol li a:hover {
    border-left-color: #3498db;
}

.page-side-navigation ol li.active a svg,
.page-side-navigation ol li a:hover svg {
    opacity: 1;
}

.page-side-navigation.minified {
    width: auto;
}
.page-side-navigation.minified h1{
    display: none;
}
.page-side-navigation.minified ol li a span {
    display: none;
}
.page-side-navigation.minified ol li a {
    padding: 10px 15px;
}
.page-side-navigation.minified ol li a svg {
    position: relative;
    top: 6px;
    left: auto;
}

.page-side-navigation-action {
    position: absolute;
    bottom: 0;
    left: 0;
    display: block;
    padding: 10px;
    color: #FAFAFA;
    cursor: pointer;
    font-size: 20px;
}


/* nav */
.nav-primary:after,
.nav-tool:after {
    clear: both;
    content: "";
    display: block;
}

.nav-tool {
    display: block;
    float: right;
    vertical-align: top;
}

.nav-primary  {
    display: inline-block;
    vertical-align: top;
}

.nav-primary li,
.nav-tool li {
    display: block;
    float: left;
}

.nav-primary li a,
.nav-tool li a {
    padding: 10px 15px;
    display: block;
    text-decoration: none;
}

.nav-primary li a {
    color: #FAFAFA;
}

.nav-primary li a:hover,
.nav-primary li a:focus {
    background-color: #34495e;
    color: #FFFFFF;
}

.nav-tool li a {
    color: #3498db;
    -webkit-transition: color 0.4s;
    -moz-transition: color 0.4s;
    transition: color 0.4s;
}

.nav-tool li a:hover,
.nav-tool li a:focus {
    color: #2c3e50;
}

.nav-sidebar li {
    display: block;
    list-style: none;
}

.nav-sidebar li a {
    display: block;
    padding: 10px 15px;
    border-bottom: #EFEFEF solid 1px;
}

.nav-sidebar li a:hover,
.nav-sidebar li a:focus {
    text-decoration: none;
}


/* sidebar */
.box-error:empty,
.box-success:empty {
    display: none;
}

.box-error {
    margin: 10px;
    padding: 10px 15px;
    border-left: #d11010 solid 2px;
    color: #d11010;
}

.box-success {
    margin: 10px;
    padding: 10px 15px;
    border-left: #009900 solid 2px;
    color: #009900;
}

.box-sidebar {
    display: block;
    float: left;
    width: 35%;
}

.box-sidebar.is-smaller {
    position: relative;
    width: 25%;
}

.box-sidebar.is-smaller .box-gpsring {
    top: 0;
    left: 0;
}

.box-sidebar h3 {
    position: relative;
    margin-top: 10px;
    margin-bottom: -10px;
    padding: 10px 10px;
    background-color: #34495e;
    color: #FAFAFA;
    font-weight: normal;
    text-align: center;
}

.box-sidebar h3 svg {
    position: absolute;
    left: 10px;
    top: 50%;
    float: left;
    opacity: 0.4;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box-sidebar .box-sidebar-content {
    margin-top: 10px;
    padding: 10px;
    background-color: #FFF;
    border-bottom: #EFEFEF solid 1px;
    border-right: #EFEFEF solid 1px;
}

.box-sidebar .box-sidebar-content:after {
    clear: both;
    content: "";
    display: block;
}

.box-sidebar .box-sidebar-content h2 {
    color: #333;
    font-size: 18px;
}

.box-sidebar-nav {
    list-style: none;
}

.box-sidebar-nav li a {
    display: block;
    padding: 10px 15px;
    color: #F1F1F1;
}

.box-sidebar-nav li a:hover {
    color: #3498db;
    text-decoration: none;
}

.box-large-outer {
    display: block;
    float: left;
    width: 50%;
}

.box-large {
    margin: 0 10px 10px 10px;
    background-color: #FFF;
    overflow: hidden;
    border-right: #EFEFEF solid 1px;
    border-bottom: #EFEFEF solid 1px;
}

.box-large .box-large-content {
    padding: 10px;
}

.box-large .box-large-content:after {
    content: "";
    clear: both;
    display: block;
}

.box-large .box-large-content.border-top {
    border-top: #EFEFEF solid 1px;
}

.box-large .box-large-content select,
.box-large .box-large-content button,
.box-large .box-large-content input[type="submit"],
.box-sidebar-content button {
    padding: 10px 15px;
    color: #333;
    background-color: #FFF;
    border: #EFEFEF solid 1px;
}

.box-sidebar-content button {
    margin: 10px auto 0 auto;
}

.box-large .box-large-content.border-top select {
    width: auto;
}

.box-large .box-large-content select {
    padding: 9px 15px;
}

.box-large .box-large-content-inner {
    padding: 20px;
}

.box-large .box-large-item {
    display: block;
    padding: 10px;
    float: left;
    width: 50%;
}

.box-large .box-large-item img {
    max-height: 200px;
    max-width: 100%;
}

.box-large .box-large-item object {
    height: 510px;
}

.box-large .box-large-item.is-upload img {
    cursor: pointer;
}

.box-large #work_payment_netto, .box-large #work_payment_brutto {
    width: 100px;
}

.box-large .box-large-item.is-text {
    padding-bottom: 20px;
    padding-left: 15px;
    color: #999;
    cursor: default;
}

.box-large .box-large-item.is-text .fa {
    margin-right: 10px;
    color: #3498db;
}

.box-large .box-large-item .label {
    opacity: 0.5;
}
.box-large .box-large-item label .fa {
    color: #1b6d85;
    cursor: pointer;
}

.box-large .box-large-item.is-large {
    float: none;
    width: auto;
}

.box-large .box-trash {
    float: right;
    color: #999;
    cursor: pointer;
}

.box-large .box-status-label {
    padding: 10px;
    font-size: 18px;
    text-transform: uppercase;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.box-large.blue .box-status-label,
.box-large.blue .box-status-bar {
    color: #0066cc;
    border-color: #0066cc;
}

.box-large.green .box-status-label,
.box-large.green .box-status-bar {
    color: #009900;
    border-color: #009900;
}

.box-large.orange .box-status-label,
.box-large.orange .box-status-bar {
    color: #f8bb00;
    border-color: #f8bb00;
}

.box-large.black .box-status-label,
.box-large.black .box-status-bar {
    color: #333;
    border-color: #333;
}

.box-large.red .box-status-label,
.box-large.red .box-status-bar {
    color: #d11010;
    border-color: #d11010;
}

.box-large .box-status-label .fa,
.box-large .box-status-label svg {
    margin-right: 5px;
}

.box-large .box-large-item .label {
    display: block;
    color: #999;
    font-size: 14px;
    text-transform: uppercase;
}

.box-large .box-large-item .label.icon {
    position: relative;
    top: 2px;
    margin-right: 5px;
    float: left;
}

.box-large .box-large-item .value {
    display: block;
    color: #333333;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.box-large .box-large-item .value.is-bigger {
    font-size: 18px;
}

.box-status-bar {
    border-top: #4c4d4d solid 3px;
}

.box-color {
    display: inline-block;
    border: #FAFAFA solid 1px;
    height: 10px;
    width: 10px;
}

.list-tasks-entry.is-template {
    display: none;
}

.list-tasks-entry {
    border-top: #efefef solid 1px;
    border-bottom: #efefef solid 1px;
}

.list-tasks-entry:after,
.list-tasks-entry:before {
    content: "";
    clear: both;
    display: block;
}


/* main content */
.box-content {
    float: right;
    padding: 10px;
    width: 63%;
}

.box-content.is-larger {
    width: 73%;
}

.box-content.is-fullsize {
    float: none;
    width: auto;
}

.box-content h3,
.box-content h2 {
    margin-top: 10px;
    margin-bottom: 5px;
}

.box-day {
    display: block;
    margin: 10px auto;
}

.box-day .box-day-label {
    color: #0f192a;
    font-size: 18px;
    text-align: center;
}

.box-day .box-day-date {
    text-align: center;
}

/* list */
.list-large {
    list-style: none;
    width: 100%;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    -webkit-box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.2);
    -moz-box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.2);
    box-shadow: 3px 3px 15px 0 rgba(0,0,0,0.2);
    overflow: hidden;
}
.list-large li {
    position: relative;
    display: block;
}
.list-large li:after,
.list-large li > a:after {
    content: "";
    clear: both;
    display: block;
}
.list-large li > a {
    display: block;
    padding: 10px 15px;
    background-color: #FFFFFF;
    border-bottom: #EFEFEF solid 1px;
    color: #333333;
    -webkit-transition: background-color 0.4s, border-color 0.4s;
    -moz-transition: background-color 0.4s, border-color 0.4s;
    transition: background-color 0.4s, border-color 0.4s;
}
.list-large li > a:hover {
    text-decoration: none;
}
.list-large li:hover > a {
    background-color: #F1F1F1;
    border-bottom-color: #DDDDDD;
}
.list-large li:hover .list-large-actions .btn {
    border-right-color: #DDDDDD;
}
.list-large li .list-large-title,
.list-large li .list-large-content {
    display: block;
    float: left;
    width: 20%;
}
.list-large li .list-large-content {
    padding: 0 10px;
    color: #999988;
}
.list-large li .list-large-content.size-s {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 15%;
}
.list-large li .list-large-content.size-m {
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 20%;
}
.list-large li .list-large-content.size-xl {
    padding: 10px 10px;
    float: none;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
    width: 100%;
}
.list-large li .list-large-actions {
    display: inline-block;
    *display: inline;
    position: absolute;
    top: 2px;
    right: 0;
    text-align: right;
}
.list-large li .list-large-actions .btn {
    background: none;
    border: none;
    border-right: #EFEFEF solid 1px;
    color: #999999;
    -webkit-transition: color 0.4s, border-color 0.4s;
    -moz-transition: color 0.4s, border-color 0.4s;
    transition: color 0.4s, border-color 0.4s;
}
.list-large li .list-large-actions .btn:hover {
    color: #3498db;
}

@media all and (max-width: 950px) {
    .list-large li .list-large-title,
    .list-large li .list-large-content,
    .list-large li .list-large-content.size-m,
    .list-large li .list-large-content.size-s {
        display: block;
        float: none;
        width: calc(100% - 100px);
    }
}
@media all and (max-width: 350px) {
    .list-large li .list-large-title,
    .list-large li .list-large-content,
    .list-large li .list-large-content.size-m,
    .list-large li .list-large-content.size-s {
        width: auto;
    }
    .list-large li .list-large-actions {
        margin-bottom: 20px;
        display: block;
        position: relative;
        top: auto;
        right: auto;
        text-align: right;
        width: auto;
    }
    .list-large li .list-large-actions .btn {
        background-color: #FFFFFF;
    }
}

/* user status */
.box-user-status,
.box-contact .box-contact-entry .box-user-status {
    display: inline-block;
    position: relative;
    top: -1px;
    float: none;
    height: 7px;
    width: 7px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    vertical-align: middle;
}
.box-user-status.online {
    background-color: green;
}
.box-user-status.offline {
    background-color: #999999;
}

/* email */
.box-unread {
    margin: 5px 0;
    display: block;
    float: right;
    background-color: #e67e22;
    height: 10px;
    width: 10px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

/* contact */
.box-contact:after {
    content: "";
    clear: both;
    display: block;
}

.box-contact .box-contact-avatar {
    margin-right: 10px;
    display: block;
    float: left;
    background-color: #FAFAFA;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 70px;
    width: 70px;
}

.box-contact .box-contact-job {
    margin-top: 10px;
    display: block;
}

.box-contact .box-contact-job .fa {
    margin-right: 3px;
    color: #2980b9;
}

.box-contact .box-contact-entry {
    padding: 10px 5px;
    border-bottom: #FAFAFA solid 1px;
}

.box-contact .box-contact-entry:last-child {
    border-bottom: none;
}

.box-contact .box-contact-entry:after {
    clear: both;
    content: "";
    display: block;
}

.box-contact .box-contact-entry iframe {
    border: none;
    width: 100%;
    min-height: 200px;
}

.box-contact .box-contact-entry label {
    display: block;
    padding-right: 10px;
    float: left;
    color: #999;
    text-align: right;
    width: 30%;
}

.box-contact .box-contact-entry span {
    display: block;
    float: right;
    width: 70%;
}

.box-contact .box-contact-entry.label-large label {
    text-align: left;
    width: 70%;
}
.box-contact .box-contact-entry.label-large span {
    width: 30%;
}


.box-contact .box-contact-entry span.fa {
    width: auto;
}

.box-contact .box-contact-entry span.box-label {
    float: left;
    min-width: 70%;
    max-width: 100%;
}


/* animations */
@keyframes pulsate {
    0% {
        transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

@-moz-keyframes pulsate {
    0% {
        -moz-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -moz-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}

@-webkit-keyframes pulsate {
    0% {
        -webkit-transform: scale(0.1, 0.1);
        opacity: 0.0;
    }
    50% {
        opacity: 1.0;
    }
    100% {
        -webkit-transform: scale(1.2, 1.2);
        opacity: 0.0;
    }
}


/* timeline */
.box-timeline-form .box-timeline-form-toolbar {
    background-color: #34495e;
}

.box-timeline-list {
    position: relative;
}

.box-timeline-list .box-timeline-list-line {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 20px;
    width: 1px;
    border-left: #EFEFEF solid 1px;
    z-index: 3;
}

.box-timeline-list .box-timeline-entry {
    margin-top: 20px;
    display: block;
    border-right: #EFEFEF solid 1px;
    color: #000;
    text-decoration: none;
}

.box-timeline-list .box-timeline-entry:after {
    clear: both;
    content: "";
    display: block;
}

.box-timeline-list .box-timeline-entry-icon {
    position: relative;
    display: block;
    float: left;
    background-color: #FFF;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: #EFEFEF solid 1px;
    text-align: center;
    line-height: 40px;
    height: 40px;
    width: 40px;
    z-index: 10;
}

.box-timeline-list .box-timeline-entry-icon:after {
    clear: both;
    content: "";
    display: block;
}

.box-timeline-list .box-timeline-entry-info,
.box-timeline-list .box-timeline-entry-description {
    display: block;
    padding: 10px;
    float: right;
    background-color: #FFF;
    width: 90%;
}

.box-timeline-list .box-timeline-entry-info-avatar {
    margin-right: 10px;
    display: block;
    float: left;
    background-color: #FAFAFA;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 30px;
    width: 30px;
}

.box-timeline-list .box-timeline-entry-info {
    border-bottom: #FAFAFA solid 1px;
}

.box-timeline-list .box-timeline-entry-description {
    color: #999;
    border-bottom: #EFEFEF solid 1px;
}

.box-timeline-list .box-timeline-entry-info-date,
.box-timeline-list .box-timeline-entry-description-additional {
    color: #999;
    float: right;
    font-size: 12px;
}

.box-timeline-list .box-timeline-entry-info h3 {
    margin-top: 5px;
    font-size: 16px;
    font-weight: normal;
}

/* dashboard */
.box-dashboard {
    display: block;
    padding: 20px;
    background-color: #FFF;
    border-right: #EFEFEF solid 1px;
    border-bottom: #EFEFEF solid 1px;
}

.box-stats-outer {
    padding: 10px;
    float: left;
    width: 50%;
}

.box-stats {
    position: relative;
    text-align: center;
    text-decoration: none;
    overflow: hidden;
}

.box-stats:hover,
.box-stats:focus {
    text-decoration: none;
}

.box-stats > svg {
    position: absolute;
    top: -10px;
    left: -10px;
    font-size: 70px;
    opacity: 0.1;
    transform: rotate(-20deg);
}

.box-stats-label {
    opacity: 0.8;
    font-size: 16px;
    -webkit-transition: opacity 0.4s;
    -moz-transition: opacity 0.4s;
    transition: opacity 0.4s;
}

.box-stats:hover .box-stats-label,
.box-stats:focus .box-stats-label {
    opacity: 1;
}

.box-stats-value {
    font-size: 20px;
}

/* tasks */
.box-tasks-projectname {
    margin-top: -4px;
    margin-bottom: 5px;
    color: #999;
    font-size: 12px;
    text-decoration: none;
}


.box-task-boards {
    padding: 0 0 20px 0;
    width: 100%;
    max-width: 100%;
    white-space: nowrap;
    overflow-x: auto;
}

.box-task-boards .box-task-board {
    position: relative;
    display: inline-block;
    margin-right: 20px;
    background-color: #FFF;
    border-right: #EFEFEF solid 1px;
    border-bottom: #EFEFEF solid 1px;
    width: 250px;
    height: 600px;
    max-height: 600px;
    overflow-y: auto;
}

.box-task-boards .box-task-board.is-new {
    background-color: #FAFAFA;
    border: dotted 2px #999;
    color: #999;
    cursor: pointer;
}

.box-task-boards .box-task-board.is-new .box-task-board-add {
    position: relative;
    top: 45%;
    font-size: 18px;
    text-align: center;
}

.box-task-boards .box-task-board.is-new:focus .box-task-board-add,
.box-task-boards .box-task-board.is-new:hover .box-task-board-add {
    color: #2980b9;
}

.box-task-boards .box-task-board h3 {
    padding: 10px 10px;
    background-color: #34495e;
    color: #FAFAFA;
    font-weight: normal;
    text-align: center;
}

.box-task-boards .box-task-board-amount {
    position: absolute;
    top: 0;
    right: 0;
    padding: 10px 10px;
    color: #FAFAFA;
}

.box-task-boards .box-task-board-entry {
    display: block;
    padding: 10px;
    border-bottom: #FAFAFA solid 1px;
    color: #333;
    text-decoration: none;
}

.box-task-boards .box-task-board-entry h4 {
    margin-bottom: 5px;
    font-size: 18px;
}

.box-task-boards .box-task-board-entry-type {
    float: right;
    color: #2980b9;
}

.box-task-boards .box-task-board-entry-date {
    margin-top: 10px;
    color: #999;
    font-size: 12px;
}

.box-task-boards .box-task-board-entry-date .fa {
    margin-right: 5px;
}

.box-task-boards .box-task-board-entry-date .fa.fa-check {
    color: green;
}

.box-task-boards .box-task-board-entry-date .fa.fa-times {
    color: red;
}


/* box */
.box-icon {
    margin: 0 auto;
    background-color: #2980b9;
    color: #FAFAFA;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    line-height: 30px;
    text-align: center;
    height: 30px;
    width: 30px;
}

.box-icon .fa {
    margin: 0 !important;
    padding: 0;
}

.box-label {
    margin: 5px;
    padding: 7px;
    display: inline-block;
    color: #333;
    cursor: default;
    border: #EFEFEF solid 1px;
    line-height: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

.box-label .box-label-circle,
.box-contact .box-contact-entry .box-label .box-label-circle {
    margin-right: 5px;
    display: block;
    float: left;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    vertical-align: middle;
    height: 10px;
    width: 10px;
}

.box-calendar {
    margin-bottom: 20px;
}
.box-calendar-switch {
    margin-top: 10px;
    margin-bottom: 5px;
    font-size: 20px;
    line-height: 29px;
}

.box-timer-state {
    position: relative;
    text-align: center;
}

.box-timer-state-box {
    display: block;
    background-color: #FFF;
    float: left;
    width: 25%;
    margin: 5px;
    box-shadow: 0 0 10px 0 #ececec;
}

.box-timer-state-box input {
    padding: 10px 15px;
    display: block;
    border: none;
    color: #333;
    font-size: 30px;
    text-align: center;
    outline: none;
    width: 100%;
}

.box-timer-state-box label {
    padding: 10px 15px;
    display: block;
    background-color: #3498db;
    color: #FFF;
    text-align: center;
}

.box-timer-state-actions a {
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 27px;
    text-align: center;
}

.box-timer-state .box-gpsring {
    position: absolute;
    top: -3px;
    left: -3px;
}

.box-gpsring {
    border: 3px solid #999;
    -webkit-border-radius: 30px;
    height: 18px;
    width: 18px;
    position: absolute;
    left: 20px;
    top: 214px;
    -webkit-animation: pulsate 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: 0.0
}

/* popup */
.box-popup-outer {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1000;
}

.box-popup-outer#requireInboxKey input {
    margin-top: 10px;
}

.box-popup {
    position: relative;
    margin: 5% auto;
    box-shadow: 0 0 10px 0 #333;
    width: 400px;
    max-width: 95%;
}

.box-popup #closePopup {
    position: absolute;
    top: 0;
    right: 0;
    display: block;
    padding: 5px 10px;
    cursor: pointer;
}

.box-popup-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 40px !important;
    opacity: 0.4;
}

.box-popup-content {
    display: block;
    padding: 20px 20px 20px 25px;
    background-color: #FFF;
}

.box-popup-content .box-form-item {
    margin-top: 10px;
}


/* form */
.form.form-login {
    padding: 100px 20px;
    background-color: #1E1E1E;
    border-bottom: #EFEFEF solid 1px;
}
.form.form-login .form-item {
    margin: 0 auto;
    padding: 0;
    width: 400px;
    max-width: 100%;
}
.form.form-login .form-item label {
    float: none;
    display: block;
    text-align: left;
    width: 100%;
}
.form.form-login .form-item input[type="text"],
.form.form-login .form-item input[type="email"],
.form.form-login .form-item input[type="password"] {
    float: none;
    width: 100%;
    max-width: 100%;
}
.form.form-login .form-item.is-buttons input[type="submit"] {
    margin: 20px 10px;
    font-size: 14px;
    width: 150px;
    max-width: 100%;
}

.form .form-item {
    padding-top: 10px;
    background-color: #FFF;
}

.form .form-item:after {
    clear: both;
    content: "";
    display: block;
}

.form .form-item.is-buttons {
    padding: 10px;
    border-bottom: #EFEFEF solid 1px;
}
.form.form-login .form-item.is-buttons {
    border-bottom: 0;
}

.form .form-item h2,
.form .form-item h3 {
    margin: 0;
    padding: 5px 20px 10px 10px;
}

.form .form-item input[type="text"],
.form .form-item input[type="password"],
.form .form-item input[type="date"],
.form .form-item input[type="datetime-local"],
.form .form-item select {
    width: 50%;
}

.form-filter .form-item input#search {
    float: left;
    width: 90%;
}

.form-filter .form-item label[for="search"] {
    float: right;
    padding: 0;
    display: inline-block;
    color: #333;
    line-height: 37px;
    text-align: center;
    width: 10%;
}

.form .form-item label,
.form-filter .form-item label {
    float: left;
    display: block;
    color: #999;
    padding: 10px 15px;
    text-align: right;
    width: 30%;
}

.form-filter .form-item select,
.form-filter .form-item input {
    float: right;
    width: 65%;
}

.form.form-timeline .form-item {
    margin-top: 0;
    padding-top: 0;
}

.form.form-timeline .form-item label#content:empty {
    display: none;
}


/* table */
.table {
    border-spacing: 0;
    border-right: #EFEFEF solid 1px;
    border-bottom: #EFEFEF solid 1px;
}

.table-outer.shadow {
    margin: 40px 20px;
    position: relative;
    -webkit-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    -moz-box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3), 0 0 40px rgba(0, 0, 0, 0.1) inset;
}

.table-outer.shadow:before, .table-outer.shadow:after {
    content: "";
    position: absolute;
    z-index: -1;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.8);
    top: 50%;
    bottom: 0;
    left: 10px;
    right: 10px;
    -moz-border-radius: 100px / 10px;
    border-radius: 100px / 10px;
}

.table-outer.shadow:after {
    right: 10px;
    left: auto;
    -webkit-transform: skew(8deg) rotate(3deg);
    -moz-transform: skew(8deg) rotate(3deg);
    -ms-transform: skew(8deg) rotate(3deg);
    -o-transform: skew(8deg) rotate(3deg);
    transform: skew(8deg) rotate(3deg);
}

.table .is-darker {
    background-color: #FDFDFD;
}

.table tr.is-unread td:first-child {
    border-left: #e67e22 solid 2px;
}

.table thead th {
    padding: 10px 15px;
    background-color: #2c3e50;
    border-bottom: #EFEFEF solid 1px;
    color: #FAFAFA;
    font-weight: bold;
    text-align: center;
}

.box-sidebar .table {
    border-left: #EFEFEF solid 1px;
}

.box-sidebar .table thead th {
    background-color: #EFEFEF;
    color: #333;
}

.table tbody td {
    padding: 10px 15px;
    background-color: #FFF;
    border-bottom: #FAFAFA solid 1px;
}

.table tbody tr:nth-child(2n) {
    background-color: #ecf0f1;
}

.table.table-tasks .fa {
    margin-right: 5px;
}

.table.table-tasks .fa.fa-check {
    color: green;
}

.table.table-tasks .fa.fa-times {
    color: red;
}

.table.table-calendar {
    margin-top: 20px;
}

.table.table-calendar td {
    border-left: #FAFAFA solid 1px;
}

.table.table-calendar td a {
    color: inherit;
    text-decoration: none;
}

.table.table-calendar td:first-child {
    border-left: none;
}

.table.table-calendar td.is-today {
    font-weight: bold;
    background-color: #3498db;
    color: #FAFAFA;
}

.table.table-calendar td.has-event {
    background-color: #f2f2f2;
    color: red !important;
}

.table.table-calendar td.is-selected {
    background-color: #e6e6e6;
    color: #3498db;
    font-weight: bold;
}

.table.table-calendar td.is-selected.is-today {
    background-color: #2980b9;
    color: #FAFAFA;
}


/* list */
.list {
    margin: 5px 10px 5px 20px;
}

.list li {
    margin-bottom: 5px;
}


/* btn */
.btn {
    display: inline-block;
    padding: 10px 15px;
    background-color: #3498db;
    color: #FAFAFA;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    border: none;
    width: auto;
}

.btn:hover,
.btn:focus {
    background-color: #2980b9;
    color: #FAFAFA;
    text-decoration: none;
}

.btn.is-smaller {
    padding: 5px 3px;
    font-size: small;
}

.btn .fa {
    display: inline-block !important;
    float: none !important;
    margin-right: 4px !important;
    width: auto !important;
}

.btn.is-gray {
    background-color: #ecf0f1;
    color: #333;
}

.btn.is-gray:hover,
.btn.is-gray:focus {
    border-right: #EFEFEF solid 1px;
}

.btn.btn-timeline {
    position: relative;
    background-color: #34495e;
    color: #FAFAFA;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    overflow: hidden;
}

.btn.btn-timeline:hover,
.btn.btn-timeline:focus,
.btn.btn-timeline.is-active {
    background-color: #3498db;
    color: #FAFAFA;
    outline: none;
}

.btn.btn-timeline.is-active {
    cursor: default;
}

.btn.btn-timeline.is-active:after {
    content: '\25b2';
    position: absolute;
    left: 50%;
    bottom: -5px;
}

.btn.btn-simple {
    padding: 8px 15px;
    color: #333;
    background-color: #FFF;
    border: #EFEFEF solid 1px;
    text-decoration: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    vertical-align: middle;
}

.btn.btn-table {
    display: block;
    background-color: inherit;
    color: #3498db;
    text-decoration: none;
    width: auto;
}

.btn.btn-table:focus,
.btn.btn-table:hover {
    background-color: inherit;
    color: #2980b9;
    text-decoration: none;
}

.btn-loadmore {
    padding: 10px 15px;
    display: block;
    background-color: #FFF;
    border: #EFEFEF solid 1px;
    font-size: small;
    text-align: center;
}


/* text */
.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.text-smaller {
    font-size: small;
}

.text-gray {
    color: #999;
}

/* float */
.float-left {
    float: left;
}

.float-right {
    float: right;
}

/* other */
.clearfix {
    clear: both;
}

.hidden {
    display: none !important;
}

.no-padding {
    padding: 0 !important;
}

.fadingOut,
.fadingOut * {
    background-color: #EFEFEF;
    color: #999 !important;
}

#contact_list,
#label_list {
    list-style: none;
}

#contact_list li,
#label_list li {
    padding: 10px 15px;
    background-color: #FFF;
    border-bottom: #FAFAFA solid 1px;
    color: #333;
    cursor: default;
}

#contact_list li:before {
    position: relative;
    top: -1px;
    margin-right: 5px;
    color: #34495e;
    content: "\00BB";
}

form.upload {
    padding: 40px;
}

form.upload input[type="file"] {
    display: none;
}

form.upload label {
    display: block;
    padding: 100px 40px;
    border: 3px dotted #3498db;
    cursor: pointer;
    font-size: 20px;
    text-align: center;
    width: 100%;
}

form.upload .text-center {
    margin-top: 20px;
}

form.upload .text-center .btn {
    text-align: center;
    width: 200px;
    max-width: 100%;
}


