@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

:root {
    --background-color: #ffffff;
    --default-color: #010745;
    --title-color: #010745;
    --accent-color: #FFDF56;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --dark-color: #000;
}

:root {
    --nav-color: rgba(255, 255, 255, 0.65);
    --nav-hover-color: #010745;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #212529;
    --nav-dropdown-hover-color: #FFDF56;
}

body {
    font-family: "Quicksand", sans-serif !important;
    font-weight: 500;
}
.text-red{
    color:red;
}
.cancel-image{
    width: 150px;
}
.profile-name{
    font-size: 13px;
    margin-top: 20px;
    text-align: start;
}
.main-section {
    min-height: 90vh;

}

.light-background {
    --background-color: #f2f2f3;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #222;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #37a626;
    --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: "Quicksand", sans-serif;
    font-weight: 500;
}

a {
    color: var(--title-color);
    text-decoration: none;
    transition: 0.3s;
}

/* a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
} */

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
}

.bg-head {
    background: #e1dff9 !important;
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: #F1F0FB;
    --heading-color: #000;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 5px;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

.header .logo img {
    max-height: 65px;
}

.header .cta-btn,
.header .cta-btn:focus {
    color: var(--dark-color);
    background: var(--accent-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    transition: 0.3s;
    display: flex !important;
    text-align: center;
    justify-content: center;
    width: 75%;
}

.header .cta-btn:hover,
.header .cta-btn:focus:hover {
    color: var(--dark-color);
    background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

.header .cta-btn i {
    padding-right: 5px;
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
        justify-content: center;
    }

    .navmenu li {
        position: relative;
    }

    .navmenu>ul>li {
        white-space: nowrap;
        padding: 15px 14px;
    }

    .navmenu>ul>li:last-child {
        padding-right: 0;
    }

    .navmenu a,
    .navmenu a:focus {
        color: #000;
        font-size: 17px;
        padding: 0 2px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        position: relative;
    }

    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }

    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }

    .navmenu .dropdown ul li {
        min-width: 200px;
    }

    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }

    .navmenu .dropdown ul a i {
        font-size: 12px;
    }

    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover>a {
        color: var(--nav-dropdown-hover-color);
    }

    .navmenu .dropdown:hover>ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }

    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }

    .navmenu .dropdown .dropdown:hover>ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

/* Mobile Navigation */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: #010745;
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 0px;
        padding: 10px 0;
        margin: 0;
        border-radius: 0px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
    }

    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-size: 16px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
        text-transform: capitalize;
    }

    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        transition: all 0.5s ease-in-out;
    }

    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }

    .navmenu .dropdown>.dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }

    .mobile-nav-active {
        overflow: hidden;
    }

    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }

    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(33, 37, 41, 0.8);
        transition: 0.3s;
    }

    .mobile-nav-active .navmenu>ul {
        display: block;
        padding: 40px 20px;
        background: #B9C3F7;
        background: linear-gradient(180deg, rgba(185, 195, 247, 1) 0%, rgba(217, 226, 255, 1) 45%, rgba(205, 215, 250, 1) 100%);
    }

    .mobile-nav-active .navmenu>ul li {
        border-bottom: 0.5px solid #00000017;
        margin: 0;
        padding: 5px 0;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: #000000;
    background-color: #e8e5ff;
    font-size: 14px;
}

.footer .footer-top {
    background-color: #F1F0FB;
    padding: 10px 0;
}

.footer .footer-about .logo img {
    max-width: 115px;
}

.footer .footer-about .logo span {
    color: var(--heading-color);
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer .footer-about p {
    font-size: 14px;
}

.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 15px;
}

.footer h4::after {
    content: "";
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: var(--accent-color);
    bottom: 0;
    left: 0;
}

.footer .footer-links {
    margin-bottom: 30px;
}

.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer .footer-links ul i {
    padding-right: 2px;
    font-size: 12px;
    line-height: 0;
}

.footer .footer-links ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
}

.footer .footer-links ul li:first-child {
    padding-top: 0;
}

.footer .footer-links ul a {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    display: inline-block;
    line-height: 1;
}

.footer .footer-links ul a:hover {
    color: var(--accent-color);
}

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 10px 0 9px;
}

.footer .copyright p {
    margin-bottom: 0;
}

.footer .credits {
    margin-top: 5px;
    font-size: 13px;
}

.footer .social-links a {
    font-size: 18px;
    display: inline-block;
    background: color-mix(in srgb, var(--default-color), transparent 90%);
    color: var(--contrast-color);
    line-height: 1;
    padding: 8px 0;
    margin-right: 4px;
    border-radius: 4px;
    text-align: center;
    width: 36px;
    height: 36px;
    transition: 0.3s;
}

.footer .social-links a:hover {
    background: var(--accent-color);
    text-decoration: none;
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: -15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 44px;
    height: 44px;
    border-radius: 50px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
    bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
    --background-color: #000000;
    --heading-color: var(--contrast-color);
    --default-color: var(--contrast-color);
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

.page-title:before {
    content: "";
    background-color: color-mix(in srgb, var(--background-color), transparent 32%);
    position: absolute;
    inset: 0;
}

.page-title h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    justify-content: center;
    padding: 0;
    margin: 0;
    font-size: 16px;
    font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
    padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
    content: "/";
    display: inline-block;
    padding-right: 10px;
    color: color-mix(in srgb, var(--default-color), transparent 50%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 92px;
}

@media (max-width: 1199px) {

    section,
    .section {
        scroll-margin-top: 76px;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

.section-title h2 {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}

.section-title h2:after {
    content: "";
    position: absolute;
    display: inline-block;
    width: 150px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.section-title p {
    margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    width: 100%;
    min-height: 100vh;
    position: relative;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.hero img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero:before {
    content: "";
    background: color-mix(in srgb, var(--background-color), transparent 62%);
    position: absolute;
    inset: 0;
    z-index: 2;
}

.hero .container {
    position: relative;
    z-index: 3;
}

/*---------------------------------------------------search-bar---------------------------------------------------*/
.search-input-box {
    position: relative;
    height: 65px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.search-input-box i,
.search-input-box .button {
    position: absolute;
    top: 50%;
    right: 0%;
    transform: translateY(-50%);
}

.search-input-box i {
    /* left: 16px; */
    font-size: 20px;
    color: #707070;
    /* border-right: 1px solid #ddd; */
    padding-right: 15px;
}

.search-input-box input {
    height: 100%;
    width: 100%;
    outline: none;
    font-size: 14px;
    font-weight: 400;
    border: none;
    padding: 0 155px 0 15px;
    background-color: transparent;
}

.search-input-box .button {
    right: 10px;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: #FFDF56;
    cursor: pointer;
}

.search-input-box .button:active {
    transform: translateY(-50%) scale(0.98);
}

/* Responsive */
@media screen and (max-width: 500px) {
    .search-input-box {
        height: 66px;
        margin: 0 8px;
    }

    .search-input-box i {
        left: 12px;
        font-size: 25px;
    }

    .search-input-box input {
        padding: 0 112px 0 10px;
    }

    .search-input-box .button {
        right: 12px;
        font-size: 14px;
        padding: 8px 18px;
    }
}

#hom-ban-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-height: 750px;
    overflow-y: scroll;
}

#slip-verify-form,
#don-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
}

#ban-form .input-box.active-grey .input-1,
#agent-body-edit.input-box.active-grey .input-1,
#don-form .input-box.active-grey .input-1,
#agent-create-form .input-box.active-grey .input-1,
#edit-member .input-box.active-grey .input-1,
#add-member-form .input-box.active-grey .input-1 {
    border: 1px solid #010745;
}

#ban-form .input-box.active-grey .input-label,
#agent-body-edit .input-box.active-grey .input-label,
#don-form .input-box.active-grey .input-label,
#agent-create-form .input-box.active-grey .input-label,
#add-member-form .input-box.active-grey .input-label,
#edit-member .input-box.active-grey .input-label {
    color: #000000;
    top: -10px;
    background: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 9px;
    transition: 250ms;
}

#ban-form .input-box.active-grey .input-label svg,
#agent-body-edit .input-box.active-grey .input-label svg,
#don-form .input-box.active-grey .input-label svg,
#agent-create-form .input-box.active-grey .input-label svg,
#edit-member .input-box.active-grey .input-label svg,
#add-member-form .input-box.active-grey .input-label svg {
    position: relative;
    width: 11px;
    height: 11px;
    top: 2px;
    transition: 250ms;
}

#ban-form .input-box,
#don-form .input-box,
#agent-body-edit .input-box,
#don-form .input-box,
#agent-create-form .input-box,
#edit-member .input-box,
#add-member-form .input-box {
    position: relative;
    margin: 0 0 20px 0;
}

#ban-form .input-box .input-label,
#agent-body-edit .input-box .input-label,
#don-form .input-box .input-label,
#agent-create-form .input-box .input-label,
#edit-member .input-box .input-label,
#add-member-form .input-box .input-label {
    position: absolute;
    color: #80868b;
    font-size: 16px;
    font-weight: 400;
    max-width: calc(100% - (2 * 8px));
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    left: 8px;
    top: 13px;
    padding: 0 8px;
    transition: 250ms;
    user-select: none;
    pointer-events: none;
}

#ban-form .input-box .input-label svg,
#agent-body-edit .input-box .input-label svg,
#don-form .input-box .input-label svg,
#agent-create-form .input-box .input-label svg,
#edit-member .input-box .input-label svg,
#add-member-form .input-box .input-label svg {
    position: relative;
    width: 15px;
    height: 15px;
    top: 2px;
    transition: 250ms;
}

