:root {
    --pimary-color: #368EE9;
    --secondary-color: #313E4E;
    --tri-color: #FAF8F6;
    --border-color: #d0d5dd;
    --text-tri: #575C61;
}

/* Custom Text Colos */
.custom-text-primary {
    color: var(--pimary-color) !important;
}

.custom-text-secondary {
    color: var(--secondary-color) !important;
}

.custom-text-tri {
    color: var(--text-tri) !important;
}

.custom-text-white {
    color: #fff !important;
}

/* Custom Background Color */
.custom-bg-primary {
    background-color: var(--pimary-color);
}

.custom-bg-secondary {
    background-color: var(--secondary-color);
}

.custom-bg-tri {
    background-color: var(--tri-color);
}

/* Custom Button Design */
.custom-btn-fill {
    padding: 0.8rem 1.5rem;
    background-color: var(--pimary-color);
    border: none;
    color: var(--tri-color);
    border-radius: 1rem;
}
.custom-btn-fill2 {
    padding: 0.8rem 1.5rem;
    background-color: var(--pimary-color);
    border: none;
    color: var(--tri-color);
    border-radius: 1rem;
}

.custom-btn-outline {
    padding: 0.8rem 1.5rem;
    background-color: transparent;
    border: var(--pimary-color) 1px solid;
    color: var(--pimary-color);
    border-radius: 1rem;
}

.custom-btn-outline-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 1rem;
    background-color: transparent;
    border: var(--pimary-color) 1px solid;
    color: var(--pimary-color);
    border-radius: 1rem;
    cursor: pointer;
    width: fit-content;
}

.custom-btn-outline-icon:hover {
    background-color: var(--pimary-color);
    color: #fff;
    transition: background-color .5s linear;
}

.custom-tab-btn {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    background-color: transparent;
    padding: 0.5rem 2rem;
    width: 100%;
    height: 100%;
}

.custom-tab-btn:hover {
    background-color: var(--tri-color);
}

.custom-tab {
    background-color: var(--tri-color);
}

.custom-tab-btn-2 {
    border: none;
    background-color: transparent;
    width: 100%;
    padding: 0.5rem 1rem;
}

.custom-tab-btn-2.active {
    border: none;
    background-color: var(--secondary-color);
    color: #fff;
    cursor: default;
}

.payment-btn {
    border: none;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    padding: 0.5rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

.payment-btn>img {
    width: 20px;
    height: 20px;
}

/* Custom Gap Classes */
.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

/* Custom OverFlow Classes */
.overflow-hidden {
    overflow: hidden;
}

.overflow-y {
    overflow-y: auto;
}

/* Custom Shadow */
.shadow-primary-sm {
    box-shadow: 0px 0px 2px var(--pimary-color) !important;
}

.shadow-primary-md {
    box-shadow: 0px 0px 5px var(--pimary-color) !important;
}

.shadow-secondary-sm {
    box-shadow: 0px 2px 3px 0px var(--border-color) !important;
}

.shadow-secondary-md {
    box-shadow: 0px 0px 5px var(--secondary-color) !important;
}

.border-primary-sm {
    border-radius: 5px;
    border: 1px solid var(--pimary-color)
}

.border-primary-md {
    border-radius: 10px;
    border: 1px solid var(--pimary-color)
}

.border-primary-lg {
    border-radius: 15px;
    border: 1px solid var(--pimary-color)
}

.border-secondary-sm {
    border-radius: 5px;
    border: 1px solid var(--border-color)
}

.border-secondary-md {
    border-radius: 10px;
    border: 1px solid var(--border-color)
}

.border-secondary-lg {
    border-radius: 15px;
    border: 1px solid var(--border-color)
}

/* Custom Border Radius */
.rounded-sm {
    border-radius: 5px !important;
}

.rounded-md {
    border-radius: 10px !important;
}

.rounded-lg {
    border-radius: 15px !important;
}

/* Custom Inout Fields */
.custom-input-field-icon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid var(--border-color);
    padding: 0.5rem;
    border-radius: 5px;
    position: relative;

}

.custom-input-field-icon:focus {
    border: 1px solid var(--secondary-color);
}

.custom-input-field-icon>button {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--tri-color);
}

.custom-input-field-icon>span:nth-child(1) {
    font-size: 16px;
    color: var(--border-color);

}

.custom-input-field-icon>span:nth-child(2) {
    font-size: 16px;

}

.custom-input-field-icon>.custom-input-field {
    background-color: transparent;
    border: none;
    width: 100%;
}

