﻿/*  CSS of Shop Page */

/* Sections  */


/* Section Banner */
#banner-section {
    /*height: 80px;*/
    background-image: url(../../images/shop/shop-section-upper-image.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}


    #banner-section .hdg-2 {
        bottom: 56px;
        right: 75px;
    }


/* Cagtegory Links */
.category-links:hover {
    font-weight: 500;
    color: #fd7f2f;
}


.category-links:active {
    font-weight: 400;
    color: #c23535;
}


#filterBtnBlock {
    z-index: 99999;
    position: fixed;
    left: -29px;
}



#shopFilterBtn {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    letter-spacing: 5px;
    color: #000000;
    font-size: 1.5rem;
    font-family: "Bebas Neue";
    font-weight: 400;
    border-radius: unset;
    background-color: #ffffff;
    border: solid 1px #000000;
}



    /* Inside the botton property */

    #shopFilterBtn:hover {
        color: #ffffff;
        background-color: #000000;
    }
/* applies to x-small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
    #shopFilterBtn {
        font-size: 1.5rem;
    }
}




/* Filter btn function*/

.filter-sidebar {
    position: absolute;
    width: 18rem;
    left: -18rem;
    background-color: #ffffff;
    z-index: 3;
    overflow: scroll;
    height: 100vh;
    transition: left .8s ease-in-out;
}

    .filter-sidebar #flexCheckDefault {
        height: 1.5rem;
    }
/*applies to medium devices (tablets, less than 992px)*/
@media (max-width: 991.98px) {
    .filter-sidebar {
        border: solid 1px #000000;
        background-color: #808080;
    }
}



.filter-sidebar.expanded {
    left: 0 !important;
}

/*applies to x-small devices (portrait phones, less than 576px)*/
@media (max-width: 575.98px) {
    .filter-sidebar.expanded {
        width: 100vw;
    }
}

#productsBlock {
    margin-left: 0;
    transition: margin-left .8s ease-in-out, width .8s ease-in-out;
    width: 100%;
}

    #productsBlock.collapsed {
        margin-left: 18rem !important;
    }

/*Large devices (desktops, 992px and up)*/
@media (max-width: 991.98px) {
    #productsBlock.collapsed {
        margin-left: 0 !important;
    }
}

/* applies to medium devices (tablets, less than 992px) */

@media (min-width: 992px) {
    #productsBlock.collapsed {
        width: calc(100% - 18rem);
    }
}


/* End Of Sections  */
