﻿/*Title*/
.legend-filter {
    display: flex;
    align-items: center;
    cursor: pointer;
    border-radius: 3px;
    padding: 4px;
    box-shadow: 0px 0px 4px lightgrey;
}

    .legend-filter img {
        display: block;
        width: 30px;
        /*height:19px;*/
        /*margin-right:5px;*/
    }

    .legend-filter span {
        display: block;
        font-size: 12px;
        font-weight: 600;
        text-transform: uppercase;
        line-height: 1;
    }

.filter-actived {
    /*background-color: red;*/
    background-color: #B68130;
}

.legend-line {
    margin: 0 10px 0 20px;
}

.fl-img {
    background-image: url(../images/filter.png);
    background-position: center;
    background-size: contain;
    height: 19px;
    width: 19px;
    margin-right: 5px;
    transition: 300ms ease;
}

    .fl-img.white {
        background-image: url(../images/filterWhite.png);
    }
/*Title-----END*/

/*Brands Listing*/
.bl-section {
    padding: 50px 0;
}

    .bl-section a {
        color: #000;
    }

.bl-wrap {
    padding: 20px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 5px;
    margin-bottom: 30px;
}

.bl-img-wrap {
    margin-bottom: 25px;
}

.bl-img {
    height: 177px;
    border-radius: 5px;
    background-size: contain;
}

.bl-title {
    font-size: 18px;
    color: #000;
    font-weight: 900;
    font-family: 'Poppins';
    /*line-height:1;*/
    margin-bottom: 5px;
}

.bl-type {
    font-size: 10px;
    margin-bottom: 0;
}

.bl-text-wrap {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.bl-text {
    margin-right: 10px;
    min-height: 70px;
}

.bl-icon-wrap {
    display: flex;
}

.bl-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
    transition: 300ms ease;
}

    .bl-icon:hover {
        background-color: #e31c17;
        border: 1px solid #e31c17;
    }

    .bl-icon:nth-child(1) {
        margin-right: 8px;
    }

    .bl-icon img {
        width: 18px;
    }

.bl-loc {
    width: 15px;
    height: 19px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/location.png);
    transition: 300ms ease;
}

.bl-icon:hover .bl-loc {
    background-image: url(../images/locationWhite.png);
}

.bl-call {
    width: 18px;
    height: 18px;
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url(../images/call.png);
    transition: 300ms ease;
}

.bl-icon:hover .bl-call {
    background-image: url(../images/callWhite.png);
}

.bl-hover {
    position: absolute;
    width: 100%;
    top: -65px;
    padding-bottom: 25px;
    left: 0;
    opacity: 0;
    pointer-events: none;
    transition: 300ms ease;
}

.bl-bubble {
    position: relative;
    height: 40px;
    width: 100%;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #e31c17;
}

.bl-icon:hover .bl-hover {
    opacity: 1;
    pointer-events: initial;
}

.bl-bubble a {
    font-family: 'Varela Round', sans-serif;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}

.bl-bubble span {
    font-family: 'Varela Round', sans-serif;
    font-size: 12px;
    color: #fff;
    margin: 0 8px;
}

.bl-bubble.arrow-one:after, .bl-bubble.arrow-two:after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -11px;
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid #e31c17;
}

.bl-bubble.arrow-one:after {
    right: 55px;
}

.bl-bubble.arrow-two:after {
    right: 7px;
}
/*Brands Listing-----END*/

/*Filter Popup*/
.pu-content.pu-desktop {
    padding: 50px 30px 0 30px;
    width: 100%;
    max-width: 1366px;
    max-height: 80vh;
    position: relative;
}

.pu-content.pu-mobile {
    display: none;
}

.pu-card {
    position: relative;
    padding: 0;
    border-radius: 5px;
}

.fl-btn-wrap {
    display: inline-block;
    margin-right: 10px;
    margin-bottom: 10px;
}

.fl-type-wrap {
    margin-bottom: 40px;
}

.fl-title {
    font-size: 18px;
    font-weight: 600;
    color: #000;
    font-family: 'Varela Round', sans-serif;
    text-transform: uppercase;
    line-height: 1;
    margin-bottom: 18px;
    padding-left: 20px;
}

