/* Minification failed. Returning unminified contents.
(30,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(182,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(1283,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(1284,5): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(1437,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
(1524,13): run-time error CSS1062: Expected semicolon or closing curly-brace, found '/'
 */
/* 

    Kolory 
    #fff - tlo
    #fafafa - tlo poprawki
    #000 - czcionka body

    #444 - linki
    #1e4593 - buttony (a.btn, input[type=submit], button)
    #ac1b1b - uwaga buttony (danger etc.)
    #ff0000 - linki akcji 

*/

* {
    font-family: 'Rubik', sans-serif;
}

    *:focus {
        outline: none;
    }

html, body {
    min-width: 1200px;
    max-width: 100%;
    width: 100%;
    height: 100%;
    padding: 0;
    margin: 0;
    /overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100%;
    background-color: #fff;
}

h1, h2, h3, h4, h5, h6 {
    color: #222;
}


a {
    text-decoration: none;
    color: #777;
    font-weight: normal;
}

    a:hover {
        color: #000;
    }

    a.link-default:hover {
        color: #000;
        text-decoration: underline;
    }

    a.link-search {
        font-size: 0;
    }

        a.link-search::after {
            content: "";
            display: block;
            width: 24px;
            height: 24px;
            position: relative;
            top: 50%;
            left: 50%;
            margin-left: -12px;
            margin-top: -6px;
            background: url(/Content/Icons/icon-find.svg) no-repeat center center;
            background-size: 90%;
        }

hr {
    background-color: #000;
    opacity: .25;
}

p {
    font-size: 10pt;
    font-weight: normal;
}

h2 a:link, h2 a:visited {
    font-size: 14pt;
    color: #2f65d0;
    margin: 3px;
}


body > header {
    width: 100%;
    height: 50px;
    position: relative;
    box-sizing: padding-box;
    background-color: #fefefe;
    border-bottom: #eaeaea solid 1px;
    box-shadow: 0 7px 9px -7px rgba(0,0,0,0.1);
}

body > noscript .noscript {
    width: 100%;
    height: auto;
    color: white;
    background-color: #9b1e1e;
    padding: 8px 0;
    margin: auto;
    position: relative;
    text-align: center;
    z-index: 99;
    font-size: 8pt;
}

#session-timer {
    background-color: #f5f5f5;
    color: #333;
    opacity: .95;
    padding: 6px 12px;
    font-size: 8pt;
    text-align: center;
    z-index: 3;
    position: relative;
    margin: 0;
    width: 210px;
    overflow: hidden;
    display: none;
}

    #session-timer > * {
        display: inline-block;
        float: left;
    }

    #session-timer .session-refresh-btn {
        width: 20px;
        height: 20px;
        display: block;
        padding: 0;
        margin: -4px;
        margin-right: 8px;
        background-image: url(/Content/Icons/icon-refresh.svg);
        background-size: 16px 16px;
        background-position: center center;
        background-repeat: no-repeat;
        opacity: .75;
    }

    #session-timer #session-counter {
        font-size: 10pt;
        color: #222;
    }

    #session-timer.show {
        display: block;
    }

body > header > div {
    width: 1200px;
    height: 100%;
    margin: auto;
}

    body > header > div > div#header-logo {
        width: 150px;
        height: 100%;
        float: left;
        padding: 0;
        margin: 0;
    }

        body > header > div > div#header-logo a#logo {
            display: block;
            background: url(/Content/Imgs/h1_logo_2.png) no-repeat;
            background-size: 75%;
            background-position: center center;
            width: 150px;
            height: 50px;
            float: left;
            /-webkit-filter: grayscale(1) brightness(10) contrast(2);
        }

        body > header > div > div#header-logo span {
            display: block;
            float: left;
            user-select: none;
            pointer-events: none;
            margin-left: -15px;
            margin-top: 5px;
        }

