.no-search:after {
    display: none;
}

.ml-5 {
    margin-left: 5px !important;
}

.ml-15 {
    margin-left: 15px !important;
}

.ml-30 {
    margin-left: 30px !important;
}

.mt-5 {
    margin-top: 5px !important;
}

.mt-10 {
    margin-top: 10px !important;
}

.mt-20 {
    margin-top: 20px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.overlay {
    z-index: 999999;
    position: absolute;
    right: 0;
    top: 0;
    left: 0;
    padding: 0 20px;
}

#preloader {
    height: 100%;
    display: none;
}

#preloader div {
    position: fixed;
    left: 50%;
    top: 50%;
    margin-left: -32px;
    margin-top: -32px;
}

/*** modal ***/ 
.inv-modal {
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    position: fixed;

}
.inv-modal .inv-modal-content {
    width: 100%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background-color: #fff;
    border: solid 1px #E6E6E6;
    padding: 32px;
    text-align: left;
    max-width: 700px;
}

.inv-modal .inv-modal-content h1 {
    padding: 16px;
    font-weight: 600;
    font-size: 24px;
    line-height: 22px;
    color: rgb(var(--primary));
    font-family: var(--font-family-gentium);
}
.inv-modal .inv-modal-content p {
    padding: 0 16px 8px 16px;
    font-weight: 400;
    font-size: 14px;
    text-indent: 0;
    opacity: 0.8;
}
.inv-modal .inv-modal-content .inv-modal-footer {
    padding: 16px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.inv-modal-close {
    font-size: 24px;
    position: absolute;
    top: 0px;
    right: 16px;
    cursor: pointer;
}

.inv-btn {
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    text-align: center;
    padding: 11px 24px;
    background: #224B90;
    color: #fff;
    margin-right: 24px;
    margin-top: 24px;
}

.inv-btn:hover {
    text-decoration: none;
    color: white;
}

.inv-btn:last-child {
    margin-right: 0;
}

.inv-btn.medium {
    font-weight: 500;
    font-size: 14px;
    padding: 8px 24px;
    margin-top: 0px;
    line-height: 22px;
    display: block;
}

.inv-btn.white {
    font-weight: 500;
    border: solid 1px #224B90;
    background: #fff;
    color: #0062AD;
}

.inv-btn.white:hover {
    background: #224B90;
    color: white;
}

.bold {font-weight: bold;}
.label-disabled {
    background-color: #e9ecef;
    opacity: 0.5;
}
.nav-tabs.nav-justified > li > a {
    font-size: 15px;
}
.nav-tabs.nav-justified > li:not(.active) > a {
    background: #f4f5f7;
}
.nav-tabs.nav-justified > li:not(.active) > a:hover {
    background: #e9ecef;
}
.nav-tabs.nav-justified > li.active > a,
.nav-tabs.nav-justified > li.active > a:hover,
.nav-tabs.nav-justified > li.active > a:focus {
    border-bottom-color: #ddd;
}

.navbar-form {
    padding: 10px 15px;
    border: none;
    margin: 0;
}

.well {
    background-color: #fcfcfc;
    background-image: none;
}

.details .row h2 {
    margin: 8px;
    font-weight: bold;
}

.table-borderless > tbody > tr > td {
    border: none;
}

table.dataTable th.sorting_disabled {
    background: none;
}
table.dataTable span.ui-icon {
    float: right;
}
table.dataTable a.thumbnail {
    margin-bottom: 0px;
}

@media (max-width: 767px) {
    .table-responsive {
        border: none !important;
    }
}

.pagination {
    margin: 0px;
    padding-top: 10px;
}

div.dataTables_length {
    margin-bottom: 0px;
}

div.dataTables_multiple select,
div.dataTables_length select {
    height: 34px;
    font-size: 14px;
    padding: 6px 12px;
}

/*** mobile ***/

@media only screen and (max-width: 768px) {
    .inv-modal div.inv-modal-content {
        padding: 24px 0;
    }

    .inv-modal .inv-modal-content h1,
    .inv-modal .inv-modal-content p,
    .inv-modal .inv-modal-content .inv-modal-footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .mobile-mr-16-8 {
        margin-right: 16px;
    }
}

@media only screen and (max-width: 400px) {
    .inv-modal .inv-modal-content .inv-modal-footer {
        flex-direction: column;
    }

    .inv-btn {
        margin-right: 0px;
    }
}

@media only screen and (max-width: 240px) {
    .inv-btn.btn-16i i {
        display: none;
    }

    .mobile-mr-16-8 {
        margin: 0 8px;
    }
}



