body {
    margin: 0;
    padding: 0;
    position: relative;
    color: #333;
}
*,
body,
html {
    font-family: "Helvetica", sans-serif;
    font-weight: 400;
}
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 400;
    font-family: "Helvetica", sans-serif;
    font-style: normal;
    color: inherit;
    text-rendering: optimizeLegibility;
    margin-top: 0;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    color: #262b2e;
}

/* ----------------- */
/*       BASIC       */
/* ----------------- */
.upper {
    text-transform: uppercase;
}
.user-session-timer {
    font-size: 1.3rem;
    font-weight: bold;
    padding-right: 7px;
}
.refresh-user-session-button:hover {
    cursor: pointer;
    color: rgb(51, 138, 238);
}
.column:last-child:not(:first-child),
.columns:last-child:not(:first-child) {
    float: left;
}
.bold {
    font-weight: 700;
}
.big-bold {
    font-weight: 900;
}
.italic {
    font-style: italic;
}
.center {
    text-align: center !important;
}
.left {
    float: left;
}
.right {
    float: right;
}
.text-left {
    text-align: left !important;
}
.text-right {
    text-align: right !important;
}
.one-line {
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    float: none !important;
    display: block !important;
}
.button {
    background-color: #46BE9D;
    background-image: none;
    background: #46BE9D;
    background: -webkit-linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    background: linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
    -webkit-transition: -webkit-box-shadow 0.2s ease-out,
        background-color 0.2s ease;
    transition: box-shadow 0.2s ease-out, background-color 0.2s ease;
    transition: 0.3s all ease;
    color: #fff;
    border-radius: 4px;
    border: 0;
    font-size: 14px;
    margin: 0;
    outline: none;
    font-weight: 600;
    min-height: 38px;
}
.button.green {
    background: #6db135;
}
.button.green:hover {
    background: #5d992c;
}
.button.small {
    line-height: 30px;
    font-size: 12px;
    padding: 0 12px;
    text-transform: uppercase;
    min-height: 30px;
}
.button.margin {
    margin-bottom: 12px;
}
.button:focus,
.button.disabled:focus {
    background: none;
    background: #46BE9D;
    background: -webkit-linear-gradient(30deg, #328871 0%, #46BE9D 100%);
    background: linear-gradient(30deg, #328871 0%, #46BE9D 100%);
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
        0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
        0 4px 15px 0 rgba(0, 0, 0, 0.15);
    color: #fff;
    border: none;
}
.button:hover,
.button.disabled:hover {
    background: none;
    background: #46BE9D;
    background: -webkit-linear-gradient(30deg, #328871 0%, #46BE9D 100%);
    background: linear-gradient(30deg, #328871 0%, #46BE9D 100%);
    -webkit-box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
        0 4px 15px 0 rgba(0, 0, 0, 0.15);
    box-shadow: 0 5px 11px 0 rgba(0, 0, 0, 0.18),
        0 4px 15px 0 rgba(0, 0, 0, 0.15);
    color: #fff;
    border: none;
}
.button.plus-button {
    margin-top: 12px;
    padding: 0 10px;
}

a {
    color: #46BE9D;
    font-weight: 500;
    position: relative;
    text-decoration: none;
    font-weight: normal;
    font-size: 16px;
    transition: 0.3s all ease;
}
a:before {
    transition: 0.2s all ease;
}
a:hover {
    color: #1cd9ea;
}
a:focus {
    color: #1cd9ea;
}

.link-icon {
    display: inline-block;
    padding: 6px 12px;
}

ul {
    margin: 0;
    list-style: none;
}

.disabled {
    cursor: not-allowed;
    opacity: 0.4;
}

.flex {
    display: flex;
    flex-wrap: wrap;
}
.flex-align-center {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.flex-center {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.flex-space-between {
    justify-content: space-between;
    display: flex;
}
.flex-no-wrap {
    display: flex;
    flex-wrap: nowrap;
}
.flex-around {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

::-webkit-scrollbar {
    width: 8px;
    height: 8px;
    margin: 2px;
}
::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
}
::-webkit-scrollbar-thumb {
    background: #ccc;
    border: 0px none #ffffff;
    border-radius: 20px;
    transition: 0.3s all ease;
}
::-webkit-scrollbar-thumb:hover {
    background: #46BE9D;
}
::-webkit-scrollbar-thumb:active {
    background: #46BE9D;
}
::-webkit-scrollbar-track {
    background: transparent;
    border: 0px none #ffffff;
    border-radius: 50px;
}
::-webkit-scrollbar-track:hover {
    background: transparent;
}
::-webkit-scrollbar-track:active {
    background: transparent;
}
::-webkit-scrollbar-corner {
    background: transparent;
}

img.circle {
    border-radius: 100%;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
    width: 80px;
    height: 80px;
    display: block;
    margin: auto;
    object-fit: cover;
    margin-bottom: 30px;
}
.row.no-max {
    max-width: 100%;
}
.relative {
    position: relative;
}
@media screen and (max-width: 640px) {
    .small-12 {
        float: none !important;
    }
}
.popup-content .row.margin-cut > .columns {
    padding: 0 6px;
}
.popup-content > .row.margin-cut {
    margin: 0 -10px;
}
.columns-margin > .columns {
    margin-bottom: 24px;
}

.font-size-small {
    font-size: 12px;
}
.font-size-small a {
    font-size: 12px;
}
.row.smaller-padding .columns {
    padding: 3px 6px;
}

/* ------------------- */
/*        LOGIN        */
/* ------------------- */

.login-box {
    box-shadow: 0 4px 5px 0 rgba(0, 0, 0, 0.14),
        0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 4px -1px rgba(0, 0, 0, 0.2);
    max-width: 380px;
    margin: auto;
    padding: 16px;
    background: #fff;
}

.login-bg {
    background: url(../img/bg-login.jpg) center center no-repeat;
    background-size: cover;
    padding: 0 15px;
    padding-top: 80px;
}
.help-links a {
    color: #46BE9D;
    font-size: 12px;
}
.checkbox-label span {
    font-size: 13px;
    line-height: 24px;
}
.checkbox-label {
    cursor: pointer;
}
.checkbox-label input {
    display: none;
}
.checkbox-label span:before {
    content: "\f00c";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    border: 2px solid rgba(0, 0, 0, 0.54);
    width: 17px;
    height: 17px;
    display: inline-block;
    border-radius: 2px;
    vertical-align: initial;
    text-align: center;
    line-height: 14px;
    color: transparent;
    transition: 0.3s all ease;
    margin-right: 5px;
}
.checkbox-label input:checked + span:before {
    background: #46BE9D;
    border: 2px solid #328871;
    color: #fff;
}
.checkbox-inline .checkbox-label {
    display: inline-block;
    margin: 5px;
}

/* ------------------ */
/*       HEADER       */
/* ------------------ */

aside {
    width: 225px;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
        0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.9);
    position: fixed;
    top: 0;
    left: -225px;
    bottom: 0;
    overflow: auto;
    z-index: 100;
    transition: 0.3s all ease;
}
aside.active {
    left: 0;
}
aside.active + header {
    left: 225px;
}
header {
    position: fixed;
    left: 0;
    padding: 0 15px;
    padding-left: 0;
    z-index: 101;
    top: 0;
    right: 0;
    transition: 0.3s all ease;
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: -o-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: linear-gradient(to right, #46BE9D 0%, #328871 100%);
    height: 64px;
    color: #fff;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14),
        0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
}

.timer-name {
    color: #fff;
    margin: 0 16px;
}
.timer-name:hover {
    color: #fff;
    text-decoration: underline;
}
.timer-control {
    margin: 0 4px;
    width: 39px;
    font-size: 14px !important;
    background: #fff;
    color: #273c5f;
}
.timer-control:hover {
    background: #283d60;
}
#timer {
    display: flex;
    align-items: center;
    margin-left: 15px;
}
@media screen and (max-width: 1054px) {
    .timer-name {
        display: none;
    }
    .timer-time {
        margin-left: 16px;
    }
}
header > .left {
    display: flex;
    align-items: center;
    height: 100%;
}

.info-numbers {
    position: absolute;
    top: 1px;
    left: 28px;
    text-align: center;
    font-size: 10px;
    font-weight: bold;
    line-height: 17px;
    padding: 0 5px;
    border-radius: 30%;
    color: #fff;
    white-space: nowrap;
    z-index: 11;
}
.header-logo {
    margin-bottom: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #ddd;
    padding: 12px 0;
}

.header-logo img {
    max-width: 80%;
    max-height: 100px;
    margin: 0 auto;
}

.header-logo .img-bottom {
    margin-top: 10px;
}

.header-dark-logo {
    display: none;
}

nav a {
    font-size: 14px;
    display: block;
    flex-shrink: 0;
    line-height: 42px;
    color: #757575;
    transition: unset;
}
nav a:hover,
nav a:focus {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, #46BE9D),
        color-stop(100%, #328871)
    );
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    color: #ffffff;
}
nav a i {
    width: 50px;
    text-align: center;
    font-size: 16px;
    position: relative;
    z-index: 10;
}
nav a > .right {
    font-size: 18px;
    padding: 0 10px;
}
nav a.active {
    border-left: 4px solid #333;
    color: #ffffff;
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, #46BE9D),
        color-stop(100%, #328871)
    );
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
}
nav a.active > i {
    margin-left: -4px;
}
nav a.disabled {
    background: #f3f3f3;
    cursor: default;
    color: #cecece;
}
nav a.active:hover {
    color: #fff;
}
nav ul {
    margin: 0;
    list-style: none;
}
nav .dropdown {
    display: none;
    background: rgba(0, 0, 0, 0.07);
}
.dropdown i {
    font-size: 14px;
}
nav hr {
    margin: 6px 12px;
    margin-top: 10px;
}
nav p {
    color: #777777;
    margin: 0;
    font-size: 10px;
    margin-bottom: 6px;
    padding: 0 12px;
    text-transform: uppercase;
}

.user-avatar {
    float: right;
    padding-top: 10px;
}

.dropdown-ul li.user-avatar > a:after {
    display: none;
}

.menu-toggle {
    height: 48px;
    display: inline-block;
    width: 48px;
    color: #fff;
    font-size: 32px;
    text-align: center;
    line-height: 48px;
    margin: 8px 0;
}
.menu-toggle:hover {
    color: #fff;
}

.dropdown-ul {
    line-height: 64px;
}
.dropdown-ul li {
    position: relative;
    display: inline-block;
    color: #757575;
}
.dropdown-ul li > a {
    color: #fff;
    padding: 0 15px;
    display: block;
    position: relative;
}
.dropdown-ul .dropdown li {
    display: block;
}
.dropdown-ul .dropdown a {
    color: #757575;
    padding: 4px 20px 4px 20px;
    white-space: nowrap;
    width: 100%;
    display: block;
}
.dropdown-ul .dropdown a i {
    margin-right: 6px;
}
.dropdown-ul .dropdown a:hover {
    background-color: #e0e0e0;
}
.dropdown-ul img {
    border-radius: 100%;
    height: 43px;
    width: 43px;
    object-fit: cover;
    margin: 0;
}
.dropdown-ul .dropdown {
    opacity: 0;
    visibility: hidden;
    transition: 0.4s all ease;
    right: 0;
    top: 55px;
    padding: 5px 0;
    position: absolute;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transform-origin: 100% 0;
    -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
    transform: scale(0);
}
.dropdown-ul .dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
}

.dropdown-ul .notifications-ul li {
    display: flex;
    align-items: center;
    padding: 10px;
    border-bottom: 1px solid #e8e8e8;
}
.dropdown-ul .dropdown li:hover a, .dropdown-ul .dropdown li:hover i {
    background-color: #e0e0e0;
}

.dropdown-ul .dropdown li i {
    padding: 12px;
}
.remove-user-push-notification:hover {
    color: red;
    cursor: pointer;
}
.dropdown-ul li a .info-numbers {
    top: 10px;
    left: 23px;
}
.dropdown-ul .notifications-ul li:last-child {
    border: 0;
}
.dropdown-ul .notifications-ul {
    min-width: 340px;
    padding: 0;
}
.notifications-ul li a > i {
    color: #333;
    background: transparent;
    transition: 0.3s all ease;
    border-radius: 50%;
    width: 26px;
    height: 26px;
    text-align: center;
    line-height: 26px;
    font-size: 14px;
}
.notifications-ul li a:hover i {
    background: #46BE9D;
    color: #fff;
}
.notifications-ul li span.notify-body {
    font-size: 13px;
    width: calc(100% - 135px);
    max-width: 240px;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 12px;
}
.notifications-ul .notify-time-ago {
    color: #a2a2a2;
    width: 85px;
    font-size: 11px;
    padding: 0;
    text-align: right;
    margin-left: 10px;
}
.card-notify-time-ago {
    color: #a2a2a2;
    font-size: 11px;
    padding: 0;
    margin-right: 10px;
    vertical-align: middle;
}
.notifications-wrap p {
    margin-bottom: 8px;
}
.notifications-wrap p:last-of-type {
    margin: 0;
}

.mini-window-content li .close-notify {
    padding: 6px 4px !important;
    width: 40px;
    display: block !important;
    text-align: center;
}
.mini-window-content li .close-notify i {
    margin: 0;
}

.mini-window-header {
    padding: 10px;
    border-bottom: 1px solid #f4f4f4;
}
.mini-window-header p {
    margin: 0;
    font-size: 13px;
    text-align: center;
}
.mini-window-content {
    max-height: 200px;
    overflow: auto;
    margin: 0;
}
.mini-window-content li {
    padding: 0 !important;
}
.mini-window-content li a {
    padding: 6px !important;
    display: flex !important;
    justify-content: space-between;
    align-items: center;
}
.mini-window-footer a {
    line-height: 30px;
    text-align: center;
    font-size: 13px;
}
.mini-window-footer .columns {
    padding: 0;
}
.mini-window-footer a i {
    margin-right: 5px;
}

.warning-time-not-start {
    animation: warningPulse 2.5s linear infinite;
    margin-left: 20px;
    width: 30px;
    height: 30px;
    border-radius: 100%;
    color: #fff;
    font-size: 18px;
    text-align: center;
    line-height: 30px;
    background: red;
}

@keyframes warningPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0), 0 0 0 0 rgba(255, 0, 0);
    }
    40% {
        box-shadow: 0 0 0 30px rgba(255, 109, 74, 0), 0 0 0 0 rgba(213, 0, 0);
    }
    80% {
        box-shadow: 0 0 0 30px rgba(255, 109, 74, 0),
            0 0 0 15px rgba(255, 109, 74, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 109, 74, 0),
            0 0 0 15px rgba(255, 109, 74, 0);
    }
}

@media screen and (max-width: 750px) {
    aside {
        left: -230px;
        z-index: 1000;
        background: #fff;
    }
    aside.active + header {
        left: 0;
    }
    aside.active {
        left: 0;
    }
    header .menu-toggle {
        position: absolute;
        z-index: 10;
        background: rgba(0, 0, 0, 0.6);
        border-radius: 7px;
        top: 0;
    }
    aside.active + header .menu-toggle {
        margin-left: 215px;
    }
    header {
        left: 0;
        padding-left: 15px;
    }
    main {
        padding-left: 0 !important;
    }
    #timer {
        margin-left: 60px;
        transition: 0.3s all ease;
    }
    aside.active + header #timer {
        margin-left: 270px;
    }
    .timer-control {
        margin: 0 2px;
    }
    .timer-time {
        margin-left: 10px;
    }
    .dropdown-ul li > a {
        padding: 0 10px;
    }
}