#ban-form .input-box .input-1,
#agent-body-edit .input-box .input-1,
#don-form .input-box .input-1,
#agent-create-form .input-box .input-1,
#edit-member .input-box .input-1,
#add-member-form .input-box .input-1 {
    box-sizing: border-box;
    height: 46px;
    width: 100%;
    border-radius: 4px;
    color: #202124;
    border: 1px solid #dadce0;
    padding: 13px 15px;
    transition: 250ms;
    font-size: 12px;
}

#ban-form .input-box .input-1:focus,
#agent-body-edit .input-box .input-1:focus,
#don-form .input-box .input-1:focus,
#agent-create-form .input-box .input-1:focus,
#edit-member .input-box .input-1:focus,
#add-member-form .input-box .input-1:focus {
    outline: none;
    border: 2px solid #0012cb;
    transition: 250ms;
}

#ban-form .input-box.error .input-label,
#agent-body-edit .input-box.error .input-label,
#don-form .input-box.error .input-label,
#agent-create-form .input-box.error .input-label,
#edit-member .input-box.error .input-label,
#add-member-form .input-box.error .input-label {
    color: #f44336;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

#ban-form .input-box.focus .input-label,
#ban-form .input-box.active .input-label,
#agent-body-edit .input-box.focus .input-label,
#agent-body-edit .input-box.active .input-label,
#don-form .input-box.focus .input-label,
#don-form .input-box.active .input-label,
#agent-create-form .input-box.focus .input-label,
#agent-create-form .input-box.active .input-label,
#edit-member .input-box.focus .input-label,
#edit-member .input-box.active .input-label,
#add-member-form .input-box.focus .input-label,
#add-member-form .input-box.active .input-label {
    color: #0012cb;
    top: -8px;
    background: #fff;
    font-size: 11px;
    transition: 250ms;
}

#ban-form .input-box.active .input-1,
#agent-body-edit .input-box.active .input-1,
#don-form .input-box.active .input-1,
#agent-create-form .input-box.active .input-1,
#edit-member .input-box.active .input-1,
#add-member-form .input-box.active .input-1 {
    border: 2px solid #0012cb;
}

.home-slip {
    margin: 20px 0;
}

.home-slip .organi-card.organi-pro-card {
    padding: 5px;
    border-radius: 6px;
}

.required.input-label {
    position: relative;
}

.required.input-label:after {
    color: #e32;
    content: '*';
    display: inline;
    position: absolute;
    top: 0;
    left: 0;
}

.on-tax-only {
    margin: 20px 0 0;
}

.ban-form-btn {
    padding: 12px 25px;
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    background: #010745;
    width: 100%;
    border-radius: 6px;
    color: #fff;
    text-transform: uppercase;
    margin: 40px 0 0;
}

.ban-form-check label {
    color: #000;
    font-size: 12px;
}

.ban-form-check .form-check-input[type=checkbox] {
    border-radius: .25em;
    border-color: #010745;
    margin-right: 10px;
}

.payment-mode {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px auto;
}

.payment-mode h5,
.verify-slip h5 {
    color: #000;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
}

.payment-btns {
    background: var(--accent-color);
    padding: 6px;
    border-radius: 4px;
    display: inline-block;
    align-items: center;
}

.payment-btns .pay {
    background: var(--contrast-color);
    /* padding: 4px 12px; */
    border: none;
    font-size: 12px;
    line-height: 21px;
    font-weight: 600px;
    color: #222;
    border-radius: 4px;
    text-transform: uppercase;
}

.payment-btns .pay.active {
    background: var(--title-color);
    color: #fff;
}

.verify-slip {
    margin: 40px auto;
}

.email-input input {
    height: 35px;
    font-size: 12px;
    padding: 0 12px;
    border: 1px solid #eee;
    border-radius: 4px;
}

.otp-input input {
    width: 60px !important;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    text-align: center;
    margin: 0 6px;
    border: 1px solid var(--accent-color);
    border-radius: 4px;
}

.otp-input input::-webkit-outer-spin-button,
.otp-input input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp-input input[type=number] {
    -moz-appearance: textfield;
}

.verify-btn button {
    background: #010745;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border: none;
    padding: 11px 15px;
    border-radius: 6px;
    text-transform: uppercase;
}

.slip-li {
    box-shadow: 0 4px 8px 0 rgba(185 185 185 / 22%), 2px 6px 20px 12px rgb(185 185 185 / 2%);
    height: 50px;
}

.slip-table tbody,
.slip-table td,
.slip-table tfoot,
.slip-table th,
.slip-table thead,
tr.slip-li {
    color: #222;
    font-size: 13px;
}

.slip-table td {
    padding: 0 10px;
}

.slip_date {
    font-weight: 700;
}

/*--------------------------------------------------------------
# Login Page
--------------------------------------------------------------*/
.img-bg {
    background: #010745;
    height: 100%;
}

.img-side {
    padding: 150px 0 0 180px;
}

.img-side h1 {
    font-size: 65px;
    line-height: 75px;
    color: #fff;
    font-weight: 700;
}

.img-bg img {
    width: 53%;
}

.login-sec {
    /* height: 100%; */
    margin: auto;
    width: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.login-text {
    margin: 0 0 30px;
}



.login-text h3 {
    font-size: 35px;
    font-weight: 700;
    line-height: 42px;
    color: var(--title-color);
    margin: 0 0 20px;
    text-transform: capitalize;
}

.login-text p {
    font-size: 20px;
    line-height: 30px;
    color: #222;
}

.login-submit {
    margin: 40px 0 0;
}

.login-submit button,
.login-submit a {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
}

.login-submit button:hover,
.login-submit a:hover {
    background-color: var(--title-color);
    color: #fff;
}

.login-submit button:disabled,
.login-submit a:disabled {
    cursor: not-allowed;
    background-color: var(--accent-color);
    color: #000;
}

/* Apply hover only to enabled buttons */
.login-submit button:not(:disabled):hover,
.login-submit a:not(:disabled):hover {
    background-color: var(--title-color);
    color: #fff;
}



#login {
    padding: 0;
}

#login-form label {
    display: block;
    font-size: 12px;
    line-height: 22px;
    margin: 0 0 5px;
    font-weight: 600;
    color: var(--title-color);
}

#login-form .input-withicon {
    position: relative;
    margin: 0 0 20px;
}

#login-form .input-withicon i {
    position: absolute;
    top: 53%;
    right: 2%;
    color: #B5B5B5;
    font-size: 16px;
}

#login-form input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    color: #222;
    border-radius: 6px;
    border: 1px solid var(--accent-color);
    display: block;
    font-size: 16px;
    line-height: 26px;
    margin: 0 0 5px;
    font-weight: 600;
}

#login-form ::placeholder {
    color: #A4A4A4;
    font-weight: 400;
}

#login-form input:focus-visible {
    outline: none;
    border: 2px solid #0012cb;
    transition: 250ms;
}

#login-form .otp-input {
    margin: 0 0 20px;
}

#login-form .otp-input input {
    margin: 0 10px 0 0;
    height: 70px;
    width: 110px;
}

.login-sec p {
    margin: -2px;
    font-size: 15px;
}

.login-sec a {
    text-decoration: underline;
    color: var(--title-color);
    font-weight: bolder;
}

.otp-msg {
    display: flex;
    align-items: center;
    margin: 15px 0 0;
}

.otp-msg h6,
.otp-msg p {
    font-size: 12px;
    padding: 0 0 0 10px;
    margin: 0
}

.otp-msg h6 {
    margin: 0;
}

.otp-msg p em {
    font-weight: 700;
    font-size: 13px;
    color: #0012cb;
    font-style: normal;
}

.botm-login {
    margin: 15px 0;
}

.botm-login span {
    margin-left: 30px;
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .faq-container .faq-item {
    background-color: var(--surface-color);
    position: relative;
    padding: 20px;
    margin-bottom: 15px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-radius: 5px;
    overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
    margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px 0 0;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.faq .faq-container .faq-item h3 .num {
    color: var(--accent-color);
    padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
    display: grid;
    grid-template-rows: 0fr;
    transition: 0.3s ease-in-out;
    visibility: hidden;
    opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
    margin-bottom: 0;
    overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 16px;
    line-height: 0;
    transition: 0.3s;
    cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
    color: var(--accent-color);
}

.faq .faq-container .faq-active {
    background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
    color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
    grid-template-rows: 1fr;
    visibility: visible;
    opacity: 1;
    padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
    transform: rotate(90deg);
    color: var(--accent-color);
}

/*-----------------------------------------COUNTER----------------------------------------------*/
.stats-count {
    box-shadow: 0 4px 8px 0 rgb(0 0 0 / 41%);
    padding: 16px;
    text-align: center;
    color: #010745;
    width: 150px;
    border-radius: 0;
    border-bottom-left-radius: 15px;
    border-top-right-radius: 15px;
    background: #FBECAC;
    background: linear-gradient(180deg, rgba(251, 236, 172, 1) 0%, rgba(255, 214, 38, 1) 65%, rgba(255, 214, 38, 1) 100%);
}

.stats-count em,
.stats-count em span {
    font-size: 50px;
    line-height: 60px;
    font-weight: 800;
    font-style: normal;
    font-weight: bolder;
    margin: 10px 5px;
}

.stats-card h5 {
    font-size: 16px;
    line-height: 26px;
    color: #fff;
    margin: 15px 0 6px 0;
    text-align: center;
}

.stats-card em,
.stats-card em span {
    font-style: normal;
    font-weight: bolder;
    margin: 10px 5px;
    font-size: 45px;
    line-height: 75px;
}

.footer-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
}

.footer-menu ul li a {
    padding: 0 10px;
    color: #000000;
    font-weight: 700;
    font-size: 16px;
}

/*-----------------------------------------
-----------------------------------------**
AGENT PROFILE PAGE
-----------------------------------------**
----------------------------------------------*/
.inner-pg-title {
    background: var(--title-color);
    width: 100%;
    margin: 100px 0 0px;
    padding: 20px;
}

.inner-title h1 {
    font-size: 30px;
    line-height: 40px;
    color: #fff;
    font-weight: 700;
    margin: 0;
}

.title-button button {
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
}

.body-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.agent-card-head {
    background: #B9C3F7;
    background: linear-gradient(180deg, rgba(185, 195, 247, 1) 0%, rgba(217, 226, 255, 1) 45%, rgba(205, 215, 250, 1) 100%);
    text-align: center;
    position: relative;
    padding: 10px;
    border-radius: 10px;
    min-height: 150px;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.agent-card-head a i {
    position: absolute;
    top: 2%;
    right: 2%;
    font-size: 25px;
    color: var(--title-color);
}

.agent-card-head h5 {
    font-size: 16px;
    font-weight: 700;
    margin: 15px 0 0;
}

.agent-pic img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    margin: auto;
    border-radius: 50px;
}

.agent-card-body {
    border: 1px solid #DADDFF;
    padding: 10px;
    border-radius: 10px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}

.body-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
}

