/*
css樣式順序(RWD在media.css)：
元件-按鈕
元件-文字
元件-Badge
元件-首頁-最新消息列表
元件-首頁-申請流程及須知
元件-首頁-便民服務/服務專區
元件-首頁-相關連結
元件-首頁 hero Carousel
元件-Page Banner (目錄/頁面標題)
元件-Sidebar Accordion
元件-Content Area
元件-form
元件-分頁 pagination
元件-Table List
元件-article 文章
元件-多國語言

顏色-color

排列區塊-圖文排列
排列區塊-流程圖說明
排列區塊-logo組合

表單
表格
開合選單
錨點切換
輪播功能
圖片-Logo/Icon
*/

/* @元件-按鈕 ---------------------------------------------------------------------------------------------- */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 12px 32px;
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
    border-radius: 12px;
    font-weight: bold;
    transition: 0.3s;
    letter-spacing: 0.1em;
    border: 1px solid var(--primary);
    line-height: 1.2em;
}

.btn-primary:hover,
.btn-primary:focus {
    border: 1px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
    text-decoration: none;
}

button.w-25,
a.w-25 {
    max-width: 200px !important;
}


.btn-secondary {
    background-color: var(--secondary);
    color: var(--white);
    border: 1px solid var(--secondary);
}

.btn-secondary:hover,
.btn-secondary:focus {
    border: 1px solid var(--secondary);
    background-color: var(--white);
    color: var(--secondary);
    text-decoration: none;
}

.btn-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 28px !important;
}

.btn-icon.btn-primary:hover img,
.btn-icon.btn-primary:focus img{
    filter: brightness(0) saturate(100%) invert(21%) sepia(98%) saturate(1000%) hue-rotate(90deg) brightness(70%) contrast(95%);
}

.btn-icon.btn-secondary:hover img,
.btn-icon.btn-secondary:focus img{
    filter: brightness(0) saturate(100%) invert(40%) sepia(93%) saturate(2200%) hue-rotate(355deg) brightness(80%) contrast(95%);
}

.btn-tag {
    padding: 6px 16px 8px 16px;
    border: 1px solid var(--primary);
    background-color: var(--white);
    color: var(--primary);
    text-align: center;
    border-radius: 12px;
}

.btn-tag:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.btn-quick {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-decoration: none;
    border-radius: 16px;
    transition: all 0.3s;
    min-height: 118px;
    border: none;
}

.btn-quick.btn-yellow {
    background-color: var(--secondary_light);
    color: var(--textcolor);
}

.btn-quick.btn-green-light {
    background-color: var(--primary_light);
    color: var(--textcolor);
}

.btn-quick.btn-yellow:hover {
    background-color: var(--secondary);
    color: var(--textcolor);
    text-decoration: none;
}

.btn-quick.btn-green-light:hover {
    background-color: var(--primary);
    color: var(--white);
    text-decoration: none;
}

.btn-tab {
    color: var(--textcolor);
    background-color: var(--primary_light);
    padding: 12px;
    border-radius: 12px;
    transition: .3s;
    border: none;
}

.btn-tab.active {
    background-color: var(--secondary_dark) !important;
    border: none;
    border-radius: 12px;
}

.btn-tab:hover {
    background-color: var(--primary) !important;
    color: var(--white) !important;
}

.btn-table {
    display: block;
    padding: 16px;
    text-align: center;
    width: 100%;
    color: var(--textcolor);
    background-color: var(--secondary_light);
}

.btn-table:hover {
    color: var(--white);
    background-color: var(--primary);
    text-decoration: none;
}

.btn-text {
    color: var(--primary);
    width: fit-content;
}

.btn-text:hover {
    color: var(--secondary);
    text-decoration: underline;
}

/* @元件-文字 ---------------------------------------------------------------------------------------------- */
.section-title {
    width: fit-content;
    padding-bottom: 16px;
    border-bottom: 4px solid var(--primary);
}

