﻿html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

ol, ul {
    list-style: none;
}

select {
    border-color: #6F8EAA;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    line-height: 1.3em;
    font-weight: 400;
    float: left;
    width: 100%;
    color: #000;
    padding-bottom: 10px;
    -webkit-print-color-adjust: exact !important;
    min-width: 520px;
}

.bottom-logo {
    /*min-height: 800px;*/
}

.bottom-logo:before {
    background-image: url(images/body-bottom-img.png);
    background-repeat: no-repeat;
    background-position: right bottom;
    width: 223px;
    height: 273px;
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
}

a {
    cursor: pointer;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    line-height: 1.1em;
}

h1 {
    font-size: 40px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

h5 {
    font-size: 16px;
}

@media (max-width: 768px) {
    h1 {
        font-size: 26px;
    }

    h2 {
        font-size: 20px;
    }

    h3 {
        font-size: 18px;
    }

    h4 {
        font-size: 16px;
    }

    h5 {
        font-size: 14px;
    }
}

@media (min-width: 1440px) {
    .container {
        width: 1435px;
        padding: 0;
    }
}

.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
    background-color: #e6e6e6;
    opacity: 1;
    cursor: not-allowed;
}

.dn-notification {
    background: rgba(0,0,0,.6);
    position: fixed;
    height: 100%;
    width: 100%;
    z-index: 9999;
}

.absolute-center {
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 6;
}

.underlined {
    border-bottom: 1px solid #6F8EAA;
    margin-bottom: 5px;
    width: 100%;
    float: left;
}

.numeric-column {
    text-align: right;
    padding-right: 3px;
}

.border-top {
    border-top: 1px solid #6F8EAA !important;
}

.border-bottom {
    border-bottom: 1px solid #6F8EAA !important;
}
/* Buttons */
.btn {
    border-radius: 0px;
}

    .btn:hover,
    .btn:focus,
    .btn.focus {
        color: #fff;
    }

.blue-btn {
    padding: 6px 24px;
    background-color: #6F8EAA;
    border-color: #6F8EAA;
    border: 1px solid;
    color: #fff;
}

    .blue-btn:hover {
        background: #fff;
        border-color: #6F8EAA;
        color: #6F8EAA;
    }

.action-buttons a img {
    width: 20px;
    float: right;
    display: inline-block;
    margin-left: 5px;
}

.action-buttons a:hover img {
    -webkit-filter: brightness(25%);
    filter: brightness(25%);
}
/* Loading */
.loading-overlay i {
    font-size: 52px;
}

.loading-small {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,.6);
    z-index: 101;
    top: 0;
    left: 0;
}

    .loading-small .fa {
        font-size: 50px;
    }

.body-content {
    padding-top: 5px;
}
/* Notifications */
.notification-content {
    padding: 60px 30px;
    background: #293f54;
    border: 1px solid #d8dbde;
    color: #fff;
}

.close-dn-notification {
    position: absolute;
    top: 5px;
    right: 15px;
    font-weight: normal;
    font-size: 30px;
    color: #fff;
}

.dn-notification-msg {
    font-weight: bold;
}

.notification-options {
    text-align: center;
    padding-top: 10px;
}

    .notification-options button:first-child {
        margin-right: 15px;
    }
/* Custom checkbox and radio */
.radio,
.checkbox {
    margin: 0;
}

.custom-box {
    margin-top: 3px !important;
    margin-bottom: 3px !important;
}

    .custom-box input[type=checkbox],
    .custom-box input[type=radio] {
        display: none;
    }

    .custom-box .control-label {
        padding-left: 26px !important;
        position: relative;
    }

    .custom-box label:before {
        content: "";
        display: inline-block;
        width: 17px;
        height: 17px;
        margin-right: 5px;
        background-color: #fff;
        box-shadow: none;
        border: 1px solid #ddd;
        float: left;
        position: absolute;
        left: 0px;
    }

    .custom-box input[type=checkbox]:checked + label:before,
    .custom-box input[type=radio]:checked + label:before {
        content: "\2713";
        color: #000;
        font-size: 14px;
        text-align: center;
        font-weight: bold;
    }

.checkbox-list-wrapper {
    margin-top: 0px !important;
    margin-bottom: 15px !important;
}

    .checkbox-list-wrapper .control-label {
        margin-top: 4px !important;
    }
/* Main layout */
.sidebar-col {
    float: left;
    width: 265px;
}

.primary-col {
    float: left;
    width: 1168px;
    padding: 0 0px;
    height: calc(100vh - 120px);
}

    .primary-col .tab-pane {
        padding-top: 8px;
    }
/* Main Calendar */
.main-calendar .well-sm {
    padding: 4px;
    margin-bottom: 5px;
}

.main-calendar th {
    vertical-align: middle !important;
}
/* Time Picker */
.time-picker-holder .form-control {
    padding: 6px 6px;
}
/* Schedule Table*/
.fixed-height {
    float: left;
    width: 1435px;
    border: 1px solid #ccc;
    border-top: none;
}

.right-table-holder {
    height: calc(100vh - 200px);
    overflow-y: auto;
    width: 100%;
    float: left;
}

/*.primary-col .nav-tabs {
    margin-left: -15px;
    margin-right: -15px;
}*/

.schedule-wrapper {
    width: 100%;
    display: block;
    white-space: nowrap;
    font-size: 12px;
    color: #000;
    float: left;
}

    .schedule-wrapper .single-row {
        margin: 0px;
        width: 1150px;
        border: 1px solid #ccc;
        border-bottom: none;
        display: table;
        box-sizing: border-box;
        border-top: none;
    }

        .schedule-wrapper .single-row:last-child {
            border-bottom: 1px solid #ccc;
        }

.background-row:nth-child(even) {
    background-color: #efefef;
}

.background-row:nth-child(odd) {
    background-color: #fff;
}

.acordion-holder > .single-row:nth-child(even) {
    background-color: #efefef;
}

.acordion-holder > .single-row:nth-child(odd) {
    background-color: #fff;
}

.acordion-holder > .single-row:nth-child(even) + .ng-hide + .ng-hide + .ng-hide + .single-row {
    background-color: #fff;
}

    .acordion-holder > .single-row:nth-child(even) + .ng-hide + .ng-hide + .ng-hide + .single-row + .single-row {
        background-color: #efefef;
    }

.acordion-holder.in > .single-row {
    width: 1148px;
}

.main-schedule-row {
    border-bottom: 1px solid #ccc;
}

.opened-acordion-holder > .single-row:nth-child(even) {
    background-color: #efefef;
}

.opened-acordion-holder > .single-row:nth-child(odd) {
    background-color: #fff;
}

.text-bold {
    font-weight: 600;
}

.first-partial-row {
    border-top: 1px solid #000 !important;
}

.schedule-wrapper p {
    margin: 0px;
    padding: 0px;
    line-height: 26px;
}

.left-col {
    float: left;
    width: 270px;
    padding-left: 4px;
    height: 100%;
    height: 27px;
    border-top: 1px solid #ccc;
}

.row-border-bottom {
    border-bottom: 1px solid #ccc;
}

.row-for-expand {
    cursor: pointer;
}

    .row-for-expand:hover > .left-col, .row-for-expand:hover > .middle-col, .row-for-expand:hover .right-col {
        background-color: #e6e6e6;
    }

.add-user-title {
    width: 100%;
    padding-left: 4px;
    position: relative;
}

    .add-user-title .small-table-heading {
        width: 100%;
        float: left;
    }

.add-user-section {
    float: left;
    position: absolute;
    top: 0px;
    left: 160px;
}

    .add-user-section .dropdown-custom-activator {
        margin: 2px !important;
    }

.expander:hover {
    cursor: pointer;
}

