/* BODY */
html {
    position: relative;
    margin: 0;
    padding: 0;
}
body {
    box-sizing: border-box;
    min-width: 600px;
    margin: 0;
    color: #535c69;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    overflow-x: auto;
    overflow-y: visible;
}
h2 {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 300;
}
h3 {
    float: left;
    font-size: 1.5rem;
    font-weight: 300;
    /text-transform: uppercase;
}
h4 {
    text-transform: uppercase;
    text-align: center;
    font-size: 1.5rem;
}
a {
    color: #535c69;
    text-decoration: none;
}
a:hover {
    color: #535c69;
    text-decoration: underline;
}
.left {
    text-align: left !important;
}
.bold {
    font-weight: bold;
}
.light-grey {
    background-color: #f6f8f9;
}
.hide {
    height: 0;
    margin: 0 !important;
}

/* HEADER */
header { 
    display: flex;
    align-items: center;
    box-sizing:border-box;
    height:50px; 
    width:100%;  
    padding: 5px 30px;
    color: #fff;
    background-color: #535c69; 
}
#logo {
    float: left;
}
#logo-img {
    width: 40px;
    height: 40px;
    padding-right: 30px;
}
nav {
    float: left;
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
}
nav ul {
    display: flex;
    height: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}
nav ul li {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    border-radius: 5px;
    opacity: 0.75;
    cursor: pointer;
    transition: 0.2;
}
nav ul li:not(.menu-active):hover {
    opacity: 1;
} 
nav ul li a, 
nav ul li a:hover {
    display: flex;
    align-items: center;
    height: 100%;
    color: #fff;
    text-decoration: none;
    transition: 0.2;
}
.menu-active {
    background-color: rgba(255, 255, 255, 0.25);
    opacity: 1;
    cursor: auto;
}
.menu-active a {
    cursor: auto;
}
#right-menu {
    display: flex;
    margin-left: auto;
    padding-left: 30px;
}
/* #right-menu-icons {
    display: flex;
    display: none;
    align-items: center;
    height: 30px;
    padding-left: 15px;
    padding-right: 15px;
    border-right: 1px solid #aaa;
}
i.right-menu-icon {
    display: flex;
    align-items: center;
    height: 100%;
    padding-left: 15px;
    padding-right: 15px;
    opacity: 0.75;
    cursor: pointer;
}
i.right-menu-icon:hover {
    opacity: 1;
} */
#right-menu-user {
    display: flex;
    align-items: center;
    padding-left: 15px;
    cursor: pointer;
}
#right-menu-user-photo {
    width: 30px;
    height: 30px;
    border-radius: 15px;
}
#right-menu-user-down {
    padding-left: 15px;
    font-size: 0.6rem;
    opacity: 0.75;
}
#right-menu-user:hover #right-menu-user-down {
    opacity: 1;
}

/* LOADER */
#loader {
    position: absolute;
    height: 100%;
    width: 100%;
    margin: 0;
    display: flex; 
    justify-content: center; 
    align-items: center;
    z-index: 99;
}

/* MAIN */
main {
    position: relative;
    margin: 60px 30px;
}
#displayedPeriod i {
    font-size: 1.35rem;
    padding: 10px 20px;
}
#displayedPeriod i.active-chevron {
    cursor: pointer;
}
#displayedPeriod i.active-chevron:hover {
    color: #000;
}
i.inactive-chevron {
    color: transparent;
    cursor: default;
}

/* TRACKER TOP */
#tracker-top {
    box-sizing: border-box;
    height: 36px;
    margin-bottom: 15px;
    overflow: hidden;
    clear: both;
    position: relative;
}
#add-task {
    float: left;
    margin-right: 30px;
    border-radius: 5px;
    overflow: hidden;
}
#add-task-input {
    float: left;
    width: 152px;
    height: 36px;
    color: #535c69;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    padding-left: 15px;
    border: 1px solid #d5dbdf;
    border-width: 1px 0 1px 1px;
    border-radius: 5px 0 0 5px;
    overflow: hidden;
    outline: none;
    transition: 0.2s;
}
#add-task-input::-webkit-input-placeholder,
#tracker-user-search-input::-webkit-input-placeholder {
    color: #d5dbdf;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: 0.2s;
}
#add-task-input::-moz-placeholder,
#tracker-user-search-input::-moz-placeholder {
    color: #d5dbdf;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: 0.2s;
}
/* Firefox 19+ */
#add-task-input:-moz-placeholder,
#tracker-user-search-input:-moz-placeholder {
    color: #d5dbdf;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: 0.2s;
}
/* Firefox 18- */
#add-task-input:-ms-input-placeholder,
#tracker-user-search-input:-ms-input-placeholder {
    color: #d5dbdf;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    transition: 0.2s;
}

