/* Desire Gym Blog Category CSS*/

.custom-category-widget {
    font-family: inherit;
    max-width: 100%;
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 25px;
    margin-bottom: 30px;
}

.custom-category-widget h3 {
    font-size: 16px;
    font-weight: bold;
    text-transform: uppercase;
    font-family: Poppins, sans-serif;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-bottom: 20px;
    color: #222529;
}

.custom-category-widget ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.custom-category-widget ul li {
    position: relative;
    padding: 6px 0 6px 15px !important;
    margin: 0 !important;
    border: none !important;
    line-height: 24px;
    font-family: "Open Sans", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #666 !important;
}

@keyframes arrowMoveLeftRight {
    0% {
        left: 2px;
    }

    50% {
        left: 7px;
    }

    100% {
        left: 2px;
    }
}

.custom-category-widget ul li::before {
    content: '';
    position: absolute;
    left: 2px;
    top: 17px;
    width: 5px;
    height: 5px;
    border-top: 1px solid #888;
    border-right: 1px solid #888;
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

.custom-category-widget ul li:hover::before {
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    animation: arrowMoveLeftRight 0.6s ease-in-out infinite;
}

.custom-category-widget ul.children {
    margin-top: 5px !important;
    margin-left: 15px !important;
}

.custom-category-widget ul.children li {
    padding-top: 8px !important;
    padding-bottom: 8px !important;
}

.custom-category-widget ul li a {
    text-decoration: none !important;
    color: #666 !important;
    font-size: 13px;
    transition: color 0.3s ease;
}

.custom-category-widget ul li a:hover {
    color: #000 !important;
}