.expander[aria-expanded="true"] .small-table-heading {
    color: #00772a;
}

.small-table-heading:hover {
    background-color: #e6e6e6;
}

.middle-col {
    float: left;
    width: 720px;
    height: 100%;
    border-top: 1px solid #ccc;
}

.single-hour {
    width: 30px;
    float: left;
    border-right: 1px solid #ccc;
    height: 100%;
    text-align: center;
    position: relative;
    min-height: 26px;
}

    .single-hour span {
        display: block;
        height: 26px;
        line-height: 26px;
    }

.middle-col .single-hour:first-child {
    border-left: 1px solid #ccc;
}

.right-col {
    width: 158px;
    text-align: center;
    float: left;
    border-top: 1px solid #ccc;
    font-size: 11px;
    height: 27px;
}

.acordion-holder.in > .single-row .right-col {
    width: 156px;
}

.colored-row {
    background-color: #ffe3b9;
}

.vertical-row .single-hour span {
    transform: rotate(-90deg);
    display: block;
    height: 78px;
    padding-top: 8px;
    text-align: left;
    width: 70px;
}

.vertical-row .right-col .half-cell {
    height: 78px;
    display: table;
}

    .vertical-row .right-col .half-cell p {
        display: table-cell;
        vertical-align: middle;
    }

.alert-cell {
    background-color: #f74b4b;
    color: #fff;
}

.blue-cell {
    background-color: #4c4cbb;
    color: #fff;
}

.single-hour input {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    margin-bottom: 2px;
}

.col-subheader {
    float: left;
}

.width-46 {
    width: 46%;
}

.width-26 {
    width: 26%;
}

.width-28 {
    width: 28%;
}

.select-box {
    height: 24px;
    margin-top: 1px;
    float: left;
    background-color: #fff;
    position: relative;
    z-index: 2;
}

.time-range-holder {
    float: left;
    display: block;
    line-height: 26px;
    text-align: center;
}

    .time-range-holder input {
        width: 100%;
        height: 24px;
        text-align: center;
    }

.manager-row {
    background-color: #dadada;
}

    .manager-row .single-hour {
        border-right: none;
    }

.worker-row {
    border: none !important;
    width: 1146px !important;
}

.workers-main-holder .worker-row:nth-child(even) {
    background-color: #efefef;
}

.workers-main-holder .worker-row:nth-child(odd) {
    background-color: #fff;
}

.border-top {
    border-top: 1px solid #ccc !important;
}

.worker-name-holder {
    position: relative;
    padding-right: 20px;
    z-index: 3;
    /*overflow-x: hidden;*/
}

    .worker-name-holder span {
        display: block;
        float: left;
        width: 100%;
    }

    .worker-name-holder p {
        min-height: 26px;
    }

        .worker-name-holder p.dropdown-toggle + .tooltip {
            width: 150px;
            left: 0px !important;
        }

    .worker-name-holder .delete-worker {
        position: absolute;
        right: 0px;
        top: 0px;
        background-color: #fff;
        height: 100%;
        bottom: 0px;
        padding-left: 6px;
        padding-right: 5px;
        padding-top: 3px;
        font-size: 15px;
        color: red;
    }

    .worker-name-holder .dropdown-menu {
    }

.worker-row .middle-col {
    position: relative;
}

.worker-row .right-col {
    width: 156px;
}

.working-note-holder {
    position: relative;
    width: 100%;
}

.show-working-note {
    position: absolute;
    bottom: 2px;
    background-color: #5d5d5d;
    color: #fff;
    border-radius: 5px;
}

.position-left {
    left: 0px;
}

.position-center {
    left: 50%;
    transform: translateX(-50%);
}

.position-right {
    right: 0px;
}

.show-working-note span {
    padding: 0px 10px;
    display: block;
    max-width: 720px;
}

.show-working-time {
    position: absolute;
    bottom: 1px;
    height: 5px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    border-bottom: 4px;
    border-left: 1px solid #ccc;
    background-color: #e4e4e4;
    padding: 2px;
    text-align: center;
}

.normal-line {
    border-bottom-style: solid;
}

.dashed-line {
    border-bottom-style: dashed;
}

.bg-green {
    border-bottom-color: green;
}

.bg-red {
    border-bottom-color: red;
}

.worker-row .single-hour {
    border-right: 1px solid #dadada;
}

.worker-row .middle-col .single-hour:first-child {
    border-left: 1px solid #dadada;
}

.top-border-none {
    border-top: none !important;
}

.border-right-none {
    border-right: none !important;
}

.workers-main-holder {
    float: left;
}

.acordion-holder {
    max-width: 1150px;
}

.collapse.in {
    border: 1px solid #00a239;
    border-top: none;
}

    .collapse.in + .opened-acordion-holder {
        border: 1px solid #00a239;
        border-top: none;
        max-width: 1150px;
    }

        .collapse.in + .opened-acordion-holder .single-row {
            width: 1148px !important;
        }

            .collapse.in + .opened-acordion-holder .single-row .right-col {
                width: 156px !important;
            }

.opened-acordion-holder-ontop {
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    top: 178px;
}

.first-partial-row-fixed {
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    top: 286px;
    border-bottom: 2px solid #ccc !important;
}

.position-ultimate-row {
    border-top: 1px solid #ccc !important;
}

    .position-ultimate-row .single-hour {
        min-height: 27px;
    }

.position-ultimate-row-fixed {
    position: fixed !important;
    z-index: 99999;
    background-color: #fff;
    top: 258px !important;
}

.position-ultimate-sum-row-fixed {
    position: fixed;
    z-index: 99999;
    background-color: #fff;
    top: 286px !important;
    border-top: 1px solid #ccc !important;
}

.acordion-holder1 {
    width: 1150px;
    float: left;
    overflow-y: scroll;
    overflow-x: hidden;
}

    .acordion-holder1 .single-row {
        width: 1135px !important;
    }

.position-ultimate-sum-row {
    border-top: 1px solid #ccc !important;
}

.margin-t-tinny {
    margin-top: 3px !important;
}

.row-border-bottom {
    border-bottom: 1px solid #ccc !important;
}

.user-expander-wrapper {
    font-size: 20px;
    text-align: right;
    padding-right: 10px;
}

    .user-expander-wrapper .fa:hover {
        cursor: pointer;
    }

.pos-relative {
    position: relative;
}

.users-listing {
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    width: 260px;
    background-color: #e5ffe5;
    right: -1px;
    top: 31px;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
    z-index: 9;
    height: calc(100vh - 360px);
    padding-left: 3px;
    padding-right: 3px;
}

    .users-listing .users-list-heading {
        padding: 10px;
        text-align: center;
        float: left;
        width: 98%;
        margin-left: 1%;
        padding-bottom: 5px;
        margin-bottom: 10px;
        font-weight: 600;
    }

        .users-listing .users-list-heading .ulh-name-col {
            width: 60%;
            float: left;
            text-align: left;
        }

        .users-listing .users-list-heading .ulh-hours-col {
            width: 40%;
            float: left;
            text-align: right;
        }

.users-listing-expanded {
    max-height: 263px;
    overflow-y: auto;
    overflow-x: hidden;
    border: 1px solid #ccc;
    -webkit-transition: all 0.6s;
    transition: all 0.6s;
}

.users-listing .single-user {
    padding: 3px 12px;
    line-height: 16px;
    float: left;
    width: 100%;
    display: table;
    vertical-align: middle;
    color: #000;
    font-size: 12px;
    border-bottom: 1px solid #b4e4b4;
}

    .users-listing .single-user .user-name {
        width: 60%;
        vertical-align: middle;
        display: table-cell;
        float: none;
        padding-bottom: 3px;
    }

    .users-listing .single-user .working-hours {
        float: none;
        width: 39%;
        text-align: right;
        display: table-cell;
        vertical-align: middle;
    }