.agent-body-edit {
    float: right;
    background: transparent;
    border: none;
}

.agent-body-edit i {
    color: #010745;
    font-weight: bolder;
    font-size: 20px;
}



.body-list li span {
    width: 30%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    float: left;
    display: inline-block;
}

.body-list li span i {
    font-size: 13px;
    padding-right: 6px;
}

.body-list li p {
    width: 70%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    text-align: left;
    display: inline-block;
    white-space: normal;
}

/*-----------------------------------------
-----------------------------------------**
Collection Summary PAGE
-----------------------------------------**
----------------------------------------------*/
.fin-select label {
    font-size: 13px;
    margin: 5px 0 8px;
}

.finance-dropdown {
    margin: 0 0 40px;
}

.collection-table table {
    width: 100%;
}

.collection-table thead {
    background: #ced8fb;
    height: 40px;
}

.collection-table thead th,
.collection-table tbody td {
    padding: 15px;
}

.collection-table tbody tr {
    background: #F9F9F9;
    border-top: 7px solid #fff;
    border-bottom: 7px solid #fff;
}

.collection-table button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.collection-table button i {
    color: #d90000;
    font-weight: bolder;
}


@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    .collection-table table,
    .collection-table thead,
    .collection-table tbody,
    .collection-table th,
    .collection-table td,
    .collection-table tr {
        display: block;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .collection-table thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .collection-table tr {
        margin: 0 0 1rem 0;
    }

    .collection-table tr:nth-child(odd) {
        background: #ccc;
    }

    .collection-table td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

    .collection-table td:before {
        position: absolute;
        top: 0;
        left: 6px;
        width: 45%;
        padding-right: 10px;
        white-space: nowrap;
    }

    /* .collection-table td:nth-of-type(1):before {
        content: "Date";
    }

    .collection-table td:nth-of-type(2):before {
        content: "Cash";
    }

    .collection-table td:nth-of-type(3):before {
        content: "Online";
    }

    .collection-table td:nth-of-type(4):before {
        content: "Kind";
    }

    .collection-table td:nth-of-type(5):before {
        content: "Number of Slips";
    }

    .collection-table td:nth-of-type(6):before {
        content: "Total";
    }

    .collection-table td:nth-of-type(7):before {
        content: "Download";
    } */
}


/* // Management tabel  */

.collection-table-1 thead th,
.collection-table-1 tbody td {
    padding: 8px;
    font-size: 13px;
}

.collection-table-1 td:before {
    position: relative;
    top: 0;
    left: 6px;
}

.collection-table-1 table {
    width: 100%;
}

.collection-table-1 thead {
    background: #DDDDDD;
    height: 40px;
}

.collection-table-1 thead th,
.collection-table-1 tbody td {
    padding: 15px;
}

.collection-table-1 tbody tr {
    background: #F9F9F9;
    border-top: 7px solid #fff;
    border-bottom: 7px solid #fff;
}

.collection-table-1 button {
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.collection-table-1 button i {
    color: #03ab03;
    font-weight: bolder;
}


@media only screen and (max-width: 760px),
(min-device-width: 768px) and (max-device-width: 1024px) {

    /* Force table to not be like tables anymore */
    .collection-table-1 table,
    .collection-table-1 thead,
    .collection-table-1 tbody,
    .collection-table-1 th,
    .collection-table-1 td,
    .collection-table-1 tr {
        display: block;
    }

    .collection-table-1 thead th,
    .collection-table-1 tbody td {
        padding: 8px;
    }

    /* Hide table headers (but not display: none;, for accessibility) */
    .collection-table-1 thead tr {
        position: absolute;
        top: -9999px;
        left: -9999px;
    }

    .collection-table-1 tr {
        margin: 0 0 1rem 0;
    }

    table th,
    table td {
        text-align: left;
        padding: 8px;
    }

    .mob-th {
        font-weight: bolder;
        font-size: 12px;
        margin: 0 15px 0 0;
        float: left;
        text-align: start;
    }

    .collection-table-1 tr:nth-child(odd) {
        background: #ccc;
    }

    .collection-table-1 td {
        border: none;
        border-bottom: 1px solid #eee;
        position: relative;
        padding-left: 50%;
    }

}

.add-member {
    float: left;
}

.add-member button {
    color: var(--title-color);
    font-weight: bolder;
    background: none;
    font-size: 15px;
    line-height: 45px;
    border: none;
    text-decoration: underline;
}

/*-----------------------------------------
-----------------------------------------**
Collection DETAIL PAGE
-----------------------------------------**
----------------------------------------------*/
#popup1 h4 {
    font-size: 16px;
}

.overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    transition: opacity 500ms;
}

.overlay:target {
    visibility: visible;
    opacity: 1;
}

.popup {
    max-height: 600px;
    overflow-y: scroll;
    margin: 70px auto;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}


.popup .close:hover {
    color: var(--accent-color);
}

.popup .content {
    max-height: 30%;
}

.popup-bottom {
    margin: 0 0;
    text-align: center;
}

.popup-bottom button {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
    margin-bottom: 0px;
}

@media screen and (max-width: 700px) {
    .popup {
        width: 90%;
    }

    .popup {
        padding: 30px 15px;
    }
}

.coll-det-card {
    border-radius: 10px;
    background: #B9C3F7;
    background: linear-gradient(180deg, rgba(185, 195, 247, 1) 0%, rgba(217, 226, 255, 1) 45%, rgba(205, 215, 250, 1) 100%);
    padding: 20px;
}

.coll-det-card ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.coll-det-card ul .coll_head {
    padding: 6px 15px;
    background: #ededed;
    margin: 0 0 15px;
    display: block;
}
.coll-det-card ul .coll_head span, .coll-det-card ul .coll_head p {
    display: block;
    width: 100%;
}
.coll-det-card ul .coll_head p {
    font-weight: 700;
}

.coll-det-card ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
}

.coll-det-card ul li span {
    width: 40%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    float: left;
    display: inline-block;
}

.coll-det-card ul li p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    text-align: left;
    display: inline-block;
    white-space: normal;
}

.col-det-butns {
    display: flex;
    justify-content: center;
    margin: 16px 0 0;
}

.col-det-butns a {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 6px 18px;
    border-radius: 6px;
    background-color: #FFDF56;
    cursor: pointer;
    margin: 0 6px;
}

.col-det-butns button {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 6px 18px;
    border-radius: 6px;
    background-color: #FFDF56;
    cursor: pointer;
    margin: 0 6px;
}

.badge-yellow {
    font-size: 12px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 6px 18px;
    border-radius: 6px;
    background-color: #FFDF56;
    cursor: pointer;
    margin: 0 6px;
}

.col-det-butns a.red {
    background: red;
    color: #fff;
}

.col-det-butns button.red {
    background: red;
    color: #fff;
}

.col-det-butns a.blue {
    background: var(--title-color);
    color: #fff;
}

/*-----------------------------------------
-----------------------------------------**
Financial Info   PAGE
-----------------------------------------**
----------------------------------------------*/
.blue-td {
    background: var(--title-color);
    color: #fff;
}

.blue-td em {
    font-style: normal;
    padding: 0 15px;
}

.publish {
    display: flex;
    justify-content: flex-end;
    margin: 20px 0;
}

.publish button {
    color: var(--dark-color);
    background: var(--accent-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    display: flex !important;
    text-align: center;
    justify-content: center;
}

/*-----------------------------------------
-----------------------------------------**
Helpdesk  PAGE
-----------------------------------------**
----------------------------------------------*/
.helpdesk-div {
    text-align: center;
    padding: 20px;
    background: #FFF;
    margin: 0 0 40px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(255, 251, 233, 1) 65%, rgba(255, 245, 204, 1) 100%);
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

.helpdesk-div i {
    font-size: 50px;
    color: var(--title-color);
    font-weight: 800;
}

.helpdesk-div h4 {
    font-size: 24px;
    line-height: 34px;
    color: var(--title-color);
    font-weight: 700;
}

.helpdesk-div p,
.helpdesk-div p a {
    font-size: 16px;
    line-height: 26px;
    color: var(--title-color);
    font-weight: 500;
    margin: 0;
}

.cont-help {
    background: #fff;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    margin: 25px 0;
}

.cont-help p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 500;
    color: #000;
    margin: 0;
}

.cont-help button {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0;
    margin-left: 20px;
    text-decoration: underline;
}

.popup3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--title-color);
    margin-left: 20px;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
}