body > header nav {
    display: block;
    width: 1045px;
    height: 100%;
    float: right;
    padding: 0 0px;
}

    body > header nav > ul {
        list-style: none;
        width: auto;
        margin: 0;
        padding: 0;
        height: 100%;
    }

        body > header nav > ul.nav-left {
            float: left;
        }

    body > header nav ul.nav-right {
        float: right;
        margin: 0 10px 0 0;
    }

    body > header nav ul.nav > li {
        display: block;
        height: 100%;
        width: auto;
        padding: 0;
        margin: 0;
        margin-top: -1px;
        float: left;
        border-bottom: 2px solid transparent;
        transition: linear opacity .25s, linear border-color .5s .125s;
    }

        body > header nav ul.nav > li.link-separator {
            display: block;
            float: left;
            position: relative;
            width: 5px;
            height: 50px;
        }

            body > header nav ul.nav > li.link-separator::after {
                content: "";
                display: block;
                width: 1px;
                position: relative;
                height: 40px;
                left: 50%;
                top: 50%;
                margin-top: -20px;
                background-color: rgba(0,0,0,.1);
            }

        body > header nav ul.nav > li > a:link,
        body > header nav ul.nav > li > a:visited {
            display: block;
            float: left;
            text-decoration: none;
            font-size: 9pt;
            color: #555;
            text-align: center;
            padding: 18px 10px;
            font-weight: 700;
            text-transform: uppercase;
        }

    body > header nav ul > li.active {
        border-bottom-color: red;
    }

    body > header nav ul.nav > li.active a:link,
    body > header nav ul.nav > li.active a:visited {
    }

    body > header nav ul.nav > li:not(:empty):hover {
        border-bottom-color: rgba(0, 0, 0, .75);
    }

    body > header nav ul.nav:hover > li:not(:empty):not(:hover) {
        opacity: .5;
    }

body > div#body {
    width: 1200px;
    height: auto;
    min-height: calc(100% - 110px);
    position: relative;
    margin: auto;
    margin-bottom: 60px;
    padding: 0;
}

body > footer {
    width: 100%;
    height: auto;
    background-color: #1e4593;
    color: #fff;
    position: relative;
    font-size: 10pt;
    padding: 30px 0 20px 0;
    overflow: hidden;
    box-shadow: inset 0 7px 9px -7px rgba(0,0,0,0.4);
}

    body > footer div#footer-body {
        width: 1200px;
        margin: auto;
    }

    body > footer ul#footer-menu {
        width: 100%;
        padding: 10px 0;
        margin: 0;
        overflow: hidden;
        font-size: 9pt;
    }

        body > footer ul#footer-menu li {
            display: block;
            float: left;
        }

            body > footer ul#footer-menu li.link-separator {
                width: 9px;
                height: 24px;
            }

            /*body > footer ul#footer-menu li.link-separator::after {
        display: block;
        content: "";
        width: 4px;
        height: 100%;
        border-right: 1px solid #fff;
        opacity: .125;
    }*/

            body > footer ul#footer-menu li a {
                display: block;
                padding: 5px 10px;
                color: #eee;
            }

            body > footer ul#footer-menu li.active a {
                background-color: white;
                color: #1e4593;
            }

            body > footer ul#footer-menu li a:hover {
                text-decoration: underline;
            }

    body > footer span#who {
        border-top: 1px solid rgba(255,255,255,.05);
        width: auto;
        text-align: left;
        margin: auto;
        padding: 9px 10px;
        display: block;
        float: left;
        opacity: .75;
        font-size: 8pt;
        -webkit-user-select: none;
        -moz-user-select: none;
        user-select: none;
    }

/* Dropdown */

.dropdown {
    display: block;
    position: relative;
    width: auto;
}

    .dropdown > a {
        display: block;
        padding-right: 24px !important;
    }

        .dropdown > a::after {
            content: "";
            width: 18px;
            height: 18px;
            display: block;
            padding: 0;
            margin: 0;
            position: absolute;
            left: 100%;
            top: 50%;
            margin-top: -9px;
            margin-left: -18px;
            background: url(/Content/Icons/icon-expand.svg) no-repeat;
            background-size: 18px 18px;
        }

    

    .dropdown .dropdown-menu {
        list-style: none;
        position: absolute;
        z-index: 99;
        background-color: #fefefe;
        color: #eee;
        display: none;
        width: 180px;
        top: 53px;
        left: 100%;
        border: 1px #ccc solid;
        margin: 0;
        margin-left: -172px;
        box-shadow: 1px 3px 1px 1px rgba(0,0,0,.1);
        /*box-shadow: 0 0 5px 1px rgba(0,0,0,.05);*/
        /*box-shadow: 0px 1px 5px rgba(0,0,0,.125), 
                         -1px 1px 5px rgba(0,0,0,.125), 
                          1px 1px 5px rgba(0,0,0,.125);*/
    }

        .dropdown-menu.show {
            display: block;
        }

    .dropdown.open .dropdown-menu {
        display: inline-block;
        padding: 5px 0;
    }

.dropdown-menu li {
    display: block;
    height: auto;
    width: 100%;
    padding: 0;
    margin: 0;
    float: left;
    overflow: hidden;
}

    .dropdown-menu li a {
        display: block;
        width: 100%;
        font-size: 8pt !important;
        text-decoration: none;
        padding: 15px;
        margin: -5px;
        color: #111;
    }

    .dropdown-menu li:hover {
        background-color: rgba(0,0,0,.1);
    }

    .dropdown-menu li.link-separator {
        width: 100%;
        height: 1px;
        background-color: black;
        opacity: .25;
        margin: 3px 0;
        padding: 0;
    }