.half-cell {
    width: 50%;
    float: left;
    padding: 0px 1px;
    box-sizing: border-box;
}

.common-content {
    position: absolute;
    height: 52px;
    display: table;
    vertical-align: middle;
    right: 0px;
    background-color: #fff;
}

    .common-content p {
        display: table-cell;
        vertical-align: middle;
    }

.right-col .half-cell:first-child {
    border-right: 1px solid #ccc;
    width: 40%;
}

.right-col .half-cell:last-child {
    width: 60%;
}

.workers-list-dropdown {
    max-height: 245px;
    height: 245px;
    overflow-y: scroll;
}

.workers-list-dropdown {
    width: 730px;
}

    .workers-list-dropdown li {
        position: relative;
        float: left;
        width: 100%;
        margin-bottom: 2px;
        padding-left: 10px;
        padding-right: 10px;
    }

        .workers-list-dropdown li .request-text {
            float: left;
            position: relative;
            padding: 3px;
            padding-right: 28px;
            min-height: 18px;
            width: 100px;
            line-height: 12px;
            font-size: 12px;
            border-bottom: 1px solid #ccc;
        }

        .workers-list-dropdown li span.bg-green {
            background-color: #6ee86e;
        }

        .workers-list-dropdown li span.bg-red {
            background-color: #ff7777;
        }

        .workers-list-dropdown li span.checked-icon:after {
            position: absolute;
            right: 5px;
            font-family: fontAwesome;
            content: "\f00c";
            color: #fff;
        }

        .workers-list-dropdown li span.rejected-icon:before {
            position: absolute;
            right: 5px;
            font-family: fontAwesome;
            content: "\f00d";
            color: #fff;
        }

    .workers-list-dropdown .worker-anchor {
        float: left;
        clear: none !important;
        padding: 3px 5px !important;
        font-size: 12px;
        line-height: 1em !important;
        width: 200px;
        color: #000;
        background-color: #eaeada;
    }

.request-note {
    font-size: 12px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 0px;
    border-left: 1px solid #b7b7b7;
    background-color: #ececec;
    width: 346px;
    display: block;
    float: left;
    overflow: hidden;
}

.list-title {
    margin-top: 0px;
    font-weight: 600;
    background-color: #ccc;
    margin-left: 1.4%;
    margin-right: 1.4%;
    width: 97.2% !important;
    padding-left: 2px !important;
}

.worker-icons {
    display: block;
    float: left;
    width: 20px;
    margin-left: 1px;
    margin-right: 1px;
    text-align: center;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
}

.first-worker-icons {
    background-color: darkred;
}

.second-worker-icons {
    background-color: darkgreen;
}

.custom-btn {
    background-color: #293f54;
    color: #fff;
    margin: 5px auto;
    padding: 5px 20px;
    margin-left: 5px !important;
    border: 1px solid #293f54;
}

    .custom-btn:hover, .custom-btn:active, .custom-btn:focus {
        color: #293f54;
        background-color: #fff;
    }

.additional-icons {
    text-align: right;
    float: right;
    width: 100%;
    height: 33px;
    padding-right: 15px;
}

    .additional-icons ul {
        list-style: none;
        margin: 0px;
        padding: 0px;
    }

        .additional-icons ul li {
            float: right;
            font-size: 20px;
            margin-left: 20px;
            margin-right: 10px;
            padding-top: 3px;
        }

            .additional-icons ul li a {
                color: #000;
            }

                .additional-icons ul li a:hover {
                    color: #0c5454;
                }

.small-table-heading {
    font-weight: 600;
}

.dropup-menu {
    top: -250px !important;
    z-index: 99999;
}

.custom-dropdown .btn, .custom-dropdown .btn:focus, .custom-dropdown .btn:hover, .custom-dropdown .btn:active {
    line-height: 1em;
    padding: 0px;
    background: none;
    color: #000;
}

.custom-dropdown .dropdown-menu {
    min-width: 350px;
    border-radius: 0px;
    padding: 10px;
    left: inherit;
    right: 0px;
    z-index: 999991;
}

    .custom-dropdown .dropdown-menu a {
        float: left;
        display: block;
        width: 100%;
        margin-bottom: 4px;
        padding-bottom: 4px;
        border-bottom: 1px solid #efefef;
        padding-left: 0px;
        padding-right: 0px;
    }

    .custom-dropdown .dropdown-menu li {
        margin-left: 0px;
        margin-right: 0px;
        font-size: 14px;
        float: left;
    }

        .custom-dropdown .dropdown-menu li a {
            border-bottom: none;
            padding-bottom: 0px;
            margin-bottom: 0px;
        }

    .custom-dropdown .dropdown-menu a:hover {
        text-decoration: none;
    }

    .custom-dropdown .dropdown-menu a:last-child {
        border-bottom: none;
        padding-bottom: 0px;
        margin-bottom: 0px;
    }

.blue-text {
    color: blue !important;
}

.is-student-label {
    font-weight: 600;
    margin-left: 8px;
    padding: 4px;
    padding-top: 1px;
    border-radius: 50%;
    background-color: #199454;
    color: #fff;
    height: 18px;
    width: 18px;
    font-size: 10px;
    display: block;
    float: left;
    text-align: center;
}

.datepicker-wrapper {
    margin-top: 16px;
}

    .datepicker-wrapper .date-picker {
        padding-bottom: 10px !important;
    }

    .datepicker-wrapper .first-date-picker {
        padding-left: 0px;
        padding-right: 2px;
    }

    .datepicker-wrapper .second-date-picker {
        padding-left: 2px;
        padding-right: 0px;
    }

.inputs-holder {
    float: left;
    width: 100%;
}

    .inputs-holder .inner-inputs-holder {
        width: 33.3333%;
        float: left;
    }

    .inputs-holder .left-box {
        margin-right: 1%;
        padding-top: 5px;
    }

    .inputs-holder .right-box {
        margin-left: 1%;
        padding-top: 5px;
    }

    .inputs-holder .btn-holder {
        width: 30%;
        text-align: right;
    }

        .inputs-holder .btn-holder .custom-btn {
            padding: 5px 20px !important;
            background-color: #293f54 !important;
            color: #fff !important;
        }

.datepicker-wrapper .dropdown-menu {
    width: 330px;
    min-width: inherit !important;
}

    .datepicker-wrapper .dropdown-menu .btn {
        padding: 5px 10px;
    }

    .datepicker-wrapper .dropdown-menu li {
        width: 100%;
    }

        .datepicker-wrapper .dropdown-menu li table {
            width: 100%;
        }

        .datepicker-wrapper .dropdown-menu li:last-child .btn {
            padding: 5px 10px;
            color: #fff;
        }

        .datepicker-wrapper .dropdown-menu li:last-child .btn-info {
            background-color: #5bc0de;
        }

        .datepicker-wrapper .dropdown-menu li:last-child .btn-danger {
            background-color: #d9534f;
        }

        .datepicker-wrapper .dropdown-menu li:last-child .btn-success {
            background-color: #5cb85c;
        }

