@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-Regular.ttf");
    font-weight: 400;
    font-style: regular;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-Medium.ttf");
    font-weight: 500;
    font-style: medium;
}

@font-face {
    font-family: "Inter";
    src: url("/fonts/Inter-SemiBold.ttf");
    font-weight: 600;
    font-style: "bold";
}

@font-face {
    font-family: "AdorNoirrit";
    src: url("/fonts/Li-Ador-Noirrit-Unicode.ttf");
    font-weight: 600;
    font-style: "bold";
}

* {
    font-family: "Inter", "AdorNoirrit", sans-serif;
}

/*
*   Helper
*/
.full-height {
    height: calc(100vh - 59px);
}

.mw-80 {
    max-width: 80%;
}
.mw-35 {
    max-width: 35%;
}

.mw-50 {
    max-width: 50%;
}

.vh-90 {
    height: 90vh;
}

.custom-size-12 {
    font-size: 12px;
}

.margin-top-55 {
    margin-top: 55px;
}

.is-valid {
    border-color: #ced4da !important;
    background-image: url("/images/tick.png") !important;
    background-size: auto !important;
}

.is-invalid input {
    border-color: #dc3545;
}

.font-size-18 {
    font-size: 18px !important;
}

.font-size-19 {
    font-size: 19px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-15 {
    font-size: 15px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-10 {
    font-size: 10px !important;
}

.font-size-25 {
    font-size: 25px;
}

.font-size-20 {
    font-size: 20px;
}

.font-weight-600 {
    font-weight: 600 !important
}

.font-weight-500 {
    font-weight: 500 !important
}

.line-height-30 {
    line-height: 30px;
}

.line-height-24 {
    line-height: 24px;
}

.line-height-21 {
    line-height: 21px;
}

.heading-container {
    background-color: #FFF;
    box-shadow: 0px 2px 6px #b1b5be;
    padding: 25px 23px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 55px;
    z-index: 3;
}

.list-style-none {
    list-style: none;
}

.form-group label {
    font-size: 14px;
}

.cursor-pointer {
    cursor: pointer;
}

@media (min-width: 1200px) {
    .container {
        max-width: 1215px !important;
    }
}

/*
* Background Colors
*/
.bg-police {
    background-color: #2e2852 !important;
}

.bg-global-error {
    background-color: #E5E5E5 !important;
}

.bg-primary {
    background-color: #2DCFC2 !important;
}

.bg-light-aqua {
    background-color: #C9F7F5 !important;
}

.bg-light-orange {
    background-color: #FEE7BC !important;
}

.bg-light-red {
    background-color: #FFD8D3 !important;
}

.bg-light-grey {
    background-color: #F8F8F8 !important;
}

.bg-dark-grey {
    background-color: #606060 !important;
}

/*
* Font Color
*/
.primary-color {
    color: #2dcfc2 !important;
}

.font-dark-aqua {
    color: #1BC5BD !important;
}

.font-dark-orange {
    color: #E59E18 !important;
}

.font-dark-red {
    color: #FF1717 !important;
}

/*
* Border colors
*/
.border-pagination {
    border: solid 1px #A0A0A0 !important;
}

.border-primary {
    border: solid 1px #2DCFC2 !important;
}

.border-dashed {
    border-style: dashed !important;
}

.border-grey {
    border: solid 1px #C4C4C4;
}

/*
* Elements
*/
button:disabled {
    background-color: #CED4DA !important;
}

.btn.bg-primary:not([disabled]):hover, .btn.bg-primary:not([disabled]):active, .btn.bg-primary:not([disabled]):focus {
    background-color: #25AEA3 !important;
}

/*
* Vue specific
*/
[v-cloak] > * {
    display: none;
}

@keyframes spinner {
    to {
        transform: rotate(360deg);
    }
}

[v-cloak]::before {
    content: "";
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    margin-top: -2rem;
    margin-left: -2rem;
    border: .25rem solid #2dcfc2;
    border-top-color: #ffffff00;
    animation: spinner 0.6s linear infinite;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
}

.mx-input {
    height: 38px !important;
}

/*
*   Login
*/
.absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.custom-login-input {
    background-color: transparent;
    border: solid 2px #d3d8d8;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #d3d8d8 !important;
    opacity: 1; /* Firefox */
}

.grey-circle {
    width: 14px;
    height: 14px;
    background: #DADADA;
    display: inline-block;
    border-radius: 50%;
}

.dashed-border {
    border: dashed 1px #CED4DA;
}

.eye {
    position: absolute;
    right: -20px;
    top: 10px;
}

.input-label {
    font-size: 14px;
    line-height: 19px;
    color: #152536;
}

.forgot-remember-text {
    font-size: 12px;
    line-height: 12px;
    color: #ABB5BE;
}

/*
* Top Searchbar
*/
.link-company-name {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.multi-select-fields {
    color: black;
}
/*for multi select tick icon position*/
.bootstrap-select.show-tick .dropdown-menu li a span.text {
    margin-left: 15px;
}

.bootstrap-select.show-tick .dropdown-menu .selected span.check-mark {
    left: 10px;
}

.white-space-pre-wrap {
    white-space: pre-wrap;
}

.table-col-text-adjust {
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
    cursor: pointer;
}

.user-avatar {
    border-radius: 4px;
    max-height: 28px;
    max-width: 28px;
}

/*
* Main Navigation
*/
.nav-item.active > a {
    color: #fff200 !important;
}

/*
* suspect Navigation Circle
*/
.suspect-nav-circle {
    background-color: #FFF;
    width: 35px;
    height: 35px;
    display: flex;
    border-radius: 50%;
    position: absolute;
    left: 0px;
    border: solid 1px #2DCFC2 !important;
    align-items: center;
    justify-content: center;
    color: #2DCFC2;
}

.parent-menu .suspect-nav-circle .fa {
    display: none;
}

.parent-menu-valid .suspect-nav-circle {
    background-color: #2dcfc2;
}

.parent-menu-valid .suspect-nav-circle span {
    display: none !important;
}

.parent-menu-valid .suspect-nav-circle .fa {
    display: block !important;
}

.sub-item-list {
    border-left: solid 2px #D9D9D9;
    margin-left: -30px !important;
    padding-left: 30px !important;
}

.suspect-nav-small-dot {
    background-color: #2DCFC2;
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    position: absolute;
    left: 14px;
}

.is-invalid {
    border-color: #dc3545 !important;
}

li.invalid .suspect-nav-small-dot {
    background-color: #dc3545 !important;
}

li.invalid a {
    color: #dc3545 !important;
}

.info-block-container {
    background: #FFFFFF;
    box-shadow: 0px 1px 6px #B8B9BC;
}

.repetable-address-container {
    border: dashed 1px #CED4DA;
    padding: 10px 0px;
    box-sizing: border-box;
}

.image-container {
    border: dashed 1px #E6E9EC;
    height: 160px;
}

.front-mug-shot {
    background: url(/images/user.png) no-repeat center center;
}

.left-mug-shot {
    background: url(/images/left_mug_shot.png) no-repeat center center;
}

.right-mug-shot {
    background: url(/images/right_mug_shot.png) no-repeat center center;
}

#sideFormNav a.active {
    font-weight: bold;
    font-size: 15px;
}

#sideFormNav .list-group-item {
    padding: 0px;
    background: none !important;
    border: none;
}

.suspect-tag {
    height: 20px;
    border-radius: 100%;
}

/*
* Auto Suggest
*/
#autosuggest:focus {
    box-shadow: 0 0 0 0.2rem rgb(0 123 255 / 25%)
}