/* Forms */

section#loginForm, .form-horizontal {
    width: 400px;
    margin: 60px auto 0 auto;
    padding: 0;
}

    section#loginForm label {
        margin-left: 5px;
    }

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0px 1000px #eee inset;
}

@keyframes inputfade {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.form-group-pane {
    padding: 20px 0;
    border-bottom: 1px solid rgba(0,0,0,.1);
}

    .form-group-pane:last-of-type {
        border: none;
    }

input[type=text], input[type=email], input[type=password], input[type=date], input[type=datetime], select, textarea {
    width: 300px;
    box-sizing: border-box;
    padding: 10px 15px;
    margin: 10px 0;
    border: #ccc 1px solid;
    background-color: #fafafa;
    font-size: 10pt;
    color: #000;
    //animation: inputfade forwards .75s;
}

section#loginForm input[type=text], section#loginForm input[type=password], section#loginForm select {
    width: 340px;
}

select {
    width: auto;
    padding: 10px 45px 10px 15px;
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    background: url(/Content/Icons/icon-expand.svg) no-repeat 95% 53% #fafafa;
    background-size: 18px 18px;
    font-size: 10pt;
}

    select::-ms-expand {
        display: none;
    }

input[type=text]:hover, input[type=email]:hover, input[type=password]:hover, input[type=date]:hover, input[type=datetime]:hover, textarea:hover {
    border: #bbb 1px solid;
    box-shadow: inset 0 0 4px 1px rgba(0,0,0,.125);
}

input:focus, select:focus, textarea:focus {
    border-color: #aaa;
    outline: none;
}

*:disabled, *.disabled {
    opacity: .5;
    pointer-events: none;
}

    *.disabled.highlight {
        position: relative;
        overflow: hidden;
    }

        *.disabled.highlight::after {
            content: "";
            display: block;
            width: 100%;
            height: 100%;
            position: absolute;
            z-index: 99;
            top: 0;
            left: 0;
            background: repeating-linear-gradient( 45deg, black, black 5px, transparent 5px, transparent 10px);
            opacity: .075;
        }

.left-scrollbar {
    overflow-y: scroll;
    direction: rtl;
}

    .left-scrollbar > * {
        direction: ltr;
    }

input[type=submit], input[type=reset], button, a.btn, label.btn {
    box-sizing: padding-box;
    padding: 10px 12px;
    margin: 10px 0;
    border: #ccc 1px solid;
    background-color: #f1f1f1;
    font-size: 10pt;
    color: #222;
    text-decoration: none;
    font-weight: normal;
}

    input[type=submit].big-btn, input[type=reset].big-btn, button.big-btn, a.btn.big-btn {
        font-size: 11pt;
        padding: 12px 14px;
    }


    input[type=submit].small-btn, input[type=reset].small-btn, button.small-btn, a.btn.small-btn {
        font-size: 8pt;
        padding: 4px 8px;
    }

    input[type=submit].highlight, input[type=reset].highlight, button.highlight, a.btn.highlight, label.btn.highlight {
        border: #1e4593 1px solid;
        background-color: #fefefe;
        color: #1e4593;
    }

    input[type=submit]:hover, input[type=reset]:hover, button:hover, a.btn:hover, label.btn:hover {
        border: #bbb 1px solid;
        cursor: pointer;
    }


    input[type=submit].highlight.danger, input[type=reset].highlight.danger, button.highlight.danger, a.btn.highlight.danger {
        border: #ac1b1b 1px solid;
        color: #ac1b1b !important;
    }

    input[type=submit].highlight:hover, input[type=reset].highlight:hover, button.highlight:hover, a.btn.highlight:hover, label.btn.highlight:hover,
    input[type=submit].normal:hover, input[type=reset].normal:hover, button.normal:hover, a.btn.normal:hover {
        border: #1e4593 1px solid;
        background-color: #1e4593;
        color: #fff;
    }

    input[type=submit].danger:hover, input[type=reset].danger:hover, button.danger:hover, a.btn.danger:hover {
        border: #ac1b1b 1px solid;
        background-color: #ac1b1b;
        color: #fff !important;
    }

.btn-expander {
    display: block;
    width: 16px;
    height: 16px;
    background: url(/Content/Icons/icon-expand.svg) no-repeat;
    background-size: 16px 16px;
    border: none;
    padding: 0;
    margin: 0;
}

    .btn-expander:hover {
        cursor: pointer;
        border: none;
    }

    .btn-expander.expanded, [aria-expanded=true].btn-expander {
        transform: rotate(180deg);
    }

