@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/***** General CSS *****/

body {
    color: #393939;
    overflow-x: hidden;
    word-break: break-word;
    background-color: var(--bodyBg);
    font: 15px/25px 'Montserrat', sans-serif;
}

:root {
    --white: #fff;
    --bodyBg: #f0f0f0;
    --textColor: #8b8a8a;
    --themeColor: #203a70;
    --themeColor2: #f2f2f2;
    --headingColor: #121111;
    --headingColor2: #171515;
}

a {
    color: var(--black);
    white-space: initial;
    text-decoration: none;
    display: inline-block;
}

a:hover,
a:focus {
    text-decoration: none;
    color: #393939;
}

a:hover {
    transition: all 0.5s ease-in-out;
    -webkit-transition: all 0.5s ease-in-out;
    -moz-transition: all 0.5s ease-in-out;
}

input[type="text"]:focus,
textarea:focus,
input[type="password"]:focus,
select:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus {
    transition: all 0.5s ease;
    -webkit-transition: all 0.5s ease;
    -moz-transition: all 0.5s ease;
    outline: none;
}

select,
input[type="text"],
input[type="password"],
input[type="email"],
input[type="url"],
input[type="number"],
textarea,
input[type="tel"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


/* Chrome, Safari, Edge, Opera */

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

select {
    background: #fff url('../images/arrow.png') no-repeat right;
    padding: 0 40px 0 30px;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #000;
}

:-moz-placeholder {
    color: #000;
    opacity: 1;
}

ul {
    margin: 0 0 0px;
    padding: 0;
    list-style-type: none;
}

img {
    max-width: 100%
}


/***** Font Files *****/

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
    src: url(../fonts/fontawesome-webfont.eot?#iefix) format("embedded-opentype"), url(../fonts/fontawesome-webfont.woff) format("woff"), url(../fonts/fontawesome-webfont.ttf) format("truetype"), url(../fonts/fontawesome-webfont.svg#fontawesome-webfont) format("svg");
    font-weight: 400;
    font-style: normal
}

@font-face {
    font-family: 'Fonts Awesome';
    src: url(../fonts/fontawesome-webfont.eot);
}

@font-face {
    font-family: 'BlenderPro-Medium';
    src: url(../fonts/BlenderPro-Medium.ttf);
}


/***** Custom Classes *****/

.noPadding {
    padding: 0;
}

.noLeft {
    padding-left: 0;
}

.noRight {
    padding-right: 0;
}

.mt-5 {
    margin-top: 50px;
}

.mb-5 {
    margin-bottom: 50px;
}

.mt-8 {
    margin-top: 80px;
}

.mt-4 {
    margin-top: 40px;
}

.mt-3 {
    margin-top: 30px;
}

.mt-2 {
    margin-top: 20px;
}

.pt-5 {
    padding-top: 50px;
}

.pb-1 {
    padding-bottom: 10px;
}

.pb-2 {
    padding-bottom: 20px;
}

.pb-3 {
    padding-bottom: 30px;
}

.pb-4 {
    padding-bottom: 40px;
}

.pb-8 {
    padding-bottom: 80px;
}

.m-0 {
    margin: 0 !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-8 {
    padding-top: 80px;
}

.pt-4 {
    padding-top: 40px;
}

.pt-3 {
    padding-top: 30px;
}

.pt-2 {
    padding-top: 20px;
}

.all-section {
    padding: 80px 0;
}

.centerCol {
    float: none;
    margin: 0 auto;
}

.d-flex {
    display: flex;
    align-items: center;
}

.over-flow-h {
    overflow: hidden;
}

.flexRow {
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    align-items: center;
}

.flexCol {
    -webkit-box-flex: 1;
    -moz-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    align-items: center;
}

h1 {
    font-size: 30px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--white);
    font-family: 'BlenderPro-Medium';
}

h2 {
    font-size: 20px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium';
}

h3 {
    font-size: 18px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium';
}

h4 {
    font-size: 16px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium';
}

h5 {
    font-size: 14px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium';
}

h6 {
    font-size: 12px;
    margin: 0 0 0px;
    font-weight: 500;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium';
}

p {
    margin: 0px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0px;
    color: var(--textColor);
    font-family: 'Montserrat';
}

.add-padding {
    width: 100%;
    margin: 0px auto;
    max-width: 1500px;
}

.section-heading {
    text-align: center;
    margin-bottom: 25px;
}

.section-heading p {
    width: 80%;
    margin: auto;
    max-width: 950px;
}



/* Menu */

.nav ul {
    list-style: none;
    text-align: center;
    justify-content: space-around;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav ul li a {
    transition: 0.3s ease-in-out;
    text-transform: uppercase;
    transition: all 0.5s;
    position: relative;
    color: #000;
    font-family: 'Montserrat';
    font-weight: 500;
    font-size: 14px;
    padding: 10px 20px;
    display: block;
}

section.header .nav.stroke {
    display: block;
}

.nav.stroke ul li a:after,
.nav.fill ul li a:after {
    transition: 0.3s ease-in-out;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 0;
    width: 0%;
    content: ".";
    color: transparent;
    background: #000000;
    height: 2px;
    transform: translateX(-50%);
}

.nav.stroke ul li a:hover:after {
    width: 100%;
}

.nav.stroke ul li a.active:after {
    width: 100%;
}

.nav.stroke ul li a.active::before {
    height: 100%;
}

.nav.stroke ul li a.active {
    color: #fff !important;
}


/* Buttons Css Start*/

.theme-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 18px 65px;
    position: relative;
    z-index: 1;
    transition: 0.3s ease-in-out;
    overflow: hidden;
    font-weight: 600;
    font-size: 15px;
    background-color: var(--themeColor);
    color: var(--white);
    border-radius: 30px;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.theme-btn::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
    content: "";
    transition: 0.3s ease-in-out;
    background-color: var(--themeColor);
}

.theme-btn::after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    z-index: -1;
    content: "";
    transition: 0.3s ease-in-out;
    background-color: var(--white);
    transform: translate(-50%, -50%);
}

.theme-btn:hover::after {
    width: 110%;
    height: 110%;
    transition: 0.3s ease-in-out;
}

.theme-btn:hover {
    color: var(--themeColor);
}

.theme-btn:hover img {}


/* Buttons Css End*/


/* Loader start */

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: all 1s ease;
    flex-direction: column;
    gap: 5px;
}

#loader.hide {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

img.loader {
    width: 10vw;
}


/* Loader end */


/* Custom Scrollbar  */

#style-6::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar {
    width: 10px;
    background-color: #f5f5f5;
}

#style-6::-webkit-scrollbar-thumb {
    background-color: #f48a12;
    background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.2) 50%, rgba(255, 255, 255, 0.2) 75%, transparent 75%, transparent);
}

.scrollbar {
    overflow-y: scroll;
}


/* Custom Scrollbar  */

/* Main Layout (demo) Css Start */


/* Sidebar Section Start */

.dashboard_page-box {
    position: relative;
    z-index: 9;
}

section.side_bar {
    position: relative;
    z-index: 1;
    background: var(--themeColor);
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2vh;
    margin: 10px 0 10px 10px;
    border-radius: 20px;
    height: 96%;
    max-height: 1000px;
}

.side-bar-logo {
    margin: 15px;
    padding: 40px;
    text-align: center;
    border-radius: 20px;
    background: var(--white);
}

.dashboard_page-box .col-xl-2.col-lg-3.col-md-4 {
    padding: 0;
}

.dashboard_page-box .col-xl-10.col-lg-9.col-md-8 {
    padding: 0;
}

.side-bar-profile {
    text-align: center;
    padding: 20px 0;
}

.side-bar-profile h6 {
    font-size: 10px;
    color: #ffffff;
    text-transform: capitalize;
}

.side-bar-profile img {
    width: 100px;
    height: 100px;
    border: 3px solid #fff;
    border-radius: 4px;
    margin-bottom: 10px;
    object-fit: cover;
}

.side-bar-profile h5 {
    font-size: 13px;
    color: #ffffff;
    text-transform: uppercase;
}

ul.slidebar_menu a {
    gap: 0;
    z-index: 1;
    width: 100%;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    align-items: center;
    color: var(--white);
    border-radius: 60px;
    display: inline-flex;
    text-transform: uppercase;
    padding: 20px 0 20px 20px;
    justify-content: flex-start;
    transition: 0.3s ease-in-out;
    font-family: 'BlenderPro-Medium';
}

ul.slidebar_menu li:last-child a {
    border: 0;
}

ul.slidebar_menu a:hover,
ul.slidebar_menu a.active {
    color: var(--themeColor) !important;
}

ul.slidebar_menu a::before {
    position: absolute;
    content: '';
    width: 0;
    height: 145px;
    right: 0px;
    top: 0px;
    bottom: 0;
    margin: auto;
    background-image: url(../images/bg-shap.png);
    background-repeat: no-repeat;
    background-position: left;
    background-size: contain;
    z-index: -1;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    transition: .2s all;
}

ul.slidebar_menu a:hover::after,
ul.slidebar_menu a.active::after {
    width: 50px;
}

ul.slidebar_menu a:hover::before,
ul.slidebar_menu a.active::before {
    width: 100%;
}

img.lougout-img {
    width: 20px;
    filter: invert(1);
}

ul.slidebar_menu a img {
    width: 30px;
    height: 30px;
    border-radius: 7px;
    object-fit: scale-down;
    opacity: 0;
    transition: 0.3s ease-in-out;
    width: 0;
}

ul.slidebar_menu a:hover img,
ul.slidebar_menu a.active img {
    opacity: 1;
    transition: 0.3s ease-in-out;
    width: 30px;
}

.side-bar-logout-box a {
    background: #03101e;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: 13px;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border-bottom: 1px solid #fff;
    width: 100%;
    height: 80px;
    letter-spacing: 1px;
}

.side-bar-logout-box a i {
    font-size: 18px;
    font-weight: 600;
}

.dashbord-right-box {
    width: 100%;
}

