* {
    margin: 0;
    padding: 0;
    box-sizing: border-box !important;
    /*font-family: 'Noto Sans TC', sans-serif !important;*/
}

i.fa-solid,
i.fab,
i.fas,
i.far,
i.fa {
    font-family: "Font Awesome 6 Free", "FontAwesome" !important; /* 確保使用 Font Awesome 字型 */
}

i.material-icons {
    font-family: 'Material Icons' !important;
}

/* 固定底部導覽列 */
#mainNavbar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background-color: #f2f2f2;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    /*box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);*/
    /*padding-bottom: 15px;*/
    padding: 0;
}

/* 導覽列的連結按鈕 */
#mainNavbar .nav-link {
    padding: 2px 10px;
    font-size: 0.875rem;
    color: #333 !important;
    /*font-weight: bold;*/
    border-radius: 0;
    margin: 0 0;
    transition: 0.3s ease-in-out;
    text-align: center;
}

/* 按鈕懸停效果 */
#mainNavbar .nav-link:hover {
    /*opacity: 0.8;*/
    /*transform: scale(1.05);*/
    color: black;
    background-color: #e2e2e2;
}

.nav-container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    width: 100%;
}

/* 滾動箭頭樣式 */
.scroll-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: transparent;
    color: #38B2AC;
    border: none;
    cursor: pointer;
    z-index: 1001;
    display: none;
    text-align: center;
    border-radius: 50%;
    padding: 6px;
    width: 36px;
    height: 36px;
    outline: none !important;
    box-shadow: none !important;
}

.scroll-arrow.left {
    left: 0;
}

.scroll-arrow.right {
    right: 0;
}

.scrollable .sideNav-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
}

.scrollable .sideNav-box::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Edge */
}

.scrollable .scroll-arrow {
    display: block;
}

@media (min-width: 992px) {

    #mainNavbar .sideNav-box {
        border: 0;
        background-color: transparent;
        white-space: nowrap;
        overflow-x: hidden;
        margin: 0 40px;
        flex: 1;
    }

    #mainNavbar .navbar-nav {
        /*flex-direction: row; !* 橫向排列 *!*/
        /* 讓導覽列選項水平排列 */
        display: inline-flex;
        flex-wrap: nowrap;
    }

    #mainNavbar .navbar-nav .nav-item {
        margin: 0 5px; /* 間距 */
        display: inline-block;
    }

    #mainNavbar .navbar-nav .nav-link {
        display: inline-block;
        background-color: #e0e0e0;
        /*padding: 8px 16px;*/
        border-radius: 5px;
        color: #333;
        border: 1px solid #ccc;
        transition: background-color 0.2s ease;
        font-size: 0.875rem;
    }

    #mainNavbar .navbar-nav .nav-link:hover {
        background-color: #004080;
        color: white;
    }

    .navbar-toggler {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background: #4682b4 !important;
        color: white;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    }

    #navbarNav {
        position: absolute;
        /*bottom: 40px;*/
        left: 50%;
        transform: translateX(-50%);
        /*background-color: rgba(255, 255, 255, 0.9);*/
        width: 90%;
        text-align: center;
        padding: 10px 0;
    }

}