label, .label {
    font-size: 11pt;
}

    label.small, .label.small {
        font-size: 8pt;
    }

.info-normal {
    background-color: #333;
    color: white;
    padding: 1px 5px;
    border-radius: 2px;
}

.info-success {
    background-color: #5fba7d;
    color: white;
    padding: 1px 5px;
    border-radius: 2px;
}

.info-danger {
    background-color: #C95555;
    color: white;
    padding: 1px 5px;
    border-radius: 2px;
}

.infobox {
    background-color: #ddd;
    color: #555;
    padding: 15px;
    font-size: 9pt;
    box-sizing: border-box;
    text-wrap: normal;
    position: relative;
    cursor: help;
}

    .infobox.light {
        background-color: #eee;
    }

    .infobox.warning, .infobox.danger, .infobox.question {
        padding-left: 40px;
    }

        .infobox.warning::before,
        .infobox.danger::before,
        .infobox.question::before {
            display: block;
            color: #111;
            opacity: .5;
            font-size: 26pt;
            position: absolute;
            top: 50%;
            left: 20px;
            transform: translate(-50%, -50%);
        }

        .infobox.warning::before {
            content: "!";
        }

        .infobox.danger::before {
            content: "!!";
        }

        .infobox.question::before {
            content: "?";
        }

    .infobox > .title {
        display: block;
        padding: 0 0 10px 0;
        margin: 0 0 11px 0;
        font-size: 10pt;
        color: #111;
        border-bottom: 1px solid #bbb;
    }

    .infobox.floating {
        position: absolute;
        z-index: 99;
    }

.es-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 9pt;
    margin: 10px 0;
    border: 1px solid #ddd;
    box-shadow: 0 0 3px 1px rgba(0,0,0,.05);
}

    .es-table:hover {
        background-color: #fefefe;
        border: 1px solid #ccc;
    }

    .es-table tr {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

        .es-table tr.table-separator {
            height: 10px;
            border-bottom: 1px solid #ddd;
        }

        .es-table tr:hover td {
            background-color: rgba(0,0,0,.05);
        }

    .es-table .table-center {
        text-align: center;
    }

    .es-table .table-action {
        text-align: right;
    }

    .es-table td, .es-table th {
        padding: 8px 10px;
        box-sizing: border-box;
    }

    .es-table th {
        background-color: #f5f5f5;
        font-weight: bolder;
    }

    .es-table tr.info th {
        background-color: #eee;
    }

.blankspace {
    display: block;
    clear: both;
    width: 100%;
    margin: 0;
    padding: 0;
    pointer-events: none;
}

.box {
    padding: 10px;
    box-sizing: border-box;
}

.box-50 {
    width: 50% !important;
    float: left;
}

.box-33 {
    width: 33.3% !important;
    float: left;
}

.box-25 {
    width: 25% !important;
    float: left;
}

/* Pager */

.pagination-container {
    width: auto;
    display: block;
    margin: 20px auto 40px auto;
    padding: 0;
    overflow: hidden;
    font-size: 9pt;
    height: 50px;
}

ul.pagination {
    width: auto;
    list-style: none;
    margin: 0;
    padding: 0;
    float: right;
}

    ul.pagination > li {
        display: block;
        float: left;
        border: 1px solid #ddd;
        height: 100%;
        overflow: hidden;
        margin-right: 3px;
    }

        ul.pagination > li:last-of-type {
            margin-right: 0;
        }

        ul.pagination > li a {
            min-width: 20px;
            width: auto;
            display: block;
            margin: 0;
            padding: 8px 5px;
            text-align: center;
            text-decoration: none;
            color: #444;
            font-size: 8pt !important;
        }

        ul.pagination > li.active a {
            color: red;
        }

        ul.pagination > li a.lastpage::after {
            content: " »";
        }

        ul.pagination > li a.firstpage::before {
            content: "« ";
        }

        ul.pagination > li a.nextpage::after {
            content: " ›";
        }

        ul.pagination > li a.prevpage::before {
            content: "‹ ";
        }

        ul.pagination > li:hover {
            border-color: #ccc;
        }

        ul.pagination > li a:hover {
            opacity: 1;
            background-color: #eee;
        }

/* Filtrowanie */

#sort-package {
    float: right;
    width: auto;
    height: auto;
    box-sizing: border-box;
}

    #sort-package label,
    #sort-package a {
        display: block;
        float: left;
        font-size: 9pt;
        padding: 5px;
    }

    #sort-package > div {
        float: left;
    }

    #sort-package label {
        color: #000;
        margin-right: 5px;
        font-weight: bold;
    }

    #sort-package a:link,
    #sort-package a:visited {
        color: #aaa;
        padding: 5px 10px;
        text-decoration: none;
        transition: opacity linear .2s;
    }

    #sort-package a.active:link,
    #sort-package a.active:visited,
    #sort-package a:hover {
        color: #000;
    }

    #sort-package > div:hover a:not(:hover) {
        opacity: .5;
    }