.subchild {
    display: none;
    margin-left: 20px;
    position: relative;
}

.slidebar_menu li:hover>.subchild {
    display: block;
    position: absolute;
    right: -170px;
    z-index: 999;
    background: #174d56;
    width: 170px;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    top: 60px;
}

.slidebar_menu li a.active+.subchild {
    display: block;
    position: absolute;
    right: -170px;
    z-index: 999;
    background: #174d56;
    width: 170px;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    overflow: hidden;
    top: 60px;
}

.slidebar_menu li a.active+.subchild a {
    justify-content: center;
}



img.search-voice {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 5%;
    margin: auto;
}

ul.header-profile-list i {
    font-size: 18px;
    color: #7f7f7f;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: 0.3s ease-in-out;
}

.slidebar_menu {
    margin-left: 25px;
}

ul.slidebar_menu a span {
    display: block;
    font-size: 11px;
    color: #7c7c7c;
}

li.list-item a {
    border-bottom: 0;
}

.slidebar_menu i.fa-solid.fa-angle-down.rotate {
    transform: rotate(180deg);
}

.slidebar_menu i {
    transition: .3s all;
}


/* Sidebar Section End */


/*  Header Nav Bar Start */

.search-nav {
    position: relative;
    z-index: 9;
    padding: 15px 30px 15px 30px;
    margin-bottom: 0;
}

.header-search button {
    top: 0;
    left: 0;
    border: 0;
    width: 60px;
    height: 100%;
    font-size: 12px;
    color: #787878;
    position: absolute;
    background: transparent;
    border-top-left-radius: 7px;
    border-bottom-left-radius: 7px;
}

.header-search input {
    width: 100%;
    height: 50px;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    padding-left: 50px;
    color: var(--black);
    padding: 10px 92px 10px 50px;
    border-radius: 70px;
    background: transparent;
    font-family: 'Montserrat';
    border: 1px solid #d8d8d8;
}

.header-search input::placeholder {
    color: #a3a3a3;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

ul.header-profile-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 15px;
    margin-bottom: 0;
    margin-right: 20px;
}

a.mailbox i {
    font-size: 18px;
    color: #7f7f7f;
    position: relative;
    z-index: 1;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

a.notift-icon span,
a.mailbox span {
    width: 10px;
    height: 10px;
    background: var(--themeColor);
    padding: 1px;
    position: absolute;
    top: 11px;
    right: 9px;
    border-radius: 10px;
    z-index: 1;
    border: 2px solid #fff;
}

.mail-box {
    position: relative;
}

.bookmark-icon {
    width: 45px;
    height: 45px;
    display: flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background-color: #e4e4e4;
}

.bookmark-notification-main .bookmark-icon i {
    color: var(--themeColor);
    font-size: 18px;
}

.user-profile-box {
    display: flex;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    border-left: 1px solid #e7e7e7;
    margin-left: -10px;
    padding-left: 10px;
    align-items: center;
}

.user-profile-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

.user-profile-info h4 {
    font-size: 14px;
    color: #000;
    text-transform: capitalize;
    font-weight: 600;
    position: relative;
    margin-bottom: 0;
    line-height: 1.2;
    text-transform: uppercase;
}

.search-nav .row {
    align-items: center;
}

.notification-box {
    position: relative;
}

.side-bar-logo img,
.side-bar-logo a {
    width: auto;
    object-fit: cover;
}


/* Mail Box */

ul.mail-messages {
    position: absolute;
    right: 0;
    width: 230px;
    background: var(--themeColor);
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
    z-index: 999;
}

ul.mail-messages li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
    font-family: 'Montserrat';
}

ul.mail-messages li .mail-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

ul.mail-messages li:hover {
    background: var(--secondary-color);
}

ul.mail-messages li .mail-info h6 {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
}

ul.mail-messages li .mail-info span {
    font-size: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: -13px;
}

ul.mail-messages li {
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    transition: .2s all;
}

ul.mail-messages li:last-child {
    border: 0;
}


/* Mail Box */


/* Notification Box */

ul.notification-messages-list {
    position: absolute;
    right: 0;
    width: 230px;
    background: var(--themeColor);
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
}

ul.notification-messages-list li a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    position: relative;
}

ul.notification-messages-list li .notification-img img {
    width: 40px;
    height: 40px;
    border-radius: 50px;
    object-fit: cover;
}

ul.notification-messages-list li:hover {
    background: var(--secondary-color);
}

ul.notification-messages-list li .notification-info h6 {
    font-size: 12px;
    color: #fff;
    text-transform: capitalize;
}

ul.notification-messages-list li .notification-info span {
    font-size: 8px;
    color: #fff;
    position: absolute;
    right: 0;
    bottom: -13px;
}

ul.notification-messages-list li {
    padding: 10px 10px;
    border-bottom: 1px solid #fff;
    transition: .2s all;
}

ul.notification-messages-list li:last-child {
    border: 0;
}

.notification-dropdown-btns {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}

.notification-dropdown-btns a {
    font-size: 10px;
    color: #fff;
    text-transform: uppercase;
    background: var(--secondary-color);
    padding: 5px 8px;
    border-radius: 5px;
    width: 48%;
    justify-content: center !important;
    border: 1px solid #ffffff;
}

ul.notification-messages-list li:hover .notification-dropdown-btns a {
    background: var(--secondary-color);
}


/* Notification Box */


/* Profile Box */

.user-profile-dropdown {
    z-index: 999;
    position: absolute;
    right: 70px;
    width: 200px;
    background: var(--themeColor);
    padding: 0px 0;
    border-radius: 5px;
    overflow: hidden;
    display: grid;
}

.user-profile-dropdown a {
    padding: 10px;
    border-bottom: 1px solid #fff;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
    transition: .2s all;
    text-align: center;
    font-family: 'Montserrat';
}

.user-profile-dropdown a:last-child {
    border: 0;
}

.user-profile-dropdown a:hover {
    background: var(--secondary-color);
}

.user-profile-info h4>span {
    display: block;
    font-size: 10px;
    color: #777777;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

.user-profile-info h4>i {
    position: absolute;
    right: -20px;
    top: 0;
}

.header-search {
    width: 70%;
    position: relative;
    margin: 0px 0px 0px auto;
}

.header-search-reset {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.header-search-reset:hover {
    color: #12254e;
    text-decoration: none;
}


/* Profile Box */

ul.slidebar_menu a i {
    position: absolute;
    right: 15px;
}

ul.sub-menu {
    padding-left: 40px;
    padding-bottom: 10px;
    padding: 10px 0px 10px 40px;
}

ul.sub-menu li a {
    padding: 0;
    border: 0;
}

.logout-button {
    left: 0;
    margin-top: 60px;
    margin-bottom: 40px;
    display: flex;
    width: 100%;
    bottom: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
}


.logout-button a {
    color: #fff;
    border: 1px solid;
    gap: 10px;
}


/* Page Content */

.dashboar_page-content {
    padding-right: 10px;
    margin: 0px 30px;
}


/*Notification Start*/

.notification-txt ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid #d5d5d5;
    padding: 20px;
    margin: 0 0 10px;
    border-radius: 5px;
}

.notification-txt ul li h6 {
    font-size: 16px;
    font-family: 'Montserrat';
    margin: 0;
    color: #666666;
}

.notification-txt ul li h6 span {
    color: #256c42;
}

.notification-txt ul li h6 i {
    font-size: 16px;
    color: #256c42;
    margin-right: 10px;
}

.notification-txt ul li h5 {
    font-size: 16px;
    font-family: 'Montserrat';
    color: #256c42;
    margin: 0;
}

.notification-txt ul li i:last-child {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f0fff6;
    color: #256c42;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #8b8b8b;
}


/*Notification Start*/


/*Welcome Start*/

.welcome-box {
    z-index: 1;
    display: flex;
    overflow: hidden;
    min-height: 300px;
    padding: 30px 30px;
    position: relative;
    border-radius: 25px;
    flex-direction: column;
    justify-content: flex-end;
}

.welcome-text h1 {
    position: relative;
    margin-bottom: 10px;
    color: var(--white);
    text-transform: uppercase;
}

.welcome-text h6 {
    font-size: 14px;
    width: fit-content;
    position: relative;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--white);
    padding-bottom: 10px;
    text-transform: uppercase;
    border-bottom: 1px solid #ffffff5d;
}

.welcome-text h6::before {
    right: 0;
    width: 10%;
    height: 1px;
    content: '';
    bottom: -1px;
    position: absolute;
    background-color: var(--white);
    animation: lineMove 8s linear infinite alternate;
}

@keyframes lineMove {
    0% {
        right: 0;
    }

    50% {
        right: 90%;
    }

    100% {
        right: 0%;
    }
}

.welcome-text {
    margin-bottom: -30px;
}

.welcome-text p {
    font-size: 12px;
    color: #fff;
    width: 50%;
    line-height: 20px;
    font-weight: 600;
    opacity: 0.7;
    margin: 0;
}

/* .welcome-box::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    content: '';
    background: linear-gradient(90deg, var(--themeColor) 40%, rgba(0, 0, 0, 0) 80%);
} */

.welcome-box::after {
    background-position: center;
    position: absolute;
    content: '';
    z-index: -2;
    width: 100%;
    height: 100%;
    background-image: var(--welcome-bg, url(../images/welcome-bg.png));
    background-repeat: no-repeat;
    background-size: cover;
    top: 0;
    right: 0;
}

.totel-amount-box {
    display: flex;
    max-width: 400px;
    position: relative;
    border-radius: 15px;
    align-items: center;
    margin: 0px 0px 0px auto;
    justify-content: flex-start;
    border: 1px solid #ffffffb2;
}

.totel-amount-box::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    content: '';
    height: 80%;
    opacity: 0.5;
    margin: auto;
    position: absolute;
    background-color: var(--white);
}

.totel-amount-box-text {
    width: 50%;
    padding: 13px 25px;
}

.totel-amount-box-text h6 {
    font-size: 15px;
    color: var(--white);
    text-transform: uppercase;
}