@media screen and (max-width: 700px) {
    aside.active + header #timer {
        margin-left: 60px;
    }
}

@media screen and (max-width: 520px) {
    .timer-time {
        display: none;
    }
    .switch-box {
        display: none !important;
    }
}

/* ------------------- */
/*       CONTENT       */
/* ------------------- */

main {
    padding-top: 64px;
    padding-left: 0;
    transition: 0.3s all ease;
    position: relative;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.6);
    overflow: hidden;
}
aside.active ~ main {
    padding-left: 225px;
}
main .content-wrap {
    padding: 18px;
    position: relative;
    z-index: 1;
    /*background: #f5f5f5;*/
}

.section-title {
    padding: 18px;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.section-title div .button {
    margin-left: 10px;
}
.section-title p.info {
    margin: 0;
    line-height: normal;
}
.section-title p.info span {
    text-shadow: none;
    line-height: normal;
    text-transform: none;
    margin-right: 8px;
}
.section-title span i {
    margin: 0 3px;
    color: #525252;
}
.section-title span i.fa-clock {
    margin-left: 10px;
}

.time-and-task-wrap {
    position: fixed;
    top: 64px;
    right: 0;
    z-index: 100;
    bottom: 0;
    transition: 0.4s all ease;
    right: -560px;
}
.time-and-task-wrap.active {
    right: 0;
}
.time-and-task-inner {
    display: flex;
    height: 100%;
}
.time-and-task-wrap .timer-box {
    width: 250px;
    background: #fff;
    height: 100%;
}
#order-generator .striped-header {
    margin-left: 10px;
}
.striped-header {
    position: relative;
    display: inline-block;
}
.striped-header::after {
    content: "";
    width: 80%;
    height: 2px;
    background: linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    position: absolute;
    left: 0;
    bottom: -4px;
}
.card-header {
    background: #f9f9f9;
    padding: 18px;
}
.card-header .card-title {
    font-size: 16px;
    font-weight: 600;
    color: #333;
}
.card-header .card-title i {
    margin-right: 5px;
}
.card-header p {
    margin: 0;
}
.card-header p span,
.card-header span a {
    font-size: 13px;
}
.close-time-and-task {
    position: absolute;
    left: -40px;
    background: #fff;
    top: 50%;
    margin-top: -54px;
    padding: 45px 13px;
    border: 1px solid #e7eaec;
    border-right: 0;
    outline: 0;
}

.task-box {
    width: 270px;
    background: #fff;
    -webkit-box-shadow: -8px 0 16px 0px rgba(150, 150, 150, 0.2);
    -moz-box-shadow: -8px 0 16px 0px rgba(150, 150, 150, 0.2);
    box-shadow: -8px 0 16px 0px rgba(150, 150, 150, 0.2);
    border-right: 1px solid #e7eaec;
}
.task-list {
    overflow: auto;
    max-height: calc(100vh - 125px);
}
.task-list li {
    padding: 12px;
    background: #f9f9f9;
    cursor: pointer;
    border-bottom: 1px solid #e7eaec;
}
.task-list li.active {
    background: -webkit-gradient(
        linear,
        left top,
        right top,
        color-stop(0%, #46BE9D),
        color-stop(100%, #328871)
    );
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    color: #fff;
}
.task-list p {
    margin: 0;
    line-height: normal;
}
.task-list p span {
    font-size: 12px;
}

.timer-inner #time {
    font-size: 40px;
    color: #b9b9b9;
}
.timer-inner button {
    font-size: 26px;
    padding: 7px 9px;
    margin: 0 2px;
}
.timer-inner button[disabled] {
    color: #ddd;
}
.timer-inner {
    padding: 5px 10px;
}
.timer-box hr {
    margin: 10px auto;
    border-bottom: 1px solid #e7eaec;
}
.timer-inner p {
    font-size: 14px;
    font-weight: 600;
    color: #676767;
}
.timer-inner .button.small {
    line-height: 26px;
    padding: 0 12px;
    height: 26px;
}
.subtable {
    margin-bottom: 0!important;
}

.table-time-save-wrap {
    overflow: auto;
    max-height: 61vh;
}
.table-time-save td {
    font-size: 13px;
    padding: 2px;
    text-align: center;
}
.table-time-save tbody {
    border-left: 0;
    border-right: 0;
    border-bottom: 0;
}
.table-time-save tfoot {
    border: 0;
    background: transparent;
}
.table-time-save tr[data-elapsed-time] td {
    border-bottom: 1px solid rgb(187, 187, 187);
    border-top: 1px solid rgb(187, 187, 187);
}
.table-time-save tbody tr:nth-child(even) {
    background: transparent;
}
.table-time-save td:first-child {
    padding-left: 12px;
    color: rgba(0, 0, 0, 0.4);
}
.table-time-save td a {
    line-height: 28px;
    padding: 0 8px;
    display: inline-block;
}
#time-clone {
    color: #fff;
    opacity: 0.9;
}

.add-solo-time input {
    width: 50%;
    display: inline-block;
    margin: 0;
    border: 1px solid #e8e8e8;
    height: 36px;
}

@media screen and (max-width: 560px) {
    .time-and-task-inner {
        flex-direction: column;
    }
    .time-and-task-wrap .timer-box,
    .time-and-task-wrap .task-box {
        width: 310px;
        min-height: 44vh;
        overflow: auto;
    }
    .table-time-save-wrap {
        max-height: 19vh;
    }
}

.card {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14),
        0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    padding: 18px;
    background: #fff;
    margin-bottom: 12px;
}
p.help {
    font-size: 12px;
    margin-bottom: 4px;
}
.card .banner {
    height: 100px;
    object-fit: cover;
    width: 100%;
}
.card .avatar-hover .circle {
    margin-top: -58px;
    margin-bottom: 8px;
}
.card p.strong {
    font-weight: bold;
    text-align: center;
    font-size: 18px;
    margin-bottom: 0;
    line-height: 20px;
}
.card p.details {
    text-align: center;
    font-size: 13px;
    color: #828282;
}
main .card.no-padding {
    padding: 0;
}
main .card.no-padding > .card-padding {
    padding: 18px;
}
.card-title {
    color: #333;
    margin-bottom: 20px;
}
main p.info {
    padding-left: 10px;
    margin-bottom: 10px;
    font-weight: bold;
    text-transform: uppercase;
    font-size: 22px;
    text-shadow: 1px 1px 6px #929292;
    color: #333;
}
.info-box {
    display: flex;
    margin-bottom: 25px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
        0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}
.info-box i {
    width: 80px;
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: -o-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: linear-gradient(to right, #46BE9D 0%, #328871 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
}
.info-box .text {
    padding: 10px;
    color: #333;
}
.info-box p {
    text-transform: uppercase;
    font-size: 14px;
    margin: 0;
}
.info-box span {
    font-size: 22px;
}

.avatar-hover,
.worker-hover {
    position: relative;
}
.avatar-hover:hover .overlay,
.worker-hover:hover .worker-overlay {
    opacity: 1;
    visibility: visible;
}
.avatar-hover .overlay,
.worker-hover .worker-overlay,
.del-worker-overlay {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 100px;
    text-align: right;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s all ease;
}
.del-worker-overlay {
    top: -2px;
    right: -2px;
}
.workers-td .worker-hover:hover .del-worker-overlay {
    opacity: 1;
    visibility: visible;
}
.del-worker-overlay .button {
    line-height: 24px;
    padding: 0 8px;
}
.avatar-hover .input-file + label i {
    margin: 0;
}
.avatar-hover .button {
    padding: 0 8px;
}
.worker-hover {
    margin: 0 4px;
    display: inline-block;
    font-size: 0;
}
.worker-hover .worker-overlay {
    top: 100%;
    background: #333;
    color: #fff;
    padding: 3px 5px;
    font-size: 12px;
    text-align: center;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 10;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    transition: unset;
}
.worker-hover .worker-overlay:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #333;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -6px;
}
.worker-hover img.circle {
    height: 48px;
    width: 48px;
    margin: 0;
}

.worker-hover img.circle.circle-size-1 {
    height: 26px;
    width: 26px;
}

.worker-hover img.circle.circle-size-2 {
    height: 19px;
    width: 19px;
}

.workers-box .worker-hover {
    margin-bottom: 8px;
}

.project-progress {
    text-align: right;
}
.project-progress > span {
    font-size: 12px;
}
.project-progress .progress {
    margin-top: 0;
}

.role-box > span {
    font-style: italic;
    position: relative;
    margin: 0 6px;
    cursor: default;
    display: inline-block;
    margin-bottom: 10px;
}
.role-box span span.text {
    transition: 0.5s all ease;
    position: relative;
    z-index: 1;
    padding: 7px 12px;
    border-radius: 3px;
    display: inline-block;
    font-size: 14px;
    box-shadow: 1px 1px 6px -1px #fff;
    background: #f3f3f3;
    box-shadow: 1px 1px 6px -1px #000000;
}
.role-box span.del-role {
    cursor: pointer;
    position: absolute;
    top: -8px;
    right: -10px;
    background: #c14244;
    line-height: 9px;
    color: #fff;
    border-radius: 5px;
    z-index: 2;
    transition: 0.5s all ease;
    width: 22px;
    height: 22px;
    text-align: center;
    font-style: normal;
    padding: 3px 0;
    font-size: 15px;
    opacity: 0;
    visibility: hidden;
}
.role-box > span:hover span.del-role {
    opacity: 1;
    visibility: visible;
}

.icons-box i {
    margin: 5px;
    font-size: 18px;
}
.icons-box .icon {
    display: inline-block;
    margin: 3px;
    border: 2px solid transparent;
    transition: 0.3s all ease;
    border-radius: 5px;
    cursor: pointer;
}
.icons-box .icon input {
    display: none;
}
.icons-box .icon.active {
    border-color: #c14244;
}

