@font-face {
    font-family: 'Poppins';
    src: url("../fonts/Poppins-Regular.ttf");
}
body {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    background: #fafafa;
}
a, button {
    outline: 0 !important;
}
a {
    color: #5d87ff;
    text-decoration: none !important;
}
#loader {
    background: rgba(0, 0, 0, .1);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 9999;
}
#loader {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 50px;
}

.form-control {
    font-size: inherit;
}
.form-control:focus, .input-group > s.form-control:focus {
    box-shadow: none;
}
.form-group {
    margin-bottom: 15px;
}
.form-group > label:not(.text-muted) {
    margin-bottom: 5px;
    font-weight: 700;
}
label.mendatory::after {
    content: ' *';
    color: #ff0000;
}
.form-group label.error{
    font-weight: normal;
    color: #ff0000;
    font-size: 12px;
}

.btn {
    text-transform:  inherit;
}
input, button, .btn {
    font-size: 13px;
}

header {
    background: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    z-index:1;
}
header  + section {
    padding-top: 80px;
}

header nav a {
    color: #222222 !important;
}
header nav > ul {
    display: flex;
}
header nav > ul > li {
    padding: 10px;
}
header nav li.has-sub {
    cursor: pointer;
    position: relative;
}
header nav li.has-sub::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 700;
}
header nav > ul > li ul {
    display: none;
    position: absolute;
    background: #ffffff;
    box-shadow: 0 2px 15px -3px rgba(0,0,0, 0.07), 0 10px 20px -2px rgba(0,0,0, 0.04);
    border-radius: .5rem;
    left: 0;
    top: 100%;
    width: max-content;
    overflow: hidden;
    font-size: 12px;
}
header nav li.has-sub:hover ul {
    display: block;
}
header nav li.has-sub ul li a {
    display: block;
    padding: .5rem 1rem;
}
header nav li.has-sub ul li a:hover{
    background: #eeeeee;
}

.page-breadcumb {
    border-bottom: 1px solid #eeeeee;
    padding-bottom: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.page-breadcumb h4 {
    margin: 0;
    font-size: 20px;
}

.table {
    font-size: inherit;
}
.table-reorder tbody tr:first-child button.remmove-column {
    display: none;
}
.table thead tr th {
    background: rgba(251,251,251,1);
    font-weight: 700;
}

.dropdown-menu {
    font-size: inherit;
    overflow: hidden;
}
.dropdown-menu>li:last-child .dropdown-item {
    border-radius: 0;
}

.report-loader {
    width: 100%;
    height: 20px;
    background: linear-gradient(90deg,#0001 33%,#0005 50%,#0001 66%)#f2f2f2;
    background-size: 300% 100%;
    animation: l1 1s infinite linear;
}

.search-filter {
    margin-bottom: 20px;
}

footer {
    margin: 25px 0;
    color: #999999;
    text-align: center;
}

@media (max-width: 991px) {

}

@media (max-width: 768px) {
    header nav > ul {
        display: none;
    }
}

.checkbox-group {
    display:flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-left: 20px;
    margin-bottom: 10px;
    padding: 5px;
}

.checkbox-items {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
}

.form-check-label {
    font-weight: normal;
}

.params .param:first-child button {
    display: none;
}