#add-task:hover #add-task-input::-webkit-input-placeholder,
#tracker-user-search-input:hover::-webkit-input-placeholder {
    color: #acb6bf;
}
#add-task:hover #add-task-input::-moz-placeholder,
#tracker-user-search-input:hover::-moz-placeholder {
    color: #acb6bf;
}
/* Firefox 19+ */
#add-task:hover #add-task-input:-moz-placeholder,
#tracker-user-search-input:hover:-moz-placeholder {
    color: #acb6bf;
}
/* Firefox 18- */
#add-task:hover #add-task-input:-ms-input-placeholder,
#tracker-user-search-input:hover:-ms-input-placeholder {
    color: #acb6bf;
}
#add-task:hover #add-task-button {
    opacity: 1;
}
#add-task:hover #add-task-input {
    border-color: #acb6bf;
}
#add-task-button {
    height: 36px;
    width: 36px;
    background-color: #080;
    border: none;
    font-size: 24px;
    color: #fff;
    padding-top: 0;
    opacity: 0.5;
    cursor: pointer;
    outline: none;
    transition: 0.2s;
}
#add-razdelitel {
    display: flex;
    justify-content: center;
    align-items: center;
    float: left;
    box-sizing: border-box;
    height: 36px;
    width: 36px;
    padding-right: 1px;
    margin-right: 30px;
    margin-left: 2px;
    border-radius: 5px;
    background-color: #eef2f4;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
}
#add-razdelitel-button {
    border: none;
    font-size: 18px;
    font-weight: 300;
    color: #535c69;
    padding-top: 0;
    outline: none;
    transition: 0.2s;
}
#add-razdelitel-icon {
    padding-bottom: 2px;
}
#timing-task-text {
    display: inline-block;
    line-height: 18px;
    height: 18px;
    margin: 9px 0;
    overflow: hidden;
}
#tracker-message {
    display: none;
    box-sizing: border-box;
    height: 36px;
    width: 100%;
    margin-top: 15px;
    margin-bottom: 15px;
    padding-left: 33px;
    padding-right: 33px;
    line-height: 36px;
    text-align: center;
    border-radius: 2px;
    color: #f00;
    background-color: #fff4cb;
}
#tracker-table {
    box-sizing: border-box;
    width: 100%;
}
#tracker-thead {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    height: 36px;
    background: #eef2f4;
    clear: both;
    border-radius: 5px 5px 0 0;
}
.tracker-task {
    box-sizing: border-box;
    width: 100%;
    padding-right: 448px;
}
.tracker-th {
    float: left;
    box-sizing: border-box;
    height: 36px;
    line-height: 36px;
}
#top-bookmark {
    padding-top: 0;
    padding-bottom: 0;
    padding-right: 11px;
    padding-left: 12px;
    color: #acb6bf;
    cursor: pointer;
    transition: 0.2s;
}
.tracker-task i.fa-bookmark {
    cursor: pointer;
    padding-left: 12px;
}
.tracker-task i {
    cursor: move;
}
.tracker-td-options {
    float: left;
    width: 448px;
    margin-left: -448px;
}
.tracker-edit {
    box-sizing: border-box;
    width: 78px;
    text-align: right;
}
.tracker-time {
    box-sizing: border-box;
    width: 120px;
    text-align: center;
    border-radius: 2px;
}
.tracker-urgency {
    box-sizing: border-box;
    width: 30px;
}
.tracker-urgency i {
    width: 100%;
    text-align: center;
}
.tracker-deadline {
    box-sizing: border-box;
    width: 170px;
    height: 25px;
    padding-left: 20px;
}
#top-map {
    width: 100%;
    padding: 0;
    line-height: 36px;
    color: #acb6bf;
    text-align: center;
    transition: 0.2s;
}
.tracker-tr {
    box-sizing: border-box;
    width: 100%;
    background: #fff;
    border-bottom: 1px dashed #eef2f4;
    overflow: hidden;
    clear: both;
    color: #000;
}
.time-active {
    border-left: 5px solid #080;
    animation-name: blinker;
    animation-iteration-count: infinite;
    animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
    animation-duration: 1s;
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(1.0, 0, 0, 1.0);
    -webkit-animation-duration: 1s;
}
.tracker-tr:hover .meeting {
    background: #f7f9fa !important;
    color: #080 !important;
}
.tracker-tr:hover .urgency {
    background: #f7f9fa !important;
    color: #f00 !important;
}
i.fa-map-marker-on, i.fa-map-marker-on:hover, .meeting {
    color: #080 !important;
}
.urgency {
    color: #f00 !important;
}
.overdue {
    color: #f00;
}
.tracker-td {
    float: left;
}
.tracker-task i.fa-ellipsis-v {
    padding-left: 15px;
}
.time-active i.fa-ellipsis-v {
    padding-left: 10px !important;
}
.time-active .before-task {
    padding-left: 10px;
    width: 28px;
}
.tracker-task i {
    cursor: move;
}
i.before-task {
    float: left;
    box-sizing: border-box;
    width: 33px;
    transition: 0s;
}
.tracker-tr i.fa, 
.tracker-tr i.fas, 
.tracker-tr i.far {
    color: #d5dbdf;
    padding-top: 6px;
    padding-bottom: 6px;
    cursor: pointer;
    transition: 0.1s;
}
.task-text {
    display: table-cell;
    margin: 0;
    padding-top: 5px;
    padding-bottom: 5px;
}
.main-tr:hover .meeting {
    background: #f7f9fa !important;
    color: #080 !important;
}
.main-tr:hover .urgency {
    background: #f7f9fa !important;
    color: #f00 !important;
}
.input-task {
    display: none;
    height: 16px;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: none;
    margin-left: 0;
    outline: none;
    -webkit-appearance: none;
    padding: 0;
}
.input-task-dev {
    display: none;
    height: 16px;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: none;
    margin-left: 0;
    outline: none;
    -webkit-appearance: none;
    padding: 0;
}
.tracker-td-options {
    float: left;
    width: 448px;
    margin-left: -448px;
}
.tracker-edit {
    box-sizing: border-box;
    width: 78px;
    text-align: right;
}
.text-before {
    display: none;
}
.tracker-edit a {
    display: block;
    float: left;
    text-decoration: none;
    margin-right: 20px;
    position: relative;
    left: 5px;
}
.tracker-edit a:last-child i {
    padding-left: 5px;
    padding-right: 0px;
}
.tracker-edit a i {
    display: block;
    width: 14px;
    height: 14px;
}
.input-deadline {
    height: 25px;
    width: 120px;
    cursor: pointer;
    color: #535c69;
    font-size: 14px;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    border: none;
    margin-left: 2px;
    outline: none;
    background-color: rgba(255, 255, 255, 0);
    float: left;
}
.tracker-deadline i.fa-times {
    visibility: hidden;
    font-size: 12px;
    vertical-align: top;
    padding: 7px 10px 7px 5px;
}
.tracker-close {
    box-sizing: border-box;
    width: 50px;
    text-align: right;
}
.tracker-close i.fa-check {
    padding-right: 15px;
}
i.fa-check, i.fa-times {
    padding-left: 0;
}
.start-timing {
    cursor: pointer;
}
.time-fact {
    display: inline-block;
    width: 35px;
    color: #080;
    color: #d5dbdf;
}
.start-timing i {
    padding-left: 15px;
    padding-right: 5px;
}
.timing-on {
    color: #080;
    font-weight: bold;
}
.time-sep {
    color: #d5dbdf;
}
.time-plan {
    border: none;
    width: 35px;
    background: transparent;
    color: #d5dbdf;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    padding: 0;
    text-align: center;
    outline: none;
}
.time-plan::-webkit-input-placeholder {
    color: #d5dbdf;
}