.form-horizontal.wide {
    width: 100% !important;
    margin-bottom: 50px;
}

.form-header {
    border-bottom: 1px solid #ddd;
    padding: 0;
    margin: 0 0 20px 0;
}

    .form-header a {
        margin-left: 15px;
        padding: 7px 10px;
    }

.innerpanel-header {
    padding: 10px 15px;
    box-sizing: border-box;
    font-size: 9pt;
    background-color: #f5f5f5;
    position: relative;
}

    .innerpanel-header:not(.noexpand)::after {
        content: "";
        width: 20px;
        height: 20px;
        left: 100%;
        top: 50%;
        margin-left: -30px;
        margin-top: -10px;
        position: absolute;
        background: url('/Content/Icons/icon-expand.svg') no-repeat center center;
        background-size: 18px 18px;
        opacity: .5;
    }

    .innerpanel-header:hover::after {
        opacity: .75;
    }

    .innerpanel-header[aria-expanded=true]:not(.noexpand)::after {
        transform: rotate(180deg);
        opacity: 1;
    }

    .innerpanel-header:hover {
        cursor: pointer;
    }

#panel-companies, #panel-patches, .panel {
    border: 1px solid #ddd;
    margin-bottom: 1px;
}

    #panel-companies .show,
    #panel-patches .show,
    .show {
        display: block;
    }

    #panel-companies .hide,
    #panel-patches .hide,
    .hide {
        display: none;
    }

.panel-body {
    padding: 10px 20px;
    box-sizing: border-box;
}

#panel-patches dt {
    padding: 5px 10px;
}

#panel-patches dd {
    background-color: #fefefe;
    border: 1px solid #ddd;
    overflow: hidden;
    padding: 5px;
    margin: 0;
    box-shadow: 0 2px 2px 1px rgba(0,0,0,.05);
}

.form-group.pull-three-left {
    display: block;
    float: left;
    min-width: 33%;
    max-width: 33%;
    width: 33%;
    overflow: hidden;
    padding: 5px;
    box-sizing: border-box;
}

.form-group.pull-half-left {
    display: block;
    float: left;
    min-width: 50%;
    max-width: 50%;
    width: 50%;
    overflow: hidden;
    padding: 5px;
    box-sizing: border-box;
}

#panel-patches .listaPoprawek {
    margin: -10px;
    margin-top: 20px;
}

.form-group.pull-three-left select,
.form-group.pull-three-left input[type=text],
.form-group.pull-half-left select,
.form-group.pull-half-left input[type=text] {
    width: 100% !important;
}

.form-group.wide {
    width: 100%;
    padding: 5px;
    overflow: hidden;
    box-sizing: border-box;
}

    .form-group.wide > * {
        margin: 2px 0;
    }

    .form-group.wide .form-label {
        width: 100%;
    }

.form-group .form-label label {
    padding-left: 2px;
    font-size: 10pt;
}

.form-group.wide .form-input {
    width: 100%;
}


#AddPoprawkaCollapse {
    margin-bottom: 40px;
    overflow: hidden;
}

#panel-patches .patch {
    margin-bottom: 1px;
}

    #panel-patches .patch .innerpanel-header {
        background-color: #eee;
        overflow: hidden;
    }


.innerpanel-header .innerpanel-header-title {
    width: 100%;
    height: 100%;
    margin: -8px;
    padding: 7px;
}


.innerpanel-header .innerpanel-header-action {
    width: 270px;
    text-align: right;
    position: absolute;
    z-index: 1;
    left: 100%;
    top: 50%;
    margin-top: -7px;
    margin-left: -275px;
    padding: 0;
}

    .innerpanel-header .innerpanel-header-action a {
        font-size: 8pt;
    }


#panel-patches .patch table,
.table-docs {
    width: 100%;
    margin-top: 20px;
    margin-left: 5px;
    border-collapse: collapse;
}

