/* Navbar */
.navbar-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 2rem;
    background: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar-top .logo img {
    height: 70px;
    object-fit: contain;
}

.navbar-top .logo a {
    border-color: transparent !important;
}

.navbar-top .menu {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    justify-content: flex-end;
}

.navbar-top .menu-item a {
    text-decoration: none;
    border-color: transparent !important;
    color: #000000;
    font-weight: 500;
    padding: 6px 10px;
    transition: 0.2s;
}

.navbar-top .menu-item a:hover {
    color: #004978;
}

.navbar-top .search-bar {
    position: relative;
    margin-left: auto;
    width: 70%;
    max-width: 415px;
}

.navbar-top .search-box-header {
    display: flex;
    align-items: center;
    border: 1px solid #979797;
    color: #979797;
    border-radius: 25px;
    padding: 5px 10px;
    overflow: hidden;
}

.navbar-top .search-box-header input {
    border: none;
    outline: none;
    padding: 6px 10px;
    background: transparent;
    color: #000000;
    flex: 1;
    max-width: 365px;
    min-width: 120px;
    width: 100%;
}

.navbar-top .search-box-header input::placeholder {
    color: #979797;
}

.navbar-top .search-box-header button {
    border: none;
    background: transparent;
    color: #979797;
    cursor: pointer;
}

.navbar-top .searchList {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background: white;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    z-index: 999;
    overflow: hidden;
}

@media (max-width: 480px) {
    .navbar-top .search-bar {
        display: none;
    }
}

.hide-search .search-box-header {
    display: none;
}

/* Content */
.content {
    flex: 1;
    padding: 40px;
    max-width: 1000px;
    margin: auto;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    text-align: center;
    padding: 15px;
}

