.table-detail thead tr th {
    /* display: none !important; */
    padding: 5px !important;
}

table .table-detail {
    border-radius: 0px !important;
    /* padding: 5px !important; */
}

.table.table-head-bg thead th:first-child {
    border-top-left-radius: 0 !important;
    border-bottom-left-radius: 0 !important;

}

.table.table-head-bg thead th:last-child {
    border-top-right-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

.table-detail tr td {
    padding: 3px !important;
}

td.details-control {
    background-size: 11px 11px !important;
    background: url('../icon_dt/close.png') no-repeat center center;
   
    cursor: pointer;
}
tr.shown td.details-control {
    background-size: 11px 11px !important;
    background: url('../icon_dt/open.png') no-repeat center center;
}
td.details-control1 {
    background-size: 11px 11px !important;
    background: url('../icon_dt/close.png') no-repeat center center;
    cursor: pointer;
}
tr.shown td.details-control1 {
    background-size: 11px 11px !important;
    background: url('../icon_dt/open.png') no-repeat center center;
}
td.details-view {
    cursor: pointer;
}
.table tbody tr td {
    padding: 8px !important;
}
.hide-table {
    display: none;
}

.buttons-html5,
.buttons-print,
.btn-costume {
    background-color: #0f5a8c !important;
    border-color: #0f5a8c !important;
    color: white !important;
    margin-right: 10px;
    margin-bottom: 10px;
}

/* Style the arrow inside the select element: */
.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

/* Point the arrow upwards when the select box is open (active): */
.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

/* style the items (options), including the selected item: */
.select-items div,
.select-selected {
    color: #ffffff;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: DodgerBlue;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}