/* Global Search Css */

/* ==============================
   SEARCH BASE STYLES
================================*/
.search-form_input {
    height: 48px;
    font-size: 15px;
}

/* ==============================
   SEARCH DROPDOWN (ANIMATED)
================================*/
.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    background: #ffffff;
    max-height: 360px;
    overflow-y: auto;

    border-radius: 0 0 8px 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);

    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;

    transition:
        opacity 180ms ease,
        transform 180ms ease;

    z-index: 1000;
}

/* OPEN STATE */
.search-results.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* GROUP */
.search-group {
    padding: 10px 15px;
    font-weight: 600;
    font-size: 13px;
    background: #f7f7f7;
    border-bottom: 1px solid #eaeaea;
}

/* ITEM */
.search-item {
    display: block;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    font-size: 14px;

    transition: background 120ms ease;
}

.search-item:hover,
.search-item.active {
    background: #eef3ff;
}

/* HIGHLIGHT */
.search-highlight {
    background: #fff3cd;
    font-weight: 600;
}


.search-loading {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 8px 12px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-top: none;
    font-size: 14px;
    color: #555;
    display: flex;
    align-items: center;
    z-index: 9999;
}

.spinner {
    width: 14px;
    height: 14px;
    border: 2px solid #ddd;
    border-top: 2px solid #2563eb;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}


/* ==============================
   MOBILE FULLSCREEN ANIMATION
================================*/
@media (max-width: 768px) {
    .search-container {
        transition: background 200ms ease;
    }

    .search-container.search-open {
        position: fixed;
        inset: 0;
        background: #ffffff;
        z-index: 9999;
        padding: 15px;

        animation: fadeIn 200ms ease;
    }

    .search-container.search-open .search-results {
        position: static;
        max-height: calc(100vh - 90px);
        box-shadow: none;
        border-radius: 0;
    }
}

/* FADE KEYFRAME */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

#closeGlobalSearch {
    border: 1px solid white;
    border-radius: 5px;
    padding: 0px 6px 0px 6px;
}

/* End */

header {
    z-index: 1050 !important;
}