/*-----------------------------------------
-----------------------------------------**
Transaction history  PAGE
-----------------------------------------**
----------------------------------------------*/
.trans-head {
    text-align: center;
}

.trans-head h1 {
    font-size: 27px;
    line-height: 37px;
    color: var(--title-color);
    font-weight: 800;
}

.trans-head h4 {
    font-size: 20px;
    line-height: 30px;
    color: #222;
    font-weight: 600;
    margin: 15px 0 7px;
}

.trans-head p {
    font-size: 18px;
    line-height: 28px;
    color: #222;
    font-weight: 500;
    margin: 0 0 5px;
}

.agent-sec {
    margin: 50px 0;
}

.agent-div {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.agent-div li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
}

.agent-div li span {
    width: 40%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    float: left;
    display: inline-block;
}

.agent-div li p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    text-align: left;
    display: inline-block;
    white-space: normal;
}

.agent-div-pic {
    text-align: center;
    padding: 12px;
}

.total-donation {
    margin: 0 0 40px;
}

.total-donation span {
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 50px;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
    background: #010745;
    width: 100%;
    min-width: 180px;
    height: 100%;
    margin: 0 0 10px;
}

.total-donation h5 {
    color: var(--accent-color);
    font-size: 24px;
    line-height: 34px;
    font-weight: 700;
}

.total-donation p {
    font-size: 12px;
    line-height: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--contrast-color);
}

.donation-det-card ul {
    list-style: none;
    padding: 20px;
    margin: 0;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

.donation-det-card .head ul {
    background: #f9f9f9;
    padding: 12px;
    list-style: none;
    margin: 0;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

.donation-det-card ul li,
.donation-det-card .head ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
}

.donation-det-card ul li span,
.donation-det-card .head ul span {
    width: 40%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    float: left;
    display: inline-block;
}

.donation-det-card ul li p,
.donation-det-card .head ul li p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    display: inline-block;
    white-space: normal;
}

.donation-det-card .head ul span em {
    font-size: 11px;
    font-style: normal;
    font-weight: normal;
    display: block;
}

.donation-det-card .head .cancel-img {
    float: right;
}

.donation-det-card .head .cancel-img img {
    width: 15%;
    float: right;
}

/*-----------------------------------------
-----------------------------------------**
ORGANIZATION PROFILE  PAGE
-----------------------------------------**
----------------------------------------------*/
.responsive-tabs {
    padding: 1rem;
}

.responsive-tabs .nav-tabs {
    display: none;
}

@media (min-width: 768px) {
    .responsive-tabs .nav-tabs {
        display: flex;
    }

    .responsive-tabs .card {
        border: none;
    }

    .responsive-tabs .card .card-header {
        display: block;
    }

    .responsive-tabs .card .collapse {
        display: block;
    }
}

@media (max-width: 767px) {
    .responsive-tabs .tab-pane {
        display: block !important;
        opacity: 1;
    }
}

.org-card-body1 {
    padding: 40px;
    background: #f9f9f9;
    margin-bottom:10px;
}

.box {
    position: relative;
}


.about-edit {
    display: flex;
    /* float: right; */
    /* justify-content: flex-end; */
    margin: 10px;
    position: absolute;
    left: 97%;
    top: 0.5%;
}

.about-edit button {
    background-color: transparent;
    border: none;
}

.about-edit i {
    color: #03ab03;
    font-weight: bolder;
}

.register-edit {
    float: right;
    margin: 10px 0;
    position: absolute;
    right: 0;
    z-index: 1;
}

.register-edit button {
    background-color: transparent;
    border: none;
}

.register-edit i {
    color: #03ab03;
    font-weight: bolder;
}

.org-card-body1 h4 {
    font-size: 14px;
    font-weight: 700;
    line-height: 24px
}

.org-card-body1 textarea {
    border: none;
}

.nav.nav-tabs.org-btn-tabs {
    margin: 0 0 40px;
    border: none;
    text-align: center;
    display: flex;
    justify-content: center;
}

.nav.nav-tabs.org-btn-tabs .nav-item .nav-link {
    background: #FFF8DB;
    color: #222;
    font-weight: 600;
    font-size: 16px;
    padding: 6px 27px;
    border-radius: 4px;
    margin: 6px 5px;
    border: none
}

.nav.nav-tabs.org-btn-tabs .nav-item .nav-link.active {
    background: var(--title-color);
    color: #fff;
}

.org-register,
.org-contact {
    position: relative;
}

.org-register ul,
.org-contact ul {
    list-style: none;
    padding: 0;
}

.org-register ul li,
.org-contact ul li {
    display: flex;
    padding: 5px 0;
    align-items: center;
}

.org-register h6 {
    font-weight: 700;
    background: #ced8fb;
    border: 1px solid #ced8fb;
    padding: 10px 25px;
    display: inline-block;
    float: left;
    border-radius: 4px;
}

.org-register ul li span,
.org-contact ul li span {
    background: #F9F9F9;
    padding: 5px 15px;
    width: 30%;
    color: #000;
    font-weight: 700;
    font-size: 13px;
    line-height: 17px;
    float: left;
    display: inline-block;
    margin: 0 15px 0 0;
}

.org-register ul li p,
.org-contact ul li p {
    width: 70%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 14px;
    line-height: 20px;
    text-align: left;
    display: inline-block;
    white-space: normal;
    border: 2px solid #F2F2F2;
    padding: 10px 15px;
}

.org-register ul li a span,
.org-contact ul li a span {
    font-size: 12px;
    display: inline-block;
    font-weight: 700;
    padding: 8px;
    margin: 0;
    width: 100%;
}

.org-reg-pic {
    height: 70px;
    object-fit: cover;
    border: 1px solid #eee;
}

.org-reg-pic img {
    width: 100%;
    height: 70px;
    object-fit: cover;
}

.text-success em {
    font-style: normal;
    color: #222;
}

.donate-btn {
    margin: 25px 0 0;
    display: flex;
    justify-content: center;
}

.donate-btn a {
    color: var(--dark-color);
    background: var(--accent-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    display: flex !important;
    text-align: center;
    justify-content: center;
}

.donate-btn-2 {
    margin: 25px 0 0;
}

.donate-btn button {
    color: var(--dark-color);
    background: var(--accent-color);
    font-size: 14px;
    line-height: 24px;
    font-weight: 700;
    padding: 8px 15px;
    border-radius: 5px;
    border: none;
    transition: 0.3s;
    display: flex !important;
    text-align: center;
    justify-content: center;
}


#org-fin ul {
    list-style: none;
    padding: 0px;
    margin: 0;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

#org-fin ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 15px;
}

#org-fin ul li span,
#org-fin ul .head span {
    width: 40%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    float: left;
    display: inline-block;
}

#org-fin ul li p,
#org-fin ul .head p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 24px;
    text-align: left;
    display: inline-block;
    white-space: normal;
}

#org-fin ul li p,
#org-fin ul .head button {
    background: transparent;
    border: none;
}

#org-fin ul .head {
    background: var(--title-color);
}

#org-fin ul .head span {
    float: none;
}

#org-fin ul .head em {
    color: #fff;
    font-weight: 500;
    font-size: 12px;
    font-style: normal;
}

#org-fin ul .head span,
#org-fin ul .head p {
    color: #fff;
}

#org-fin ul .head p {
    text-align: end;
}

#org-fin ul .head p i {
    color: #05cf05;
    font-size: 16px;
}

.org-contact ul li span {
    width: 20%;
    display: flex;
    align-items: center;
}

.org-contact ul li p {
    width: 80%;
}

.org-contact ul li span i {
    font-size: 12px;
    background: var(--title-color);
    padding: 8px;
    border-radius: 50%;
    color: #fff;
    width: 25px;
    height: 25px;
    line-height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 10px;
}

/*-----------------------------------------
-----------------------------------------**
REGISTERATION  PAGE
-----------------------------------------**
----------------------------------------------*/
.reg-left-side {
    background: #F1F2F9;
    padding: 50px;
    border-radius: 20px;
    /* height: 100%; */
    display: flex;
    flex-direction: column;
    gap: 150px;
    position: sticky;
    top: 10%;
}

.reg-left-side ul {
    padding: 0;
    text-align: left;
    display: block;
}

.reg-left-side ul .nav-item {
    text-align: left;
    display: flex;
    align-items: center;
    margin: 0 0 50px;
}

.reg-left-side ul .nav-item:last-of-type {
    margin: 0;
}

.reg-left-side ul .nav-item .reg-nav {
    text-align: left;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    background: none;
}