.reminder-box {
    display: flex;
    flex-wrap: wrap;
}
.reminder-box .input-label {
    margin-bottom: 5px;
}
.reminder-box .flex {
    margin: 0 20px;
}

.week-label {
    display: flex;
    justify-content: space-between;
}
.week-input {
    display: none;
}
.week-input input {
    display: inline-block;
    height: 24px;
    margin-left: 7px;
    padding: 3px;
    font-size: 13px;
    margin-bottom: 6px;
}

.project-box .smaller-padding {
    padding: 0 9px;
}

@media screen and (max-width: 640px) {
    .project-box .smaller-padding .columns > div {
        text-align: left !important;
    }
    .project-box .smaller-padding .columns:nth-child(2n) > div {
        text-align: right !important;
    }
}

.project-box {
    padding-top: 8px;
}
.project-box hr {
    margin: 6px 0;
    margin-bottom: 12px;
}

.project-title {
    margin: 0;
}
.project-title a {
    font-size: 13px;
    line-height: 23px;
    display: inline-block;
    padding: 0 5px;
    color: #333;
}
.project-title a:hover {
    color: #46BE9D;
}

.project-kanban-wrap {
    max-width: 100%;
    overflow: auto;
}
.project-kanban {
    overflow: hidden;
    padding-bottom: 10px;
    min-width: 820px;
}
.project-kanban .column {
    border-right: 1px dashed #8e8e8e;
    max-width: 270px;
    padding: 0;
}
.project-kanban .column ul {
    min-height: 54vh;
    max-height: 55vh;
    overflow: auto;
    margin-bottom: 10px;
    padding: 0 15px;
}
.project-kanban .column .column-title {
    padding: 10px 25px;
    color: #fff;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    text-align: center;
    border: 0;
    border-radius: 0;
    margin: 0 15px;
    margin-bottom: 20px;
}
.project-kanban .todo-column {
    background: #777777 !important;
}
.project-kanban .column .in-progress-column {
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: -o-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: linear-gradient(to right, #46BE9D 0%, #328871 100%);
}
.project-kanban .done-column {
    background: #4caf50 !important;
}
.project-kanban .column li {
    background: #f5f5f5;
    margin-bottom: 10px;
    border-radius: 4px;
    border: 1px solid #bbb;
}

.project-kanban .column .worker-hover img.circle {
    width: 38px;
    height: 38px;
}
.project-kanban .column .id-task > span {
    font-size: 13px;
    display: inline-block;
    padding: 2px 10px;
    color: #333;
}
.project-kanban .id-task .task-details {
    display: flex;
    justify-content: space-around;
    margin-top: 10px;
}
.project-kanban .id-task .task-details span {
    font-size: 12px;
}
.project-kanban .id-task .task-details span.none {
    opacity: 0.2;
}
.project-kanban .column hr {
    margin: 10px 0;
}
.project-kanban .column .add-task {
    width: 94%;
    margin: auto;
    display: block;
}
.project-kanban .column .button-box {
    text-align: right;
    padding: 5px;
}
.project-kanban .column textarea {
    background: transparent;
    font-size: 13px;
    border: 0;
    outline: 0;
    box-shadow: none;
    margin: 0;
    line-height: normal;
    height: auto;
    padding: 0 9px;
    resize: none;
    overflow: hidden;
    display: block;
    padding-top: 10px;
}
.project-kanban .column .worker-box {
    margin-top: 2px;
    padding: 5px;
    min-height: 10px;
    padding-top: 10px;
}
.project-kanban .column .worker-box.active {
    border-top: 1px solid #cacaca;
}
.project-kanban .id-task {
    cursor: pointer;
    padding-top: 10px;
    position: relative;
}
.project-kanban .id-task.ui-droppable-hover:after {
    content: "Upuść osobę tutaj, aby \00000A przydzielić ją do zadania";
    white-space: pre;
    position: absolute;
    font-size: 14px;
    text-align: center;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11;
}
.ui-draggable-dragging {
    z-index: 10 !important;
}
.project-kanban .ui-sortable-placeholder {
    background: #f7f7f7 !important;
    border: 1px dashed #bbb !important;
    height: 110px;
}

.workers-list {
    position: absolute;
    white-space: nowrap;
    top: -17px;
    width: auto;
    opacity: 0;
    transition: 0.3s all ease;
    visibility: hidden;
    background: #cecece;
    padding: 0 8px;
    border-radius: 5px;
    height: 60px;
    display: flex;
    align-items: center;
    -webkit-box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 0 1px 10px 0px rgba(0, 0, 0, 0.65);

    position: absolute;
    right: 55px;
}
.workers-list.active {
    opacity: 1;
    visibility: visible;
}
.workers-list span {
    text-transform: none;
    line-height: normal;
}
.workers-list img.circle {
    min-width: 48px;
}

.tip-desc {
    position: relative;
}
.tip-desc .tip-desc-overlay {
    position: absolute;
    text-transform: none;
    line-height: normal;
    top: 100%;
    background: #333;
    color: #fff;
    padding: 3px 5px;
    font-size: 12px;
    text-align: center;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 10;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    transition: unset;
    opacity: 0;
    visibility: hidden;
    margin-top: 4px;
}
.tip-desc:hover .tip-desc-overlay {
    opacity: 1;
    visibility: visible;
}
.tip-desc-overlay:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #333;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -6px;
}

.card.row.no-max {
    padding: 18px 10px;
    margin: 0 15px;
}
@media screen and (max-width: 640px) {
    .card.row.no-max {
        padding: 18px 10px;
        margin: 0 10px;
    }
}
.files-ul li {
    display: inline-block;
    margin-right: 14px;
    margin-bottom: 2px;
}
.files-ul li a {
    font-size: 15px;
}
.note-box {
    /* border-radius: 10px; */
    /* opacity: 0.7; */
    /* background: rgb(241, 222, 111)!important; */
}
.note-box {
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14),
        0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.7);
    position: relative;
    border-radius: 6px;
    margin-bottom: 18px;
}
.note-toolbar {
    border-bottom: 1px solid #b9b9b9;
    padding-bottom: 6px;
}
.note-title {
    width: 100%;
    padding: 0 12px;
    font-size: 15px;
    /* padding-right: 3px; */
}
.note-color {
    position: absolute;
    font-size: 20px;
    top: -5px;
    left: 12px;
    text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.4);
}
.note-links {
    width: 100%;
    text-align: right;
    white-space: nowrap;
    font-size: 0;
}
.note-links a {
    color: #333;
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
}
.note-links a:hover {
    color: #1cd9ea;
}
.note-content {
    padding: 10px 12px;
}
.note-content p {
    font-size: 14px;
    margin-bottom: 4px;
}

.note-files li {
    border-top: 1px solid #b9b9b9;
}
.note-files a {
    padding: 5px 12px;
    display: block;
    font-size: 14px;
}
.note-files .note-file-download,
.note-files .note-file-delete {
    color: #333;
    padding: 5px 10px;
    z-index: 1;
    position: relative;
}
.note-files .note-file-download:hover,
.note-files .note-file-delete:hover {
    color: #1cd9ea;
}
.note-deleted-at {
    font-size: 12px;
    padding: 4px 5px;
    text-align: right;
}
#img-prev-target img {
    max-height: 70vh;
}

.notes-project-box {
    background-color: #fff;
    border: 0 solid transparent;
    border-radius: 0.25rem;
    box-shadow: 0 6px 10px 0 rgba(0, 0, 0, 0.14),
        0 1px 18px 0 rgba(0, 0, 0, 0.12), 0 3px 5px -1px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.notes-project-tabs {
    border-bottom: 1px solid #edf1f7;
    /* white-space: nowrap;
  overflow: auto; */
}
.notes-project-tabs a {
    padding: 10px 15px;
    color: #8f9bb3;
    display: inline-block;
    position: relative;
    text-align: center;
    min-width: 80px;
    white-space: nowrap;
}
.notes-project-tabs a:before {
    content: "";
    position: absolute;
    width: 100%;
    border-radius: 3px;
    bottom: -2px;
    display: block;
    height: 4px;
    left: 0;
    background: transparent;
}
.notes-project-title {
    margin: 0;
    padding: 6px 15px;
    border-bottom: 1px solid #edf1f7;
}

.notes-project-tabs a:hover {
    color: #333;
}
.notes-project-tabs a:hover:before {
    background: #818181;
}
.notes-project-tabs .add-classic-note,
.notes-project-tabs .add-classic-note:hover {
    color: #46BE9D;
}
.notes-project-tabs .add-classic-note:hover:before {
    background: -webkit-linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    background: linear-gradient(30deg, #46BE9D 0%, #328871 100%);
}
.notes-project-tabs a.active {
    color: #46BE9D;
}
.notes-project-tabs a.active:before {
    background: #46BE9D;
    background: -webkit-linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    background: linear-gradient(30deg, #46BE9D 0%, #328871 100%);
}
.notes-project-note {
    padding: 15px 20px;
    position: relative;
    padding-top: 28px;
}
.notes-project-note .note-toolbar {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 20px;
    right: 20px;
    padding: 0;
    border: 0;
}
.notes-project-note .note-toolbar .note-links {
    width: auto;
    display: inline-block;
}
.notes-project-files li {
    display: inline-block;
    padding: 10px;
}
.order-generator {
    display: flex;
    align-items: stretch;
}
.order-generator form {
    width: 100%;
}
.order-generator form input,
.order-generator form select,
.order-generator form textarea {
    border: 1px solid #e8e8e8;
    border-radius: 5px;
}
.order-preview {
    width: 100%;
    height: 100%;
}

.order-list a,
.order-list input,
.order-list select {
    font-size: 13px;
    margin: 0;
}
.order-list select {
    width: inherit;
    max-width: 100%;
}

@media (max-width: 1140px) {
    .order-generator form .form-field {
        width: 100%;
    }
}

/* ------------------ */
/*        MAIL        */
/* ------------------ */

.mail-toolbar {
    margin: 0;
}
.mail-toolbar li {
    list-style-type: none;
    display: inline-block;
    margin: 0 4px;
    position: relative;
}
.mail-toolbar li a {
    text-align: center;
    display: inline-block;
    padding: 4px 5px;
    color: #333;
    font-size: 14px;
}
.mail-toolbar li a:hover {
    color: #46BE9D;
}

.mail-toolbar li a span {
    display: block;
}
.mail-toolbar li a i {
    display: block;
    font-size: 18px;
}
.mail-toolbar .info-numbers {
    left: auto;
    right: 12px;
    top: -3px;
}

.mail-toolbar-input {
    text-align: right;
}

.mail-toolbar-input .input-label {
    width: 300px;
    margin: auto;
    display: inline-block;
}

.mailbox-table tbody tr {
    font-weight: 600;
    cursor: pointer;
    transition: 0.2s all ease;
}
.mailbox-table tr.read-after {
    opacity: 0.7;
    background: rgba(0, 0, 0, 0.2) !important;
    font-weight: normal;
}
.mailbox-table tbody tr:hover,
.mailbox-table tbody tr.read-after:hover {
    background: rgba(14, 164, 225, 0.55) !important;
}
.mailbox-table td,
.mailbox-table th {
    text-align: left;
    white-space: normal;
}
.mailbox-table td:last-child,
.mailbox-table th:last-child {
    text-align: right;
    min-width: 70px;
}

.mailbox-table td:first-child {
    max-width: 400px;
}

.mailbox-table td:nth-child(2) {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    vertical-align: middle;
    max-width: 50vw;
}
.mailbox-table .mail-content-short {
    color: #7d7d7d;
    font-weight: normal;
}

.message-box {
    border: 1px solid #bbb;
    margin-bottom: 14px;
    border-radius: 5px;
    padding: 8px;
    overflow: hidden;
    min-width: 440px;
    display: inline-block;
}
.message-avatar {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e0e0e0;
}
.message-avatar p {
    margin: 0;
    line-height: 10px;
    font-size: 14px;
}
.message-receiver {
    text-align: right;
}
.message-receiver .worker-hover {
    vertical-align: middle;
}
.message-avatar img {
    width: 40px;
    height: 40px;
    border-radius: 100%;
    margin-right: 12px;
    object-fit: cover;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.message-box small {
    font-size: 10px;
    color: #848484;
    line-height: 10px;
}
.message-box.my-answer {
    float: right;
}
.message-box.my-answer .message-avatar {
    justify-content: flex-start;
    flex-direction: row-reverse;
}
.message-box.my-answer .message-avatar img {
    margin-right: 0;
    margin-left: 12px;
}
.message-box.my-answer .message-avatar p {
    text-align: right;
}

.message-content {
    padding: 0 6px;
}
.message-content p {
    margin: 0;
    font-size: 14px;
}

.mail-title h3 {
    font-size: 16px;
    margin: 0;
    font-weight: 600;
}
.mail-title {
    font-size: 13px;
    margin: 0;
}
.mail-title h3 span {
    font-size: 13px;
}
.mail-bg {
    background: #f1f1f1;
    padding: 12px;
}
.mail-bg .more-text {
    position: relative;
    border: 1px solid #333;
    padding: 10px;
    font-size: 13px;
}
.mail-bg .more-text .iframe-overlay iframe {
    max-height: 200px;
}
.mail-bg .more-text.active .iframe-overlay iframe {
    max-height: unset;
}
.mail-bg .more-text > .button:after {
    content: "Rozwiń";
}
.mail-bg .more-text.active > .button:after {
    content: "Zwiń";
}
.mail-bg .more-text iframe {
    width: 100%;
    height: calc(100vh - 330px);
}
.mail-bg .more-text > .button {
    position: absolute;
    margin: auto;
    bottom: 0;
    right: 0;
}
.task-name-link {
    max-width: 480px;
    overflow: hidden;
    display: block;
    text-overflow: ellipsis;
    padding: 6px;
    padding-left: 0;
    padding-top: 0;
    padding-right: 60px;
    position: relative;
    font-size: 14px;
}
.task-name-link .button {
    position: absolute;
    right: 0;
    top: 0;
    width: auto !important;
    line-height: 25px;
    min-height: 25px;
}

/* ------------------ */
/*       TABLES       */
/* ------------------ */

.no-sticky {
    position: relative!important;
}

.table-scroll table {
    position: relative;
    border-collapse: collapse;
    white-space: nowrap;
    font-size: 13px;
    background-color: #fff;
    border: 0;
}

.table-scroll table.wrap {
    white-space: unset;
}

.table-scroll table td {
    position: relative;
    height: 44px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    padding: 4px 8px !important;
    box-sizing: border-box;
}
.table-scroll table th {
    padding: 10px 8px !important;
    font-size: 13px;
    background-color: rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: #333;
    text-align: center;
}
.table-scroll table tbody tr:nth-child(even) {
    background-color: rgba(0, 0, 0, 0.03);
}
.table-scroll table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.2);
}
.table-scroll table tbody tr:hover td {
    border: 1px solid rgba(0, 0, 0, 0.35);
}
.table-scroll table tbody tr {
    transition: 0.3s all ease;
}

.table-scroll table tbody tr td {
    transition: 0.3s all ease;
}
.table-scroll table thead {
    background: #fff;
    color: #787878;
    font-size: 12px;
}
.table-scroll table tbody,
table tfoot,
table thead {
    border: 1px solid #dcdcdc;
}
.table-scroll table {
    width: 100%;
}

.table-scroll table.calendar-table tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.01);
}
.table-scroll table.calendar-table tbody tr:hover td {
    border: 1px solid #ddd;
}
.table-scroll table.user-statistics-table td,
.table-scroll table.bans-table td,
.table-scroll table tbody.edit-task-files-list td,
.table-scroll table tbody.new-task-files-list td {
    height: 44px;
}
.table-scroll table.admin-user-tasks-table td {
    background: #fff;
}
.table-scroll table.user-statistics-table tr:nth-child(even) td,
.table-scroll table.bans-table tr:nth-child(even) td,
.table-scroll table.admin-user-tasks-table tr:nth-child(even) td,
.table-scroll table tbody.edit-task-files-list tr:nth-child(even) td,
.table-scroll table tbody.new-task-files-list tr:nth-child(even) td, .table-scroll table.case-commissions-table tr:nth-child(even) td {
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.15);
}
.table-scroll table.user-statistics-table tbody tr:hover td,
.table-scroll table.bans-table tbody tr:hover td,
.table-scroll table.admin-user-tasks-table tbody tr:hover td,
.table-scroll table.case-commissions-table tbody tr:hover td,
.table-scroll table tbody.edit-task-files-list tr:hover td,
.table-scroll table tbody.new-task-files-list tr:hover td {
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(0, 0, 0, 0.45);
}
table.subtable tr:hover td {
    background: rgba(0, 0, 0, 0.2);
}
table {
    border: 0;
}