.datepicker-wrapper .date .input-group-addon {
    padding: 0;
    width: 40px;
}
/* print */
.choose-print-layout {
    float: right;
    color: #000;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

    .choose-print-layout:before {
        content: "\f00d";
        position: absolute;
        left: 0px;
        top: 0px;
        color: red;
        font-family: fontAwesome;
    }

    .choose-print-layout:after {
        content: 'Produktivitás táblázat';
    }

.choose-print-layout2 {
    float: right;
    color: #000;
    font-weight: 600;
    position: relative;
    padding-left: 20px;
    cursor: pointer;
}

    .choose-print-layout2:before {
        content: "\f00d";
        position: absolute;
        left: 0px;
        top: 0px;
        color: red;
        font-family: fontAwesome;
    }

    .choose-print-layout2:after {
        content: 'Totál órak és napi bérköltség';
    }

.dont-print:before {
    font-family: fontAwesome;
    content: "\f00c" !important;
    color: green !important;
}

.print-header .additional-table-info {
    float: left;
    margin-left: 30px;
    color: #000;
}

    .print-header .additional-table-info h1 {
        font-size: 30px;
    }

    .print-header .additional-table-info p {
        margin-top: 12px;
        line-height: 1em;
        font-weight: 600;
    }

.cancel-btn {
    background-color: #274e37;
    color: #fff;
    border: #274e37;
    padding: 5px 12px;
    font-size: 12px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1em;
}

    .cancel-btn:hover {
        color: #274e37;
        background-color: #fff;
        text-decoration: none;
        border: 1px solid #274e37;
    }

@media print {
    #printableArea {
        -webkit-print-color-adjust: exact;
    }

    .right-col {
        display: none;
    }

    .example-print {
        display: block;
    }

    .additional-icons {
        display: none;
    }

    .worker-name-holder .delete-worker {
        display: none;
    }

    .alert-cell {
        background-color: #f74b4b;
        color: #fff;
    }

    .print-header {
        margin-bottom: 26px !important;
        width: 100%;
        height: 132px;
    }

    .header, .cancel-printing {
        display: none;
    }

    thead.report-header {
        display: table-header-group;
        break-inside: avoid;
    }

    tfoot.report-footer {
        display: table-footer-group;
    }
}

.schedule-wrapper .single-print-row {
    width: 992px !important;
}

.worker-print-row {
    width: 990px !important;
}

#printableArea {
    width: 992px;
    margin: auto;
}

.print-header {
    width: 992px;
    margin: auto;
}

#printableArea .alert-cell {
    background: none;
    position: relative;
    color: #fff !important;
    border-bottom: 26px solid #ff6262;
    -webkit-print-color-adjust: exact;
}

#printableArea .blue-cell {
    background: none;
    position: relative;
    color: #fff !important;
    border-bottom: 26px solid #4c4cbb;
    -webkit-print-color-adjust: exact;
}

.half-row {
    width: 50%;
}

.bordered-box {
    border: 1px solid #ccc;
    border-bottom: none;
}

.additional-row {
    border-left: none !important;
    display: table;
}

.ad-content-box {
    width: 50%;
    float: left;
    padding: 5px;
}

.half-row .ad-content-box:first-child {
    border-right: 1px solid #ccc;
}

.ad-content-box p {
    line-height: 1em;
    text-align: center;
}

    .ad-content-box p strong {
        font-weight: 600;
    }

.variable-print-row {
    display: block !important;
    float: left;
}

.unvisible-row {
    display: none !important;
}

.choose-txt {
    margin-left: 15px;
    margin-right: 15px;
}
/* calendar request */
.radio-btn-wrapper {
    width: 100%;
    float: left;
}

    .radio-btn-wrapper input[type="radio"] {
        float: left;
        margin-top: 0px;
        margin-right: 8px;
    }

    .radio-btn-wrapper span {
        line-height: 1em;
        display: block;
        float: left;
    }

.radio-selection-holder {
    margin-top: 25px;
}

.edit-event h5 {
    margin-bottom: 20px;
}

.note-holder {
    margin-bottom: 20px;
}

.input-group.date table th {
    vertical-align: middle !important;
}
/* range slider */
.range-slider-holder {
    margin-top: 30px;
    margin-bottom: 30px;
}
/* calendar approval  
.calendar-approval-wrapper {
    width: 100%;
    display: block;
    white-space: nowrap;
    font-size: 12px;
    color: #000;
    float: left;
    overflow: auto;
    border-left: 1px solid #ccc;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    height: calc(100vh - 220px);
}
.calendar-approval-wrapper .single-row {
    margin: 0px;
    width: 100%;
    border: 1px solid #ccc;
    border-left: none;
    border-bottom: none;
    display: block;
    box-sizing: border-box;
    border-top: none;
    height: 28px;
}
.calendar-approval-wrapper .single-row:nth-child(even), .calendar-approval-wrapper .single-row:nth-child(even) .right-col  {
    background-color: #efefef;
}
.calendar-approval-wrapper .single-row:nth-child(odd), .calendar-approval-wrapper .single-row:nth-child(odd) .right-col {
    background-color: #fff;
}
.fixed-row {
    position: fixed;
    z-index: 9;
}
.change-month-arrow {
    cursor: pointer;
}
.calendar-approval-wrapper .name-col {
    float: none;
    width: 190px;
    padding-left: 4px;
    padding-right: 4px;
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    display: inline-block;
    height: 28px;
    line-height: 26px;
    vertical-align: top;
}
.calendar-approval-wrapper .single-day {
    width: 30px;
    float: left;
    border-right: 1px solid #ccc;
    height: 100%;
    text-align: center;
    position: relative;
    min-height: 26px;
}
.calendar-approval-wrapper .weekend-bg {
    background-color: rgba(35, 35, 35, 0.4);
}
.single-day span {
    display: block;
    height: 27px;
    line-height: 12px;
    padding-top: 6px;
    font-size: 11px;
}
.calendar-approval-wrapper .middle-col {
    float: none;
    width: auto;
    height: 100%;
    border-top: 1px solid #ccc;
    display: inline-block;
    vertical-align: top;
    margin-left: -3px;
}
.width42per {
    width: 42%;
    float: left;
    padding: 0px 1px;
    box-sizing: border-box
}
.width58per {
    width: 58%;
    float: left;
    padding: 0px 1px;
    box-sizing: border-box
}
.calendar-approval-wrapper .right-col {
    text-align: center;
    float: none;
    border-top: 1px solid #ccc;
    font-size: 11px;
    display: inline-block;
    vertical-align: top;
    height: 28px;
    margin-left: -3px;
}
.calendar-approval-wrapper .right-col.width-28 {
    width: 906px;
}
.calendar-approval-wrapper .right-col.width-29 {
    width: 834px;
}
.calendar-approval-wrapper .right-col.width-30 {
    width: 762px;
}
.calendar-approval-wrapper .right-col.width-31 {
    width: 690px;
}
@media (min-width: 1886px) {
    .calendar-approval-wrapper .right-col.width-28 {
        width: 842px;
    }
    .calendar-approval-wrapper .right-col.width-29 {
        width: 812px;
    }
    .calendar-approval-wrapper .right-col.width-30 {
        width: 782px;
    }
    .calendar-approval-wrapper .right-col.width-31 {
        width: 752px;
    }
}
.calendar-approval-wrapper  .right-col .single-heading-cell {
    width: 25%;
    float: left;
    height: 27px;
    line-height: 26px;
    border-right: 1px solid #ccc;
}
.single-box {
    width: 25%;
    float: left;
    height: 27px;
    line-height: 26px;
    border-right: 1px solid #ccc;
}
.ultra-light-green {
    background-color: rgba(229, 255, 204, 0.2) !important;
}
.ultra-light-purple {
    background-color: rgba(255, 204, 223, 0.2) !important;
}
.single-day .light-green-bg {
    background-color: greenyellow;
    color: #000;
}
.single-day .light-green-bg.checksign-box {
    position: relative;
    text-align: left;
    background-color: forestgreen;
    color: #fff;
    padding-left: 3px;
}
.single-day .light-green-bg.checksign-box:before {
    position: absolute;
    font-family: fontAwesome;
    content: "\f00c";
    top: 6px;
    right: 2px;
    text-align: left;
}
.single-day .light-yellow-bg {
    background-color: #feff78;
    color: #000;
}
.single-day .light-yellow-bg.checksign-box {
    position: relative;
    text-align: left;
    background-color: #ffca17;
    color: #000;
    padding-left: 7px;
}
.single-day .light-yellow-bg.checksign-box:before {
    position: absolute;
    font-family: fontAwesome;
    content: "\f00c";
    top: 6px;
    right: 2px;
}
.single-day .light-magenta-bg {
    background-color: magenta;
    color: #fff;
}
.single-day .light-magenta-bg.checksign-box {
    position: relative;
    text-align: left;
    padding-left: 7px;
    background-color: darkmagenta;
    color: #fff;
}
.single-day .light-magenta-bg.checksign-box:before {
    position: absolute;
    font-family: fontAwesome;
    content: "\f00c";
    top: 6px;
    right: 2px;
}
.single-day .smile-sign {
    position: relative;
    text-align: center;
}
.single-day .light-green-bg.smile-sign, .single-day .light-yellow-bg.smile-sign {
    color: #000;
}
.single-day .light-green-bg.checksign-box.smile-sign, .single-day .light-magenta-bg.smile-sign {
    color: #fff;
}
.single-day .smile-sign:after {
    position: absolute;
    content: ':)';
    line-height: 12px;
    top: 4px;
}
.comment-dot {
    font-size: 10px !important;
    line-height: 10px !important;
    position: absolute;
    right: 1px;
    bottom: 7px;
    height: 10px !important;
}
.comment-dot + .tooltip.top {
    width: 200px;
}
.right-col .dark-green {
    background-color: #4d612a;
    color: #fff;
}
.right-col .dark-purple {
    background-color: #5e4775;
    color: #fff;
}
.total-row .name-col {
    background-color: #000;
    color: #fff;
    height: 28px;
    font-style: italic;
}
.total-row .single-day {
    border-right: none;
}
.total-row-width-31 {
    width: 930px!important;
}
.total-row-width-30 {
    width: 900px!important;
}
.total-row-width-29 {
    width: 870px!important;
}
.total-row-width-28 {
    width: 840px!important;
}
.total-row .middle-col {
    background-color: #efefef;
}
    */

