/* custom css start  by manish*/
/* common css start */
.btn-primary,
.bg-primary {
    background: #152e3a !important;
}
a {
    color: #152e3a;
}

.page-item.active .page-link,
.page-item.disabled .pagination > .active > a,
.pagination > .active > a:focus,
.pagination > .active > a:hover,
.pagination > .active > span,
.pagination > .active > span:focus,
.pagination > .active > span:hover {
    background: #152e3a;
    border-color: #152e3a;
}
/* common css end */
/* custom css start  by manish end*/

/* radio button switch="bool" css start on all pages */
input[switch="bool"] + label {
    padding-right: 63px !important;
    width: auto !important;
    padding-left: 14px;
}
input[switch="bool"] + label:after {
    left: 2px;
}
input[switch="bool"]:checked + label:after {
    left: calc(100% - 23px);
}

/*select2 in table*/
.custom-select-table + span {
    width: 100% !important;
}

.custom-select {
    width: 100% !important;
    height: 36px !important;
}
.custom-select + .select2 {
    width: 100% !important;
}
.dropify-wrapper .dropify-message span.file-icon {
    font-size: 14px !important;
}
.dropify-wrapper {
    width: 40% !important;
    height: 125px !important;
    /* border-radius: 100px !important; */
}
.border-right {
    border-right: 1px solid #f0f0f0;
}

/* hover visible css start */
.hover-visible:hover .visible {
    visibility: visible !important;
}

/* .action-buttons {
    color: #44a2d2 !important;
} */

.form-check-input:checked {
    background-color: #152e3a !important;
    border-color: #152e3a !important;
}
.nav-tabs-custom .nav-item .nav-link.active {
    color: #152e3a !important;
}
.nav-tabs-custom .nav-item .nav-link::after {
    background-color: #152e3a !important;
}

.text-has-action {
    border-bottom: 1px dashed #bbbbbb;
    padding-bottom: 2px;
}
.lead-field-heading {
    margin-top: 10px;
    margin-bottom: 0;
}
.no-mtop {
    margin-top: 0 !important;
}
.lead-info-heading h4 {
    color: #005c86;
}
.font-medium-xs {
    font-size: 13px !important;
}
.lead-info-heading {
    background: #f9fafc;
    padding: 7px;
    border-radius: 3px;
    margin-bottom: 15px;
}

/* loader css */

.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.7);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader:before {
    content: "";
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #152e3a;
    width: 50px;
    height: 50px;
    animation: spin 2s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.warning-icon {
    position: relative;
    box-sizing: content-box;
    justify-content: center;
    width: 5em;
    height: 5em;
    margin: 1.25em auto 1.875em;
    border: 0.25em solid transparent;
    border-radius: 50%;
    border-color: #f9bc0b;
    color: #f9bc0b;
    font-family: inherit;
    line-height: 5em;
    cursor: default;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.fs-18 {
    font-size: 18px !important;
}

.disabled-input {
    background-color: #f8f9fa !important;
}
/* disable pointer */
.no-drop {
    cursor: no-drop;
}

.bg-light-red {
    background-color: #f3d2d2 !important;
}
.bg-light-green {
    background-color: #d2f3d8 !important;
}
.bg-light-blue {
    background-color: #d2e6f3 !important;
}
.bg-light-yellow {
    background-color: #f3eed2 !important;
}
.bg-light-gray {
    background-color: #dadedb !important;
}
.modal-body{
      background-color: #f6f5f5 !important;
}
.modal-footer
{
    background-color: #bec1c3 !important;
}
/* css for input group with add button with dropdown for validation msg at bottom of dropdown */
.input-group-add-container ul.parsley-errors-list {
    order: 1;
    width: 100%;
}
.disabled-link {
    pointer-events: none; /* disables click */
    color: gray; /* make it look disabled */
    text-decoration: none;
}
.ui-widget > li > div.ui-state-active {
    background-color: #21a401 !important;
    color: white !important;
    border-color: #21a401 !important;
}

/*scrollbar UI change*/
::-webkit-scrollbar {
    width: 8px; /* width of the scrollbar */
    height: 10px; /* height of the scrollbar */
    background-color: #f0f0f0; /* background color of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: #ccc; /* color of the scrollbar thumb */
    border-radius: 10px; /* rounded corners of the scrollbar thumb */
}

::-webkit-scrollbar-track {
    background-color: #f0f0f0; /* background color of the scrollbar track */
}

/* animate download icon */
.animated-download {
    animation: download-animation 2s infinite;
}

@keyframes download-animation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
    100% {
        transform: translateY(0);
    }
}
@media (max-width: 992px) {
    .register-logo{
        display: flex;
        justify-content: center;
        align-items: center;
        width: 70%;
    }
}
