﻿/* header style */
.complimentary-products-header {
    color: #ffffff;
    text-align: center;
    box-sizing: border-box;
}
.complimentary-products-header > h1 {
    font-size: 3.5em;
    font-weight: 400;
    margin-bottom: 20px;
}
.complimentary-products-header > p {
    max-width: 670px;
    margin: 0 auto;
    font-size: 1.5em;
}

@media only screen and (max-width: 780px) {
    .complimentary-products-header > h1 {
        font-size: 2em;
    }
    .complimentary-products-header > p {
        font-size: 1em;
    }
}

/* terms folder banners */
.complimentary-products-main-banner {
    background-image: linear-gradient(110deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0) 60%), url('/Images/Products/banner_Complementary_Products.jpg');
    height: 480px;
}

.complimentary-products-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.complimentary-products-container > a {
    position: relative;
    box-shadow: 0 4px 16px 0 rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.2s ease;
    margin: 10px;
}
.complimentary-products-container > a:hover {
    box-shadow: 0 12px 20px 0 rgba(0, 0, 0, 0.12);
}
.complimentary-products-container > a > div {
    
    width: 272px;
    /*height: 350px;*/
    
    /*padding: 10px;*/
    background-color: white;
    border: solid 1px #cccccc;
    box-sizing: border-box;
    
}

.complimentary-products-container > a > div > img {
    display: block;
    border: 0px;
    margin-bottom: 24px;
}
.complimentary-products-container > a > div > span {
    display: block;
    margin-left: 24px;
    margin-right: 24px;
}
.complimentary-products-container > a > div > span:nth-child(2) {
    /*margin-top: 18px;
    color: #4faeca;
    text-transform: uppercase;
    font-size: 0.8em;
    min-height: 35px*/
    display: block;
    font-family: Muli-Bold;
    font-size: 12px;
    color: #545c69;
    min-height: 30px;
    margin-bottom: 8px;
}
.complimentary-products-container > a > div > span:nth-child(3) {
    /*color: #000000;
    text-transform: uppercase;
    font-size: 1.1em;
    font-weight: 400;*/
    display: block;
    font-family: Barlow-Medium;
    font-size: 24px;
    color: #363d42;
    margin-bottom:  24px;
}

/* products navigation page style */
.complimentary-products-section {

}

.complimentary-products-nav {
    width: 100%;
    height: 50px;
    line-height: 50px;
    background-color: #f2f5f7;
    text-align: center;
}

.complimentary-products-nav > span {
    font-size: 1.3em;
    font-weight: 400;
    padding: 0 15px;
}

.complimentary-products-nav > ul {
    display: inline-block;
    list-style-type: none;
}
.complimentary-products-nav > ul > li {
    display: inline;
    
}
.complimentary-products-nav > ul > li + li:before {
    content: ' | ';
    padding: 0 10px;
    font-size: 0.8em;
    height: 0.8em;
    line-height: 0.8em;
}
    .complimentary-products-nav > ul > li > a {
        line-height: 50px;
        height: 50px;
        padding: 10px;
        font-size: .8em;
        font-weight: 400;
        color: #666666;
        text-transform: uppercase;
    }
    .complimentary-products-nav > ul > li > a:hover {
        color: #6b04a8;
    }