.time-plan:-ms-input-placeholder {
    color: #d5dbdf;
}

.time-plan::-moz-placeholder {
    color: #d5dbdf;
    opacity: 1;
}

.time-plan:-moz-placeholder {
    color: #d5dbdf;
    opacity: 1;
}

.time-plan:hover::-webkit-input-placeholder {
    color: #535c69;
}

.time-plan:hover:-ms-input-placeholder {
    color: #535c69;
}

.time-plan:hover::-moz-placeholder {
    color: #535c69;
    opacity: 1;
}

.time-plan:hover:-moz-placeholder {
    color: #535c69;
    opacity: 1;
}

.time-plan:hover,
.time-plan:focus {
    color: #535c69;
}
#tracker-user {
    float: right;
    height: 36px;
    cursor: pointer;
}
#tracker-user-photo-wrap {
    float: left; 
    box-sizing: border-box;
    height: 36px;
    width: 36px;
    font-size: 18px;
    display: flex;
    justify-content: center; 
    align-items: center; 
    background-color: #eef2f4;
    border-radius: 5px;
    margin-right: 15px;
}
#tracker-user-photo {
    height: 18px; 
    opacity: 0.9;
}
#tracker-user-info {
    float: left;
    text-align: left;
}
#tracker-user-name {
    display: inline-block;
    height: 18px;
    white-space: nowrap;
    transition: all 0.2s ease;
    overflow: hidden;
}
#tracker-user-change {
    height: 18px;
    line-height: 18px;
    vertical-align: bottom;
    font-size: 0.75rem;
    opacity: 0.5;
    cursor: pointer;
    transition: 0.2s;
}
#tracker-user:hover #tracker-user-change,
#tracker-user-change:hover {
    opacity: 1;
}
#tracker-top .top-icon-wrap:hover {
    background-color: #d5dbdf;
}
#tracker-top .fal,
#tracker-top .far,
#tracker-top .fas {
    font-family: "Font Awesome 6 Pro";
}
#tracker-user-search {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    min-width: 200px;
    padding: 10px 15px;
    border-radius: 5px;
    background-color: #eef2f4;
}
#tracker-user-search-rhomb {
    position: absolute;
    top: -5px;
    right: 110px;
    width: 10px;
    height: 10px;
    background-color: #eef2f4;
    transform: rotate(45deg);
}
#tracker-user-search-input {
    width: 100%;
    height: 36px;
    border: 1px solid #d5dbdf;
    border-radius: 5px;
    margin-top: 8px;
    padding: 0 14px;
    margin-bottom: 18px;
    outline: none;
}
#tracker-user-search-input:hover {
    border: 1px solid #C3C9CD;
}
#tracker-user-search-list {
    border-top: 1px dashed #d5dbdf;
    padding: 10px 0;
}
.tracker-user-search-item {
    padding: 0 15px;
    line-height: 2em;
    cursor: pointer;
    border-radius: 5px;
}
.tracker-user-search-item:hover {
    background-color: #d5dbdf;
}

