ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.color-red, span.error {
    color: #f00;
}
table.table tr.bg-highlight>td {
    background-color: #fff0b0b5 !important;
    box-shadow: none;
}

/* START HEADER */
#header {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 50px;
    background-color: #fff;
    border-bottom: 3px solid;
    border-image-slice: 3;
    border-image-source: linear-gradient(
            to bottom right,
            #b827fc 0%,
            #2c90fc 25%,
            #b8fd33 50%,
            #fec837 75%,
            #fd1892 100%
    );
    margin-bottom: 10px;
}
#header ul {
    height: 100%;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
}
#header ul > li.header-item {
    height: 100%;
    line-height: 50px;
    text-align: center;
    font-weight: normal;
    white-space: nowrap;
    border-bottom: 2px solid #fff;
    border-left: 1px solid #FFA500;
    border-right: 1px solid #FFA500;
}
#header ul > li.header-item:hover {
    border-bottom: 2px solid #FFA500;
    background: #fafafa;
    cursor: pointer;
}
#header ul > li.header-item > a {
    color: #000;
    text-decoration: none;
    display: inline-block;
    height: 100%;
    padding-left: 8px;
    padding-right: 8px;
    font-size: 90%;
}
#header ul > li.header-item.active {
    background-color: #fff0b0b5 !important;
}
/* END HEADER */

/* START PAGINATION */
div.pagination-container .pagination > li:first-child > a {
    margin-left: 0;
    border-top-left-radius: 4px;
    border-bottom-left-radius: 4px;
}
div.pagination-container .pagination > li > a {
    position: relative;
    float: left;
    padding: 5px 10px;
    margin-left: -1px;
    line-height: 1.42857143;
    color: #337ab7;
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #ddd;
    min-width: 35px;
    text-align: center;
}
div.pagination-container .pagination li > a.active {
    background-color: #337ab7;
    color: #fff;
}
/* END PAGINATION */

.large-container {
    max-width: 98%;
}
@media all and (min-width: 768px) {
    .large-container {
        max-width: 90%;
    }
}