/* @元件-Badge 檔案類型標籤 ---------------------------------------------------------------------------------------------- */
.badge {
    display: inline-block;
    padding: 4px 8px;
    font-size: 0.75rem;
    font-weight: bold;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: 4px;
}

.badge-pdf {
    background-color: var(--badge-pdf);
    color: var(--white);
}

.badge-doc {
    background-color: var(--badge-doc);
    color: var(--white);
}

.badge-odt {
    background-color: var(--badge-odt);
    color: var(--white);
}

/* @元件-首頁-最新消息列表 ---------------------------------------------------------------------------------------------- */
.index-news-tabs .nav-item {
    width: fit-content;
    min-width: 19.5%;
}

.index-news-tabs .nav-link {
    width: 100%;
    color: var(--textcolor);
    background-color: var(--primary_light);
    border: none;
    border-radius: 12px 12px 0 0;
    padding: 12px 10px;
    transition: all 0.3s;
}

.index-news-tabs .nav-link.active {
    background-color: var(--secondary_dark);
}

.index-news-tabs .nav-link:hover,
.index-news-tabs .nav-link.active:hover {
    background-color: var(--primary);
    color: var(--white);
}

.index-news-tab-content {
    background-color: var(--gray_10);
    padding: 24px;
    min-height: 448px;
    border-radius: 0 0 24px 24px;
}

.index-news-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.index-news-item {
    display: flex;
    align-items: flex-start;
    padding: 16px 0;
    border-bottom: 1px solid var(--textcolor);
    color: var(--primary);
}

.index-news-item:first-child {
    padding-top: 0;
}

.news-title {
    color: var(--textcolor);
    text-decoration: none;
    transition: color 0.3s;
}

.news-title:hover {
    color: var(--primary);
    text-decoration: underline;
}

/* Mobile Accordion Styles */
.index-news-accordion {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.index-news-accordion .accordion-item {
    border: none;
    overflow: hidden;
    border-bottom: 1px solid var(--textcolor);
}

.index-news-accordion .accordion-item:last-child {
    border-bottom: none;
}

.index-news-accordion .accordion-item .accordion-button {
    background-color: var(--primary_light);
}

.index-news-accordion .accordion-button {
    color: var(--textcolor);
    border: none;
    padding: 20px 24px;
    position: relative;
}

.index-news-accordion .accordion-button:not(.collapsed) {
    background-color: var(--secondary_dark);
    color: var(--textcolor);
}

.index-news-accordion .accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
    position: relative;
}

.index-news-accordion .accordion-button:focus::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px dashed var(--outline-focus);
    border-radius: inherit;
    pointer-events: none;
}

.index-news-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%231B5E20' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    width: 24px;
    height: 24px;
    background-size: 16px;
    background-position: center;
    background-color: var(--white);
    border-radius: 100%;
}

.index-news-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23E18529' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    transform: rotate(-180deg);
    background-position: 50% 60%;
}

.index-news-accordion .accordion-body {
    padding: 24px;
    background-color: var(--gray_10);
}

/* @元件-首頁-申請流程及須知 ---------------------------------------------------------------------------------------------- */
.index-process-card {
    background-color: var(--white);
    border-radius: 12px;
    padding: 24px 4px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--textcolor);
}

.index-process-card:hover {
    outline: 4px solid var(--secondary);
    color: var(--secondary);
    text-decoration: none;
}

.process-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* @元件-首頁-便民服務/服務專區 ---------------------------------------------------------------------------------------------- */
.index-service-tabs {
    width: fit-content;
    border: none;
}

.index-service-tabs .nav-link {
    padding-bottom: 16px;
    color: var(--gray_20);
    border: none;
    border-bottom: 4px solid var(--gray_20);
    margin-bottom: -4px;
    transition: .3s;
}

.index-service-tabs .nav-link:hover,
.index-service-tabs .nav-link.active:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

.index-service-tabs .nav-link.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.service-card {
    background-color: var(--white);
    border: 4px solid var(--gray_10);
    border-radius: 24px;
    padding: 40px 16px;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
    height: 100%;
    min-height: 259px;
    color: var(--textcolor);
}