/*****************
/*
/* TIMESPOTTER */
/*
/*****************

/* TOP */
/* PERIOD */
#period select {
    height: 34px;
    margin-right: 5px;
    color: #535c69;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid rgba(83,92,105,.2);
    border-radius: 2px;
    outline: none;
}
#period input.submit {
    height: 34px;
    padding: 5px 20px;
    color: #fff;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    text-transform: uppercase;
    border-radius: 5px;
    border: none;
    background-color: #3bc8f5;
    cursor: pointer;
    outline: none;
}
#period input.submit:hover {
    background-color: #3eddff;
}

/* TOP BUTTONS */
.report-buttons {
    position: relative;
}
.top-button {
    float: right;
    color: #333;
    margin-top: 22px;
    margin-left: 15px;
    border: 1px solid #d5dbdf;
    border: 1px solid #eef2f4;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.2s;
}
.top-button:hover {
    background-color: #f0f2f4;
    border: 1px solid #f0f2f4;
    color: #000;
}
.top-button-inner {
    padding: 10px 30px;
}
.top-button i {
    font-size: 16px;
}

/* SETTINGS */
#popup-bg, #screen-bg, #mini-prescreen-bg, #prescreen-bg, #big-screen {
    display: none;
    position: absolute;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #d5dbdf;
    background-image: linear-gradient(rgba(172, 182, 191, 0.9), rgba(172, 182, 191, 0.9));
    background-size: cover;    
    background-repeat: no-repeat;
    cursor: pointer;
}
#popup-bg {
    z-index: 3;
}
#screen-bg,
#mini-prescreen-bg, 
#prescreen-bg {
    z-index: 2;
}
#big-screen {
    z-index: 3;
}
#hide-area {
    z-index: 4;
    position: fixed;
    width: 100%;
    height: 100px;
    bottom: 0;
    left: 0;
    background-color: rgba(83, 92, 105, 0.25);
    background-size: cover;    
    background-repeat: no-repeat;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.1s;
}
#hide-area:hover {
    background-color: rgba(83, 92, 105, 0.33);
}
#close-screens {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 4;
    color: #f00;
    width: 28px;
    height: 28px;
    padding: 0px;
    cursor: pointer;
}
#close-screens::before,
#close-screens::after {
    content: '';
    position: absolute;
    top: 39%;
    left: 61%;
    width: 100%;
    height: 1px;
    background-color: #9ba4ac;
    background-color: #535c69;
}
#close-screens::before {
    transform: translate(-50%, -50%) rotate(45deg);
}
#close-screens::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}
#close-screens:hover::before,
#close-screens:hover::after {
    background-color: #f00; 
}

.popup {
    display: none;
    position: absolute;
    box-sizing: border-box;
    width: 500px;
    border-radius: 5px;
    padding: 30px;
    background-color: #fff;
    z-index: 4;
}
.button-popup {
    top: 77px;
    right: 0;
}
.close {
    position: absolute;
    top: 0;
    right: 0;
    color: #535c69;
    padding: 30px;
    cursor: pointer;
    transition: 0.2s;
}
.close:hover {
    color: #000;
}
.popup-field {
    margin-bottom: 15px;
}
.popup-field-name {
    margin-bottom: 5px;
}
.popup-field-title {
    font-size: 1.25rem;
    margin-bottom: 5px;
}
.popup-field-input {
    border: 1px solid #f0f2f4;
    background-color: #f0f2f4;
    border-radius: 5px;
    padding: 5px 15px;
    margin-bottom: 5px;
    outline: none;
}
.popup-field-employee-selection {
    width: 100%;
    line-height: 2rem;
    margin-bottom: 10px;
}
.popup-field-input-number {
    width: 60px;
    text-align: center;
}
.delete-icon {
    padding: 5px 30px;
    cursor: pointer;
    transition: 0.2s;
}
.delete-icon:hover {
    color: #f00;
}
.popup-field-default-time {
    margin-bottom: 10px;
}
.plus-icon {
    margin-right: 5px;
}
.popup-field-add {
    margin-top: 5px;
}
.popup-field-add-span {
    color: #004C65;
    cursor: pointer;
    border-bottom: 1px dashed #535c69;
    transition: 0.2s;
}
.popup-field-add-span:hover {
    color: #00f;
}
.popup-field-submit {
    box-sizing: border-box;
    width: 100%;
    background-color: #3bc8f5;
    font-size: 1rem;
    font-weight: bold;
    color: #fff;
    line-height: 2rem;
    text-transform: uppercase;
    padding: 5px 15px;
    margin-top: 20px;
    margin-bottom: 0;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    outline: none;
    transition: 0.2s;
}
.popup-field-submit:hover {
    background-color: #00b2ed;
    border-color: #00b2ed;
}

