.crypto-list-row {
    overflow: auto;
    width: 100%;
    line-height: 50px;
    padding-left: 5px;
    padding-right: 5px;
    cursor: pointer;
}

.crypto-list-row:hover, .crypto-list-row:active {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
}

.crypto-list-row.active{
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 50px;
}

.secure-card-logo{
    color:var(--primary-color);
}

.progress-border.progress-border-99 .secure-card-logo{
    color:#FFFFFF;
}

.placeholder-white::placeholder{
    color:#FFFFFF;
}

.s-pay-container{
    min-height: 70px;
    margin:auto;
    max-width: 420px;
    padding-left:20px;
    padding-right:20px;
}

.s-pay-container .applePayButton{
    margin-bottom: 8px;
}

apple-pay-button {
    --apple-pay-button-height: 40px!important;
}


.s-pay-container .CollectJSGooglePayIFrame{
    height: 70px;
}

body.giving-widget .giving-widget-amounts{
    overflow: auto;
    margin:0 10px;
    padding:10px 0;
}

body.giving-widget .giving-widget-amounts .active{
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color:white;
}

body.giving-widget .other-amount{
    margin:0 10px;
}

body.giving-widget .fund-container{
    padding-top:0!important;
    /*margin-bottom: 20px;*/
}

body.giving-widget .giving-amount-label{
    font-weight: bold;
    line-height: 30px;
    padding-left:5px;
}

body.giving-widget .g-page-progress-bar{
    margin-left:15px;
    margin-right:15px;
}

body.giving-widget .giving-widget-header{
    margin-top:-40px;
    padding:0 10px;

}

body.giving-widget .giving-widget-footer{
    padding:0 10px 20px 10px;
}

body.giving-widget .giving-widget-header h1,
body.giving-widget .giving-widget-header h2, 
body.giving-widget .giving-widget-header h3,
body.giving-widget .giving-widget-header h4,
body.giving-widget .giving-widget-header h5,
body.giving-widget .giving-widget-footer h1,
body.giving-widget .giving-widget-footer h2,
body.giving-widget .giving-widget-footer h3, 
body.giving-widget .giving-widget-footer h4,
body.giving-widget .giving-widget-footer h5,
.giving-page-header h1,
.giving-page-header h2,
.giving-page-header h3,
.giving-page-header h4,
.giving-page-header h5,
.giving-page-footer h1,
.giving-page-footer h2,
.giving-page-footer h3,
.giving-page-footer h4,
.giving-page-footer h5 {
    font-size: revert;
    font-weight: revert;
    margin: revert;
    padding: revert;
    line-height: revert;
    margin:10px 0 10px 0;
}

body.giving-widget .giving-widget-header ul,
body.giving-widget .giving-widget-header ol,
body.giving-widget .giving-widget-header li,
body.giving-widget .giving-widget-footer ul,
body.giving-widget .giving-widget-footer ol,
body.giving-widget .giving-widget-footer li,
.giving-page-header ul,
.giving-page-header ol,
.giving-page-header li,
.giving-page-footer ul,
.giving-page-footer ol,
.giving-page-footer li {
    list-style: revert;
    margin: revert;
    padding: revert;
}

.giving-page-footer, .giving-widget-header, body.giving-widget .giving-widget-header, body.giving-widget .giving-widget-footer{
    color:#5e5e5e!important;
}

/* Giving Widget Styles */

/* ==========================================================================
   Utility Classes
   ========================================================================== */
.g24-primary-color {
    color: var(--primary-color);
}

.g24-primary-color-bg {
    background-color: var(--primary-color);
}

.g24-bg-split-primary-white {
    background: linear-gradient(to bottom, var(--primary-color) 50%, white 50%);
}

.g24-text-white{
    color: white;
}


/* ==========================================================================
   Donation Type Selector Component
   ========================================================================== */

.frequency-btn-group{
    /*margin-top:-30px;*/
}