.table {
    --bs-table-color-type: initial;
    --bs-table-bg-type: initial;
    --bs-table-color-state: initial;
    --bs-table-bg-state: initial;
    --bs-table-color: var(--bs-emphasis-color);
    --bs-table-bg: var(--bs-body-bg);
    --bs-table-border-color: var(--bs-border-color);
    --bs-table-accent-bg: transparent;
    --bs-table-striped-color: var(--bs-emphasis-color);
    --bs-table-striped-bg: rgba(var(--bs-emphasis-color-rgb), 0.05);
    --bs-table-active-color: var(--bs-emphasis-color);
    --bs-table-active-bg: rgba(var(--bs-emphasis-color-rgb), 0.1);
    --bs-table-hover-color: var(--bs-emphasis-color);
    --bs-table-hover-bg: rgba(var(--bs-emphasis-color-rgb), 0.075);
    width: 100%;
    margin-bottom: 1rem;
    vertical-align: top;
    border-color: var(--bs-table-border-color);
}
.table > :not(caption) > * > * {
    padding: 0.5rem 0.5rem;
    color: var(
        --bs-table-color-state,
        var(--bs-table-color-type, var(--bs-table-color))
    );
    background-color: var(--bs-table-bg);
    border-bottom-width: var(--bs-border-width);
    box-shadow: inset 0 0 0 9999px
        var(
            --bs-table-bg-state,
            var(--bs-table-bg-type, var(--bs-table-accent-bg))
        );
}
.table > tbody {
    vertical-align: inherit;
}
.table > thead {
    vertical-align: bottom;
}
.table-group-divider {
    border-top: calc(var(--bs-border-width) * 2) solid currentcolor;
}
.caption-top {
    caption-side: top;
}
.table-sm > :not(caption) > * > * {
    padding: 0.25rem 0.25rem;
}
.table-bordered > :not(caption) > * {
    border-width: var(--bs-border-width) 0;
}
.table-bordered > :not(caption) > * > * {
    border-width: 0 var(--bs-border-width);
}
.table-borderless > :not(caption) > * > * {
    border-bottom-width: 0;
}
.table-borderless > :not(:first-child) {
    border-top-width: 0;
}
.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-striped-columns > :not(caption) > tr > :nth-child(2n) {
    --bs-table-color-type: var(--bs-table-striped-color);
    --bs-table-bg-type: var(--bs-table-striped-bg);
}
.table-active {
    --bs-table-color-state: var(--bs-table-active-color);
    --bs-table-bg-state: var(--bs-table-active-bg);
}
.table-hover > tbody > tr:hover > * {
    --bs-table-color-state: var(--bs-table-hover-color);
    --bs-table-bg-state: var(--bs-table-hover-bg);
}
.table-primary {
    --bs-table-color: #000;
    --bs-table-bg: #cfe2ff;
    --bs-table-border-color: #a6b5cc;
    --bs-table-striped-bg: #c5d7f2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bacbe6;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfd1ec;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-secondary {
    --bs-table-color: #000;
    --bs-table-bg: #e2e3e5;
    --bs-table-border-color: #b5b6b7;
    --bs-table-striped-bg: #d7d8da;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #cbccce;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #d1d2d4;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-success {
    --bs-table-color: #000;
    --bs-table-bg: #d1e7dd;
    --bs-table-border-color: #a7b9b1;
    --bs-table-striped-bg: #c7dbd2;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #bcd0c7;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #c1d6cc;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-info {
    --bs-table-color: #000;
    --bs-table-bg: #cff4fc;
    --bs-table-border-color: #a6c3ca;
    --bs-table-striped-bg: #c5e8ef;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #badce3;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #bfe2e9;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-warning {
    --bs-table-color: #000;
    --bs-table-bg: #fff3cd;
    --bs-table-border-color: #ccc2a4;
    --bs-table-striped-bg: #f2e7c3;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #e6dbb9;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #ece1be;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-danger {
    --bs-table-color: #000;
    --bs-table-bg: #f8d7da;
    --bs-table-border-color: #c6acae;
    --bs-table-striped-bg: #eccccf;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfc2c4;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5c7ca;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-light {
    --bs-table-color: #000;
    --bs-table-bg: #f8f9fa;
    --bs-table-border-color: #c6c7c8;
    --bs-table-striped-bg: #ecedee;
    --bs-table-striped-color: #000;
    --bs-table-active-bg: #dfe0e1;
    --bs-table-active-color: #000;
    --bs-table-hover-bg: #e5e6e7;
    --bs-table-hover-color: #000;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-dark {
    --bs-table-color: #fff;
    --bs-table-bg: #212529;
    --bs-table-border-color: #4d5154;
    --bs-table-striped-bg: #2c3034;
    --bs-table-striped-color: #fff;
    --bs-table-active-bg: #373b3e;
    --bs-table-active-color: #fff;
    --bs-table-hover-bg: #323539;
    --bs-table-hover-color: #fff;
    color: var(--bs-table-color);
    border-color: var(--bs-table-border-color);
}
.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
@media (max-width: 575.98px) {
    .table-responsive-sm {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 767.98px) {
    .table-responsive-md {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 991.98px) {
    .table-responsive-lg {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 1199.98px) {
    .table-responsive-xl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}
@media (max-width: 1399.98px) {
    .table-responsive-xxl {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
}

.font-size-5 {
    font-size: 5px !important;
}

.font-size-6 {
    font-size: 6px !important;
}

.font-size-7 {
    font-size: 7px !important;
}

.font-size-8 {
    font-size: 8px !important;
}

.font-size-9 {
    font-size: 9px !important;
}

.font-size-10 {
    font-size: 10px !important;
}

.font-size-11 {
    font-size: 11px !important;
}

.font-size-12 {
    font-size: 12px !important;
}

.font-size-13 {
    font-size: 13px !important;
}

.font-size-14 {
    font-size: 14px !important;
}

.font-size-15 {
    font-size: 15px !important;
}

.font-size-16 {
    font-size: 16px !important;
}

.font-size-17 {
    font-size: 17px !important;
}

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

.font-size-19 {
    font-size: 19px !important;
}

.font-size-20 {
    font-size: 20px !important;
}

.font-size-21 {
    font-size: 21px !important;
}

.font-size-22 {
    font-size: 22px !important;
}

.service-list li {
    background: #fff !important;
    line-height: 20px;
    position: relative;
    border: none;
    display: block;
    width: 100%;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    padding: 15px 30px 15px 15px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    font-weight: 400;
    /* border: 1px solid #00000017; */
    color: #737887;
    margin: 0 0 10px 0;
}
.service-list li a {
    font-size: 15px;
    font-weight: 500;
    color: #737887;
    font-family: "Barlow", sans-serif;
}

.service-list li > a > i {
    color: #684df4;
}

.service-list li:hover {
    background: #684df4 !important;
}

.service-list li:hover > a,
.service-list li:hover > a > i {
    color: #fff !important;
}

.service-list li:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

/* CSS Buttons */

#ReportBtn .btn {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: transparent;
    border: 2px solid #e74c3c;
    border-radius: 0.6em;
    color: #e74c3c;
    cursor: pointer;
    /* display: flex; */
    align-self: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1;
    margin: 6px;
    padding: 10px 0.8em;
    text-decoration: none;
    text-align: center;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    width: 100%;
}
#ReportBtn .btn:hover,
#ReportBtn .btn:focus {
    color: #fff;
    outline: 0;
}

#ReportBtn .primary {
    border-color: #caa40f;
    color: #fff;
    background-color: #caa40f;
    background-position: 100%;
    background-size: 400%;
    transition: background 300ms ease-in-out;
}

#ReportBtn .success {
    border-color: #55bb53;
    color: #fff;
    background-color: #55bb53;
    background-position: 100%;
    background-size: 400%;
}