/* 小螢幕時的調整 */
@media (max-width: 991px) {
    #mainNavbar {
        height: auto;
        padding: 0;
    }

    #mainNavbar .nav-link {
        padding: 0.5rem 1rem;
        border-radius: 0;
        margin: 0;
    }

    .nav-container {
        display: block;
        max-height: 480px;
        overflow-y: auto;
        scrollbar-width: thin;              /* Firefox */
        scrollbar-color: #38B2AC #f0f0f0;   /* Firefox - thumb, track */
    }

    /* Chrome / Safari / Edge */
    .nav-container::-webkit-scrollbar {
        width: 6px;                         /* 滾動條寬度 */
    }

    .nav-container::-webkit-scrollbar-track {
        background: #f0f0f0;                /* 背景色（軌道） */
    }

    .nav-container::-webkit-scrollbar-thumb {
        background-color: #38B2AC;          /* 滾動條本體色 */
        border-radius: 10px;
        border: 2px solid #f0f0f0;          /* 可選：加一點邊框 */
    }

    .scroll-arrow {
        display: none;
    }

    /* 彈出式導覽列居中對齊 */
    #navbarNav {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        background-color: rgba(255, 255, 255, 0.9);
        width: 90%;
        text-align: center;
        padding: 10px 0;
        /*border-radius: 10px 10px 0 0;*/
        /*box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);*/
    }

    #navbarNav .navbar-nav{
        /*border-top: 1px solid rgb(0, 0, 0, .125) !important;*/
        /*border-right: 1px solid rgb(0, 0, 0, .125) !important;*/
        /*border-left: 1px solid rgb(0, 0, 0, .125) !important;*/
        /*border-bottom: 0 solid rgb(0, 0, 0, .125) !important;*/
        /*background: #f2f2f2;*/
    }

    /* 讓導覽列選項水平排列 */
    #navbarNav .nav-item {
        display: inline-block;
        margin-bottom: 0;
        /*border-bottom: 1px solid rgb(0, 0, 0, .125);*/
    }

    /* Toggle 按鈕固定在右下角 */
    .navbar-toggler {
        position: fixed;
        bottom: 10px;
        right: 10px;
        background: #6F4E37 !important;
        color: white;
        border-radius: 50%;
        width: 36px;
        height: 36px;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
        outline: none !important;
    }

    .navbar-toggler:hover {
        background: #6F4E37 !important;
    }
}

/* 滑出左側導覽列 */
#sideNav {
    position: fixed;
    top: 233px;
    left: -260px;
    /* 初始隱藏 */
    width: 260px;
    height: 100vh;
    background: #f2f2f2;
    /* 淺綠色帶透明度 */
    /*box-shadow: 2px 0 10px rgba(0, 0, 0, 0.2);*/
    transition: left 0.3s ease-in-out;
    padding: 20px;
    text-align: center;
    z-index: 1050;
    backdrop-filter: blur(10px);
    color: white;
    /*border-radius: 0 10px 10px 0;*/
}

/* 白底的格線容器 */
.sideNav-box {
    background-color: #fff;
    border: 1px solid #ccc;
    border-collapse: collapse;
}

.sideNav-box h4 {
    margin: 0;
    padding: 8px;
    background-color: #4682b4;
    color: white;
    border-bottom: 1px solid #ccc;
    font-size: 1rem !important;
}

.sideNav-box ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sideNav-box .nav-item {
    /*border-top: 1px solid #ccc;*/
}

/* 奇偶底色 */
.sideNav-box .nav-item:nth-child(odd) {
    background-color: #ffffff !important;
}

.sideNav-box .nav-item:nth-child(even) {
    background-color: #e2e2e2 !important;
}

.sideNav-box .nav-link {
    display: block;
    padding: 8px 15px;
    color: #333;
    text-decoration: none;
    background-color: transparent !important;
    font-size: 0.875rem;
}

/* hover 效果 */
.sideNav-box .nav-link:hover {
    background-color: #cce5ff !important;
    color: #000;
}

/* 左側固定按鈕 */
#toggleSidebar {
    position: fixed;
    top: 50%;
    left: 0;
    width: 24px;
    height: 36px;
    background: #6F4E37;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    transition: 0.3s;
    z-index: 1000;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

#toggleSidebar:hover {
    background: #6F4E37;
}

@media (max-width: 991px) {
    #sideNav {
        top: 198px;
    }
}

/* 遮罩 */
#overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
}


/* Floating Cart Styles */
.floating-cart {
    position: fixed;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    width: 52px;
    background: #6F4E37;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    padding: 10px;
    color: white;
    z-index: 1000;
    transition: width 0.3s ease, height 0.3s ease;
    overflow: hidden;
    animation: float 3s ease-in-out infinite;
}

.floating-cart.expanded {
    width: 250px;
    height: auto; /* 展開時高度自動調整 */
}

.cart-header {
    position: relative;
    display: flex;
    align-items: center;
    cursor: pointer;
    padding-bottom: 5px;
}

.cart-icon {
    font-size: 24px;
    margin-right: 10px;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4d4f;
    color: white;
    font-size: 12px;
    font-weight: bold;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s ease;
    padding-bottom: 2px;
}