.g24-donation-type-selector {
    margin: 0 auto;
    position: relative;
}

.g21-donation-type-selector-wide{
    width:80%!important;
}

/* add media min-width less than 640px */
@media (max-width: 640px) {
    .g21-donation-type-selector-wide {
        width: 90% !important;
    }
}

/* Toggle Container */
.g24-toggle-container {
    display: flex;
    background: #f3f4f6;
    padding: 6px;
    border-radius: 9999px;
    position: relative;
    gap: 4px;
    box-shadow: inset 0 3px 3px -1px rgba(0, 0, 0, 0.2),
    inset 0 2px 8px rgba(0, 0, 0, 0.12);
    width: 100%;
}

/* Sliding background for toggle */
.g24-toggle-container::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 6px;
    width: calc(50% - 6px);
    height: calc(100% - 12px);
    background: var(--primary-color);
    border-radius: 9999px;
    transition: transform 0.3s ease;
    z-index: 1;
    box-shadow: 0 0 0 2px white,
    0 0 0 4px rgba(var(--primary-color-rgb), 0.5);
}

.g24-toggle-container.recurring::before {
    transform: translateX(calc(100% + 2px));
}

/* Toggle Options */
.g24-toggle-option {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 16px;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 500;
    color: #374151;
    transition: all 0.2s ease;
    position: relative;
    z-index: 2;
    background: transparent;
    height: 48px;
}

.g24-toggle-option svg {
    transition: all 0.2s ease;
}

.g24-toggle-option.active {
    color: white;
}

.g24-toggle-option:not(.active):hover {
    color: #1f2937;
    /*background-color: rgba(0, 0, 0, 0.1);*/
    background-color: rgba(var(--primary-color-rgb),0.1);
}

/* ==========================================================================
   Modal Component
   ========================================================================== */
/* .g24-modal {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.g24-modal.active {
    opacity: 1;
    visibility: visible;
    backdrop-filter: blur(4px);
}

.g24-modal > div {
    margin-top: -20vh;
    max-height: 90vh;
    overflow-y: auto;
    background: white;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.g24-modal.active > div {
    transform: translateY(0);
} */

/* Frequency Options within Modal */
.g24-frequency-option {
    @apply w-full text-left px-4 py-3 rounded-lg transition-colors
    hover:bg-blue-50 text-gray-700 hover:text-blue-600
    focus:outline-none focus:ring-2 focus:ring-blue-500;
}