.totel-amount-box-text h5 {
    font-size: 25px;
    margin-top: 5px;
    color: var(--white);
}

.btn-1 {
    font-size: 14px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--tertiary-font);
    background: #00d3aa;
    padding: 14px 16px;
    display: inline-flex;
    border-radius: 55px;
    border: 1px solid #fff;
    text-transform: uppercase;
}

.btn-1:hover {
    background: var(--secondary-color);
    color: #fff;
}

.home-page {
    padding-bottom: 0;
}

.theme-bg {
    background: #fff;
    border-radius: 20px;
    padding-bottom: 50px;
}

.timeline {
    position: relative;
    padding-left: 25px;
}

.timeline::before {
    content: "";
    position: absolute;
    left: 2px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #ccc;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: -26px;
    top: 4px;
    width: 7px;
    height: 7px;
    background: #43bd8e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px #fff, 0 0 0 5px #00d3aa;
}

.timeline-item label {
    display: block;
    cursor: pointer;
}

.timeline-item input[type="radio"] {
    display: none;
}

.timeline-item input[type="radio"]:checked+.timeline-item-card {
    background-color: var(--themeColor);
    color: white;
}

.timeline-item input[type="radio"]:checked+.timeline-item-card * {
    color: #fff !important;
}

.timeline-item input[type="radio"]:checked+.timeline-item-card i {
    color: #ffffff !important;
}

.timeline-item-card {
    padding: 15px 15px;
    border-radius: 7px;
    background: #f6f6f6;
}

.timeline-item input[type="radio"]:checked+.timeline-item-card p {
    color: #fff;
}

html .timeline-item-card small i {
    background: var(--secondary-color);
    color: #000;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    opacity: 0;
}

.timeline-item-card small {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
    text-transform: uppercase;
    font-family: var(--tertiary-font);
    font-weight: 600;
}

.result-status-box {
    padding-top: 50px;
}

h6.mb-0.text-muted {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--tertiary-font);
}

.timeline h6 {
    font-size: 16px;
    text-transform: uppercase;
    font-family: var(--tertiary-font);
}

.timeline-item span {
    font-size: 12px;
}

.timeline-item-card p {
    font-size: 11px;
    line-height: 18px;
}

.timeline-item input[type="radio"]:checked+.timeline-item-card i.fa-solid.fa-check {
    opacity: 1;
}

.result-status-box h2 {
    padding: 10px 0 30px 0px;
}

.theme-head {
    font-size: 20px;
    text-transform: uppercase;
    margin: 0;
}

.user-profile-info h6 {
    font-size: 14px;
    font-family: 'BlenderPro-Medium';
    font-weight: 600;
    margin: 0;
}

.user-profile-info h6 span {
    font-size: 11px;
    opacity: 0.7;
}


/* Premium Box CSS Start */

.premium-box {
    background: var(--secondary-color);
    margin: 40px 10px 20px 10px;
    border-radius: 20px;
    padding: 40px 15px 20px;
    text-align: center;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 94%;
    right: 0;
}

.premium-box-img {
    position: absolute;
    top: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border: 7px solid var(--themeColor);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-box-img img {
    width: 25px !important;
    height: auto !important;
}

.premium-box-text p {
    color: #fff;
    font-family: var(--secondary-font);
    font-style: italic;
    font-size: 12px;
    line-height: 1.4;
    margin-bottom: 20px;
}

.premium-box-text a {
    background: #fff;
    color: var(--secondary-color);
    padding: 10px 20px;
    border-radius: 50px;
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
    font-family: var(--secondary-font);
    letter-spacing: 0.5px;
}

.premium-box-text a:hover {
    background: #eefefe;
    color: #198f93 !important;
}

ul.header-profile-list i:hover {
    background: #e4e4e4;
    transition: 0.3s ease-in-out;
    color: var(--themeColor);
}

div#TopBar {
    position: relative;
    z-index: 999;
}


/* Premium Box CSS End */


/* Main Layout (demo) Css End  */




/* ==========================================================================
   NEW DONATION HISTORY BOX START
   ========================================================================== */

.donation-history-card {
    margin-top: 30px;
    padding: 35px 0px;
    border-radius: 24px;
    margin-bottom: 30px;
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.donation-history-header {
    display: flex;
    padding: 0px 30px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.donation-history-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donation-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.donation-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    text-decoration: none;
    height: 42px;
}

.donation-btn-filter {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    color: #1f2937;
}

.donation-btn-filter:hover {
    background-color: #f9fafb;
    border-color: #d1d5db;
    color: #111827;
}

.donation-btn-export {
    background-color: #f3f4f6;
    border: 1px solid transparent;
    color: #1f2937;
}

.donation-btn-export:hover {
    background-color: #e5e7eb;
    color: #111827;
}

.donation-btn-icon {
    display: inline-block;
    flex-shrink: 0;
}

.donation-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.donation-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    vertical-align: middle;
}

.donation-table-header {
    background-color: #f2f2f2;
    border-radius: 10px;
}


.donation-table th {
    border: none;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    padding: 14px 30px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'BlenderPro-Medium';
}

.donation-row {
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s ease;
}

.donation-row:last-child {
    border-bottom: none;
}

.donation-row:hover {
    background-color: #fafafa;
}

.donation-row td {
    border: none;
    font-size: 12px;
    font-weight: 700;
    color: #2d3748;
    padding: 22px 30px;
    vertical-align: middle;
    font-family: 'BlenderPro-Medium';
}

.donation-program-cell {
    color: #4a5568 !important;
}

.donation-method-cell {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.donation-card-icon {
    color: #4a5568;
    flex-shrink: 0;
}

.donation-badge-paid {
    display: inline-block;
    background-color: #c3f9e2;
    color: #0ca678;
    font-size: 10px;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.5px;
    min-width: 75px;
}

.donation-download-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #1f2937;
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    transition: color 0.2s ease;
}

.donation-download-link:hover {
    color: #256c42;
    /* Premium brand green */
}

.donation-action-icon {
    color: #1f2937;
    transition: color 0.2s ease;
}

.donation-download-link:hover .donation-action-icon {
    color: #256c42;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .donation-history-card {
        padding: 20px 15px;
    }

    .donation-row td {
        padding: 16px 12px;
    }

    .donation-table th {
        padding: 12px 12px;
    }
}

/* ==========================================================================
   NEW DONATION HISTORY BOX END
   ========================================================================== */


/* ==========================================================================
   RECURRING SUBSCRIPTIONS BOX START
   ========================================================================== */

.subscription-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

.subscription-header {
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.subscription-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.subscription-body {
    display: flex;
    flex-direction: column;
}

.subscription-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.subscription-icon-box {
    width: 50px;
    height: 50px;
    background-color: #f3f4f6;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a1a1a;
    flex-shrink: 0;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.subscription-item:hover .subscription-icon-box {
    background-color: #e5e7eb;
    transform: scale(1.03);
}

.subscription-icon {
    display: block;
}

.subscription-details {
    flex-grow: 1;
    min-width: 0;
    /* Ensures text overflow doesn't break flex */
}

.subscription-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.subscription-meta {
    font-size: 8.5px;
    font-weight: 700;
    color: #8a8a8a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
}

.subscription-status-badge {
    flex-shrink: 0;
}

.badge-active {
    display: inline-block;
    background-color: #c3f9e2;
    color: #0ca678;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.5px;
    min-width: 65px;
    text-transform: uppercase;
}

.subscription-divider {
    height: 1px;
    background-color: #f3f4f6;
    margin: 20px 0;
}

/* Responsiveness adjustments */
@media (max-width: 768px) {
    .subscription-card {
        padding: 25px 20px;
    }
}

/* ==========================================================================
   RECURRING SUBSCRIPTIONS BOX END
   ========================================================================== */

/* login sec */

.login-sec {
    margin: 10px;
    display: flex;
    padding: 80px 0px;
    min-height: 100vh;
    border-radius: 20px;
    align-items: center;
    justify-content: center;
    background-color: var(--themeColor);
}

.login-box-right {
    position: relative;
}

.login-or-line {
    top: 0;
    left: -10px;
    height: 100%;
    display: flex;
    position: absolute;
    width: fit-content;
    align-items: center;
    justify-content: center;
}

.login-or-line h6 {
    z-index: 1;
    padding: 35px 0px;
    position: relative;
    text-transform: uppercase;
    background-color: var(--white);
}

.login-or-line::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    content: '';
    margin: auto;
    height: 100%;
    position: absolute;
    background-color: #e7e7e7;
}

.login-main-box {
    border-radius: 20px;
    padding: 40px 4% 60px;
    background-color: var(--white);
}

.login-logo {
    display: flex;
    margin-bottom: 50px;
    align-items: center;
    justify-content: center;
}

.login-logo a {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-logo a img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.login-img {
    height: 500px;
    margin: 0px auto;
    max-width: 400px;
    min-height: 100%;
    overflow: hidden;
    border-radius: 50px;
}

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

.login-box {
    padding: 20px;
    margin: 0 auto;
    max-width: 80%;
}

.login-box .login-title {
    font-size: 23px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--headingColor);
}

.login-box .login-subtitle {
    font-size: 12px;
    font-weight: 600;
    color: #8a8a8a;
    letter-spacing: 0.5px;
    font-family: 'BlenderPro-Medium';
}

/* Custom Pill Tabs Styling */
.login-box .custom-tab-container {
    background-color: #f2f2f2;
    border-radius: 50px;
    padding: 6px;
    display: flex;
    justify-content: space-between;
}

.login-box .custom-tab-container .nav-link {
    width: 50%;
    border: none;
    padding: 17px 0;
    font-weight: 700;
    font-size: 0.85rem;
    text-align: center;
    background: transparent;
    transition: all 0.3s ease;
    color: var(--headingColor2);
    border-radius: 50px !important;
    font-family: 'BlenderPro-Medium';
}

.login-box .custom-tab-container .nav-link.active {
    background-color: #ffffff !important;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.05);
}

/* Form Styling */
.login-box .form-label {
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    color: var(--headingColor2);
    font-family: 'BlenderPro-Medium';
}

.login-box .form-control {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 14px 16px;
    font-size: 0.85rem;
}

.login-box .form-control::placeholder {
    color: #a0aec0;
    font-weight: 600;
    font-size: 0.8rem;
    font-family: 'BlenderPro-Medium';
}

.login-box .password-wrapper {
    position: relative;
}

.login-box .password-toggle {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #a0aec0;
    cursor: pointer;
}

.login-box .form-check-label,
.login-box .forgot-link {
    font-size: 12px;
    color: #888787;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.login-box .checkbox-wrapper-46 input[type="checkbox"] {
    display: none;
    visibility: hidden;
}

.login-box .checkbox-wrapper-46 .cbx {
    margin: auto;
    color: #888787;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
    -webkit-user-select: none;
    user-select: none;
    cursor: pointer;
}

.login-box .checkbox-wrapper-46 .cbx span {
    display: inline-block;
    vertical-align: middle;
    transform: translate3d(0, 0, 0);
}

.login-box .checkbox-wrapper-46 .cbx span:first-child {
    position: relative;
    width: 18px;
    height: 18px;
    border-radius: 3px;
    transform: scale(1);
    vertical-align: middle;
    border: 1px solid #9098a9;
    transition: all 0.2s ease;
}

.login-box .checkbox-wrapper-46 .cbx span:first-child svg {
    position: absolute;
    top: 3px;
    left: 2px;
    fill: none;
    stroke: #ffffff;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-dasharray: 16px;
    stroke-dashoffset: 16px;
    transition: all 0.3s ease;
    transition-delay: 0.1s;
    transform: translate3d(0, 0, 0);
}

.login-box .checkbox-wrapper-46 .cbx span:first-child:before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--themeColor);
    display: block;
    transform: scale(0);
    opacity: 1;
    border-radius: 50%;
}