#ReportBtn .info {
    border-color: #538fbb;
    color: #fff;
    background-color: #538fbb;
    background-position: 100%;
    background-size: 400%;
}

.desc_btn {
    padding: 3px 20px;
    background-color: #fffefe;
    border-radius: 0px;
    border: 1px solid #289026 !important;
    color: #289026;
}

.desc_btn.active {
    border: 1px solid #289026 !important;
    border-bottom: 1px solid #ffffff00 !important;
    color: #fff;
    background-color: #289026;
}

.form-check-input {
    border: 1px solid rgb(0 0 0 / 62%) !important;
}

#buyNowForm .btn-submit {
    background-color: #2b2b2bba;
    border: #2b2b2b9c;
    width: 100%;
    text-transform: uppercase;
    color: #d3e5d3;
    border-radius: 0px 0px 10px 10px;
    font-weight: bold;
}

.industry-link {
    cursor: pointer;
}

.industry-link.active {
    background: #684df4 !important;
}

.industry-link.active > a,
.industry-link.active > a > i {
    color: #fff !important;
}

.butn.warning {
    background: #c4d414;
    color: #000;
}

.butn.warning:hover {
    color: #fff;
    background: #c4d414 !important;
    border-radius: 3px;
}

/*Loader Start*/
#my-loader {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #fff;
    z-index: 999999;
    transition: 0.3s ease opacity;
    text-align: center;
    width: 100%;
    height: 100%;
}
#my-loader:before {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #55bb53;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
}
#my-loader:after {
    content: "";
    width: 80px;
    height: 80px;
    border: 3px solid #55bb53;
    display: block;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation-name: LoaderCicle;
    animation-duration: 2s;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-delay: 1s;
}
@keyframes LoaderCicle {
    0% {
        width: 0;
        height: 0;
        opacity: 0;
    }
    10% {
        width: 10px;
        height: 10px;
        opacity: 1;
    }
    80% {
        width: 60px;
        height: 60px;
        opacity: 0.1;
    }
    100% {
        width: 70px;
        height: 70px;
        opacity: 0;
    }
}
/*Loader End*/

.top-bar-info ul {
    font-family: "Barlow", Arial, sans-serif;
}

.service_li {
    font-size: 17px;
    font-weight: 500;
    font-family: "Barlow", Arial, sans-serif;
    border: 1px solid #0000001f;
    border-left: 2px solid #09b850;
    margin-bottom: 5px;
}

.service_li.active a {
    color: #09b850;
}

.form-control,
.form-select {
    border: 1px solid #8f908f;
}

/* Home Page Css */
/* #home-counter {
    min-height: 400px; 
} */

#home-counter .icon {
    width: 50px;
    height: 50px;
    display: inline-block;
}

#home-counter .countup {
    min-width: 120px;
}

#home-counter img {
    width: 100px;
    height: auto;
}

/* Home Page Css ENDS*/
