﻿.headerNav_buttons {
    width: 100%;
    height: 57px;
    background-color: #f7f7f7;
    margin-bottom: 5px;
}

    .headerNav_buttons ul {
        display: flex;
        margin-left: 20px;
        padding-left: 0px;
    }

    .headerNav_buttons li {
        flex-grow: 1;
        display: block;
        border-right: 1px solid #EEE;
        padding: 0px 0px 0px 4%;
    }        

        .headerNav_buttons li:last-of-type {
            border-right: none;
        }

        .headerNav_buttons li a {
            padding: 12px 0px 12px 43px;
            display: block;
            color: #808080;
            font-size: 12px;
        }

            .headerNav_buttons li a .title {
                color: #4D4D4D;
                font-weight: Bold;
            }

            .headerNav_buttons li a.c2w {
                background: url(/images/home/home_c2w.png) no-repeat left center;
            }

            .headerNav_buttons li a.tradein {
                background: url(/images/home/home_tradein.png) no-repeat left center;
            }

            .headerNav_buttons li a.returns {
                background: url(/images/home/home_returns.png) no-repeat left center;
            }

            .headerNav_buttons li a.freeDelivery {
                background: url(/images/home/home_delivery.png) no-repeat -2px center;
            }

            .headerNav_buttons li a.loyalty {
                background: url(/images/home/home_loyaltyclub.png) no-repeat left center;
            }

            .headerNav_buttons li a.irish {
                background: url(/images/home/home_harp.png) no-repeat left center;
            }

    .headerNav_buttons.mobile {
        display: none;
    }

/*Banner Styles*/
.slick-slide {
    height: inherit !important;
}
.banner-container {
    position: relative;
    width: 100%;
    margin: auto;
    overflow: hidden;
}

    .banner-container .slick-dots {
        padding-left: 0px;
        list-style: none;
        position: absolute;
        text-align: center;
        z-index: 4;
        bottom: 10px;
        width: 100%;
        height: 20px;
    }

        .banner-container .slick-dots li {
            display: inline-block;
        }

            .banner-container .slick-dots li button {
                cursor: pointer;
                margin: 0 4px;
                border-radius: 100%;
                background-color: #fff;
                opacity: 1;
                border: 0px solid var(--background-main);
                width: 10px;
                height: 10px;
                padding: 0;
                color: transparent;
            }

            .banner-container .slick-dots li.slick-active button {
                background-color: var(--orange);
                opacity: 1;
            }

.banner-slide {
    position: relative;
    display: none;
    width: 100%;
    height: 100%;
}

    .banner-slide.active {
        display: block;
        left: -100%; /* Slide out of view */
    }

    .banner-slide img {
        width: 100%;
        height: auto;
    }

.banner-text {
    position: absolute;
    width: 500px;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    color: var(--background-main);
    text-align: center;
}

    .banner-text h2 {
        font-size: 2.8em;
        font-weight: 700;
        text-transform: uppercase;
        margin: 0 0 5px;
        color: var(--background-main);
    }

    .banner-text h4 {
        font-size: 1.8em;
        font-weight: 400;
        margin: 0 0 20px;
        color: var(--background-main);
    }

.banner-button {
    background-color: var(--orange);
    color: var(--background-main);
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

    .banner-button:hover {
        background-color: var(--blue);
        color: var(--background-main);
    }
.bottomBanners {
    width:100%;
}
    .bottomBanners .row > * {
        padding: 5px 5px 0px 0px;
    }
.bottomBanners img {
    width: 100%;
}
.homeTabs {
    margin-top: 10px;
}
@media all and (max-width: 992px) {
    .headerNav_buttons li.mobileHide {
        display: none;
    }
}
@media all and (max-width: 1200px) {
    .headerNav_buttons ul {
        margin-left: 10px;
    }
    .headerNav_buttons li {
        padding: 0px 0px 0px 2%;        
    }
        .headerNav_buttons li a {
            font-size: 11px;
        }
}