.g24-modal .g24-frequency-option {
    display: block;
    width: 100%;
    text-align: left;
    padding: 12px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.g24-modal .g24-frequency-option:hover {
    background-color: #f3f4f6;
}

/* ==========================================================================
   Tooltip Component
   ========================================================================== */
.g24-tooltip {
    position: fixed;
    pointer-events: none;
    background-color: #1a1f36;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.4;
    max-width: 280px;
    text-align: center;
    z-index: 50;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.g24-tooltip-arrow {
    position: absolute;
    width: 12px;
    height: 12px;
    background: inherit;
    left: 50%;
    bottom: -6px;
    transform: translateX(-50%) rotate(45deg);
}

/* ==========================================================================
   Fund List Component
   ========================================================================== */

.fund-btn-group .fund-rounded-r-none{
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.g24-fund-list {
    display: flex;
    flex-direction: column;
    width: 90%;
    margin: 24px auto;
    background: var(--primary-color);
    border-radius: 22px;
    padding: 16px;
    gap: 1px;
}

/* Fund Input Row */
.g24-fund-input-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--primary-color);
}

.g24-fund-input-row:not(:first-child) {
    margin-top: 10px;
}

/* Fund Row Header */
.g24-fund-row-header {
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Fund Select */
.g24-fund-select {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 16px;
    border-radius: 16px;
    color: white;
    transition: background-color 0.2s;
    flex: 1;
}

.g24-fund-select .icon {
    opacity: 0.7;
}

/* Fund Inputs */
.g24-fund-row-inputs {
    display: flex;
    gap: 8px;
}

.g24-fund-amount {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 16px;
    color: white;
    width: 160px;
}

.g24-fund-amount input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    padding: 0 8px;
    font-size: 16px;
}

.g24-fund-description {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 12px 16px;
    color: white;
}

.g24-fund-description input {
    background: transparent;
    border: none;
    outline: none;
    color: white;
    width: 100%;
    font-size: 16px;
}

.g24-fund-description input::placeholder,
.g24-fund-amount input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Fund Actions */
.g24-remove-fund {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px;
    color: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    transition: color 0.2s;
}

.g24-add-fund {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: white;
    border: 1px dashed rgba(255, 255, 255, 0.3);
    padding: 12px;
    border-radius: 16px;
    margin-top: 8px;
    transition: background-color 0.2s;
}

.g24-add-fund:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Add Fund Button States */
.g24-add-fund-btn {
    display: none!important;
}

.g24-fund-row:last-child .g24-add-fund-btn {
    display: flex!important;
}

.bg-white\/10 {
    background-color: rgb(255 255 255 / 0.1);
}

.bg-white\/15 {
    background-color: rgb(255 255 255 / 0.15);
}

.bg-white\/20 {
    background-color: rgb(255 255 255 / 0.2);
}

.hover\:bg-white\/15:hover {
    background-color: rgb(255 255 255 / 0.15);
}

.hover\:bg-white\/10:hover {
    background-color: rgb(255 255 255 / 0.1);
}

.rounded-\[22px\] {
    border-radius: 22px;
}

.rounded-\[18px\] {
    border-radius: 18px;
}

.text-white\/60 {
    color: rgb(255 255 255 / 0.6);
}

.text-white\/50 {
    color: rgb(255 255 255 / 0.5);
}

.bg-white\/5 {
    background-color: rgb(255 255 255 / 0.05);
}

.\[appearance\:textfield\] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.\[\&\::-webkit-outer-spin-button\]\:appearance-none::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.\[\&\::-webkit-inner-spin-button\]\:appearance-none::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.border-white\/30 {
    border-color: rgb(255 255 255 / 0.3);
}

.placeholder-white\/50::placeholder {
    color: rgb(255 255 255 / 0.5);
}



/* ==========================================================================
   Mobile Specific Styles
   ========================================================================== */

@media (min-width:640px) {

    .sm\:rounded-l-\[18px\] {
        border-radius: 18px 0 0 18px;
    }

    .sm\:rounded-r-\[18px\] {
        border-radius: 0 18px 18px 0;
    }
    .sm\:rounded-\[18px\] {
        border-radius: 18px;
    }
    .sm\:w-\[18px\] {
        width: 18px;
    }
    .sm\:h-\[18px\] {
        height: 18px;
    }
}

@media (max-width: 640px) {

    .fund-btn-group .fund-rounded-r-none{
        border-top-right-radius: 18px;
        border-bottom-right-radius: 18px;
    }

    .g24-tooltip {
        display: none;
    }

    .g24-mobile-fund-hierarchy {
        position: relative;
        padding-left: 24px;
        display: flex;
        flex-direction: column;
        gap: 1px;
        margin-top: 1px;
    }

    .g24-mobile-fund-hierarchy::before {
        content: '';
        position: absolute;
        left: 12px;
        top: 0;
        bottom: 0;
        width: 2px;
        background-color: rgba(255, 255, 255, 0.2);
    }

    .g24-mobile-fund-item {
        position: relative;
        margin-bottom: 1px;
    }

    .g24-mobile-primary-button {
        height: 56px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .g24-mobile-secondary-button {
        height: 48px;
        padding-top: 6px;
        padding-bottom: 6px;
    }
}

/* ==========================================================================
   Animation Styles
   ========================================================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.g24-slide-down {
    animation: slideDown 0.3s ease-out;
}

/* ==========================================================================
   Utility Classes & Overrides
   ========================================================================== */
.g24-info-icon,
.g24-info-icons {
    display: none;
}

/* Remove number input spinners */
.g24-mobile-fund-hierarchy input[type="number"] {
    -moz-appearance: textfield;
}

.g24-mobile-fund-hierarchy input[type="number"]::-webkit-outer-spin-button,
.g24-mobile-fund-hierarchy input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* ==========================================================================
   Tell Us About Yourself Styles
   ========================================================================== */

/* Variables */
:root {
    --g24-tell-us-background: #fafafa;
    --g24-tell-us-muted: #fafafa;
    --g24-tell-us-input-text: #94a3b8;
    --g24-tell-us-label-text: #94a3b8;
    --g24-tell-us-border-color: #f1f5f9;

}

/* Base Styles */


.g24-tell-us-about-yourself {
    background-color: var(--g24-tell-us-background) !important;
}

/* Form Reset */
.g24-tell-us-form {
    /* Override Tailwind forms plugin defaults */
    all: unset;
    width: 100%;
}

/* Input Container Styles */
.g24-tell-us-input-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Input Group Styles */
.g24-tell-us-input-group {
    position: relative;
    padding: 16px 24px;
}

.g24-tell-us-input-group:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.g24-tell-us-label {
    display: block;
    font-size: 16px;
    color: var(--g24-tell-us-label-text);
    margin-bottom: 4px;
    font-weight: 400;
}

.g24-tell-us-input {
    width: 100%;
    border: none !important;
    padding: 0 !important;
    font-size: 16px;
    /* color: var(--g24-tell-us-input-text); */
    background: transparent !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    border-radius: 0 !important;
    margin: 0 !important;
}

.g24-tell-us-input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    ring: none !important;
}

.g24-tell-us-input::placeholder {
    color: var(--g24-tell-us-input-text);
    opacity: 0.7;
}

/* Phone Input Wrapper */
.g24-tell-us-phone-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

/* Submit Button Styles */
.g24-tell-us-submit-button {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background-color: var(--primary-color);
    color: white;
    width: 56px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none !important;
    padding: 0 !important;
}

.g24-tell-us-submit-button:hover {
    background-color: color-mix(in srgb, var(--primary-color) 85%, white);
}

.g24-tell-us-submit-button i {
    width: 18px;
    height: 18px;
}

/* Utility Classes */
.g24-tell-us-text-primary {
    color: var(--primary-color);
}

/* Animations */
.g24-tell-us-sparkles-container {
    position: relative;
    width: 32px;
    height: 32px;
}

/* Add new animate class to trigger animations */
.g24-tell-us-sparkles-container.animate {
    animation: g24TellUsScaleIn 0.3s ease-out;
}

/* Update main sparkle icon */
.g24-tell-us-sparkles-container i {
    display: block;
    position: relative;
    color: var(--primary-color);
}

.g24-tell-us-sparkles-container.animate i {
    animation: g24TellUsFireworkCenter 1.5s ease-in-out 2;
}

/* Update particle animations to only trigger with animate class */
.g24-tell-us-sparkles-container.animate::before {
    content: '★';
    animation: g24TellUsFireworkLeft 1.5s ease-out 2;
}

.g24-tell-us-sparkles-container.animate::after {
    content: '✦';
    animation: g24TellUsFireworkRight 1.5s ease-out 2;
}

.g24-tell-us-sparkles-container.animate i::before {
    content: '✧';
    animation: g24TellUsFireworkTop 1.5s ease-out 2;
}

.g24-tell-us-sparkles-container.animate i::after {
    content: '⋆';
    animation: g24TellUsFireworkBottom 1.5s ease-out 2;
}

.g24-tell-us-sparkles-container.animate span::before {
    content: '✦';
    animation: g24TellUsFireworkTopLeft 1.5s ease-out 2;
}

.g24-tell-us-sparkles-container.animate span::after {
    content: '✧';
    animation: g24TellUsFireworkTopRight 1.5s ease-out 2;
}

/* Base styles for all particles */
.g24-tell-us-sparkles-container::before,
.g24-tell-us-sparkles-container::after,
.g24-tell-us-sparkles-container i::before,
.g24-tell-us-sparkles-container i::after,
.g24-tell-us-sparkles-container span::before,
.g24-tell-us-sparkles-container span::after {
    content: '★';
    position: absolute;
    font-size: 12px;
    color: #6b8cff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* Individual particle animations */
.g24-tell-us-sparkles-container::before {
    content: '★';
    animation: g24TellUsFireworkLeft 1.5s ease-out 2;
}

.g24-tell-us-sparkles-container::after {
    content: '✦';
    animation: g24TellUsFireworkRight 1.5s ease-out 2 0.1s;
}

.g24-tell-us-sparkles-container i::before {
    content: '✧';
    animation: g24TellUsFireworkTop 1.5s ease-out 2 0.2s;
}

.g24-tell-us-sparkles-container i::after {
    content: '⋆';
    animation: g24TellUsFireworkBottom 1.5s ease-out 2 0.3s;
}

.g24-tell-us-sparkles-container span::before {
    content: '✦';
    animation: g24TellUsFireworkTopLeft 1.5s ease-out 2 0.15s;
}

.g24-tell-us-sparkles-container span::after {
    content: '✧';
    animation: g24TellUsFireworkTopRight 1.5s ease-out 2 0.25s;
}

/* Keyframes for all directions */
@keyframes g24TellUsFireworkLeft {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translate(-200%, -50%) scale(0); opacity: 0; }
    100% { transform: translate(-200%, -50%) scale(0); opacity: 0; }
}

@keyframes g24TellUsFireworkRight {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translate(200%, -50%) scale(0); opacity: 0; }
    100% { transform: translate(200%, -50%) scale(0); opacity: 0; }
}

