﻿/*
---------------------------------------------------------
:: Default
---------------------------------------------------------
*/

.eo-clearfix {
    clear: both;
}

    .eo-clearfix:after {
        clear: both;
        content: " ";
        display: block;
        font-size: 0;
        height: 0;
        visibility: hidden;
    }

.eo-pull-left {
    float: left;
}

.eo-pull-right {
    float: right;
}

.eo-corner-all {
    border-radius: 4px;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* 
---------------------------------------------------------
:: Controls  
---------------------------------------------------------
*/
select, textarea, input[type="text"], input[type="password"], input[type="email"], input[type="url"], input[type="color"], input[type="date"], input[type="number"], input[type="time"], input[type="date"], input.date {
    border: 0;
    border: 1px solid #ccc;
    font-size: 13px;
    padding: 4px 6px;
    border-radius: 3px;
}

    select:focus, textarea:focus, input[type="text"]:focus, input[type="password"]:focus, input[type="email"]:focus, input[type="url"]:focus, input[type="color"]:focus, input[type="date"]:focus, input[type="number"]:focus, input[type="time"]:focus, input[type="date"]:focus, input.date:focus {
        /* box-shadow: 0px -1px 3px rgba(0, 38, 255, 0.2) inset; */
        border: 1px solid #337ab7;
    }

    select:hover, textarea:hover, input[type="text"]:hover, input[type="password"]:hover, input[type="email"]:hover, input[type="color"]:hover, input[type="url"]:hover, input[type="date"]:hover, input[type="number"]:hover, input[type="time"]:hover, input[type="date"]:hover, input.date:hover, .eo-multiselect__button:hover {
        background-color: #f2f2f2;
        border: 1px solid #337ab7;
    }


    .select2-container--default .select2-selection--multiple,
    .select2-container--default .select2-selection--single{
        border: 0;
        border: 1px solid #ccc;
        font-size: 13px;
        /*padding: 4px 6px;*/
        border-radius: 3px;
    }
    .select2 {
        font-size: 13px;
    }
    
    .select2-selection:hover {
        background-color: #f2f2f2;
        /*border: 1px solid #337ab7;*/
    }

.select2-selection--multiple:hover,
.select2-selection--single:hover {
    /*background-color: #f2f2f2;*/
    border: 1px solid #337ab7;
}

    .select2-container--default.select2-container--focus .select2-selection--multiple,
    .select2-container--default.select2-container--focus .select2-selection--single{
        border: 1px solid #337ab7;
    }

.select2-container .select2-selection--single{
    min-height:32px;
}

input[type="color"] {
    padding: 1px;
    border: 0;
    width: 20px;
}


.eo-control {
    display: block;
    position: relative;
}

.eo-control-group {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    aheight: 45px;
}

    .eo-control-group > label {
        line-height: 20px;
        color: #333;
        font-size: 12px;
        font-weight: 600;
    }

    .eo-control-group > span {
        line-height: 20px;
        color: #333;
        font-size: 12px;
    }

.eo-view--view .eo-control-group {
    /*padding: 1px 5px;
    margin: 1px;*/
}

.eo-control-group--inline {
}

    .eo-control-group--inline label {
        display: inline;
    }

    .eo-control-group--inline .eo-view-control {
        display: inline;
        margin-left: 10px;
        border:none;
    }

    .eo-control-group--inline .eo-view-control span {
        display: inline;
    }

.eo-control {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    /*border-top: 1px solid #eee;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    border-radius: 5px;*/
}

    .eo-control.eo-control--fromto {
    }

        .eo-control.eo-control--fromto input:nth-child(1) {
            width: 50%;
        }

        .eo-control.eo-control--fromto input:nth-child(2) {
            width: 49%;
            margin-left: 1px;
        }

.eo-control__caption {
    display: inline-block;
    color: #666;
    font-size: 11px;
    font-style: italic;
    line-height: 20px;
    padding-left: 5px;
}

.eo-control--checkbox {
    font-size: 12px;
    padding-left: 21px;
    padding-top: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
}

    .eo-control--checkbox:hover {
        color: #666;
    }

    .eo-control--checkbox input, .eo-control--radio input {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

.eo-control--file_upload {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
}

.eo-control--textbox {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
}

    .eo-control--textbox input {
        display: inline-block;
        width: 100%;
        padding: 6px 8px 5px 8px;
        outline: 0;
        background: white;
        color: #333;
        line-height: 1.5;
    }



.eo-control--btn-group {
    display: flex;
}

    .eo-control--btn-group > input {
        border-radius: 3px 0 0 3px;
        width: calc(100% - 18px);
    }

.eo-control--color {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
    border: none;
}

    .eo-control--color > input[type=color] {
        padding: 0;
        border: none;
        background: none;
    }

        .eo-control--color > input[type=color]:focus {
            outline: none;
        }

        .eo-control--color > input[type=color]:hover {
            background-color: #f2f2f2;
            border-bottom: 1px solid #337ab7;
        }


.eo-control--calendar {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
}

    .eo-control--calendar input {
        display: inline-block;
        width: 100%;
        padding: 8px;
        padding-left: 12px;
        outline: 0;
        background: white;
        color: #333;
    }

.ui-front {
    z-index: 9999 !important;
}

.eo-control--textarea {
    padding: 0;
    margin-bottom: 0;
}

    .eo-control--textarea textarea {
        width: 100%;
        padding: 8px;
    }

.eo-control--textarea-medium textarea {
    height: 90px;
}

.eo-control--textarea-large textarea {
    height: 120px;
}

/*.eo-control--date-range {
    padding-left: 0;
}


    .eo-control--date-range input {
        width: calc(50% - 2px);
        display: inline-block;
    }


.eo-control--percent-range {
    padding-left: 0;
}


    .eo-control--percent-range input {
        width: calc(50% - 2px);
        display: inline-block;
    }

.eo-control--value-range {
    padding-left: 0;
    height: 75px;
}


    .eo-control--value-range input {
        width: 100%;
        margin-bottom: 2px;
        display: block;
    }*/

.eo-control__indicator {
    position: absolute;
    top: 0px;
    left: 0;
    height: 16px;
    width: 16px;
    background: #fff;
    border: 1px solid #ccc;
    /*
  .control:hover input:not([disabled]):checked ~ &,
  .control input:checked:focus ~ &
    border-color: #666
    */
}

.eo-control--checkbox .eo-control__indicator {
    border-radius: 3px;
}

.eo-control--radio .eo-control__indicator {
    border-radius: 50%;
}

.eo-control:hover input:not([disabled]) ~ .eo-control__indicator,
.eo-control input:focus ~ .eo-control__indicator {
    border-color: #666;
}

.eo-control input:checked ~ .eo-control__indicator {
    background: #fff;
}

.eo-control input:disabled ~ .eo-control__indicator {
    background: #e6e6e6;
    opacity: 0.6;
    pointer-events: none;
}

.eo-control__indicator:after {
    content: '';
    position: absolute;
    display: none;
}

.eo-control input:checked ~ .eo-control__indicator:after {
    display: block;
}

.eo-control--checkbox .eo-control__indicator:after {
    left: 4px;
    top: 0px;
    width: 4px;
    height: 12px;
    border: solid #0565b1;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.eo-control--checkbox input:disabled ~ .eo-control__indicator:after {
    border-color: #7b7b7b;
}

.eo-control--radio .eo-control__indicator:after {
    left: 5px;
    top: 5px;
    height: 6px;
    width: 6px;
    border-radius: 50%;
    background: #0565b1;
}

.eo-control--radio input:disabled ~ .eo-control__indicator:after {
    background: #7b7b7b;
}

.eo-control--select {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
}

    .eo-control--select select {
        display: inline-block;
        width: 100%;
        padding: 6px 8px 5px 8px;
        outline: 0;
        background: white;
        color: #7b7b7b;
        line-height: 1.5;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
    }

        .eo-control--select select::-ms-expand {
            display: none;
        }

        .eo-control--select select:hover,
        .eo-control--select select:focus {
            color: #000;
            background: #f2f2f2;
        }

        .eo-control--select select:disabled {
            opacity: 0.5;
            pointer-events: none;
        }

.eo-control__select-arrow {
    position: absolute;
    top: 12px;
    right: 7px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.eo-control__select-arrow--grid {
    position: inherit;
    display: inline-block;
    margin-left: -14px;
}

.eo-control--select select:hover ~ .eo-control__select-arrow,
.eo-control--select select:focus ~ .eo-control__select-arrow {
    border-top-color: #000;
}

.eo-control--select select:disabled ~ .eo-control__select-arrow {
    border-top-color: #ccc;
}



.eo-control--multiselect {
    position: relative;
    display: inline-block;
    margin-bottom: 0;
    width: 100%;
    padding: 0;
    height: 26px;
}

    .eo-control--multiselect select {
        display: inline-block;
        width: 100%;
        padding: 3px 5px;
        outline: 0;
        background: white;
        color: #7b7b7b;
        appearance: none;
        -webkit-appearance: none;
        -moz-appearance: none;
        display: none;
    }

.eo-control-singletext {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    height: 25px;
    line-height: 20px;
    color: #666;
    font-size: 12px;
}

.eo-control-singletext-main {
    font-weight: bold;
}

.eo-control__counter-arrow {
    position: absolute;
    left: 3px;
    width: 0;
    height: 0;
    pointer-events: none;
    border-style: solid;
}

.eo-control__counter-arrow--up {
    top: 3px;
    border-width: 0 5px 8px 5px;
    border-color: transparent transparent #7b7b7b transparent;
}

.eo-control__counter-arrow--down {
    top: 3.5px;
    border-width: 8px 5px 0 5px;
    border-color: #7b7b7b transparent transparent transparent;
}

.eo-control__counter-arrow--grid {
    position: inherit;
    margin-left: -5px;
}
/* 
---------------------------------------------------------
:: View controls  
---------------------------------------------------------
*/

.eo-view-control {
    aposition: absolute;
    width: 100%;
    /*padding-left: 130px;*/
    aleft: 0;
    atop: 0;
    border-bottom: 1px solid #eee;
    padding: 2px 0 6px 0;
}

    .eo-view-control > span {
        width: 100%;
        font-size: 13px;
        line-height: 20px;
        display: inline-block;
        white-space: nowrap;
        overflow: hidden !important;
        text-overflow: ellipsis;
        width: 100%;
    }

.eo-view-control-group {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    position: relative;
    margin: 6px 0 0 0;
}

.eo-view-control:hover {
    /*position:absolute;
    left: -2px;
    top: -2px;
    right: -2px;
    border: 1px solid #69bcff;
    background: white;
    max-height: 58px;
    overflow-y: auto;
    overflow-x: hidden;
    amargin: 2px;
    width: calc(100%);
    apadding-left: 5px;
    z-index: 2006;
     box-shadow: 0px 1px 3px rgba(0,0,0,0.3);*/
}

    /*.eo-view-label:hover  {
    left: -1px;
    top: -1px;
    right: -1px;
    border: 1px solid #333;
    background: white;
    max-height: 58px;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    width: 100px;
    apadding-left: 5px;
    z-index: 2006;
}*/


    .eo-view-control:hover span {
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }


.eo-view-label {
    /*width: 125px;*/
    width: 100%;
    padding-left: 10px;
}

    .eo-view-label > span {
        line-height: 20px;
        color: #666;
        font-size: 12px;
        display: inline-block;
        awhite-space: nowrap;
        overflow: hidden !important;
        atext-overflow: ellipsis;
        width: 100%;
    }

.eo-view-control {
}

.eo-view-data {
    padding: 0 5px;
    margin-bottom: 10px;
}

.eo-view-header__info i {
    background-color: #0565b1;
    color: #fbfbf9;
    font-size: 22px;
    padding: 4px 0;
    width: 31px;
    text-align: center;
}

.eo-view--view .eo-view-header__info i, .eo-view--edit .eo-view-header__info i {
    font-size: 36px;
    width: 44px;
    float: left;
}

.eo-view--view .eo-view-header__name,
.eo-view--edit .eo-view-header__name {
    line-height: unset;
}

.eo-view--view .eo-view-header__fullname,
.eo-view--edit .eo-view-header__fullname {
    font-size: 26px;
    white-space: nowrap;
    text-overflow: ellipsis;
    width: calc(100% - 50px);
    overflow: hidden;
}

/*.eo-control--textbox input {
        display: inline-block;
        width: 100%;
        padding: 4px 9px;
        outline: 0;
        background: white;
        color: #333;
    }*/

/*
---------------------------------------------------------
:: Validation
---------------------------------------------------------
*/
.input-validation-error, select.input-validation-error, textarea.input-validation-error, input.input-validation-error, input[type=checkbox].input-validation-error {
    background-color: #fbf2b5 !important;
    color: #d95c5c !important;
    padding-left: 3px !important;
    border: 1px solid;
    border-color: #c43d3d;
    border-left: 5px solid #dd0000;
    display: inline;
}

input[type=checkbox].input-validation-error {
    outline: 2px solid #dd0000;
    box-shadow: -5px -2px 0 0 #dd0000, -5px 2px 0 0 #dd0000;
    margin-left: 5px;
}

input[type=radio].input-validation-error {
    box-shadow: -2px -2px 0 0 #dd0000, -2px 2px 0 0 #dd0000, 2px -2px 0 0 #dd0000, 2px 2px 0 0 #dd0000;
    margin-left: 2px;
}

.eo-form input[data-val-required], .eo-form select[data-val-required] {
    abackground-color: #fcffdf;
    aborder: 1px solid #0565b1;
    aborder: 1px solid #ccc;
    border-left: 2px solid #69bcff;
}

.field-validation-error {
    color: #d95c5c !important;
    font-size: 11px;
    font-weight: bold;
    display: block;
    margin: 15px 5px 0;
    line-height: 15px;
}

.eo-control > input[disabled]{
    border-color: #7676764d;
    background-color: #98989821;
    color: #858585;
}

/* 
---------------------------------------------------------
:: Calendar  
---------------------------------------------------------
*/
.eo-datepicker {
    background-image: url("../../../Images/Icons/calendar.png") !important;
    background-repeat: no-repeat !important;
    background-position: -10% !important;
}


.ui-datepicker {
    z-index: 9999 !important;
}
/* 
---------------------------------------------------------
:: Scrollbar  
---------------------------------------------------------
*/
.eo-scrollbar {
    overflow-y: auto;
}

    .eo-scrollbar::-webkit-scrollbar {
        width: 1em;
    }

    .eo-scrollbar::-webkit-scrollbar-track {
        -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3);
    }

    .eo-scrollbar::-webkit-scrollbar-thumb {
        background-color: darkgrey;
        outline: 1px solid slategrey;
    }
/* 
---------------------------------------------------------
:: Form 
---------------------------------------------------------
*/





/* 
---------------------------------------------------------
:: View 
---------------------------------------------------------
*/



.eo-container {
    aposition: absolute;
    aleft: 0;
    atop: 0;
    width: 100%;
    height: 100%;
}

.eo-view {
    display: flex;
    flex-flow: column;
    float: left;
    height: 100%;
    width: 100%;
}

.eo-view-body {
    height: 100%;
    position: relative;
}

.eo-view-header + .eo-view-body {
    height: calc(100% - 77px);
}

.eo-view--view .eo-view-header + .eo-view-body {
    padding: 10px;
}

.eo-search + .eo-view-body {
    float: left;
    aheight: auto;
    width: 100%;
}

.eo-view-body--calendar {
    position: relative;
}

.eo-view-body--dark {
    background-color: #eee;
}

.eo-view-header {
}

.eo-view-header__info {
    padding: 4px 0 4px 4px;
    width: 100%;
    border-bottom: 1px solid #eee;
}

    .eo-view-header__info > div {
        width: calc(100% - 50px);
        padding-left: 50px;
    }

.eo-view-header__name {
    vertical-align: top;
    font-size: 14px;
    color: #666;
    line-height: 29px;
    text-transform: uppercase;
}

.eo-search {
    background-color: white;
    height: 100%;
    float: left;
    border-right: 1px solid #eee;
}

    .eo-search form {
        height: inherit;
    }

.eo-search--closed {
    width: 39px;
}

.eo-search--opened {
    width: 210px;
}

.eo-search--closed + .eo-view {
    width: calc(100% - 40px);
}

.eo-search--opened + .eo-view {
    width: calc(100% - 211px);
}

.eo-search__header {
    padding: 4px 0 1px 7px;
    color: #666;
    position: relative;
    border-bottom: 1px solid #eee;
}

    .eo-search__header span {
        font-size: 14px;
        position: absolute;
        top: 11px;
        left: 39px;
    }

.eo-search--closed .eo-search__header span {
    display: none;
}

.eo-search--closed .eo-search__header {
    cursor: pointer;
}

.eo-search--opened .eo-search__header span {
    display: block;
}

.eo-search__header__icon {
    font-size: 33px;
}

.eo-search:hover .eo-search__header {
    background-color: #f6f8f8;
}

.eo-search--closed .eo-search__header:hover {
    color: #333;
}


.eo-search__header__close {
    display: none;
    font-size: 24px;
    position: absolute;
    top: 8px;
    right: 11px;
    color: #999;
}

.eo-search--horizontal {
    height: auto;
    width: 100%;
    border: none;
    background-color: transparent;
}

.eo-search--opened + .eo-search--horizontal {
    width: calc(100% - 220px);
}

.eo-search--horizontal .eo-control-group {
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 5px;
    apadding-left: 5px;
}


/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    .eo-search--horizontal .eo-control-group {
        flex-basis: 100%;
        width: 100%;
    }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
    .eo-search--horizontal .eo-control-group {
        flex-basis: 50%;
        width: 50%;
    }
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    .eo-search--horizontal .eo-control-group {
        flex-basis: 25%;
        width: 25%;
    }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}

.eo-search--stretch .eo-control-group {
    flex-grow: 1;
}

.eo-search--closed + .eo-search--horizontal {
    width: calc(100% - 39px);
}

.eo-control-group > .eo-search--horizontal {
}

.eo-search--closed .eo-search__header__close {
    display: none;
}

.eo-search--opened .eo-search__header__close {
    display: block;
    cursor: pointer;
}

    .eo-search--opened .eo-search__header__close:hover {
        display: block;
        cursor: pointer;
        color: #333;
    }

.eo-search__buttons {
    text-align: center;
    padding: 1px 0;
    abackground-color: #f6f8f8;
    abox-shadow: 0px 2px 8px rgba(0,0,0,0.1), 0 1px 0 rgba(0,0,0,0.05);
    background-color: white;
    height: 37px;
}

.eo-search--horizontal .eo-search__buttons {
    text-align: left;
    position: absolute;
    top: 0px;
    right: 50px;
    background-color: rgba(0,0,0,0);
}

    .eo-search--horizontal .eo-search__buttons span {
        position: unset;
        display: inherit;
    }

/*.eo-search:hover .eo-search__buttons {
    background-color: white;
}*/

.eo-search--opened .eo-search__form {
    display: block;
}

.eo-search--horizontal .eo-search__form {
    /*padding: 0;*/
    display: flex;
    flex-wrap: wrap;
    border: none;
    overflow: inherit;
}

.eo-search--closed .eo-search__form {
    display: none;
}

.eo-search--closed .eo-search__buttons {
    display: none;
}

.eo-search__form {
    height: calc(100% - 77px);
    border-top: 1px solid #eee;
    padding: 10px;
}

.eo-search--opened .eo-search__buttons {
    display: block;
}

.eo-search__form__item {
    padding-bottom: 5px;
    width: 100%;
}

    .eo-search__form__item .eo-control {
        width: calc(100% - 15px);
    }

    .eo-search__form__item select.eo-control {
        width: 100%;
    }

    .eo-search__form__item span {
        display: block;
        padding-bottom: 2px;
    }

.eo-view-header__buttons {
    border-bottom: 1px solid #eee;
    width: 100%;
}

/* Custom, iPhone Retina */
@media only screen and (min-width : 320px) {
    /*Schowaj opis przycisku, ale wciąż pokazuj opisy wewnątrz przycisków wielopoziomowych*/
    .eo-view-header__buttons--mobile-sm ul:not(.eo-dropdown-menu) > li > a.eo-button > span:not(.eo-caret) {
        display: none;
    }

    .eo-view-header__buttons--mobile-lean .eo-button {
        padding: 0 5px 1px 4px;
    }

    .eo-view-header__buttons--mobile-lean .eo-dropdown-toggle.eo-button {
        padding-right: 11px;
    }

        .eo-view-header__buttons--mobile-lean .eo-dropdown-toggle.eo-button > .eo-caret {
            right: 3px;
        }
}

/* Extra Small Devices, Phones */
@media only screen and (min-width : 480px) {
}

/* Small Devices, Tablets */
@media only screen and (min-width : 768px) {
}

/* Medium Devices, Desktops */
@media only screen and (min-width : 992px) {
    /*Schowaj opis przycisku, ale wciąż pokazuj opisy wewnątrz przycisków wielopoziomowych*/
    .eo-view-header__buttons--mobile-sm ul:not(.eo-dropdown-menu) > li > a.eo-button > span:not(.eo-caret) {
        display: inline-block;
    }

    .eo-view-header__buttons--mobile-lean .eo-button {
        padding: 0 8px 1px 8px;
    }

    .eo-view-header__buttons--mobile-lean .eo-dropdown-toggle.eo-button {
        padding-right: 15px;
    }

        .eo-view-header__buttons--mobile-lean .eo-dropdown-toggle.eo-button > .eo-caret {
            right: initial;
        }
}

/* Large Devices, Wide Screens */
@media only screen and (min-width : 1200px) {
}

.eo-button__divider {
    width: 1px;
    height: 34px;
    padding: 0;
    margin: 2px 0 2px 0;
    background-image: linear-gradient(to bottom, #fbfbfb 0%, #ccc 50%, #fbfbfb 100%);
}

.eo-view--view {
    padding: 2px 0 2px 0;
}

.eo-view--add {
    padding: 0 0 2px 0;
}

.eo-view--form {
    padding: 10px;
}

.eo-button-group--vertical {
    display: flex;
    flex-direction: column;
    height: 32px;
    width: 18px;
}

    .eo-button-group--vertical > button {
        max-height: 16px;
        background-color: #f2f2f2;
        border-style: solid;
        border-color: #999;
    }

        .eo-button-group--vertical > button:first-child {
            border-width: 1px 1px 0 1px;
            border-radius: 0 3px 0 0;
        }

        .eo-button-group--vertical > button:last-child {
            border-width: 1px;
            border-radius: 0 0 3px 0;
        }

        .eo-button-group--vertical > button:focus {
            aoutline: none;
        }


/* 
---------------------------------------------------------
:: Alert 
---------------------------------------------------------
*/
.eo-alert {
    display: inline-block;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    line-height: 12px;
    padding: 1px 4px;
    text-align: center;
    color: #FFFFFF;
}

.eo-alert--red {
    background-color: rgba(238, 0, 0, 0.9);
}



/* 
---------------------------------------------------------
:: Tooltip 
---------------------------------------------------------
*/
.eo-stage-diagram__element .eo-tooltiptext {
    visibility: hidden;
    background-color: black;
    padding-left: 8px !important;
    padding-right: 8px !important;
    color: #fff;
    text-align: center;
    border-radius: 6px;
    padding: 5px 0;
    /* Position the tooltip */
    z-index: 1000000;
    position: absolute;
    top: -10%;
    left: 1%;
}

.eo-stage-diagram__element:hover .eo-tooltiptext {
    visibility: visible;
}


/* 
---------------------------------------------------------
:: Grid System 
---------------------------------------------------------
*/


.eo-row {
    position: relative;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.eo-row-cointainer {
    padding: 10px;
}

.eo-col, .eo-col-1, .eo-col-2, .eo-col-3, .eo-col-4, .eo-col-5, .eo-col-6, .eo-col-7, .eo-col-8, .eo-col-9, .eo-col-10, .eo-col-11, .eo-col-12 {
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 2px;
    padding-left: 2px;
}

.eo-row div:first-child {
    padding-left: 0;
}

.eo-row div:last-child {
    padding-right: 0;
}

.eo-col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.eo-col-1 {
    width: 8.33333333%;
}

.eo-col-2 {
    width: 16.66666667%;
}

.eo-col-3 {
    width: 25%;
}

.eo-col-4 {
    width: 33.33333333%;
}

.eo-col-5 {
    width: 41.66666667%;
}

.eo-col-6 {
    width: 50%;
}

.eo-col-7 {
    width: 58.33333333%;
}

.eo-col-8 {
    width: 66.66666667%;
}

.eo-col-9 {
    width: 75%;
}

.eo-col-10 {
    width: 83.33333333%;
}

.eo-col-11 {
    width: 91.66666667%;
}

.eo-col-12 {
    width: 100%;
}

.eo-row::after, .eo-row::before {
    content: "";
    display: table;
    clear: both;
}



.eo-control--image {
    width: 160px;
    height: 160px;
    display: block;
    border: 1px solid #eee;
    padding-left: 0;
    margin: 10px;
    text-align: center;
    font-size: 12px;
    line-height: 80px;
    position: relative;
}

    .eo-control--image div {
        width: 100%;
        height: 100%;
        background-position: center;
        background-size: cover;
    }

.eo-control__hint i {
    font-size: 15px;
    color: #0565b1;
    padding-left: 5px;
}

/*.eo-control__image-buttons {
    height: 20px;
    position: absolute;
    bottom: 0;
    left: 0;
    border: 1px solid #f2f2f2;
    width: 100%;
    border-top: 1px solid #eee;
}

    .eo-control__image-buttons a {
        line-height:20px;    
    }

    .eo-control__image-buttons i {
        color:#333;
        font-size:20px;
    }*/


.eo-system-icon {
    background-image: url("../../../Images/ERPONE_ico_16px.png");
    background-repeat: no-repeat;
    width: 16px;
    height: 16px;
}

.eo-button .eo-caret {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 5px;
    vertical-align: middle;
    border-top: 4px dashed;
    border-top: 4px solid\9;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    position: absolute;
    top: calc(50% - 2px);
}

.eo-button.eo-button--grid{
    position: inherit;
}

.eo-button.eo-dropdown-toggle {
    padding-right: 15px;
}

.eo-buttons-bar {
    width: 100%;
}

    .eo-buttons-bar li {
        position: relative;
    }

    .eo-buttons-bar .eo-dropdown-menu {
        position: absolute;
        top: 100%;
        left: 0;
        z-index: 1000;
        display: none;
        float: left;
        min-width: 160px;
        padding: 5px 0;
        margin: 2px 0 0;
        margin-top: 2px;
        font-size: 14px;
        text-align: left;
        list-style: none;
        background-color: #fff;
        -webkit-background-clip: padding-box;
        background-clip: padding-box;
        border: 1px solid #ccc;
        border: 1px solid rgba(0,0,0,.15);
        border-radius: 4px;
        border-top-left-radius: 4px;
        border-top-right-radius: 4px;
        -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
        box-shadow: 0 6px 12px rgba(0,0,0,.175);
    }

        .eo-buttons-bar .eo-dropdown-menu li {
            width: 100%;
        }

    .eo-buttons-bar .eo-open + .eo-dropdown-menu {
        display: block;
    }

.eo-button.eo-button--flat {
    width: 100%;
    height: 24px;
    line-height: 23px;
    color: #666;
    text-align: left;
    padding-left: 10px;
    white-space: nowrap;
}

    .eo-button.eo-button--flat i {
        padding-top: 0;
    }

.eo-button.eo-button--vertical {
    width: 100%;
    height: 100%;
    line-height: 23px;
    color: #666;
    text-align: center;
    padding-left: 10px;
    white-space: nowrap;
}

    .eo-button.eo-button--vertical i {
        display:block;
        width:auto;
    }

    .eo-button.eo-button--vertical i + span {
       padding-left:0;
    }


a.eo-link {
    font-size: 12px;
    color: #1085e1;
    text-decoration: none;
}

    a.eo-link:hover, table tr td a.eo-link:hover {
        text-decoration: underline;
    }

    a.eo-link i {
        font-size: 14px;
        margin-right: 3px;
        color: #1085e1;
    }

.eo-fieldset {
    position: relative;
    display: block;
    padding-top: 14px;
    padding-bottom: 6px;
    aborder: 1px solid #ddd;
    margin-top: 20px;
    padding-left: 5px;
    padding-right: 5px;
    margin-left: 0;
    margin-right: 0;
    width: calc(100% - 15px);
    border: none;
}

    .eo-fieldset.eo-fieldset--simple {
        border: none;
    }

    .eo-fieldset legend {
        /*position: absolute;
        top: -17px;
        left: 0;
        font-size: 12px;
        color: #666;*/
        position: absolute;
        top: -15px;
        left: -15px;
        font-size: 14px;
        width: 100%;
        border-bottom: 1px solid #eee;
        padding: 0 0 8px 0;
        color: #333;
        font-weight: bold;
        text-transform: uppercase;
    }

    .eo-fieldset.eo-fieldset--simple legend {
        width: 100%;
        /*border-bottom: 1px solid #ddd;*/
    }

.eo-fieldset {
    margin-left: 15px;
}

.eo-view-body--dark .eo-fieldset {
}

.eo-panel {
    background-color: white;
    border-radius: 3px;
    -webkit-box-shadow: 1px 2px 5px 0 rgba(0,0,0,.15);
    -moz-box-shadow: 1px 2px 5px 0 rgba(0,0,0,.15);
    box-shadow: 1px 2px 5px 0 rgba(0,0,0,.15);
    margin: 2px;
    border: 1px solid #ccc;
}

.eo-panel-header {
    padding: 5px;
    font-size: 14px;
    font-weight: 600;
    padding: 10px !important;
    border-bottom: 1px solid #ccc;
    position:relative;
}

.eo-panel-header__buttons {
    position:absolute;
    top:0;
    right:0;
}

.eo-panel-header--danger {
    background-color: #de4343;
    border-color: #c43d3d;
    border-left: 5px solid #c43d3d;
    color: white;
    font-weight: 600;
}

.eo-panel-body {
    padding: 10px !important;
}

.eo-status__color {
    padding: 0px 5px 1px 5px;
    border-radius: 2px;
    color: #fbfbf9;
    font-weight: bold;
    width: auto !important;
}

.eo-nopadd {
    padding: 0;
}

.eo-ajax-loader {
    display: inline-block;
    font: normal normal normal 14px/1 'Material-Design-Iconic-Font';
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    /*obrót*/
    -webkit-animation: zmdi-spin 1.5s infinite linear;
    animation: zmdi-spin 1.5s infinite linear;
}

    .eo-ajax-loader:before {
        content: '\f1c6';
    }


/* 
---------------------------------------------------------
:: Auto Complete
*/

.autocomplete-suggestions {
    position: absolute;
    background: #fff;
    width: 240px;
    padding: 5px 0;
    list-style: none;
    z-index: 7000;
    box-shadow: 0 2px 4px rgba(0,0,0,.5);
    border-radius: 0 0 4px 4px;
    margin-left: 1px;
    overflow: auto;
}

.autocomplete-suggestion {
    padding: 5px 5px 5px 10px;
    white-space: nowrap;
    overflow: hidden;
    color: #333;
}

.autocomplete-selected {
    background: #337ab7;
    color: white;
    cursor: pointer;
}

.autocomplete-suggestions strong {
    font-weight: normal;
    color: #337ab7;
}

.autocomplete-suggestions .autocomplete-selected strong {
    font-weight: bold;
    color: white;
}

.autocomplete-group {
    padding: 2px 5px;
}

    .autocomplete-group strong {
        display: block;
        border-bottom: 1px solid #000;
    }

/* 
:: Auto Complete
---------------------------------------------------------
*/

/*.eo-row .eo-control-group, .eo-row div:first-child.eo-control-group {
    border-left: 2px solid #eee;
    padding-left: 6px;
    border-radius:2px;
}*/

.eo-row .eo-control-group--h1 .eo-view-control, .eo-row div:first-child.eo-control-group--h1 .eo-view-control {
    border-left: 2px solid #69bcff;
    padding-left: 6px;
    border-radius: 2px;
}



.eo-row .eo-control-group--h2 .eo-view-control, .eo-row div:first-child.eo-control-group--h2 .eo-view-control {
    background-color: #69bcff;
    border-radius: 2px;
    color: white;
}

.eo-row .eo-control-group--color .eo-view-control, .eo-row div:first-child.eo-control-group--color .eo-view-control {
    border: none;
    padding-left: 0;
}

.eo-control--grid{
    position:inherit;
}

.eo-view-control {
    aborder: 1px solid #eee;
    padding: 5px 0;
    padding-right: 5px;
    line-height: 7px;
}

@keyframes notification{
    0% { background-color: rgba(238, 0, 0, 0.9); }
    50% { background-color: white; }
    100% { background-color: rgba(238, 0, 0, 0.9); }
}

.eo-sidemenu--notification {
    position: relative;
    float: right;
    z-index: 10;
    margin-right: 5px;
    margin-top: 10px;
    animation-name: notification;
    animation-duration: 1s;
    animation-iteration-count: infinite;
}