html {
    position: relative;
    min-height: 100%;
    font-size: 14px;
}
@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
    box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

body {
    font-family: 'Lato'!important;
    margin-bottom: 60px;
    /*background-color: #f3f3f3;*/
    background-color: #fff;
}

h1, h2, h3, h4, h5 {
    font-family: 'Roboto'!important;
}

h1, h2, h3 {
    color: #28285f;
}

h4, h5 {
    color: #00b1b8;
}





/* Set height of the grid so .sidenav can be 100% (adjust as needed) */
.row.content {
    max-height: 450px;
}

/* Set gray background color and 100% height */
.sidenav {
    padding-top: 20px;
    background-color: #f1f1f1;
    height: 100%;
}

/* Set black background color, white text and some padding */
footer {
    background-color: #555;
    color: white;
    padding: 15px;
}
.footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: #555;
    color: white;
}

/* On small screens, set height to 'auto' for sidenav and grid */
@media screen and (max-width: 767px) {
    .sidenav {
        height: auto;
        padding: 15px;
    }

    .row.content {
        height: auto;
    }
}



/* Remove the navbar's default margin-bottom and rounded borders */
.navbar {
    border-radius: 0px !important;
    margin-bottom: 0;
}

    .navbar a {
        color: #ffffff !important;
        text-decoration: none;
    }

    .navbar .nav > li > a {
        color: #ffffff !important;
    }

        .navbar .nav > li > a:hover, .nav > li > a:focus {
            text-decoration: none;
            color: #28285f;
            background-color: #00b1b9;
        }

.navbar-inverse {
    background-color: #28285f;
    border: none;
}

.navbar-brand {
    color: #ffffff !important;
    font-family: 'Roboto';
    background-color: #00b1b9;
}

.navbar-inverse .navbar-brand:hover, .navbar-inverse .navbar-brand:focus {
    background-color: #00b1b9;
}

.navbar-inverse .navbar-nav > .open > a, .navbar-inverse .navbar-nav > .open > a:hover, .navbar-inverse .navbar-nav > .open > a:focus {
    color: #fff;
    background-color: #00b1b9;
}

.navbar-inverse .dropdown-menu {
    background-color: #28285f;
    border: none;
    border-radius: 0px;
}

    .navbar-inverse .dropdown-menu > li > a:hover, .dropdown-menu > li > a:focus {
        color: #fff !important;
        text-decoration: none;
        background-color: #00b1b9 !important;
    }


.max-white {
    background-color: #fff;
}

.box-style {
    /*border: 1px solid #e6eaed;*/
    padding-bottom: 10px;
}

.panel-group .panel {
    border-radius: 0px;
}

.panel {
    border-radius: 0px;
}

.panel-default > .panel-heading {
    color: #28285f;
    background-color: #f4f4f4;
    border-color: #ddd;
    text-transform: capitalize !important;
    text-decoration: none !important;
}

.panel-title {
    padding-bottom: 7px;
    padding-top: 7px;
}

    .panel-title a {
        text-transform: uppercase;
        text-decoration: none;
    }

    .panel-title > a:hover, .panel-title > a:focus {
        color: #00b1b9;
    }

.icon-flipped {
    transform: scaleX(-1);
    -moz-transform: scaleX(-1);
    -webkit-transform: scaleX(-1);
    -ms-transform: scaleX(-1);
}



/* BOOTSTRAP 3 table MOD */
@media (max-width: 767px) {
    .table-wrap table,
    .table-wrap thead,
    .table-wrap tbody,
    .table-wrap th,
    .table-wrap td,
    .table-wrap tr {
        display: block;
    }

        .table-wrap thead tr {
            position: absolute;
            top: -9999px;
            left: -9999px;
        }

    .table-wrap td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50% !important;
        white-space: normal;
        text-align: left;
    }

        .table-wrap td:before {
            position: absolute;
            top: 8px;
            left: 15px;
            width: 45%;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            text-align: left;
            font-weight: bold;
        }

        .table-wrap td:first-child {
            padding-top: 17px;
        }

        .table-wrap td:last-child {
            padding-bottom: 16px;
        }

        .table-wrap td:first-child:before {
            top: 17px;
        }

        .table-wrap td:before {
            content: attr(data-title);
        }

    .table tbody tr {
        border-top: 1px solid #ddd;
    }

        .table tbody tr td {
            border: none;
        }
}

/*Lista rozwijana*/
select:disabled {
    background-color: #f0f0f0;
    color: #a0a0a0;
}

.disabled-form input,
.disabled-form select,
.disabled-form textarea {
    pointer-events: none;
    background-color: #f0f0f0;
    opacity: 0.7;
}