


/*===========================
     05.Category css 
===========================*/

.category-area{

    &.category-bg{
        background-color: #f1f1f1;
    }
}

.single-category{
    margin-top: 30px;
    
    & a{
        display: block;
        background-color: $white;
        padding-bottom: 35px;
        border: 1px solid $border-color;

        @media #{$desktop}{
            padding-bottom: 50px;
            padding-top: 15px;
        }
        
        & img{            
            margin: 0 auto;
        }
        & p{
            font-size: 16px;
            text-transform: capitalize;
            color: $black;
            font-weight: 500;
            @include transition(0.3s);
        }
        
        &:hover{
            & p{
                color: $theme-color;
            }
        }
    }
}

.category-active-2,
.category-active{
    & .slick-arrow{
        position: absolute;
        top: 50%;
        left: -15px;
        @include transform(translateY(-50%));
        z-index: 99;
        opacity: 0;
        visibility: hidden;
        @include transition(0.3s);
        cursor: pointer;

        @media #{$laptop, $lg}{
            left: 10px;
        }
        
        & i{
            font-size: 26px;
            color: $black;
        }
        
        &.next{
            left: auto;
            right: -15px;

            @media #{$laptop, $lg}{
                right: 10px;
            }
        }
    }
    
    &:hover{
        & .slick-arrow{
            visibility: visible;
            opacity: 1;            
        }
    }

    & .slick-dots{
        text-align: center;
        width: 100%;
        margin-top: 10px;

        & li{
            display: inline-block;
            margin: 0 5px;

            & button{
                width: 13px;
                height: 13px;
                border: 0;
                background-color: rgba($black, 0.3);
                border-radius: 50%;
                font-size: 0;
            }

            &.slick-active{
                & button{
                    background-color: $theme-color;
                }
            }
        }
    }
}


