

/*===========================
   19.Shop Page css 
===========================*/


.product-col{
    @media #{$desktop}{
        max-width: 25%;
    }
}


.shop-header{
    padding: 5px 10px 15px;
	background: #f2f2f2;
    margin-top: 30px;
    
    & .shop-header-left{
        & .shop-header-icon{
            padding-top: 10px;
            padding-right: 10px;
            
            @media #{$lg}{
                padding-right: 0;
            }
            @media #{$xs}{
                padding-right: 0;
            }
            
            & .nav{
                & .nav-item{
                    & a{
                        line-height: 42px;
                        height: 42px;
                        width: 42px;
                        margin-right: 15px;
                        cursor: pointer;
                        color: $white;
                        background: #c2c2c2;
                        border-radius: 100%;
                        text-align: center;
                        @include transition(0.3s);
                        font-size: 24px;

                        @media #{$lg}{
                            margin-right: 10px;
                            line-height: 37px;
                            height: 37px;
                            width: 37px;
                        }
                        
                        @media #{$xs}{
                            width: 37px;
                            height: 37px;
                            line-height: 37px;
                            font-size: 20px;
                        } 
                        
                        &:hover,
                        &.active{
                            background-color: #000;
                        }
                    }
                }
            }
        }
        
        & .shop-header-message{
            padding-top: 10px;
            
            & p{
                line-height: 20px;
                font-size: 14px;
                padding: 5px;
                margin: 0;
                float: left;
                color: $body-color;
                font-weight: 400;
                text-transform: capitalize;
            }
        }
    }
    & .shop-header-right{
        & .shop-header-select{
            padding-top: 10px;
            
            & + .shop-header-select{
                margin-left: 20px;
                
                @media #{$lg}{
                    margin-left: 6px;
                }
                @media #{$md}{
                    margin-left: 15px;
                }
                @media #{$xs}{
                    margin-left: 12px;
                }
            }
                        
            & .select-title{
                line-height: 20px;
                font-size: 14px;
                padding: 5px;
                margin: 0;
                float: left;
                color: $body-color;
                font-weight: 400;
                text-transform: capitalize;
                
                @media #{$md}{
                    padding: 5px 0;
                }
                @media #{$xs}{
                    padding: 5px 0;
                    margin-left: 0;
                    font-size: 13px;
                }
                @media #{$sm}{
                    font-size: 14px;
                }
            }
            
            & select{
                border: 0;
                line-height: 20px;
                font-size: 14px;
                padding: 5px;
                margin: 0;
                float: left;
                color: $body-color;
                font-weight: 400;
                text-transform: capitalize;
                margin-left: 10px;

                @media #{$xs}{
                    font-size: 13px;
                }
                @media #{$sm}{
                    font-size: 14px;
                }
            }
        }
    }
}