.login-box .checkbox-wrapper-46 .cbx span:last-child {
    padding-left: 8px;
}

.login-box .checkbox-wrapper-46 .cbx:hover span:first-child {
    border-color: var(--themeColor);
}

.login-box .checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child {
    background: var(--themeColor);
    border-color: var(--themeColor);
    animation: wave-46 0.4s ease;
}

.login-box .checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child svg {
    stroke-dashoffset: 0;
}

.login-box .checkbox-wrapper-46 .inp-cbx:checked+.cbx span:first-child:before {
    transform: scale(3.5);
    opacity: 0;
    transition: all 0.6s ease;
}

@keyframes wave-46 {
    50% {
        transform: scale(0.9);
    }
}


/* Action Button */
.login-box .btn-login {
    width: 100%;
    border: none;
    padding: 14px;
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    letter-spacing: 1px;
    border-radius: 50px;
    font-family: 'BlenderPro-Medium';
    background-color: var(--themeColor);
    transition: background-color 0.2s ease;
}

.login-box .btn-login:hover {
    background-color: #152952;
    color: #ffffff;
}

/* Divider */
.login-box .divider-text {
    display: flex;
    margin: 25px 0;
    color: #8a8a8a;
    text-align: center;
    font-weight: 700;
    font-size: 0.75rem;
    align-items: center;
    font-family: 'BlenderPro-Medium';
}

.login-box .divider-text::before,
.login-box .divider-text::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #e2e8f0;
}

.login-box .divider-text:not(:empty)::before {
    margin-right: .5em;
}

.login-box .divider-text:not(:empty)::after {
    margin-left: .5em;
}

/* Social Buttons */
.login-box .social-container {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.login-box .btn-social {
    width: 55px;
    height: 55px;
    display: flex;
    font-size: 1.2rem;
    border-radius: 50%;
    align-items: center;
    transition: ease-in-out;
    justify-content: center;
    background-color: #fff;
    transition-duration: 0.5s;
    color: var(--headingColor2);
    border: 1px solid #e2e8f0;
}

.login-box .btn-social:hover {
    color: var(--white);
    transition: ease-in;
    transition-duration: 0.5s;
    background-color: var(--themeColor);
}



/* login sec */













/*Media Query Start*/

@media only screen and (min-width: 1366px) and (max-width: 1920px) {}

@media only screen and (min-width: 1291) and (max-width: 1365px) {}

@media only screen and (min-width: 992px) and (max-width: 1290px) {}

@media only screen and (min-width: 768px) and (max-width: 991px) {}

@media only screen and (min-width: 520px) and (max-width: 767px) {}

@media only screen and (min-width: 300px) and (max-width: 519px) {}


/*Media Query End*/

/* ==========================================================================
   COMMUNICATION PREFERENCES & PAYMENT METHODS START
   ========================================================================== */

.preferences-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}

.preferences-section {
    margin-bottom: 30px;
}

.preferences-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 18px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.preferences-box {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 20px;
    background-color: #ffffff;
}

.preference-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.preference-info {
    flex-grow: 1;
    min-width: 0;
}

.preference-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.preference-meta {
    font-size: 9px;
    font-weight: 700;
    color: #8a8a8a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.preference-action {
    flex-shrink: 0;
}

/* Custom CSS iOS Switch Toggle */
.switch-toggle {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
    flex-shrink: 0;
    margin: 0;
}

.switch-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d1d5db;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 24px;
}

.switch-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: #ffffff;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.switch-toggle input:checked+.switch-slider {
    background-color: var(--themeColor);
    /* Dark navy/primary theme color */
}

.switch-toggle input:checked+.switch-slider:before {
    transform: translateX(20px);
}

.preference-divider {
    height: 1px;
    background-color: #f3f4f6;
    margin: 18px 0;
}

.preference-footer {
    padding-top: 2px;
}