.table-docs {
    margin-top: 40px;
}

    #panel-patches .patch table,
    #panel-patches .patch table select,
    #panel-patches .patch table input,
    #panel-patches .patch table button,
    #panel-patches .patch table a,
    .table-docs * {
        font-size: 8pt;
    }


        #panel-patches .patch table select,
        #panel-patches .patch table input,
        #panel-patches .patch table button,
        #panel-patches .patch table a,
        .table-docs * {
            padding-top: 7px;
            padding-bottom: 7px;
            margin-top: 4px;
            margin-bottom: 4px;
        }

        #panel-patches .patch table tr,
        .table-docs tr {
            width: 100%;
            border-bottom: 1px solid #ddd;
            padding: 0;
            margin: 0;
        }

            #panel-patches .patch table tr:last-of-type,
            .table-docs tr:last-of-type {
                border-bottom: none;
            }

            #panel-patches .patch table tr td {
                padding: 0;
                margin: 0;
            }

            .table-docs tr td {
                padding: 10px 5px;
                margin: 0 -5px;
            }

            #panel-patches .patch table tr:hover td,
            .table-docs tr:hover td {
                background-color: #fafafa;
            }

            #panel-patches .patch table tr td:first-of-type,
            .table-docs tr td:first-of-type {
                width: 60%;
            }

            #panel-patches .patch table tr td:last-of-type,
            .table-docs tr td:last-of-type {
                text-align: right;
            }

.text-danger {
    color: red !important;
}

.top-container {
    width: 100%;
    height: 30px;
    margin: 15px 0 0px 0;
    padding: 0px 0 0 0;
}

.content-container {
    width: 100%;
    height: auto;
    margin: 0 0 0 0;
    overflow: hidden;
}

@keyframes NewItemInTable {
    0% {
        background-color: #ddd;
    }

    100% {
        background-color: transparent;
    }
}

tr.highlight-newitem {
    background-color: #ddd;
    animation: NewItemInTable .5s 1s forwards;
}

section#contact {
    font-size: 9pt;
}

    section#contact h5 {
        font-size: 11pt;
    }

.table-address {
    border-collapse: collapse;
    width: 300px;
    height: auto;
    margin: 5px 0 10px 0;
    padding: 0;
}

    .table-address td:last-of-type {
        border-bottom: 1px solid #ddd;
    }

    .table-address td {
        width: 150px;
        padding: 2px;
    }

.icon-success {
    display: block;
    width: 22px;
    height: 22px;
    background: url('./Icons/icon-done.svg') no-repeat center center;
    background-size: 90%;
}

    .icon-success.white {
        background: url('./Icons/icon-done-white.svg') no-repeat center center;
    }

.icon-close {
    display: block;
    width: 22px;
    height: 22px;
    background: url('./Icons/icon-close.svg') no-repeat center center;
    background-size: 90%;
}

    .icon-close.white {
        background: url('./Icons/icon-close-white.svg') no-repeat center center;
    }

.panel-success {
    background-color: #5fba7d;
    color: #fff;
}

.panel-error {
    background-color: #C95555;
    color: #fff;
}

