
.UISubCategory_Default .sub-category {
    padding: 0;
    box-shadow: 0 4px 10px rgb(52 52 52 / 10%);
    border-radius: 8px;
}
.UISubCategory_Default .sub-category .container{
    padding: 0;
}
.UISubCategory_Default .title {
    color: white;
    width: 100%;
    background: #3d91db;
    height: 35px;
}

.UISubCategory_Default .title a {
    text-decoration: none;
    color: white;
    display: inline-block;
    font: bold 14px / 35px arial;
    padding: 0px 10px 0px 10px;
    text-transform: uppercase;
}

.UISubCategory_Default .title a:hover {
    text-decoration: underline;
}

.UISubCategory_Default .nav {
    list-style: none;
    padding: 18px 10px;
    margin: 0;
}

.UISubCategory_Default .nav li {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    width: 100%;
}

.UISubCategory_Default .nav li:last-child {
    margin-bottom: 0;
}

.UISubCategory_Default .nav li::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    background-color: #da0f00;
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
}

.UISubCategory_Default .nav .item {
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: color 0.2s;
    flex: 1;
    font-weight: bold;
}

.UISubCategory_Default .nav .item:hover {
    color: #3d91db;
}

.UISubCategory_Default .nav img {
    display: none;
}
@media (max-width: 768px){
.UISubCategory_Default .sub-category {
    width: 100vw;
    padding: 10px;
    box-shadow: none;
}

   .UISubCategory_Default .sub-category .container {
            box-shadow: 0 4px 10px rgb(52 52 52 / 10%);
    border-radius: 8px;
    }
}