/* new calendar approval as table */
.calendar-table {
    position: relative;
    overflow: hidden;
    border-collapse: collapse;
}
    /*thead*/
    .calendar-table thead {
        position: relative;
        display: block; /*seperates the header from the body allowing it to be positioned*/
        overflow: visible;
    }

        .calendar-table thead th {
            height: 32px;
            border: 1px solid #222;
            text-align: center;
            vertical-align: middle;
            font-size: 12px;
        }

            .calendar-table thead th:nth-child(1) { /*first cell in the header*/
                position: relative;
                display: block;
                background-color: #274e37;
                color: #fff;
                padding-top: 10px;
                height: 37px;
            }

    /*tbody*/
    .calendar-table tbody {
        position: relative;
        display: block; /*seperates the tbody from the header*/
        overflow: scroll;
    }

        .calendar-table tbody tr:nth-child(odd) {
            background-color: #f7f7f7;
        }

        .calendar-table tbody tr:nth-child(even) {
            background-color: #dedede;
        }

        .calendar-table tbody td {
            border: 1px solid #222;
            border-bottom: none;
            font-size: 12px;
        }

.headings-width {
    min-width: 96px;
    width: 96px;
}

.calendar-table tbody td.t-heading {
    background-color: rgba(204, 234, 216, 1) !important;
    vertical-align: middle;
    width: 200px;
    padding: 4px;
    font-size: 12px;
}

.calendar-table tbody tr td:nth-child(1) { /*the first cell in each tr*/
    position: relative;
    display: block; /*seperates the first column from the tbody*/
    height: 30px;
    background-color: #99a;
}

.calendar-table .t-heading {
    width: 200px;
}

.calendar-table .single-day {
    min-width: 30px;
    text-align: center;
    vertical-align: middle;
}

    .calendar-table .single-day.weekend-bg {
        background-color: #d4e4f3;
    }

    .calendar-table .single-day .content-box {
        display: block;
        position: relative;
        height: 29px;
    }

.calendar-table .total-row td:first-child {
    padding-top: 5px;
    padding-left: 5px;
    font-weight: 800;
    text-transform: uppercase;
}

.purple-bg {
    background-color: rgba(248, 235, 255, 0.5);
}

.ultralight-green-bg {
    background-color: rgba(236, 253, 208, 0.5);
}

.result-box {
    display: block;
    padding: 0 4px;
}

.single-day .light-green-bg.checksign-box {
    position: relative;
    text-align: left;
    background-color: forestgreen;
    color: #fff;
    padding-left: 3px;
}

    .single-day .light-green-bg.checksign-box:before {
        position: absolute;
        font-family: fontAwesome;
        content: "\f00c";
        top: 0px;
        right: 0px;
        text-align: left;
    }

.single-day .light-yellow-bg {
    background-color: #feff78;
    color: #000;
}

    .single-day .light-yellow-bg.checksign-box {
        position: relative;
        text-align: left;
        background-color: #ffca17;
        color: #000;
        padding-left: 7px;
    }

        .single-day .light-yellow-bg.checksign-box:before {
            position: absolute;
            font-family: fontAwesome;
            content: "\f00c";
            top: 0px;
            right: 0px;
        }

.single-day .light-magenta-bg {
    background-color: magenta;
    color: #fff;
}

    .single-day .light-magenta-bg.checksign-box {
        position: relative;
        text-align: left;
        padding-left: 7px;
        background-color: darkmagenta;
        color: #fff;
    }

        .single-day .light-magenta-bg.checksign-box:before {
            position: absolute;
            font-family: fontAwesome;
            content: "\f00c";
            top: 0px;
            right: 0px;
        }

.single-day .smile-sign {
    position: relative;
    text-align: center;
}

.single-day .light-green-bg.checksign-box.smile-sign, .single-day .light-magenta-bg.smile-sign {
    color: #fff;
}

.single-day .smile-sign:after {
    position: absolute;
    content: ':)';
    line-height: 12px;
    top: 4px;
}

.comment-dot {
    font-size: 10px !important;
    line-height: 10px !important;
    position: absolute;
    right: 1px;
    bottom: 1px;
    height: 10px !important;
}

    .comment-dot + .tooltip.top {
        width: 200px;
    }

.total-row {
    border-bottom: 1px solid #000;
}

/*  btp - weekly schedule  */
.weekly-content-main-holder {
    float: left;
    width: 1440px;
    overflow-x: auto;
}

