/*
Template Name: Velzon - Admin & Dashboard Template
Author: Themesbrand
Website: https://themesbrand.com/
Contact: support@themesbrand.com
File: Custom Css File
*/

.gentxtcolor {
    color: #007427 !important;
}

.form-check-input:checked {
    background-color: #19ab4f;
    border-color: #19ab4f;
}

.animation-nav li {
    position: relative;
}

    .animation-nav li a {
        color: #177445e5;
        border-radius: 4px;
        position: relative;
        overflow: hidden;
        transition: all 0.4s;
        z-index: 1;
    }

       

        .animation-nav li a span {
            position: relative;
        }

        .animation-nav li a::before {
            content: "";
            position: absolute;
            top: 0;
            width: 0;
            right: 0;
            height: 100%;
            transition: width 0.4s cubic-bezier(0.51, 0.18, 0, 0.88) 0.1s;
            background-color: #19ab4f;
            z-index: -1;
        }

        .animation-nav li a:hover,
        .animation-nav li a.active {
            color: #fff;
            background-color: transparent !important;
        }

            .animation-nav li a:hover::before,
            .animation-nav li a.active::before {
                width: 100%;
                left: 0;

            }

.nav-fill .nav-item .nav-link, .nav-justified .nav-item .nav-link {
    width: 100%;
    background-color: #17744533;
}
.animation-nav li a.active h5,
.animation-nav li a:hover h5 {
    color: #fff;
}

.animation-nav li a h5,
.animation-nav li a h5 {
    color: #19ab4f;
}

.overviewcard {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    /*    padding: 24px;*/
    background-color: #FFF;
    border: 1px solid transparent;
    transform: translateY(0);
    transition: all 0.3s;
    box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.05);
    border-radius: 4px;
    font-family: "Open Sans", sans-serif;
    height: 250px;
}

.overviewcard-title {
    font-size: 18px;
    margin: 0;
    color: #007427;
    font-weight: 600;
}

.overviewcard-subtitle {
    color: #000000;
    font-weight: 400;
    font-size: 14px;
    line-height: 140%;
}

.overviewcard:hover {
    transform: translateY(-3px);
    cursor: pointer;
    background: #F3FFF7;
    border: 1px solid #00B43C;
    border-radius: 4px;
    flex-grow: 0;
}


.active > .page-link, .page-link.active {
    background-color: #007427;
    border-color: #007427;
}

/*.
.btn-check:checked + .btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check) + .btn:active {
    color: #fff;
    background-color: #007427;
    border-color: #007427;
}

.btn:hover {
    color: #fff;
    background-color: #007427;
    border-color: #007427;
}*/



.loader-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.loader {
    border: 8px solid #f3f3f3;
    border-top: 8px solid #19ab4f;
    border-radius: 50%;
    width: 80px;
    height: 80px;
    position: absolute;
    animation: spin 1s linear infinite;
}

.loader-img {
    position: absolute;
    width: 40px; /* Adjust based on your logo */
    height: auto;
    z-index: 1; /* Ensures it stays above the rotating loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

#loaderContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}