.service-card:hover {
    border-color: var(--primary);
    color: var(--primary);
    text-decoration: none;
}

.service-icon {
    width: 115px;
    height: 77px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}


/* @元件-首頁-相關連結 ---------------------------------------------------------------------------------------------- */
.index-link-card {
    display: block;
    transition: .3s;
    overflow: hidden;
    position: relative;
}

.index-link-card:focus {
    outline: none !important;
}

.index-link-card:hover::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px solid var(--secondary);
    border-radius: inherit;
    pointer-events: none;
    transition: .3s;
}

.index-link-card:focus::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px dashed var(--outline-focus);
    border-radius: inherit;
    pointer-events: none;
    transition: .3s;
}

.index-link-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* @元件-首頁 hero Carousel ---------------------------------------------------------------------------------------------- */
.index-hero-carousel {
    /* border-top: 20px solid var(--primary_light);
    border-bottom: 20px solid var(--primary_light); */
}

.index-hero-carousel .carousel-item img {
    display: block;
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 40px;
    height: 40px;
    background-color: var(--secondary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
}

.carousel-control-prev {
    left: 20px;
}

.carousel-control-next {
    right: 20px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    background-color: var(--primary);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-control-prev-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M11 2L5 8l6 6'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23fff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M5 2l6 6-6 6'/%3e%3c/svg%3e");
}

.carousel-indicators {
    margin-bottom: 12px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--white);
    border: none;
    opacity: 1;
}

.carousel-indicators .active {
    background-color: var(--primary);
}

/* Swiper 相關連結樣式 */
.index-external-links .linksSwiper {
    padding: 0 50px;
}

.index-external-links .swiper-button-prev,
.index-external-links .swiper-button-next {
    width: 40px;
    height: 100%;
    background-color: var(--secondary);
    top: 50%;
    transform: translateY(-50%);
    transition: .3s;
    margin-top: 0;
}

.index-external-links .swiper-button-prev {
    left: 0;
    border-radius: 4px 0 0 4px;
}

.index-external-links .swiper-button-next {
    right: 0;
    border-radius: 0 4px 4px 0;
}

.index-external-links .swiper-button-prev:hover,
.index-external-links .swiper-button-next:hover {
    background-color: var(--primary);
}

.index-external-links .swiper-button-prev:after,
.index-external-links .swiper-button-next:after {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fff;
}

/* 隱藏 Swiper 預設分頁器 */
.index-external-links .swiper-pagination {
    display: none;
}


/* @元件-Page Banner (目錄/頁面標題) ---------------------------------------------------------------------------------------------- */
.page-banner {
    position: relative;
    overflow: hidden;
    /* border-top: 20px solid var(--primary_light);
    border-bottom: 20px solid var(--primary_light); */
    background-color: var(--white);
}

.page-banner .wrapper {
    position: relative;
    height: 187px;
    z-index: 1;
}

.img-page-banner-content {
    position: absolute;
    top: 0;
    width: 100%;
    height: 187px;
    max-width: 1440px;
}

.img-page-banner {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right;
}

.breadcrumb,
.breadcrumb-item a {
    color: var(--textcolor);
}

.breadcrumb-item a:hover {
    color: var(--primary);
    text-decoration: underline;
}

.page-title {
    color: var(--primary);
}

/* @元件-Sidebar Accordion ---------------------------------------------------------------------------------------------- */
.sidebar-nav-container {
    gap: 12px;
}

.sidebar-accordion {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
    border-radius: 0;
    overflow: visible;
    background-color: transparent;
}

.sidebar-accordion .accordion-item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: none;
}

/* 第一層 Accordion 按钮 */
.sidebar-accordion .accordion-button,
.sidebar-direct-tab {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: var(--white);
    color: var(--textcolor);
    border: 2px solid var(--primary_light);
    border-radius: 16px !important;
    padding: 24px 16px;
    box-shadow: none;
    position: relative;
    text-align: center;
}

