html,
body {
    height: 100%;
}

body {
    background-color: #f5f5f5 !important;
    font-size: 14px;
}

.container {
    max-width: 768px !important;
}

.site-header {
    background-color: rgba(0, 0, 0, .85);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    height: 58px;
}

.site-header .container {
    height: 50px;
}

.site-header a {
    color: #999;
    transition: ease-in-out color .15s;
}

.site-header .logo {
    width: 24.5px;
}

.site-header a:hover {
    color: #fff;
    text-decoration: none;
}

.custom-radio .custom-control-label::before {
    background-color: #c4c4c4;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::before,
.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
    background-color: #262626;
    border-radius: 50%;
}

.custom-radio .custom-control-input:active ~ .custom-control-label::before {
    color: #262626;
    background-color: #c4c4c4; /* red */
}

.custom-radio .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #c4c4c4;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::before {
    background-color: #262626;
}

.custom-control-input:active ~ .custom-control-label::before {
    background-color: #c4c4c4;
}

.custom-checkbox .custom-control-input:focus ~ .custom-control-label::before {
    box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem #c4c4c4;
}

.form-control, .custom-select {
    border-radius: 0;
    -webkit-appearance: none;
    font-size: 14px;
    height: auto;
}

.form-control:focus, .custom-select:focus {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: solid 1px #343a40;
}

.input-group-text {
    border-radius: 0 !important;
}

.bootstrap-datetimepicker-widget table td,
.bootstrap-datetimepicker-widget table td span {
    border-radius: 0 !important;

}

.bootstrap-datetimepicker-widget table td.today:before {

    border-bottom-color: #23272b !important;
}

.bootstrap-datetimepicker-widget table td.active, .bootstrap-datetimepicker-widget table td.active:hover {
    background-color: #23272b !important;
}

.bootstrap-datetimepicker-widget table td span.active {
    background-color: #23272b !important;
}

div.table-header, div.table-row {

    display: flex;
    -webkit-box-pack: justify !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

div.table-header {
    border-bottom: solid 1px #dfdfdf;
    font-weight: bold;
}

div.table-row {
    border-bottom: solid 1px #dfdfdf;
}

div.table-row:last-of-type {
    border: none;
}

div.table-row > div, div.table-header > div {
    padding: 5px;
    width: -moz-available;
    width: -webkit-fill-available;
    width: fill-available;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
}

.btn {
    font-size: 14px;
}

.paginate-container {
    margin-top: 1.5rem;
}

.paginate {
    display: -webkit-inline-flex !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    margin: 0 auto;
}

.paginate span {
    display: inline-block;
    margin: 0 10px;
    font-size: 15px;
    font-weight: bold;
}

.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 15px;
    border-radius: 5px;
    background: #d3d3d3;
    outline: none;
    opacity: 0.7;
    -webkit-transition: .2s;
    transition: opacity .2s;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #343a40;
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #343a40;
    cursor: pointer;
}

.slider:hover {
    opacity: 1;
}

.range-value {
    font-size: 20px;
    font-weight: bold;
    text-align: center;
}