.custom-input-field-icon>.custom-input-field:focus {
    outline: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* white space no */
.custom-white-space {
    white-space: nowrap;
}

/* custom input field Basic */
.input-group-basic {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 0.5rem 1rem;
}

.input-group-basic>span {
    font-size: 16px;
}

.input-group-basic input {
    width: 100%;
    border: none;
    background-color: transparent;
}

.input-group-basic input:focus {
    border: none;
    outline: var(--border-color);
}
.input-group-basic input::placeholder {
    color: #000 !important;
}
/* Animation of text Field */
.animated-input-group {
    position: relative;
}

/* Label styling */
.animated-input-group label {
    position: absolute;
    top: 50%;
    left: 10px;
    transform: translateY(-50%);
    color: black !important;
    padding: 0 5px;
    pointer-events: none;
    transition: all 0.3s ease;
    background: transparent;
    display: flex;
    align-items: center;
}

.animated-input-group label span {
    color: crimson;
}

/* Input styling */
.animated-input-group input {
    color: #111113;
    width: 100%;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 1px solid var(--border-color);
    outline: none;
    border-radius: 5px;
}

/* Label moves up on focus or when input has text */
.animated-input-group input:focus~label,
.animated-input-group input:not(:placeholder-shown)~label {
    top: 0;
    background: #fff;
    color: #111113;
}

/* Custom Company Field */
.companyName-field {
    border: 1px solid var(--border-color);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 5px;
}

.companyName-field>input {
    border: none;
    width: 100%;
}

.companyName-field>input:focus {
    outline: none;
}

/* Custom Text Area Field */
.custom-textarea-field {
    display: flex;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    width: 100%;

}

.custom-textarea-field:focus {
    border: 1px solid var(--secondary-color);
}

.custom-textarea-field>textarea {
    width: 100%;
    border: none;
    resize: none;
    padding: 1rem;

}

.custom-textarea-field>textarea:focus {
    outline: none;
    border: none;
}

/* Custom DropDown */
/* Basic container styling */
.custom-select-container {
    position: relative;
}

/* Main select box */
.custom-select-inner {
    position: relative;
}

/* Trigger box (what user clicks) */
.select-trigger {
    border: 1px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.4rem;
    transition: all 0.3s ease;
}

.select-trigger:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 0 6px rgba(0, 123, 255, 0.3);
}

/* Arrow icon */
.select-trigger .arrow {
    border: solid #333;
    border-width: 0 2px 2px 0;
    padding: 4px;
    transform: rotate(45deg);
    transition: all 0.3s ease;
}
.custom-select-inner > input{
    padding: 0.5rem 1rem !important;
    border: 1px solid var(--border-color) !important;
    border-radius: 5px;
}
.custom-select-inner > input:focus{
    border: none;
    outline: none;
}
/* Rotate arrow when open */
.custom-select-inner.open .arrow {
    transform: rotate(-135deg);
}

/* Dropdown menu */
.options {
    list-style: none;
    padding: 0;
    margin: 0;
    background-color: #fff;
    border: 1.5px solid #ccc;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    height: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    overflow: auto;
}

/* Show when open */
.custom-select-inner.open .options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* Each option */
.options li {
    padding: 10px 15px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.options li:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

/* Selected state */
.options li.selected {
    background-color: var(--secondary-color);
    color: #fff;
}
/* select main-css */

/* Common input & select */
.select-main {
    width: 100%;
    /* height: 48px; */
    padding: 0.5rem 1rem;
    border: 1px solid #d0d5dd;
    border-radius: 8px;
    font-size: 14px;
    color: #344054;
    background-color: var(--tri-color);
    transition: all 0.2s ease-in-out;
}

/* Select arrow fix */
.select-main {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='10' height='6' viewBox='0 0 10 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L5 5L9 1' stroke='%23667085' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px;
    cursor: pointer;
}

/* Placeholder color */

/* Focus state */
.select-main:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}


/* custom line break */
.line-break {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.line-break>.line {
    width: 100%;
    border: 1px solid var(--border-color);
}

/* Info Box */
.info-box {
    background-color: var(--tri-color);
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 1rem;
    border-radius: 5px;
}

.info-check:checked {
    accent-color: var(--pimary-color) !important;
}

/* Custom Icons Sizes */
.icon-sm {
    font-size: 1.2rem !important;
}

.icon-md {
    font-size: 1.5rem !important;
}

.icon-lg {
    font-size: 2rem !important;
}

/* User Select */
.user-select-none {
    user-select: none;
}
@media (min-width: 320px){
    #mobile-donation-amount-tab-inner > .custom-tab-btn{
        width: auto;
    }
@media (max-width: 767px){
    #mobile-donation-amount-tab-inner > .custom-tab-btn{
        width: auto;
    }
    .custom-input-field-icon>button {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    background-color: var(--tri-color);
}
}
/* Media Query With Text Classes */
@media (min-width: 1024px) {
    #mobile-donation-amount-tab-inner > .custom-tab-btn{
        width: 100%;
    }
    .text-hero {
        font-size: 2.5rem !important;
        font-weight: 700;
    }

    .text-page-title {
        font-size: 1.75rem;
        font-weight: 600;
    }

    .text-heading {
        font-size: 1rem;
        font-weight: 600;
    }

    .text-title {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }

    .text-subtitle {
        font-size: 1rem;
        font-weight: 500;
    }

    .text-body {
        font-size: 0.8rem !important;
        font-weight: 400;
    }

    .text-subtle {
        font-size: 0.775rem;
        font-weight: 400;
        color: #666;
        /* optional muted color */
    }

    .text-caption {
        font-size: 0.5rem !important;
        font-weight: 500 !important;
        color: #888;
    }

    .text-total {
        font-size: 0.8rem;
        font-weight: 700;
    }

    .text-price {
        font-size: 0.8rem !important;
    }

    .text-button {
        font-size: 1rem !important;
        font-weight: 500;
    }

    .input-field-text {
        font-size: 1rem !important;
    }

    .text-toggle {
        font-size: 0.8rem !important;
    }

    .material-symbols-outlined>span {
        font-size: 16px;
    }
}