/* MONTH REPORT */
#month-report h2 {
    text-align: center;
}
table {
    border-collapse: collapse;
    font-size: 14px;
    margin-bottom: 45px;
    clear: both;
}
th, td {
    border: 1px #eef2f4 solid;
    padding: 5px;
    text-align: center;
}
td input {
    color: #535c69;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-size: 14px;
    border: none;
    outline: none;
}
.td-link {
    cursor: pointer;
}
.td-link:hover {
    text-decoration: underline;
}
.td-input {
    padding: 0 5px;
}
.width-2num {
    width: 30px;
}
thead tr:last-child th,
thead th[rowspan="2"] {
    border-bottom-width: 3px;
}
#month-report-wrapper {
    width: 100%;
}
.month-report-wrapper-td {
    padding: 0;
    border: none;
}
table#month-report-table-days {
    width: 100%;
}
table#month-report-table-days th, 
table#month-report-table-days td {
    min-width: 0;
    max-width: 0;
    color: transparent;
}
table#month-report-table-days th.first-td,
table#month-report-table-days td.first-td {
    max-width: 50%;
    color: inherit;
    padding: 5px 20px;
}
th.first-td,
td.first-td {
    min-width: 150px;
    max-width: 50%;
    color: inherit;
    padding: 5px 20px;
}
table#month-report-table-days th.total-time-td,
table#month-report-table-days td.total-time-td {
    max-width: 25%;
    color: inherit;
}
.kpi-table .first-td {
    min-width: 150px;
}
#month-report-table-days th.holiday,
#month-report-table-days td.holiday {
    background: url(../img/weekend-bg.jpeg) repeat #f6f8f9;
}
#month-report-table-days th.vacation,
#month-report-table-days td.vacation {
    background: url(../img/weekend-bg.jpeg) repeat #f6f8f9;
}
#month-report-table-days td.low {
    background-color: #fdd;
    /background-color: #ffea9c;
}
#month-report-table-days td.high {
    /background-color: #dfd;
}
th.right-line,
td.right-line {
    border-right-width: 3px;
}
.content table td {
    min-width: 50px;
}

/* SHORT TABLE LAYOUT */
table.short-table-layout th.month-report-table-number,
table.short-table-layout td.month-report-table-number {
    color: transparent;
    cursor: pointer;
}
#month-report-table-days th.today-cell,
#month-report-table-days td.today-cell,
#month-report-table-days th.focus-cell,
#month-report-table-days td.focus-cell {
    max-width: 10%;
    min-width: 50px;
    color: inherit;
} 
#month-report-table-days th.today-cell,
#month-report-table-days td.today-cell {
    background-color: #fff;
    opacity: 0.5;
}
#month-report-table-days th.today-cell,
#month-report-table-days th.yesterday-cell {
    cursor: auto;
}
table#salary-report {
    width: 100%;
    margin-bottom: 50px;
}
.exceeded-time {
    background-color: #fdd;
}

