

/*===========================
   18.Product Sidebar css 
===========================*/

.shop-sidebar{
    & .shop-sidebar-title{
        font-size: 16px;
        font-weight: 500;
        color: #000;
        position: relative;
        padding-bottom: 15px;
        text-transform: uppercase;
        letter-spacing: 3px;
        
        &::before{
            position: absolute;
            content: '';
            background-color: $theme-color;
            width: 50px;
            height: 1px;
            bottom: 0;
            left: 0;
        }
    }
}

.shop-sidebar-widget{
    border: 2px solid $border-color;
    padding: 40px 30px;
    
    @media #{$lg}{
        padding: 30px 20px;
    }
    
    & .accordion{
        margin-top: 40px;
        
        & .card{
            margin: 0;
            padding: 0;
            border: 0;
            border-radius: 0;
            
            & .card-header{
                padding: 0;
                border: 0;
                background: none;
                
                & a{
                    font-weight: 400;
                    color: $body-color;
                    display: block;
                    font-size: 16px;
                    text-transform: capitalize;
                    line-height: 35px;
                    position: relative;
                    
                    @media #{$lg}{
                        font-size: 14px;
                    }
                    
                    &::before{
                        position: absolute;
                        top: 0;
                        right: 0;
                        content: "\f3d8";
                        font-family: "Ionicons";
                    }
                    
                    &.collapsed{
                        &::before{
                            content: "\f3d0";
                        }
                    }
                }
            }
            & .card-body{
                padding: 0;
                
                & .category-list{
                    & li{
                        & a{
                            font-size: 16px;
                            line-height: 35px;
                            margin: 0;
                            padding: 0 10px;
                            display: block;
                            color: $body-color;
                            @include transition(0.3s);
                            
                            @media #{$lg}{
                                font-size: 14px;
                            }
                            
                            &:hover{
                                color: $theme-color;
                            }
                        }
                    }
                }
            }
        }
    }
    
    & .color-list{
        margin-top: 40px;
        
        & li{
            & a{
                font-weight: 400;
                color: $body-color;
                display: block;
                font-size: 16px;
                text-transform: capitalize;
                line-height: 35px;
                position: relative;
                
                @media #{$lg}{
                    font-size: 14px;
                }
                
                & span{
                    @include box-shadow (2px 2px 4px 0 rgba(0,0,0,.2));
                    width: 15px;
                    height: 15px;
                    margin-right: 8px;
                    
                    &.color-gray{
                        background-color: #AAB2BD;
                    }
                    &.color-white{
                        background-color: #fff;
                    }
                    &.color-block{
                        background-color: #000;
                    }
                    &.color-Camel{
                        background-color: #C19A6B;
                    }
                    &.color-orange{
                        background-color: #F39C11;
                    }
                }
            }
        }
    }
    
    & .compositions-list{
        margin-top: 40px;
        
        & li{
            & a{
                font-weight: 400;
                color: $body-color;
                display: block;
                font-size: 16px;
                text-transform: capitalize;
                line-height: 35px;
                position: relative;
                
                @media #{$lg}{
                    font-size: 14px;
                }
            }
        }
    }
    
    & .price-range{
        margin-top: 40px;
        
        & input{
            font-size: 16px;
            color: #000;
            border: 0;
            background: none;
            
            @media #{$lg}{
                font-size: 14px;
            }
        }
        
        & #slider-range{
            width: 100%;
            height: 4px;
            border: none;
            margin-top: 20px;
            background: #cccccc;
            
            & .ui-widget-header{
                background: $theme-color;
            }
            
            & .ui-slider-handle {
                top: -9px;
                width: 20px;
                height: 20px;
                border-width: 6px;
                background: $white;
                border-radius: 100%;
                box-shadow: none;
                border-color: $theme-color;
                cursor: pointer;
            }
        }
    }
    
    & .size-list{
        margin-top: 40px;
        
        & li{
            & a{
                font-weight: 400;
                color: $body-color;
                display: block;
                font-size: 16px;
                text-transform: capitalize;
                line-height: 35px;
                position: relative;
                
                @media #{$lg}{
                    font-size: 14px;
                }
            }
        }
    }
}