.cart-header h3 {
    margin: 0;
    font-size: 18px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.floating-cart.expanded .cart-header h3 {
    opacity: 1;
}

.cart-body {
    margin: 5px 0;
    font-size: 14px;
    display: none; /* 未展開時隱藏 */
}

.floating-cart.expanded .cart-body {
    display: block; /* 展開時顯示 */
}

.cart-body p {
    margin: 5px 0;
    white-space: nowrap;
}

.cart-body .label {
    opacity: 0;
    transition: opacity 0.2s ease;
}

.cart-body .label::after {
    border-left: transparent ;
}

.floating-cart.expanded .cart-body .label {
    opacity: 1;
    font-size: 1rem;
    color: #fff;
    background: transparent;
}

.cart-button {
    width: 100%;
    padding: 10px;
    background-color: #ffe66d;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    transition: transform 0.2s, opacity 0.2s;
    opacity: 0;
    display: none; /* 未展開時隱藏 */
}

.floating-cart.expanded .cart-button {
    opacity: 1;
    display: block; /* 展開時顯示 */
}

.cart-button:hover {
    background-color: #ffd700;
    transform: scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(-50%) translateY(0);
    }
    50% {
        transform: translateY(-50%) translateY(-10px);
    }
    100% {
        transform: translateY(-50%) translateY(0);
    }
}

/* 回到頂部按鈕樣式 */
#scrollToTop {
    position: fixed;
    right: 10px; /* 往左移，避免與 navbar-toggler 重疊 */
    bottom: 60px; /* 稍微往上 */
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #6F4E37;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    padding: 3px 6px;
}

/* 滑鼠懸停時 */
#scrollToTop:hover {
    background: #6F4E37;
    transform: scale(1.1);
}

/* 當螢幕寬度小於 576px (手機) */
@media (max-width: 576px) {
    #scrollToTop {
        right: 10px; /* 🔹 在手機上稍微往左 */
        bottom: 60px; /* 🔹 避免與 navbar-toggler 重疊 */
    }
}

/* 團購表單 - 廣告輪播區 */
.groupbuy-slider {
    margin-bottom: 30px;
    width: 100%;
    overflow: hidden;
}

.groupbuy-slider .slide {
    position: relative;
    width: 100%;
}

.groupbuy-slider .slide img {
    width: 100%;
    height: auto;
    display: block; /* 避免下方空隙 */
}

/* 團購表單 - 標題區 */
.groupbuy-header {
    text-align: center;
    margin-bottom: 30px;
}

.groupbuy-header h1 {
    font-size: 2.5rem;
    color: #319795; /* 主色：深藍色 */
    margin-bottom: 10px;
    font-weight: 700;
}

.groupbuy-header h2 {
    font-size: 1.5rem;
    color: #38B2AC; /* 輔助色：淺藍色 */
    font-weight: 400;
}

/* 團購表單 - 大圖區 */
.groupbuy-image {
    margin-bottom: 30px;
}

.groupbuy-image img {
    width: 100%;
    height: auto;
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);*/
}

/* 團購表單 - 活動資訊區 */
.groupbuy-info {
    background-color: #ffffff; /* 白色卡片背景 */
    padding: 20px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
    margin-bottom: 30px;
}

.groupbuy-info h3 {
    font-size: 1.25rem;
    color: #319795; /* 主色：深藍色 */
    margin-bottom: 10px;
    font-weight: 700;
}

.groupbuy-info p {
    font-size: 1rem;
    color: #333333; /* 深灰色文字 */
    margin-bottom: 15px;
}

.groupbuy-info .groupbuy-period {
    font-weight: bold;
    color: #f5a623; /* 強調色：亮橙色 */
}

.groupbuy-footer {
    background-color: #f8f9fa; /* 白色卡片背景 */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 10px;
    font-size: 1rem;
}




/* 團購表單容器 */
.groupbuy-container {
    max-width: 1200px; /* 限制最大寬度 */
    margin: 0 auto; /* 居中 */
    padding: 0; /* 內邊距 */
}

/* 卡片樣式 */
.groupbuy-container .card {
    background-color: #f8f9fa; /* 淺灰色背景 */
    /* 或者使用淺藍色背景：background-color: #e9f5ff; */
    /*border-radius: 10px; !* 圓角 *!*/
    /*box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); !* 微妙陰影 *!*/
    padding: 20px; /* 內邊距 */
    margin-bottom: 20px; /* 卡片之間的垂直間隔 */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* 滑鼠懸停動畫 */
}