.sidebar-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary_light);
    color: var(--textcolor);
    box-shadow: none;
}

.sidebar-accordion .accordion-button:focus {
    outline: none !important;
    box-shadow: none !important;
}

.sidebar-accordion .accordion-button:focus::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px dashed var(--outline-focus);
    border-radius: inherit;
    pointer-events: none;
}

.sidebar-accordion .accordion-button::after {
    /*background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%23000' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3e%3cpath d='M2 5l6 6 6-6'/%3e%3c/svg%3e");*/
    /*width: 24px;*/
    /*height: 24px;*/
    /*background-size: 20px;*/
    /*background-position: center;*/
    display: none;
}

/*.sidebar-accordion .accordion-button:not(.collapsed)::after {*/
/*    transform: rotate(-180deg);*/
/*}*/

.sidebar-accordion .accordion-collapse {
    background-color: var(--gray_10);
    border-radius: 16px;
}

/* 第二層 Tabs */
.sidebar-sub-tabs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-sub-tabs .btn-nav-link,
.sidebar-sub-tabs .nav-link {
    background-color: var(--white);
    color: var(--primary);
    border: 1px solid var(--primary);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
    text-decoration: none;
}

.sidebar-sub-tabs .btn-nav-link.active,
.sidebar-sub-tabs .nav-link.active {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.sidebar-sub-tabs .btn-nav-link:hover,
.sidebar-sub-tabs .nav-link:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* 第一級直接tab，無內層 */
.sidebar-direct-tab.active {
    background-color: var(--primary_light);
    color: var(--textcolor);
    border-color: var(--primary_light);
}

.sidebar-direct-tab:hover {
    background-color: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.sidebar-direct-tab:focus {
    outline: none !important;
    box-shadow: none !important;
    position: relative;
}

.sidebar-direct-tab:focus::before {
    content: "";
    position: absolute;
    inset: 0;
    border: 3px dashed var(--outline-focus);
    border-radius: inherit;
    pointer-events: none;
}

/* @元件-List accordion ---------------------------------------------------------------------------------------------- */
.content-accordion .accordion-button:not(.collapsed) {
    color: var(--textcolor);
    background-color: var(--primary_light);
    box-shadow: none;
}

/* @元件-Content Area ---------------------------------------------------------------------------------------------- */
.content-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 16px;
}

.content-body {
    background-color: var(--gray_10);
    padding: 24px 24px 40px 24px;
    border-radius: 0 0 24px 24px;
    line-height: 2em;
}

/* @元件-form ---------------------------------------------------------------------------------------------- */
.form-control {
    padding: 8px 16px;
    border-color: var(--textcolor);
}

.form-select {
    padding-top: 8px;
    padding-bottom: 8px;
    border-color: var(--textcolor);
}

.form-select.w-select-date{
    max-width: 104px;
}

.form-check-input {
    width: 1.5em;
    height: 1.5em;
    margin-right: 16px;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary) !important;
}


.form-control:focus,
.form-select:focus,
.form-check-input:focus {
    outline: 3px dashed var(--outline-focus) !important;
    outline-offset: 2px;
    border-color: var(--textcolor);
    box-shadow: none;
}

/* @元件-分頁 pagination ---------------------------------------------------------------------------------------------- */
.pagination-container a,
.pagination-container span {
    text-decoration: none;
    color: var(--textcolor);
    font-weight: 500;
}

.pagination-container .page-item:hover:not(.disabled) a {
    background-color: var(--primary_light);
    color: var(--textcolor);
}

.pagination-container .active > .page-link,
.pagination-container .page-link.active,
.pagination-container .page-link:focus {
    background-color: var(--primary) !important;
    color: var(--white) !important;
    border-color: var(--primary) !important;
}

/* @元件-Table List ---------------------------------------------------------------------------------------------- */
.table-dark {
    --bs-table-bg: var(--secondary_light);
    --bs-table-color: var(--textcolor);
}