@keyframes g24TellUsFireworkTop {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translate(-50%, -200%) scale(0); opacity: 0; }
    100% { transform: translate(-50%, -200%) scale(0); opacity: 0; }
}

@keyframes g24TellUsFireworkBottom {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translate(-50%, 200%) scale(0); opacity: 0; }
    100% { transform: translate(-50%, 200%) scale(0); opacity: 0; }
}

@keyframes g24TellUsFireworkTopLeft {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translate(-200%, -200%) scale(0); opacity: 0; }
    100% { transform: translate(-200%, -200%) scale(0); opacity: 0; }
}

@keyframes g24TellUsFireworkTopRight {
    0% { transform: translate(-50%, -50%) scale(0.5); opacity: 0; }
    10% { opacity: 1; }
    30% { transform: translate(200%, -200%) scale(0); opacity: 0; }
    100% { transform: translate(200%, -200%) scale(0); opacity: 0; }
}

@keyframes g24TellUsFireworkCenter {
    0% { transform: scale(1); opacity: 1; }
    15% { transform: scale(1.2); opacity: 0.9; }
    30% { transform: scale(0.9); opacity: 0.8; }
    45% { transform: scale(1.1); opacity: 0.9; }
    60% { transform: scale(0.9); opacity: 0.8; }
    75% { transform: scale(1.1); opacity: 0.9; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes g24TellUsScaleIn {
    from { transform: scale(0.95); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

/* Remove any duplicate animation assignments */
.g24-tell-us-sparkles-container i::before,
.g24-tell-us-sparkles-container i::after,
.g24-tell-us-sparkles-container span::before,
.g24-tell-us-sparkles-container span::after {
    content: '✧';
    position: absolute;
    font-size: 12px;
    color: #6b8cff;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* Update glow effect to be lighter */
.g24-tell-us-sparkles-container i::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background: radial-gradient(circle, rgba(107, 140, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: g24TellUsFireworkGlow 1.5s ease-out 2;
}

@keyframes g24TellUsFireworkGlow {
    0% {
        transform: translate(-50%, -50%) scale(0.1);
        opacity: 0;
    }
    10% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    30% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(2);
        opacity: 0;
    }
}

/* Verification Code Input Styles */
.g24-verification-code-container {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
}

.g24-code-inputs {
    display: flex;
    gap: 12px;
    justify-content: center;
}

input.g24-code-input {
    width: 64px;
    height: 64px;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 24px;
    text-align: center;
    background: white;
    transition: all 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

input.g24-code-input:focus {
    outline: none;
    border-color: var(--primary-color)!important;
    box-shadow: 0 0 0 1px var(--primary-color)!important;
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color)!important;
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--primary-color)!important;
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)!important;
    --tw-ring-offset-width: 0px!important;
}

input.g24-code-input.filled {
    border-color: var(--primary-color);
    background-color: #f8fafc;
}

/* Style for the verification code link */
.g24-verification-code-container a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

.g24-verification-code-container a:hover {
    color: color-mix(in srgb, var(--primary-color) 85%, white);
}

/* Add these keyframe animations */
@keyframes g24TellUsScaleIn {
    from { 
        transform: scale(0.95);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes g24TellUsFireworkCenter {
    0% { transform: scale(1) rotate(0deg); opacity: 1; }
    15% { transform: scale(1.3) rotate(15deg); opacity: 0.9; }
    30% { transform: scale(0.8) rotate(-10deg); opacity: 0.8; }
    45% { transform: scale(1.1) rotate(5deg); opacity: 0.9; }
    60% { transform: scale(0.9) rotate(-5deg); opacity: 0.8; }
    75% { transform: scale(1.2) rotate(10deg); opacity: 0.9; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

@keyframes g24TellUsFirework1 {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(45deg);
    }
    30% {
        transform: translate(-200%, -200%) scale(0) rotate(90deg);
        opacity: 0;
    }
    100% {
        transform: translate(-200%, -200%) scale(0) rotate(180deg);
        opacity: 0;
    }
}

@keyframes g24TellUsFirework2 {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(-45deg);
    }
    30% {
        transform: translate(200%, -200%) scale(0) rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform: translate(200%, -200%) scale(0) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes g24TellUsFirework3 {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(-135deg);
    }
    30% {
        transform: translate(-200%, 200%) scale(0) rotate(-270deg);
        opacity: 0;
    }
    100% {
        transform: translate(-200%, 200%) scale(0) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes g24TellUsFirework4 {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(135deg);
    }
    30% {
        transform: translate(200%, 200%) scale(0) rotate(270deg);
        opacity: 0;
    }
    100% {
        transform: translate(200%, 200%) scale(0) rotate(360deg);
        opacity: 0;
    }
}

/* Add two more particles for side shooting */
.g24-tell-us-sparkles-container i::before,
.g24-tell-us-sparkles-container i::after,
.g24-tell-us-sparkles-container span::before,
.g24-tell-us-sparkles-container span::after {
    content: '✧';
    position: absolute;
    font-size: 12px;
    color: color-mix(in srgb, var(--primary-color) 85%, white);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}

/* Update particle animations */
.g24-tell-us-sparkles-container i::before {
    content: '✧';
    animation: g24TellUsFirework3 1.5s ease-out 2 0.2s;
}

.g24-tell-us-sparkles-container i::after {
    content: '⋆';
    animation: g24TellUsFirework4 1.5s ease-out 2 0.3s;
}

/* Add new side-shooting particles */
.g24-tell-us-sparkles-container::after {
    content: '✦';
    animation: g24TellUsFireworkLeft 1.5s ease-out 2 0.15s;
}

.g24-tell-us-sparkles-container::before {
    content: '★';
    animation: g24TellUsFireworkRight 1.5s ease-out 2 0.25s;
}

/* Add new keyframes for horizontal shooting */
@keyframes g24TellUsFireworkLeft {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(-45deg);
    }
    30% {
        transform: translate(-200%, 0%) scale(0) rotate(-90deg);
        opacity: 0;
    }
    100% {
        transform: translate(-200%, 0%) scale(0) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes g24TellUsFireworkRight {
    0% {
        transform: translate(-50%, -50%) scale(0.5) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2) rotate(45deg);
    }
    30% {
        transform: translate(200%, 0%) scale(0) rotate(90deg);
        opacity: 0;
    }
    100% {
        transform: translate(200%, 0%) scale(0) rotate(180deg);
        opacity: 0;
    }
}

/* ==========================================================================
   Address Form Styles
   ========================================================================== */

.g24-address-form-shadow {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

#address-form-container .text-gray-500, #address-form-container input::placeholder {
    color: var(--g24-tell-us-label-text) !important;
}

#address-form-container input[type="checkbox"] {
    color: var(--primary-color);
}
#address-form-container input[type="checkbox"]:focus {
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    --tw-ring-color: var(--primary-color);
    --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
    --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
    box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

#address-form-container input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
    ring: none !important;
}

/* Add styles for the select dropdown */
#address-form-container select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    padding-right: 2rem; /* Increase padding for the dropdown arrow */
    padding-left: 0.5rem; /* Add left padding for text */
    padding-top: 0.25rem; /* Add top padding */
    padding-bottom: 0.25rem; /* Add bottom padding */
    height: auto; /* Allow the height to adjust to content */
    min-height: 2.5rem; /* Set a minimum height */
    line-height: 1.2; /* Adjust line height */
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-chevron-down"><path d="m6 9 6 6 6-6"></path></svg>');
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 1rem;
}

/* Add these styles near the Address Form Styles section */

#org-label br {
    display: none; /* Hide line break by default (desktop) */
}

@media (max-width: 639px) {
    #org-label br {
        display: inline; /* Show line break on mobile */
    }
    #org-label {
        font-size: 14px; /* Slightly smaller font on mobile for better wrapping */
        line-height: 1.4; /* Improve line height for readability */
    }
}

/* Update the flex container for the checkbox and label */
#address-form-container .flex.flex-row.items-center.space-x-3 {
    flex-wrap: wrap; /* Allow items to wrap */
    max-width: 100%; /* Ensure container doesn't overflow */
}