.center-table,
.center-table th {
    text-align: center;
}
.center-table th:first-child,
.center-table td:first-child {
    text-align: left;
}
.center-table td:last-child,
.center-table th:last-child {
    text-align: right;
}

.center-table-alt th,
.center-table-alt td {
    text-align: center;
}

.article-list img {
    height: 50px;
    object-fit: cover;
}
.article-list .img-td {
    padding: 4px 4px !important;
}

.tasks-table {
    width: 100%;
}
.task-icon-status {
    margin: 0 5px;
}
.tasks-table .color {
    padding: 6px;
    display: inline-block;
    border-radius: 4px;
}
.tasks-table th {
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}
.tasks-table td {
    font-size: 13px;
}

.tasks-table td:last-child {
    width: 10%;
    text-align: right;
    white-space: nowrap;
}
.tasks-table td:nth-child(1) {
    text-align: left;
}
.tasks-table td:nth-child(2),
.tasks-table th:nth-child(2) {
    text-align: left;
}
.tasks-table td:nth-child(3) {
    width: 105px;
}
.tasks-table td:nth-child(4) {
    min-width: 150px;
    white-space: normal;
}
.tasks-table td .button.small {
    font-size: 10px;
    white-space: nowrap;
    width: 100%;
    padding: 0 8px;
    line-height: 25px;
    min-height: 25px;
}
.tasks-table td {
    text-align: center;
}

.tasks-group-table th {
    text-align: left;
    font-weight: 600;
    font-size: 15px;
    color: #333;
}
.tasks-group-table td {
    font-size: 13px;
}
.tasks-group-table th:last-child {
    text-align: center;
}
.tasks-group-table a {
    font-size: 15px;
    display: inline-block;
    padding: 4px 5px;
}

.workers-table th {
    text-align: left;
    border: 0;
    position: relative;
}
.workers-table input[type="text"] {
    margin: 0;
    font-size: 13px;
    border: 0;
    outline: 0;
    height: auto;
    line-height: normal;
    padding: 6px 10px;
    max-width: 320px;
    display: inline-block;
    padding-right: 24px;
}
.workers-table input[type="text"] + i {
    line-height: 27px;
    z-index: 1;
    display: inline-block;
    position: absolute;
    right: 15px;
}
.workers-table td:last-child,
.workers-table th:last-child {
    text-align: center;
}
.user-table tbody td:first-child {
    width: 89px;
}
.user-table img.circle {
    margin: 0;
    max-height: 60px;
    max-width: 60px;
}
.statistics-user img {
    max-width: 50px;
    max-height: 50px;
    margin-bottom: 3px;
}
.statistics-user {
    padding: 6px;
    text-align: center;
    font-size: 12px;
}
.statistic-row {
    cursor: pointer;
}
.table-scroll .statistic-table .statistic-users-row td {
    height: auto;
    padding: 0 14px !important;
}
.project-name {
    min-width: 170px;
    display: inline-block;
    color: #333;
}
.group-name {
    margin-left: 10px;
    color: #333;
}

.sell-table {
    white-space: nowrap;
}
.sell-table thead th {
    border-right: 1px solid#dcdcdc;
}

.order-table .bg-green {
    background: green;
}

.sell-table.order-table thead th {
    border: none;
    position: sticky;
    z-index: 50;
    top: -1px;
    background: #fff;
}

.sell-table.order-table th:nth-child(-n + 3),
.sell-table.order-table td:nth-child(-n + 3) {
    position: sticky;
    background: #fff;
    z-index: 60;
}

.sell-table.order-table th:nth-child(-n + 3) {
    position: sticky;
    background: #fff;
    z-index: 70;
}

.sell-table.order-table th:nth-child(1),
.sell-table.order-table td:nth-child(1) {
    width: 48px;
    left: 0;
}

.sell-table.order-table th:nth-child(2),
.sell-table.order-table td:nth-child(2) {
    width: 146px;
    left: 48px;
}

.sell-table.order-table th:nth-child(3),
.sell-table.order-table td:nth-child(3) {
    left: 194px;
}

.sell-table thead th:first-child {
    border-left: none;
}
.sell-table thead th:last-child {
    border-right: none;
}
.sell-table tr td {
    border: 1px solid rgba(0, 0, 0, 0.12);
}

.sell-table select {
    min-width: 100%;
}

.sell-table .icon-paid,
.sell-table .icon-unpaid {
    margin-right: 5px;
}

.sell-table .icon-paid {
    color: #a3d166;
}

.sell-table .icon-unpaid {
    color: #ff6a6a;
}

.sell-table .cell-no-padding {
    padding: 0 !important;
}

.sell-table table {
    margin: 0;
}

.sell-table table tbody {
    border: none;
}
.sell-table table tbody tr:first-child td {
    border-top: none;
}
.sell-table table tbody tr:last-child td {
    border-bottom: none;
}
.sell-table table tbody tr td:first-child {
    border-left: none;
}
.sell-table table tbody tr td:last-child {
    border-right: none;
}
.sell-table {
    width: 100%;
}

.order-table-wrapper {
    max-height: calc(90vh - 64px);
}

.order-table,
td {
    border-collapse: collapse;
}

.sell-table th {
    position: relative;
}
th.sort-up:after,
th.sort-down:after {
    position: absolute;
    font-weight: 900;
    font-family: "Font awesome 5 Free";
    top: 18px;
    padding-left: 5px;
}

th.sortable:hover,
th.files-sortable:hover,
th.user-files-sortable:hover {
    cursor: pointer;
}
th.sort-up:after {
    content: "\f0de";
    transform: translateY(calc(-50% + 3px));
}
th.sort-down:after {
    content: "\f0dd";
    transform: translateY(calc(-50% - 2px));
}

.schedule-table th,
td {
    border: 1px solid rgba(0, 0, 0, 0.12);
}
.schedule-table th {
    text-align: center;
}
.schedule-table input {
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-bottom: 1px solid transparent;
    background: transparent;
    text-align: center;
    font-size: 13px;
}
.schedule-table input:focus {
    border: none;
    background: transparent;
    border-bottom: 1px solid #46BE9D;
    box-shadow: none;
}
.schedule-table td.date {
    font-weight: 700;
}
.schedule-table td.today {
    background: #a2ca3c;
}
.schedule-table .double-border-left {
    border-left: 2px solid rgba(0, 0, 0, 0.6);
}
.schedule-table .double-border-right {
    border-right: 2px solid rgba(0, 0, 0, 0.6);
}
.schedule-table thead tr:first-child :nth-child(1n + 3) {
    border-right: 2px solid rgba(0, 0, 0, 0.6);
    border-left: 2px solid rgba(0, 0, 0, 0.6);
}
.schedule-table .th-from {
    border-left: 2px solid rgba(0, 0, 0, 0.6);
    border-right: 1px solid rgba(0, 0, 0, 0.12);
}
.schedule-table .th-to {
    border-left: 1px solid rgba(0, 0, 0, 0.12);
    border-right: 2px solid rgba(0, 0, 0, 0.6);
}
.schedule-table tbody tr td:nth-child(2n + 3) {
    border-left: 2px solid rgba(0, 0, 0, 0.6);
}
.schedule-table tbody tr td:last-child {
    border-right: 2px solid rgba(0, 0, 0, 0.6);
}
.schedule-table tbody tr td:nth-child(1n + 3) {
    padding: 0 !important;
}
.table-scroll table.sortable-table thead th {
    padding-right: 20px !important;
}
table tbody .td-with-field {
    padding: 0 !important;
}
table tbody .td-with-field select,
table tbody .td-with-field input {
    height: 100%;
    border: none;
}

