.muc-luc-container {
    width: 300px;
    background-color: #f8f8f8;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin: 0 20px 20px 0;
    box-shadow: 0 2px 5px rgb(0 0 0 / 0.1);
    float: left;
    max-height: 300px;
    overflow-y: auto;
    position: relative;
}
.muc-luc-container::-webkit-scrollbar {
    width: 8px;
}
.muc-luc-container::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 10px;
}
.muc-luc-container::-webkit-scrollbar-thumb {
    background-color: #d0011b;
    border-radius: 10px;
}
.muc-luc-container::-webkit-scrollbar-thumb:hover {
    background-color: #a8011b;
}
.muc-luc-title {
    border-bottom: 2px solid #d0011b;
    padding-bottom: 10px;
    margin-bottom: 15px;
    font-size: 1.4em;
    color: #333;
    position: sticky;
    top: -20px !important;
    background-color: #f8f8f8;
    Z-INDEX: 1;
}
.muc-luc-container ul {
    list-style-type: none !important;
    padding-left: 0;
    position: relative;
    margin-left: 15px !important;
}
.muc-luc-item-level1 {
    margin-bottom: 8px;
    padding-left: 0;
}
.muc-luc-item-level1 > .muc-luc-link {
    color: #000;
}
.muc-luc-item-level2 {
    margin-bottom: 5px;
    font-size: 0.95em;
}
.muc-luc-item-level2 > .muc-luc-link {
    color: #000;
}
.muc-luc-item-level3 {
    padding-left: 0;
    font-size: 12px;
}
.muc-luc-item-level3 > .muc-luc-link {
    color: #000;
    font-weight: normal;
}
.muc-luc-item-level3::before {
    content: "•";
    position: absolute;
    left: -5px;
    color: #000;
    font-size: 14px;
    margin-top: 3px;
}
.muc-luc-link {
    text-decoration: none !important;
    color: #333 !important;
    display: block !important;
    padding: 3px 5px !important;
    border-radius: 3px !important;
    transition: all 0.2s ease !important;
}
.muc-luc-item-level2 > a.muc-luc-link {
    font-weight: 700;
}
.muc-luc-active {
    background-color: #0000001f !important;
}
.muc-luc-content-h1 {
    clear: none;
    margin-right: 0;
    margin-top: 0;
}
.muc-luc-content-h2 {
    clear: none;
    margin-right: 10px;
}
.muc-luc-content-h3 {
    clear: none;
    margin-right: 30px;
}
h1,
h2,
h3 {
    clear: none;
}
.muc-luc-main-list {
    margin-left: 10px !important;
    margin-bottom: 0px !important;
}
.dropcap {
    position: relative;
    font-size: 50px;
    line-height: 25px;
    float: left;
    padding: 10px;
    color: red;
    font-weight: 300;
}
.dropcap-table-contents {
    position: relative;
    float: left;
    line-height: 18px;
    font-weight: 700;
    padding-right: 4px;
    font-size: 1em;
}
.dropcap-table-contents::after {
    content: ".";
    display: inline-block;
}
.faq-container {
    max-width: 100%;
    margin: 40px 0;
    border-radius: 8px;
    background-color: #f9f9f9;
    padding: 25px;
    box-shadow: 0 4px 8px rgb(0 0 0 / 0.1);
}
.faq-container h2 {
    color: #000;
    text-align: center;
    margin-bottom: 30px;
    font-size: 2em;
    position: relative;
    padding-bottom: 15px;
}
.faq-container h2:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #d0011b;
    border-radius: 2px;
}
.faq-item {
    margin-bottom: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.3s ease;
    background-color: #fff;
}
.faq-item:hover {
    box-shadow: 0 6px 12px rgb(0 0 0 / 0.1);
    transform: translateY(-2px);
}
.faq-question {
    position: relative;
    cursor: pointer;
}
.faq-question h3 {
    padding: 20px 60px 20px 20px;
    margin: 0;
    color: #000;
    font-weight: 600;
    font-size: 1.1em;
}
.faq-btn {
    position: absolute;
    right: 20px;
    top: 20px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #d0011b;
    font-weight: 700;
    font-size: 22px;
}
.minus-icon {
    display: none;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition:
        max-height 0.4s ease,
        padding 0.4s ease;
    background-color: rgb(26 71 42 / 0.03);
    border-top: 0 solid #e0e0e0;
    position: relative;
}
.faq-answer p {
    margin-top: 0;
    line-height: 1.6;
    color: #000;
}
.faq-question.active .faq-answer {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}
.faq-question.active + .faq-answer {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}
.faq-answer.active {
    max-height: 500px;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}
