body {
    font-family: Inter;
    background-color: white;
    overflow-x: clip;
}

@media (min-width: 431px) {
    body {
        font-family: Inter;
        background-color: #888;
        overflow-x: clip;
    }

    ::-webkit-scrollbar {
        width: 0px; /* Width of the entire scrollbar */
    }
}

.body-no-scroll {
    overflow: hidden;
}

a, .btn-link {
    color: #006bb7;
}

a {
    text-decoration: none;
}

h3 {
    font-size: 0.9rem;
    font-weight: 700;
    display:block;
    padding-top: 22px;
}

input[type="text"], input[type="password"], textarea {
    font-family: Inter;
}

.btn {
    font-family: Inter;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 140%; /* 0.9625rem */
    letter-spacing: -0.01375rem;
}

.btn-primary {
    color: #fff;
    background-color: #FF8A20;
    border-color: #FFF;
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

.loading-modal {
    max-width: 150px;
    margin: 0 auto;
}

.e-carousel .e-carousel-navigators .e-next .e-btn:not(:disabled),
.e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled) {
    background-color: rgba(200, 200, 200, 0.5);
}

    .e-carousel .e-carousel-navigators .e-next .e-btn:not(:disabled):hover,
    .e-carousel .e-carousel-navigators .e-previous .e-btn:not(:disabled):hover {
        background-color: rgba(200, 200, 200, 0.7); /* Change to your desired hover color */
    }

.page-container {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 100vh;
    background-color: white;
}

@media (min-width: 431px) {
    .page-container {
        flex: 0 0 430px;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
        min-height: 100vh;
        background-color: white;
    }
}

.header-container {
    background-color: #FFF;
    padding: 0.8rem 1rem;
    height:60px;
}

@media (min-width: 431px) {
    .header-container {
        background-color: #FFF;
        flex: 0 0 430px;
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }
}

.body-container {
    background-color: #FFF;
    padding-bottom: 100px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    margin-top: 60px;
}

.footer {
    background-color: #FFF;
}

    .footer .tab_bar_icon {
        width: 35px;
        height: 35px;
        margin-right:auto;
        margin-left:auto;
    }

    .footer .label {
        color: #000;
        text-align: center;
        font-family: Inter;
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 500;
        line-height: 150%; /* 1.125rem */
        margin-top: 3px;
    }

@media (min-width: 431px) {
    .footer {
        max-width: 430px;
        margin-left: auto;
        margin-right: auto;
    }
}

.back-button-container {
    cursor: pointer;
}

.search-bar-container {
    flex: 1 1 auto;
    width: 100%;
}

.search-bar {
    display: flex;
    height: 2rem;
    align-items: center;
    width: 100%;
    border-radius: 0.25rem;
    border: 1px solid #8E8B8B;
}

.search-bar-input {
    border: none;
    outline: none;
    width: 100%;
    height: 100%;
    background-color: transparent;
    overflow: hidden;
    color: #828282;
    text-overflow: ellipsis;
    font-style: normal;
    font-weight: 400;
    line-height: 1.875rem; /* 250% */
}

.horizontal-line {
    height: 1px;
    background-color: #000000; /* Change to your desired color */
    width: 100%;
}

.signin {
    background: #394EA8;
    color: #FFF;
    height: calc(100vh + 110px);
    padding: 0rem 3rem;
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
}
    .signin .app-name {
        text-align: center;
    }

    .signin .e-label {
        color: #FFF;
    }

.sigin-body {
    font-size: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    gap: 1rem;
    justify-content: flex-end; /* Aligns the content to the bottom */
    margin-bottom: 300px;
}

.category-list {
    padding: 0rem 1.25rem;
    display: grid;
    grid-template-rows: repeat(2, 1fr); /* Creates two rows that share the available space equally */
    grid-template-columns: repeat(5, 1fr); /* Creates five columns that share the available space equally */
    gap: 0.6rem;
}

    .category-list div {
        width: 100%;
        height: 100%;
        object-fit: cover; /* Ensures the aspect ratio of the images is preserved */
        text-align: center;
    }

    .category-list span {
        display: block;
        padding-top: 0.5rem;
        font-size: 0.65rem;
        line-height: 0.6rem;
        font-weight: 600;
    }