.btn-update-settings {
    display: inline-block;
    color: var(--themeColor);
    text-decoration: none;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease, color 0.2s ease;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.btn-update-settings:hover {
    opacity: 0.8;
    color: var(--themeColor);
    text-decoration: none;
}

/* Section 2: Payment Methods */
.payment-section {
    margin-top: 15px;
}

.payment-card-box {
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background-color: #ffffff;
    margin-bottom: 15px;
    transition: border-color 0.2s ease;
}

.payment-card-box:hover {
    border-color: #d1d5db;
}

.visa-badge {
    background-color: #0c3e83;
    border-radius: 6px;
    width: 46px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.payment-card-details {
    flex-grow: 1;
    min-width: 0;
}

.payment-card-name {
    font-size: 12px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 2px 0;
    letter-spacing: 0.1px;
}

.payment-card-meta {
    font-size: 10px;
    font-weight: 600;
    color: #8a8a8a;
    margin: 0;
}

.payment-card-status {
    flex-shrink: 0;
}

.badge-primary-method {
    display: inline-block;
    background-color: #e8ebf8;
    color: #3b52a5;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-align: center;
    letter-spacing: 0.5px;
    min-width: 65px;
    text-transform: uppercase;
}

.btn-add-payment {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px dashed #d1d5db;
    border-radius: 16px;
    padding: 15px;
    color: #4b5563;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    background-color: transparent;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.btn-add-payment:hover {
    background-color: #f9fafb;
    border-color: #9ca3af;
    color: #1f2937;
    text-decoration: none;
}

.add-payment-icon {
    flex-shrink: 0;
}



/* ==========================================================================
   COMMUNICATION PREFERENCES & PAYMENT METHODS END
   ========================================================================== */

/* ==========================================================================
   DONATION HISTORY MAIN PAGE START
   ========================================================================== */

/* Main outer container spacing */
.donation-history-box {
    padding: 10px 0;
}

/* Outer Main Card Wrapper (Top Stat Box Container) */
.donation-history-main-card {
    border-radius: 24px;
    padding: 35px 30px 20px;
    background-color: var(--white);
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Header styling inside main card */
.donation-history-main-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.donation-history-main-title-block {
    flex-grow: 1;
}

.donation-history-main-title {
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 0px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium', sans-serif;
}

.donation-history-main-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: var(--textColor);
    margin: 0;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
}

/* Export Button */
.btn-export-csv {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #f3f4f6;
    color: #1f2937;
    font-size: 11px;
    font-weight: 800;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.btn-export-csv:hover {
    background-color: #e5e7eb;
    color: #111827;
    text-decoration: none;
}

.export-icon {
    flex-shrink: 0;
}

/* Stats cards row */
.donation-stats-row {
    margin-top: 10px;
}

.donation-stat-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    padding: 22px 25px;
    transition: transform 0.2s ease, border-color 0.2s ease;
    margin-bottom: 15px;
}

.donation-stat-card:hover {
    border-color: #d1d5db;
}

/* Highlighted Stat Card (Card 4) */
.donation-stat-card.card-highlighted {
    border: 2px solid var(--themeColor);
    border-left: 6px solid var(--themeColor);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.donation-stat-label {
    font-size: 11px;
    font-weight: 700;
    color: #8a8a8a;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.1px;
}

.donation-stat-value {
    font-size: 30px;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    letter-spacing: -0.5px;
    font-family: 'BlenderPro-Medium';
}

.donation-stat-value.text-blue {
    color: var(--themeColor);
    /* matches next recurring blue color */
}

.donation-stat-footer {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
}

.donation-stat-footer.text-green {
    color: #0ca678;
}

.donation-stat-footer.text-grey {
    color: #8a8a8a;
}

.trend-icon {
    flex-shrink: 0;
}

/* Table Section Spacer */
.donation-table-spacing {
    height: 20px;
}

/* Bottom Card Container for Table & Filters */
.donation-list-card {
    padding: 0px;
    overflow: hidden;
    border-radius: 24px;
    background-color: var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

/* Filter Bar styles */
.donation-filter-bar {
    gap: 15px;
    display: flex;
    flex-wrap: wrap;
    padding: 15px 25px;
    align-items: center;
    background-color: #e8ebf0;
    justify-content: space-between;
    border-bottom: 1px solid #e1e1e1;
}

.donation-filter-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.dropdown-filter-btn {
    gap: 8px;
    font-size: 14px;
    cursor: pointer;
    font-weight: 800;
    user-select: none;
    padding: 10px 20px;
    border-radius: 50px;
    align-items: center;
    display: inline-flex;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--headingColor2);
    border: 1px solid #fbf4e2;
    background-color: var(--white);
    font-family: 'BlenderPro-Medium', sans-serif;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.dropdown-filter-btn i {
    font-size: 20px;
}

.dropdown-filter-btn i.fa-chevron-down {
    font-size: 14px;
    color: #7f7f7f;
    margin-left: 30px;
}

.dropdown-filter-btn:hover {
    border-color: #cbd5e1;
    background-color: #f8fafc;
}

.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-menu {
    position: absolute;
    top: 110%;
    left: 0;
    background: #fff;
    border: 1px solid #ddd;
    min-width: 180px;
    display: none;
    z-index: 999;
}

.dropdown-menu div {
    padding: 10px;
    cursor: pointer;
}

.dropdown-menu div:hover {
    background: #f2f2f2;
}

.dropdown.active .dropdown-menu {
    display: block;
}

.filter-icon,
.calendar-icon,
.status-icon,
.chevron-icon {
    flex-shrink: 0;
    color: #64748b;
}

/* Clear All Filters Link */
.donation-clear-filters {
    margin-left: auto;
}

.link-clear-filters {
    font-size: 20px;
    font-weight: 800;
    text-decoration: none;
    color: var(--themeColor);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: opacity 0.2s ease;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.link-clear-filters:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* Table Responsive and styling */
.donation-history-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.donation-history-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 800px;
}

.donation-history-table th {
    font-size: 11px;
    font-weight: 800;
    text-align: left;
    padding: 16px 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--headingColor2);
    background-color: #e8ebf0;
    border-bottom: 1px solid #f1f5f9;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.donation-history-row {
    border-bottom: 1px solid #f1f5f9;
    transition: background-color 0.2s ease;
}

.donation-history-row:hover {
    background-color: #f8fafc;
}

.donation-history-table td {
    padding: 15px 30px;
    vertical-align: middle;
    font-family: 'BlenderPro-Medium';
}

.date-cell {
    font-size: 12px;
    font-weight: 700;
    color: #334155;
}

.program-cell {
    min-width: 250px;
}

.program-title {
    font-size: 12px;
    font-weight: 800;
    color: #133695;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.program-subtitle {
    margin: 0;
    font-size: 10px;
    line-height: 1;
    color: #94a3b8;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1px;
    font-family: 'BlenderPro-Medium';
}

.amount-cell {
    font-size: 12px;
    font-weight: 800;
    color: #1e293b;
}

.status-cell {
    min-width: 100px;
}

.badge-status-paid {
    display: inline-block;
    background-color: #c3f9e2;
    color: #0ca678;
    font-size: 9px;
    font-weight: 800;
    padding: 5px 15px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.action-cell {
    min-width: 180px;
}

.btn-download-receipt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    color: var(--themeColor);
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.btn-download-receipt:hover {
    opacity: 0.8;
    text-decoration: none;
}

.receipt-icon {
    flex-shrink: 0;
}



/* ==========================================================================
   DONATION HISTORY MAIN PAGE END
   ========================================================================== */

/* ==========================================================================
   ACCOUNT SETTINGS PAGE START
   ========================================================================== */

.account-settings-box {
    padding: 40px 30px;
    border-radius: 20px;
    background-color: var(--white);
}

.settings-header-block {
    margin-bottom: 25px;
}

.settings-main-title {
    font-size: 30px;
    font-weight: 500;
    margin: 0 0 0px 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--headingColor);
    font-family: 'BlenderPro-Medium', sans-serif;
}

.settings-main-subtitle {
    font-weight: 500;
    color: var(--textColor);
    margin: 0;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
}

/* Card layout wrapper */
.settings-card {
    height: 100%;
    padding: 30px;
    border-width: 1px;
    border-style: solid;
    border-radius: 10px;
    background-color: var(--white);
    border-color: rgb(231, 231, 231);
    box-shadow: 0px 17px 49px 0px rgba(133, 133, 133, 0.16);
}

.card-section-title {
    font-size: 20px;
    font-weight: 500;
    color: var(--headingColor);
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    margin: 0 0 20px 0;
}

.card-section-title.inline-title {
    margin: 0;
}

/* Form Styles */
.form-group-field {
    margin-bottom: 20px;
}

.field-label {
    font-size: 11px;
    font-weight: 800;
    color: #7f7f7f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: block;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.field-input,
.field-textarea {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a1a;
    width: 100%;
    background-color: #ffffff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    font-family: 'Montserrat', sans-serif;
}

.field-input:focus,
.field-textarea:focus {
    outline: none;
    border-color: var(--themeColor);
    box-shadow: 0 0 0 3px rgba(32, 58, 112, 0.05);
}

.field-textarea {
    height: 120px;
    resize: none;
}

/* Footer layout inside card */
.form-footer-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-meta-text {
    font-size: 10px;
    font-weight: 700;
    color: #8a8a8a;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    max-width: 60%;
}

.btn-save-changes {
    background-color: var(--themeColor);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-save-changes:hover {
    opacity: 0.9;
}

/* Security components */
.security-inset-box {
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
}

.inset-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.inset-label {
    font-size: 11px;
    font-weight: 800;
    color: #7f7f7f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.inset-badge.text-green {
    color: #0ca678;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.btn-change-password {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-top: 5px;
    min-height: 49px;
    background-color: var(--themeColor);
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    line-height: 1;
    cursor: pointer;
    appearance: none;
    transition: opacity 0.2s ease;
}

.btn-change-password:hover {
    color: #ffffff;
    opacity: 0.9;
    text-decoration: none;
}

.two-factor-auth-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    margin-bottom: 25px;
}

.two-factor-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.two-factor-desc {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.security-footer-actions {
    margin-top: 15px;
}

.btn-deactivate-account {
    display: block;
    width: 100%;
    text-align: center;
    background-color: transparent;
    color: #dc2626;
    border: 1px solid #f87171;
    border-radius: 50px;
    padding: 12px 20px;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn-deactivate-account:hover {
    background-color: #fef2f2;
    color: #b91c1c;
    border-color: #dc2626;
    text-decoration: none;
}

/* Row spacer */
.settings-row-spacer {
    height: 20px;
}

/* Row 2 payment methods */
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header-title-block {
    display: flex;
    align-items: center;
    gap: 10px;
}

.credit-card-icon,
.envelope-icon {
    color: #1e293b;
    flex-shrink: 0;
}

.btn-add-card-link {
    font-size: 12px;
    font-weight: 800;
    color: #0ca678;
    text-transform: uppercase;
    text-decoration: none;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
}

.btn-add-card-link:hover {
    opacity: 0.8;
    text-decoration: none;
}

.payment-card-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.payment-card-row {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 15px 20px;
    background-color: #ffffff;
    transition: border-color 0.2s ease;
}

.payment-card-row:hover {
    border-color: #cbd5e1;
}

.visa-logo-box {
    flex-shrink: 0;
    width: 45px;
    height: 30px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
}

.payment-card-info {
    flex-grow: 1;
}

.payment-card-number {
    font-size: 13px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 2px 0;
    text-transform: uppercase;
}

.payment-card-meta {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
}

/* Row 2 communication */
.pref-checklist {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 25px;
}

.pref-checklist-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.pref-checkbox-wrapper {
    flex-shrink: 0;
    margin-top: 2px;
}

.pref-checkbox {
    width: 18px;
    height: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #ffffff;
    cursor: pointer;
    transition: background-color 0.2s ease, border-color 0.2s ease;
}

.pref-checkbox.checked {
    background-color: var(--themeColor);
    border-color: var(--themeColor);
}

.check-icon {
    color: #ffffff;
}

.pref-details {
    flex-grow: 1;
}

.pref-title {
    font-size: 12px;
    font-weight: 800;
    color: var(--themeColor);
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}

.pref-desc {
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1px;
}

.communication-footer {
    margin-top: 25px;
}

.btn-update-preferences {
    background-color: var(--themeColor);
    font-size: 14px;
    font-weight: 500;
    padding: 12px 30px;
    color: var(--white);
    border-radius: 50px;
    border: none;
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.btn-update-preferences:hover {
    opacity: 0.9;
}

.card-header-title-block.right-side {
    margin: 0px -31px 20px;
    border-bottom: 1px solid #e1e1e1;
    padding: 0px 30px 20px;
}



/* ==========================================================================
   ACCOUNT SETTINGS PAGE END
   ========================================================================== */

/* ==========================================================================
   ACTIVE SUBSCRIPTIONS SECTION START
   ========================================================================== */

.active-subscriptions-box {
    background: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eef0f3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.active-subs-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.active-subs-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active-subs-filter-btn {
    background-color: #f4f4f4;
    border: 1px solid #e5e7eb;
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 500;
    color: #1f2937;
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'BlenderPro-Medium', sans-serif;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.active-subs-filter-btn:hover {
    background-color: #e5e7eb;
}

.active-subs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    width: 100%;
}

.filter-dropdown {
    position: relative;
    display: inline-block;
}

.filter-dropdown-menu {
    top: 110%;
    right: 0;
    opacity: 0;
    width: 180px;
    visibility: hidden;
    position: absolute;
    border-radius: 10px;
    background: #ffffff;
    transition: 0.3s ease;
    border: 1px solid #e5e5e5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    z-index: 999;
}

.filter-dropdown.active .filter-dropdown-menu {
    opacity: 1;
    visibility: visible;
}

.filter-dropdown-menu div {
    padding: 10px 15px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.2s ease;
    font-family: 'BlenderPro-Medium';
}

.filter-dropdown-menu div:hover {
    background: #f5f5f5;
}

.active-subs-card {
    flex: 1;
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.active-subs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.04);
}

.active-subs-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.active-subs-card-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.active-subs-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    background-color: #f1f3f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
}

.active-subs-card-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    flex: 1;
}

.active-subs-card-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-subs-card-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    color: var(--textColor, #8b8a8a);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-subs-status-badge {
    background-color: #e6faf2;
    color: #00b074;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    white-space: nowrap;
    flex-shrink: 0;
}

.active-subs-divider {
    height: 1px;
    background-color: #eaeaea;
    margin: 20px 0;
}

.active-subs-details {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.active-subs-detail-col {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.active-subs-detail-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--textColor, #8b8a8a);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.active-subs-detail-value {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 28px;
    font-weight: 500;
    color: #203a70;
    line-height: 1.1;
}

.active-subs-period {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    color: var(--textColor, #8b8a8a);
    font-weight: 500;
    text-transform: uppercase;
}

.active-subs-payment-method {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #eaeaea;
    border-radius: 12px;
    padding: 12px 16px;
    margin: 20px 0;
    background-color: #f8fafc;
    transition: border-color 0.2s ease;
}

.active-subs-payment-method:hover {
    border-color: #cbd5e1;
}

.active-subs-pm-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #393939;
    font-family: 'Montserrat', sans-serif;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.active-subs-pm-info span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.active-subs-pm-info i {
    font-size: 15px;
    color: #4b5563;
    flex-shrink: 0;
}

.active-subs-pm-change {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #203a70;
    text-transform: lowercase;
    transition: opacity 0.2s ease;
}

.active-subs-pm-change:hover {
    opacity: 0.8;
    text-decoration: underline;
}

.active-subs-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    gap: 8px;
    flex-wrap: nowrap;
}

.active-subs-card-footer form {
    margin: 0;
    padding: 0;
    display: inline;
}

.active-subs-btn-pause {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #393939;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.active-subs-btn-pause:hover {
    opacity: 0.7;
}

.active-subs-btn-resume {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #1a7a3f;
    text-transform: uppercase;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.2s ease;
    white-space: nowrap;
}

.active-subs-btn-resume:hover {
    opacity: 0.7;
}

.active-subs-footer-actions {
    display: flex;
    gap: 8px;
}

.active-subs-btn-update {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #203a70;
    border: 2px solid #203a70;
    background-color: transparent;
    border-radius: 20px;
    padding: 8px 14px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.active-subs-btn-update:hover {
    background-color: #203a70;
    color: #ffffff;
}

.active-subs-btn-cancel {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #ffffff;
    background-color: #a61313;
    border: none;
    border-radius: 20px;
    padding: 8px 14px;
    text-transform: uppercase;
    cursor: pointer;
    letter-spacing: 0.5px;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.active-subs-btn-cancel:hover {
    opacity: 0.9;
}

.lifetime-card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
}

.lifetime-content-wrap {
    display: flex;
    flex-direction: column;
}

.lifetime-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
}

.lifetime-amount {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 40px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    line-height: 1.1;
    margin-bottom: 12px;
}

.lifetime-trend {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #059669;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.3px;
}

.lifetime-trend i {
    font-size: 12px;
}

.lifetime-desc {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    line-height: 1.6;
    color: var(--textColor, #8b8a8a);
    text-transform: uppercase;
    letter-spacing: 0.2px;
    margin: 25px 0 0 0;
}



/* Recent Recurring Transactions Table Styling overrides */
.donation-list-header {
    display: flex;
    padding: 24px 30px;
    align-items: center;
    justify-content: space-between;
    background-color: #e8ebf0;
    border-bottom: 1px solid #e1e1e1;
}

.donation-list-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donation-list-view-all {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: var(--headingColor2);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: color 0.2s ease;
}

.donation-list-view-all:hover {
    color: var(--themeColor, #203a70);
    text-decoration: underline;
}

/* Specific cell overrides for subscriptions history table */
.donation-list-card th {
    font-size: 14px !important;
    font-weight: 700 !important;
    padding: 16px 30px !important;
}

.donation-list-card td {
    font-size: 12px !important;
    font-weight: 700 !important;
    padding: 22px 30px !important;
}

.donation-list-card .date-cell {
    color: #1f2937 !important;
}

.donation-list-card .subscription-cell {
    color: #64748b !important;
}

.donation-list-card .amount-cell {
    font-family: 'BlenderPro-Medium', sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #1f2937 !important;
}

.donation-list-card .status-indicator.status-generated {
    color: #2e7d32;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
}

.donation-list-card .status-indicator.status-generated::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: #2e7d32;
    border-radius: 50%;
}

.donation-list-card .btn-download-receipt-icon {
    color: #203a70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s ease, transform 0.2s ease;
}

.donation-list-card .btn-download-receipt-icon:hover {
    color: #0578a0;
    transform: translateY(1px);
}

/* ==========================================================================
   ACTIVE SUBSCRIPTIONS SECTION END
   ========================================================================== */

/* ==========================================================================
   RECEIPTS MANAGEMENT SECTION START
   ========================================================================== */
.Receipts-Management {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eef0f3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.receipts-mgmt-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.receipts-mgmt-title-block {
    flex: 1;
    min-width: 250px;
}

.receipts-mgmt-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.receipts-mgmt-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #8b8a8a;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.receipts-mgmt-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.btn-receipts-action {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-receipts-export {
    background-color: #ffffff;
    border: 1.5px solid #203a70;
    color: #203a70;
}

.btn-receipts-export:hover {
    background-color: #f0f4fc;
    color: #12254e;
    border-color: #12254e;
    text-decoration: none;
}

.btn-receipts-download {
    background-color: #203a70;
    border: 1.5px solid transparent;
    color: #ffffff;
}

.btn-receipts-download:hover {
    background-color: #12254e;
    color: #ffffff;
    text-decoration: none;
}

.receipts-mgmt-grid {
    display: flex;
    gap: 20px;
}

.receipts-mgmt-card {
    flex: 1;
    height: 155px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-sizing: border-box;
}

.card-stat {
    background-color: #ffffff;
    border: 1px solid #eef0f3;
    padding: 24px;
}

.card-stat-info {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.card-stat-label {
    font-family: 'BlenderPro-Medium';
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-bottom: 8px;
}

.card-stat-value {
    font-family: 'BlenderPro-Medium';
    font-size: 34px;
    font-weight: 500;
    color: #121111;
    line-height: 1.1;
    margin-bottom: auto;
    display: block;
}

.card-stat-trend {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
}

.text-green {
    color: #00b074;
}

.text-grey {
    color: #8b8a8a;
}

.card-stat-watermark {
    position: absolute;
    right: -60px;
    bottom: 2px;
    height: 100%;
    color: #f1f5f9;
    pointer-events: none;
    z-index: 0;
    width: 50%;
}

.card-stat-watermark img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.card-promo {
    background-image: url(../images/tax-bg.png);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 24px 30px;
}

.card-promo-overlay {
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    position: absolute;
    background: linear-gradient(0deg, rgba(33, 59, 112, 1) 0%, rgba(33, 59, 112, 0.35) 100%);
}

.card-promo-content {
    position: relative;
    z-index: 2;
}

.card-promo-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.card-promo-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}



/* ========================= RECENT RECEIPTS SECTION START ========================= */
/* Header actions */
.receipts-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.tax-year-badge {
    background-color: var(--themeColor);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-family: 'BlenderPro-Medium';
}

.receipts-filter-icon-btn {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--headingColor2);
    display: flex;
    align-items: center;
    padding: 4px;
}

/* Table styling */
.receipts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0px;
}

.receipts-table th,
.receipts-table td {
    padding: 12px 16px;
    text-align: left;
    border-bottom: 1px solid #eef0f3;
    font-size: 12px;
    color: var(--headingColor2);
    font-family: 'BlenderPro-Medium';
}

.receipts-table th {
    background-color: #e8ebf0;
    font-weight: 600;
}

.donor-name-text {
    color: var(--themeColor);
}

.receipts-table .receipt-number-cell {
    font-weight: 600;
    color: var(--headingColor2);
}

.donor-name-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.donor-avatar {
    width: 30px;
    height: 30px;
    border-radius: 50px;
    object-fit: cover;
}

.receipt-status-badge {
    font-size: 11px;
    color: #1e643d;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 12px;
    background-color: #aefbda;
    text-transform: uppercase;
    border: 1px solid #efefef;
}

.action-icons-wrapper a {
    margin-right: 8px;
    color: var(--headingColor2);
    transition: color 0.2s ease;
}

.action-icons-wrapper a:hover {
    color: var(--themeColor);
}

/* ==========================================================================
   RECEIPTS MANAGEMENT SECTION END
   ========================================================================== */

/* ==========================================================================
   MAKE A DONATION SECTION START
   ========================================================================== */
.make-a-donation-box {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #eef0f3;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.03);
    box-sizing: border-box;
}

.donation-page-header {
    margin-bottom: 25px;
}

.donation-page-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 24px;
    font-weight: 500;
    color: var(--headingColor, #121111);
    margin: 0 0 5px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.donation-page-subtitle {
    margin: 0;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    color: var(--textColor);
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium', sans-serif;
}

.donation-columns-grid {
    display: flex;
    gap: 30px;
}

.donation-col-left {
    flex: 1.4;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donation-col-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.donation-step-card {
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
}

.step-card-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--themeColor);
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.step-card-title.inline-title {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0;
}

.payment-title-icon {
    color: #203a70;
}

.step-card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 10px;
}

.payment-secure-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: #1e5a3c;
    background-color: #e6f7ed;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.amount-presets-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 20px;
}

.preset-btn {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    background: #ffffff;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    padding: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.preset-btn.selected {
    border-color: #203a70;
    color: #203a70;
    box-shadow: 0px 4px 12px rgba(32, 58, 112, 0.05);
}

.preset-btn:hover {
    border-color: #203a70;
}

.custom-amount-block {
    margin-bottom: 25px;
}

.custom-amount-label {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 11px;
    font-weight: 700;
    color: #64748b;
    margin-bottom: 8px;
    display: block;
    letter-spacing: 0.5px;
}

.custom-amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 18px;
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
}

.custom-amount-input {
    width: 100%;
    padding: 14px 18px 14px 36px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    box-sizing: border-box;
    outline: none;
}

.custom-amount-input:focus {
    border-color: #203a70;
}

.frequency-selection-box {
    background-color: #e8ebf0;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.frequency-info-block {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.frequency-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    letter-spacing: 0.5px;
    font-family: 'BlenderPro-Medium';
}

.frequency-subtitle {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: var(--textColor);
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.frequency-toggle-wrapper {
    padding: 4px;
    border-radius: 50px;
    display: flex;
    gap: 4px;
}

.freq-toggle-btn {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    cursor: pointer;
    font-weight: 500;
    padding: 10px 20px;
    border-radius: 50px;
    background: #f2f2f2;
    transition: all 0.2s ease;
    border: 1px solid #e1e1e1;
    color: var(--headingColor2);
}

.freq-toggle-btn.active {
    background-color: #203a70;
    color: #ffffff;
}

.freq-toggle-btn:disabled,
.freq-toggle-btn.disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.form-row-full {
    margin-bottom: 20px;
}

.form-row-split {
    display: flex;
    gap: 20px;
}

.col-half {
    flex: 1;
}

.form-field-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label-text {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--headingColor2);
    font-family: 'BlenderPro-Medium', sans-serif;
}

.donation-text-input {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    color: #1f2937;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s ease;
}

.donation-text-input:focus {
    border-color: #203a70;
}

.donation-textarea-input {
    width: 100%;
    height: 120px;
    padding: 16px;
    display: block;
    align-content: flex-end;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    color: var(--textColor);
    box-sizing: border-box;
    outline: none;
    resize: none;
}

.donation-textarea-input:focus {
    border-color: #203a70;
}

.saved-cards-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.saved-card-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    padding: 18px 24px;
}

.card-brand-logo-wrapper {
    flex-shrink: 0;
}

.card-details-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.card-number-mask {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.card-expiry-badge {
    font-family: 'Montserrat', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: #94a3b8;
    margin: 0;
}

.btn-add-new-payment {
    width: 100%;
    border-radius: 8px;
    background: transparent;
    padding: 20px;
    font-size: 16px;
    border: 1.5px dashed #cbd5e1;
    font-weight: 500;
    display: flex;
    font-family: 'BlenderPro-Medium', sans-serif;
    color: var(--headingColor2);
    cursor: pointer;
    transition: all 0.2s ease;
    align-items: center;
    justify-content: center;
}

.btn-add-new-payment:hover {
    border-color: #203a70;
    color: #203a70;
}

.donation-summary-widget {
    border: 1px solid #eef0f3;
    border-radius: 16px;
    overflow: hidden;
    background-color: #ffffff;
}

.summary-widget-header {
    background-color: #203a70;
    padding: 24px;
}

.summary-header-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #ffffff;
    margin: 0 0 4px 0;
    letter-spacing: 0.5px;
}

.summary-header-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.summary-widget-body {
    padding: 24px;
}

.summary-list-details {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.detail-label {
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: var(--headingColor2);
    font-family: 'BlenderPro-Medium', sans-serif;
}

.detail-val-amount {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #1f2937;
}

.detail-val-frequency-badge {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: #4b5563;
    background-color: #f1f5f9;
    padding: 8px 20px;
    border-radius: 50px;
    letter-spacing: 0.3px;
}

.detail-val-designation {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--textColor);
    letter-spacing: 0.3px;
}

.summary-divider-line {
    border: 0;
    border-top: 1px solid #eef0f3;
    margin: 20px 0;
}

.summary-options-block {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.summary-checkbox-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    position: relative;
}

.summary-checkbox-input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.summary-checkbox-custom {
    height: 18px;
    width: 18px;
    background-color: #f1f5f9;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    flex-shrink: 0;
    position: relative;
    transition: all 0.2s ease;
}

.summary-checkbox-input:checked~.summary-checkbox-custom {
    background-color: #203a70;
    border-color: #203a70;
}

.summary-checkbox-custom::after {
    content: "";
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 4px;
    height: 8px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.summary-checkbox-input:checked~.summary-checkbox-custom::after {
    display: block;
}

.summary-checkbox-label-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--textColor);
    font-family: 'BlenderPro-Medium', sans-serif;
}

.summary-total-block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.total-label-text {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #203a70;
    letter-spacing: 0.5px;
}

.summary-total-block .total-val-amount {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #203a70;
}

.btn-submit-donation-checkout {
    width: fit-content;
    background-color: #203a70;
    color: #ffffff;
    border: none;
    margin: 0px auto;
    border-radius: 50px;
    padding: 14px 35px;
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-align: center;
    display: block;
}

.btn-submit-donation-checkout:hover {
    background-color: #12254e;
}

.donation-disclaimer-text {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.4;
    max-width: 380px;
    text-align: center;
    letter-spacing: 0.3px;
    margin: 15px auto 0px;
    color: var(--textColor);
    text-transform: uppercase;
    font-family: 'BlenderPro-Medium';
}

.donation-program-selection-widget {
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 24px;
    background-color: #ffffff;
}

.program-widget-title {
    font-family: 'BlenderPro-Medium', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #203a70;
    margin-top: 0;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.program-options-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.program-option-item {
    display: flex;
    align-items: center;
    gap: 15px;
    border: 1px solid #eef0f3;
    border-radius: 8px;
    padding: 16px 20px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.program-option-item.selected {
    border-color: #203a70;
    box-shadow: 0px 4px 12px rgba(32, 58, 112, 0.05);
}

.program-option-item:hover {
    border-color: #203a70;
}

.program-icon-container {
    flex-shrink: 0;
    color: #203a70;
}

.program-text-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.program-name {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #1f2937;
    font-family: 'BlenderPro-Medium';
}

.program-description {
    margin: 0;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.3px;
    color: var(--textColor);
    font-family: 'BlenderPro-Medium';
}

.login-box .btn-register-link {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.settings-password-wrapper {
    position: relative;
}

.settings-password-wrapper .field-input {
    padding-right: 48px;
}

.settings-password-toggle {
    position: absolute;
    top: 50%;
    right: 18px;
    transform: translateY(-50%);
    color: #8b8a8a;
    cursor: pointer;
    z-index: 2;
}

.action-icons-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.action-icons-wrapper .action-icon-btn {
    font-size: 20px;
    color: var(--themeColor);
    line-height: 1;
}

.program-option-item > * {
    pointer-events: none;
}

.preset-btn:disabled,
.preset-btn.disabled,
.donation-submit-btn:disabled,
.donation-submit-btn.disabled {
    cursor: not-allowed;
    opacity: 0.45;
}

.program-option-item.program-option-reached,
.program-option-item:disabled {
    cursor: not-allowed;
    opacity: 0.55;
}

.program-target-chip {
    width: fit-content;
    margin-top: 6px;
    display: inline-flex;
    align-items: center;
    border-radius: 20px;
    padding: 4px 10px;
    background-color: #eef3ff;
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 11px;
    text-transform: uppercase;
}

.program-target-box {
    margin-top: 18px;
    padding: 14px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eef0f3;
}

.program-target-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
    color: #64748b;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    text-transform: uppercase;
}

.program-target-row strong {
    color: #203a70;
    font-size: 13px;
}

.program-target-progress {
    width: 100%;
    height: 8px;
    overflow: hidden;
    border-radius: 20px;
    background-color: #e8ebf0;
}

.program-target-progress span {
    display: block;
    height: 100%;
    border-radius: 20px;
    background-color: #203a70;
}

.program-target-warning {
    display: none;
    margin-top: 10px;
    color: #a61313;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.active-subs-footer-actions form {
    margin: 0;
}

a.active-subs-btn-update,
a.active-subs-btn-pause {
    text-decoration: none;
}

a.notift-icon span {
    width: auto;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    top: 4px;
    right: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 9px;
    line-height: 1;
    font-family: 'BlenderPro-Medium';
}

ul.notification-messages-list {
    z-index: 9999;
    width: 320px;
}

ul.notification-messages-list li .notification-info {
    min-width: 0;
    flex: 1;
}

ul.notification-messages-list li .notification-info h6 {
    margin-bottom: 3px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

ul.notification-messages-list li .notification-info p {
    margin: 0 0 3px;
    color: rgba(255, 255, 255, 0.8);
    font-family: 'BlenderPro-Medium';
    font-size: 9px;
    line-height: 1.25;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

ul.notification-messages-list li .notification-info span {
    position: static;
    display: block;
    font-size: 10px;
    line-height: 1.3;
}

.donation-inline-search {
    min-height: 43px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0 10px 0 16px;
    border-radius: 50px;
    border: 1px solid #fbf4e2;
    background-color: #ffffff;
}

.donation-inline-search input {
    width: 210px;
    border: 0;
    outline: 0;
    color: #1e293b;
    font-size: 13px;
    font-family: 'BlenderPro-Medium';
    background: transparent;
}

.donation-inline-search button {
    min-height: 32px;
    padding: 0 16px;
    border: 0;
    border-radius: 50px;
    background-color: #203a70;
    color: #ffffff;
    font-family: 'BlenderPro-Medium';
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.donation-inline-search a {
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.donation-inline-search a:hover {
    color: #12254e;
    text-decoration: none;
}

.donation-detail-card {
    padding: 30px;
    border-radius: 24px;
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.donation-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.donation-detail-panel {
    border: 1px solid #eef0f3;
    border-radius: 16px;
    padding: 22px;
    background-color: #ffffff;
}

.donation-detail-panel h3,
.donation-detail-payments h3,
.donation-detail-subscription h3 {
    margin: 0 0 16px;
    color: #1a1a1a;
    font-family: 'BlenderPro-Medium';
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.donation-detail-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
    font-family: 'BlenderPro-Medium';
}

.donation-detail-row:last-child {
    border-bottom: 0;
}

.donation-detail-row span,
.donation-detail-message span {
    color: #8b8a8a;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.donation-detail-row strong {
    color: #203a70;
    font-size: 13px;
    text-align: right;
}

.donation-detail-message {
    padding-top: 14px;
}

.donation-detail-message p {
    margin: 8px 0 0;
    color: #334155;
    font-family: 'BlenderPro-Medium';
    font-size: 13px;
    line-height: 1.5;
}

.donation-detail-subscription {
    margin-top: 24px;
    padding: 22px;
    border-radius: 16px;
    background-color: #f8fafc;
    border: 1px solid #eef0f3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.donation-detail-subscription p {
    margin: 0;
    color: #64748b;
    font-family: 'BlenderPro-Medium';
    font-size: 13px;
    font-weight: 700;
}

.donation-detail-payments {
    margin-top: 24px;
}

.action-cell {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 767px) {
    .donation-detail-grid {
        grid-template-columns: 1fr;
    }

    .donation-detail-card {
        padding: 20px;
    }

    .donation-detail-subscription {
        align-items: flex-start;
        flex-direction: column;
    }

    .donation-inline-search {
        width: 100%;
    }

    .donation-inline-search input {
        width: 100%;
    }

    ul.notification-messages-list {
        right: -80px;
        width: 290px;
    }
}

.donation-programs-page-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.donation-program-history-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 42px;
    padding: 0 18px;
    border-radius: 50px;
    background-color: #203a70;
    color: #ffffff;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.donation-program-history-link:hover {
    color: #ffffff;
    background-color: #12254e;
}

.donation-program-header-actions {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.donation-program-list-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
}

.donation-program-list-card {
    display: flex;
    flex-direction: column;
    min-height: 100%;
    gap: 18px;
    padding: 24px;
    border: 1px solid #eef0f3;
    border-radius: 16px;
    background-color: #ffffff;
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.donation-program-list-card:hover {
    color: inherit;
    border-color: #203a70;
    box-shadow: 0px 14px 35px rgba(32, 58, 112, 0.08);
    transform: translateY(-2px);
    text-decoration: none;
}

.donation-program-list-card.program-is-full {
    opacity: 0.62;
    cursor: not-allowed;
}

.donation-program-list-card.program-is-full:hover {
    border-color: #eef0f3;
    box-shadow: none;
    transform: none;
}

.donation-program-list-top {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.donation-program-list-icon,
.selected-program-detail-icon {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background-color: #eef3ff;
    color: #203a70;
    font-size: 18px;
}

.donation-program-list-title-wrap h3,
.selected-program-title {
    margin: 0 0 8px;
    color: #0f172a;
    font-family: 'BlenderPro-Medium';
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.donation-program-list-title-wrap p,
.selected-program-description {
    margin: 0;
    color: var(--textColor);
    font-family: 'BlenderPro-Medium';
    font-size: 13px;
    font-weight: 600;
    line-height: 1.45;
}

.donation-program-list-meta,
.selected-program-meta-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.selected-program-meta-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.donation-program-list-meta div,
.selected-program-meta-item {
    padding: 14px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eef0f3;
}

.donation-program-list-meta span,
.selected-program-meta-item span,
.selected-program-kicker {
    display: block;
    margin-bottom: 6px;
    color: #8b8a8a;
    font-family: 'BlenderPro-Medium';
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.donation-program-list-meta strong,
.selected-program-meta-item strong {
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 13px;
    font-weight: 700;
}

.donation-program-list-target {
    padding: 14px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eef0f3;
}

.donation-program-list-footer {
    margin-top: auto;
    display: flex;
    justify-content: flex-end;
}

.donation-program-list-action,
.donation-program-list-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 16px;
    border-radius: 50px;
    background-color: #203a70;
    color: #ffffff;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.donation-program-list-status {
    background-color: #e8ebf0;
    color: #64748b;
}

.selected-program-detail-card {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.selected-program-detail-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.selected-program-progress {
    padding: 14px;
    border-radius: 12px;
    background-color: #f8fafc;
    border: 1px solid #eef0f3;
}

.selected-program-progress-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
    color: #64748b;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.selected-program-progress-label strong {
    color: #203a70;
}

@media (max-width: 991px) {
    .donation-program-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 575px) {
    .donation-programs-page-header,
    .selected-program-detail-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .donation-program-history-link {
        width: 100%;
    }

    .donation-program-list-meta,
    .selected-program-meta-grid {
        grid-template-columns: 1fr;
    }
}

.dashboard-html-row {
    align-items: flex-start;
}

.dashboard-html-row .welcome-box {
    min-height: 280px;
    border-radius: 24px;
}

.dashboard-html-row .welcome-text {
    margin-bottom: -18px;
}

.dashboard-html-row .totel-amount-box {
    max-width: 430px;
}

.dashboard-side-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.dashboard-side-card {
    background-color: #ffffff;
    border-radius: 24px;
    padding: 24px;
    border: 1px solid #eef0f3;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.02);
}

.dashboard-side-card .subscription-header {
    padding-bottom: 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.dashboard-side-card .subscription-title {
    font-size: 15px;
}

.dashboard-subscription-widget.subscription-card {
    margin-bottom: 0;
}

.dashboard-subscription-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
    color: inherit;
    text-decoration: none;
}

.dashboard-subscription-item:last-child {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: 0;
}

.dashboard-subscription-item:hover {
    color: inherit;
    text-decoration: none;
}

.dashboard-subscription-item .subscription-icon-box {
    width: 48px;
    height: 48px;
}

.dashboard-subscription-item .subscription-details {
    flex: 1 1 auto;
}

.dashboard-subscription-item .subscription-status-badge {
    flex: 0 0 auto;
}

.dashboard-empty-note {
    color: var(--textColor);
    font-family: 'BlenderPro-Medium';
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.dashboard-toggle-list {
    display: flex;
    flex-direction: column;
}

.dashboard-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 0 0 18px;
    margin-bottom: 18px;
    border-bottom: 1px solid #f0f0f0;
}

.dashboard-toggle-row h4 {
    margin: 0 0 5px;
    color: #1a1a1a;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.dashboard-toggle-row p {
    margin: 0;
    color: #8b8a8a;
    font-family: 'BlenderPro-Medium';
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2px;
    line-height: 1.3;
    text-transform: uppercase;
    word-break: break-word;
}

.dashboard-switch {
    width: 42px;
    height: 24px;
    flex: 0 0 42px;
    border-radius: 999px;
    background-color: #dbe1ec;
    position: relative;
}

.dashboard-switch::after {
    content: '';
    width: 18px;
    height: 18px;
    position: absolute;
    top: 3px;
    left: 3px;
    border-radius: 50%;
    background-color: #ffffff;
    transition: left 0.2s ease;
}

.dashboard-switch.is-on {
    background-color: #203a70;
}

.dashboard-switch.is-on::after {
    left: 21px;
}

.dashboard-widget-link {
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.dashboard-widget-link:hover {
    color: #203a70;
    text-decoration: underline;
}

.dashboard-primary-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 32px;
    padding: 0 14px;
    border-radius: 50px;
    background-color: #eef3ff;
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
}

.dashboard-add-payment-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 58px;
    border-radius: 16px;
    border: 1px dashed #cbd5e1;
    color: #203a70;
    font-family: 'BlenderPro-Medium';
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    text-decoration: none;
}

.dashboard-add-payment-link:hover {
    border-color: #203a70;
    color: #203a70;
    text-decoration: none;
}

.dashboard-history-card {
    margin-bottom: 0;
}

@media (max-width: 1199px) {
    .dashboard-html-row .welcome-text p {
        width: 70%;
    }

    .dashboard-html-row .totel-amount-box {
        max-width: 380px;
    }
}

@media (max-width: 991px) {
    .dashboard-side-stack {
        margin-top: 24px;
    }

    .dashboard-html-row .welcome-text p {
        width: 85%;
    }
}

@media (max-width: 575px) {
    .dashboard-html-row .welcome-box {
        min-height: 360px;
        padding: 24px;
    }

    .dashboard-html-row .welcome-text {
        margin-bottom: 20px;
    }

    .dashboard-html-row .welcome-text p {
        width: 100%;
    }

    .dashboard-html-row .totel-amount-box {
        width: 100%;
        max-width: none;
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-html-row .totel-amount-box::before {
        width: 90%;
        height: 1px;
    }

    .dashboard-html-row .totel-amount-box-text {
        width: 100%;
    }

    .dashboard-toggle-row,
    .dashboard-subscription-item {
        align-items: flex-start;
    }
}

/* Responsive */

@media (max-width: 768px) {
    .receipts-header-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .receipts-table th,
    .receipts-table td {
        padding: 8px 12px;
    }

    .donor-name-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    .preferences-card {
        padding: 25px 20px;
    }

    .preference-item {
        gap: 10px;
    }


}

@media (max-width: 991px) {
    .receipts-mgmt-grid {
        flex-direction: column;
        gap: 15px;
    }

    .receipts-mgmt-card {
        height: auto;
        min-height: 150px;
    }

    .donation-columns-grid {
        flex-direction: column;
        gap: 20px;
    }

    .amount-presets-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .form-row-split {
        flex-direction: column;
        gap: 15px;
    }

    .receipts-mgmt-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .receipts-mgmt-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .active-subs-grid {
        flex-direction: column;
        gap: 15px;
    }

    .settings-card {
        padding: 25px 20px;
    }

    .form-footer-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-meta-text {
        max-width: 100%;
        text-align: center;
    }

    .btn-save-changes,
    .btn-change-password {
        width: 100%;
        text-align: center;
    }

    .settings-row-spacer {
        height: 15px;
    }

    .donation-history-main-card,
    .donation-list-card {
        padding: 25px 20px;
    }

    .donation-history-main-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .btn-export-csv {
        width: 100%;
        justify-content: center;
    }

    .donation-filter-bar {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .donation-filter-group {
        flex-direction: column;
        align-items: stretch;
    }

    .dropdown-filter-btn {
        width: 100%;
        justify-content: space-between;
    }

    .donation-clear-filters {
        text-align: center;
        margin-left: 0;
        width: 100%;
    }
}

/* Responsive Overrides */