@media (min-width: 1280px) {
    .text-hero {
        font-size: 3rem !important;
        font-weight: 700 !important;
    }

    .text-page-title {
        font-size: 1.75rem !important;
        font-weight: 600 !important;
    }

    .text-heading {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }

    .text-title {
        font-size: 1.3rem !important;
        font-weight: 600 !important;
    }

    .text-subtitle {
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    .text-body {
        font-size: 1.1rem !important;
        font-weight: 400 !important;
    }

    .text-subtle {
        font-size: 0.775rem !important;
        font-weight: 400 !important;
        color: #666;
        /* optional muted color */
    }

    .text-caption {
        font-size: 0.75rem !important;
        font-weight: 400 !important;
        color: #888;
    }

    .text-total {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
    }

    .text-price {
        font-size: 0.8rem !important;
    }

    .text-button {
        font-size: 0.8rem;
        font-weight: 500;
    }

    .input-field-text {
        font-size: 1rem !important;
    }

    .material-symbols-outlined>span {
        font-size: 16px;
    }
}
@media (min-width: 1366px) {
    .text-hero {
        font-size: 3rem !important;
        font-weight: 700 !important;
    }

    .text-page-title {
        font-size: 1.75rem !important;
        font-weight: 600 !important;
    }

    .text-heading {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }

    .text-title {
        font-size: 1rem !important;
        font-weight: 600 !important;
    }

    .text-subtitle {
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    .text-body {
        font-size: 0.9rem !important;
        font-weight: 400 !important;
    }

    .text-subtle {
        font-size: 0.775rem !important;
        font-weight: 400 !important;
        color: #666;
        /* optional muted color */
    }

    .text-caption {
        font-size: 0.75rem !important;
        font-weight: 400 !important;
        color: #888;
    }

    .text-total {
        font-size: 0.8rem !important;
        font-weight: 700 !important;
    }

    .text-price {
        font-size: 0.8rem !important;
    }

    .text-button {
        font-size: 0.8rem;
        font-weight: 500;
    }

    .input-field-text {
        font-size: 1rem !important;
        color: #000 !important;
    }

    .material-symbols-outlined>span {
        font-size: 16px;
    }
}

@media (min-width: 1600px) {
    .text-hero {
        font-size: 2.8rem !important;
        font-weight: 700!important;
    }

    .text-page-title {
        font-size: 1.75rem!important;
        font-weight: 600!important;
    }

    .text-heading {
        font-size: 1rem!important;
        font-weight: 600!important;
    }

    .text-title {
        font-size: 1.3rem!important;
        font-weight: 600!important;
    }

    .text-subtitle {
        font-size: 1rem!important;
        font-weight: 500!important;
    }

    .text-body {
        font-size: 1.15rem!important;
        font-weight: 400!important;
    }

    .text-subtle {
        font-size: 0.775rem!important;
        font-weight: 400!important;
        color: #666;
        /* optional muted color */
    }

    .text-caption {
        font-size: 0.75rem!important;
        font-weight: 400!important;
        color: #888;
    }

    .text-total {
        font-size: 0.8rem!important;
        font-weight: 700!important;
    }

    .text-price {
        font-size: 0.8rem !important;
    }

    .text-button {
        font-size: 1.1rem!important;
        font-weight: 400!important;
    }

    .input-field-text {
        font-size: 1.1rem!important;
    }

    .material-symbols-outlined>span {
        font-size: 16px;
    }
}

@media (min-width: 1920px) {
    .text-hero {
        font-size: 3.5rem !important;
        font-weight: 700 !important;
    }

    .text-page-title {
        font-size: 3rem !important;
        font-weight: 600 !important;
    }

    .text-heading {
        font-size: 1rem;
        font-weight: 600;
    }

    .text-title {
        font-size: 1.5rem !important;
        font-weight: 600 !important;
    }

    .text-subtitle {
        font-size: 1rem;
        font-weight: 500;
    }

    .text-body {
        font-size: 1.3rem !important;
        font-weight: 400 !important;
    }

    .text-subtle {
        font-size: 0.775rem !important;
        font-weight: 400 !important;
        color: #666;
        /* optional muted color */
    }

    .text-caption {
        font-size: 1rem !important;
        font-weight: 400 !important;
        color: #888;
    }

    .text-total {
        font-size: 1.2rem;
        font-weight: 700;
    }

    .text-price {
        font-size: 1.2rem !important;
    }

    .text-button {
        font-size: 1.2rem !important;
        font-weight: 500 !important;
    }

    .input-field-text {
        font-size: 1rem !important;
    }

    .material-symbols-outlined>span {
        font-size: 16px;
    }

    .text-toggle {
        font-size: 0.9rem;
    }

    .select-trigger {

        padding: 0.5rem 1rem;
    }

}