/* REPORT DETAILS */
#report-details {
}
#report-timeline-wrap {
    clear: both;
    position: relative;
    margin-bottom: 28px;
    z-index: 3;
}
#report-timeline-cover {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(172, 182, 191, 0.9), rgba(172, 182, 191, 0.9));
    border-radius: 5px;
    z-index: 91;
}
#report-timeline-cover-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
}
#report-timeline-cover-text {
    color: #fff;
    text-align: center;
    line-height: 100%;
    font-size: 1.5rem;
    font-weight: 300;
    margin: 0;
}
#report-timeline-invisible-cover {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    cursor: pointer;
    z-index: 92;
}
#report-timeline-bg {
    clear: both;
    width: 100%;
    box-sizing: border-box;
    border: 1px #eef2f4 solid;
    border-radius: 5px;
}
#report-timeline-bg-th {
    width: 100%;
    height: 28px;
    margin-bottom: 0;
}
.report-timeline-bg-th-margin, 
.report-timeline-bg-th-label {
    float: left;
    text-align: center;
    padding-top: 5px;  
}
.report-timeline-bg-th-margin {
    width: 4.1667%;
    box-sizing: border-box;
}
.report-timeline-bg-th-label {
    width: 8.3333%;
    box-sizing: border-box;
}
#report-timeline-bg-td {
    width: 100%;
    height: 70px;
}
.report-timeline-bg-td-cell {
    float: left;
    width: 8.3333%;
    box-sizing: border-box;
    height: 70px; 
    border: 1px #eef2f4 solid;
    border-right: 0;
    border-bottom: 0;
}
.report-timeline-bg-td-cell-first {
    border-left: 0;
}
#report-timeline {
    clear: both;
    position: absolute;
    top: 1px;
    width: 100%;
    height: 28px;
    margin-bottom: 28px;
}
#report-timeline-ranges {
    position: relative;
    height: 98px;
    z-index: 2;
}
#report-timeline-apps{
    position: relative;
    top: 81px;
    z-index: 1;
}
#report-timeline-variances {
    position: absolute;
    height: 98px;
    width: 100%;
    z-index: 1;
}
.report-timeline-variance {
    position: absolute;
    box-sizing: border-box;
    height: 100%;
    background-color: rgba(172, 182, 191, 0.15);
}
.report-timeline-item {
    position: absolute;
    box-sizing: border-box;
    height: 100%;
    padding: 41px 0 32px 0;
    cursor: none;
}
.report-timeline-app {
    position: absolute;
    box-sizing: border-box;
    height: 100%;
    padding: 0 0 15px 0;
}
.timelinetask-inner {
    box-sizing: border-box;
    height: 28px;
    border: 1px solid #fff;
    border-radius: 6px;
    text-align: center;
}
.timelineapp-inner {
    box-sizing: border-box;
    height: 5px;
    border: 1px solid #fff;
    border-radius: 3px;
}
#cursor-line {
    position: absolute;
    width: 1px;
    height: 384px; 
    bottom: 0;
    left: 0;
    background-color: red;
    z-index: 99;
    pointer-events: none;
    display: none;
}
.ui-resizable {
    position: relative;
}
.ui-resizable-handle {
    position: absolute;
    font-size: 0.1px;
    display: block;
    -ms-touch-action: none;
    touch-action: none;
}
.ui-resizable-e {
    cursor: e-resize;
    width: 7px;
    right: 0px;
    top: 0;
    height: 100%;
}
.ui-resizable-w {
    cursor: w-resize;
    width: 7px;
    left: 0px;
    top: 0;
    height: 100%;
}

#report-timeline .unfocus .timelinetask-inner, 
#report-timeline :not(.focus).unselect .timelinetask-inner {
    background-color: transparent;
    background-color: #eef2f4;
    border: 1px solid #fff;
}

/* SCREENSHOTS */
#screenshots {
    clear: both;
    position: absolute;
    bottom: 56px;
    box-sizing: border-box;
    width: 100%;
    background-color: #fff;
    border: 28px solid #fff;
    border-radius: 5px;
    overflow: hidden;
    display: none;
}
#screenshots-task {
    clear: both;
    text-align: center;
    width: 100%;
}
#screenshots-task-time {
    font-size: 2.5rem;
    line-height: 1em;
    margin-top: 0;
    margin-bottom: 0;
    font-weight: 200;
}
#screenshots-task-text {
    margin-bottom: 0;
}
#screenshots-task i.fa-clock {
    margin-left: 6px;
    margin-right: 5px;
}
#screenshots-slider {
    width: 100000px;
    margin-bottom: 28px;
    overflow: hidden;
}
.screen {
    position: relative;
    float: left;
    padding-right: 14px;
    padding-left: 14px;
    cursor: pointer;
}
.new-task-first-screen {
    border-left: 1px dashed #535c69;
    padding-left: 13px;
}
.screen-header {
    font-size: 2em;
    font-weight: 200;
    text-align: center;
    margin-bottom: 7px;
}
.screen-img-wrap {
    position: relative;
}
.screen:hover .screen-icons {
    background-color: rgba(172, 182, 191, 0.5);
}
.screen:hover i.screen-icon {
    opacity: 1;
}
.screen-icons {
    position: absolute;
    top: 1px;
    right: 1px;
    border-radius: 0 5px 0 5px;
}
.screen-icons i {
    opacity: 0;
    width: 15px;
    text-align: center;
    color: #fff;
    padding: 5px 10px;
    transition: 0.1s;
}
.screen-icons i.fa-eye-slash {
    border-radius: 0 0 5px 5px;
}
.screen-icons i.fa-times {
    border-radius: 0 5px 0 5px;
}
.screen-icons i.fa-times:hover {
    color: #f00;
}
.screen-icons i.screen-icon:hover, 
.screen-icons i.fa-eye-slash.hidden-slide-i, 
.deleted-slide i.fa-times {
    opacity: 1;
    background-color: rgba(172, 182, 191, 0.7);
} 
.screen-icons i.fa-eye-slash.hidden-slide-i, 
.deleted-slide .screen-img-wrap i.fa-times {
    color: #f00;
}
.deleted-slide .screen-icons {
    display: none;
}
.deleted-slide .screen-img {
    opacity: 0.1;
}
.deleted-slide .screen-img-wrap .screen-icons,
.deleted-slide .screen-img-wrap:hover .screen-icons {
    background-color: transparent;
}
.screen.deleted-slide {
    cursor: default;
}
.deleted-label {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-size: 1.5rem;
    font-weight: 300;
    color: #f00;
    justify-content: center; 
    align-items: center;     
}
.deleted-slide .deleted-label {
    display: flex;
}
.screen-img {
    width: 240px;
    border: 1px solid #eef2f4;
    border-radius: 5px;
}
.screenshots-task-work {
    color: #080;
}
.screenshots-task-private {
    color: #535c69;
}
.screenshots-task-uncategorized {
    color: #f80;
}
#screenshot-view {
    position: fixed;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    display: none;
}