.calendar-month th {
    border: 1px solid #ddd;
}
.table-scroll table.calendar-month td {
    border: 1px solid #ddd;
    width: 14%;
    /* background: #efefef; */
}
.table-scroll table.calendar-month td.calendar-td {
    position: relative;
    cursor: pointer;
    vertical-align: top;
    /* background-color: #fff; */
}
.table-scroll table.calendar-month td.calendar-td.weekend {
    background-color: rgb(233 191 191 / 8%);
}
.table-scroll table.calendar-month td.calendar-td.event {
    background-color: rgb(233 191 191 / 15%);
}
.table-scroll table.calendar-month td.calendar-td input {
    opacity: 0;
    visibility: hidden;
    margin: 0;
}
.table-scroll table.calendar-month td.calendar-td:after {
    color: #fff;
    content: "";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    font-size: 40px;
    right: 3px;
    bottom: -12px;
}
.table-scroll table.calendar-month td.calendar-td.checked {
    background-color: #46BE9D;
    color: #fff;
}
.table-scroll table.calendar-month td.calendar-td.checked:after {
    content: "\f1d8";
}
.table-scroll table.calendar-month td.calendar-td.remote {
    /* background-color: #1391c3;
    color: #fff; */
}
.table-scroll table.calendar-month td.calendar-td.modified_hours {
    /* background-color: #6bfaca; */
}
.table-scroll table.calendar-month td.calendar-td.cancelling {
    background-color: #f44336;
    color: #fff;
}
.table-scroll table.calendar-month td.calendar-td.verify {
    background-color: #ff9800;
    color: #fff;
}
.table-scroll table.calendar-month td.calendar-td.verify:after {
    content: "\f017";
}
.table-scroll table.calendar-month td.calendar-td.verify.checked,
.table-scroll table.calendar-month td.calendar-td.event.checked {
    background-color: #f44336;
    color: #fff;
}
.table-scroll table.calendar-month td.calendar-td.verify.checked:after,
.table-scroll table.calendar-month td.calendar-td.event.checked:after {
    content: "\f00d";
}
.table-scroll table.calendar-month td.calendar-td.accepted {
    background-color: #a2ca3d;
    color: #fff;
}
.table-scroll table.calendar-month td.calendar-td.accepted:after {
    content: "\f00c";
}
.table-scroll table.calendar-month td.calendar-td.accepted.checked {
    background-color: #f44336;
    color: #fff;
}
.table-scroll table.calendar-month td.calendar-td.accepted.checked:after {
    content: "\f00d";
}

.table-scroll table.calendar-month td.calendar-td ul li img {
    margin: 0;
    display: inline-block;
    max-width: 34px;
    max-height: 34px;
    margin-right: 8px;
}

.schedule-other-workers li {
    margin-bottom: 10px;
}

table.calendar-month .remote-work {
    background: #46BE9D;
    color: #fff;
    padding: 5px;
    text-align: center;
}

.table-toolbar .tab-button {
    margin: 0;
    display: inline-block;
}
.table-toolbar .tab-button span {
    position: relative;
    padding: 8px 12px;
    margin: 0;
    min-width: 110px;
    text-align: center;
    font-size: 14px;
    color: #333;
    display: inline-block;
    line-height: 21px;
    cursor: pointer;
    background: #ddd;
    border-radius: 5px;
    transition: 0.3s all ease;
}
.table-toolbar .tab-button i {
    margin-right: 6px;
}
.table-toolbar .tab-button input {
    display: none;
}
.table-toolbar .tab-button input:checked + span {
    background-color: #46BE9D;
    background-image: none;
    background: #46BE9D;
    background: -webkit-linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    background: linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    color: #fff;
}

/* -------------------- */
/*       CALENDAR       */
/* -------------------- */

.ui-datepicker,
.ui-datepicker table,
.ui-datepicker tr,
.ui-datepicker td,
.ui-datepicker th {
    margin: 0;
    padding: 0;
    border: none;
    border-spacing: 0;
}
.ui-datepicker {
    width: auto;
    margin: auto;
    border-radius: 10px;
    overflow: hidden;
    display: none;
    border: 1px solid #000;
    z-index: 100000 !important;
}
.ui-datepicker-header {
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: -o-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: linear-gradient(to right, #46BE9D 0%, #328871 100%);
    position: relative;
    padding: 4px;
}
.ui-datepicker-title {
    text-align: center;
}
.ui-datepicker-month {
    position: relative;
    padding-right: 15px;
    color: #fff;
    font-size: 16px;
}
.ui-datepicker-year {
    padding-left: 8px;
    color: #fff;
    font-size: 16px;
}
.ui-datepicker-prev,
.ui-datepicker-next {
    position: absolute;
    top: 0px;
    cursor: pointer;
    line-height: 30px;
    display: inline-block;
    padding: 0 6px;
}
.ui-datepicker-prev {
    left: 10px;
    padding-left: 0;
}
.ui-datepicker-next {
    right: 10px;
    padding-right: 0;
}
.ui-datepicker-prev span:after {
    color: #fff;
    content: "\f30a";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}
.ui-datepicker-next span:after {
    color: #fff;
    content: "\f30b";
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}
.ui-datepicker-prev span,
.ui-datepicker-next span {
    display: block;
}

.ui-datepicker-calendar thead,
.ui-datepicker-calendar tbody {
    border: 0;
}
.ui-datepicker-calendar th {
    background: #222d32;
    border: 0;
    padding: 4px 0;
    font-size: 14px;
    text-align: center;
    font-weight: normal;
    color: #a8a8a8;
}

.ui-datepicker-calendar td {
    width: 14%;
    padding: 0 4px;
    font-size: 14px;
    text-align: center;
    line-height: 26px;
}
.ui-datepicker-calendar td a {
    font-size: 14px;
}

.ui-datepicker-calendar .ui-state-default {
    display: block;
    width: 30px;
    outline: none;
    margin: auto;
    text-decoration: none;
    color: #212121;

    border: 1px solid transparent;
}
.ui-datepicker-calendar tbody tr:nth-child(even) {
    background: #fff;
}
.ui-datepicker-calendar .ui-state-active {
    color: #fff;
    background: #12aee1;
    border-radius: 6px;
}
.ui-datepicker-calendar .ui-datepicker-today a {
    background: rgba(34, 46, 50, 0.12);
    border-radius: 6px;
}

.ui-datepicker-other-month .ui-state-default {
    color: #d0d0d0;
}

/* ------------------ */
/*     PAGINATION     */
/* ------------------ */

.pagination {
    text-align: center;
}
.pagination a,
.pagination button,
.pagination .page-link {
    color: #000;
    display: inline-block;
    padding: inherit;
    border-radius: 2px;
    line-height: 30px;
    font-size: 12px;
    padding: 0 16px;
    outline: none;
    transition: 0.3s all ease;
}
.pagination .page-item {
    margin: 0;
}
.page-item.active {
    background: #46BE9D !important;
    color: #fff;
    border-radius: 2px;
    border: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.page-item.active .page-link {
    color: #fff;
}
.pagination .disabled {
    padding: 0;
}
.pagination a:hover,
.pagination button:hover {
    background-color: #dedede;
}
.pagination a.current,
.pagination button.current {
    background: #46BE9D !important;
    border-radius: 2px;
    color: #fff;
    border: 0;
    padding: 0 16px;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}

/* ------------------ */
/*     ANIMATIONS     */
/* ------------------ */

.ripple {
    overflow: hidden;
    position: relative;
}
.ripple-effect {
    position: absolute;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    background: white;
    animation: -animation 2.5s;
}
@keyframes-animation {
    from {
        transform: scale(1);
        opacity: 0.4;
    }
    to {
        transform: scale(70);
        opacity: 0;
    }
}

/* ------------------- */
/*        SWITCH       */
/* ------------------- */

.switch-box {
    display: inline-block;
    height: auto;
}
.switch-box .switch-box-slider {
    position: relative;
    display: inline-block;
    height: 12px;
    width: 32px;
    background: #c5c5c5;
    border-radius: 8px;
    cursor: pointer;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.switch-box .switch-box-slider:after {
    position: absolute;
    left: -8px;
    top: -6px;
    display: block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #dadada;
    -webkit-box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.2);
    content: "";
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}
.switch-box .switch-box-input {
    display: none;
}
.switch-box .switch-box-input ~ .switch-box-label {
    margin-left: 8px;
}
.switch-box .switch-box-input:checked ~ .switch-box-slider:after {
    left: 16px;
}
.switch-box .switch-box-input:disabled ~ .switch-box-slider {
    background: #e2e2e2;
    cursor: default;
}
.switch-box .switch-box-input:disabled ~ .switch-box-slider:after {
    background: #d5d5d5;
}
.switch-box .switch-box-input:checked:not(:disabled) ~ .switch-box-slider {
    background: #328871;
}
.switch-box
    .switch-box-input:checked:not(:disabled)
    ~ .switch-box-slider:after {
    background: #46BE9D;
}

/* ------------------- */
/*      ERROR-BOX      */
/* ------------------- */

.success {
    background: #4caf50 !important;
}
.success-text {
    color: #20c727 !important;
}
.warning {
    background: #ff9800 !important;
}
.warning-text {
    color: #ff9800 !important;
}
.danger {
    background: #f44336 !important;
}
.danger-text {
    color: #f44336 !important;
}
.blue {
    background: #2196f3 !important;
}
.blue-text {
    color: #2196f3 !important;
}
.gray {
    background: #777 !important;
}
.purple {
    background: #bf80ff !important;
}

.button.white {
    background: #fff !important;
    color: #333 !important;
}
.notification-block {
    display: inline-block;
    color: #fff;
    border-radius: 6px;
    padding: 1px 6px;
}
.text-alert {
    text-transform: uppercase;
    font-size: 11px;
    text-align: center;
    margin: 10px auto;
}
.error-box {
    min-width: 210px;
    max-width: 300px;
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 10000;
}

.error-box.top-right {
    top: 30px;
    bottom: auto;
}
.error {
    position: relative;
    display: block;
    z-index: 100;
    margin-top: 10px;
    box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14),
        0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
}

.error-static .error {
    margin: 0;
}

.error .progress {
    background: transparent;
    border-radius: 0;
}
.error .meter.success {
    background: rgba(0, 0, 0, 0.3) !important;
}
.error .meter {
    border-radius: 0;
    -webkit-animation: progressBar 10s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar 10s ease-in-out;
    -moz-animation-fill-mode: both;
}
.error-text {
    padding: 10px 15px;
    padding-right: 28px;
}

.error h4,
.error p,
.error h5 {
    margin: 0;
    color: #fff;
}
.error h5 {
    font-size: 18px;
}
.error ul {
    list-style: none;
    margin: 0;
    color: #fff;
}

.error-close {
    position: absolute;
    top: 5px;
    right: 5px;
    font-size: 14px;
    line-height: 24px;
    width: 24px;
    text-align: center;
    color: #fff;
}
.error-close:hover {
    color: #000;
}

/* ------------------ */
/*      PROGRESS      */
/* ------------------ */

.progress {
    height: 5px;
    position: relative;
    background: #f6f6f6;
    overflow: hidden;
    margin: 10px 0;
    border-radius: 3px;
}
.progress span {
    display: block;
    height: 100%;
    transition: 0.3s all ease;
}
.meter {
    border-radius: 3px;
    -webkit-animation: progressBar 3s ease-in-out;
    -webkit-animation-fill-mode: both;
    -moz-animation: progressBar 3s ease-in-out;
    -moz-animation-fill-mode: both;
}
@-webkit-keyframes progressBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}
@-moz-keyframes progressBar {
    0% {
        width: 0;
    }
    100% {
        width: 100%;
    }
}

/* ------------------- */
/*        FORMS        */
/* ------------------- */

textarea {
    border: 0;
    padding: 6px 4px;
    box-shadow: none;
    border-bottom: 1px solid #ddd;
    min-height: 34px;
    resize: vertical;
}
textarea:focus {
    border: 0;
    box-shadow: none;
    border-bottom: 2px solid #46BE9D;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    /* Chrome/Opera/Safari */
    color: #949494;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    /* Firefox 19+ */
    color: #949494;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    /* IE 10+ */
    color: #949494;
}
input:-moz-placeholder,
textarea:-moz-placeholder {
    /* Firefox 18- */
    color: #949494;
}

.no-spinners {
    -moz-appearance: textfield;
}
.no-spinners::-webkit-outer-spin-button,
.no-spinners::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

[type="color"],
[type="date"],
[type="datetime-local"],
[type="datetime"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="text"],
[type="time"],
[type="url"],
[type="week"] {
    box-shadow: none;
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    padding: 6px 4px;
}
.input-label {
    position: relative;
    margin: 0 10px;
    margin-top: 12px;
    margin-bottom: 28px;
    z-index: 1;
    display: block;
}
.input-label input,
.input-label textarea {
    height: auto;
    font-size: 14px;
    margin: 0;
}
.input-label input:focus {
    border: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    box-shadow: none;
}
.input-label label {
    top: 0;
    color: rgba(0, 0, 0, 0.35);
    font-size: 14px;
    left: 0;
    right: 0;
    padding-left: 3px;
    bottom: 0;
    pointer-events: none;
    position: absolute;
    display: block;
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    text-align: left;
    transition: 0.3s all ease;
}

.input-label label.visible {
    overflow: visible;
}