.slide-content img {
    margin: 0;
}

.filter-menu {
    display: flex;
    height: 2rem;
    padding: 0.125rem;
    align-items: center;
    gap: 0.125rem;
    background: #EAF5FF;
    margin-top: 60px;
}

@media (min-width: 431px) { /* Medium devices (tablets, 768px and up) */
    .filter-menu {
        display: flex;
        height: 2rem;
        padding: 0.125rem;
        align-items: center;
        gap: 0.125rem;
        background: #EAF5FF;
        margin-top: 60px;
        width: 430px;
        margin-left: auto;
        margin-right: auto;
    }
}

.filter-menu-item {
    display: flex;
    padding: 0.5rem 1rem;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    background: #FFF;
    height: 100%;
    color: #000;
    font-size: 0.8rem;
    font-style: normal;
    font-weight: 400;
}

.filter-menu-item-selected {
    color: #FF7A00;
    font-weight: 700;
}

.count-indicator {
    position: relative;
    top: -3px;
    right: 0;
    background-color: #FF7A00;
    color: white;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
}

.filter-overlay {
    position: fixed; /* Fixed/sticky position */
    top: 5.8rem; /* Stay at the top */
    left: 0; /* Stay at the left */
    height: 100%; /* Full height */
    width: 100%;
    z-index: 900; /* Specify a stack order in case you're using a different order for other elements */
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0,0,0,0.2); /* Black background with opacity */
}

.filter-overlay-background {
    height: 100%; /* Full height */
    width: 100%;
}

@media (min-width: 431px) { /* Medium devices (tablets, 768px and up) */
    .filter-overlay-background {
        height: 100%; /* Full height */
        width: 430px;
        background-color: rgba(0,0,0,0.2); /* Black background with opacity */
    }
}

.filter-container {
    background-color: white;
    padding: 0;
    justify-content: center;
    max-height: 60vh;
}

@media (min-width: 431px) {
    /* Medium devices (431px and up) */

    .filter-container {
        width: 430px;
        background-color: white;
        padding: 0;
        justify-content: center;
        max-height: 60vh;
    }
}

.filter-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: left;
    padding: 0.5rem;
    max-height: 20rem;
    overflow-y: auto;
}

.filter-area-items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    overflow-y: scroll;
}

.filter-check {
    display: flex;
    flex: 0 0 auto;
    flex-grow: 0;
    width: calc((100vw - 32px) / 3);
    padding: 10px 0px;
    height: 1.5rem;
    background-color: #F1F1F1;
    justify-content: center;
    align-items: center;
    font-size: 0.8rem;
    border-radius: 0.3125rem
}

@media (min-width: 431px) { /* Medium devices (tablets, 768px and up) */
    .filter-check {
        width: calc((430px - 32px) / 3);
    }
}
.filter-check_location {
    min-width: 10rem;
}

.filter-check_category {
    /*min-width: 7.5rem;*/
}

.filter-check-selected {
    color: #FF8210;
    background-color: #EAF5FF;
    font-weight: 400;
}

.filter-check-area {
    width: 100%;
    border-radius: 0;
    text-align: left;
    justify-content: start;
    padding: 0 1rem;
    background-color: #FFF;
}

.filter-check-area-selected {
    color: #FF8210;
    background-color: #F1F1F1;
    font-weight: 400;
}

.filter-btn-container {
    width: 100%;
    display: flex;
    gap: 0.5rem;
    justify-content: end;
    padding: 1rem;
    background-color: white;
}

.filter-btn {
    border-radius: 0.625rem;
    border: 1px solid #B4B4B4;
    background: #FFF;
    min-width: 5rem;
    height: 1.6rem;
    color: #000;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 400;
}