.reg-left-side ul .nav-item small {
    position: relative;
    width: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 15px;
    border-radius: 6px;
    font-weight: 700;
    color: #767676;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--contrast-color);
    margin-right: 14px;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

.reg-left-side ul .nav-item small::before {
    position: absolute;
    content: "";
    top: 45px;
    left: 16px;
    width: 3px;
    height: 45px;
    background: #D2CEFF;
}

.reg-left-side ul .nav-item:last-of-type small::before {
    display: none;
}

.reg-left-side ul .nav-item.active small::after {
    position: absolute;
    content: "";
    top: 40px;
    left: 16px;
    width: 3px;
    height: 58px;
    background: var(--title-color);
}

.reg-left-side ul .nav-item.active small {
    background: var(--title-color);
    color: var(--contrast-color);
}

.reg-left-side ul .nav-item .reg-nav em {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    display: block;
    font-style: normal;
}

.reg-footer {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.reg-footer h6 {
    text-align: left;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: #000;
    display: inline-block;
    background: none;
}

.reg-footer p {
    font-size: 13px;
    font-weight: 500;
    color: #222;
    display: block;
    font-style: normal;
    margin: 0;
}

.reg-footer .foot-icon {
    width: 40px;
    height: 40px;
    line-height: 40px;
    background: #fff;
    border-radius: 6px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.reg-footer .foot-icon i {
    font-size: 25px;
    color: #000;
    font-weight: bolder;
}

.reg-footer {
    display: flex;
    align-items: center;
}

.reg-right-side {
    background: #fff;
    padding: 20px;
    border-radius: 30px;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

.org-profile-img {
    height: 70px;
    object-fit: cover;
    overflow: hidden;
}

.reg-right-side .tab-pane h4 {
    text-align: left;
    border: none;
    font-size: 24px;
    font-weight: 700;
    color: var(--title-color);
    display: inline-block;
    margin: 0 0 30px;
}

.reg-right-side .tab-pane h5 {
    text-align: left;
    border: none;
    font-size: 18px;
    font-weight: 700;
    color: var(--title-color);
    display: inline-block;
    margin: 35px 0 15px;
}



.regd-input label {
    font-size: 14px;
    line-height: 24px;
    margin: 0 0 8px;
    font-weight: 600;
}

.regd-input .form-select {
    height: 50px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #a5a5a5;
}

.regd-input .form-control {
    height: 50px;
    font-size: 14px;
    line-height: 24px;
    font-weight: 500;
    color: #000;
}

.regd-input .form-control::placeholder {
    color: #a5a5a5;
}

.upload-box {
    border-radius: 8px;
    border: 1px solid #e1e1e1;
    padding: 10px;
}

.upload-label {
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 55px;
    cursor: pointer;
    color: var(--title-color);
    font-weight: 700;
    position: relative;
    transition: 0.3s;
    font-size: 12px;
}

.upload-label:hover {
    border-color: #4285f4;
    color: #4285f4;
}

.upload-label svg {
    margin-left: 12px;
    fill: #4285f4;
}

.upload-box input[type="file"] {
    display: none;
}

.file-types {
    margin-top: 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.file-types .badge {
    font-size: 11px;
    line-height: 16px;
    background-color: #f1f1f1;
    color: #333;
    border-radius: 5px;
    padding: 3px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.manage__btns .save i,
.manage__btns .add i {
    font-size: 12px;
    margin-left: 7px;
}

.manage__btns .save,
.manage__btns .add {
    font-size: 12px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
}

.manage__btns .save {
    background-color: var(--accent-color);
}

.manage__btns .add {
    background-color: #f9f9f9;
    margin-left: 15px;
}

/*-----------------------------------------
-----------------------------------------**
REGISTERATION  PAGE
-----------------------------------------**
----------------------------------------------*/
.org-register.certifi-tabular {}

.org-register.certifi-tabular ul .head {
    background: var(--title-color);
}

.org-register.certifi-tabular ul .head span,
.org-register.certifi-tabular ul .head p {
    color: #fff;
    background: none;
    border: none
}

.org-register.certifi-tabular ul .head p {
    text-align: end;
}

/*-----------------------------------------
-----------------------------------------**
CERTIFICATE PAGE
-----------------------------------------**
----------------------------------------------*/
.certi-header {
    padding: 0;
    background: var(--title-color);
    overflow: inherit;
    margin: 0 0 0;
    padding: 35px 0 0;
}

.certi-head-left img {
    width: 100%;
    max-width: 120px;
    padding: 5px 0;
}

.certi-head-sec {
    position: relative;
    z-index: 0;
    overflow: inherit;
    margin-top: 60px;
}


.certi-head-rt button {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    text-transform: uppercase;
}

.certi-nameby {
    padding: 12px 0;
}

.certi-nameby-left h5,
.certi-nameby-left p {
    color: #000;
    font-weight: 600;
    font-size: 12px;
    line-height: 17px;
}

.certi-nameby-left p {
    margin: 0
}

.certi-nameby-left .name,
.certi-nameby-left .amount {
    color: var(--title-color);
    font-weight: 800;
    font-size: 18px;
    line-height: 28px;
    font-style: normal;
    text-decoration: underline
}

.certi-nameby-left h4 {
    color: var(--title-color);
    font-weight: 800;
    font-size: 22px;
    line-height: 32px;
}

.certi-nameby-left h1 {
    background: #FFF8DB;
    color: #000;
    font-weight: 800;
    font-size: 18px;
    line-height: 27px;
    padding: 10px;
    display: inline-block;
}

.org-register.certifi-tabular ul li span {
    width: 50%;
}

.org-register.certifi-tabular ul li p {
    width: 50%;
}

#certificate {
    padding: 0 0 30px;
}

.certi-nameby-rt ul {
    list-style: none;
    padding: 0px;
    margin: 0;
}

.certi-nameby-rt ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 2px 10px;
}

.certi-nameby-rt ul li span {
    width: 40%;
    color: #000;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    float: left;
    display: inline-block;
}

.certi-nameby-rt ul li p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 15px;
    line-height: 17px;
    text-align: left;
    display: inline-block;
    white-space: normal;
}

.certi-nameby-rt ul li.head {
    margin: 0 0 10px;
}

.certi-org-details ul {
    background: #FFF8DB;
    padding: 10px;
}

.certi-org-details ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
}

.certi-org-details ul li span {
    width: 40%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 24px;
    float: left;
    display: inline-block;
    background: none;
    padding: 0;
}

.certi-org-details ul li p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 18px;
    line-height: 24px;
    text-align: left;
    display: inline-block;
    white-space: normal;
    border: none;
    padding: 0 15px;
}

.certi-note {
    background: #FFF8DB;
    padding: 10px;
    margin: 10px 0;
}

.certi-note p {
    font-size: 11px;
    line-height: 14px;
    margin: 0;
}

.certi-footer-top {
    margin: 15px 0;
}

.certi-footer-top .certi-footer-left ul,
.certi-footer-top .certi-footer-rt ul {
    list-style: none;
    padding: 0;
}

.certi-footer-top .certi-footer-left ul li {
    font-size: 15px;
    font-weight: 500;
}

.certi-footer-top .certi-footer-rt ul li {
    font-size: 15px;
    font-weight: 500;
    text-align: right;
}

.certi-footer {
    background: #F9F9F9;
    padding: 4px;
    display: flex;
    justify-content: center;
}

.certi-footer ul {
    display: block;
    list-style: none;
    padding: 10px 0 0;
    margin: 0;
}

.certi-footer ul li {
    font-size: 15px;
    font-weight: 500;
    padding: 0 6px 0 0;
}

.certi-footer ul li span {
    font-weight: 800;
}

.footer-div {
    text-align: center;
}

.footer-div a img {
    max-width: 100px;
    margin: auto;
    text-align: center;
}

.footer-social {
    display: inline-block;
}

.footer-social a img {
    max-width: 22px;
    margin: 0 5px;
}

/*----------------------------------------------------ORGANIZATION DONATION-----------------------------------------------------------*/
.organi-card {
    background: #Fff;
    position: relative;
    padding: 20px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
}

.organi-card button {
    padding: 8px 25px;
    font-size: 12px;
    border: none;
    background: none;
    line-height: 22px;
    font-weight: bolder;
    background: var(--accent-color);
    width: 35%;
    border-radius: 6px;
    color: #000;
    text-transform: uppercase;
    margin: 10px auto 0;
    text-align: center;
    display: inline-block;
    padding-left: 18px;
}

.organi-card-2.organi-pro-card {
    border: 1px solid #01074529;
    padding: 10px;
    border-radius: 10px;
    background: #B9C3F7;
    background: linear-gradient(180deg, rgba(185, 195, 247, 1) 0%, rgba(217, 226, 255, 1) 45%, rgba(205, 215, 250, 1) 100%);
}

.organi-card-2 button {
    padding: 8px 20px;
    font-size: 12px;
    border: none;
    background: none;
    line-height: 22px;
    font-weight: bolder;
    background: var(--accent-color);
    width: 100%;
    border-radius: 6px;
    color: #000;
    text-transform: uppercase;
    margin: 10px auto 0;
    text-align: center;
    display: inline-block;
    padding-left: 18px;
}


.organi-card a:hover {
    background: var(--title-color);
    color: #fff;
}

.organi-pic {
    display: flex;
    gap: 20px;
    align-items: center;
    margin: 0 0 10px;
}

.org-new-img {
    width: 110px;
    height: 110px;
    line-height: 110px;
    border-radius: 5px;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
}

.org-new-img img,
.org-new-img-2 img {
    width: 100%;
    border-radius: 5px;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
}

.org-new-img-2 {
    width: 30%;
    height: auto;
    line-height: 110px;
    border-radius: 5px;
    object-fit: cover;
    overflow: hidden;
    display: flex;
    justify-content: start;
    align-items: center;
}
.org-new-img-2.org-new-img-3 {
    width: 20%;
     display: flex;
    justify-content: start;
    align-items: center;
}
.organi-pic h4 {
    font-size: 14px;
    font-weight: 700;
}

.organi-info {
    border: 1px solid #DADDFF;
    border-radius: 6px;
    padding: 10px;
    margin: 0;
    height: 300px;
}

#ban-form .organi-info {
    height: auto;
}

.organi-info li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 6px;
}

.organi-info li span {
    width: 30%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    float: left;
    display: inline-block;
}

.organi-info li span i {
    font-size: 13px;
    padding-right: 6px;
}

.organi-info li p {
    width: 70%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 13px;
    line-height: 20px;
    text-align: left;
    display: inline-block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*----------------------------------------------------ORGANIZATION PROFILE INFO-----------------------------------------------------------*/
.org-donation {
    padding: 80px 0;
}

.tab-heading h3 {
    font-size: 22px;
    font-weight: bolder;
    line-height: 32px;
    margin: 40px 0 10px;
}

.organi-card.organi-pro-card {
    border: 1px solid #B9C3F7;
    padding: 10px;
    border-radius: 10px;
    background: #B9C3F7;
    background: linear-gradient(180deg, rgba(185, 195, 247, 1) 0%, rgba(217, 226, 255, 1) 45%, rgba(205, 215, 250, 1) 100%);
}


.footer-social.organi-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    position: relative;
    bottom: 0;
    height: 65px;
}