.input-label input:disabled + label {
    background: rgba(0, 0, 0, 0.07);
    z-index: -1;
    color: #676767;
}
.input-label input:disabled {
    background: transparent;
}
.input-label label:after {
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: -o-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: linear-gradient(to right, #46BE9D 0%, #328871 100%);
    bottom: 0;
    content: "";
    height: 2px;
    left: 45%;
    position: absolute;
    transition-duration: 0.2s;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    visibility: hidden;
    width: 10px;
}
.input-label input:focus + label:after {
    width: 100%;
    left: 0;
    visibility: visible;
}
.input-label.active label {
    font-size: 12px;
    top: -16px;
}
.input-label select {
    border: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    display: inline-block;
    outline: none;
    height: 29px;
    padding: 4px 4px;
    padding-right: 18px;
    margin: 0;
    font-size: 14px;
    background-position: right -11px center;
}
.input-label select + label {
    font-size: 12px;
    top: -16px;
}
.input-label.active select + label:after {
    width: 100%;
    left: 0;
    visibility: visible;
}

.clear-form {
    font-size: 14px;
    line-height: 24px;
    color: rgba(103, 107, 109, 0.5);
    outline: 0;
}
.clear-form:hover {
    text-decoration: underline;
}

.input-file {
    display: none;
}
.input-file + label i {
    font-size: 18px;
    vertical-align: middle;
    margin-right: 4px;
}

.card-label {
    margin-bottom: 10px;
}

.button-input {
    display: inline-block;
    margin: 5px;
    transition: 0.3s all ease;
    box-shadow: 1px 1px 6px -1px #000000;
    border-radius: 5px;
}
.button-input input {
    display: none;
}
.button-input input + label {
    border-radius: 5px;
    font-weight: normal;
    color: #c14244;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    background-color: transparent;
    border: 2px solid #c14244;
    transition: 0.3s all ease;
    padding: 2px 12px;
    margin: 0;
}
.button-input input:checked + label {
    background-color: #c14244;
    color: #fff;
    text-shadow: 1px 1px 2px #000;
}
.button-input input:checked + label:after {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f00c";
    color: #fff;
    margin-left: 10px;
}
.button-input input + label:after {
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f00d";
    color: #c14244;
    margin-left: 10px;
}
.button-input.no-text input + label:after {
    margin-left: 0;
}

.button-input.button-permission input + label {
    padding: 1px 8px;
    border: 0;
    color: #ecf0f5;
    background: #c14244;
}
.button-input.button-permission input + label:after {
    content: none;
}
.button-input.button-permission input:checked + label:after {
    content: none;
}
.button-input.button-permission input:checked + label {
    background: #00a65b;
}
.button-input.button-permission-disabled input + label {
    background: #a0a0a0 !important;
    cursor: default;
}
.button-input.button-permission-admin input + label {
    background: #c14244 !important;
    cursor: default;
}
.button-permission {
    position: relative;
    margin: 1px;
}
.sort-permissions {
    padding: 0 10px;
    display: inline-block;
}
.sort-permissions .button-input.button-permission input + label {
    background: #a0a0a0;
}
.sort-permissions .button-input.button-permission input:checked + label {
    background: #46BE9D;
}

.permission-info {
    position: absolute;
    margin: auto;
    opacity: 0;
    visibility: hidden;
    top: 100%;
    margin-top: 4px;
    background: #333;
    color: #fff;
    padding: 3px 5px;
    font-size: 12px;
    text-align: center;
    border-radius: 3px;
    white-space: nowrap;
    z-index: 10;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    right: auto;
    transition: unset;
}
.permission-info:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #333;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -6px;
}
.button-permission label:hover + .permission-info {
    opacity: 1;
    visibility: visible;
}

.input-container {
    position: relative;
}
.input-container input {
    height: 45px;
    padding-top: 12px;
    font-style: normal;
}
.input-container label {
    position: absolute;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    left: 10px;
    right: 0;
    font-size: 16px;
    -webkit-transition: 0.2s ease;
    transition: 0.2s ease;
    color: #949494;
}
.input-container textarea:focus + label {
    font-size: 12px;
    bottom: 60%;
    color: #adadad;
}
.input-container textarea:valid + label {
    font-size: 12px;
    bottom: 60%;
    color: #adadad;
}
.input-container input:focus + label {
    font-size: 12px;
    bottom: 60%;
    color: #adadad;
}
.input-container input:valid + label {
    font-size: 12px;
    bottom: 60%;
    color: #adadad;
}

.color-label {
    display: inline-block;
}
.color-label input {
    display: none;
}
.color-label input:checked + span {
    opacity: 0.6;
}
.color-label input:checked + span:after {
    opacity: 1;
}
.color-label span {
    display: inline-block;
    width: 28px;
    height: 28px;
    text-align: center;
    border-radius: 100%;
    position: relative;
}
.color-label span:after {
    content: "\f00c";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #fff;
    line-height: 28px;
    opacity: 0;
}

.color-label-span-wrap {
    position: absolute;
    right: 10px;
    top: 0;
}
.color-label-span-wrap span {
    width: 28px;
    height: 14px;
    display: block;
    border-radius: 0 0 6px 6px;
}

.worker-select label {
    position: relative;
}
.worker-select input {
    display: none;
}
.worker-select img {
    margin: 0;
    width: 50px;
    height: 50px;
}
.worker-select label > span {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(51, 51, 51, 0.9);
    opacity: 0;
    z-index: 1;
    font-size: 26px;
}
.worker-select input:checked ~ img {
    opacity: 0.65;
}
.worker-select input:checked + span {
    opacity: 1;
}

input.checklist-input {
    background-color: rgba(119, 119, 119, 0.1) !important;
    border: 1px solid rgba(119, 119, 119, 0.4) !important;
    color: #676767;
    font-size: 13px;
    height: auto;
    padding: 7px 9px;
    margin-bottom: 8px;
}
input.popup-title-input {
    font-size: 16px;
    height: auto;
    padding: 8px 10px;
    border: 0 !important;
    outline: 0;
    box-shadow: none;
    margin-bottom: 6px;
}
.checklist-element {
    margin-bottom: 6px;
    padding-bottom: 5px;
    padding-left: 8px;
}
.checklist-element-inner {
    display: flex;
    position: relative;
}
.checklist-element-inner:hover .mini-buttons-checklist,
.popup-content-title:hover .mini-buttons-checklist {
    opacity: 1;
}
.mini-buttons-checklist {
    opacity: 0;
    position: absolute;
    right: 0;
    top: 0;
}
.mini-buttons-checklist button {
    padding: 4px;
    outline: 0;
}
.checklist-element-inner p {
    font-size: 13px;
    margin: 0;
    padding: 2px 8px;
}
.checklist-wrap {
    padding-bottom: 15px;
}
.checklist-container + .checklist-container {
    margin-top: 20px;
}
.button.add-new-checklist-element {
    font-weight: 300;
}

.sell-filter input {
    background: #ffffff;
    border: 1px solid #e8e8e8;
    border-radius: 18px;
    margin: 0;
    padding: 0 35px 0 15px;
}
.sell-filter .input {
    position: relative;
    width: 303px;
    max-width: 100%;
    margin: 0 20px 0 0;
}
.sell-filter .input.date-field {
    width: 141px;
}
.sell-filter .input.date-field input {
    padding: 0 15px;
}

.filter-submit {
    margin-top: 20px;
}

.sell-filter .input button {
    position: absolute;
    right: 10px;
    top: 2px;
    padding: 10px;
    color: #707070;
}
.sell-filter.orders .input button {
    top: 26px;
}
.sell-filter .filter-text {
    display: flex;
    align-items: center;
    color: #707070;
}
.sell-filter .filter-text:hover {
    cursor: pointer;
}
.sell-filter .filter-text img {
    margin-right: 7px;
    height: 15px;
    display: inline-block;
}
.filters {
    display: none;
    margin-top: 17px;
}
.filters.visible {
    display: block;
}
.with-discount {
    position: relative;
}
.with-discount:hover {
    cursor: pointer;
}
.with-discount:hover .discount-hint {
    display: block;
}

.discount-hint {
    display: none;
    position: absolute;
    z-index: 120;
    box-shadow: 0px 3px 3px #00000029;
    left: 30px;
    top: -65px;
    background: #fff;
    font-size: 13px;
    padding: 7px;
}
.discount-hint .basic-price {
    color: #000;
    font-size: 15px;
    display: block;
}

.order-update-text,
.history-box {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 999;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    justify-content: center;
    align-items: center;
}
.order-update-text .bg {
    width: 400px;
    max-width: 100%;
    padding: 20px;
    background: #fff;
    border-radius: 5px;
}
.history-box .bg {
    width: 75%;
    padding: 20px;
    left: 80px;
    background: #fff;
    border-radius: 5px;
    position: relative;
}
.history-box .history-wrapper {
    max-height: 75vh;
    overflow-y: auto;
}
.history-wrapper .change-from,
.history-wrapper .change-from a {
    color: #c02a2a;
}
.history-wrapper .change-to,
.history-wrapper .change-to a {
    color: #66c02a;
}
.history-wrapper p {
    margin: 0;
}
.history-wrapper .toggle-order-change {
    position: relative;
    cursor: pointer;
    padding: 5px 30px 5px 10px;
    font-weight: 700;
    border-bottom: 1px solid #46BE9D;
}
.history-wrapper .toggle-order-change i {
    position: absolute;
    right: 0;
    top: 8px;
    font-size: 20px;
}
.history-wrapper .toggle-order-change.active i {
    transform: rotate(180deg);
}
.history-wrapper .order-change ul {
    display: none;
    padding: 10px 30px 10px 10px;
    list-style: none;
}
.history-wrapper .order-change ul .next-to {
    display: flex;
    align-items: center;
}
.history-wrapper .order-change ul i {
    margin: 0 10px;
}
.history-wrapper .order-change ul .next-to i {
    margin: 0 20px;
}
.history-box .bg .close-history-box {
    position: absolute;
    right: -11px;
    top: -11px;
    background: #fff;
    border-radius: 50%;
    color: #c02a2a;
    font-size: 29px;
    cursor: pointer;
}
.customSelectAddOption {
    font-size: 14px;
    font-style: italic;
    float: right;
}
.custom-select {
    position: relative;
    background: #fff;
    border-radius: 5px;
    border: 1px solid transparent;
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0px 3px 3px #00000029;
}
.custom-select:hover {
    cursor: pointer;
}
.custom-select.active::after {
    content: "\f106";
}

.custom-select .checkbox-label span::after {
    content: "";
    background: #fff;
    box-shadow: 0px 1px 5px #0000004d;
    position: absolute;
    left: 13px;
    top: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    line-height: 17px;
    margin-right: 5px;
    z-index: 10;
}
.custom-select .checkbox-label span::before {
    content: none;
}

.custom-select .checkbox-label input:checked + span:before {
    content: "";
    background: #46BE9D;
    border-radius: 50%;
    position: absolute;
    z-index: 20;
    left: 15px;
    top: 13px;
    width: 12px;
    height: 12px;
}
.custom-select.active .custom-select-options {
    display: block;
    max-height: 300px;
    overflow-y: auto;
}
.custom-select-option {
    position: relative;
}
.custom-select-option .main-val {
    display: inline-block;
    width: 100%;
}
.custom-select::after {
    content: "\f107";
    position: absolute;
    z-index: 15;
    right: 10px;
    top: 7px;
    color: #707070;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
}
.custom-select input {
    display: none;
    margin: 0;
}
.custom-select .custom-select-default {
    height: 36px;
    padding: 0 12px;
    display: flex;
    align-items: center;
    width: calc(100% - 25px);
    overflow: hidden;
    white-space: nowrap;
}
.custom-select .custom-select-options > div.option-add-wrapper {
    display: flex;
    align-items: center;
    width: 90%;
    margin: 0 auto 10px auto;
}
.custom-select .custom-select-options > div.option-add-wrapper:hover {
    background: #fff;
}
.custom-select .add-option-input {
    display: inline-block;
}
.custom-select .add-option-button {
    display: inline-block;
    color: #219c21;
    font-size: 30px;
    transition: 0.3s;
    margin-left: 5px;
}
.custom-select .add-option-button:hover {
    cursor: pointer;
    color: #197e19;
}
.custom-select .checkbox-label {
    padding: 0;
}
.custom-select .checkbox-label span {
    padding-left: 26px;
}
.custom-select .checkbox-label span::before {
    width: 16px;
    height: 16px;
    position: relative;
    top: 5px;
    font-size: 13px;
    line-height: 17px;
}
.custom-select .custom-select-options {
    position: absolute;
    z-index: 110;
    background: #fff;
    box-shadow: 0px 3px 3px #00000029;
    left: 0;
    top: 100%;
    width: 100%;
    display: none;
}
.custom-select .custom-select-options .checkbox-label span:before {
    border-color: #e8e9ed;
    background: #e8e9ed;
}
.custom-select .custom-select-options > div {
    position: relative;
    margin: 4px 0;
}
.custom-select .custom-select-options .checkbox-label {
    padding: 5px 25px 5px 12px;
}
.custom-select .custom-select-options .custom-select-option:hover {
    background: #dddee4;
    cursor: pointer;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
}
.form-field {
    padding: 10px;
}
.order-generator .form-field {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.order-generator .form-field input {
    margin-bottom: 12px;
}
/* -------------------- */
/*        POPUPS        */
/* -------------------- */

.popup-box {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s all ease;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-box.active {
    opacity: 1;
    visibility: visible;
}
.popup-box .overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.5);
}
.popup-box .popup-content {
    position: relative;
    background: #fff;
    border-radius: 5px;
    padding: 16px 24px;
    transform: scale(0.5);
    transition: 0.3s all ease;
    z-index: 100;
    min-width: 340px;
    max-height: calc(100vh - 120px);
    max-width: 95vw;
    overflow: auto;
}
.popup-box .popup-inner-content {
    max-height: calc(100vh - 272px);
    overflow: auto;
}
.popup-buttons {
    justify-content: space-around;
    display: flex;
}
.popup-box .close-popup {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 11px;
    border-radius: 0;
}
.popup-box.active .popup-content {
    transform: scale(1);
}
.popup-box .popup-buttons .close-popup {
    position: relative;
    padding: 0 12px;
    border-radius: 4px;
}