/* 滑鼠懸停效果 */
.groupbuy-container .card:hover {
    /*transform: translateY(-5px); !* 輕微上移 *!*/
    /*box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15); !* 增強陰影 *!*/
}

/* 優惠活動 - 卡片標題 */
.groupbuy-container .card-title {
    font-size: 1.5rem; /* 標題字體大小 */
    font-weight: bold;
    color: #D53F8C; /* 深色文字 */
    margin-bottom: 10px; /* 與描述的間距 */
    text-align: center;
}

/* 優惠活動 - 卡片圖片 */
.groupbuy-container .card-image {
    margin-bottom: 10px; /* 與卡片描述間距 */
}

.groupbuy-container .card-image img {
    max-width: 100%; /* 圖片最大寬度 */
    height: auto; /* 保持比例 */
    border-radius: 10px; /* 圖片圓角 */
    display: block; /* 避免圖片下方的空白 */
    margin: 0 auto; /* 圖片居中 */
}

/* 優惠活動 - 資訊區 */
.groupbuy-container .card-info {
    /*background-color: #ffffff; !* 白色卡片背景 *!*/
    padding: 20px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
    margin-bottom: 10px;
}

.groupbuy-container .card-info h3 {
    font-size: 1.25rem;
    color: #ED64A6; /* 主色：深藍色 */
    margin-bottom: 10px;
    font-weight: 700;
}

.groupbuy-container .card-info p {
    font-size: 1rem;
    color: #555; /* 深灰色文字 */
    margin-bottom: 10px;
}

.groupbuy-container .card-info .card-period {
    font-weight: bold;
    color: #f5a623; /* 強調色：亮橙色 */
}

/* 響應式設計 */
@media (max-width: 768px) {
    .groupbuy-container {
        padding: 0; /* 小螢幕下減少內邊距 */
    }

    .groupbuy-container .card {
        margin-bottom: 15px; /* 小螢幕下減少卡片間距 */
        padding: 15px; /* 小螢幕下減少內邊距 */
    }

    .groupbuy-container .card-title {
        font-size: 1.3rem; /* 小螢幕下縮小標題 */
    }

    .groupbuy-container .card-info h3 {
        font-size: 1rem;
        color: #ED64A6; /* 主色：深藍色 */
        margin-bottom: 10px;
        font-weight: 700;
    }

    .groupbuy-container .card-info p {
        font-size: 0.9rem;
        color: #555; /* 深灰色文字 */
        margin-bottom: 10px;
    }
}

/* 優惠活動 - 商品區 */
.groupbuy-container .card-page {
    /*background-color: #B2F5EA; !* 白色卡片背景 *!*/
    padding: 15px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
    margin-bottom: 10px;
    text-align: left;
    font-size: 1.5rem;
    font-weight: bold;
}

.groupbuy-container .card-page-area {
    background-color: #e1dac4; /* 白色卡片背景 */
    padding: 10px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
    margin-bottom: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

.groupbuy-container .card-page-area-b {
    background-color: #d1dac4; /* 白色卡片背景 */
    padding: 10px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);*/
    margin-bottom: 10px;
    text-align: center;
    font-size: 1rem;
    font-weight: bold;
}

.groupbuy-container .vk-60-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media screen and (max-width: 991px) {
    .groupbuy-container .tab-pane > .row {
        flex-wrap: wrap;
        overflow-x: hidden;
        overflow-y: hidden;
        white-space: wrap;
        display: flex !important;
    }
}

.groupbuy-container .tab-labels-blue .book-info {
    min-width: auto !important;
}

/*倒數計數器*/
#countdown {
    text-align: center;
}