.footer-social.organi-social a {
    background: none;
    padding: 4px;
    margin: 25px 0 10px;
}

.footer-social.organi-social-1 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
}

.footer-social.organi-social-1 a {
    background: none;
    padding: 4px;
    margin: 25px 0 10px;
}

.footer-social.organi-social-2 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}

.footer-social.organi-social-2 a {
    background: none;
    padding: 4px;
    margin: 10px 0;
}

.slip-butns .read-mor {
    background: none;
    font-weight: bolder;
    border: none;
    /* removes default border */
    padding: 0;
    /* removes default padding */
    cursor: pointer;
    /* shows pointer like a link */
    font-size: 14px;
    line-height: 22px;
    color: #000;
    text-decoration: underline;
    margin-right: 40px;
}



.slip-butns .read-mor:hover {
    text-decoration: none;
    background: none;
    color: var(--title-color);
}

.gen-search {
    margin: 40px 0;
}

.thanku-sec {
    position: relative;
    width: 100%;
    height: 80vh;
    background-size: cover;
    background-position: center center;
    background-repeat: none;
}

.thanku {
    text-align: center;
    margin: 120px 0;
}

.thanku i {
    font-size: 125px;
    line-height: 175px;
    text-align: center;
    font-weight: bolder;
    color: #ffdf56;
    padding: 0 0 50px;
}

.thanku h1 {
    font-size: 65px;
    line-height: 75px;
    text-align: center;
    font-weight: bolder;
    color: #fff;
    margin: 0 0 20px;
}

.thanku p {
    font-size: 30px;
    line-height: 40px;
    text-align: center;
    font-weight: 500;
    color: #eee;
    margin: 0;
}


/*--------------------------------------------------------------
# ABOUT PAGE
--------------------------------------------------------------*/
.about {
    padding-top: 60px;
    padding-bottom: 60px;
}

.about .content {
    padding-right: 20px;
}

.about .content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .about .content h2 {
        font-size: 25px;
    }

}

.about .content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.about .content p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
}

@media (max-width: 992px) {
    .about .content {
        padding-right: 0;
        margin-bottom: 3rem;
    }
}


@media (max-width: 768px) {

    .about .cta-wrapper {
        display: flex;
        gap: 1rem;
        align-items: center;
    }
}

@media (max-width: 576px) {
    .about .cta-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
}


.about .image-wrapper {
    position: relative;
    padding-left: 20px;
}

@media (max-width: 992px) {
    .about .image-wrapper {
        padding-left: 0;
        margin-top: 0;
    }
}

.about .image-wrapper .main-image {
    border-radius: 20px;
    box-shadow: 0 20px 40px color-mix(in srgb, var(--default-color), transparent 85%);
}

.about .image-wrapper .floating-card {
    position: absolute;
    bottom: 30px;
    left: -20px;
    background-color: var(--surface-color);
    border-radius: 15px;
    padding: 1.5rem;
    box-shadow: 0 15px 30px color-mix(in srgb, var(--default-color), transparent 80%);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

@media (max-width: 992px) {
    .about .image-wrapper .floating-card {
        left: 20px;
        bottom: 20px;
        padding: 1rem;
    }
}

@media (max-width: 576px) {
    .about .image-wrapper .floating-card {
        position: static;
        margin-top: 2rem;
    }
}

.about .image-wrapper .floating-card .card-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about .image-wrapper .floating-card .card-content i {
    font-size: 2rem;
    color: var(--accent-color);
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about .image-wrapper .floating-card .card-content .text h5 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.about .image-wrapper .floating-card .card-content .text span {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color), transparent 40%);
}

/*--------------------------------------------------------------
# How We Work Section
--------------------------------------------------------------*/
.how-we-work .steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    margin-bottom: 3rem;
}

@media (min-width: 992px) {
    .how-we-work .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .how-we-work .steps-grid {
        gap: 1.5rem;
    }
}

.how-we-work .step-card {
    background: var(--surface-color);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.how-we-work .step-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: var(--accent-color);
}

.how-we-work .step-card:hover .step-icon {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: scale(1.1);
}

.how-we-work .step-card:hover .step-arrow {
    transform: translateX(5px);
}

.how-we-work .step-card .step-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 80%) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.how-we-work .step-card .step-number {
    background: linear-gradient(135deg, #010745 0%, color-mix(in srgb, #010745, #ffffff 20%) 100%);
    color: var(--contrast-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 1rem;
}

.how-we-work .step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

@media (max-width: 576px) {
    .how-we-work .step-card h3 {
        font-size: 14px;
    }
}

.how-we-work .step-card p {
    font-size: 0.95rem;
    color: var(--default-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.how-we-work .step-card .step-arrow {
    position: absolute;
    top: 50%;
    right: -15px;
    width: 30px;
    height: 30px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    font-size: 0.9rem;
    transition: all 0.3s ease;
    z-index: 2;
}

@media (max-width: 991px) {
    .how-we-work .step-card .step-arrow {
        display: none;
    }
}

.how-we-work .step-card:last-child .step-arrow {
    display: none;
}

@media (max-width: 991px) {
    .how-we-work .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .how-we-work .steps-grid {
        grid-template-columns: 1fr;
    }

    .how-we-work .step-card {
        padding: 1rem;
    }
}

.terms-content h3 {
    font-weight: bolder;
    font-size: 35px;
    line-height: 45px;
    margin: 0px 0 10px;
}

.terms-content a {
    text-decoration: underline;
    font-weight: bolder;
}

.terms-content h6 {
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    margin: 10px 0;
}

.terms-content h4 {
    font-weight: 600;
    font-size: 20px;
    line-height: 30px;
    margin: 25px 0 10px;
}

#add-new-member {
    display: flex;
    align-items: center;
    justify-content: center;
}

#org-profile-edit {
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999;
}


.wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f8f9fa;
}

.form-box {
    max-width: 550px;
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-title {
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    /* border-bottom: 2px solid #20c997; */
}

.btn-group {
    display: grid;
    gap: 1rem;
}

.custom-btn {
    width: 100%;
    padding: 0.75rem;
    font-size: 1.25rem;
    border: 2px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease;
    border-radius: 0.375rem;
}

.yellow-btn {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--title-color);
}

.yellow-btn.active,
.yellow-btn:hover {
    background-color: var(--title-color);
    color: #fff;
    border-color: var(--accent-color);
    ;
}

.blue-btn {
    background-color: var(--accent-color);
    color: #000;
    border-color: var(--title-color);
}

.blue-btn.active,
.blue-btn:hover {
    background-color: var(--title-color);
    color: #fff;
    border-color: var(--accent-color);
    ;
}

.next-link {
    margin-top: 1.5rem;
    text-align: right;
}

.next-button {
    text-decoration: none;
    font-size: 1.25rem;
    /* color: #20c997; */
    transition: color 0.3s ease;
}

.next-button.disabled {
    color: #adb5bd;
    pointer-events: none;
    cursor: not-allowed;
}

.login-bottom a {
    color: #010745;
    text-decoration: underline;
    font-weight: 600;
}



.status-button {
    border-radius: 10px !important;
}

.status-button:hover {
    border-color: #010745;
}

.add-account {
    border: none;
    padding: 5px 20px;
    border-radius: 3px;
    font-size: 14px;
    font-weight: 500;
}

.#org-profile-tabs.generate-sec {
    padding: 40px 0;
}

#org-profile-tabs .container {
    max-width: 1200px;
    /* or any width you prefer */
    margin: 0 auto;
    padding: 0 15px;
}

.error-size {
    font-size: 12px;
    /* Popup container */
}

/* Content area */
#org-profile-edit .content {
    max-height: 75vh;
    padding-right: 10px;
    /* space for scrollbar */
}

/* Close button */
#org-profile-edit .close {
    font-size: 28px;
    font-weight: bold;
    color: #333;
    border: none;
    background: transparent;
    cursor: pointer;
    float: right;
}

/* Form inputs */
#org-profile-edit .input-box {
    /* margin-bottom: 16px; */
}

/* Labels */
#org-profile-edit .input-label {
    font-weight: 600;
    margin-bottom: 6px;
    display: block;
}


.fix-size {
    display: flex;
}

.fix_inp {
    width: 60%;
}

.over_flowinp {
    width: 100%;
    overflow-x: hidden !important;
}

.account-yellow-btn {
    background-color: #ffdf56;
    border: none;
    color: #000;
    font-size: 18px;
    line-height: 28px;
    font-weight: 700;
    border: none;
    padding: 10px 10px;
    border-radius: 6px;
}

.agent-popup {
    overflow-y: auto;
    padding: 30px 15px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    transition: all 0.3s ease-in-out;
}

.agent-popup .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}


.agent-popup .close:hover {
    color: var(--accent-color);
}

.agent-popup .content {
    max-height: 30%;
}

.agent-popup-bottom {
    margin: 25px 0 0;
    text-align: center;
}

.agent-popup-bottom button {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .agent-popup {
        width: 85%;
    }
}

.helpdesk {
    margin: 70px auto;
    padding: 30px 15px;
    background: #fff;
    border-radius: 5px;
    width: 40%;
    position: relative;
    margin-top: 150px;
    transition: all 5s ease-in-out;
}

.helpdesk .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}


.helpdesk .close:hover {
    color: var(--accent-color);
}