/* TASK LIST */
#report-table-details th {
    padding: 5px 20px;
}
.report-table-details-td-hover > td:not(.color-td),
.report-table-details-tr.select > td:not(.color-td) {
    background-color: rgba(172, 182, 191, 0.15);
}
th.color-td{
    padding: 5px 20px;
}
.color-td {
    position: relative;
    font-style: italic;
    padding: 5px 5px;
    cursor: pointer;
    transition: 0.1s;
}
.color-tag {
    height: 1.0625rem;
    padding: 0 20px 0 0;
    border: none;
    border-radius: 3px;
    display: flex; 
    white-space: nowrap;
    transition: 0.1s;
}
.color-tag::before {
    content: "";
    display: inline-block;
    width: 5px; 
    margin-right: 20px;
    border-radius: 3px;
}
.timelinetask-inner {
    background-color: #acb6bf;
}
td.tag-1 .color-tag::before {
    background-color: #F6C85E;
} 
td.tag-1:hover .color-tag,
td.tag-1.selected .color-tag {
    background-color: #F6C85E;
    color: #7A642E;
}
.report-timeline-item .tag-1 {
    background-color: #F6C85E;
}  
.report-timeline-item.focus .tag-1,  
.report-timeline-item.select .tag-1, 
.report-timeline-item:hover .tag-1 {
    border: 1px solid #F6C85E;
}
td.tag-2 .color-tag::before {
    background-color: #EE8044;
}
td.tag-2:hover .color-tag,
td.tag-2.selected .color-tag {
    background-color: #EE8044;
    color: #764021;
}
.report-timeline-item .tag-2 {
    background-color: #EE8044;
}
.report-timeline-item.focus .tag-2,  
.report-timeline-item.select .tag-2, 
.report-timeline-item:hover .tag-2 {
    border: 1px solid #EE8044;
}
td.tag-3 .color-tag::before {
    background-color: #8F2346;
}
td.tag-3:hover .color-tag,
td.tag-3.selected .color-tag {
    background-color: #8F2346;
    color: #DCBCC6;
}
.report-timeline-item .tag-3 {
    background-color: #8F2346;
}
.report-timeline-item.focus .tag-3,  
.report-timeline-item.select .tag-3, 
.report-timeline-item:hover .tag-3 {
    border: 1px solid #8F2346;
}
td.tag-4 .color-tag::before {
    background-color: #22507C;
}
td.tag-4:hover .color-tag,
td.tag-4.selected .color-tag {
    background-color: #22507C;
    color: #BDCBD8;
}
.report-timeline-item .tag-4 {
    background-color: #22507C;
}
.report-timeline-item.focus .tag-4,  
.report-timeline-item.select .tag-4, 
.report-timeline-item:hover .tag-4 {
    border: 1px solid #22507C;
}
td.tag-5 .color-tag::before {
    background-color: #4FA7DF;
}
td.tag-5:hover .color-tag,
td.tag-5.selected .color-tag {
    background-color: #4FA7DF;
    color: #285470;
}
.report-timeline-item .tag-5 {
    background-color: #4FA7DF;
}
.report-timeline-item.focus .tag-5,  
.report-timeline-item.select .tag-5, 
.report-timeline-item:hover .tag-5 {
    border: 1px solid #4FA7DF;
}
td.tag-6 .color-tag::before {
    background-color: #7FD7D6;
}
td.tag-6:hover .color-tag,
td.tag-6.selected .color-tag {
    background-color: #7FD7D6;
    color: #3F6C69;
}
.report-timeline-item .tag-6 {
    background-color: #7FD7D6;
}
.report-timeline-item.focus .tag-6,  
.report-timeline-item.select .tag-6, 
.report-timeline-item:hover .tag-6 {
    border: 1px solid #7FD7D6;
}
.timelineapp-inner {
    background-color: #acb6bf;
}
.working-program {
    background-color: #0a0;
    background-color: #9FD241;
}
.non-working-program {
    background-color: #CC483E;
    background-color: #e00;
}
.report-timeline-item.focus .timelinetask-inner::before,
.report-timeline-item.select .timelinetask-inner::before {
    content: "●";
    content: "⬇︎";
    content: "↓";
    color: #e00;
    position: absolute;
    top: -15px;
    top: -23px;
    transform: translate(-50%);
}
th.task-link-td,
td.task-link-td {
    position: relative;
    min-width: 150px;
    max-width: 50%;
    color: inherit;
    padding: 5px 20px;
    text-align: left;
}
/* EDIT TAGS POPUP */
#edit-tags-popup {
    display: none;
    position: absolute;
    background-color: #fff;
    padding: 33px 30px 30px 30px;
    margin-bottom: 50px;
    border-radius: 6px;
    box-shadow: 0 0 20px 0px rgba(0, 0, 0, 0.5);
    z-index: 3;
}
#edit-tags-table {
    margin-bottom: 0;
}
#edit-tags-table th,
#edit-tags-table td  {
    border: 1px solid #eef2f4;
}
#edit-tags-table th {
    text-align: right;
    font-weight: normal;
    padding: 5px 0;
    border: none;
}
#edit-tags-table td  {
    text-align: left;
    font-style: italic;
    cursor: pointer;
}
#et-th {
    position: relative;
}
#et-wrap {
    padding: 5px;
}
#et-icons {
    position: absolute;
    top: -14px;
    right: 0;
}
#et-icons i {
    padding: 10px 7px;
    cursor: pointer;
}
#et-icons i.fa-times:hover {
    color: #8F2346;
}
#et-icons i.fa-edit:hover {
    color: #22507C;
}
#et-icons i.fa-check:hover {
    color: #080;
}
#et-icons i.fa-check {
    display: none;
}
#edit-tags-table .color-tag {
    box-sizing: border-box;
    transition: 0s;
}
#edit-tags-table input {
    display: none;
    box-sizing: border-box;
}
#edit-tags-table.et-active input {
    display: inline-block;
}
table.et-active #et-icons i.fa-check {
    display: inline-block;
}
table.et-active #et-icons i.fa-edit {
    display: none;
}
table.et-active {
    padding-top: 4px;
    padding-bottom: 4px;
}
table.et-active .et-name {
    display: none;
}
table.et-active input {
    color: #000;
    font-style: italic;
    border: 1px dashed #eef2f4;
    border-radius: 3px;
    padding-left: 10px;
    padding-right: 10px;
    width: 150px;
}
#edit-tags-table.et-active td {
    cursor: auto;
}
table.et-active .color-tag {
    padding-right: 0px;
    cursor: auto;
}
table.et-active .color-tag::before {
    margin-right: 5px;
}
table.et-active:hover .color-tag {
    background-color: transparent;
}