/* Style the label to properly wrap text */
#org-label {
    flex: 1; /* Allow label to take remaining space */
    min-width: 0; /* Allow text to wrap within flex item */
    word-wrap: break-word; /* Enable word wrapping */
    white-space: normal; /* Allow text to wrap */
}

/* Adjust spacing on mobile */
@media (max-width: 639px) {
    #address-form-container .flex.flex-row.items-center.space-x-3 {
        gap: 0.5rem; /* Reduce gap on mobile */
    }
    
    #org-label {
        font-size: 14px; /* Slightly smaller font on mobile */
        line-height: 1.4; /* Improve line height for readability */
    }
}


.g24-regular-placeholder::placeholder {
    color: #5e5e5e;
}

.g24-login-container {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.03);
    border: 1px solid #e5e7eb;
}

.g24-login-container .g24-tell-us-submit-button{
    right: -10px;
}

.login-info-container {
    --tw-gradient-from: var(--primary-color);
    --tw-gradient-via: color-mix(in srgb, var(--primary-color) 100%, white);
    --tw-gradient-to: color-mix(in srgb, var(--primary-color) 85%, white);
    background-image:linear-gradient(to bottom right, var(--tw-gradient-from), var(--tw-gradient-via), var(--tw-gradient-to))
}

.fund-picker-list{
    padding:0;
}

.fund-picker-list li{
    border-top:1px solid #efefef;
    padding-top:10px;
    padding-bottom:10px;
}

.g24-code-submit-btn {
    margin: 20px auto;
    background-color: var(--primary-color);
    color: white;
    width: 116px;
    height: 40px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    border: none !important;
    padding: 0 !important;
}

.g24-code-submit-btn:hover {
    background-color: color-mix(in srgb, var(--primary-color) 85%, white);
}