.helpdesk .content {
    max-height: 30%;
}

.helpdesk-bottom {
    margin: 25px 0 0;
    text-align: center;
}

.helpdesk-bottom button {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .helpdesk {
        width: 90%;
    }
}

.input-box {
    position: relative;
}

.preview-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}


.preview-img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.2s ease-in-out;
    border: 1px solid black;
    float: right;
}

.preview-img:hover {
    transform: scale(1.05);
}

.certificate-container {
    background: #fff;
    color: #000;
}


.btn-navy {
    background-color: #FFDF56 !important;
    color: #000 !important;
    border: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 0.25rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-navy:hover {
    background-color: #FFDF56 !important;
}

.hide-in-pdf {
    display: inline-block !important;
}




.popup1 {
    max-height: 600px;
    overflow-y: scroll;
    margin: 70px auto;
    margin-top: 30vh;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup1 .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}


.popup1 .close:hover {
    color: var(--accent-color);
}

.popup1 .content {
    max-height: 30%;
}

.popup1-bottom {
    margin: 25px 0 0;
    text-align: center;
}

.popup1-bottom button {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .popup1 {
        width: 70%;
    }
}


.popup2 {
    max-height: 600px;
    overflow-y: scroll;
    margin: 70px auto;
    margin-top: 30vh;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    width: 60%;
    position: relative;
    transition: all 5s ease-in-out;
}

.popup2 .close {
    position: absolute;
    top: 20px;
    right: 30px;
    transition: all 200ms;
    font-size: 30px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
}


.popup2 .close:hover {
    color: var(--accent-color);
}

.popup2 .content {
    max-height: 30%;
}

.popup2-bottom {
    margin: 25px 0 0;
    text-align: center;
}

.popup2-bottom button {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
    margin-bottom: 20px;
}

@media screen and (max-width: 700px) {
    .popup2 {
        width: 70%;
    }
}



#agent-login {
    padding: 0;
}

.agent-img-bg {
    width: 100%;
    height: 100vh;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: bottom center;
}

.agent-login-sec {
    display: block;
    position: absolute;
    top: 15%;
    right: 0;
}

.agent-login-sec .botm-login {
    margin: 30px 0 0;
}

.dropdown-menu {
    display: block;
    min-width: 10rem;
    padding: 0.5rem 0;
    margin: 0;
    font-size: 1rem;
    background-color: #fff;
    border: 1px solid rgba(0, 0, 0, .15);
    border-radius: 0.25rem;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, .175);
    z-index: 1000;
}


.position-absolute {
    right: 0px;
    top: 100%;
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 0.25rem;
    list-style: none;
    padding: 0.5rem 0;
    min-width: 150px;
    z-index: 1000;
}


.dropdown-item {
    background-color: #fff !important;
    color: #000 !important;
    width: 100%;
    border: none;
    padding: 0.5rem 1rem;
    text-align: left;
    cursor: pointer;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn {
    border: none;
    border-radius: 50%;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
}



.icon-btn:focus {
    outline: none;
    box-shadow: none;
}

/* Home Page Search */
.dropdown-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fdf6e3;
    color: #003366;
    border: 1px solid #003366;
    border-radius: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.dropdown-suggestions li {
    padding: 10px 15px;
    cursor: pointer;
    transition: all 0.2s;
    border-bottom: 1px solid rgb(201, 198, 198);
}

.dropdown-suggestions li:hover {
    background-color: #003366;
    color: #fdf6e3;
}

.registration-icon i {
    font-size: 20px;
}

.registration-icon i {
    border: 1px solid #003366;
    border-radius: 10px;
    padding: 9px 12px;
    cursor: pointer;
}

.horizontal-card {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.horiz-pic {
    width: 50%;
    height: 100%;
    max-width: 150px;
    max-height: 100px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
}

.horiz-pic img {
    width: 100%;
    height: 100%;
    max-width: 150px;
    max-height: 100px;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px;
}

.border-curve {
    border-radius: 3px;
    font-size: 18px;
    padding: 8px;
    background-color: var(--accent-color);
}

.signup-check input {
    padding: 0 !important;
    margin: 0 10px 0 0 !important;
    height: 20px !important;
    width: 20px !important;
}

/* --------------------------------------------------------------------------------------
----------------------------- Responsive ------------------------------------------
--------------------------------------------------------------------------------------- */
@media screen and (max-width: 1368px) {
    .stats-count {
        padding: 10px;
        width: 135px;
    }

    .stats-card em,
    .stats-card em span {
        margin: 10px 0px;
        font-size: 40px;
        line-height: 60px;
    }



    .img-side {
        padding: 150px 0 0 65px;
    }

    .img-side h1 {
        font-size: 45px;
        line-height: 55px;
    }

    .login-text h3 {
        font-size: 35px;
        line-height: 42px;
    }

    .login-text h3 {
        font-size: 35px;
        line-height: 42px;
    }

}

@media screen and (max-width: 768px) {
    .inner-pg-title {
        margin: 12px 0 0px;
    }

    .inner-title h1 {
        font-size: 20px;
        line-height: 30px;
    }

    .title-button button {
        font-size: 12px;
        line-height: 18px;
        padding: 10px 8px;
    }

    section,
    .section {
        padding: 30px 0;
    }

    .nav.nav-tabs.org-btn-tabs .nav-item .nav-link {
        font-size: 12px;
        padding: 6px 10px;
    }

    .nav.nav-tabs.org-btn-tabs {
        margin: 0 0 15px;
    }

    .org-card-body1 {
        padding: 10px;
    }

    .about-edit {
        left: 85%;
    }

    .responsive-tabs {
        padding: 15px 10px;
    }

    .collapse:not(.show) {
        display: block;
    }

    .org-register ul li,
    .org-contact ul li {
        padding: 5px 0;
    }

    .org-register ul li span,
    .org-contact ul li span {
        padding: 7px 10px;
        width: 40%;
        font-size: 12px;
        line-height: 18px;
        margin: 0 10px 0 0;
    }

    .org-contact ul li span {
        padding: 5px;
    }

    .org-register ul li p,
    .org-contact ul li p {
        width: 100%;
        margin: 0;
        font-size: 12px;
        line-height: 18px;
        padding: 7px 10px;
    }

    .form-control {
        display: block;
        width: 100%;
        font-size: 12px;
        line-height: 18px;
    }

    .collection-table thead th,
    .collection-table tbody td {
        padding: 8px;
        font-size: 12px;
    }

    .collection-table td:before {
        position: relative;
        top: 0;
        left: 6px;
    }

    .account-yellow-btn {
        font-size: 12px;
        line-height: 18px;
        padding: 6px 8px;
    }

    #org-fin ul li {
        padding: 6px 8px;
    }

    .contact-dash.bg-white.p-5 {
        padding: 1rem 0 0 !important;
    }

    .form-select {
        font-size: 12px;
        line-height: 18px;
    }

    .about .content .lead,
    .about .content p {
        font-size: 12px;
        margin-bottom: 10px;
        line-height: 18px;
    }

    .section-title {
        padding-bottom: 30px;
    }

    .section-title h2 {
        font-size: 25px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }

    .how-we-work .step-card .step-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        margin: 0 auto 1rem;
    }

    .how-we-work .step-card .step-number {
        padding: 0.3rem 0.6rem;
        font-size: 12px;
        letter-spacing: 0.5px;
        margin-bottom: 1rem;
    }

    .how-we-work .step-card p {
        font-size: 12px;
        line-height: 18px;
        margin-bottom: 0;
    }

    .faq-container .accordion-body {
        font-size: 12px;
    }

    .header .logo img {
        max-height: 45px;
    }

    .terms-content h6 {
        font-size: 13px;
        line-height: 18px;
        margin: 10px 0;
    }

    .terms-content h3 {
        font-size: 25px;
        line-height: 35px;
        margin: 0px 0 10px;
    }

    .terms-content h4 {
        font-size: 14px;
        line-height: 20px;
    }

    .terms-content ul li {
        font-size: 12px;
        line-height: 18px;
    }

    .helpdesk-div i {
        font-size: 20px;
    }

    .helpdesk-div {
        padding: 12px;
        margin: 0 0 20px;
    }

    .helpdesk-div h4 {
        font-size: 15px;
        line-height: 24px;
    }

    .helpdesk-div p,
    .helpdesk-div p a {
        font-size: 11px;
        line-height: 18px;
        font-weight: 500;
    }

    .cont-help {
        padding: 12px;
        margin: 15px 0;
        text-align: start;
        justify-content: space-between;
    }

    .cont-help p {
        font-size: 12px;
        line-height: 18px;
        width: 64%;
    }

    .popup3,
    .cont-help button {
        font-size: 12px;
        line-height: 20px;
        float: right;
    }

    .dropdown-menu.show.position-absolute {
        right: -15px;
        min-width: 100px;
    }

    .dropdown-menu.show.position-absolute .dropdown-item {
        padding: 0.2rem 1rem;
        font-size: 12px;
        font-weight: 600;
    }

    #slip-verify-form,
    #don-form {
        padding: 12px;
        margin: 0 0 20px;
    }

    .stats-count {
        padding: 12px;
        width: 90px;
    }

    .stats-card em,
    .stats-card em span {
        margin: 0;
        font-size: 30px;
        line-height: 40px;
    }

    .col-lg-5.col-xl-5.col-md-5.col-12.about-info.position-relative.offset-1 {
        margin: 0;
    }

    .stats-card h5 {
        font-size: 14px;
        line-height: 20px;
    }

    .otp-input input {
        width: 40px !important;
        height: 40px;
        line-height: 40px;
        font-size: 16px;
        margin: 0 5px;
    }

    .otp-input.d-flex.align-items-center.justify-content-between {
        display: block !important;
        float: left;
        width: 100%;
    }

    .otp-input .text-danger,
    .search-input-box .text-danger {
        font-size: 11px;
    }

    .go2072408551 {
        font-size: 12px;
    }

    .header .cta-btn,
    .header .cta-btn:focus {
        font-size: 12px;
        line-height: 18px;
        padding: 8px 15px;
    }

    .col-md-6.about-info.position-relative.offset-1 {
        margin: 0;
    }

    #hom-ban-form {
        padding: 20px;
        margin: 40px 0;
    }

    .gen-search {
        margin: 0px 0 20px;
    }

    .organi-pic {
        display: block;
        height: auto;
        margin: 0 auto 10px;
    }

    .org-new-img {
        margin: auto;
    }

    .organi-pic h4 {
        text-align: center;
    }

    .col-lg-4.col-md-6.col-12.footer-about.d-flex.justify-content-start.align-items-center,
    .col-lg-4.col-md-6.col-12.footer-about.d-flex.justify-content-end.align-items-center {
        justify-content: center !important;
    }

    .footer .footer-about .logo img {
        max-width: 85px;
        margin: 0 0 15px;
    }

    #org-donation .col-md-6.offset-2 {
        margin: 0;
    }

    .org-about-input p {
        font-size: 12px;
    }

    #don-form .text-danger {
        font-size: 11px;
    }

    .organi-info li span {
        width: 100%;
        font-size: 14px;
        line-height: 20px;
        margin: 0 0 6px;
    }

    .organi-info li p {
        width: 100%;
        font-size: 12px;
        line-height: 18px;
        white-space: normal;
    }

    .tab-heading h3 {
        font-size: 16px;
        line-height: 25px;
    }

    .organi-card.organi-pro-card h4 {
        font-size: 16px;
    }

    #login {
        padding: 0;
        width: 100% !important;
        min-width: 100%;
        overflow-x: hidden;
    }

    .img-side {
        padding: 80px 0 0 40px;
    }

    .img-side h1 {
        font-size: 40px;
        line-height: 50px;
    }

    .login-text {
        margin: 0 0 10px;
    }

    .login-sec {
        width: auto;
        padding: 20px;
    }

    .login-text h3 {
        font-size: 22px;
        line-height: 30px;
        margin: 0;
    }

    #login .d-flex.mt-2 {
        margin-top: 60px !important;
        display: block !important;
    }

    #login-form input {
        height: 40px;
        font-size: 13px;
    }

    .login-submit {
        margin: 10px 0 0;
    }

    .botm-login {
        position: relative;
        bottom: auto;
    }

    .login-sec p {
        margin: 0px 0 6px;
        font-size: 16px;
    }

    .botm-login p {
        margin: 8px 0 0;
        font-size: 12px;
    }

    #login .d-flex.mt-2 span {
        font-size: 14px;
        margin: 6px 0;
    }

    #agent-login .login-sec {
        width: 300px;
        padding: 0;
        margin: 0;
    }

    .org-reg-pic {
        height: auto;
    }

    .popup h4 {
        font-size: 16px;
        font-weight: 700;
    }

    #edit-member h6 {
        font-size: 16px;
        font-weight: 700;
    }

    .org-contact ul li span i {
        font-size: 11px;
        width: 20px;
        height: 20px;
        line-height: 20px;
        margin-right: 6px;
    }

    .org-contact {
        padding: 25px 0px 0;
    }

    #pane-contact .org-contact {
        margin: 25px 0px 0;
    }

    .accordion-button {
        padding: 10px;
        font-size: 14px;
    }

    .agent-login-sec {
        top: 33%;
    }

    .organi-card button {
        width: auto;
    }

    .org-donation {
        padding: 30px 0;
    }

    .login-bottom p {
        font-size: 12px;
        line-height: 16px;
    }

    .login-submit button,
    .login-submit a {
        font-size: 14px;
        line-height: 22px;
        padding: 8px 20px;
    }
}