@font-face {
    font-family: 'Sunway Sans';
    src: url('../fonts/SunwaySans_beta-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Sunway Sans';
    src: url('../fonts/SunwaySans_beta-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Raleway';
    src: url('../fonts/Raleway-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter_18pt-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Inter';
    src: url('../../fonts/Inter_18pt-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
}

body {
    background-color: #f8f8f8;
    font-family: "Sunway Sans", Roboto, Raleway, Inter, sans-serif;
    font-size: 14px;
    margin: 0;
}

.bold {
    font-weight: bold;
}

.main-blue {
    color: #004978;
}

.light-blue {
    color: #00bcf2;
}

.text-grey {
    color: #737373;
}

.text-black {
    color: black;
}

.text-white {
    color: white;
}

.main-blue-bg {
    background-color: #004978;
}

.sub-blue-bg {
    background-color: #43719d;
}

.light-blue-bg {
    background-color: #ddeafd;
}

.text-cap {
    text-transform: capitalize;
}

.btncbm:hover {
    background-color: #003960;
}

.innerpad {
    padding: 3rem 10rem;
}

@media (max-width: 992px) {
    .innerpad {
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    .innerpad {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .innerpad {
        padding: 1rem;
    }
}

#wrapper {
    width: 100%;
    flex-direction: column;
    height: auto;
    min-height: 100vh;
}

#page-wrapper {
    padding: 0 15px;
    min-height: 568px;
    height: calc(100vh - 119px);
    background-color: white;
}

.page-header {
    padding-bottom: 9px;
    margin: 40px 0 20px;
    border-bottom: 1px solid #eeeeee;
    font-size: 36px;
}

td.active {
    background-color: #dff0d8 !important;
}

tr.monitor_inactive {
    background-color: #D8BFD8 !important;
}

td.inactive {
    background-color: #f2dede !important;
}

td.low {
    background-color: #9FE2BF !important;
}

td.medium {
    background-color: #F7DC6F !important;
}

td.high {
    background-color: #EC7063 !important;
}

@media (min-width: 768px) {
    #page-wrapper {
        position: inherit;
        /* margin: 0 0 0 200px; */
        padding: 30px 30px 30px 30px;
        /* border-left: 1px solid #e7e7e7; */
    }
}

.navbar-top-links {
    margin-right: 0;
}

.navbar-top-links li {
    display: inline-block;
}

.navbar-top-links li:last-child {
    margin-right: 15px;
}

.navbar-top-links li a {
    padding: 15px;
    min-height: 50px;
}

.navbar-top-links .dropdown-menu li {
    display: block;
}

.navbar-top-links .dropdown-menu li:last-child {
    margin-right: 0;
}

.navbar-top-links .dropdown-menu li a {
    padding: 3px 20px;
    min-height: 0;
}

.navbar-top-links .dropdown-menu li a div {
    white-space: normal;
}

.navbar-top-links .dropdown-messages,
.navbar-top-links .dropdown-tasks,
.navbar-top-links .dropdown-alerts {
    width: 310px;
    min-width: 0;
}

.navbar-top-links .dropdown-messages {
    margin-left: 5px;
}

.navbar-top-links .dropdown-tasks {
    margin-left: -59px;
}

.navbar-top-links .dropdown-alerts {
    margin-left: -123px;
}

.navbar-top-links .dropdown-user {
    right: 0;
    left: auto;
}

.sidebar .sidebar-nav.navbar-collapse {
    padding-left: 0;
    padding-right: 0;
}

.sidebar .sidebar-search {
    padding: 15px;
}

.sidebar ul li {
    border-bottom: 1px solid #e7e7e7;
}

/* edited by manleong (bootstrap migration) */
.sidebar ul li a {
    color: #337ab7;
}

.sidebar ul li a.active {
    background-color: #eeeeee;
}

.sidebar .arrow {
    float: right;
}

/* For leftsidebar tab arrow - tab is split into column under an <a> element */
.mm-active>.fa.arrow:before {
    content: "\f107" !important;
}

/* For leftsidebar tab arrow - tab is wrapped in single <a> element*/
.mm-active>a .fa.arrow:before {
    content: "\f107";
}

.sidebar .fa.arrow:before {
    content: "\f104";
}

.sidebar .nav .nav-link {
    /* 1st level tab group */
    cursor: pointer;
    background-color: #f8f8f8;
    padding-right: 10px;
}

.sidebar .nav-second-level li,
.sidebar .nav-third-level li {
    border-bottom: none !important;
}

.sidebar .nav-second-level li a {
    padding-left: 37px;
    background-color: #e9ecef !important;
}

.sidebar .nav-third-level li a {
    padding-left: 52px;
    background-color: #d9dde0 !important;
}

.sidebar .nav-link.current-tab {
    /* Currently selected tab */
    text-decoration: underline;
    font-weight: bold;
}

@media (min-width: 768px) {
    .sidebar {
        z-index: 1;
        position: absolute;
        width: 200px;
    }

    .navbar-top-links .dropdown-messages,
    .navbar-top-links .dropdown-tasks,
    .navbar-top-links .dropdown-alerts {
        margin-left: auto;
    }
}

.bg-primary {
    background-color: #337ab7 !important;
}

.bg-success {
    background-color: #dff0d8 !important;
}

.bg-info {
    background-color: #d9edf7 !important;
}

.btn-primary {
    background-color: #428bca !important;
}

.btn-success {
    background-color: #5cb85c !important;
}

.btn-info {
    background-color: #5bc0de !important;
}

.btn-warning {
    background-color: #f0ad4e !important;
}

.btn-danger {
    background-color: #d9534f !important;
}




/* new added for btn */
.btn-primary,
.btn-success,
.btn-info,
.btn-warning,
.btn-danger {
    color: #fff !important;
}

.btn-primary:hover,
.btn-success:hover,
.btn-info:hover,
.btn-warning:hover,
.btn-danger:hover {
    color: #fff;
    box-shadow: inset 0em 0em 0em 10em rgba(0, 0, 0, 0.3) !important;
}

/* new added for btn */
.btn-outline-secondary,
.btn-outline-secondary:focus {
    background-color: #fff;
    color: #030303 !important;
    border-color: rgb(172, 172, 172);
}

.btn-outline-secondary:hover {
    background-color: #ccc !important;
}

.btn:disabled {
    pointer-events: auto;
    cursor: not-allowed;
}

.chat {
    margin: 0;
    padding: 0;
    list-style: none;
}

.chat li {
    margin-bottom: 10px;
    padding-bottom: 5px;
    border-bottom: 1px dotted #999999;
}

.chat li.left .chat-body {
    margin-left: 60px;
}

.chat li.right .chat-body {
    margin-right: 60px;
}

.chat li .chat-body p {
    margin: 0;
}

.panel .slidedown .glyphicon,
.chat .glyphicon {
    margin-right: 5px;
}

.chat-panel .panel-body {
    height: 350px;
    overflow-y: scroll;
}

.login-card {
    margin-top: 25%;
}

.flot-chart {
    display: block;
    height: 400px;
}

.flot-chart-content {
    width: 100%;
    height: 100%;
}

table.dataTable thead .sorting,
table.dataTable thead .sorting_asc,
table.dataTable thead .sorting_desc,
table.dataTable thead .sorting_asc_disabled,
table.dataTable thead .sorting_desc_disabled {
    background: transparent;
}

table.dataTable thead .sorting_asc:after {
    content: "\f0de";
    float: right;
    font-family: "Sunway Sans", Roboto, Raleway, Inter, sans-serif;
}

table.dataTable thead .sorting_desc:after {
    content: "\f0dd";
    float: right;
    font-family: "Sunway Sans", Roboto, Raleway, Inter, sans-serif;
}

table.dataTable thead .sorting:after {
    content: "\f0dc";
    float: right;
    font-family: "Sunway Sans", Roboto, Raleway, Inter, sans-serif;
    color: rgba(50, 50, 50, 0.5);
}

.btn-circle {
    width: 30px;
    height: 30px;
    padding: 6px 0;
    border-radius: 15px;
    text-align: center;
    font-size: 12px;
    line-height: 1.428571429;
}

.btn-circle.btn-lg {
    width: 50px;
    height: 50px;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 18px;
    line-height: 1.33;
}

.btn-circle.btn-xl {
    width: 70px;
    height: 70px;
    padding: 10px 16px;
    border-radius: 35px;
    font-size: 24px;
    line-height: 1.33;
}

.show-grid [class^="col-"] {
    padding-top: 10px;
    padding-bottom: 10px;
    border: 1px solid #ddd;
    background-color: #eee !important;
}

.show-grid {
    margin: 15px 0;
}

.huge {
    font-size: 40px;
}

.panel-green {
    border-color: #5cb85c;
}

.panel-green>.panel-heading {
    border-color: #5cb85c;
    color: white;
    background-color: #5cb85c;
}

.panel-green>a {
    color: #5cb85c;
}

.panel-green>a:hover {
    color: #3d8b3d;
}

.panel-red {
    border-color: #d9534f;
}

.panel-red>.panel-heading {
    border-color: #d9534f;
    color: white;
    background-color: #d9534f;
}

.panel-red>a {
    color: #d9534f;
}

.panel-red>a:hover {
    color: #b52b27;
}

.panel-yellow {
    border-color: #f0ad4e;
}

.panel-yellow>.panel-heading {
    border-color: #f0ad4e;
    color: white;
    background-color: #f0ad4e;
}

.panel-yellow>a {
    color: #f0ad4e;
}

.panel-yellow>a:hover {
    color: #df8a13;
}

.timeline {
    position: relative;
    padding: 20px 0 20px;
    list-style: none;
}

.timeline:before {
    content: " ";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    margin-left: -1.5px;
    background-color: #eeeeee;
}

.timeline>li {
    position: relative;
    margin-bottom: 20px;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li:before,
.timeline>li:after {
    content: " ";
    display: table;
}

.timeline>li:after {
    clear: both;
}

.timeline>li>.timeline-panel {
    float: left;
    position: relative;
    width: 46%;
    padding: 20px;
    border: 1px solid #d4d4d4;
    border-radius: 2px;
    -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.175);
}

.timeline>li>.timeline-panel:before {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 26px;
    right: -15px;
    border-top: 15px solid transparent;
    border-right: 0 solid #ccc;
    border-bottom: 15px solid transparent;
    border-left: 15px solid #ccc;
}

.timeline>li>.timeline-panel:after {
    content: " ";
    display: inline-block;
    position: absolute;
    top: 27px;
    right: -14px;
    border-top: 14px solid transparent;
    border-right: 0 solid #fff;
    border-bottom: 14px solid transparent;
    border-left: 14px solid #fff;
}

.timeline>li>.timeline-badge {
    z-index: 100;
    position: absolute;
    top: 16px;
    left: 50%;
    width: 50px;
    height: 50px;
    margin-left: -25px;
    border-radius: 50% 50% 50% 50%;
    text-align: center;
    font-size: 1.4em;
    line-height: 50px;
    color: #fff;
    background-color: #999999;
}

.timeline>li.timeline-inverted>.timeline-panel {
    float: right;
}

.timeline>li.timeline-inverted>.timeline-panel:before {
    right: auto;
    left: -15px;
    border-right-width: 15px;
    border-left-width: 0;
}

.timeline>li.timeline-inverted>.timeline-panel:after {
    right: auto;
    left: -14px;
    border-right-width: 14px;
    border-left-width: 0;
}

.timeline-badge.primary {
    background-color: #2e6da4 !important;
}

.timeline-badge.success {
    background-color: #3f903f !important;
}

.timeline-badge.warning {
    background-color: #f0ad4e !important;
}

.timeline-badge.danger {
    background-color: #d9534f !important;
}

.timeline-badge.info {
    background-color: #5bc0de !important;
}

.timeline-title {
    margin-top: 0;
    color: inherit;
}

.timeline-body>p,
.timeline-body>ul {
    margin-bottom: 0;
}

.timeline-body>p+p {
    margin-top: 5px;
}

@media (max-width: 767px) {
    ul.timeline:before {
        left: 40px;
    }

    ul.timeline>li>.timeline-panel {
        width: calc(10%);
        width: -moz-calc(10%);
        width: -webkit-calc(10%);
    }

    ul.timeline>li>.timeline-badge {
        top: 16px;
        left: 15px;
        margin-left: 0;
    }

    ul.timeline>li>.timeline-panel {
        float: right;
    }

    ul.timeline>li>.timeline-panel:before {
        right: auto;
        left: -15px;
        border-right-width: 15px;
        border-left-width: 0;
    }

    ul.timeline>li>.timeline-panel:after {
        right: auto;
        left: -14px;
        border-right-width: 14px;
        border-left-width: 0;
    }
}

/* Styling Checkbox Starts */
.checkbox-label {
    display: block;
    position: relative;
    margin: auto;
    cursor: pointer;
    font-size: 22px;
    line-height: 24px;
    height: 24px;
    width: 24px;
    clear: both;
}

.checkbox-label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-label .checkbox-custom {
    position: absolute;
    top: 0px;
    left: 0px;
    height: 24px;
    width: 24px;
    background-color: transparent;
    border-radius: 5px;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    border: 2px solid rgb(0, 0, 0);
}

.checkbox-label input:checked~.checkbox-custom {
    background-color: rgb(0, 0, 0);
    border-radius: 5px;
    -webkit-transform: rotate(0deg) scale(1);
    -ms-transform: rotate(0deg) scale(1);
    transform: rotate(0deg) scale(1);
    opacity: 1;
    border: 2px solid rgb(0, 0, 0);
}

.checkbox-label .checkbox-custom::after {
    position: absolute;
    content: "";
    left: 12px;
    top: 12px;
    height: 0px;
    width: 0px;
    border-radius: 5px;
    border: solid rgb(2, 154, 255);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(0deg) scale(0);
    -ms-transform: rotate(0deg) scale(0);
    transform: rotate(0deg) scale(0);
    opacity: 1;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

.checkbox-label input:checked~.checkbox-custom::after {
    -webkit-transform: rotate(45deg) scale(1);
    -ms-transform: rotate(45deg) scale(1);
    transform: rotate(45deg) scale(1);
    opacity: 1;
    left: 8px;
    top: 3px;
    width: 6px;
    height: 12px;
    border: solid #009BFF;
    border-width: 0 2px 2px 0;
    background-color: transparent;
    border-radius: 0;
}

/* For Ripple Effect */
.checkbox-label .checkbox-custom::before {
    position: absolute;
    content: "";
    left: 10px;
    top: 10px;
    width: 0px;
    height: 0px;
    border-radius: 5px;
    border: 2px solid rgb(0, 0, 0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

.checkbox-label input:checked~.checkbox-custom::before {
    left: -3px;
    top: -3px;
    width: 24px;
    height: 24px;
    border-radius: 5px;
    -webkit-transform: scale(3);
    -ms-transform: scale(3);
    transform: scale(3);
    opacity: 0;
    z-index: 999;
    transition: all 0.3s ease-out;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
}

/* new added (migration) */
p {
    margin-bottom: 0.7rem;
}

hr {
    opacity: 0.1;
}

.form-control:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.sidebar ul.nav {
    flex-direction: column !important;
}

.sidebar ul {
    list-style-type: none;
    padding: 0;
    font-size: 14px;
    font-family: "Sunway Sans", Roboto, Raleway, Inter, sans-serif;
}

.sidebar ul a:hover {
    background-color: #eeeeee;
}

button.btn-close {
    background-size: 0.6rem;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

a:not(.page-link, .btn, .dropdown-item, [role="tab"]),
.accordion-button {
    text-decoration: none;
    color: #337ab7 !important;
}

a:hover:not(.page-link, .btn, .dropdown-item, [role="tab"]),
.accordion-button:hover {
    color: #23527c !important;
}

.active>a.page-link {
    background-color: #337ab7;
}

.active>a.page-link:hover {
    background-color: #23527c;
}

#dashboardaccordion .accordion-item {
    margin-bottom: 0.4rem;
    border: var(--bs-accordion-border-width) solid #ddd !important;
    border-radius: 0.3rem;
    font-size: 14px;
}

#dashboardaccordion .accordion-item .accordion-header .accordion-button {
    background-color: #f5f5f5;
    border-radius: 0.3rem;
    padding: 0.4rem 0.8rem;
}

#dashboardaccordion .accordion-item .accordion-header .accordion-button:not(.collapsed) {
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
}

button:focus {
    outline: none !important;
    box-shadow: none !important;
}

#dashboardaccordion .accordion-item .accordion-body a {
    text-decoration: none;
}

.bootstrap-table .fixed-table-toolbar button {
    --bs-btn-color: #030303 !important;
    background-color: #fff;
    border-color: #ced4da !important;
    border-width: thin;
}

.bootstrap-table .fixed-table-toolbar button:focus {
    color: #030303;
}

.bootstrap-table .fixed-table-toolbar button:hover {
    background-color: #ced4da;
}

.bootstrap-table .page-list .dropdown-toggle {
    --bs-btn-padding-y: 0.25rem;
    --bs-btn-padding-x: 0.5rem;
    --bs-btn-font-size: 0.875rem;
    --bs-btn-border-radius: 0.25rem;
    --bs-btn-color: #030303;
    --bs-btn-bg: #fff;
    --bs-btn-hover-color: #030303;
    --bs-btn-hover-bg: #fff;
    --bs-btn-active-color: #030303;
    --bs-btn-active-bg: #fff;
    --bs-btn-disabled-color: #030303;
    --bs-btn-disabled-bg: #fff;
}

.has-error span {
    color: rgb(185, 74, 72);
}

.modal .modal-dialog .modal-content {
    box-shadow: 0 5px 15px rgb(0 0 0 / 50%);
}

.btn {
    white-space: nowrap;
}

.xs-button {
    font-size: x-small;
    padding: 0px 4px;
    line-height: 12px;
    border-width: 1px;
    border-radius: 20%;
}

.filter-control select {
    font-size: 12px;
}

.list-group-item:first-child {
    border-top-left-radius: 3%;
    border-top-right-radius: 3%;
}

.list-group-item:last-child {
    border-bottom-left-radius: 3%;
    border-bottom-right-radius: 3%;
}

.dropdown-toggle {
    border: 1px solid #ced4da;
}

.form-control[readonly] {
    background-color: #eee;
    opacity: 1;
}

.form-check-label,
.form-check-input {
    cursor: pointer;
}

.datetimepicker.dropdown-menu {
    font: inherit;
    padding: 8px;
}

.datetimepicker.dropdown-menu td {
    font-weight: bold;
}

.select2-results__options .select2-results__option.select2-results__option--selected {
    color: #030303 !important;
    background-color: #eeeeee !important;
}

.modal-dialog {
    margin-left: auto;
    margin-right: auto;
}

.bootstrap-table .fixed-table-container {
    border: 1px solid #ddd;
}

.bootstrap-table table {
    border: 1px solid #ddd;
}

/** ============================================================================
 * Bootstrap Select Multiple - Begin
 * ========================================================================== */
.bootstrap-select .dropdown-menu.show {
    width: inherit !important;
}

.bootstrap-select .dropdown-toggle::after,
.bootstrap-select .dropup .dropdown-toggle::after {
    border: none;
    width: 13px;
    height: 13px;
    background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") no-repeat;
    background-size: contain;
    position: absolute;
    right: 13px;
}

.bootstrap-select .dropdown-item {
    font-size: 14px;
    padding-top: 4.5px;
    padding-bottom: 3px;
}

.bootstrap-select .dropdown-item:hover {
    color: #fff;
    background-color: var(--bs-blue);
    opacity: 0.8;
}

.bootstrap-select .dropdown-toggle {
    padding-right: 2.5rem !important;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder,
.bootstrap-select>.dropdown-toggle.bs-placeholder:active,
.bootstrap-select>.dropdown-toggle.bs-placeholder:focus,
.bootstrap-select>.dropdown-toggle.bs-placeholder:hover {
    color: var(--bs-gray-600) !important;
    font-weight: 600;
    outline: unset !important;
}

.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select>select.mobile-device:focus+.dropdown-toggle {
    color: #212529;
    background-color: #fff;
    border-color: #86b7fe;
    outline: 0;
    box-shadow: 0 0 0 0.1rem rgba(13, 110, 253, 0.25) !important;
}

.bootstrap-select .dropdown-toggle,
.bootstrap-select .dropdown-toggle:active,
.bootstrap-select .dropdown-toggle:focus,
.bootstrap-select .dropdown-toggle:hover {
    background-color: unset;
    outline: unset !important;
}

.bootstrap-select .dropdown-menu.inner.show .no-results,
.bootstrap-select .bs-searchbox input {
    font-size: 13px;
}

.bootstrap-select .bs-ok-default:after {
    font-size: 10px;
    /* margin-top: -.3px; */
    margin-top: 2px;
    position: absolute;
    right: .05rem;
}

.bootstrap-select .filter-option-inner-inner {
    font-weight: 100 !important;
}

/** ============================================================================
 * Bootstrap Select Multiple - End
 * ========================================================================== */

.input-group-append .btn-search-ref {
    padding: 0.2rem 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0 0.25rem 0.25rem 0;
}

.input-group-append .btn-search-ref:disabled {
    opacity: 1;
    background-color: #e9ecef;
}

#ekycform input[type="radio"] {
    width: 15px;
    height: 15px;
    cursor: pointer;
    vertical-align: middle;
}