#task-popup .worker-hover img {
    width: 38px;
    height: 38px;
}
#task-popup .worker-hover {
    vertical-align: middle;
}
#task-popup .popup-content {
    width: 60vw;
    padding: 0;
    min-width: 900px;
    transition: none;
    resize: both;
    max-width: 1200px;
    min-height: 300px;
}
#task-popup .popup-header {
    background: #46BE9D;
    padding: 12px 0;
    color: #fff;
}
#task-popup .popup-header p {
    font-size: 13px;
    margin-bottom: 3px;
}
#task-popup .popup-header span {
    opacity: 0.7;
    font-size: 13px;
}
#task-popup .popup-header .worker-overlay span {
    opacity: 1;
}
#task-popup .popup-title {
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    display: inline-block;
}
#task-popup .popup-tabs {
    border-bottom: 2px solid #cacaca;
    font-size: 0;
}
#task-popup .popup-tabs a {
    display: inline-block;
    padding: 12px 16px;
    color: #b5b5b5;
    font-size: 14px;
    position: relative;
    transition: 0.2s all ease;
}
#task-popup .popup-tabs a:after {
    content: "";
    position: absolute;
    width: 100%;
    left: 0;
    right: 0;
    bottom: -2px;
    background: #696969;
    height: 2px;
    opacity: 0;
    transition: 0.2s all ease;
}

#task-popup .popup-tabs a.current,
#task-popup .popup-tabs a:hover {
    color: #464646;
}
#task-popup .popup-tabs a.current:after,
#task-popup .popup-tabs a:hover:after {
    opacity: 1;
}

#task-popup .popup-inner-content .large-3 .button {
    width: 100%;
    margin-bottom: 10px;
    text-align: left;
    font-size: 13px;
}
#task-popup .popup-inner-content hr {
    margin: 14px 0;
}
#task-popup .popup-inner-content .button + hr {
    margin-top: 4px;
}
#task-popup .popup-inner-content .large-3 .button i {
    width: 18px;
}
#task-popup .popup-inner-content .columns {
    padding-top: 10px;
}
#task-popup .popup-content-title,
#task-popup .popup-content-title p {
    color: #666;
    padding: 4px 2px;
    border-bottom: 1px solid #cacaca;
    margin-top: 5px;
    margin-bottom: 14px;
    font-weight: 600;
    font-size: 14px;
    position: relative;
}
#task-popup .popup-content-title p {
    margin: 0;
    border: 0;
    padding: 0;
}
#task-popup .editable {
    font-size: 13px;
    padding: 10px 12px;
    border-radius: 3px;
    border: 1px solid transparent;
    cursor: pointer;
    color: #888;
    min-height: 50px;
    margin-bottom: 10px;

    overflow: auto;
    max-height: 60vh;
}
#task-popup .editable:hover {
    background: #eee;
    border-color: #ddd;
}
#task-popup .trumbowyg-box .trumbowyg-editor {
    margin: 0 auto;
    max-height: 56vh;
}
#task-popup .editable.active {
    background: #fff;
    border-color: #fff;
    cursor: default;
    padding: 0;
    max-height: none;
}
#task-popup .editable textarea {
    background: #eee;
    border: 1px solid #ddd;
    font-size: 13px;
    padding: 8px 10px;
}
#task-popup .editable .inner-editable {
    white-space: pre-wrap;
}

@media screen and (max-width: 1024px) {
    #task-popup .popup-content {
        min-width: 350px;
        width: 80vw;
    }
}

#task-popup .sidebar-worker .circle {
    margin-bottom: 10px;
}

#task-popup .sidebar-worker .bold,
#task-popup .sidebar-worker,
#task-popup .sidebar-worker label {
    font-size: 13px;
}
#task-popup .sidebar-worker label {
    color: #9e9e9e;
}
#add-project-popup .popup-content {
    max-width: 600px;
}

#task-popup .comment-box {
    display: flex;
    font-size: 13px;
    align-items: flex-start;
    padding-top: 5px;
    padding-right: 5px;
    padding-bottom: 5px;
    margin-bottom: 10px;
}
#task-popup .comment-inner {
    width: 100%;
    background: #fafafa;
    -webkit-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
    box-shadow: 0 1px 1px rgba(0, 0, 0, 0.25);
}
#task-popup .comment-box .worker-hover {
    min-width: 50px;
}
#task-popup .comment-box textarea {
    background: transparent;
    font-size: 13px;
    margin: 0;
}
#task-popup .comment-header {
    background: #f0f0f0;
    padding: 10px 12px;
    border-bottom: 1px solid #e6e6e6;
    position: relative;
}
#task-popup .comment-header:before {
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    display: block;
    border-width: 10px 12px 10px 0;
    border-style: solid;
    border-color: transparent #f0f0f0;
    top: 8px;
    left: -11px;
}
#task-popup .comment-date,
#task-popup .comment-latest-edition-date,
#task-popup .comment-editions-count {
    font-size: 12px;
    margin-left: 10px;
    color: #868686;
}
#task-popup .deleted-comment {
    font-style: italic;
    color: #868686;
}
#task-popup .deleted-comment-box .comment-content {
    white-space: normal;
}
#task-popup .comment-content {
    padding: 8px 12px;
    white-space: pre-line;
}
#task-popup .comment-footer {
    overflow: hidden;
    padding: 8px 6px;
    text-align: right;
}

.modal-loading .popup-content {
    background: transparent !important;
    text-align: center;
}
#modal-loading .overlay {
    background: -webkit-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: -o-linear-gradient(left, #46BE9D 0%, #328871 100%);
    background: linear-gradient(to right, #46BE9D 0%, #328871 100%);
}
#modal-loading.active-func {
    opacity: 1;
    visibility: visible;
    z-index: 99999;
}
#modal-loading.active-func .popup-content {
    transform: scale(1);
}
.loader {
    color: #fff;
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: bold;
    font-size: 30vh;
    opacity: 0.8;
}
.loader span {
    font-family: Consolas, Menlo, Monaco, monospace;
    font-weight: 700;
    margin: 0 25px;
    display: inline-block;
    -webkit-animation: pulse 0.4s alternate infinite ease-in-out;
    animation: pulse 0.4s alternate infinite ease-in-out;
}
.loader span:nth-child(odd) {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}
@-webkit-keyframes pulse {
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0.5;
    }
}
@keyframes pulse {
    to {
        -webkit-transform: scale(0.8);
        transform: scale(0.8);
        opacity: 0.5;
    }
}

/* -------------------- */
/*     CONTEXT-MENU     */
/* -------------------- */

@charset "UTF-8";
/*!
 * jQuery contextMenu - Plugin for simple contextMenu handling
 *
 * Version: v2.6.3
 *
 * Authors: Björn Brala (SWIS.nl), Rodney Rehm, Addy Osmani (patches for FF)
 * Web: http://swisnl.github.io/jQuery-contextMenu/
 *
 * Copyright (c) 2011-2018 SWIS BV and contributors
 *
 * Licensed under
 *   MIT License http://www.opensource.org/licenses/mit-license
 *
 * Date: 2018-01-26T13:57:13.077Z
 */
@-webkit-keyframes cm-spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(359deg);
        transform: translateY(-50%) rotate(359deg);
    }
}
@-o-keyframes cm-spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        -o-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(359deg);
        -o-transform: translateY(-50%) rotate(359deg);
        transform: translateY(-50%) rotate(359deg);
    }
}
@keyframes cm-spin {
    0% {
        -webkit-transform: translateY(-50%) rotate(0deg);
        -o-transform: translateY(-50%) rotate(0deg);
        transform: translateY(-50%) rotate(0deg);
    }
    100% {
        -webkit-transform: translateY(-50%) rotate(359deg);
        -o-transform: translateY(-50%) rotate(359deg);
        transform: translateY(-50%) rotate(359deg);
    }
}

.context-menu-active {
    background-color: #eee !important;
}

.context-menu-icon-add:before {
    content: "\f067";
}
.context-menu-icon-accept:before {
    content: "\f00c";
}
.context-menu-icon-copy:before {
    content: "\f0c5";
}
.context-menu-icon-cut:before {
    content: "\f0c4";
}
.context-menu-icon-delete:before {
    content: "\f1f8";
}
.context-menu-icon-edit:before {
    content: "\f044";
}
.context-menu-icon-loading:before {
    content: "\f110";
}
.context-menu-icon-paste:before {
    content: "\f0ea";
}
.context-menu-icon-quit:before {
    content: "\f00d";
}
.context-menu-icon-answer:before {
    content: "\f086";
}
.context-menu-icon-off:before {
    content: "\f011";
}
.context-menu-icon-hide:before {
    content: "\f070";
}
.context-menu-icon-pencil:before {
    content: "\f040";
}

.context-menu-icon::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2em;
    font-size: 1em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    line-height: 1;
    color: #46BE9D;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: 0.3s all ease;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.context-menu-icon.context-menu-hover:before {
    color: #fff;
}

.context-menu-icon.context-menu-disabled::before {
    color: #bbb;
}

