@import url('https://fonts.googleapis.com/css2?family=Google+Sans+Flex:opsz,wght@6..144,1..1000&display=swap');

:root {
    --background-color: #ffffff;
    --default-color: #010745;
    --title-color: #010745;
    --accent-color: #FFDF56;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --dark-color: #000;
    --primary-color: #01395f;
    --accent-color: #30b34b;
    --contrast-color: #ffffff;
    --dark-color: #000;
    --surface-color: #fcfcfc;
    --default-color: #222222;
}

: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: #30b34b;
}

.nav-pills-soft .nav-link {
    width: 100%;
}

/* Professional Profile Dropdown */
.dropdown-menu {
    animation: dropdownFade 0.2s ease-out;
}

@keyframes dropdownFade {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-item i {
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
}

.dropdown-item:hover {
    background-color: #f1f0fb;
    color: var(--primary-color);
}

.hover-bg-danger-soft:hover {
    background-color: rgba(220, 53, 69, 0.1) !important;
    color: #dc3545 !important;
}


.avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

body {
    font-family: "Google Sans Flex", sans-serif !important;
    font-weight: 400;
}

.light-background {
    --background-color: #f2f2f3;
    --surface-color: #ffffff;
    background-color: var(--surface-color);
    padding: 25px 0 !important;
    position: relative;
}

.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: "Google Sans Flex", sans-serif;
    font-weight: 400;
}

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);
    font-family: "Google Sans Flex", sans-serif;
    font-weight: 700;
    line-height: 1.25;
}

.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;
}

.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;
    }

    /* Profile Dropdown Hover & Animation */
    .navmenu .dropdown:hover .dropdown-menu {
        display: block;
        margin-top: 0;
        opacity: 1;
        visibility: visible;
        animation: fadeIn 0.3s ease;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .dropdown-menu-end {
        right: 0 !important;
        left: auto !important;
    }
}

/* 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: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        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: 500;
        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;
    }
}

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

.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;
    overflow: clip;
}

@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%;
    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;
}

/* Dashboard Responsiveness */
.dashboard-sec {
    padding-top: 20px !important;
    padding-bottom: 40px !important;
}

@media (max-width: 991.98px) {
    .dashboard-sec {
        padding-top: 5px !important;
    }
}

@media (max-width: 991.98px) {
    .dashboard-sec .row {
        margin-left: 0;
        margin-right: 0;
    }

    .dashboard-sec .col-lg-9 {
        padding-left: 0;
        padding-right: 0;
    }

    .dash-stat-card {
        margin-bottom: 10px;
    }
}

.dash-stat-card {
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.dash-stat-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dash-stat-accent {
    height: 4px;
}

.dash-stat-body {
    padding: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.dash-stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.dash-stat-info {
    display: flex;
    flex-direction: column;
}

.dash-stat-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #6c757d;
}

.dash-stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    line-height: 1;
    color: #212529;
}

/* Offcanvas Sidebar Fix */
.offcanvas {
    z-index: 1100 !important;
    background-color: #fff !important;
}

.offcanvas-backdrop {
    z-index: 1090 !important;
}

@media (min-width: 992px) {
    .sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 90px;
        /* Accounts for fixed header height + margin */
        height: auto;
        /* Adjusted from calc(100vh - 100px) because it might cut off the bottom if the sidebar is shorter than the viewport but longer than the calc. 100vh - header is safer if we want it to scroll internally, but for now height auto is standard for sticky. */
        max-height: calc(100vh - 110px);
        overflow-y: auto;
        padding-bottom: 20px;
    }

    /* Hide scrollbar for a cleaner look */
    .sticky-sidebar::-webkit-scrollbar {
        width: 0px;
    }
}

/* Ensure fixed header doesn't hide behind offcanvas in a weird way */
header.fixed-top {
    z-index: 1030;
}

/* Global Content Offset for Fixed Header */
main {
    padding-top: 40px;
}

@media (max-width: 991.98px) {
    main {
        padding-top: 5px;
    }

    .dashboard-sec .col-lg-3 {
        margin-bottom: 2rem;
    }

    .left-side-div {
        height: auto !important;
    }
}

.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 50px;
    }

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

#hom-ban-form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    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: 10px 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;
    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: 35px;
    height: 35px;
    line-height: 35px;
    font-size: 12px;
    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 a {
    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 50px;
}

.login-text h3 {
    font-size: 45px;
    font-weight: 700;
    line-height: 55px;
    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 {
    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: 0;
}

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

.otp-msg {
    display: flex;
    align-items: center;
}

.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 {
    position: absolute;
    bottom: 10%;
    display: flex;
    justify-content: space-between;
}

.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;
}

.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%;
    padding: 100px 0 30px;
}

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

.title-button 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);
}

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

.agent-card-head {
    background: #F1F0FB;
    text-align: center;
    position: relative;
    padding: 20px;
}

.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: 20%;
    margin: auto;
}

.agent-card-body {
    border: 1px solid #DADDFF;
    padding: 20px;
}

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

.agent-body-edit {
    float: right;
}

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

.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: #DDDDDD;
    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: #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 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";
    }
}

.add-member {
    float: right;
}

.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 {
    margin: 70px auto;
    padding: 40px;
    background: #fff;
    border-radius: 5px;
    width: 30%;
    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: 25px 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;
}

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

.coll-det-card {
    background: #f9f9f9;
    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;
}