.weekly-schedule {
    position: relative;
    width: 1440px;
    overflow: hidden;
    border-collapse: collapse;
}
    /*thead*/
    .weekly-schedule thead {
        position: relative;
        display: block; /*seperates the header from the body allowing it to be positioned*/
        width: 1440px;
        overflow: visible;
        margin-top: 50px;
    }

        .weekly-schedule thead th {
            height: 104px;
            border: 1px solid #222;
            text-align: center;
            vertical-align: middle;
            font-size: 12px;
        }

            .weekly-schedule thead th:nth-child(1) { /*first cell in the header*/
                position: relative;
                display: block;
                background-color: #274e37;
                color: #fff;
                padding-top: 40px;
                height: 104px;
                z-index: 2;
            }

    .weekly-schedule .t-heading {
        width: 200px;
    }

    .weekly-schedule tbody td.t-heading {
        background-color: rgba(204, 234, 216, 1) !important;
        vertical-align: middle;
        width: 200px;
        padding: 4px;
        font-size: 12px;
    }
    /*tbody*/
    .weekly-schedule tbody {
        position: relative;
        display: block; /*seperates the tbody from the header*/
        width: 1440px;
        overflow: scroll;
    }

        .weekly-schedule tbody tr:last-child {
            border-bottom: 1px solid #000;
        }

        .weekly-schedule tbody td {
            border: 1px solid #222;
            border-bottom: none;
        }

        .weekly-schedule tbody tr:nth-child(odd) {
            background-color: #f7f7f7;
        }

        .weekly-schedule tbody tr:nth-child(even) {
            background-color: #dedede;
        }

        .weekly-schedule tbody tr td:nth-child(1) { /*the first cell in each tr*/
            position: relative;
            display: block; /*seperates the first column from the tbody*/
            height: 47px;
            background-color: #99a;
        }

    .weekly-schedule .single-weekday {
        width: 100px;
        min-width: 100px;
        font-size: 12px;
        padding-left: 4px;
        padding-right: 4px;
        vertical-align: middle;
        position: relative;
    }

        .weekly-schedule .single-weekday.bg-red {
            background-color: #ff6d6d;
        }

        .weekly-schedule .single-weekday span {
            display: block;
            float: none;
            width: 100%;
            padding: 2px 0px;
            line-height: 1.6em;
            min-height: 20px;
        }

            .weekly-schedule .single-weekday span select {
                width: 100%;
            }

.weekly-content-box {
    min-width: 37px;
    width: 37px;
    padding-left: 4px;
    padding-right: 4px;
    background-color: rgba(236, 253, 208, 0.5);
    text-align: center;
    vertical-align: middle;
}

    .weekly-content-box.red-box {
        background-color: red;
    }

.inner-single-weekday + .tooltip {
    max-width: 200px !important;
    min-width: 200px !important;
}

.inner-single-weekday select, .inner-single-weekday .input-hours {
    color: #000 !important;
}

