.MenuListHeader{
        width: 100%;
        position: relative;
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 10px;
}
.MenuListHeader span {
        background-size: 20px;
        background-position-x: 5px;
        text-transform: uppercase;
        font-family: 'Inter';
        font-size: var(--label-size);
        font-style: normal;
        font-weight: var(--label-weight);
        /* line-height: 18px; */
        letter-spacing: 0em;
        text-align: left;
        color: var(
                --color-red);
        letter-spacing: -1px;
}
.MenuListHeader:after {
        content: "";
        height: 2px;
        background: linear-gradient(to right, #fcdddf, var(--vass-red));
        flex: 1;
        display: block;
}
.MenuListHeader:before{
        width: 3px;
        height: 16px;
        border-radius: 9px;
        background: var(--color-blue);
        content: '';
        position: absolute;
        left: -20px;
        top: 2px;
}
.UIMenuListOfSite_Default {
        background: var(--color-white);
        box-shadow: var(--box-shadow);
        border-radius: var(--rounded);
        font-family: 'Inter', sans-serif;
        padding: var(--padding-box);
        border: var(--default-border);
        margin-bottom: var(--margin-bottom);
        padding-bottom: 10px;
}
.MenuListofSite {
        position: relative;
}
.MenuListofSite .parent {
        margin: 0;
        padding: 0;
        list-style: none;
        display: flex;
        background: var(--color-gray);
        gap: 5px;
}
.MenuListofSite .parent > li {
        flex: 1;
        position: static;
}
.MenuListofSite .parent > li > a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 50px;
        padding: 0 10px;
        text-decoration: none;
        color: #213211;
        font-family: 'Merriweather';
        font-weight: 600;
        font-size: 14px;
        text-transform: uppercase;
        text-align: center;
        transition: all 0.3s;
        background: transparent;
}
.MenuListofSite .parent > li > a {
        position: relative;
}
.MenuListofSite .parent > li:hover > a,
.MenuListofSite .parent > li.active > a {
        background: var(--vass-red);
        color: #fff;
        font-weight: 700;
        border-radius: 0.5rem;
}
.MenuListofSite .parent > li:hover > a:after,
.MenuListofSite .parent > li.active > a:after {
        content: '';
        position: absolute;
        bottom: -8px;
        left: 50%;
        transform: translateX(-50%);
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-top: 8px solid var(--vass-red);
        z-index: 100;
}
.MenuListofSite .parent > li > .columns {
        position: absolute;
        top: 52px;
        left: 0;
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 10px 30px;
        padding: 15px 30px;
        opacity: 0;
        visibility: hidden;
        z-index: 1;
        background: transparent;
        padding-bottom: 0;
}
.MenuListofSite .parent > li.active .columns {
        opacity: 1;
        visibility: visible;
        z-index: 10;
}
.MenuListofSite .parent > li .columns li {
        padding: 8px 0;
        border-bottom: 1px dashed #f1f5f9;
        display: flex;
        align-items: center;
        /* height: 40px; */
}
.MenuListofSite .parent > li .columns li > a {
        text-decoration: none;
        font-size: 16px;
        color: var(--color-black);
        font-weight: 400;
        position: relative;
        padding-left: 20px;
        transition: color 0.2s;
}
.MenuListofSite .parent > li .columns li > a:before {
        content: '\f054';
        /* Icon FontAwesome */
        font-family: 'Font Awesome 5 Pro';
        font-weight: 900;
        font-size: 12px;
        color: #cbd5e1;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
}
.MenuListofSite .parent > li .columns li > a:hover {
        color: var(--vass-red);
}
.MenuListofSite .parent > li .columns li > a:hover:before {
        color: var(--vass-red);
}
@media only screen and (max-width: 768px) {
        .UIMenuListOfSite_Default{
                margin: var(--padding-res);
                margin-top: 0;
                max-width: calc(100% - var(--padding-double));
                margin-bottom: 10px;
                padding: var(--padding-box-mb);
                padding-top: 10px;
        }
        .MenuListofSite {
                min-height: unset;
                height: auto !important;
                border: none;
                box-shadow: none;
                background: transparent;
        }
        .MenuListofSite .parent {
                flex-direction: column;
                background: transparent;
                border: none;
                gap: 10px;
        }
        .MenuListofSite .parent > li {
                position: relative;
        }
        .MenuListofSite .parent > li > a {
                background: #fff;
                /* border: 1px solid #e2e8f0; */
                border-radius: 6px;
                color: #333;
                justify-content: flex-start;
                padding-left: 20px;
        }
        .MenuListofSite .parent > li.active > a {
                background: var(--vass-red);
                color: #fff;
                border-color: var(--vass-red);
        }
        .MenuListofSite .parent > li .columns {
                position: static;
                width: 100%;
                opacity: 1;
                visibility: visible;
                grid-template-columns: 1fr;
                /* border: 1px solid #e2e8f0; */
                border-top: none;
                margin-bottom: 10px;
                /* display: none !important; */
        }
        .MenuListofSite .parent > li.active .columns {
        }
}
@media only screen and (max-width: 768px) {
        .MenuListofSite {
                height: auto !important;
                min-height: unset !important;
                padding: 0 !important;
                margin-top: 20px;
        }
        .MenuListofSite .parent {
                flex-direction: column;
                background: transparent;
                gap: 5px;
        }
        .MenuListofSite .parent > li {
                width: 100% !important;
                display: block !important;
        }
        .MenuListofSite .parent > li > a {
                display: flex;
                align-items: center;
                justify-content: space-between;
                /* Đẩy chữ sang trái */
                height: 48px;
                background: #fff;
                /* border: 1px solid #e2e8f0; */
                border-radius: 6px;
                text-align: left;
                padding: 0 15px;
                font-size: 15px;
                color: #334155;
        }
        .MenuListofSite .parent > li.active > a {
                background: var(--vass-red);
                color: #fff;
                border-color: var(--vass-red);
                border-radius: var(--rounded);
                font-weight: 700;
                padding: 10px !important;
        }
        .MenuListofSite .parent > li .columns {
                position: static !important;
                width: 100% !important;
                grid-template-columns: 1fr !important;
                padding: 10px !important;
                background: #fff !important;
                /* border: 1px solid #e2e8f0 !important; */
                border-top: none !important;
                margin: 0 !important;
                box-sizing: border-box;
                display: none !important;
                border-radius: var(--rounded);
        }
        .MenuListofSite .parent > li.active > .columns {
                display: grid !important;
        }
        .MenuListofSite .parent > li:hover > a:after,
        .MenuListofSite .parent > li.active > a:after {
                display: none !important;
        }
        .MenuListofSite .parent > li .columns li {
                border-bottom: 1px dashed #f1f5f9;
                padding: 10px 0;
        }
        .MenuListofSite .parent > li .columns li:last-child {
                border-bottom: none;
        }
        .MenuListofSite .parent > li .columns li > a {
                font-size: 14px;
                padding-left: 20px !important;
                line-height: 1.4 !important;
                display: block;
        }
}