.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 a.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 a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: var(--title-color);
    margin: 0;
    margin-left: 20px;
    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: block;
    border-bottom-left-radius: 10px;
    border-top-right-radius: 10px;
    padding: 20px;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
    background: #FFF;
    background: linear-gradient(180deg, rgba(255, 255, 255, 1) 0%, rgba(250, 250, 250, 1) 65%, rgba(237, 237, 237, 1) 100%);
}

.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;
}

.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: none;
    }

    .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;
}

.about-edit {
    float: right;
    margin: 10px;
}

.about-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 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 ul li span,
.org-contact ul li span {
    background: #F9F9F9;
    padding: 10px 15px;
    width: 30%;
    color: #000;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    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: 13px;
    line-height: 20px;
    text-align: left;
    display: inline-block;
    white-space: normal;
    border: 2px solid #F2F2F2;
    padding: 10px 15px;
}

.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;
}

.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;
}

#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 .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: 22px;
}

.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: 50px;
    border-radius: 30px;
    box-shadow: 0 0px 8px rgb(159 159 159 / 10%);
}

.org-profile-img {
    height: 150px;
    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 {
    margin: 0 0 20px
}

.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: #888;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

.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;
}

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

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

.certi-head-rt {
    position: absolute;
    right: 0;
    bottom: -25px;
    background-color: #ffde59;
    padding: 5.8rem 1.5rem 2.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 2;
    height: 70px;
}

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

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

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

.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: 26px;
    line-height: 36px;
    padding: 8px 27px;
    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: 17px;
    float: left;
    display: inline-block;
}

.certi-nameby-rt ul li p {
    width: 60%;
    margin: 0;
    color: #000;
    font-weight: 500;
    font-size: 12px;
    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 15px;
}

.certi-org-details 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;
    border: none;
    padding: 0 15px;
}

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

.certi-note p {
    font-size: 12px;
    line-height: 20px;
    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: 13px;
    font-weight: 500;
}

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

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

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

.certi-footer ul li {
    font-size: 12px;
    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: 16px;
    margin: 0 5px;
}

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

.organi-card a {
    padding: 8px 25px;
    font-size: 12px;
    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
}

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

.organi-pic {
    height: 150px;
    object-fit: cover;
    overflow: hidden;
    margin: auto;
    text-align: center;
}

.organi-pic img {
    width: 100%;
    max-width: 120px;
    object-fit: cover;
    overflow: hidden;
}

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

.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: normal;
}

/*----------------------------------------------------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 {
    background: #f7f7f7;
    position: relative;
    padding: 20px;
    border-radius: 10px;
}

.organi-card.organi-pro-card .organi-pic img {
    max-width: 150px;
}

.organi-card.organi-pro-card .organi-pic h4 {
    font-size: 16px;
    line-height: 26px;
    font-weight: bolder;
    padding: 12px 0;
}

.footer-social.organi-social {
    display: flex;
}

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

.slip-butns .read-mor {
    background: none;
    font-weight: bolder;
    font-size: 14px;
    line-height: 22px;
    color: #000;
    text-decoration: underline;
}

.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: 2rem;
    }
}

.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: 2rem;
    }
}

.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);
}

/* Fix dashboard section padding to avoid double gap with fixed header */
.dashboard-sec {
    padding-top: 20px !important;
}

.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: 1.2rem;
    }
}

.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: 2rem 1.5rem;
    }
}

.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;
}

/*--------------------------------------------------------------
# Coupon Section Styling
--------------------------------------------------------------*/
.coupon-section .input-group,
.coupon-field .input-group {
    border-radius: 10px !important;
    overflow: hidden;
    border: 1.5px solid #085283 !important;
    background: #fff;
    transition: all 0.3s ease;
}

.coupon-section .input-group:hover,
.coupon-field .input-group:hover {
    border: 1.5px solid #30b34b !important;
}

.coupon-section .form-control,
.coupon-field .form-control {
    border: none !important;
    padding: 10px 15px !important;
    box-shadow: none !important;
}

.coupon-section .btn,
.coupon-field .btn {
    background-color: #085283 !important;
    color: white !important;
    border: none !important;
    padding: 10px 25px !important;
    font-weight: 400 !important;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.coupon-section .btn:hover,
.coupon-field .btn:hover {
    background-color: #28a745 !important;
    opacity: 0.9;
}

.applied-coupon,
.applied-badge {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    border-radius: 10px !important;
    border: 1px dashed #30b34b !important;
    background-color: #f4fff7 !important;
    padding: 10px 15px !important;
    margin-top: 15px !important;
    color: #28a745 !important;
}

.applied-coupon span,
.applied-badge span {
    color: #28a745 !important;
}

.applied-coupon .btn,
.applied-badge .btn {
    background-color: transparent !important;
    color: #30b34b !important;
    border: none !important;
    padding: 0 !important;
    width: auto !important;
    min-width: auto !important;
    font-size: 1.2rem !important;
    line-height: 1 !important;
    box-shadow: none !important;
}

.applied-coupon .btn:hover,
.applied-badge .btn:hover {
    color: #dc3545 !important;
    background-color: transparent !important;
    transform: scale(1.1);
}

/* Enable hover dropdowns on desktop while allowing top-level link clicks */
@media (min-width: 992px) {
    .navbar-nav .nav-item.dropdown:hover>.dropdown-menu {
        display: block;
        margin-top: 0;
    }
}