.package {
    min-width: 1000px;
    width: 100%;
    height: auto;
    border: 1px solid #aaa;
    background-color: #f4f4f4;
    display: block;
    float: left;
    font-size: 8pt;
    padding: 0;
    margin-top: 7px;
    /box-shadow: 0 5px 8px -3px rgba(0,0,0,.2);
    /box-shadow: 0 2px 4px 0 rgba(0,0,0,.2);
    transition: border-color linear .2s;
    box-sizing: border-box;
    overflow: hidden;
}

    .package:not(:first-of-type) {
        /*border-top: none;*/
    }

    .package:hover {
    }

    .package a {
        text-decoration: none;
        color: #555;
        padding: 0 1px;
    }

        .package a:hover {
            color: #000;
        }

    .package .package-titlebar {
        width: 100%;
        height: auto;
        box-sizing: border-box;
        padding: 10px 7px;
        overflow: hidden;
        border-bottom: 1px solid #ccc;
    }

        .package .package-titlebar > div {
            display: block;
            float: left;
        }

        .package .package-titlebar .package-title {
            font-size: 9pt;
            padding-left: 2px;
        }

        .package .package-titlebar .package-action {
            float: right;
        }

            .package .package-titlebar .package-action a {
                margin-left: 10px;
                color: black;
                display: inline-block;
            }

                .package .package-titlebar .package-action a[class^="icon-"] {
                    font-size: 0;
                }

                    .package .package-titlebar .package-action a[class^="icon-"]::before {
                        content: "";
                        display: inline-block;
                        width: 24px;
                        height: 24px;
                        background-repeat: no-repeat;
                        background-position: center center;
                        background-size: 100%;
                        margin: -10px 0px -22px -4px;
                        padding: 0;
                        top: -13px;
                        left: 2px;
                        opacity: .6;
                        position: relative;
                        transition: opacity linear .33s;
                    }

                .package .package-titlebar .package-action a.icon-downloadpackage::before {
                    background-image: url(/Content/Icons/icon-package-dl.svg);
                }

                .package .package-titlebar .package-action a.icon-editpackage::before {
                    background-image: url(/Content/Icons/icon-package-edit.svg);
                }

                .package .package-titlebar .package-action a:hover {
                    text-decoration: underline;
                }

                    .package .package-titlebar .package-action a:hover::before {
                        opacity: .8;
                    }

    .package .package-status,
    .package-status {
        display: block;
        max-width: 100px;
        padding: 2px 5px;
        margin: -4px 5px -4px 0;
        color: white;
        background-color: #000;
        text-align: center;
        border: 1px solid white;
    }

        .package .package-status.installed,
        .package-status.installed {
            background-color: #5fba7d;
        }

        .package .package-status.notinstalled,
        .package-status.notinstalled {
            background-color: #C95555;
        }

        .package .package-status.draft,
        .package-status.draft {
            background-color: #e5a957;
        }

        .package .package-status.none {
            display: none;
        }

        .package .package-status.published,
        .package-status.published {
            background-color: #4772cb;
        }

        .package .package-status:empty {
            display: none;
        }

    .package .package-patch {
        overflow: hidden;
        border-bottom: 1px solid #ddd;
        background-color: #fcfcfc;
        transition: background-color linear .2s;
    }

        .package .package-patch.installed {
            border-left: 1px solid green;
        }

        .package .package-patch.notinstalled {
            border-left: 1px solid red;
        }

        .package .package-patch:last-of-type {
            border-bottom: none;
        }

        .package .package-patch:last-of-type {
            margin-bottom: 0;
        }

        .package .package-patch:hover {
            /background-color: rgba(0,0,0,.05);
            /*background: linear-gradient(rgba(0,0,0,.1), transparent 95%);*/
        }

        .package .package-patch > div {
            width: 100%;
            height: auto;
            float: left;
            box-sizing: border-box;
            padding: 9px 10px;
        }

            .package .package-patch > div:not(:first-of-type) {
                padding-left: 15px;
            }

        .package .package-patch .patch-titlebar {
            background-color: #fafafa;
            box-sizing: border-box;
            padding-left: 15px;
            box-shadow: 0 0 2px 1px rgba(0,0,0,.1),  0 0 1px 1px rgba(0,0,0,.2);
        }

        .package .package-patch .patch-titlebar.disabled {
            box-shadow: 0 0 2px 1px rgba(0,0,0,.3),  0 0 1px 1px rgba(0,0,0,.3);
        }

        .package .package-patch:hover .patch-titlebar {
            background-color: #eee;
        }

        .package .package-patch .patch-titlebar > div {
            width: calc(100% - 500px);
            float: left;
            background-color: transparent;
        }

        .package .package-patch .patch-titlebar .patch-title {
            cursor: pointer;
            position: relative;
            padding: 8px;
            margin: -8px;
        }

            .package .package-patch .patch-titlebar .patch-title span {
                display: inline-block;
                float: left;
                margin: 0;
                padding: 0;
            }

                .package .package-patch .patch-titlebar .patch-title span.name {
                    margin-left: 20px;
                }

                .package .package-patch .patch-titlebar .patch-title span.status {
                    width: 20px;
                    height: 20px;
                    /*background-color: red;*/
                    position: absolute;
                    margin-top: -4px;
                    margin-left: -3px;
                }

        /*.package .package-patch .patch-titlebar .patch-title span.status.important {
                background: url(Content/Icons/icon-warning.svg) no-repeat center center;
                background-size: 16px 16px;
            }*/

        .package .package-patch .patch-titlebar .patch-action {
            width: 280px;
            margin-right: -1px;
            text-align: right;
            float: right;
        }

        .package .package-patch .patch-titlebar .patch-whowhat {
            width: 220px;
            text-align: right;
        }

        .package .package-patch .patch-titlebar .patch-action a.link-icon,
        .package .files-table-action a.link-icon {
            font-size: 0 !important;
            display: inline-block;
            width: 17px;
            height: 22px;
            /background-color: red;
            background-repeat: no-repeat;
            background-position: center center;
            background-size: 100%;
            margin: -10px 1px -22px 10px;
            padding: 0;
            top: -14px;
            opacity: .5;
            position: relative;
            transition: opacity linear .25s;
        }

            .package .package-patch .patch-titlebar .patch-action a.link-icon.active,
            .package .files-table-action a.link-icon.active {
                opacity: .65;
            }

            .package .package-patch .patch-titlebar .patch-action a.link-icon:hover,
            .package .files-table-action a.link-icon:hover {
                opacity: .8;
            }


        .package .package-patch .patch-titlebar .patch-action a:not(.link-icon) {
            color: red !important;
            padding: 0 5px;
        }

            .package .package-patch .patch-titlebar .patch-action a:not(.link-icon):hover,
            .package .package-patch .files-table-action a:hover {
                text-decoration: underline;
            }