.context-menu-icon.context-menu-icon-loading:before {
    -webkit-animation: cm-spin 2s infinite;
    -o-animation: cm-spin 2s infinite;
    animation: cm-spin 2s infinite;
}
.context-menu-icon.context-menu-icon--fa {
    display: list-item;
    font-family: inherit;
}
.context-menu-icon.context-menu-icon--fa::before {
    position: absolute;
    top: 50%;
    left: 0;
    width: 2em;
    font-size: 1em;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    line-height: 1;
    color: #46BE9D;
    text-align: center;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.context-menu-icon.context-menu-icon--fa.context-menu-hover:before {
    color: #fff;
}
.context-menu-icon.context-menu-icon--fa.context-menu-disabled::before {
    color: #bbb;
}
.context-menu-list {
    position: absolute;
    display: inline-block;
    min-width: 120px;
    max-width: 220px;
    padding: 0.25em 0;
    margin: 0.3em;
    font-family: inherit;
    font-size: inherit;
    list-style-type: none;
    background: #fff;
    border: 1px solid #bebebe;
    border-radius: 0.2em;
    -webkit-box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}
.context-menu-item {
    transition: 0.3s all ease;
    position: relative;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    padding: 0.2em 2em;
    color: #333;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: #fff;
    white-space: nowrap;
}
.context-menu-item span {
    white-space: nowrap;
}
.context-menu-separator {
    padding: 0;
    margin: 0.35em 0;
    border-bottom: 1px solid #e6e6e6;
}
.context-menu-item > label > input,
.context-menu-item > label > textarea {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}
.context-menu-item.context-menu-hover {
    color: #fff;
    cursor: pointer;
    background-color: #46BE9D;
}
.context-menu-item.context-menu-disabled {
    color: #bbb;
    cursor: default;
    background-color: #fff;
}
.context-menu-input.context-menu-hover {
    color: ##333;
    cursor: default;
}
.context-menu-submenu:after {
    position: absolute;
    top: 50%;
    right: 0.5em;
    z-index: 1;
    width: 0;
    height: 0;
    content: "";
    border-color: transparent transparent transparent ##333;
    border-style: solid;
    border-width: 0.25em 0 0.25em 0.25em;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}
.context-menu-item.context-menu-input {
    padding: 0.3em 0.6em;
}
.context-menu-input > label > * {
    vertical-align: top;
}
.context-menu-input > label > input[type="checkbox"],
.context-menu-input > label > input[type="radio"] {
    position: relative;
    top: 0.12em;
    margin-right: 0.4em;
}
.context-menu-input > label {
    margin: 0;
}
.context-menu-input > label,
.context-menu-input > label > input[type="text"],
.context-menu-input > label > textarea,
.context-menu-input > label > select {
    display: block;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.context-menu-input > label > textarea {
    height: 7em;
}
.context-menu-item > .context-menu-list {
    top: 0.3em;
    right: -0.3em;
    display: none;
}
.context-menu-item.context-menu-visible > .context-menu-list {
    display: block;
}
.context-menu-accesskey {
    text-decoration: underline;
}

ul.comment-actions {
    display: flex;
}

ul.comment-actions li {
    padding: 0 3px;
    cursor: pointer;
}

.tasks-group-table .column-active-on-hover {
    /* display: none; */
    width: 25px;
    position: relative;
}
.tasks-group-table tr .column-active-on-hover .tr-toolbar {
    display: none;
}
.tasks-group-table tr:hover .column-hide-on-hover {
    opacity: 0;
}
.tasks-group-table tr:hover .column-active-on-hover .tr-toolbar {
    display: flex;
}
.tr-toolbar {
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 0 10px;
}
.tr-toolbar li {
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: 15px;
    margin: 3px 5px;
    z-index: 1;
    text-align: center;
    cursor: pointer;
}
.hidden,
.tox-notifications-container {
    display: none !important;
}

/*       services - usługi         */

.column-active-on-hover {
    /* display: none; */
    width: 25px;
    position: relative;
}

tr .column-active-on-hover .tr-toolbar {
    display: none;
}

tr:hover .column-hide-on-hover {
    opacity: 0;
}

tr:hover .column-active-on-hover .tr-toolbar {
    display: flex;
}

.tr-toolbar {
    align-items: center;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    padding: 20px 10px;
}

.tr-toolbar li {
    width: 20px;
    height: 20px;
    line-height: 20px;
    display: inline-block;
    font-size: 15px;
    margin: 3px 5px;
    z-index: 1;
    text-align: center;
    cursor: pointer;
}

.tr-toolbar li:hover {
    color: #098ac2;
}

ul.contractor-email-list li span,
ul.contractor-phone-list li span {
    display: none;
    padding: 0 20px;
}

ul.contractor-email-list li:hover span,
ul.contractor-phone-list li:hover span {
    display: inline-block;
}

/* PAGINACJA */

.pagination {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination .page-item {
    display: inline-block;
}
.pagination .page-item .page-link {
    color: #000;
    display: inline-block;
    padding: inherit;
    border-radius: 2px;
    height: 30px;
    line-height: 30px;
    font-size: 12px;
    padding: 0 14px;
    outline: none;
    transition: 0.3s all ease;
}
.pagination .page-item.active .page-link {
    background: #46BE9D !important;
    color: #fff;
    border: 0;
    box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
        0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12);
}
.pagination .page-link:hover {
    background-color: #dedede;
    color: #000;
}

.pagination-toolbar,
.file-pagination-toolbar,
.user-files-pagination-toolbar {
    margin-bottom: 10px;
    width: 100%;
}

.pagination-toolbar .pagination > div,
.file-pagination-toolbar .pagination > div,
.user-files-pagination-toolbar .pagination > div {
    display: flex;
    align-items: center;
    font-size: 13px;
}

.pagination-toolbar .pagination > div:not(:last-child),
.file-pagination-toolbar .pagination > div:not(:last-child),
.user-files-pagination-toolbar .pagination > div:not(:last-child) {
    margin-right: 15px;
}

.pagination-toolbar .buttons,
.file-pagination-toolbar .buttons,
.user-files-pagination-toolbar .buttons {
    margin-left: -110px;
}

.pagination-toolbar .buttons img,
.file-pagination-toolbar .buttons img,
.user-files-pagination-toolbar .buttons img {
    width: 15px;
    border: 1px;
}

.pagination-toolbar .prev-page img,
.file-pagination-toolbar .files-prev-page img,
.user-files-pagination-toolbar .user-files-prev-page img {
    margin-right: 5px;
}

.pagination-toolbar .next-page img,
.file-pagination-toolbar .files-next-page img,
.user-files-pagination-toolbar .user-files-next-page img {
    margin-left: 5px;
}

.pagination-toolbar select,
.file-pagination-toolbar select,
.user-files-pagination-toolbar select {
    margin: 0;
}

.pagination-toolbar .records,
.file-pagination-toolbar .records,
.user-files-pagination-toolbar .records {
    display: flex;
    align-items: center;
    margin-right: 20px;
}
.pagination-toolbar .records .total,
.file-pagination-toolbar .records .total,
.user-files-pagination-toolbar .records .total {
    display: inline-block;
    background: #f6f6f6;
    /* border: 1px solid #ddd; */
    min-width: 34px;
    text-align: center;
    padding: 0px 4px;
    margin-right: 10px;
    height: 36px;
    line-height: 36px;
    color: #707070;
    border-radius: 5px;
}
.pagination-toolbar p,
.file-pagination-toolbar p,
.user-files-pagination-toolbar p {
    white-space: nowrap;
}
.pagination-toolbar .records p,
.file-pagination-toolbar .records p,
.user-files-pagination-toolbar .records p {
    margin-right: 12px;
    color: #707070;
}
.pagination-toolbar p,
.file-pagination-toolbar p,
.user-files-pagination-toolbar p {
    margin: 0;
    height: 36px;
    line-height: 36px;
}
.pagination-toolbar a,
.file-pagination-toolbar a,
.user-files-pagination-toolbar a {
    padding: 7px 12px;
    display: inline-block;
}
.pagination-toolbar a img,
.file-pagination-toolbar a img,
.user-files-pagination-toolbar a img {
    height: 20px;
}

.pagination-toolbar .pagination,
.file-pagination-toolbar .pagination,
.user-files-pagination-toolbar .pagination {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.pagination-toolbar .pagination::before,
.pagination-toolbar .pagination::after,
.file-pagination-toolbar .pagination::before,
.file-pagination-toolbar .pagination::after,
.user-files-pagination-toolbar .pagination::before,
.user-files-pagination-toolbar .pagination::after {
    content: none;
}

.pagination-toolbar .pagination input,
.file-pagination-toolbar .pagination input,
.user-files-pagination-toolbar .pagination input {
    max-width: 65px;
    margin: 0;
}
.pagination-toolbar .pagination p,
.file-pagination-toolbar .pagination p,
.user-files-pagination-toolbar .pagination p {
    padding: 0 9px;
}
.pagination-toolbar .pagination .get-data,
.file-pagination-toolbar .pagination .get-data,
.user-files-pagination-toolbar .pagination .get-data {
    margin-left: 12px;
}

.input-icon {
    position: relative;
}
.input-icon input {
    padding-right: 36px;
    padding-left: 20px;
    margin: 0;
}
.input-icon a {
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    line-height: 36px;
    padding: 0 10px;
}

.link-inherit {
    color: inherit;
    font-size: inherit;
}

.remainig-requests-link {
    margin: 0;
    padding-left: 5px;
    cursor: pointer;
    display: table;
}

.double-scroll table {
    min-height: 1px;
}

.toggle-phone-popup {
    background: #5cb85c;
    width: 40px;
    height: 40px;
    margin-top: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    box-shadow: 0 1px 6px rgb(0 0 0 / 25%);
}

.toggle-phone-popup:hover {
    box-shadow: 0 5px 11px 0 rgb(0 0 0 / 18%), 0 4px 15px 0 rgb(0 0 0 / 15%);
}

.card-title .title-content {
    display: inline-block;
}

.card-title .card-title-help-text {
    position: relative;
    display: inline-block;
    margin-left: 5px;
    padding-right: 5px;
}

.card-title .card-title-help-text p {
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    background: #777;
    color: #fff;
    box-shadow: 0 6px 10px 0 rgb(0 0 0 / 14%), 0 1px 18px 0 rgb(0 0 0 / 12%),
        0 3px 5px -1px rgb(0 0 0 / 20%);
    border-radius: 5px;
    padding: 4px 10px;
    position: absolute;
    top: 0px;
    left: -245px;
    width: 240px;
    font-size: 14px;
    line-height: 20px;
    z-index: 110;
}

.card-title .card-title-help-text:hover p {
    opacity: 1;
    visibility: visible;
}

.card-content .edit-user-emails-button:hover {
    transition: all 0.3s ease;
    color: rgb(89, 162, 245);
}

.card-content .remove-user-emails-button:hover {
    transition: all 0.3s ease;
    color: rgb(255, 68, 93);
}

.card-content .user-emails-list {
    padding-bottom: 25px;
}

.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    -webkit-animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    -webkit-animation-delay: -0.036s;
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    -webkit-animation-delay: -0.072s;
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    -webkit-animation-delay: -0.108s;
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    -webkit-animation-delay: -0.144s;
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    -webkit-animation-delay: -0.18s;
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    -webkit-animation-delay: -0.216s;
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    -webkit-animation-delay: -0.252s;
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    -webkit-animation-delay: -0.288s;
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@-webkit-keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.space-1 {
    min-height: 10px;
}

.space-2 {
    min-height: 20px;
}

@media (max-width: 835px) {
    .pagination-toolbar .buttons {
        margin-left: 0;
    }
}

@media (max-width: 570px) {
    .pagination-toolbar .pagination {
        flex-direction: column;
        margin-top: 20px;
    }
}

.hint {
    position: relative;
}

.input-label:hover .hint::after {
    opacity: 1;
    visibility: visible;
}

.hint::after {
    content: attr(data-hint);
    padding: 6px;
    border-radius: 4px;
    border: 1px solid black;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
    position: absolute;
    right: 0;
    top: 100%;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.hint:hover::after {
    opacity: 1;
    visibility: visible;
}

.search-select {
    position: relative;
}

.search-select .search-btn {
    position: absolute;
    z-index: 99;
    right: 0;
    top: 0;
    width: 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.search-select .search-input-val {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6px 4px;
    font-family: inherit;
    font-size: 1rem;
}

.search-select .search-input {
    position: relative;
    z-index: 2;
}

.search-select .search-btn::after {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.search-select.active .options {
    display: block;
}

.search-select > input {
    background: transparent;
}

.search-select > input:focus {
    border: 1px solid #46BE9D;
    border-width: 0 0 1px 0;
    box-shadow: none;
}

.search-select > input:focus + .search-input-val {
    display: none;
}

.search-select > label {
    font-size: 12px;
    margin-bottom: -10px;
    padding-left: 4px;
    color: rgba(0, 0, 0, 0.35);
}

.search-select .options {
    position: absolute;
    z-index: 99;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 0 15px rgb(0, 0, 0, 0.2);
    border: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    transition: 0.3s;
}

.search-select .options label {
    position: relative;
}

.search-select .options label input {
    margin: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 9;
    left: 0;
    top: 0;
    opacity: 0;
    cursor: pointer;
}

.search-select .options label span {
    display: block;
    padding: 5px 8px;
}

.search-select .options label input:hover + span {
    background: rgba(251, 33, 33, 0.5);
    background: linear-gradient(
        30deg,
        rgba(251, 33, 33, 0.8) 0%,
        rgba(161, 4, 0, 0.8) 100%
    );
    color: #fff;
}

.search-select .options label input:checked + span {
    background: #46BE9D;
    background: linear-gradient(30deg, #46BE9D 0%, #328871 100%);
    color: #fff;
}

@media (max-width: 600px) {
    .card {
        padding: 12px !important;
    }

    main .content-wrap {
        padding: 0;
    }

    .user-tab-content.card {
        padding: 10px 0;
    }

    .page-dashboard .row .row,
    .sm-auto-row {
        margin-left: auto !important;
        margin-right: auto !important;
    }

    .row.no-max {
        width: 100%;
    }

    .datepicker-wrapper {
        position: static !important;
        transform: none !important;
    }

    .popup-content {
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    .store-new-task-form {
        max-width: 100% !important;
    }

    .calendar-daily {
        padding: 15px !important;
    }

    .filters-container > .columns,
    .sm-no-padding {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .form-field {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
}

.table-scroll-wrapper {
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #cccedf;
}

.top-scroll table {
    height: 1px;
    margin: 0;
}

.table-scroll::-webkit-scrollbar {
    width: 16px;
    height: 16px;
}

.table-scroll-wrapper .table-scroll {
    max-height: 70vh;
}

.table-scroll-wrapper .table-scroll table th {
    position: sticky;
    z-index: 50;
    top: 0;
    background: #fff;
}

.nowrap {
    white-space: nowrap;
}

.text-left {
    text-align: left!important;
}
.closed-commissions-per-user-ul, .income-commissions-per-user-ul {
    margin-bottom: 20px;
    max-height: 250px;
    overflow: auto;
    border: 1px solid #FFE2E0;
    padding: 15px;
    background: #fffcfc;
    border-radius: 5px;
}

.login-logo {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin: auto;
    display: block;
}