/* SALARIES */
td.unapproved-value {
    opacity: 0.3;
}
td.editable-cell {
    background-color: #ff0;
    cursor: pointer;
}
td.paid-cell {
    background-color: #8f8;
    cursor: pointer;
}
td.unpaid-cell {
    cursor: pointer;
}
.salary-table-input {
    background-color: #ff0;
    cursor: pointer;
    text-align: center;
    width: 70px;
}
input[type="number"].salary-table-input {
    padding-left: 15px;
}
input[type="text"].salary-table-input {
    padding-left: 15px;
    padding-right: 15px;
}


/* FOOTER */
footer {
    margin-top: 50px;
    text-align: center;
}
.timeline-deep-bg {
    background-color: #d5dbdf;
}
.timeline-deep-opacity {
    opacity: 0.1;
}
#report-timeline-bg.timeline-active-window {
    background-color: #fff;
    border: none;
}
#report-timeline.timeline-active-window {
    top: 0;
}


/* MEDIA */
@media (min-width: 1200px) and (max-width: 1600px) {
    #month-report-table, 
    #month-report-table th {
        width: 15%;
    }
    #content-month-report-table-days {
        width: 85%;
    }
}
@media (min-width: 1000px) and (max-width: 1200px) {
    #month-report-table, 
    #month-report-table th {
        width: 20%;
    }
    #content-month-report-table-days {
        width: 80%;
    }
}
@media (min-width: 800px) and (max-width: 1000px) {
    #month-report-table, 
    #month-report-table th {
        width: 25%;
    }
    #content-month-report-table-days {
        width: 75%;
    }
}
@media (min-width: 600px) and (max-width: 800px) {
    #month-report-table, 
    #month-report-table th {
        width: 30%;
    }
    #content-month-report-table-days {
        width: 70%;
    }
}
@media (min-width: 400px) and (max-width: 600px) {
    #month-report-table, 
    #month-report-table th {
        width: 50%;
    }
    #content-month-report-table-days {
        width: 50%;
    }
}