@media screen and (max-width: 500px) {
    .collapse:not(.show) {
        display: block;
        padding: 12px;
    }

    #collapse-contact.collapse:not(.show) {
        padding: 0px;
    }
}

.edit-normal-border .input-1 {
    border: 1px solid #dadce0 !important;
}

.edit-upload-label {
    font-size: 11px;
    color: black;
    font-weight: 600;
}

.edit-upload {
    font-size: 12px;
    border: 1px solid #dadce0;
    padding: 10px;
    border-radius: 3px;
}

.registration-edit-icon.regd-input {
    border: 1px solid #00000024;
    border-radius: 4px;
    padding: 3px;
    cursor: pointer;
    margin: 0px 10px 20px;
}

.registration-edit-icon.regd-input i {
    font-size: 16px;
    color: black;
}

.swal-confirm,
.swal-confirm:hover {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: var(--accent-color);
    cursor: pointer;
    margin-bottom: 20px;
}

.swal-delete,
.swal-delete:hover {
    font-size: 14px;
    line-height: 22px;
    font-weight: 700;
    color: #000;
    border: none;
    padding: 10px 25px;
    border-radius: 6px;
    background-color: #f3f3f0;
    cursor: pointer;
    margin-bottom: 20px;
}

.search-image-org {
    width: 40px !important;
    height: 40px !important;
    border-radius: 5px;
    object-fit: cover !important;
    position: relative !important;
}

.search-org-id {
    font-size: 11px;
}

.cursor-pointer {
    cursor: pointer;
}

.donslip-card {
    background: #fff;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #e4e4e4;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}


.donslip-img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 8px;
}

.dropdown-suggestions {
    overflow-y: auto;
    /* still scrollable */
    scrollbar-width: none;
    /* Firefox */
}

.dropdown-suggestions::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari */
}

/* .org-tabs-section {
    margin-top: -170px !important;   
} */
/* Make collection head name bold + responsive */
.collection-head-name {
    font-weight: 700;
    color: #333;
    font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .collection-head-name {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .collection-head-name {
        font-size: 13px;
    }
}

.edit-icon-large {
    font-size: 15px;
}

.thanku-box h1 {
    margin-top: 10px;
    font-size: 44px;
    font-weight: 700;
    line-height: 1.2;
    color: #000;
}

.thanku-box p {
    color: #444;
    margin: 10px 0 0;
    font-size: 16px;
}

/* Slip Box*/
.slip-box {
    background: #ffffff;
    color: #000000;
    padding: 25px;
    border-radius: 12px;
    margin-top: 30px;
    border: none !important;
}

/* Amount*/
.slip-box h4 {
    color: #000;
    font-size: 32px;
    font-weight: 700;
}

/* Success-Failed */
.slip-box h5.success {
    color: #008000;
    font-size: 22px;
    font-weight: 700;
}

.slip-box h5.failed {
    color: #d60000;
    font-size: 22px;
    font-weight: 700;
}

/* Slip No + Date */
.slip-box p {
    margin: 6px 0;
    color: #000;
    font-size: 17px;
    font-weight: 500;
}

.slip-box p span,
.slip-box p strong {
    font-size: 19px;
    font-weight: 600;
    color: #000;
}

/* Download Button */
.download-btn {
    background: #ffdf56;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    color: #000;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    margin: 25px 0 40px;
}

.download-btn:hover {
    background: #e8c94b;
}

.home-btn {
    background: #008000;
    border: none;
    padding: 14px 25px;
    border-radius: 6px;
    color: #fff;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
    margin-left:10px;
}

.home-btn:hover {
    background: #e8c94b;
}

/* Remove Go Back button */
.go-back-btn-fixed {
    display: none !important;
}

/* Responsive */
@media (max-width: 768px) {
    .thanku-container {
        padding-top: 30px;
    }

    .slip-box,
    .thanku-box {
        padding: 20px;
    }

    .thanku-box h1 {
        font-size: 28px;
    }

    .slip-box h4 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .thanku-box h1 {
        font-size: 24px;
    }

    .slip-box h4 {
        font-size: 26px;
    }

    .slip-box p {
        font-size: 15px;
    }

    .slip-box p span,
    .slip-box p strong {
        font-size: 16px;
    }
}

/* search icon  */
.search-icon {
    margin-left: 400px;
}

.pdf-certificate * {
    zoom: 1 !important;
    font-size: 16px !important;
}

@media (max-width: 768px) {
    .pdf-certificate {
        /* Ignore mobile CSS */
        width: 794px !important;
    }

    .register-edit {
        top: 11px;
    }

    .certi-head-left img {
        max-width: 95px;
    }

    .col-md-5.certi-nameby-rt.offset-1 {
        margin: 0;
    }

    .certi-footer-top .certi-footer-rt ul li {
        font-size: 12px;
        text-align: left;
    }

    .footer-div a img {
        max-width: 75px;
    }
    .otp-msg {
    display: block;
    margin: 60px 0 0;
}
.profile-name {
    font-size: 10px;
    margin: 3px 0;
}
.icon-btn {
    padding: 8px 0px;
}
.inner-pg-title {
    padding: 65px 0 15px;
}
.agent-body-edit {
    float: initial;
}
}

.profile-dropdown {
    position: relative;
}

.thanku-box i {
    font-size: 4rem;
    color: forestgreen;
}

.alias__title {
    text-align: left;
    font-size: 14px;
    font-weight: 700;
}

.whatsapp-icon {
    font-size: 22px;
    color: #25D366;
    margin-left: 6px;
}
.mb-10{
    margin-bottom:10px;
}

.mt-40{
    margin-top:40px;
}
.disabled-btn {
    background-color: #ccc;
    cursor: not-allowed;
    opacity: 0.7;
}
.google-location-icon{
    max-width: 50px;
}