.weekly-content-box + .tooltip {
    max-width: 200px !important;
    min-width: 200px !important;
    font-size: 10px !important;
    line-height: 1.2em !important;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 3px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

.workers-name-holder {
    padding-top: 10px !important;
}

.absolute-worker-position {
    position: absolute;
    top: -1px;
    left: 1.5%;
    width: 97% !important;
}

    .absolute-worker-position .select-box {
        height: 20px;
    }

.absolute-worker-hours {
    position: absolute;
    left: 1.5%;
    width: 97% !important;
    bottom: 0px;
}

    .absolute-worker-hours .input-hours {
        height: 20px;
        width: 100%;
    }

th.vertical-heading {
    white-space: nowrap;
    position: relative;
}

    th.vertical-heading > div {
        transform: translate(-38px, -15px) rotate(-90deg);
        width: 104px;
        position: absolute;
        height: 30px;
        overflow: hidden;
        display: block;
    }

        th.vertical-heading > div > span {
            width: 104px;
            padding-left: 2px;
            padding-right: 2px;
            display: block;
            white-space: pre-wrap;
            line-height: 1.3em;
        }

.one-row-height {
    padding-top: 8px;
}
/* Header */
.site-header {
    position: fixed;
    z-index: 5;
    width: 100%;
    min-height: 50px;
    background: #293F54;
    padding-top: 5px;
}

.header {
    position: relative;
    margin: 0px;
    padding: 15px 0px 5px 0px;
    background: #fff;
    width: 100%;
    top: 0px;
    left: 0px;
}

.header-breadcrumb {
    background-color: #ffbc0d;
    width: 100%;
    display: inline-block;
    padding: 16px 0px;
    -webkit-box-shadow: inset 0px 2px 5px 0px rgba(0,0,0,0.12);
    -moz-box-shadow: inset 0px 2px 5px 0px rgba(0,0,0,0.12);
    box-shadow: inset 0px 2px 5px 0px rgba(0,0,0,0.12);
    border-radius: 0px;
}

.header-breadcrumb .wrapper:before {
    background-image: url(images/header-bg.png);
    background-size: 100% 100%;
    width: 141px;
    height: 28px;
    content: '';
    position: absolute;
    right: 0;
    bottom: -43px;
    z-index: 1;
}

.header-breadcrumb .wrapper {
    position: relative;
}

.header-breadcrumb a {
    font-size: 12px;
    color: black;
}

.header-title {
    padding: 0 !important;
    margin-left: -3% !important;
    color: #565656 !important;
}

@media (max-width: 768px) {
    .header-title {
        margin-left: 10% !important;
    }
}

.header-vertical-line {
    border-left: 1px solid #ddd;
    height: 50px;
    margin-left: -10%;
}

.header h1 {
    font-weight: 400;
    margin: 0px;
    padding: 0px 0px 0px 20px;
    color: #000000;
    border: none;
    line-height: 2em;
    font-size: 2em;
    padding-top: 16px;
}

.header-home i {
    color: #fff;
    font-size: 2em;
    padding-top: 30px;
}

.login-header-text {
    padding-top: 10px;
}

.login-header-ico {
    padding-top: 15px;
    padding-left: 0;
}

.site-header a {
    color: #fff;
    cursor: pointer;
}

.site-header .left-column a {
    display: block;
    padding: 10px 0;
    color: #0CBB92;
    font-size: 20px;
}

.site-header .nav {
    display: inline-block;
    float: none;
}

.nav-pills > li > a {
    float: left;
    font-weight: 500;
}

li.dropdown:hover .dropdown-menu {
    display: block;
    top: 95%;
}

.site-header .nav > li > a:hover,
.site-header .nav > li > a:focus {
    text-decoration: none;
    background-color: transparent;
    color: #fff;
}

.site-header .right-column a {
    display: block;
    padding: 10px 15px;
}

.site-header .right-column img {
    width: 25px;
}

.site-header .nav > li > a > img,
.site-header .left-column > a > img {
    display: inline-block;
    float: left;
    width: 25px;
}

.site-header .nav > li > a > span,
.site-header .left-column > a > span {
    display: inline-block;
    float: left;
    margin-top: 5px;
    margin-left: 2px;
}

.nav .open > a,
.nav .open > a:hover,
.nav .open > a:focus {
    text-decoration: none;
    background-color: transparent;
    color: #fff;
}

.nav-pills > li.active > a,
.nav-pills > li.active > a:hover,
.nav-pills > li.active > a:focus {
    text-decoration: none;
    background-color: transparent;
    color: #fff;
}

.dropdown-menu {
    min-width: auto;
}

    .dropdown-menu > li > a {
        color: #6f8eaa;
    }

        .dropdown-menu > li > a:hover,
        .dropdown-menu > li > a:focus {
            color: #293f54;
            background-color: #f7f7f7;
        }

    .dropdown-menu > .active > a,
    .dropdown-menu > .active > a:hover,
    .dropdown-menu > .active > a:focus {
        background-color: #293f54;
    }

.site-header .right-column a.log-out {
    color: #6f8eaa;
    padding: 10px 5px;
}

    .site-header .right-column a.log-out:hover {
        color: #293f54;
        background-color: #f7f7f7;
        text-decoration: none;
    }

@media (max-width: 1300px) {
    .nav > li > a {
        padding: 8px 12px;
    }
}

@media (max-width: 1200px) {
    .site-header .left-column a {
        font-size: 18px;
    }

    .nav > li > a {
        padding: 8px 9px;
        font-size: 12px;
        font-weight: 400;
    }

    .site-header .nav > li > a > img,
    .site-header .left-column > a > img {
        width: 22px;
    }

    .site-header .nav > li > a > span,
    .site-header .left-column > a > span {
        margin-left: 1px;
    }

    .dropdown-menu > li > a {
        font-size: 12px;
    }
}
/* Body */
.body {
    padding-top: 50px;
}

.top-row,
.filter-row {
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

    .top-row h2 {
        font-size: 22px;
        margin-top: 10px;
    }

    .top-row .action-buttons {
        padding-right: 20px;
    }

.filter-row {
    float: left;
    width: 100%;
}

.pagination-row {
    float: left;
    width: 100%;
    background: #fff;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-bottom: 15px;
}

.pagination {
    float: none;
    width: auto;
    padding: 0;
    margin: 0;
}

    .pagination-sm > li:first-child > a,
    .pagination-sm > li:first-child > span,
    .pagination > .active > a,
    .pagination > .active > span,
    .pagination > .active > a:hover,
    .pagination > .active > span:hover,
    .pagination > .active > a:focus,
    .pagination > .active > span:focus,
    .pagination-sm > li:last-child > a,
    .pagination-sm > li:last-child > span,
    .pagination > li > a,
    .pagination > li > span {
        color: #808090;
        background-color: #f7f7f7;
        border-color: #f7f7f7;
        font-weight: 800;
    }

        .pagination > .active > a,
        .pagination > .active > span,
        .pagination > .active > a:hover,
        .pagination > .active > span:hover,
        .pagination > .active > a:focus,
        .pagination > .active > span:focus {
            border-color: #6f8eaa;
            border-width: 1px;
        }

    .pagination > .disabled > span,
    .pagination > .disabled > span:hover,
    .pagination > .disabled > span:focus,
    .pagination > .disabled > a,
    .pagination > .disabled > a:hover,
    .pagination > .disabled > a:focus {
        color: #808090;
        background-color: #f7f7f7;
        border-color: #f7f7f7;
        cursor: not-allowed;
        font-weight: 800;
    }

    .pagination > li > a,
    .pagination > li > span {
        border-width: 2px;
    }

/* login page */
.login-wrapper {
    position: absolute;
    width: 555px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-top: 10px solid #ffbc0d;
    background-color: #fff;
}

.login-wrapper:before {
    background-image: url(images/header-bg.png);
    background-size: 100% 100%;
    width: 141px;
    height: 28px;
    content: '';
    position: absolute;
    right: 0;
        top: -1px;
}

.login-wrapper h1 {
    color: #fff;
}

.title-logo {
    vertical-align: middle;
    padding-top: 65px;
}

.login-wrapper label {
    color: #fff;
    font-size: 14px;
}

.single-login-row {
    text-align: right;
    font-size: 16px;
    color: #ffc20f;
}

.single-login-row a {
    color: #fff;
}

.single-login-row-usr {
    text-align: right;
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
}

.single-login-row-rest {
    text-align: right;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #cacaca;
}

.login-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-image: url(images/login-bg.png);
    background-size: cover;
    background-position: center center;
}

.login-title {
    text-align: center;
    padding-top: 15px;
    color: #565656;
}

.login-input-label {
    max-width: 420px;
    width: 80%;
}

.login-input {
    width: 100% !important;
    height: 60px;
}

.login-input-option {
    color: #a6a6a6;
}

.login-button {
    max-width: 260px;
    width: 100%;
    height: 60px;
    border-radius: 50px;
    background-color: #ffbc0d;
    font-size: 18px;
    font-weight: bold;
    outline: none !important;
}

/* Footer */
.site-footer {
    float: left;
    width: 100%;
    background: #293f54;
    color: #fff;
    padding: 10px 0;
    position: fixed;
    bottom: 0;
    z-index: 10;
}
/* Filter/Form */
.filter-submit {
    margin-top: 18px;
}

.date .input-group-addon {
    padding: 0;
}

.input-group-addon {
    border: 0;
    padding-left: 10px;
    padding-right: 10px;
    color: #6F8EAA;
}

    .input-group-addon .glyphicon {
        color: #000;
    }

.help-block {
    margin: 0;
}

    .help-block .error {
        font-size: 12px;
        color: red;
    }
/*
.form-wrapper .form-group:nth-child(2n+1) {
    clear: both;
}
*/

.checkbox-inline-wrapper {
    position: relative;
}

    .checkbox-inline-wrapper input[type="checkbox"] {
        position: absolute;
        left: 15px;
        top: 0px;
    }

    .checkbox-inline-wrapper label {
        padding-left: 25px;
    }

.form-group select {
    width: 100%;
}

.tab-pane {
    padding-top: 15px;
    float: left;
    width: 100%;
}

.additional-tabs-text {
    font-size: 13px;
    margin-top: 10px;
    margin-bottom: 10px;
}

.check-student-input, .check-workinghours-input {
    margin-top: 10px;
}

.check-student-input, .check-workinghours-input {
    position: absolute;
    top: 8px;
    width: 89%;
}

    .check-student-input .input-append, .check-workinghours-input .input-append {
        display: none;
    }

.custom-checkbox-list {
    margin-top: 12px;
    max-height: 342px;
    overflow-y: auto;
}

    .custom-checkbox-list li {
        float: left;
        display: block;
        width: 100%;
        margin-bottom: 5px;
    }

.tab-pane .form-group {
    margin-bottom: 0px;
    padding-bottom: 25px;
    position: relative;
}

.help-block {
    margin: 0;
    /*position: absolute; */
    bottom: 8px;
}

.form-group .ng-invalid-required {
    border-color: red;
}

.time-picker-row {
    padding-top: 20px;
}

.single-day-holder {
    margin-bottom: 20px;
    width: 14.2857%;
}

.day-title h5 {
    font-size: 14px;
    text-align: center;
    padding: 5px;
    background-color: #efefef;
}

.custom-time-picker {
    text-align: center;
}

    .custom-time-picker table {
        display: inline-block;
    }

    .custom-time-picker h5 {
        font-size: 14px;
        padding: 4px;
        padding-top: 8px;
    }

    .custom-time-picker .time-picker .btn {
        padding: 0px;
        line-height: 14px !important;
        font-size: 12px;
        color: #000;
    }

    .custom-time-picker .form-group {
        margin-bottom: 0px;
        padding-bottom: 0px;
        position: relative;
    }

@media (min-width: 768px) {
    .filter-row .form-inline .form-group {
        width: 16%;
        min-width: 150px;
        padding-right: 5px;
    }

    .form-control {
        width: 100% !important;
        border: 1px solid #d8dbde;
        box-shadow: none;
        background: #f7f7f7;
        color: #000;
        border-radius: 0px;
    }

        .form-control::-webkit-input-placeholder {
            color: #6f8eaa;
        }

        .form-control:-moz-placeholder { /* Firefox 18- */
            color: #6f8eaa;
        }

        .form-control::-moz-placeholder { /* Firefox 19+ */
            color: #6f8eaa;
        }

        .form-control:-ms-input-placeholder {
            color: #6f8eaa;
        }

        .form-control:focus::-webkit-input-placeholder {
            color: transparent;
        }

        .form-control:focus:-moz-placeholder {
            color: transparent;
        }
        /* FF 4-18 */
        .form-control:focus::-moz-placeholder {
            color: transparent;
        }
        /* FF 19+ */
        .form-control:focus:-ms-input-placeholder {
            color: transparent;
        }
    /* IE 10+ */

    .control-label {
        font-size: 13px;
        font-weight: 500;
    }
}

@media (min-width: 1200px) {
    .filter-row .form-inline .form-group {
        width: 13%;
        min-width: 150px;
        padding-right: 5px;
    }
}
/* Table */
.table-responsive {
    background: #fff;
    padding: 0 10px;
    font-size: 14px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    border-top: 0;
}

.table > thead > tr > th {
    border-bottom: 0;
    font-weight: bold;
    cursor: pointer;
}

.table > tbody > tr:nth-child(odd) {
    background: #f7f7f7;
}

@media (max-width: 1300px) {
    .table > thead > tr > th {
        font-weight: 500;
        font-size: 12px;
    }
}

@media (max-width: 1200px) {
    .table > tbody > tr > td {
        font-size: 12px;
    }
}
/* Tooltip */
.tooltip-inner th {
    padding: 0 5px;
}
/* Modal */
.modal-header,
.modal-footer {
    border: 0;
}

.modal-header {
    padding-bottom: 5px;
}

.modal-footer {
    padding-top: 5px;
}

.modal-content {
    background: #f7f7f7;
    border: 1px solid #6F8EAA;
    padding: 10px 15px;
}

.modal-title {
    background: #fff;
    font-size: 22px;
    padding-left: 10px;
}

.modal-input-options .custom-box {
    padding-top: 10px;
}
/* responsive header */
.padding-top-none {
    padding-top: 0px;
}
/* e-learning*/
.additional-menu {
    width: 100%;
    float: left;
    padding-top: 16px;
    padding-bottom: 16px;
}

    .additional-menu li {
        float: left;
    }

        .additional-menu li a {
            padding: 5px 24px;
            display: block;
            color: #000;
            font-weight: 600;
            font-size: 14px;
            border-right: 1px solid #000;
            border-radius: 0px;
        }

            .additional-menu li a:hover {
                text-decoration: none;
                background-color: #efefef;
            }

            .additional-menu li a .fa {
                margin-right: 4px;
            }

        .additional-menu li:last-child a {
            border-right: none;
        }

.mob-menu-activator {
    display: none;
}

@media only screen and (max-width: 767px) {
    .responsive-header {
        padding: 8px 0px;
        height: auto;
    }

    .logo-holder {
        width: 100px;
    }

        .logo-holder img {
            width: 100%;
        }

    .header-reponsive-title {
        width: auto;
    }

        .header-reponsive-title h1 {
            font-size: 18px;
            padding: 0px;
        }

    .responsive-login {
        padding: 0px 15px;
        padding-top: 10px;
        float: right;
        width: auto;
    }

    .mobile-icon {
        float: left;
        margin-right: 10px;
    }

    .responsive-login .single-login-row {
        font-size: 12px;
        text-align: left;
    }

    .logout-anchor {
        text-transform: uppercase;
        display: block;
        margin-top: 8px;
    }

    .mob-menu-activator {
        /*float: left;
        width: auto;*/
        display: block;
        /*margin-top: 5px;*/
    }

        /*.mob-menu-activator .fa {
            font-size: 30px;
            color: #fff;
        }*/

    .additional-menu {
        padding-top: 0px;
        padding-bottom: 0px;
        max-height: 0px;
        overflow: hidden;
        height: auto;
        position: absolute;
        background-color: #ffbc0d;
        z-index: 9;
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
    }

    .additional-menu-expanded {
        -webkit-transition: all 0.6s;
        transition: all 0.6s;
        max-height: 1000px;
    }

    .additional-menu li {
        width: 100%;
        padding-left: 10px;
        padding-right: 10px;
    }

        .additional-menu li a {
            border-right: none;
            border-bottom: 1px solid black;
            color: black;
            padding: 10px 20px;
            font-weight: 400;
        }

            .additional-menu li a:hover {
                text-decoration: none;
                background-color: inherit;
            }

        .additional-menu li:last-child a {
            border-bottom: none;
        }

        .additional-menu li:first-child {
            margin-top: 8px;
        }

        .additional-menu li:last-child {
            margin-bottom: 8px;
        }

    .custom-content {
        padding-top: 20px;
    }
}

@media only screen and (max-width: 425px) {
    .logo-holder {
        width: 70px;
        padding-left: 5px;
        padding-right: 5px;
    }

    .header-reponsive-title {
        width: auto;
        padding-left: 5px;
        padding-right: 5px;
    }

        .header-reponsive-title h1 {
            font-size: 16px;
            padding: 0px;
        }

    .responsive-login {
        padding-top: 0px;
    }

    /*.mob-menu-activator {
        margin-top: 0px;
    }*/

    .header-reponsive-title {
        padding-left: 12px;
        padding-right: 0px;
    }
}
/* calendar */
.custom-content {
    padding-top: 40px;
}

    .custom-content h1 {
        color: #000;
        font-size: 22px;
        margin-bottom: 45px;
    }
/* e-learning */
.row-bg-grey {
    background-color: #dadada;
}

.innner-single-box h4 {
    color: #000;
    text-align: center;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 16px;
}

.left-box-holder {
    padding-right: 30px;
}

.right-box-holder {
    padding-left: 30px;
}

.innner-single-box {
    border: 1px solid #000;
}
/* Edit form */
.edit-form-section {
    background-color: #fff;
    margin: 10px 0;
    padding: 10px 15px;
}

.tabs-title {
    font-weight: 600;
    color: #000;
}

.edit-form-subtitle {
    margin-bottom: 15px;
}

.top-section .form-group {
    margin-bottom: 0;
}

.top-section .input-group {
    margin: 0 auto;
}

.entity-status {
    float: right;
    padding: 5px 10px;
    margin: 0 10px;
    background: #ececec;
}

    .entity-status.bolded {
        color: #fff;
        background: #6F8EAA;
    }

.option-buttons {
    margin: 15px 0;
}

@media (min-width: 768px) {
    .edit-form-section.form-inline .form-group {
        padding-right: 20px;
    }
}


.tooltip-wide .tooltip-inner {
    max-width: 100% !important;
}

.dashboard-widget-area {
    margin: 10px 0 30px;
    min-height: 200px;
}

.widget-container {
    float: left;
    display: inline-block;
    width: 33%;
    position: relative;
}

@media (max-width: 1200px) {
    .widget-blocks .widget-container {
        width: 100% !important;
    }

    .widget-blocks .widget-container:nth-child(4),
    .widget-blocks .widget-container:nth-child(5) {
        width: 50% !important;
    }

    .widget-blocks .widget-container h2 {
        font-size: 24px;
    }
}

.panel-default {
    border-color: #ddd;
}

.widget {
    margin: 0 15px 25px 15px;
    background-color: #fff;
    border: 1px solid #c7d4e0;
    border-radius: 0;
    position: relative;
    height: 100%;
}

.widget-header {
    overflow: hidden;
}

.panel-default > .panel-heading {
    color: #333;
    background-color: #f5f5f5;
    border-color: #ddd;
}

.panel-heading {
    padding: 10px 15px;
    border-bottom: 1px solid transparent;
    border-top-right-radius: 3px;
    border-top-left-radius: 3px;
}

.panel-title {
    color: #293f54;
}

.panel-body {
    padding: 15px;
}

.widget-content {
    padding: .4em .4em 1em .4em;
    overflow: hidden;
}

.pg-title {
    font-size: 1.5em !important;
}


.btp-week-day {
    width: 100px;
    float: left;
}

.btp-day-title {
    position: absolute;
    padding-left: 20px;
}

.filter-fixed-control {
    padding-right: 15px;
    width: 180px;
    float: left;
}

.filter-checkbox-ehaccp {
    margin-top: 21px;
}

.custom_table > tbody > tr > td {
    height: 30px;
}

/* Scrollable table */
.scrollable-table thead {
    display: block;
    width: calc(100% - 17px);
}

.scrollable-table tbody {
    display: block;
    height: calc(100vh - 565px);
    overflow-y: scroll;
    float: left;
    width: 100%;
}

table.scrollable-table td[class*="col-"],
table.scrollable-table th[class*="col-"],
.scrollable-table tr {
    display: block;
}

table.scrollable-table th[class*="col-"],
table.scrollable-table td[class*="col-"] {
    float: left;
}

@media (max-width: 1200px) {
    .scrollable-table thead {
        width: 100%;
    }

    .scrollable-table tbody {
        height: 35vh;
    }
}

.edit-icon {
    margin-left: 5px;
}