.fl-btn {
    display: inline-block;
    padding: 11px 22px;
    line-height: 1;
    font-size: 14px;
    font-family: 'Varela Round', sans-serif;
    color: #000;
    background: #fff;
    border-radius: 50px;
    box-shadow: inset 0 0 25px 0 rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(0, 0, 0, 0.2);
}

    .fl-btn.selected {
        background: linear-gradient(to right,#e31c17,#c9100c);
        box-shadow: none;
        border: solid 1px #e31c17;
        color: #fff;
    }

.fl-alphabets {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.fl-alpha {
    color: #000;
    font-size: 14px;
    line-height: 1;
}

    .fl-alpha.selected {
        color: #e31c17;
    }

.fs-wrap {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-top: 1px solid rgba(0,0,0,0.2);
}

.fs-btn {
    padding: 18px 30px;
}

.fs-clear {
    font-size: 14px;
    font-family: 'Varela Round', sans-serif;
    color: #e31c17;
    font-weight: 600;
    text-transform: uppercase;
    display: inline-block;
}




/*Filter Popup-----END*/


/*Filter Popup--New-----START*/

.B-Title h1 {
    font-size: 45px;
    text-align: center;
    color: white;
}

.td-slider-wrap {
    position: relative;
}

.Banner-Filter-desktop {
    position: absolute;
    bottom: 18%;
    left: 0;
    width: 100%;
    display: block;
}

.Caregory-wrap {
    display: flex;
}

.search-txt {
    width: 100%;
    padding: 12px 15px;
    border: 0;
    border-radius: 3px;
}


    .search-txt:focus, input:focus {
        outline: none;
    }


.textbox {
    position: relative;
}

.Divdbtn {
    position: absolute;
    right: 6px;
    bottom: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .Divdbtn img {
        width: 16px;
        margin-right: 10px;
        cursor: pointer;
    }




.Search-Btn:hover {
    color: white;
}

.Clear-Btn:hover {
    color: white;
}

.Clear-Btn {
    color: white;
    background-color: #e31c17;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    padding: 11px 30px;
    border-radius: 6px;
    letter-spacing: 1px;
}

.Search-Btn {
    color: white;
    /*background-color: #dcc06e;*/
    background-color: #B68130;
    border: none;
    text-transform: uppercase;
    font-size: 14px;
    text-align: center;
    padding: 11px 30px;
    border-radius: 6px;
    letter-spacing: 1px;
}

::placeholder {
    color: lightgray;
    font-weight: 500;
}

.Search-Btn:focus, input:focus {
    outline: none;
}

.b-cat {
    background-color: white;
    margin-right: 2px;
    padding: 10px 0px;
    border-radius: 3px;
    text-align: center;
    width: 100%;
}

    .b-cat a {
        background-color: white;
        text-transform: uppercase;
        color: black;
        font-size: 12px;
        font-weight: 500;
    }

        .b-cat a:hover {
            color: red;
        }

.actived {
    color: red !important;
}

.Caregory-wrap {
    margin-top: 10px;
}

.legend-title {
    font-size: 27px;
    line-height: 15px;
    font-family: 'Poppins';
    font-weight: normal;
}

.c-More img {
    width: 20px;
}


/*Brand Filter Mobile design--[START]*/

.Banner-Filter-Phone {
    position: absolute;
    bottom: 18%;
    left: 0;
    width: 100%;
    display: none;
}

.textbox-Phone {
    position: relative;
}

.search-txt-Phone {
    width: 100%;
    padding: 12px 15px;
    border: 0;
    border-radius: 3px;
}

.moreBtn {
    background-color: white;
    padding: 13px 5px;
    width: 100%;
    display: flex;
    border-radius: 5px;
    justify-content: center;
    align-items: center;
}

    .moreBtn img {
        width: 20px;
    }

    .moreBtn a {
        font-size: 15px;
        font-weight: 600;
        padding-left: 5px;
        text-transform: uppercase;
    }

.p-l-0 {
    padding-left: 0;
}

.p-r-0 {
    padding-right: 2px;
}

.Cat-sec-phone {
    margin-top: 10px;
}

.divphonebtn {
    position: absolute;
    top: 11px;
    right: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.clearimg {
    margin-right: 10px;
    width: 15px;
    cursor: pointer;
}

.searchImg {
    width: 27px;
    cursor: pointer;
}

.All-phone {
    background-color: white;
    margin-right: 2px;
    padding: 10px 0px;
    border-radius: 3px;
    text-align: center;
    width: 100%;
}

    .All-phone a {
        background-color: white;
        text-transform: uppercase;
        color: black;
        font-size: 14px;
        font-weight: 500;
    }




/*Brand Filter Mobile design--[END]*/

/*Filter Popup-----END*/



/*=====Media Queries=====*/

/*Most of the Smartphones Mobiles (Portrait)*/
@media (min-width: 320px) and (max-width: 480px) {


    .Banner-Filter-Phone {
        display: block;
    }

    .Banner-Filter-desktop {
        display: none;
    }

    /*Title*/
    .legend-va {
        display: block;
    }

    .legend-va-mobile {
        display: none;
    }

    .title-wrap {
        position: relative;
        justify-content: flex-start;
        margin-bottom: 35px;
    }

    .legend-title {
        font-size: 18px;
        padding: 0;
        background-color: transparent;
        line-height: 10px;
    }

    .legend-line {
        position: relative;
        width: 100%;
        left: auto;
        bottom: auto;
        margin: 0 5px 0 10px;
        z-index: -1;
    }

    .legend-filter img {
        width: 25px;
        /*height:12px;*/
    }

    .legend-filter span {
        font-size: 10px;
    }
    /*Title-----END*/

    /*Brand Listing*/
    .bl-wrap {
        display: flex;
        padding: 0 0 30px 0;
        border: none;
        border-bottom: 1px solid rgba(0,0,0,0.2);
        border-radius: 0;
    }

    .bl-img-wrap {
        margin-bottom: 0;
    }

    .bl-img {
        width: 100px;
        height: 100px;
        margin-right: 20px;
    }

    .bl-text-wrap {
        display: block;
    }

    .bl-text {
        margin-right: 0;
        min-height: initial;
        width: 100%;
        margin-bottom: 10px;
    }

    .bl-title {
        font-size: 20px;
        line-height: 1.75rem;
    }

    .bl-type {
        font-size: 12px;
    }

    .bl-hover {
        display: none;
    }
    /*Brand Listing-----END*/
}

/*Low Resolution Tablets, Mobiles (Landscape)*/
@media (min-width: 481px) and (max-width: 767px) {
    .Banner-Filter-Phone {
        display: block;
    }

    .Banner-Filter-desktop {
        display: none;
    }
}

/*Tablets, Ipads (portrait)*/
@media (min-width: 768px) and (max-width: 1023px) {
    .mobile-banner {
        display: block;
    }

    .Banner-Filter-Phone {
        display: none;
    }

    .Banner-Filter-desktop {
        display: block;
    }


    /*Brand listing*/
    .bl-img {
        height: 184px;
    }
    /*.bl-icon {
        width:30px;
        height:30px;
    }
    .bl-call {
        width:14px;
        height:14px;
    }
    .bl-loc {
        width: 13px;
        height: 17px;
    }*/
    .bl-title {
        font-size: 22px;
    }

    .bl-bubble.arrow-one:after {
        right: 40px;
    }

    .bl-bubble.arrow-two:after {
        right: 3px;
    }
    /*Brand listing-----END*/
}

/*Tablets, Ipads (landscape)*/
@media (min-width: 850px) and (max-width: 1024px) and (orientation: landscape) {
    /*Brand listing*/
    .bl-img {
        height: 158px;
    }

    .bl-icon {
        width: 30px;
        height: 30px;
    }

    .bl-call {
        width: 14px;
        height: 14px;
    }

    .bl-loc {
        width: 13px;
        height: 17px;
    }

    .bl-title {
        font-size: 20px;
    }

    .bl-bubble.arrow-one:after {
        right: 40px;
    }

    .bl-bubble.arrow-two:after {
        right: 3px;
    }
    /*Brand listing-----END*/
}

/*Ipad Pro (portrait)*/
@media (min-width: 1024px) and (max-width: 1050px) and (orientation: portrait) {
    /*Brand listing*/
    .bl-img {
        height: 158px;
    }

    .bl-icon {
        width: 30px;
        height: 30px;
    }

    .bl-call {
        width: 14px;
        height: 14px;
    }

    .bl-loc {
        width: 13px;
        height: 17px;
    }

    .bl-title {
        font-size: 20px;
    }

    .bl-bubble.arrow-one:after {
        right: 40px;
    }

    .bl-bubble.arrow-two:after {
        right: 3px;
    }
    /*Brand listing-----END*/
}

/*1152×648, 1280×720, 1366×768,*/
@media (min-width: 1152px) and (max-width: 1599px) {
    /*Brand listing*/
    .bl-img {
        height: 136px;
    }

    .bl-icon {
        width: 30px;
        height: 30px;
    }

    .bl-call {
        width: 14px;
        height: 14px;
    }

    .bl-loc {
        width: 13px;
        height: 17px;
    }

    .bl-title {
        font-size: 18px;
    }

    .bl-text {
        min-height: 65px;
    }

    .bl-bubble.arrow-one:after {
        right: 40px;
    }

    .bl-bubble.arrow-two:after {
        right: 3px;
    }
    /*Brand listing-----END*/
}

/*1600x800*/
@media (min-width: 1600px) and (max-width: 1919px) {
    /*Brand listing*/
    .bl-img {
        height: 136px;
    }

    .bl-icon {
        width: 30px;
        height: 30px;
    }

    .bl-call {
        width: 14px;
        height: 14px;
    }

    .bl-loc {
        width: 13px;
        height: 17px;
    }

    .bl-title {
        font-size: 18px;
    }

    .bl-text {
        min-height: 56px;
    }

    .bl-bubble.arrow-one:after {
        right: 40px;
    }

    .bl-bubble.arrow-two:after {
        right: 3px;
    }
    /*Brand listing-----END*/
}

/*HD Displays 1920x1080*/
@media (min-width: 1920px) {
}
