.fomeco-list-categories-widget-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.fomeco-list-categories-widget-container ul li:not(:last-child) {
    border-bottom: 1px solid rgba(196,196,196,0.5);
}
.fomeco-list-categories-widget-container ul ul li {
    border-top: 1px solid rgba(196,196,196,0.5);
}
.fomeco-list-categories-widget-container ul ul li:first-child {
    border-bottom: 0;
}
.fomeco-list-categories-widget-container ul ul .cat-item a {
    padding-left: 40px;
}
.fomeco-list-categories-widget-container ul ul ul .cat-item a {
    padding-left: 60px;
}
.fomeco-list-categories-widget-container .cat-item a {
    display: block;
}
.fomeco-list-categories-widget-container .fomeco-list-categories-mobile-wrapper {
    display: none;
}
.fomeco-list-categories-widget-container .fomeco-categories-popup {
    display: block;
    visibility: hidden;
    opacity: 0;
    padding: 40px 24px;
    position: fixed;
    max-height: 80vh;
    min-height: 344px;
    background: #fff;
    z-index: 999;
    left: 0;
    right: 0;
    bottom: -100vh;
    transition: all .5s;
}
.fomeco-list-categories-widget-container .fomeco-categories-popup.open {
    visibility: visible;
    opacity: 1;
    bottom: 0;
}
.fomeco-list-categories-widget-container .fomeco-categories-popup .fomeco-list-categories.is-mobile {
    border: none;
}
.fomeco-list-categories-widget-container .fomeco-categories-popup .fomeco-list-categories.is-mobile .cat-item a {
    padding: 8px 0 10px;
    font-weight: 400;
}
.fomeco-list-categories-widget-container .fomeco-list-categories.is-mobile li:not(:first-child) {
    margin-top: 4px;
}
.fomeco-list-categories-widget-container .fomeco-list-categories.is-mobile .cat-item a:hover {
    background: #fff;
    color: var(--e-global-color-primary);
}
.fomeco-list-categories-widget-container .fomeco-list-categories.is-mobile .cat-item.current-cat > a {
    background: #fff;
    color: var(--e-global-color-primary);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.fomeco-list-categories-widget-container .fomeco-list-categories.is-mobile .cat-item.current-cat > a:after {
    content: '';
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(https://flatsomix.com/fomeco/wp-content/uploads/2023/09/tick-circle.svg);
    background-repeat: no-repeat;
    background-position: center;
}
.fomeco-list-categories-widget-container .fomeco-popup-label {
    font-family: "Bai Jamjuree", Sans-serif;
    font-size: 18px;
    font-weight: 600;
    line-height: 22px;
    margin-bottom: 16px;
}
.fomeco-list-categories-widget-container .mobile-close-button {
    position: absolute;
    top: 43px;
    right: 24px;
}
.fomeco-list-categories-widget-container .mobile-close-button svg {
    display: block;
}
.fomeco-list-categories-widget-container .mobile-toggle-button {
    font-family: "Bai Jamjuree", Sans-serif;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 0;
    padding: 12px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    outline: none;
    box-shadow: none;
}
.fomeco-list-categories-widget-container .mobile-toggle-button__icon svg {
    display: block;
}
.fomeco-list-categories-widget-container .mobile-toggle-button__icon svg path {
    fill: #fff;
}
body.fomeco-categories-popup-showing {
    overflow: hidden;
}
body.fomeco-categories-popup-showing:before {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 998;
    background: rgba(0, 0, 0, 0.70);
}

@media (max-width: 767px) {
    .fomeco-list-categories-widget-container .fomeco-list-categories:not(.is-mobile) {
        display: none;
    }
    .fomeco-list-categories-widget-container .fomeco-list-categories-mobile-wrapper {
        display: block;
    }
}