.table > :not(caption) > * > * {
    word-break: auto-phrase;
    text-align: left;
    padding: 16px;
    color: var(--textcolor);
}

.table > :not(caption) > * > td.p-0 {
    padding: 0 !important;
    position: relative;
    height: 1px;
}

.table > :not(caption) > * > td.p-0 .btn-table {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.table-scroll-content {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.table-scroll-content .table-list {
    min-width: 640px;
}

.table-list {
    overflow: hidden;
    margin-bottom: 0;
}

.table-list tr {
    border-bottom: 1px solid var(--textcolor);
}

.table-list .list-title {
    max-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.table-list tr {
    position: relative;
}

.table-striped > tbody > tr:nth-of-type(odd) > * {
    --bs-table-color-type: var(--textcolor);
    --bs-table-bg-type: var(--block-green);
}

.table-striped thead th {
    color: var(--primary);
    border-bottom: 2px solid var(--primary);
}

/* @元件-article 文章 ---------------------------------------------------------------------------------------------- */
.article-content {
    display: flex;
    flex-direction: column;
    background-color: var(--gray_10);
    border-radius: 16px;
    padding: 40px;
    gap: 24px;
}

.article-body {
    padding-top: 24px;
    border-top: 1px solid var(--textcolor);
}

.article-block h3 {
    padding-bottom: 16px;
    border-bottom: 1px solid var(--textcolor);
}

.article-file-download {
    padding: 16px;
    background-color: var(--white);
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* @元件-多國語言 ---------------------------------------------------------------------------------------------- */
.section-language img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

/* @元件-影音 ---------------------------------------------------------------------------------------------- */
.card-title {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    white-space: normal !important;
}

.card-text {
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 4 !important;
    -webkit-box-orient: vertical !important;
    white-space: normal !important;
}

/* @顏色-color ---------------------------------------------------------------------------------------------- */
.text-green {
    color: var(--primary);
}

.text-orange {
    color: var(--secondary);
}

.text-black {
    color: var(--textcolor);
}

.bg-green {
    color: var(--primary);
}

.bg-green-light {
    background-color: var(--block-green);
}

.text-muted {
    color: inherit !important;
}

/* @元件-網站導覽 Sitemap ---------------------------------------------------------------------------------------------- */
#sitemap {
    counter-reset: main-counter;
    list-style: none;
    padding-left: 0;
    column-count: 2;
    column-gap: 2rem;
}

#sitemap a {
    color: var(--textcolor);
}

#sitemap a:hover {
    color: var(--primary);
    text-decoration: underline;
}

#sitemap > li {
    counter-increment: main-counter;
    margin-bottom: 1rem;
    color: var(--textcolor);
    break-inside: avoid;
    page-break-inside: avoid;
}

#sitemap > li::before {
    content: counter(main-counter) ". ";
}


#sitemap .sub {
    counter-reset: sub-counter;
    list-style: none;
    padding-left: 2rem;
    margin-top: 0.5rem;
}

#sitemap .sub > li {
    counter-increment: sub-counter;
    font-weight: normal;
    margin-bottom: 0.5rem;
}

#sitemap .sub > li::before {
    content: counter(main-counter) "-" counter(sub-counter) ".";
    margin-right: 0.5rem;
}

/* 手機版單欄顯示 */
@media (max-width: 768px) {
    #sitemap {
        column-count: 1;
    }
}

/* @元件-Status Modal (成功/失敗彈窗) ---------------------------------------------------------------------------------------------- */
.modal-content {
    border-radius: 24px;
    border: none;
}

.modal-header {
    padding: 24px 24px 0 24px;
}

.modal-body {
    padding: 24px 40px 40px 40px;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-icon.success {
    background-color: var(--primary);
    color: var(--white);
}

.modal-icon.error {
    background-color: var(--secondary);
    color: var(--white);
}
.spinner-border{
    width: 48px;
    height: 48px;
    color: var(--primary);
}