.apply-filter-btn {
    background: #FF7A00;
    min-width: 5rem;
}

.promo-list {
    display: flex;
    padding: 0.5rem 1.25rem;
    flex-direction: column;
    gap: 1rem;
}

.promo-list-home {
    padding: 0rem 1.25rem;
}

.promo-name {
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-wrap:wrap;
}

.promo-desc {
    color: #000;
    font-size: 0.7rem;
    font-weight: 400;
    /*white-space: nowrap;
    display: -webkit-box;
    -webkit-line-clamp: 4;*/ /* number of lines */
    /*-webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;*/
    text-wrap: wrap;
}

.promo-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.promo-details-name {
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
    text-wrap: wrap;
}

.promo-details-desc {
    color: #000;
    font-size: 0.7rem;
    font-weight: 400;
}

@media (min-width: 431px) { /* Medium devices (tablets, 768px and up) */
    .promo-name, .promo-desc {
        width: calc(430px - 150px);
    }

    .promo-desc-long {
        width: calc(430px - 70px);
    }
}

.outlet-list {
    display: flex;
    padding: 0.5rem 1.25rem;
    flex-direction: column;
    gap: 1rem;
}

.outlet-list-home {
    padding: 0rem 1.25rem;
}
.outlet-name {
    color: #000;
    font-size: 0.8rem;
    font-weight: 700;
}

.outlet-address {
    color: #000;
    font-size: 0.7rem;
    font-weight: 400;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    width: calc(100vw - 150px);
}

.outlet-review-count {
    color: #000;
    font-size: 0.70rem;
    font-weight: 500;
    padding-left: 5px;
    vertical-align: middle;
    line-height:1rem;
}

.outlet-google-rating {
    color: #000;
    font-size: 0.65rem;
    font-weight: 300;
}

@media (min-width: 431px) {
    .outlet-address {
        color: #000;
        font-size: 0.7rem;
        font-weight: 400;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        width: calc(431px - 150px);
    }
}

.outlet-main-photo {
    height: 12.5rem;
    width: 100%;
    background-color: #D9D9D9;
}

.outlet-details {
    position: relative;
    z-index: 1000;
    border-radius: 0.9375rem 0.9375rem 0rem 0rem;
    background: #FFF;
    box-shadow: 0px -0px 15px 2px rgba(0, 0, 0, 0.25);
    margin-top: -1rem;
    margin-bottom: -50px;
    padding-bottom: 50px;
    min-height: 100vh;
    padding: 1rem 1.25rem;
    font-size: 0.8rem;
}

    .outlet-details .category {
        font-weight: 400;
        font-size: 0.75rem;
    }

    .outlet-details .grid-container {
        margin-top: 1rem;
        display: grid;
        grid-template-columns: 4.5rem auto 2.5rem;
        grid-template-rows: repeat(2, auto);
        row-gap: 1rem;
    }

    .outlet-details .icon {
        height: 2.5rem;
        width: 2.5rem;
    }

    .outlet-details .bold {
        font-weight: 600;
    }

    .outlet-details .last-row {
        display: flex;
        padding: 1rem 0.5rem;
    }

    .outlet-details .taps {
        display: flex;
        justify-content: center;
        align-items: center;
        padding-bottom: 0.5rem;
        border-bottom: 1px solid black;
    }

    .outlet-details .tap {
        display: flex;
        justify-content: center;
        flex-grow: 1;
        font-size: 0.8rem;
        font-weight: 500;
    }

        .outlet-details .active {
            color: #FF7A00;
            font-weight: 700;
        }

    .outlet-details .tap-content {
        padding: 1rem;
    }

    h1:focus {
        outline: none;
    }