.faq-question.active .plus-icon {
    display: none;
}
.faq-question.active .minus-icon {
    display: block;
}
@media (max-width: 768px) {
    .faq-container {
        padding: 15px;
    }
    .faq-question h3 {
        font-size: 1em;
        padding: 15px 50px 15px 15px;
    }
    .faq-btn {
        top: 15px;
    }
}
.liquor-table-container,
.table-container {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-top: 5px;
}
.liquor-table-main,
.table-main {
    width: 100% !important;
    border-collapse: collapse !important;
    border: 1px solid #dddddd !important;
    margin-top: 0px !important;
    margin-bottom: 5px !important;
    margin-right: 0px !important;
    margin-left: 0px !important;
}
.liquor-table-header,
.table-header {
    background-color: #d0011b;
    color: #fff;
}
.liquor-table-header th,
.table-header th {
    padding: 10px 8px;
    text-align: center;
    font-weight: 700;
}
.liquor-table-main tbody tr:nth-child(even),
.table-main tbody tr:nth-child(even) {
    background-color: #f2f2f2;
}
.liquor-table-main td,
.table-main td,
.table-main th {
    padding: 8px;
    border: 1px solid #ddd;
    font-weight: 400;
}
@media screen and (max-width: 768px) {
    .liquor-table-main,
    .table-main {
        font-size: 14px;
    }
    .liquor-table-main th,
    .liquor-table-main td,
    .table-main th,
    .table-main td {
        padding: 5px 4px;
    }
}
.liquor-table-main caption,
.table-main caption {
    background-color: #d0011b;
    color: #fff;
    padding: 12px 10px;
    font-weight: 700;
    font-size: 16px;
    text-align: center;
    border: 1px solid #d0011b;
    border-bottom: none;
    caption-side: top;
    border-radius: 15px 15px 0 0;
}
@media screen and (max-width: 768px) {
    .liquor-table-main caption,
    .table-main caption {
        font-size: 14px;
        padding: 10px 8px;
    }
}
.product-section-title {
    font-size: 18px !important;
    font-family: "Arial", Sans-serif !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    line-height: 25px !important;
    color: #000000 !important;
    box-sizing: border-box !important;
    margin-top: 15px !important;
}
.product-subsection-title {
    font-size: 16px !important;
    font-family: "Arial", Sans-serif !important;
    font-weight: 600 !important;
    margin-bottom: 2px !important;
    line-height: 25px !important;
    color: #000000 !important;
    box-sizing: border-box !important;
}
.product-description {
    font-size: 14px !important;
    margin-bottom: 11px !important;
    margin-top: 0 !important;
    margin-right: 0 !important;
    margin-left: 0 !important;
    border: 0 !important;
    font-style: normal !important;
    font-weight: 400 !important;
    outline: 0 !important;
    padding: 0 !important;
    font-family: "Arial", Sans-serif !important;
    word-wrap: break-word !important;
    box-sizing: border-box !important;
    display: block !important;
}
.product-description-list {
    list-style-type: none !important;
    padding-left: 10px !important;
    margin-top: 10px !important;
    margin-bottom: 10px !important;
    margin-right: 10px !important;
    margin-left: 10px !important;
}
.description-item {
    position: relative;
    padding-left: 25px !important;
    margin-bottom: 5px !important;
    color: #000000 !important;
    font-size: 14px !important;
    line-height: 1.7 !important;
}
.description-item::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    top: -1px !important;
    color: #d0011b !important;
    font-weight: bold !important;
    font-size: 1.2em !important;
}
@media screen and (max-width: 500px) {
    .muc-luc-container {
        float: none !important;
        width: 100% !important;
        margin: 0 0 20px 0 !important;
        max-height: 250px !important;
    }
    .product-section-title,
    .product-subsection-title,
    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        clear: both !important;
        width: 100% !important;
        margin-right: 0 !important;
    }
    .product-description,
    .product-description-list,
    .liquor-table-container,
    .faq-container,
    img {
        clear: both !important;
    }
    .muc-luc-title {
        font-size: 1.2em !important;
        padding-bottom: 8px !important;
    }
    .muc-luc-link {
        font-size: 13px !important;
        padding: 2px 3px !important;
    }
    .muc-luc-item-level3 > .muc-luc-link {
        font-size: 11px !important;
    }
    .dropcap {
        font-size: 40px !important;
        line-height: 20px !important;
        padding: 8px !important;
    }
}
@media screen and (min-width: 501px) and (max-width: 768px) {
    .muc-luc-container {
        width: 280px !important;
        max-height: 280px !important;
    }
    .product-section-title,
    .product-subsection-title {
        margin-right: 20px !important;
    }
}
@media screen and (min-width: 769px) {
    .muc-luc-container {
        float: left !important;
    }
}