.countdown-big .countdown-box {
    display: flex;
    gap: 10px;
    font-size: 2rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    /*background: linear-gradient(45deg, #ff416c, #ff4b2b);*/
    background-color: inherit;
    padding: 10px 20px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    justify-content: center;
}
.countdown-big .countdown-box .countdown-item {
    padding: 5px 10px;
    /*background: rgba(255, 255, 255, 0.2);*/
    background: #ff0000;
    border-radius: 5px;
    min-width: 60px;
    display: inline-block;
}
.countdown-big .expired {
    font-size: 1rem;
    color: red;
    /*font-weight: bold;*/
}
.countdown-big .countdown-box .label {
    background: transparent;
    color: #333;
    font-size: .8125rem;
    height: 22px;
    position: inherit;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 10px;
}
.countdown-big .countdown-box .label::after {
    border-left: transparent;
}
.countdown-big .countdown-info {
    font-size: 1.5rem;
    /*font-weight: bold;*/
    /*color: #319795;*/
    margin-bottom: 20px;
    text-align: center;
}

.countdown-small .countdown-box {
    display: flex;
    gap: 10px;
    font-size: 1.25rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    /*background: linear-gradient(45deg, #38B2AC, #2C7A7B);*/
    background: inherit;
    padding: 5px 10px;
    /*border-radius: 10px;*/
    /*box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
    justify-content: center;
}
.countdown-small .countdown-box .countdown-item {
    padding: 3px 6px;
    /*background: rgba(255, 255, 255, 0.2);*/
    background: #ff0000;
    border-radius: 5px;
    min-width: 40px;
    display: inline-block;
}
.countdown-small .expired {
    font-size: 1rem;
    color: red;
    font-weight: bold;
}
.countdown-small .countdown-box .label {
    background: transparent;
    color: #333;
    font-size: .8125rem;
    height: 22px;
    position: inherit;
    padding-left: 5px;
    padding-right: 5px;
    margin-right: 10px;
}
.countdown-small .countdown-box .label::after {
    border-left: transparent;
}
.countdown-small .countdown-info {
    font-size: 1rem;
    font-weight: bold;
    /*color: #ff416c;*/
    margin-bottom: 20px;
    text-align: center;
}

/* 自定義標籤導航樣式 */
.custom-tabs {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0;
    list-style: none;
    border-bottom: 1px solid #ccc;
}

.custom-tabs .nav-item {
    margin-bottom: -1px; /* 確保標籤與內容邊框無縫銜接 */
}

.custom-tabs .nav-link {
    display: block;
    padding: 10px 15px;
    color: #319795;
    text-decoration: none;
    background: none;
    border: 1px solid transparent;
    border-radius: 4px 4px 0 0;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out;
    margin-bottom: -1px;
}

.custom-tabs .nav-link:hover {
    /*color: #0056b3 !important;*/
    /*border-color: #ccc #ccc transparent;*/
    color: #319795 !important;
    border-color: #4FD1C5 #4FD1C5 transparent;
    background-color: #e6fffb;
}

.custom-tabs .nav-link.active {
    color: #495057;
    background-color: #fff;
    border-color: #ccc #ccc #fff;
    font-weight: bold;
}

/* 多個 tab，最後一個補右邊框但拿掉左邊 */
.custom-tabs li:last-child:not(:only-child) .nav-link.active {
    border-right: 1px solid #ccc !important;
    border-left: none !important;
}

/* 僅有一個 tab，保留左右邊框 */
.custom-tabs li:only-child .nav-link.active {
    border-right: 1px solid #ccc !important;
    border-left: 1px solid #ccc !important;
}

/* 自定義標籤內容樣式 */
.custom-tab-content {
    border: 1px solid #ccc;
    border-top: none; /* 移除頂部邊框以避免與活躍標籤重疊 */
    padding: 20px;
    background-color: #fff;
    /*border-radius: 0 0 4px 4px;*/
    /*box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); !* 可選：添加陰影 *!*/
}

.custom-tab-content .tab-pane {
    display: none;
}

.custom-tab-content .tab-pane.active {
    display: block;
}

/* 響應式調整 */
@media (max-width: 992px) {
    .groupbuy-tabs .nav {
        overflow-y: inherit !important;
    }
    .custom-tabs .nav-link {
        padding: 8px 10px;
        font-size: 14px;
    }
    .custom-tab-content {
        padding: 15px;
    }
}

.groupbuy-tabs .custom-tabs .nav-item {
    white-space: normal !important;
}

.btn-yellow {
    background-color: #ffea96 !important;
    color: #fb473c !important;
}