body {
    scrollbar-arrow-color: #000000;
    scrollbar-highlight-color: #E6E6E6;
    scrollbar-base-color: #E6E6E6;
    scrollbar-shadow-color: #E6E6E6;
    scrollbar-face-color: rgb(144, 144, 144);
    scrollbar-darkshadow-color: #E6E6E6;
    scrollbar-track-color: #E6E6E6;
    text-align: left;
    font-family: "arial";
    margin-top: 8px;
    margin: 0;
    padding: 0;
}

@media print {

    .navigation,
    input,
    .search,
    .detail_row,
    .logout {
        display: none;
    }

}

/*
 * Class to prevent browsers from selecting the text of an element
 */
.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.employee_bar {
    height: 15px;
    font-size: 15px;
    text-align: center;
    width: 100%
}

.developer_bar {
    height: 15px;
    font-size: 15px;
    text-align: center;
    width: 100%;
    background-image: repeating-linear-gradient(-45deg,
            #000,
            #000 20px,
            #ffb101 20px,
            #ffb101 40px);
}

.animated_bar {
    position: relative;
    height: 15px;
    width: calc(100% - 4px);
}

.animated_bar:before,
.animated_bar:after {
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    width: calc(100% + 4px);
    height: calc(100% + 4px);
    z-index: -1;
    animation: steam 20s linear infinite;
}

.animated_bar.jelle:before,
.animated_bar.jelle:after {
    background: linear-gradient(45deg, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000, #fb0094, #0000ff, #00ff00, #ffff00, #ff0000);
    background-size: 400%;
}

.animated_bar.marijn:before,
.animated_bar.marijn:after {
    background: linear-gradient(45deg, #fa6c00, #000000, #fa6c00, #000000, #fa6c00);
    background-size: 400%;
}

.animated_bar.brendan:before,
.animated_bar.brendan:after {
    background: linear-gradient(45deg, #089d08, #000000, #089d08, #000000, #089d08);
    background-size: 400%;
}

.animated_bar.stanley:before,
.animated_bar.stanley:after {
    background: linear-gradient(45deg, #DB9D00, silver, #DB9D00, silver, #DB9D00);
    background-size: 400%;
}

.animated_bar.dody:before,
.animated_bar.dody:after {
    background: linear-gradient(45deg, #fbff00, #b700ff, #fbff00, #b700ff, #fbff00);
    background-size: 400%;
}

.animated_bar.yonus:before,
.animated_bar.yonus:after {
    background: linear-gradient(45deg, #FEDB00, #0DB4BD, #FEDB00, #0DB4BD, #FEDB00);
    background-size: 400%;
}

.animated_bar.fleur:before,
.animated_bar.fleur:after {
    background: linear-gradient(45deg, #ff4d00, #219EFF, #ff4d00, #219EFF, #ff4d00);
    background-size: 400%;
}

.animated_bar.deep:before,
.animated_bar.deep:after {
    background: linear-gradient(45deg, #9CAF88, #33658A, #56365C, #9CAF88, #33658A, #56365C, #9CAF88);
    background-size: 400%;
}

.animated_bar.indy:before,
.animated_bar.indy:after {
    background: linear-gradient(45deg, #EC4899, #219EFF, #EC4899, #219EFF, #EC4899);
    background-size: 400%;
}


@keyframes steam {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

.animated_bar.jelle:after {
    filter: blur(50px);
}

.dartbar {
    height: 15px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-color: rgb(235, 252, 255);
    position: relative;
    transition: all 2s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.dartbar .centered {
    justify-content: center;
    align-items: center;
}

.dart {
    height: 15px;
    width: 63px;
    position: relative;
    -webkit-animation: dart 3s cubic-bezier(0.13, 0.22, 0.93, 0.99) infinite;
    animation: dart 3s cubic-bezier(0.13, 0.22, 0.93, 0.99) infinite;
}

.dart .dart-img {
    max-height: 100%;
    position: absolute;
    transform-origin: center right;
    -webkit-animation: dartrotation 3s linear infinite;
    animation: dartrotation 3s linear infinite;
}


.winnerdart-right {
    height: 90%;
    right: 10px;
}

.trophies {
    position: absolute;
    height: 15px;
    right: 10px;
    display: flex;
    align-items: center;
    column-gap: 7px;
}

.pdc {
    height: 15px;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.pdc-winner {
    height: 15px;
    position: absolute;
    width: 100%;
    display: flex;
    justify-content: center;
}

.pdc img {
    max-height: 90%;
}

.pdc-playername {
    max-height: 100%;
    position: relative;
    margin: 0px 20px;
}

.dartbar-winner {
    height: 15px;
    width: 100%;
    padding: 0px;
    margin: 0px;
    background-color: #24212b;
    position: relative;
    transition: all 2s ease;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.flower-background {
    background-image: url('/admin/images/flower_long.png');
    background-size: contain;
}

@-webkit-keyframes dart {
    0% {
        left: -63px;
        transform: scaleX(1);
    }

    25% {
        left: calc(100% - 63px);
        transform: scaleX(1);
    }

    64% {
        left: calc(100% - 63px);
    }

    68% {
        left: calc(100% - 75px);
    }

    100% {
        left: calc(100% - 75px);
        transform: scaleX(1);
    }
}

@keyframes dart {
    0% {
        left: -63px;
        transform: scaleX(1);
    }

    25% {
        left: calc(100% - 63px);
        transform: scaleX(1);
    }

    64% {
        left: calc(100% - 63px);
    }

    68% {
        left: calc(100% - 75px);
    }

    100% {
        left: calc(100% - 75px);
        transform: scaleX(1);
    }
}

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

    25% {
        transform: rotate(0deg);
    }

    28% {
        transform: rotate(6deg);
    }

    31% {
        transform: rotate(-6deg);
    }

    34% {
        transform: rotate(3deg);
    }

    37% {
        transform: rotate(-2deg);
    }

    39% {
        transform: rotate(0deg);
    }

    65% {
        transform: rotate(0deg);
        margin-top: 0px;
    }

    72% {
        transform: rotate(-90deg);
        margin-top: 15px;
    }

    100% {
        transform: rotate(-90deg);
        margin-top: 15px;
    }
}

@keyframes dartrotation {
    0% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(0deg);
    }

    28% {
        transform: rotate(6deg);
    }

    31% {
        transform: rotate(-6deg);
    }

    34% {
        transform: rotate(3deg);
    }

    37% {
        transform: rotate(-2deg);
    }

    39% {
        transform: rotate(0deg);
    }

    65% {
        transform: rotate(0deg);
        margin-top: 0px;
    }

    72% {
        transform: rotate(-90deg);
        margin-top: 15px;
    }

    100% {
        transform: rotate(-90deg);
        margin-top: 15px;
    }
}

.sky_bar {
    height: 15px;
    width: 100%;
    background-color: rgb(121, 219, 255);
    display: flex;
    position: relative;
    overflow: hidden;
}

.grass_bar {
    width: 100%;
    background-color: rgb(31, 206, 31);
    height: 4px;
    bottom: 0;
    align-self: flex-end;
    position: absolute;
}

.soccer_ball_div {
    height: 13px;
    width: 13px;
    position: relative;
    -webkit-animation: soccerball 10s linear infinite;
    animation: soccerball 10s linear infinite;
    z-index: 1;
}

.soccer_ball {
    max-height: 100%;
    position: absolute;
    transform-origin: center;
    -webkit-animation: ballrotation 10s linear infinite;
    animation: ballrotation 10s linear infinite;
}

.winning_team {
    margin: 0px auto;
    height: 15px;
    z-index: 0;
    animation: teammask 10s linear infinite;
    clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    display: block;
}

.winning_team img {
    height: 100%;
}

.medal_div {
    height: 15px;
    display: inline;
    position: relative;
}

.soccer_medal {
    animation: medalrotation 5s linear infinite;
}

.soccer_goal {
    height: 14px;
    z-index: 1;
}


@keyframes soccerball {
    0% {
        left: -0px;
    }

    20% {
        left: calc(100% - 15px);

    }

    80% {
        opacity: 1;
    }

    80.1% {
        opacity: 0;
    }

    100% {
        left: calc(100% - 15px);
        opacity: 0;

    }
}

@keyframes ballrotation {
    0% {
        transform: rotate(0deg);
    }

    20% {
        transform: rotate(2160deg);
    }

    30% {
        transform: rotate(2880deg);
    }

    40% {
        transform: rotate(3240deg);
    }

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

@keyframes teammask {
    0% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    9% {
        clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    }

    11% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 0;
    }

    11.2% {
        opacity: 1;
    }

    11.5% {
        opacity: 0;
    }

    11.7% {
        opacity: 1;
    }

    12% {
        opacity: 1;
    }

    12.1% {
        opacity: 0;
    }

    12.5% {
        opacity: 0;
    }

    12.6% {
        opacity: 1;
    }

    14% {
        opacity: 1;
    }

    14.1% {
        opacity: 0;
    }

    14.9% {
        opacity: 0;
    }

    15% {
        opacity: 1;
    }

    20% {
        opacity: 1;
    }

    20.1% {
        opacity: 0;
    }

    23.9% {
        opacity: 0;
    }

    24% {
        opacity: 1;
    }

    28% {
        opacity: 1;
    }

    28.1% {
        opacity: 0;
    }

    32.9% {
        opacity: 0;
    }

    33% {
        opacity: 1;
    }

    37% {
        opacity: 1;
    }

    37.1% {
        opacity: 0;
    }

    40.9% {
        opacity: 0;
    }

    41% {
        opacity: 1;
    }


    100% {
        clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
        opacity: 1;
    }
}

@keyframes medalrotation {
    0% {
        transform: rotateY(0deg);
    }

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

.mario1stplace {
    animation: mario1stplace 10s ease-out infinite;
}

.animatebigstar {
    animation: bigstar 2s ease-out infinite;
}

@keyframes mario1stplace {
    0% {
        left: -0px;
    }

    20% {
        left: calc(100% - 45px);

    }

    80% {
        opacity: 1;
    }

    100% {
        left: calc(100% - 45px);
        opacity: 1;

    }
}

@keyframes bigstar {
    0% {
        bottom: 0px;
    }

    50% {
        opacity: 100%;
    }

    80% {
        bottom: -50px;
        opacity: 0%;
    }

    100% {
        bottom: -50px;
        opacity: 0;
    }
}

@keyframes mariostars {
    0% {
        opacity: 0;
    }

    11% {
        opacity: 0;
    }

    11.2% {
        opacity: 1;
    }

    11.5% {
        opacity: 0;
    }

    11.7% {
        opacity: 1;
    }

    12% {
        opacity: 1;
    }

    12.1% {
        opacity: 0;
    }

    12.5% {
        opacity: 0;
    }

    12.6% {
        opacity: 1;
    }

    100% {
        opacity: 1;
    }
}


/*
 * Info box on detail page
 */
.info-box {
    width: 400px;
    height: auto;
    border: 1px solid #636363;
    position: absolute;
    padding: 10px;
    background: #ececec;
    word-wrap: break-word;
    display: none;
    padding-top: 30px;
}

.info-box .info-box-header {
    width: 100%;
    height: 20px;
    background: #c2c2c2;
    position: absolute;
    top: 0;
    right: 0;
}

.info-box .info-box-header .close-info-box,
.info-box .info-box-header .close-info-box:active,
.info-box .info-box-header .close-info-box:hover {
    background: #636363;
    font-size: 15px;
    height: 100%;
    width: 20px;
    float: right;
    text-align: center;
    line-height: 20px;
    padding-left: 2px;
    color: white;
}

.info-box .info-box-content {}

.info-box pre {
    font-size: 11px;
    line-height: 14px;
    font-family: 'Arial';
    margin: 0;
}

/* Upload */
#dropzone {
    width: 99%;
    padding: 5px;
    margin-bottom: 20px;
}

#dropzone.hover {
    border: 2px solid #cdcdcd;
    padding: 3px;
}

/* End upload */

#color_bar {
    width: 100%;
    height: 8px;
    background: #cdcdcd;
    margin-bottom: 5px;
}

.pagebreak {
    page-break-before: always;
}

input#internalDeliveryDatetime:disabled {
    color: #878787 !important;
}

form,
input,
select,
textarea {
    font-family: "arial";
    font-size: 10px;
    vertical-align: middle;
}

input[disabled='disabled'],
select[disabled='disabled'],
textarea[disabled='disabled'] {
    background-color: #eeeeee;
}

input[type="button"]:hover:not([disabled]),
input[type="submit"]:hover:not([disabled]) {
    background-color: #0099ff;
}

button[type="button"]:hover:not([disabled]),
button[type="submit"]:hover:not([disabled]) {
    background-color: #0099ff;
}

#send_to_postnl input,
textarea {
    margin-bottom: 10px;
    min-width: 200px;
    padding: 3px;
}

#send_to_postnl textarea {
    height: 70px;
}

h1 {
    font-size: 18px;
    Line-height: 100%;
    padding-left: 35px;
    padding-top: 10px;
    margin-top: 0px;
    margin-bottom: 10px;
    line-height: 35px;
    border-bottom: dotted 1px;
}

h3 {
    color: #0099ff;
}


.page {
    font-family: "arial";
    font-size: 11px;
    text-align: left;
    position: relative;
    border: none;
    width: 1150px;
    margin: 0px auto;
    /* to center the div in the middle */
    margin-top: 20px auto;
    /* to center the div in the middle */
    Line-height: 15px;
}

.page li {
    text-decoration: none;
}

.page ul {
    margin-top: 4px;
}

.clear {
    clear: both;
}

table {
    font-family: "arial";
    font-size: 11px;
}

/* Status colors */
.status-orange {
    background-color: #F7D189;
}

.status-blue {
    background-color: #bce8f1;
}

.status-green {
    background-color: #B2DD8F;
}

.status-grey {
    background-color: #cdcdcd;
}

.status-red {
    background-color: #F88686;
}

.status-purple {
    background-color: #D1C4E9;
}

.status-article {
    background-image: repeating-linear-gradient(45deg, grey, 0, transparent 1px, #e5e5f7 0, transparent 14%);
}

/* END Status colors */


.navigation,
.sub_navigation,
.sub_sub_navigation {
    vertical-align: center;
    height: 30px;
    font-family: "arial";
    font-size: 14px;
    color: white;
    border: none;
    text-align: center;
    border: solid;
    border-color: #3C3C3C;
    border-width: 2px;
    border-collapse: collapse;
}

.navigation td,
.sub_navigation td,
.sub_sub_navigation td {
    cursor: pointer;
    width: 95px;
    vertical-align: middle;
    margin: 10px;
    border: solid;
    border-color: #0099ff;
    border-width: 2px;
}

.navigation td:hover,
.sub_navigation td:hover,
.sub_sub_navigation td:hover,
.navigation a:hover,
.sub_navigation a:hover,
.sub_sub_navigation a:hover {
    background-color: white;
    color: #3C3C3C;
    text-decoration: none;
}


.navigation a,
.sub_navigation a,
.sub_sub_navigation a {
    color: white;
    font-weight: normal;
    text-decoration: none;
}

.navigation td {
    background-color: #3C3C3C;
}

.sub_navigation td {
    background-color: #999999;
}

.sub_sub_navigation td {
    background-color: white;
    color: black;
}

.sub_sub_navigation td {
    background-color: #DDDDDD;
    color: white;
}

.sub_navigation {
    float: left;
}

.navigation td.active,
.sub_navigation td.active,
.sub_sub_navigation td.active {
    background-color: #e6007d;
    color: white;
    font-weight: bold;
}

.logout {
    position: absolute;
    top: 5px;
    left: 1000px;
}


.status {
    font-family: "arial";
    font-size: 11px;
    border: solid;
    border-color: #3C3C3C;
    border-width: 2px;
    border-collapse: collapse;
    margin-left: 1px;
    text-align: left;
}

.status th {
    text-align: left;
    padding-left: 5px;
    padding-bottom: 2px;
    font-weight: bold;
    color: white;
    border-bottom: solid;
    border-width: 2px;
    border-color: #0099ff;
    background-color: #3C3C3C;
}

.data {
    font-family: "arial";
    font-size: 11px;
    border: solid;
    border-color: #3C3C3C;
    border-width: 2px;
    border-collapse: collapse;
    margin-left: 1px;
    text-align: left;
}

.data th {
    text-align: left;
    padding-left: 5px;
    padding-bottom: 2px;
    font-weight: bold;
    color: white;
    border-bottom: solid;
    border-width: 2px;
    border-color: #0099ff;
    background-color: #3C3C3C;
}

.data th a {
    text-decoration: none;
    font-weight: bold;
    color: white;
}

.data tr {
    height: 25px;
}

.data td {
    padding-left: 5px;
}

.data a {
    color: black;
    font-weight: normal;
    text-decoration: none;
}

.data a:hover {
    color: #0099ff;
    text-decoration: none;
}


.data a tr:hover {
    height: 25px;
    color: #0099ff;
    text-decoration: none;
}

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

/* Coupons */
.coupons tr:nth-child(even) {
    background: #eee;
}

.coupons tr:nth-child(odd) {
    background: #fff;
}

.coupons .del {
    background: url('../images/icon-delete.png') no-repeat;
    background-size: 100%;
    display: block;
    width: 80%;
}

/* Nieuws */
.nieuws tr:nth-child(even) {
    background: #eee;
}

.nieuws tr:nth-child(odd) {
    background: #fff;
}

.nieuws .del {
    background: url('../images/icon-delete.png') no-repeat;
    background-size: 100%;
    display: block;
    width: 30%;
    float: left;

}

.nieuws .edit {
    background: url('../images/icon-pensil.png') no-repeat;
    background-size: 100%;
    display: block;
    width: 30%;
    float: left;
    margin-right: 5px;
}

.nieuws .keywords {
    cursor: pointer;
}

.add_news {
    width: 90%;
    margin-right: 30%;
    float: left;
    padding-bottom: 10px;
}

.add_news input,
.add_news textarea,
.add_news select {
    width: 97%;
    border: 1px solid #c6c6c6;
    margin: 3px 0;
    padding: 3px;
    font-family: Arial;
    font-size: 12px;
    border: 1px solid #7d7d7d;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    color: #636363;
    background: #FCFCFC;
}

.add_news textarea {
    height: 50px;
}

.add_news input[type="checkbox"] {
    width: auto;
}

.add_news input[type="submit"] {
    width: auto;
    float: right;
    margin-top: 10px;
    cursor: pointer;
}

.add_new {
    padding: 5px;
    display: block;
    float: left;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    background: #FCFCFC;
}

.add_news input[type="file"] {
    width: 60%;
    float: left;
}

.add_news .preview_img {
    float: right;
    margin-right: 12px;
    padding: 3px;
    border: 1px solid #cdcdcd;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
}

/* msg */
.fademsg {
    float: left;
}

.data a.active {
    color: #0099ff;
}

.data a.active.down {
    width: 90%;
    display: block;
    background: url('../images/sort_down_blue.png') right no-repeat;
}

.data a.active.up {
    width: 90%;
    display: block;
    background: url('../images/sort_up_blue.png') right no-repeat;
}

/* special_search */
.special_search {}

.special_search .menu {
    width: 100%;
    float: left;
}

.special_search .menu p {
    float: left;
}

.special_search .menu ul {
    padding-left: 0px;
    margin-top: 10px;
    margin-left: 10px;
    float: left;
}

.special_search .menu ul li {
    float: left;
    list-style: none;
    margin-right: 15px;
}

.special_search .content {}

.special_search .content input[type=text],
.special_search .content textarea,
.special_search .content select {
    width: 50%;
}

.special_search .content textarea {
    min-height: 100px;
}

/* Order_print */
.darkorangeprio {
    background: #FF8C00;
    /* Old browsers */
    background: -moz-linear-gradient(left, #FF8C00 0%, #FF8C00 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #FF8C00), color-stop(100%, #FF8C00));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #FF8C00 0%, #FF8C00 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #FF8C00 0%, #FF8C00 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #FF8C00 0%, #FF8C00 100%);
    /* IE10+ */
    background: linear-gradient(to right, #FF8C00 0%, #FF8C00 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF8C00', endColorstr='#FF8C00', GradientType=1);
    /* IE6-9 */
}

.redprio {
    background: #dd2c2c;
    /* Old browsers */
    background: -moz-linear-gradient(left, #dd2c2c 0%, #f24343 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #dd2c2c), color-stop(100%, #f24343));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #dd2c2c 0%, #f24343 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #dd2c2c 0%, #f24343 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #dd2c2c 0%, #f24343 100%);
    /* IE10+ */
    background: linear-gradient(to right, #dd2c2c 0%, #f24343 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dd2c2c', endColorstr='#f24343', GradientType=1);
    /* IE6-9 */
}

.orangeprio {
    background: #c98028;
    /* Old browsers */
    background: -moz-linear-gradient(left, #c98028 0%, #ed9e44 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #c98028), color-stop(100%, #ed9e44));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #c98028 0%, #ed9e44 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #c98028 0%, #ed9e44 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #c98028 0%, #ed9e44 100%);
    /* IE10+ */
    background: linear-gradient(to right, #c98028 0%, #ed9e44 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c98028', endColorstr='#ed9e44', GradientType=1);
    /* IE6-9 */
}

.greenprio {
    background: #31ce29;
    /* Old browsers */
    background: -moz-linear-gradient(left, #31ce29 0%, #4bef43 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #31ce29), color-stop(100%, #4bef43));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #31ce29 0%, #4bef43 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #31ce29 0%, #4bef43 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #31ce29 0%, #4bef43 100%);
    /* IE10+ */
    background: linear-gradient(to right, #31ce29 0%, #4bef43 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#31ce29', endColorstr='#4bef43', GradientType=1);
    /* IE6-9 */
}

.darkgreenprio {
    background: #169210;
    /* Old browsers */
    background: -moz-linear-gradient(left, #169210 0%, #169210 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #169210), color-stop(100%, #169210));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #169210 0%, #169210 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #169210 0%, #169210 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #169210 0%, #169210 100%);
    /* IE10+ */
    background: linear-gradient(to right, #169210 0%, #169210 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#169210', endColorstr='#169210', GradientType=1);
    /* IE6-9 */
}

.darkprio {
    background: #000000;
    /* Old browsers */
    background: -moz-linear-gradient(left, #000000 0%, #000000 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #000000), color-stop(100%, #000000));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #000000 0%, #000000 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #000000 0%, #000000 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #000000 0%, #000000 100%);
    /* IE10+ */
    background: linear-gradient(to right, #000000 0%, #000000 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#000000', endColorstr='#000000', GradientType=1);
    /* IE6-9 */
}


.magentaprio {
    background: #ff367d;
    /* Old browsers */
    background: -moz-linear-gradient(left, #ff367d 0%, #ff1c6d 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #ff367d), color-stop(100%, #ff1c6d));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #ff367d 0%, #ff1c6d 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #ff367d 0%, #ff1c6d 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #ff367d 0%, #ff1c6d 100%);
    /* IE10+ */
    background: linear-gradient(to right, #ff367d 0%, #ff1c6d 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff367d', endColorstr='#ff1c6d', GradientType=1);
    /* IE6-9 */
}

.cyaan {
    background: #38ccff;
    /* Old browsers */
    background: -moz-linear-gradient(left, #38ccff 0%, #23c4f9 100%);
    /* FF3.6+ */
    background: -webkit-gradient(linear, left top, right top, color-stop(0%, #38ccff), color-stop(100%, #23c4f9));
    /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(left, #38ccff 0%, #23c4f9 100%);
    /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(left, #38ccff 0%, #23c4f9 100%);
    /* Opera 11.10+ */
    background: -ms-linear-gradient(left, #38ccff 0%, #23c4f9 100%);
    /* IE10+ */
    background: linear-gradient(to right, #38ccff 0%, #23c4f9 100%);
    /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff367d', endColorstr='#ff1c6d', GradientType=1);
    /* IE6-9 */
}

div.redprio,
div.darkprio,
div.darkorangeprio,
div.orangeprio,
div.greenprio {
    padding: 5px;
    color: #fff;
    margin-bottom: 10px;
}

.bottom_row td {
    vertical-align: top;
}

#temp_id_files_form,
#internal_delivery_datetime_form {
    margin-bottom: 10px;
    float: left;
    width: 100%;
}

#temp_id_files_form .temp_id_input,
.temp_id_submit,
#internal_delivery_datetime_form .internal_delivery_datetime_input,
#internal_delivery_datetime_form .internal_delivery_datetime_submit {
    float: left;
}

#temp_id_files_form .temp_id_input,
#internal_delivery_datetime_form .internal_delivery_datetime_input {
    width: 90.5%;
}

#temp_id_files_form .temp_id_submit,
#internal_delivery_datetime_form .internal_delivery_datetime_submit {
    width: 9.5%;
}

.match {
    border: 1px solid #0099ff;
    background: #C4E8FF;
}

.match a {
    color: #000;
}

.matches {}

.extramatch {
    color: #0099ff;
}

#search_input {}

#filter .search-checkbox {
    width: 207px;
    position: relative;
    padding-left: 3px;
}

#filter .search-checkbox label {
    margin-left: 0;
    padding-top: 2px;
    display: inline-block;
}

#filter .search-checkbox input {
    position: absolute;
    right: 0;
}

#filter .search-filenames {
    display: none;
}

#search_input:focus {
    border: 2px solid #0099ff;
    -webkit-box-shadow: 0 0 6px #007eff;
    -moz-box-shadow: 0 0 5px #007eff;
    box-shadow: 0 0 5px #007eff;
}

#search_results td {
    vertical-align: top;
    overflow: hidden;
}

#search_results a {
    display: block;
    margin: -10em;
    padding: 10em;
}

#filterbox label:hover {
    cursor: pointer;
    cursor: hand;
}

.tbr {
    border-right: solid 2px #0099ff;
}

.comments_table td:first-child {}

.checkboxes {
    display: none;
    width: 44px;
}

.checkboxes textarea {
    min-width: 175px;
    height: 40px;
    position: absolute;
    top: 10px;
    right: 0;
}

.comments_status {
    display: none;
    padding: 5px;
    background: #fff;
    top: 10px;
    position: absolute;
    right: 0px;
    width: 250px;
    border: solid 1px #000000;
}

.show_covers {
    visibility: hidden;
    padding: 5px;
    width: 250px;
    position: absolute;
}

.custom_page_input {
    position: absolute;
    background: #fff;
    padding: 2px;
    border: 1px solid #666;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: auto;
}

.hours-controls {}

.hours-controls a {
    margin-right: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
    color: #e6007d;
}

.edit_hours_form label {
    width: 100px;
    display: inline-block;
}

.edit_hours_form {
    margin-top: 50px;
}

.edit_hours_form .input-holder {
    margin-bottom: 5px;
}

/* StorageGrid */
.storage_grid_wrapper .storage_grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    grid-auto-rows: 1fr;
    gap: 4px;
    margin-bottom: 4px;
}

.storage_grid_wrapper .storage_grid .grid_cell {
    background: #999999;
    padding: 3px;
    min-height: 80px;
}

.storage_grid_wrapper .storage_grid .grid_cell.ui-droppable-hover {
    border: 2px solid #e6007d;
}

.storage_grid_wrapper .storage_grid .grid_cell .cell_position {
    color: white;
}

.storage_grid_wrapper .storage_grid .grid_cell input[type=text] {
    width: 90%;
}

.storage_grid_wrapper .storage_grid div.new {
    background: #28a745;
}

.storage_grid_wrapper .storage_grid div.active {
    background: #0099ff;
}

.storage_grid_wrapper .storage_grid div.old {
    background: #f28a15;
}

.storage_grid_wrapper .storage_grid div.remove {
    background: #dc3545;
}

.storage_grid_wrapper .storage_grid div.unknown {
    background: #ffa600;
}

.storage_grid_wrapper .storage_grid div.match {
    border: 2px solid #e6007d;
}

.storage_grid_wrapper .storage_grid div.disabled {
    border: 2px solid white;
    background: #f3f3f3;
}

.storage_grid_wrapper .storage_grid div.disabled .cell_position {
    color: #999999;
}

.storage_grid_wrapper .storage_grid div label {
    width: 25%;
    display: inline-block;
}

.manage_button {
    float: right;
    margin-left: 10px;
}

.storage_grid_wrapper .search_storage_grid {
    width: 200px;
    padding: 6px;
    margin-left: 3px;
    margin-right: 20px;
    float: left;
}

.storage_grid_wrapper .btn {
    padding: 6px 10px;
    background: #cdcdcd;
    color: black;
    text-decoration: none;
    border-radius: 5px;
    float: left;
    margin-right: 10px;
}

/* Complaints */
.feedback_overview {}

.feedback_overview .is_online td:first-child {
    background: #31ce29;
}

.feedback_overview .not_online td:first-child {
    background: #dd2c2c;
}

.feedback_overview .first td {
    border-top: 1px solid #0099ff;
}

/* Info messages */
.info_message {
    width: 100%;
    background: #0099ff;
    color: white;
    padding: 5px 0;
    margin: 0;
    font-family: "arial";
    font-size: 18px;
    margin-bottom: 1px;
    text-align: center;
}

.info_message a {
    color: white;
}

.info_message>div {
    width: 1150px;
    margin: 0 auto;
}

/* Status check */
.open_button {
    cursor: pointer;
}

.open_row {
    display: none;
}

.open_row_courier {
    display: none;
}

.open_row_local {
    display: none;
}

.open_row_all-orders {
    display: none;
}

.open_row_ready_send {
    display: none;
}

.open_row_rush {
    display: none;
}

.open_row_orientation {
    display: none;
}


.instaprint-box {
    background-color: white;
    border-style: solid;
    border-radius: 5px;
    width: 125px;
    position: absolute;
    padding-right: 10px;
    height: 90px;
    text-align: center;
    margin: -50px;
    margin-top: -10px;

}

.dataTables_wrapper {
    margin-bottom: 20px;
}

.dataTable .ellipsis {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.dataTable a.link {
    color: black;
    font-weight: normal;
    text-decoration: none;
}

.dataTable a.link:hover {
    color: #0099ff;
    text-decoration: none;
}

.dataTable.double-row tbody th,
.dataTable.double-row tbody td {
    padding: 3px 10px;
}

.dataTable.double-row tbody tr {
    height: 37px !important;
}

table.dataTable tr {
    cursor: pointer;
}

table.dataTable tr.transparent td.select-checkbox:after,
table.dataTable tr.transparent th.select-checkbox:after {
    content: "✓";
    font-size: 20px;
    margin-top: -19px;
    margin-left: -6px;
    text-align: center;
}

table.dataTable.compact tr.transparent td.select-checkbox:after,
table.dataTable.compact tr.transparent th.select-checkbox:after {
    margin-top: -16px;
}

table.dataTable thead>tr>th.sorting:before,
table.dataTable thead>tr>th.sorting:after,
table.dataTable thead>tr>th.sorting_asc:before,
table.dataTable thead>tr>th.sorting_asc:after,
table.dataTable thead>tr>th.sorting_desc:before,
table.dataTable thead>tr>th.sorting_desc:after,
table.dataTable thead>tr>th.sorting_asc_disabled:before,
table.dataTable thead>tr>th.sorting_asc_disabled:after,
table.dataTable thead>tr>th.sorting_desc_disabled:before,
table.dataTable thead>tr>th.sorting_desc_disabled:after,
table.dataTable thead>tr>td.sorting:before,
table.dataTable thead>tr>td.sorting:after,
table.dataTable thead>tr>td.sorting_asc:before,
table.dataTable thead>tr>td.sorting_asc:after,
table.dataTable thead>tr>td.sorting_desc:before,
table.dataTable thead>tr>td.sorting_desc:after,
table.dataTable thead>tr>td.sorting_asc_disabled:before,
table.dataTable thead>tr>td.sorting_asc_disabled:after,
table.dataTable thead>tr>td.sorting_desc_disabled:before,
table.dataTable thead>tr>td.sorting_desc_disabled:after {
    font-size: 2em
}

table.dataTable > tbody > tr.active > * {
    box-shadow: inset 0 0 0 9999px rgba(56, 204, 255, 0.1) !important;
    color: #009bd1 !important;
}

table.dataTable tr.no-hover,
table.dataTable td.no-hover {
    box-shadow: unset !important
}

.filter-btn {
    font-size: 11px;
    color: blue;
}

.noselect {
    -webkit-touch-callout: none;
    /* iOS Safari */
    -webkit-user-select: none;
    /* Safari */
    -khtml-user-select: none;
    /* Konqueror HTML */
    -moz-user-select: none;
    /* Firefox */
    -ms-user-select: none;
    /* Internet Explorer/Edge */
    user-select: none;
    /* Non-prefixed version, currently
                                  supported by Chrome and Opera */
}

.machinefailure-border {
    border: 20px solid pink;
    border-image: repeating-linear-gradient(-45deg,
            #000,
            #000 20px,
            #ffb101 20px,
            #ffb101 40px) 20;
}

.clickup {
    position: fixed;
    top: 0;
    left: 2%;
    z-index: 100;
    background: #FFF;
    border-left: 1px solid black;
    border-right: 1px solid black;
    border-bottom: 1px solid black;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    min-width: 250px;
}

.clickup.logged-out {
    min-width: unset;
}

.clickup .header {
    padding: 7px 10px 6px;
    cursor: pointer;
    text-align: left;
}

.clickup .login {
    display: none;
    padding: 5px 1px 0 5px;
    cursor: pointer;
    text-align: left;
}

.clickup.logged-out .header {
    display: none;
}

.clickup.logged-out>.login {
    display: block;
}

.clickup .header input[name="pincode"] {
    display: none;
    padding: 2px 5px;
    margin-left: 10px;
    margin-right: 5px;
}

.clickup .header .pincode {
    display: inline-block;
    background: url('../images/icon-thunder.png') no-repeat;
    background-size: 100%;
    height: 20px;
    width: 20px;
    margin-bottom: -5px;
    margin-right: 5px;
}

.clickup.pincode .header input[name="pincode"] {
    display: inline-block;
    width: 25px;
}

.clickup .spinner {
    display: none;
    background: url('../images/loading.gif') no-repeat;
    background-size: 100%;
    height: 22px;
    width: 22px;
    margin-bottom: -5px;
    margin-right: 5px;
    float: right;
}

.clickup.loading .spinner {
    display: inline-block;
}

.clickup .header .refresh,
.clickup .header .logout {
    display: inline-block;
    background: url('../images/refresh.png') no-repeat;
    background-size: 100%;
    height: 16px;
    width: 16px;
    margin-bottom: -2px;
    margin-right: 5px;
}

.clickup .login .login {
    display: inline-block;
    background: url('../images/login.png') no-repeat;
    background-size: contain;
    height: 16px;
    width: 16px;
    margin-bottom: -2px;
    margin-right: 5px;
}

.clickup .header .logout {
    position: static;
    background: url('../images/logout.png') no-repeat;
    background-size: 100%;
}

.clickup .header .toggle {
    float: right;
    padding-top: 3px;
    margin-left: 5px;
}

.clickup .header .toggle span {
    display: inline-block;
    background: url('../images/arrow-expand.png') no-repeat;
    background-size: 100%;
    height: 16px;
    width: 16px;
    margin-bottom: -2px;
    margin-right: 5px;
}

.clickup.open .header .toggle span {
    background: url('../images/arrow-collapse.png') no-repeat;
    background-size: 100%;
}

.clickup .header .message {
    line-height: 24px;
}

.clickup .header .message.overdue {
    color: red;
}

.clickup .header .message.due {
    color: orange;
}

.clickup .header .filter {
    display: grid;
    grid-template-columns: 125px 75px;
    margin-left: 10px;
    font-size: 12px;
    position: relative;
    width: 220px;
    height: 8.5px;
    float: right;
    padding-bottom: 3px;
    margin-top: -4px;
}

.clickup .header .filter .wrap {
    display: grid;
    grid-template-rows: 16px 16px;
    border-left: 1px dashed black;
    padding-left: 5px;
}

.clickup .header .filter .wrap-1 {
    grid-template-columns: 90px 30px;
}

.clickup .header .filter .wrap-2 {
    grid-template-columns: 55px 30px;
}

.clickup .header .filter .wrap>* {
    display: inline-block;
}

.clickup .header input[type="checkbox"] {
    margin-top: 0;
}

.clickup .content {
    display: none;
    border-top: 1px solid black;
    padding-bottom: 5px;
}

.clickup .content th,
.clickup .content td {
    padding: 5px 3px;
}

.clickup .content th:nth-child(-n+3),
.clickup .content td:nth-child(-n+3) {
    width: 16px;
}

.clickup .content th:first-child,
.clickup .content td:first-child {
    padding-left: 15px;
    width: 13px;
}

.clickup .content th:last-child,
.clickup .content td:last-child {
    padding-right: 15px;
}

.clickup .content td[name="closed"] span {
    background: url('../images/icon-done.svg') no-repeat;
    background-size: 100%;
    height: 16px;
    width: 16px;
    margin-bottom: -2px;
    display: inline-block;
}

.clickup .content td[name="closed"] span:hover {
    transform: scale(1.5);
}

.clickup .content td[name="delay"] span {
    background: url('../images/reschedule-task.png') no-repeat;
    background-size: 100%;
    height: 16px;
    width: 16px;
    margin-bottom: -2px;
    display: inline-block;
}

.clickup .content td[name="status"] span,
.clickup .content td[name="assignees"] span {
    display: inline-block;
    height: 10px;
    width: 10px;
    margin-bottom: -1px;
    margin-right: 2px;
}

.clickup .content td[name="assignees"] span {
    background-size: contain !important;
    height: 20px;
    width: 20px;
}

.clickup .content td[name="name"] {
    padding-right: 5px;
}

.clickup .content td[name="duedate"] {
    text-align: right;
}

.clickup .content td[name="duedate"].due {
    color: orange;
    font-weight: bold;
}

.clickup .content td[name="duedate"].overdue {
    color: red;
    font-weight: bold;
}

.clickup.open .content {
    display: block;
}

.clickup table {
    border-collapse: collapse;
    width: 100%;
}

.clickup tbody tr {
    cursor: pointer;
}

.clickup thead tr {
    background: none !important;
}

.clickup tr:nth-child(odd) {
    background-color: #EEEEEE;
}

.clickup tr .form {
    background: none;
    width: calc(100% - 5px);
}

.clickup .content {
    max-height: 500px;
    overflow-y: auto;
}

.clickup tr .form .comment {
    width: calc(100% - 15px);
}

.clickup table .form div.comment textarea {
    min-height: 95px;
    width: 100%;
    margin-top: 5px;
}

.clickup tr .form .comment,
.clickup tr .form .buttons {
    width: 100%;
}

.clickup tr .form .buttons button {
    float: right;
}

.clickup tr .form .buttons button[name="cancel"] {
    margin-left: 10px;
    margin-right: -7px;
}

.clickup table .buttons {
    margin-right: -7px;
    margin-bottom: 5px;
    margin-top: -5px;
}

.clickup-options,
.clickup-description {
    position: fixed;
    display: none;
    border: 1px solid #444;
    z-index: 1000;
    background: #FFF;
    color: #888;
    font-size: 14px;
    border-radius: 3px;
}

.clickup-description {
    margin: 20px;
    padding: 10px 10px;
    max-width: min(80%, 600px);
    color: #444;
    max-height: min(80%, 600px);
    overflow: auto;
    font-size: 13px;
}

.clickup-description>span {
    font-weight: bold;
    font-size: 14px;
}

.clickup-options .option {
    padding: 5px 10px;
}

.clickup-options .option:hover {
    background: #EEE;
    cursor: pointer;
}

#employee-actions .banana {
    display: block;
    background: url('../images/banana-dance.gif') no-repeat;
    background-size: 100%;
    width: 0;
    height: 0;
}

.printbuttons-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 5px;
    margin-bottom: 5px;
    margin-right: 5px
}

.printbuttons-container {
    aspect-ratio: 1 / 1;
    /* background-color: green;
    border: 1px solid red; */
}

.printbuttons-item {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    height: 100%;
    width: 100%;
    color: black;

    background-color: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.printbuttons-item:hover {
    color: #0099ff !important;
}

.printbuttons-svg {
    height: 100%;
    width: 100%;
}

.printbuttons-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    overflow: hidden;
}

.printbuttons-image:hover {
    background-color: #0099ff !important;
}

.printbuttons-image.check {
    background-color: red !important;
}

.storage_legend_container {
    display: flex;
    margin-bottom: 10px;
}

.storage_legend_column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.storage_legend_row {
    flex: 1;
    display: flex;
    align-items: center;
}

.storage_legend_color {
    width: 30px;
    height: 15px;
    margin-right: 5px;
}

.storage_legend_color.new {
    background-color: #28a745;
}

.storage_legend_color.active {
    background-color: #0099ff;
}

.storage_legend_color.old {
    background-color: #f28a15;
}

.storage_legend_color.remove {
    background-color: #dc3545;
}

.storage_legend_icon {
    margin-right: 4px;
}

.storage_legend_text {
    margin: 0px;
}

.btn-pb-sub {
    color: #ffffff;
    background-color: #999999;
    border-color: #0099ff;
    border-width: 2px;
    border-radius: 0px;
}

.btn-pb-sub:hover {
    background-color: white;
    color: #3C3C3C;
    text-decoration: none;
}

.btn-pb-sub.active {
    background-color: #e6007d;
}

.btn-pb-sub.active:hover {
    color: #ffffff;
}

.btn-group .btn input[type="radio"] {
    position: fixed;
    opacity: 0;
    pointer-events: none;
}

.add-status {
    position: relative;
}

.add-status .rush {
    position: absolute;
    transform: translateY(-250%);
    -webkit-transform: translateY(-190%);
    right: 20px;
    height: 24px;
    background: white;
    border: 1px solid black;
    border-radius: 3px;
}


.autologin-icon {
    width: 15px;
    height: 15px;
    margin-left: 5px;
    cursor: pointer;
}

.msg-confirm-button {
    display: none;
    padding: 8px 12px;
}

.msg-confirm-button.confirmed {
    padding: 2px 10px 10px 12px;
    background: green;
    color: white;
    border-color: white;
}

.msg-confirm-button.confirmed:after {
    content: "✓";
    font-size: 24px;
    margin-top: -19px;
    margin-left: 3px;
    text-align: center;
    color: white;
}

.addressform input {
    width: calc(100% - 30px);
    margin-top: 10px;
}

.printoperator-circle {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 9999999px;
}

.status-running {
    background-color: #00C10D;
}

.text-running {
    color: #00C10D;
}

.status-warning {
    background-color: #FFB300;
}

.text-warning {
    color: #FFB300
}

.btn-grey {
    background-color: #f6f6f7;
    color: #24212b;
    text-decoration: none;
}

.btn-grey:hover {
    background-color: #dbdbdf;
}

input[type="color"] {
    -webkit-appearance: none;
    appearance: none;
}

input[type="color"]::-webkit-color-swatch-wrapper {
    padding: 0;
}

input[type="color"]::-webkit-color-swatch {
    border: none;
}