#autosuggest input, #autosuggest input:focus {
    width: 100%;
    border: none;
    outline: none;
}

#autosuggest ul {
    list-style: none;
    z-index: 1;
    position: relative;
    background: #FFF;
    padding-left: 0px;
    margin-top: 5px;
    box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
    border-radius: 4px;
}

#autosuggest ul li {
    padding: 5px 20px;
}

#autosuggest .autosuggest__results-item--highlighted {
    background-color: #2DCFC2;
    color: #FFF;
}

/*
* Suspect Search Modal
*/
.suspect-search-modal-photo {
    max-height: 30px;
    max-width: 30px;
    border-radius: 100%;
}

.wanted-suspect-selection-photo {
    width: 35px;
    height: 35px;
}

/*
* Navigation
*/
.page-link {
    color: #2DCFC2;
}

.page-item.active .page-link {
    background-color: #2DCFC2;
    border-color: #2DCFC2;
}

.page-link:hover {
    color: #17897f;
}

.captured-row-highlight {
    background-color: #FFEDED;
}

input[type='radio']:after {
    width: 16px;
    height: 16px;
    border-radius: 16px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #FFFFFF;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 1px solid #d2d0d0;
}

input[type='radio']:checked:after {
    width: 16px;
    height: 16px;
    border-radius: 16px;
    top: -2px;
    left: -1px;
    position: relative;
    background-color: #ffffff;
    content: '';
    display: inline-block;
    visibility: visible;
    border: 5px solid #2DCFC2;
}

/*for popover*/
.text-label {
    color: #9fa5ac;
}

.popover {
    max-width: 340px !important;
    background-color: #2d2d2d;
}

.arrow::after, .bs-popover-right .arrow::after {
    border-right-color: #2d2d2d !important;
}

.arrow::after, .bs-popover-left .arrow::after {
    border-left-color: #2d2d2d !important;
}

.loader {
    border: 3px solid #f4f6f9; /* Light grey */
    border-top: 3px solid #2DCFC2; /* Accent */
    border-right: 3px solid #2DCFC2; /* Accent */
    border-bottom: 3px solid #2DCFC2; /* Accent */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    animation: spin 2s linear infinite;
}

.disabled-option {
    background-color: #eceff2;
    color: #949aa3;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media print {

    #suspectListCont {
        display: flex;
        column-width: 17em;
        column-gap: 3em;
        row-gap: 2.6em;
        overflow-y: hidden;
    }

}