.write-review {
    padding: 0 1.25rem;
}
    .write-review .header {
        text-align: center;
        font-size: 0.9rem;
        font-weight: 700;
        padding-bottom: 0.5rem;
    }

    .write-review .outlet {
        padding: 10px;
        display: flex;
    }
        .write-review .outlet .outlet-photo {
            margin-right: 1rem;
        }
        .write-review .outlet .outlet-name {
            font-family: Inter;
            font-size: 0.85rem;
            font-style: normal;
            font-weight: 700;
        }

    .write-review .label {
        padding: 10px;
        font-family: Inter;
        font-size: 0.8rem;
        font-style: normal;
        font-weight: 700;
    }

    .write-review .rating {
        text-align:center;
    }

    .write-review .review {
        padding: 10px;
    }

    .write-review .review-content {
        height: 10rem;
    }

    .write-review .e-upload-files {
        display: none;
    }

    .write-review .photo-container {
        padding: 5px;
        display: flex;
        gap: 1rem;
        flex-wrap: wrap;
    }

    .write-review .thumbnail {
        width: 80px;
        height: 80px;
        object-fit: cover;
    }

    .write-review .as-guest {
        text-align:right;
        padding-right: 10px;
    }

        .write-review .as-guest .e-label {
            font-family: Inter;
            font-size: 0.8rem;
            font-weight: 400;
        }

    .write-review .submit {
        padding: 10px;
        text-align: right;
    }