.link-icon.icon-install {
    width: 22px;
    margin-right: -1px;
    background-image: url(/Content/Icons/icon-install.svg);
}

.link-icon.icon-download {
    background-image: url(/Content/Icons/icon-arrow-dl.svg);
}

.link-icon.icon-expander {
    width: 22px;
    background-image: url(/Content/Icons/icon-expand.svg);
}

.link-icon.icon-clock {
    background-image: url(/Content/Icons/icon-clock.svg);
}

.link-icon.icon-download-docs {
    width: 22px;
    background-image: url(/Content/Icons/icon-docsdl.svg);
}


.package .package-patch .patch-content {
    display: none;
    padding-bottom: 10px;
}

.package .package-patch .patch-info span {
}

    .package .package-patch .patch-info span.description {
        padding-left: 10px;
        margin: 10px 0;
        box-sizing: border-box;
        text-align: justify;
        display: block;
    }

.package .expand-table {
    width: 100%;
    font-size: 8pt;
    border-collapse: collapse;
    box-sizing: border-box;
}

    .package .expand-table tr {
        width: 100%;
        border-bottom: 1px solid #ddd;
    }

        .package .expand-table tr:last-of-type {
            border: none;
        }

        .package .expand-table tr td {
            padding: 6px 0;
        }

    .package .expand-table .files-table-name {
        width: 50%;
        box-sizing: border-box;
        padding-left: 10px;
    }

    .package .expand-table .files-table-type {
        width: 20%;
    }

    .package .expand-table .files-table-what {
        width: 20%;
    }

    .package .expand-table .files-table-action {
        width: 30%;
        text-align: right;
    }

        .package .expand-table .files-table-action a {
            color: red;
            margin-left: 5px;
        }

.package .expand-title {
    display: block;
    padding: 7px 15px;
    box-sizing: border-box;
    background-color: #eee;
    margin: 2px 0;
    overflow: hidden;
}

    .package .expand-title a {
        color: #000;
        width: 100%;
        display: block;
        margin: -10px;
        padding: 5px;
    }

    .package .expand-title:empty {
        display: none;
    }

.package-docs table tr {
    background-color: #fafafa;
}

    .package-docs table tr td {
        box-sizing: border-box;
        padding: 8px !important;
    }


#search-box {
    width: 1180px;
    height: 37px;
    position: relative;
    background-color: #f1f1f1;
    padding: 10px;
    top: 10px;
    left: 50%;
    margin-left: -600px;
    overflow: hidden;
    display: none;
    transition: linear background-color .1s;
}

    #search-box:hover {
        background-color: #eee;
    }

#search-box form { 
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
}

#search-box form > * {
    display: block;
    float: left;
}

#search-box input[type=text] {
    width: 1020px !important; 
    padding: 10px 185px 10px 35px;
    background-color: #f5f5f5;
    font-size: 10pt;
    margin: 0;
    box-sizing: border-box;
}

#search-box:hover::after {
    opacity: .66;
}

#search-box::after {
    content: "";
    display: block;
    
    background-image: url(/Content/Icons/icon-find.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 20px 20px;
    width: 30px;
    height: 100%;

    opacity: .33;
    position: absolute;
    top: -1px;
    left: 14px;
    z-index: 99;
    pointer-events: none;
}

#search-box input[type=text]:focus {
    outline: none;
    border-color: #bbb;
}

#search-box select {
    margin: 0;
    border: none;
    background-color: #f5f5f5;
    width: 180px;
    padding: 10px 35px 10px 15px;
    margin-left: -181px;
    margin-top: 1px;
    position: relative;
    z-index: 1;
    opacity: .5;
    font-size: 10pt;
}

#search-box select::-ms-expand {
    display: none;
}

#search-box select:focus {
    outline: none;
    opacity: 1;
}

#search-box a.icon-svg.icon-close {
    display: block;    
    position: relative;
    z-index: 2;
    width: 20px;
    height: 20px;
    background: url(/Content/Icons/icon-close.svg) no-repeat 50% 50%;
    background-size: 18px 18px;
    border-radius: 2px;
    opacity: .5;
    top: 50%;
    margin-top: -10px;
}

#search-box a.icon-svg.icon-close:hover {
    opacity: .75;
    background-color: rgba(0,0,0,.1);
}

#search-box input[type=submit] {
    width: 120px;
    padding: 11px 15px;
    background-color: transparent;
    border: none;
    margin: 0;
    font-size: 10pt;
}

#search-box input[type=submit]:hover {
    cursor: pointer;
}

#search-box input[type=submit]:focus {
    outline: none;
}

