ul {
    padding-left: 20px;
}

.color-fff {
    color: #fff !important;
}

.color-fff a {
    color: #fff;
}

.mt-0 {
    margin-top: 0px;
}

.mb-0 {
    margin-bottom: 0px;
}

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

.pb-50 {
    padding-bottom: 50px;
}

.gap-0 {
    gap: 0px;
}

.left {
    align-items: flex-start;
}

label.error {
    color: red;
}

.pt-60 {
    padding-top: 60px;
}

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

/* faq */


/* The Grid Layout */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns */
    gap: 20px;
    /* Space between columns */
}

.faq-item {
    background: white;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

summary {
    padding: 18px;
    list-style: none;
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    font-weight: 600;
    color: #334155;
}

summary::after {
    content: '→';
    transition: transform 0.3s;
}

.faq-item[open] {
    border-color: #127BB3;
}

.faq-item[open] summary {
    color: #127BB3;
}

.faq-item[open] summary::after {
    transform: rotate(90deg);
}

.faq-content {
    padding: 0 18px 18px 18px;
    color: #64748b;
    font-size: 0.95rem;
}

/* RESPONSIVE: Stack columns on mobile */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        /* 1 column on smaller screens */
    }
}


/* faq end */

.fda-no-shrink img {
    width: 15px;
}

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

a.fda-menu-text.w--current {
    color: #77EDD5;
}

a.fda-menu-text:hover {
    color: #77EDD5;
}

div#w-dropdown-toggle-1.w--current .fda-menu-text {
    color: #77EDD5;
}

div#w-dropdown-toggle-0.w--current .fda-menu-text {
    color: #77EDD5;
}

a.fda-footer-link.w--current {
    color: #FDCD09;
}

.fda-dropdown-links.w--current {
    color: #77EDD5;
}

.bg-fff {
    background: #eceef1 !important;
}

.w-75 {
    width: 75px !important;
}

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

.w-70 {
    width: 70px;
}



/* ---------Tooltip wrapper - can be applied to your icon container  Start------------*/


.tooltip {
    position: absolute;
    /* keeps tooltip positioned relative to icon */
    display: inline-block;
    /* does not change icon position */
}

/* Tooltip text */
.tooltip .tooltiptext {
    visibility: hidden;
    /* hidden by default */
    width: max-content;
    /* fits the text */
    max-width: 200px;
    /* optional max width */
    background-color: black;
    color: #fff;
    text-align: center;
    padding: 5px 8px;
    border-radius: 4px;

    /* Positioning above the icon */
    position: absolute;
    bottom: 125%;
    /* show above */
    left: 50%;
    transform: translateX(-50%);

    /* Optional arrow */
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
}

.tooltip .tooltiptext::after {
    content: "";
    position: absolute;
    top: 100%;
    /* bottom of tooltip */
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: black transparent transparent transparent;
    /* arrow pointing down */
}

/* Show tooltip on hover */
.tooltip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

/* ---------Tooltip wrapper - ============================  End------------*/
.fda-gap-medium h1,
h2,
.fda-no-margin {
    text-transform: capitalize;
}

.fda-sub-text {
    font-size: 18px;
}

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

.justify-content-center {
    justify-content: center;
    display: flex;
}

.w-15 {
    width: 15px;
}


@media screen and (max-width: 479px) {
    .d-none-mob {
        display: none;
    }
}