.review-item {
    display: flex;
    flex-direction: row;
    margin-bottom: 1rem;
}

    .review-item .photo-container {
        margin: 0.5rem 0 0 0;
        padding: 5px 0;
        display: flex;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

        .review-item .photo-container .thumbnail {
            width: 5.625rem;
            height: 5.625rem;
            cursor: pointer;
        }

    .review-item .content {
        color: #000;
        font-size: 0.7rem;
        font-weight: 400;
        width: calc(100vw - 150px);
    }

    .review-item .reply {
        margin: 0.5rem 0 0 1rem;
        padding: 0.1rem 0.5rem;
        font-size: 0.7rem;
        border-left: 1px solid rgba(0,0,0,0.2);
    }

    .review-item .reply .from {
        font-weight: 600;
    }

    .review-item .edit {
        margin: 0.5rem 0 0 0;
    }

@media (min-width: 431px) {

    .review-item .content {
        color: #000;
        font-size: 0.7rem;
        font-weight: 400;
        width: calc(431px - 150px);
    }
}

.myreview-item {
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
    border-bottom: 1px solid #D9D9D9;
}

    .myreview-item .photo-container {
        padding: 5px 0;
        display: flex;
        gap: 0.3rem;
        flex-wrap: wrap;
    }

        .myreview-item .photo-container .thumbnail {
            width: 5.625rem;
            height: 5.625rem;
            cursor: pointer;
        }

.valid.modified:not([type=checkbox]) {
    outline: 1px solid #26b050;
}

.invalid {
    outline: 1px solid #e50000;
}

.validation-message {
    color: #e50000;
}

.blazor-error-boundary {
    background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNTYiIGhlaWdodD0iNDkiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgeG1sbnM6eGxpbms9Imh0dHA6Ly93d3cudzMub3JnLzE5OTkveGxpbmsiIG92ZXJmbG93PSJoaWRkZW4iPjxkZWZzPjxjbGlwUGF0aCBpZD0iY2xpcDAiPjxyZWN0IHg9IjIzNSIgeT0iNTEiIHdpZHRoPSI1NiIgaGVpZ2h0PSI0OSIvPjwvY2xpcFBhdGg+PC9kZWZzPjxnIGNsaXAtcGF0aD0idXJsKCNjbGlwMCkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKC0yMzUgLTUxKSI+PHBhdGggZD0iTTI2My41MDYgNTFDMjY0LjcxNyA1MSAyNjUuODEzIDUxLjQ4MzcgMjY2LjYwNiA1Mi4yNjU4TDI2Ny4wNTIgNTIuNzk4NyAyNjcuNTM5IDUzLjYyODMgMjkwLjE4NSA5Mi4xODMxIDI5MC41NDUgOTIuNzk1IDI5MC42NTYgOTIuOTk2QzI5MC44NzcgOTMuNTEzIDI5MSA5NC4wODE1IDI5MSA5NC42NzgyIDI5MSA5Ny4wNjUxIDI4OS4wMzggOTkgMjg2LjYxNyA5OUwyNDAuMzgzIDk5QzIzNy45NjMgOTkgMjM2IDk3LjA2NTEgMjM2IDk0LjY3ODIgMjM2IDk0LjM3OTkgMjM2LjAzMSA5NC4wODg2IDIzNi4wODkgOTMuODA3MkwyMzYuMzM4IDkzLjAxNjIgMjM2Ljg1OCA5Mi4xMzE0IDI1OS40NzMgNTMuNjI5NCAyNTkuOTYxIDUyLjc5ODUgMjYwLjQwNyA1Mi4yNjU4QzI2MS4yIDUxLjQ4MzcgMjYyLjI5NiA1MSAyNjMuNTA2IDUxWk0yNjMuNTg2IDY2LjAxODNDMjYwLjczNyA2Ni4wMTgzIDI1OS4zMTMgNjcuMTI0NSAyNTkuMzEzIDY5LjMzNyAyNTkuMzEzIDY5LjYxMDIgMjU5LjMzMiA2OS44NjA4IDI1OS4zNzEgNzAuMDg4N0wyNjEuNzk1IDg0LjAxNjEgMjY1LjM4IDg0LjAxNjEgMjY3LjgyMSA2OS43NDc1QzI2Ny44NiA2OS43MzA5IDI2Ny44NzkgNjkuNTg3NyAyNjcuODc5IDY5LjMxNzkgMjY3Ljg3OSA2Ny4xMTgyIDI2Ni40NDggNjYuMDE4MyAyNjMuNTg2IDY2LjAxODNaTTI2My41NzYgODYuMDU0N0MyNjEuMDQ5IDg2LjA1NDcgMjU5Ljc4NiA4Ny4zMDA1IDI1OS43ODYgODkuNzkyMSAyNTkuNzg2IDkyLjI4MzcgMjYxLjA0OSA5My41Mjk1IDI2My41NzYgOTMuNTI5NSAyNjYuMTE2IDkzLjUyOTUgMjY3LjM4NyA5Mi4yODM3IDI2Ny4zODcgODkuNzkyMSAyNjcuMzg3IDg3LjMwMDUgMjY2LjExNiA4Ni4wNTQ3IDI2My41NzYgODYuMDU0N1oiIGZpbGw9IiNGRkU1MDAiIGZpbGwtcnVsZT0iZXZlbm9kZCIvPjwvZz48L3N2Zz4=) no-repeat 1rem/1.8rem, #b32121;
    padding: 1rem 1rem 1rem 3.7rem;
    color: white;
}

    .blazor-error-boundary::after {
        content: "An error has occurred."
    }

.darker-border-checkbox.form-check-input {
    border-color: #929292;
}


.e-rating-container .e-rating-item-container {
    padding: 1px;
    display: block;
    position: relative;
    min-width: 0;
    min-height: 0;
}

.e-rating-container.readonly .e-rating-item-list {
    margin: 0;
}

.e-rating-container.write .e-rating-item-list {
    margin: 0px;
}

    .e-rating-container.write .e-rating-item-list .e-rating-item-container {
        font-size: 2rem;
        padding: 2px;
        min-width: calc(3rem);
        min-height: calc(2rem);
    }



.floating-label-container {
    position: relative;
    padding-top: 20px;
}

    .floating-label-container .floating-label {
        position: absolute;
        top: 0;
        left: 0;
        font-size: 0.75rem;
        font-weight: 500;
        color: #343a40;
        transition: all 0.2s;
        pointer-events: none;
    }

.profile-background-container {
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%
}

    .profile-background-container .background {
        width: 100%;
        height: 8.875rem;
        background: #EAF5FF;
        margin-left: auto;
        margin-right: auto;
    }

@media (min-width: 431px) {
    .profile-background-container .background {
        width: 430px;
        height: 8.875rem;
        background: #EAF5FF;
        margin-left: auto;
        margin-right: auto;
    }
}

.profile-header {
    color: #FF7A00;
    font-size: 1rem;
    font-style: normal;
    font-weight: 700;
    line-height: 0.75rem;
    padding: 1.5rem 1rem 0.5rem 1rem;
    border-bottom: 1px solid #EAF5FF;
}

.profile-photo {
    text-align:center;
    padding: 0;
}

    .profile-photo .e-file-select-wrap {
        padding: 10px 0 0 0;
    }

    .profile-photo .e-file-drop {
        display: none;
    }

    .profile-photo .e-btn {
        background-color: #FFF;
        color: #000;
        border: none;
    }
        .profile-photo .e-btn:hover, .profile-photo .e-btn:focus, .profile-photo .e-btn:active {
            background: none;
            background-color: #FFF;
            color: #000;
            border: none;
            box-shadow: none;
        }

    .profile-photo .e-upload {
        border: none;
    }

    .profile-photo .e-upload-browse-btn {
        background-color: #FFF;
        color: #000;
        border: none;
        font-weight: 400;
    }

.profile-item {
    display: flex;
    align-items: center;
    padding: 0.6rem 0.7rem;
    border-bottom: 1px solid #EAF5FF;
}

    .profile-item .label {
        color: #000;
        font-size: 0.9rem;
        font-style: normal;
        font-weight: 450;
        line-height: 0.75rem;
        display: flex;
        align-items: center;
    }

    .profile-item .value {
        display: flex;
        align-items: center;
        justify-content: end;
        /*padding-right: 0.2rem;*/
        flex-grow: 1;
        color: #8E8B8B;
        font-style: normal;
        font-weight: 400;
        height: 19.2px;
    }

        .profile-item .value .text {
            padding: 0 0 0 0;
        }

    .profile-item .edit {
        display: flex;
        align-items: center;
        justify-content: end;
        padding-left: 1rem;
        min-width: 25px;
    }

    .profile-item input {
        border: none;
        outline: none;
        display: flex;
        align-items: center;
        justify-content: end;
        /*padding: 0 1rem;*/
        color: #8E8B8B;
        text-align: right;
        font-family: Inter;
        font-style: normal;
        font-weight: 400;
        line-height: 0.75rem;
        width: 200px;
    }

    .profile-item .e-date-wrapper {
        width: 150px;
    }

    .profile-item .e-ddl {
        width: 150px;
    }

    .profile-item .e-date-wrapper input {
        text-align: center;
    }

    .profile-item .button {
        margin: 0 0 0 10px;
        width: 30px;
        height: 30px;
    }

    .profile-item .e-radio-wrapper {
        padding: 0 1rem 0 0 ;
    }

.accordion {
    --bs-accordion-btn-padding-x: 1rem;
    --bs-accordion-btn-padding-y: 0.5rem;
    --bs-accordion-border-color: #EDF6FF;
    --bs-accordion-btn-bg: #FFF;
    --bs-accordion-btn-focus-border-color: transparent;
    --bs-accordion-btn-focus-box-shadow: transparent;
    --bs-accordion-btn-icon: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Vector 5' d='M1.00033 1L7.66699 6L1.00033 11' stroke='%23FF7A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    --bs-accordion-btn-active-icon: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 9 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath id='Vector 5' d='M1.00033 1L7.66699 6L1.00033 11' stroke='%23FF7A00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E%0A");
    --bs-accordion-btn-icon-width: 12px;
    --bs-accordion-btn-icon-transform: rotate(90deg);
}

    .accordion ::after {
    }

    .accordion .question {
        font-size: 0.9rem;
    }

    .accordion .answer {
        font-size: 0.9rem;
    }