﻿html {
    font-size: 62.5%;
    -webkit-font-smoothing: antialised;
    -moz-osx-font-smoothing: greyscale;
}

body {
    font-size: 1.6rem;
    line-height: 2rem;
    font-family: 'Noto Sans Display';
    font-weight: 400;
    color: #000000;
    background-color: #ffffff;
}

html.nav-open {
    overflow: hidden;
}

body.nav-open {
    overflow: visible;
    height: 100%;
}

@media (min-width:768px) {
    html.nav-open {
        overflow: visible;
    }

    body.nav-open {
        height: auto;
    }
}

section {
    padding: 40px 0;
}

h1, h2, h3 {
    color: #212121;
    font-weight: bold;
}

h1, h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
}

a {
    color: #0056b3;
    text-decoration: none;
}

    a.read-more, a.read-more1 {
        display: block;
        font-weight: bold;
        color: #000;
        text-decoration: none;
    }

        a.read-more:after, .submit-inner:after {
            content: "→";
            display: inline-block;
            color: #529a37;
            padding-left: 20px;
        }

:focus {
    outline-color: transparent;
    outline-style: none;
}

.btn-primary {
    font-weight: 700;
    font-size: 1.6rem;
    line-height: 3.2rem;
    background-color: #72c358;
    color: #000;
    display: block;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
}

    .btn-primary:hover {
        color: #ffffff;
        background-color: #55565a;
        text-decoration: none;
    }

img {
    max-width: 100%;
}

.video-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    width: 100%;
}

    .video-responsive iframe {
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        position: absolute;
    }

/*********************************
           page cover
*********************************/

#cover-page {
    height: 100vh;
    width: 100vw;
    z-index: 4000;
    background-color: rgba(85,86,90,.8);
    visibility: hidden;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 3000;
    opacity: 0;
    -webkit-transition: all .75s; /* Safari */
    transition: all .75s;
}

.nav-open #cover-page {
    visibility: visible;
    opacity: 1;
}


/*********************************
            HEADER
*********************************/

header {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    height: 80px;
    width: 100%;
    z-index: 5000;
    background-color: #fff;
}

nav {
    display: block;
    margin-right: auto;
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ebebeb;
    border-top: 15px solid #69be27;
    border-bottom: 5px solid #69be27;
    opacity: 0;
    transition: opacity .3s ease;
    z-index: 5000;
}

    nav.open {
        opacity: 1;
        left: 0;
    }

.nav-container {
    position: absolute;
    top: 0;
    left: 0;
    padding: 0 50px;
    width: 100%;
    height: calc(100vh - 200px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

header .logo-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    text-align: right;
}

    header .logo-container a {
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 80px;
        text-decoration: none;
        color: #282828 !important;
    }
        header .logo-container a:hover {
            text-decoration: underline !important;
            color: #0056b3 !important;
        }

    header .logo-container span {
        display: block;
        font-size: 16px;
        color: #fff;
        text-align: right;
    }

header a.greencast-logo {
    padding-right: 20px;
}

    header a.greencast-logo img {
        width: 150px;
        height: 35px;
    }

header a.syngenta-logo {
    background: #006c36;
    padding: 0 15px;
}

    header a.syngenta-logo img {
        width: 75px;
        height: 21px;
    }

header .hamburger-container {
    height: 80px;
    width: 80px;
    background: none;
    position: absolute;
    top: 0;
    left: 0;
}

header .mobile-hamburger {
    position: absolute;
    top: 25px;
    left: 25px;
    height: 30px;
    width: 30px;
    cursor: pointer;
}

    header .mobile-hamburger svg {
        width: 30px;
        height: 3px;
        fill: #006c36;
        position: absolute;
        opacity: 1;
        -webkit-transition: all .5s;
        transition: all .5s;
    }

        header .mobile-hamburger svg.top {
            top: 5px;
            left: 0;
        }

        header .mobile-hamburger svg.middle {
            top: 15px;
            left: 0;
        }

        header .mobile-hamburger svg.bottom {
            top: 25px;
            left: 0;
        }

.nav-open header .mobile-hamburger svg.top {
    transform: rotate(45deg);
    top: 10px;
}

.nav-open header .mobile-hamburger svg.middle {
    opacity: 0;
}

.nav-open header .mobile-hamburger svg.bottom {
    transform: rotate(-45deg);
    top: 10px;
}

ul.main-nav {
    display: block;
    padding: 0;
    margin: 0;
    list-style: none;
}

    ul.main-nav li {
        padding: 25px 0;
        border-top: 1px solid #fff;
    }

        ul.main-nav li:first-child {
            border-top: none;
        }

        ul.main-nav li a {
            font-size: 2.2rem;
            color: #000;
            text-decoration: none;
        }

@media (min-width:576px) {
    nav {
        width: 90%;
        max-width: 500px;
    }

    header .logo-container {
        padding: 0;
    }

        header .logo-container a {
            height: 80px;
        }

    header a.greencast-logo img {
        width: 204px;
        height: 47px;
    }

    header a.syngenta-logo {
        padding: 0 20px;
    }

        header a.syngenta-logo img {
            width: 101px;
            height: 28px;
        }
}

@media (min-width:768px) {
    .nav-container {
        height: calc(100vh - 100px);
    }
}

/*********************************
      page-content global
*********************************/

#page-content {
    margin-top: 80px;
}

/*********************************
      hero
*********************************/

.hero-container {
    width: 100%;
    height: 300px;
    background-image: url(../images/homepage-hero.jpg);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    position: relative;
}

    .hero-container.calculators {
        background-image: url(../images/calculators-hero.jpg);
    }

    .hero-container.active-ingredients {
        background-image: url(../images/active-ingredients-hero.jpg);
    }

    .hero-container.fairway {
        background-image: url(../images/fairway-hero.jpg);
    }

    .hero-container.products-calculator {
        background-image: url(../images/products-calculator-hero.jpg);
    }

    .hero-container.contact {
        background-image: url(../images/contact-hero.jpg);
    }

    .hero-container.weather {
        background-image: url(../images/weather-hero.jpg);
    }

    .hero-container.tech-bulletins {
        background-image: url(../images/bulletins-hero.jpg);
    }

    .hero-container.product-landing {
        background-image: url(../images/product-landing-hero.jpg);
    }

    .hero-container.greenpartners {
        background-image: url(../images/greenpartners-hero.jpg);
    }

@media (min-width:768px) {
    .hero-container {
        height: 300px;
    }
}

@media (min-width:1200px) {
    .hero-container {
        height: 400px;
    }
}

/*********************************
      tiles
*********************************/
#nav-tiles {
    margin-bottom: -120px;
}

.tile-container {
    display: -ms-grid;
    display: grid;
    position: relative;
    -ms-grid-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
    grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
    -ms-grid-rows: 180px 180px 180px 180px 180px;
    grid-template-rows: 180px 180px 180px 180px 180px;
    top: -120px;
}

    .tile-container:before, .tile-container:after {
        content: "";
        display: block;
        width: 100%;
        height: 10px;
        background: #69be27;
        position: absolute;
    }

    .tile-container:before {
        top: -10px;
        /*left: -10px;*/
    }

    .tile-container:after {
        bottom: -10px;
        right: -10px;
    }

    .tile-container .lang-switcher {
        position: absolute;
        top: 10px;
        right: 10px;
    }

        .tile-container .lang-switcher > div {
            display: none;
            cursor: pointer;
        }

        /*.tile-container .lang-switcher div.fr {
    display: block;
}*/

        .tile-container .lang-switcher div img {
            width: 26px !important;
            margin-right: 0 !important;
        }

/*.fr-lang {
    display: none;
}*/

.tile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    background-color: #ebebeb;
    color: #282828;
    padding: 20px;
    font-size: 24px;
    font-size: 1.5rem;
    text-align: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-flow: column;
    flex-flow: column;
    position: relative;
}

    .tile[data-url] {
        cursor: pointer;
    }

    .tile img {
        display: block;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .tile:first-child {
        background: #fff;
        text-align: left;
    }

        .tile:first-child .col-12 img, .tile:first-child .col-12 div {
            display: inline-block;
            vertical-align: top;
        }

        .tile:first-child .col-12 div {
            padding-left: 30px;
        }

    .tile.art-of-application .col-12 div {
        padding-left: 0;
    }

        .tile.art-of-application .col-12 div:first-child {
            display: flex;
            align-items: center;
        }

            .tile.art-of-application .col-12 div:first-child span {
                margin-left: 15px;
            }

    .tile span.tile-heading {
        display: block;
        font-size: 2.0rem;
        font-weight: 700;
        line-height: 2.0rem;
        color: #69be27;
        margin-bottom: 10px;
    }

    .tile.weather {
        background: #fff;
        -ms-grid-column-span: 2;
        -ms-grid-column: 1;
        grid-column: 1 / span 2;
        -ms-grid-row-span: 2;
        grid-row: 1 / 3;
        margin: 0 5px 5px 0;
        padding: 10px;
        align-items: unset;
        text-align: center;
    }

        .tile.weather img {
            width: 60px;
            display: inline-block;
            margin-bottom: 10px;
        }

        .tile.weather button {
            font-style: italic;
            background: #fff;
            color: #acacac;
            border: 1px solid #acacac;
            outline: none;
            cursor: pointer;
        }

#change-loc-form input[type="submit"] {
    width: 40%;
    background: #69be27;
    color: #fff;
    font-weight: bold;
    padding: 0 0px;
    margin-top: 0;
    height: 30px;
    line-height: 30px;
    margin-right: 10px;
}

#change-loc-form input[type="text"] {
    width: 50%;
    height: 30px;
    line-height: 30px;
    padding: 0 0px;
    background: #fff;
    border: none;
    border-bottom: 2px solid #69be27;
}

#change-loc-form .content {
    padding-top: 10px;
}

span.temperature {
    display: inline-block;
    font-size: 5.5rem;
    line-height: 5.5rem;
    font-weight: bold;
    color: #006c36;
    padding-left: 10px;
    margin-bottom: 10px;
    vertical-align: middle;
}

span.weather-heading {
    font-weight: bold;
}

.weather-conditions {
    font-style: italic;
}

.tile.products {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
    grid-column: 3 / span 1;
    -ms-grid-row: 1;
    grid-row: 1;
    margin: 0 0 0 5px;
}

    .tile.products img {
        width: 80px;
    }

.tile.diseaseGuide {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
    grid-column: 3 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin: 0 0 5px 5px;
}

    .tile.diseaseGuide:before {
        content: "";
        display: block;
        width: 80%;
        height: 4px;
        background: #fff;
        position: absolute;
        top: -2px;
        left: 10%;
    }


    .tile.diseaseGuide img {
        width: 83px;
    }


.tile.turftech {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-row: 3;
    grid-column: 1 / span 1;
    margin: 5px 0 5px 0;
    position: relative;
}

    .tile.turftech img {
        width: 73px;
    }

.tile.forecast {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 3;
    grid-row: 3;
    margin: 5px 0;
}

    .tile.forecast img {
        width: 83px;
    }

.tile.guide {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 5;
    grid-row: 5;
    margin: 5px 0;
}

    .tile.guide img {
        width: 40px;
    }

.tile.dollarspot {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
    grid-column: 3 / span 1;
    -ms-grid-row: 3;
    grid-row: 3;
    /*   margin: 5px 0;*/
    margin: 5px 0;
}

    .tile.dollarspot img {
        width: 85px;
    }

.tile.art {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 4;
    grid-row: 4;
    /*   margin: 5px 0;*/
    margin: 5px 0;
}

    .tile.art img {
        width: 85px;
    }

.tile.calculator {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 4;
    grid-row: 4;
    margin: 5px 0;
}

    /*  .tile.calculator:before {
      content: "";
      display: block;
      width: 80%;
      height: 4px;
      background: #fff;
      position: absolute;
      top: -2px;
      left: 10%;
  }*/

    .tile.calculator img {
        width: 50px;
    }

.tile.bulletins {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
    grid-column: 3 / span 1;
    -ms-grid-row: 4;
    grid-row: 4;
    margin: 5px 0;
}

    .tile.bulletins img {
        width: 64px;
    }

.tile.partners {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 5;
    grid-row: 5;
    margin: 5px 0;
}

    .tile.partners img {
        width: 57px;
    }

.tile.app {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 5;
    grid-row: 5;
    margin: 5px 0;
}

    .tile.app img {
        width: 107px;
    }

.tile.pollinator {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
    grid-column: 3 / span 1;
    -ms-grid-row: 5;
    grid-row: 5;
    margin: 5px 0;
}

    .tile.pollinator img {
        width: 79px;
    }

.tile.canada {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 6;
    grid-row: 6;
    margin: 5px 0;
}

    .tile.canada img {
        width: 80px;
    }

.tile.building {
    margin-top: 5px;
}

    .tile.building img {
        width: 80px;
    }

.tile.contact {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 6;
    grid-row: 6;
    margin: 5px 0;
}

    .tile.contact img {
        width: 79px;
    }

.tile.forecast:before, .tile.guide:before, .tile.bulletins:before, .tile.building:before {
    content: "";
    display: block;
    width: 4px;
    height: 80%;
    background: #fff;
    position: absolute;
    left: -2px;
    top: 10%;
}

.tile.pollinator:before {
    content: "";
    display: block;
    width: 6px;
    height: 80%;
    background: #fff;
    position: absolute;
    left: -2px;
    top: 10%;
}

.tile.dollarspot:before, .tile.forecast:before, .tile.bulletins:before, .tile.calculator:before, .tile.contact:before {
    content: "";
    display: block;
    width: 4px;
    height: 80%;
    background: #fff;
    position: absolute;
    left: -2px;
    top: 10%;
}

@media (min-width: 768px) {
    .tile.art:before, .tile.canada:before {
        content: "";
        display: block;
        width: 4px;
        height: 80%;
        background: #fff;
        position: absolute;
        left: -2px;
        top: 10%;
    }
}



/* repositioning French tiles */
html:lang(fr) .tile.guide {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 2 / span 1;
    -ms-grid-row: 5;
    grid-row: 5;
    margin: 5px 0;
}

/*html:lang(fr) .tile.contact {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 6;
    grid-row: 6;
    margin: 5px;
    padding: 10px;
}

    html:lang(fr) .tile.contact .fa-user {
        font-size: 55px;
    }*/
html:lang(fr) .tile.pollinator {
    -ms-grid-column-span: 1;
    -ms-grid-column: 4;
    grid-row: 5;
    grid-column: 3 / span 1;
    margin: 5px 0;
}

html:lang(fr) .tile.building {
    -ms-grid-column-span: 1;
    -ms-grid-column: 5;
    grid-row: 6;
    grid-column: 2 / span 1;
    margin: 5px 0;
}

html:lang(fr) .tile.canada {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 6;
    grid-row: 6;
    margin: 5px 0;
}

@media (min-width:768px) {
    html:lang(fr) .tile.contact .fa-user {
        font-size: 65px;
    }

    #nav-tiles {
        margin-bottom: -150px;
    }

    .tile-container {
        -ms-grid-columns: 36% 16% 16% 16% 16%;
        grid-template-columns: 36% 16% 16% 16% 16%;
        -ms-grid-rows: 160px 160px 160px;
        grid-template-rows: 160px 160px 160px;
        top: -150px;
    }

        .tile-container:before, .tile-container:after {
            width: calc(64% + 10px);
        }

        .tile-container:before {
            left: calc(36% - 10px);
            top: -10px;
        }

        .tile-container:after {
            bottom: -10px;
        }

    .tile {
        font-size: 1.6rem;
    }

        .tile.weather {
            -ms-grid-column-span: 1;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
            -ms-grid-row: 2;
            -ms-grid-row-span: 2;
            grid-row: 2 / 2;
            padding: 0;
            margin: -35px 0 0;
            text-align: left;
        }

            .tile.weather .col-md-5 {
                text-align: center;
            }

    span.weather-heading {
        color: #69be27;
    }

    .tile.products {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        -ms-grid-row: 1;
        grid-row: 1;
        margin: 0 0 5px 0;
    }

        .tile.products img {
            width: 64px;
        }

    .tile.diseaseGuide {
        -ms-grid-column-span: 1;
        -ms-grid-column: 3;
        grid-column: 3 / span 1;
        -ms-grid-row: 1;
        grid-row: 1;
        margin: 0 0 5px 0;
    }

    /* .tile.diseaseGuide img {
          width: 61px;
      }*/

    .tile.forecast {
        -ms-grid-column-span: 1;
        -ms-grid-column: 5;
        grid-column: 5 / span 1;
        -ms-grid-row: 1;
        grid-row: 1;
        margin: 0 0 5px 0;
    }

        .tile.forecast img {
            width: 61px;
        }

    .tile.guide {
        -ms-grid-column-span: 1;
        -ms-grid-column: 5;
        grid-column: 3 / span 1;
        -ms-grid-row: 1;
        grid-row: 3;
        margin: 5px 0 0 0;
    }

    .tile.dollarspot {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        -ms-grid-row: 2;
        grid-row: 2;
        /* margin: 0 0 5px 0;*/
        margin: 5px 0;
    }

        .tile.dollarspot img {
            width: 63px;
        }


    .tile.art {
        -ms-grid-column-span: 1;
        -ms-grid-column: 3;
        grid-column: 3 / span 1;
        -ms-grid-row: 2;
        grid-row: 2;
        /* margin: 0 0 5px 0;*/
        margin: 5px 0;
    }

        .tile.art img {
            width: 63px;
        }


    .tile.calculator {
        -ms-grid-column-span: 1;
        -ms-grid-column: 4;
        grid-column: 4 / span 1;
        -ms-grid-row: 2;
        grid-row: 2;
        margin: 5px 0;
    }

        .tile.calculator img {
            width: 48px;
        }

    .tile.bulletins {
        -ms-grid-column-span: 1;
        -ms-grid-column: 5;
        grid-column: 5/ span 1;
        -ms-grid-row: 2;
        grid-row: 2;
        margin: 5px 0;
    }

        .tile.bulletins img {
            width: 47px;
        }

    .tile.partners {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        -ms-grid-row: 3;
        grid-row: 3;
        margin: 5px 0 0;
    }

        .tile.partners img {
            width: 42px;
        }

    .tile.app {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        /*  -ms-grid-row: 2;*/
        grid-row: 3;
        margin: 5px 0 0 0;
    }

        .tile.app img {
            width: 79px;
        }

    .tile.pollinator {
        -ms-grid-column-span: 1;
        -ms-grid-column: 4;
        grid-row: 3;
        grid-column: 4 / span 1;
        margin: 5px 0 0 0;
    }

    .tile.canada {
        -ms-grid-column-span: 1;
        -ms-grid-column: 5;
        grid-row: 3;
        grid-column: 5 / span 1;
        margin: 5px 0 0 0;
    }

    .tile.building {
        -ms-grid-column-span: 1;
        -ms-grid-column: 5;
        grid-row: 3;
        grid-column: 5 / span 1;
        margin: 5px 0;
    }


    .tile.contact {
        -ms-grid-column-span: 4;
        -ms-grid-column: 2;
        grid-row: 4;
        grid-column: 2 / span 1;
        margin: 10px 0 0 0;
    }


    .tile.diseaseGuide:before, .tile.forecast:before, .tile.guide:before, .tile.art:before, .tile.calculator:before, .tile.bulletins:before, .tile.turftech:before, .tile.canada:before {
        content: "";
        display: block;
        width: 4px;
        height: 80%;
        background: #fff;
        position: absolute;
        left: -2px;
        top: 10%;
    }

    .tile.turftech {
        -ms-grid-column-span: 1;
        -ms-grid-column: 4;
        grid-row: 1;
        grid-column: 4 / span 1;
        margin: 0 0 5px 0;
        position: relative;
    }

        .tile.turftech img {
            width: 73px;
        }

    .tile.contact:before, .tile.dollarspot:before {
        display: none;
    }

    /*.tile.calculator:before {
            display: none;
        }*/
    /*
        .tile.diseaseGuide:before {
            display: none;
        }*/

    /* repositioning French tiles */
    html:lang(fr) .tile.guide {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        /*  -ms-grid-row: 2;*/
        grid-row: 3;
        margin: 5px 0 0 0;
    }
    html:lang(fr) .tile.building {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        /*  -ms-grid-row: 2;*/
        grid-row: 4;
        margin: 5px 0;
    }

    /*    html:lang(fr) .tile.contact {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        -ms-grid-row: 6;
        grid-row: 6;
        margin: 5px;
        padding: 10px;
    }*/
    html:lang(fr) .tile.pollinator {
        -ms-grid-column-span: 1;
        -ms-grid-column: 4;
        grid-row: 3;
        grid-column: 3 / span 1;
        margin: 5px 0 0 0;
    }
    html:lang(fr) .tile.building {
        -ms-grid-column-span: 1;
        -ms-grid-column: 5;
        grid-row: 3;
        grid-column: 5 / span 1;
        margin: 5px 0;
    }
    html:lang(fr) .tile.canada {
        -ms-grid-column-span: 1;
        -ms-grid-column: 1;
        grid-column: 4 / span 1;
        -ms-grid-row: 6;
        grid-row: 3;
        margin: 5px 0 0 0;
    }
}

@media (min-width:992px) {
    .tile.weather {
        margin: -30px 0 0;
    }

        .tile.weather img {
            width: 89px;
            display: block;
            margin: 0 auto 10px;
        }

    span.temperature {
        font-size: 7rem;
        line-height: 7rem;
        display: block;
        text-align: center;
    }
}

@media (min-width:1200px) {
    .tile.weather {
        margin: -40px 2px 0;
    }
}

/*********************************
      calculator landing
*********************************/
.calculators .tile-container {
    -ms-grid-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
    grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
    -ms-grid-rows: auto 180px;
    grid-template-rows: auto 180px;
    top: -120px;
}

    .calculators .tile-container:before {
        top: -10px;
    }

    .calculators .tile-container:after {
        bottom: -10px;
    }

.calculators .tile.calculator {
    background: #fff;
    -ms-grid-column-span: 3;
    -ms-grid-column: 1;
    grid-column: 1 / span 3;
    -ms-grid-row-span: 1;
    grid-row: 1;
    margin: 0;
    text-align: left;
}

.calculators .tile:first-child .col-12 div {
    width: calc(100% - 63px);
}

.calculators .tile.calculator img {
    width: 53px;
}

.calculators .tile.ingredients {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
}

    .calculators .tile.ingredients img {
        width: 64px;
    }

.calculators .tile.fairway {
    -ms-grid-column-span: 1;
    -ms-grid-column: 2;
    grid-column: 2 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
}

    .calculators .tile.fairway img {
        width: 42px;
    }

.calculators .tile.products {
    -ms-grid-column-span: 1;
    -ms-grid-column: 3;
    grid-column: 3 / span 1;
    -ms-grid-row: 2;
    grid-row: 2;
    margin: 0;
}

    .calculators .tile.products img {
        width: 72px;
    }

    .calculators .tile.fairway:before, .calculators .tile.products:before {
        content: "";
        display: block;
        width: 4px;
        height: 80%;
        background: #fff;
        position: absolute;
        left: -2px;
        top: 10%;
    }

.calculators .tile.calculator:before {
    display: none;
}

#nav-tiles.calculators.active-ingredients {
    margin-bottom: -60px;
}

@media (min-width:768px) {
    #nav-tiles.calculators {
        margin-bottom: -90px;
    }

        #nav-tiles.calculators.active-ingredients {
            margin-bottom: -20px;
        }

    .calculators .tile-container {
        -ms-grid-columns: 49% 17% 17% 17%;
        grid-template-columns: 49% 17% 17% 17%;
        -ms-grid-rows: 160px auto;
        grid-template-rows: 160px auto;
        top: -90px;
    }

        .calculators .tile-container:before, .calculators .tile-container:after {
            width: calc(51% + 10px);
        }

    .tile-container.calculator-landing:after {
        bottom: unset;
        top: 160px;
    }

    .calculators .tile-container:before {
        left: calc(49% - 10px);
        top: -10px;
    }

    .calculators .tile.calculator {
        -ms-grid-column-span: 1;
        -ms-grid-column: 1;
        grid-column: 1 / span 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2;
        margin-top: -110px;
        /*padding-right: 60px;*/
    }

    .calculators .tile-container .tile:first-child {
        padding-right: 60px;
    }

    .calculators .tile.calculator img {
        width: 55px;
    }

    .calculators .tile:first-child .col-12 div {
        width: calc(100% - 65px);
    }

    .calculators .tile.ingredients {
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

        .calculators .tile.ingredients img {
            width: 60px;
        }

    .calculators .tile.fairway {
        -ms-grid-column-span: 1;
        -ms-grid-column: 3;
        grid-column: 3 / span 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

    .calculators .tile.products {
        -ms-grid-column-span: 1;
        -ms-grid-column: 4;
        grid-column: 4 / span 1;
        -ms-grid-row: 1;
        grid-row: 1;
    }

        .calculators .tile.products img {
            width: 72px;
        }
}

/*********************************
      calculator pages
*********************************/
#calculator .row div[class*=col-] {
    margin-top: 15px;
}

#calculator form strong, #calculator-results.primo-maxx strong {
    display: block;
    font-size: 1.8rem;
    color: #69be27;
    font-weight: bold;
    margin: 30px 0 15px 0;
}

#calculator .col-md-2 strong {
    color: #000;
}

#calculator strong:first-child {
    margin-top: 0;
}

.tile-container.calculator {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    top: -120px;
}

    .tile-container.calculator .tile {
        justify-content: flex-start;
        align-items: unset;
        text-align: left;
    }

        .tile-container.calculator .tile:first-child {
            background: #fff;
            -ms-grid-column-span: 1;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
            -ms-grid-row-span: 1;
            -ms-grid-row: 1;
            grid-row: 1;
            margin: 0;
        }

.calculators .calculator .tile.active-ingredients img {
    width: 57px;
}

.calculators .calculator .tile.fairway-calculator img {
    width: 182px;
}

.calculators .calculator .tile.products img {
    width: 56px;
}

.tile.calc-container {
    background: #f1f2f2;
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2 / 2;
}

    .tile.calc-container div {
        position: relative;
    }

    .tile.calc-container p {
        font-size: 1.6rem;
    }

        .tile.calc-container p.required-text {
            font-size: 1.4rem;
            text-align: center;
            margin: 20px 0 0;
        }

input.or:disabled {
    background: #ddd;
}

p.ai-note {
    position: absolute;
    bottom: -80px;
    left: 0;
}

@media (min-width:768px) {
    #calculator .row {
        margin-top: 15px;
    }

        #calculator .row div[class*=col-] {
            margin-top: 0;
        }

    .tile-container.calculator {
        -ms-grid-columns: 55% 45%;
        grid-template-columns: 55% 45%;
        -ms-grid-rows: auto;
        grid-template-rows: auto;
        top: -90px;
    }

        .tile-container.calculator.fairway {
            -ms-grid-columns: 40% 60%;
            grid-template-columns: 40% 60%;
        }

            .tile-container.calculator.fairway:before, .tile-container.calculator.fairway:after {
                width: calc(60% + 10px);
            }

            .tile-container.calculator.fairway:before {
                left: calc(40% - 10px);
            }

        .tile-container.calculator:before, .tile-container.calculator:after {
            width: calc(45% + 10px);
        }

        .tile-container.calculator:before {
            left: calc(55% - 10px);
        }

        .tile-container.calculator .tile:first-child {
            margin-top: 50px;
        }

    .tile.active-ingredients {
        -ms-grid-column-span: 1;
        -ms-grid-column: 1;
        grid-column: 1 / span 1;
        -ms-grid-row-span: 1;
        grid-row: 1;
        margin: 0;
    }

    .tile.calc-container {
        background: #f1f2f2;
        -ms-grid-column-span: 1;
        -ms-grid-column: 2;
        grid-column: 2 / span 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1;
    }
}

/*********************************
      contact form
*********************************/
#contact {
    width: 100%;
    position: relative;
}

    #contact .row div[class*=col-] {
        margin-top: 15px;
    }

.tile-container.contact {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto auto;
    grid-template-rows: auto auto auto;
    top: -120px;
}

    .tile-container.contact .tile {
        justify-content: unset;
        align-items: unset;
    }

        .tile-container.contact .tile:first-child {
            background: #fff;
        }

    .tile-container.contact h2, .tile-container.contact p {
        text-align: left;
    }

    .tile-container.contact h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .tile-container.contact .tile:first-child h2 {
        font-size: 2.4rem;
        margin-bottom: 0;
    }

.tile-container .contact-info {
    width: 100%;
    margin-top: 30px;
    position: relative;
}

    .tile-container .contact-info:before {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        background: #fff;
        position: absolute;
        top: -17px;
    }

    .tile-container .contact-info:first-child {
        margin-top: 0;
    }

        .tile-container .contact-info:first-child:before {
            display: none;
        }

.tile-container.contact .tile.contact-block {
    margin-bottom: 10px;
}

    .tile-container.contact .tile.contact-block:after {
        content: "";
        display: block;
        width: 34px;
        height: 37px;
        background: url(../img/tiles/contact-customer.svg);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 20px;
        right: 20px;
    }

.tile:first-child .col-12 div.thank-you {
    padding: 0;
    width: 100%;
    text-align: center;
    display: none;
}

.thank-you p {
    background: #69be27;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 18px 0;
    margin: 0;
}

.tile-container.contact .tile.contact-block-2 {
    margin-top: 10px;
}

    .tile-container.contact .tile.contact-block-2:after {
        content: "";
        display: block;
        width: 38px;
        height: 42px;
        background: url(../img/tiles/contact-specialist.svg);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        top: 20px;
        right: 20px;
    }

.tile-container.contact .contact-info p {
    margin: 0;
}



@media (min-width:768px) {
    #contact .row {
        margin-top: 15px;
    }

        #contact .row:first-child {
            margin-top: 0;
        }

        #contact .row div[class*=col-] {
            margin-top: 0;
        }

    .tile-container.contact {
        -ms-grid-columns: 55% 45%;
        grid-template-columns: 55% 45%;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    }

        .tile-container.contact:before, .tile-container.contact:after {
            width: calc(45% + 10px);
        }

        .tile-container.contact:before {
            left: calc(55% - 10px);
        }

        .tile-container.contact .tile:first-child {
            -ms-grid-row-span: 2;
            grid-row: 1 / span 2;
            margin-top: 80px;
            padding-right: 60px;
        }

        .tile-container.contact .tile.contact-block {
            -ms-grid-column-span: 1;
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
            -ms-grid-row-span: 1;
            grid-row: 1;
        }

        .tile-container.contact .tile.contact-block-2 {
            -ms-grid-column-span: 1;
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
            -ms-grid-row: 2;
            -ms-grid-row-span: 1;
            grid-row: 2 / 2;
        }
}

@media (min-width:992px) {
    .tile-container.contact {
        -ms-grid-columns: 70% 30%;
        grid-template-columns: 70% 30%;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    }

        .tile-container.contact:before, .tile-container.contact:after {
            width: calc(30% + 10px);
        }

        .tile-container.contact:before {
            left: calc(70% - 10px);
        }
}

/*********************************
      product landing
*********************************/
#nav-tiles.product-landing {
    margin-bottom: -80px;
}

.tile-container.product-landing {
    -ms-grid-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
    grid-template-columns: calc(100% / 3) calc(100% / 3) calc(100% / 3);
    -ms-grid-rows: 90px 100px 100px 100px 100px 90px;
    grid-template-rows: 90px 100px 100px 100px 100px 90px;
    top: -120px;
}

    .tile-container.product-landing .tile:before {
        content: "";
        display: block;
        width: 4px;
        height: 80%;
        background: #fff;
        position: absolute;
        left: -2px;
        top: 10%;
    }

    .tile-container.product-landing .tile:first-child:before, .tile-container.product-landing .tile:nth-child(2):before, .tile-container.product-landing .tile:nth-child(5):before, .tile-container.product-landing .tile:nth-child(8):before, .tile-container.product-landing .tile:nth-child(11):before, .tile-container.product-landing .tile:nth-child(14):before, .tile-container.product-landing .tile:nth-child(17):before {
        display: none;
    }

    .tile-container.product-landing .tile {
        margin-bottom: 10px;
    }

        .tile-container.product-landing .tile:first-child, .tile-container.product-landing .tile:nth-child(n+17) {
            margin-bottom: 0;
        }

        .tile-container.product-landing .tile a.read-more:before {
            content: "";
            display: inline-block;
            width: 32px;
            height: 36px;
            background: url(../images/pdf.svg);
            vertical-align: middle;
            position: relative;
            margin-right: 10px;
        }

        .tile-container.product-landing .tile:first-child {
            -ms-grid-column-span: 3;
            -ms-grid-column: 1;
            grid-column: 1 / span 3;
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            grid-row: 1;
        }

            .tile-container.product-landing .tile:first-child span.tile-heading {
                margin-bottom: 0;
            }

        .tile-container.product-landing .tile img {
            margin-bottom: 0;
            width: auto;
            height: 40px;
        }

        .tile-container.product-landing .tile:nth-child(n+2):nth-child(-n+4) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 2;
            grid-row: 2;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(2) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(3) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(4) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }

           
        .tile-container.product-landing .tile:nth-child(n+5):nth-child(-n+7) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 3;
            grid-row: 3;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(5) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }

          
        .tile-container.product-landing .tile:nth-child(6) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(7) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(n+8):nth-child(-n+10) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 4;
            grid-row: 4;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(8) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(9) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(10) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(n+11):nth-child(-n+13) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 5;
            grid-row: 5;
            -ms-grid-column-span: 1;
        }


        .tile-container.product-landing .tile:nth-child(11) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
            font-size: 1.4rem;
            font-weight: bold;
            color: #a9a9a9;
        }

        .tile-container.product-landing .tile:nth-child(12) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(13) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }



        .tile-container.product-landing .tile:nth-child(n+14):nth-child(-n+16) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 6;
            grid-row: 6;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(14) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(15) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(16) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }

    .tile-container.product-landing .label-sds-tile {
        cursor: pointer;
        margin-top: 10px !important;
    }

    .tile-container.product-landing .app-guide {
        margin-top: 10px !important;
        font-size: 1.2rem !important;
    }



@media (min-width:768px) {
    #nav-tiles.product-landing {
        margin-bottom: -45px;
    }

    .tile-container.product-landing {
        -ms-grid-columns: calc(100% / 5) calc(100% / 5) calc(100% / 5) calc(100% / 5) calc(100% / 5);
        grid-template-columns: calc(100% / 5) calc(100% / 5) calc(100% / 5) calc(100% / 5) calc(100% / 5);
        -ms-grid-rows: 90px 90px 80px;
        grid-template-rows: 90px 90px 80px;
        top: -85px;
    }

        .tile-container.product-landing:before, .tile-container.product-landing:after {
            width: calc(100% + 10px);
        }

        .tile-container.product-landing:before {
            left: -10px;
        }

        .tile-container.product-landing .tile a {
            display: inline-block;
        }

        .tile-container.product-landing .tile:first-child {
            position: absolute;
            top: -50px;
            background: none;
            padding: 0;
        }

            .tile-container.product-landing .tile:first-child span.tile-heading {
                color: #fff;
            }

        .tile-container.product-landing .tile:nth-child(n+2):nth-child(-n+6) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 1;
            grid-row: 1;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(2) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(3) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(4) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(5) {
            -ms-grid-column: 4;
            grid-column: 4 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(6) {
            -ms-grid-column: 5;
            grid-column: 5 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(n+7):nth-child(-n+11) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 2;
            grid-row: 2;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(7) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(8) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(9) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(10) {
            -ms-grid-column: 4;
            grid-column: 4 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(11) {
            -ms-grid-column: 5;
            grid-column: 5 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(n+12):nth-child(-n+16) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 3;
            grid-row: 3;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(12) {
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(13) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(14) {
            -ms-grid-column: 3;
            grid-column: 3 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(15) {
            -ms-grid-column: 4;
            grid-column: 4 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(16) {
            -ms-grid-column: 5;
            grid-column: 5 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(n+17):nth-child(-n+21) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 4;
            grid-row: 4;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(17) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(18) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 2 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(19) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 3 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(20) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 4 / span 1;
        }
        .tile-container.product-landing .tile:nth-child(21) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 5 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(n+22):nth-child(-n+26) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 5;
            grid-row: 5;
            -ms-grid-column-span: 1;
        }
        .tile-container.product-landing .tile:nth-child(22) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }
        .tile-container.product-landing .tile:nth-child(23) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 2 / span 1;
        }
        .tile-container.product-landing .tile:nth-child(24) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 3 / span 1;
        }
        .tile-container.product-landing .tile:nth-child(25) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 4 / span 1;
        }
        .tile-container.product-landing .tile:nth-child(26) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 5 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(n+27):nth-child(-n+31) {
            -ms-grid-row-span: 1;
            -ms-grid-row: 6;
            grid-row: 6;
            -ms-grid-column-span: 1;
        }

        .tile-container.product-landing .tile:nth-child(27) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(28) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 2 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(29) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 3 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(30) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 4 / span 1;
        }

        .tile-container.product-landing .tile:nth-child(31) {
            margin-top: 10px;
            -ms-grid-column: 1;
            grid-column: 5 / span 1;
        }


        .tile-container.product-landing .tile:nth-child(5):before, .tile-container.product-landing .tile:nth-child(8):before, .tile-container.product-landing .tile:nth-child(11):before, .tile-container.product-landing .tile:nth-child(14):before {
            display: block;
        }

        .tile-container.product-landing .tile:first-child:before, .tile-container.product-landing .tile:nth-child(2):before, .tile-container.product-landing .tile:nth-child(7):before, .tile-container.product-landing .tile:nth-child(17):before {
            display: none;
        }

        .tile-container.product-landing .tile:first-child, .tile-container.product-landing .tile:nth-child(n+12) {
            margin-bottom: 0;
        }

        .tile-container.product-landing .app-guide {
            height: 80px !important;
            font-size: 1.5rem !important;
            margin-top: 10px !important;
        }
        .tile-container.product-landing .label-sds-tile {
            font-size: 1.5rem !important;
            margin-top: 10px !important;
            height: 80px !important;
        }
}
@media (min-width: 768px) and (max-width: 1024px) {
    .tile-container.product-landing .app-guide {
        font-size: 1rem !important;
    }
}

/*********************************
      greenpartners
*********************************/
#greenpartners {
    margin-bottom: -120px;
}

.tile-container.greenpartners {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
    top: -120px;
}

    .tile-container.greenpartners .tile:first-child {
        -ms-grid-column-span: 1;
        -ms-grid-column: 1;
        grid-column: 1 / 1;
        -ms-grid-row: 1;
        -ms-grid-row-span: 1;
        grid-row: 1;
    }

    .tile-container.greenpartners .tile:nth-child(2) {
        -ms-grid-column-span: 1;
        -ms-grid-column: 1;
        grid-column: 1 / 1;
        -ms-grid-row: 2;
        -ms-grid-row-span: 1;
        grid-row: 2;
    }

    .tile-container.greenpartners h2, .tile-container.greenpartners p {
        text-align: left;
    }

    .tile-container.greenpartners img {
        width: 252px;
        height: 42px;
    }

    .tile-container.greenpartners .product-info {
        margin-top: 20px;
    }

    .tile-container.greenpartners a.read-more {
        text-align: center;
        margin-top: 20px;
    }

    .tile-container.greenpartners .tile {
        display: block;
    }

    .tile-container.greenpartners .contact-info:first-child > strong {
        display: block;
        font-size: 1.8rem;
        color: #69be27;
        margin: 10px 0 20px;
        text-align: left;
    }

@media (min-width:768px) {
    .tile-container.greenpartners {
        -ms-grid-columns: 60% 40%;
        grid-template-columns: 60% 40%;
        -ms-grid-rows: auto auto;
        grid-template-rows: auto auto;
    }

        .tile-container.greenpartners:before, .tile-container.greenpartners:after {
            width: calc(40% + 10px);
        }

        .tile-container.greenpartners:before {
            left: calc(60% - 10px);
        }

        .tile-container.greenpartners:after {
            display: none;
        }

        .tile-container.greenpartners a.read-more {
            text-align: right;
        }

        .tile-container.greenpartners .tile:first-child {
            margin-top: 80px;
            padding-right: 60px;
        }

        .tile-container.greenpartners .contact-info:first-child > strong {
            font-size: 1.6rem;
        }

        .tile-container.greenpartners .tile:nth-child(2) {
            -ms-grid-column-span: 1;
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
            -ms-grid-row: 1;
            -ms-grid-row-span: 1;
            grid-row: 1 / 1;
            position: absolute;
            width: 100%;
        }

            .tile-container.greenpartners .tile:nth-child(2):after {
                content: "";
                display: block;
                width: calc(100% + 10px);
                height: 10px;
                background: #69be27;
                position: absolute;
                bottom: -10px;
                right: -10px;
            }
}

@media all and (min-width:768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .tile-container.greenpartners .tile:nth-child(2) {
        width: 40%;
    }
}

/*********************************
      tech bulletins
*********************************/

.tile-container.bulletins {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto;
    top: -120px;
}

.tile.tech-bulletins img {
    width: 57px;
}

.tile-container.bulletins .tile:first-child .col-12 div {
    width: calc(100% - 67px);
}

.tile-container.bulletins .tile.tech-bulletin {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
    justify-content: left;
    padding-left: 12%;
}

    .tile-container.bulletins .tile.tech-bulletin svg, .tile-container.bulletins .tile.tech-bulletin span {
        display: inline-block;
    }

    .tile-container.bulletins .tile.tech-bulletin img {
        width: 28px;
        height: 31px;
        margin-right: 25px;
        margin-bottom: 0;
    }

.tile-container.bulletins .tile:nth-child(n+3):before {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background: #fff;
    position: absolute;
    top: -2px;
    left: 10%;
}

@media (min-width:768px) {
    .tile-container.bulletins {
        -ms-grid-columns: 50% 50%;
        grid-template-columns: 50% 50%;
        -ms-grid-rows: 80px 80px 80px 80px 80px;
        grid-template-rows: 80px 80px 80px 80px 80px;
    }

        .tile-container.bulletins:before, .tile-container.bulletins:after {
            width: calc(50% + 10px);
        }

        .tile-container.bulletins:before {
            left: calc(50% - 10px);
        }

        .tile-container.bulletins .tile:first-child {
            -ms-grid-row-span: 3;
            grid-row: 1 / span 3;
            margin-top: 80px;
            padding-right: 60px;
        }

        .tile-container.bulletins .tile:nth-child(n+2) {
            -ms-grid-column-span: 1;
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
            -ms-grid-row-span: 1;
        }

        .tile-container.bulletins .tile:nth-child(2) {
            -ms-grid-row: 1;
            grid-row: 1;
        }

        .tile-container.bulletins .tile:nth-child(3) {
            -ms-grid-row: 2;
            grid-row: 2;
        }

        .tile-container.bulletins .tile:nth-child(4) {
            -ms-grid-row: 3;
            grid-row: 3;
        }

        .tile-container.bulletins .tile:nth-child(5) {
            -ms-grid-row: 4;
            grid-row: 4;
        }

        .tile-container.bulletins .tile:nth-child(6) {
            -ms-grid-row: 5;
            grid-row: 5;
        }
}

@media (min-width:992px) {
    .tile-container.bulletins:before, .tile-container.bulletins:after {
        width: calc(40% + 10px);
    }

    .tile-container.bulletins:before {
        left: calc(60% - 10px);
    }

    .tile-container.bulletins {
        -ms-grid-columns: 60% 40%;
        grid-template-columns: 60% 40%;
    }
}

/*********************************
      art of application
*********************************/

.tile-container.art {
    -ms-grid-columns: 100%;
    grid-template-columns: 100%;
    -ms-grid-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto;
    grid-template-rows: auto auto auto auto auto auto auto auto auto auto auto auto auto;
    top: -120px;
    margin-bottom: 26px;
}

.tile.art-of-application img {
    width: 66px;
}

.tile-container.art a.read-more {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.tile-container.art .tile:nth-child(n+4):nth-child(-n+6):before, .tile-container.art .tile:nth-child(n+11):nth-child(-n+12):before {
    content: "";
    display: block;
    width: 80%;
    height: 4px;
    background: #fff;
    position: absolute;
    top: -2px;
    left: 10%;
}

.tile-container.art .tile:nth-child(n+7):nth-child(-n+8) {
    background: #fff;
    -ms-flex-align: flex-start;
    align-items: flex-start;
    text-align: left;
}

    .tile-container.art .tile:nth-child(n+7):nth-child(-n+8) * {
        max-width: 100%;
    }

.tile-container.art .tile:nth-child(9) {
    background: #fff;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.tile-container.art .tile:nth-child(n+2):nth-child(-n+6), .tile-container.art .tile:nth-child(n+10):nth-child(-n+12) {
    -ms-flex-flow: wrap;
    flex-flow: wrap;
}

    .tile-container.art .tile:nth-child(n+2):nth-child(-n+6) span {
        width: 130px;
    }

.tile-container.art .tile:nth-child(9) span.tile-heading {
    font-size: 1.6rem;
    margin-bottom: 0;
}

.tile-container.art .tile img, .tile-container.art .tile span {
    display: inline-block;
}

.tile-container.art .tile {
    -ms-grid-column-span: 1;
    -ms-grid-column: 1;
    grid-column: 1 / span 1;
    -ms-grid-row-span: 1;
}

    .tile-container.art .tile:not(:first-child) img {
        margin-right: 25px;
        margin-bottom: 0;
    }

    .tile-container.art .tile:first-child {
        grid-row: 1;
        -ms-grid-row: 1;
    }

    .tile-container.art .tile:nth-child(2) {
        grid-row: 2;
        -ms-grid-row: 2;
    }

        .tile-container.art .tile:nth-child(2) img {
            width: 44px;
        }

    .tile-container.art .tile:nth-child(3) {
        grid-row: 3;
        -ms-grid-row: 3;
    }

        .tile-container.art .tile:nth-child(3) img {
            width: 34px;
        }

    .tile-container.art .tile:nth-child(4) {
        grid-row: 4;
        -ms-grid-row: 4;
    }

        .tile-container.art .tile:nth-child(4) img {
            width: 55px;
        }

    .tile-container.art .tile:nth-child(5) {
        grid-row: 5;
        -ms-grid-row: 5;
    }

        .tile-container.art .tile:nth-child(5) img {
            width: 33px;
        }

    .tile-container.art .tile:nth-child(6) {
        grid-row: 6;
        -ms-grid-row: 6;
    }

        .tile-container.art .tile:nth-child(6) img {
            width: 33px;
        }

    .tile-container.art .tile:nth-child(7) {
        grid-row: 7;
        -ms-grid-row: 7;
    }

    .tile-container.art .tile:nth-child(8) {
        grid-row: 8;
        -ms-grid-row: 8;
    }

    .tile-container.art .tile:nth-child(9) {
        grid-row: 9;
        -ms-grid-row: 9;
    }

    .tile-container.art .tile:nth-child(10) {
        grid-row: 10;
        -ms-grid-row: 10;
    }

        .tile-container.art .tile:nth-child(10) img {
            width: 52px;
        }

    .tile-container.art .tile:nth-child(11) {
        grid-row: 11;
        -ms-grid-row: 11;
    }

        .tile-container.art .tile:nth-child(11) img {
            width: 53px;
        }

    .tile-container.art .tile:nth-child(12) {
        grid-row: 12;
        -ms-grid-row: 12;
    }

        .tile-container.art .tile:nth-child(12) img {
            width: 65px;
        }

    .tile-container.art .tile:nth-child(13) {
        -ms-grid-column-span: 1;
        -ms-grid-column: 1;
        grid-column: 1 / span 1;
        -ms-grid-row-span: 1;
        grid-row: 13;
        flex-flow: wrap;
        background: #fff;
        position: absolute;
        width: 100%;
        bottom: -70px;
        padding: 20px 0;
    }

        .tile-container.art .tile:nth-child(13) a:before {
            content: "|";
            display: inline-block;
            padding: 0 5px;
        }

        .tile-container.art .tile:nth-child(13) a:first-child:before {
            display: none;
        }

@media (min-width:768px) {
    #nav-tiles.art {
        margin-bottom: 345px;
    }

    .tile-container.art {
        -ms-grid-columns: 60% 40%;
        grid-template-columns: 60% 40%;
        -ms-grid-rows: 90px 90px 90px 90px 90px 90px 90px 90px 90px;
        grid-template-rows: 90px 90px 90px 90px 90px 90px 90px 90px 90px;
        margin-bottom: 0;
    }

        .tile-container.art:before, .tile-container.art:after {
            width: calc(40% + 10px);
        }

        .tile-container.art:after {
            bottom: 0;
        }

        .tile-container.art:before {
            left: calc(60% - 10px);
        }

        .tile-container.art a.read-more {
            text-align: right;
        }

        .tile-container.art .tile:first-child {
            -ms-grid-column-span: 1;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
            -ms-grid-row-span: 3;
            grid-row: 2 / span 3;
            padding-right: 60px;
        }

        .tile-container.art .tile:nth-child(n+7):nth-child(-n+8) {
            -ms-grid-column-span: 1;
            -ms-grid-column: 1;
            grid-column: 1 / span 1;
            -ms-grid-row-span: 1;
            position: absolute;
            width: 100%;
            padding-right: 60px;
        }

        .tile-container.art .tile:nth-child(7) {
            -ms-grid-row: 7;
            grid-row: 7;
            margin-top: -35px;
        }

        .tile-container.art .tile:nth-child(8) {
            -ms-grid-row: 10;
            grid-row: 10;
            margin-top: 50px;
        }

        .tile-container.art .tile:nth-child(n+2):nth-child(-n+6), .tile-container.art .tile:nth-child(n+9):nth-child(-n+12) {
            -ms-grid-column-span: 1;
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
            -ms-grid-row-span: 1;
        }

        .tile-container.art .tile:nth-child(2) {
            -ms-grid-row: 1;
            grid-row: 1;
        }

        .tile-container.art .tile:nth-child(3) {
            -ms-grid-row: 2;
            grid-row: 2;
        }

        .tile-container.art .tile:nth-child(4) {
            -ms-grid-row: 3;
            grid-row: 3;
        }

        .tile-container.art .tile:nth-child(5) {
            -ms-grid-row: 4;
            grid-row: 4;
        }

        .tile-container.art .tile:nth-child(6) {
            -ms-grid-row: 5;
            grid-row: 5;
        }

        .tile-container.art .tile:nth-child(9) {
            -ms-grid-row: 6;
            grid-row: 6;
            padding: 20px 0 0;
        }

            .tile-container.art .tile:nth-child(9) span.tile-heading {
                font-size: 1.8rem;
            }

        .tile-container.art .tile:nth-child(10) {
            -ms-grid-row: 7;
            grid-row: 7;
        }

        .tile-container.art .tile:nth-child(11) {
            -ms-grid-row: 8;
            grid-row: 8;
        }

        .tile-container.art .tile:nth-child(12) {
            -ms-grid-row: 9;
            grid-row: 9;
        }

        .tile-container.art .tile:nth-child(13) {
            -ms-grid-column: 2;
            grid-column: 2 / span 1;
        }
}

@media (min-width:900px) {
    .tile-container.art .tile:nth-child(7) {
        -ms-grid-row: 6;
        grid-row: 6;
        margin-top: -20px;
    }
}

@media (min-width:992px) {
    #nav-tiles.art {
        margin-bottom: 250px;
    }

    .tile-container.art {
        -ms-grid-columns: 65% 35%;
        grid-template-columns: 65% 35%;
    }

        .tile-container.art:before, .tile-container.art:after {
            width: calc(35% + 10px);
        }

        .tile-container.art:before {
            left: calc(65% - 10px);
        }

        .tile-container.art .tile:nth-child(7) {
            margin-top: -35px;
        }

        .tile-container.art .tile:nth-child(8) {
            -ms-grid-row: 10;
            grid-row: 10;
            margin-top: 20px;
        }
}

@media (min-width:1200px) {
    #nav-tiles.art {
        margin-bottom: 230px;
    }

    .tile-container.art .tile:nth-child(7) {
        margin-top: -70px;
    }

    .tile-container.art .tile:nth-child(8) {
        margin-top: 55px;
    }
}

@media all and (min-width:768px) and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .tile-container.art .tile:nth-child(n+7):nth-child(-n+8) {
        width: 60%;
    }

    .tile-container.art .tile:nth-child(13) {
        width: 40%;
    }
}

/*********************************
      weather
*********************************/
#AIS_LocationControlRight {
    display: none;
}

.hero-container.weather .container, .hero-container.weather .row {
    height: 100%;
}

#weather-form {
    width: 100%;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

    #weather-form h2 {
        margin-bottom: 1.5rem;
    }

    #weather-form input {
        display: inline-block;
    }

        #weather-form input[type="text"] {
            width: calc(100% - 112px);
            margin-right: 5px;
        }

        #weather-form input[type="submit"] {
            width: auto;
            background: #69be27;
            color: #fff;
            font-weight: bold;
            padding: 0 15px;
            margin-top: 0;
        }

/*********************************
      form elements
*********************************/
#calculator, #calculator > div {
    width: 100%;
    position: relative;
    font-size: 1.8rem;
}

.select-box-cont {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 46px;
    background-color: transparent;
    background-image: url(../images/dropdown.png);
    background-size: 54px 46px;
    background-position: right center;
    background-repeat: no-repeat;
    border-right: 1px solid #69be27;
    margin-bottom: 30px;
}

    .select-box-cont select {
        width: calc(100% + 30px);
        color: #000;
        background-color: transparent;
        height: 46px;
        line-height: 46px;
        border: 1px solid #69be27;
        margin: 0;
        padding: 0 70px 0 10px;
        border-radius: 0;
        -webkit-appearance: none;
        appearance: none;
        outline: none;
    }

        .select-box-cont select.error {
            border: 1px solid red;
        }

select::-ms-expand {
    display: none;
}

input[type="text"], input[type="password"], input[type="number"], input[type="email"] {
    width: 100%;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    background: #fff;
    border: none;
    border-bottom: 2px solid #69be27;
}

#contact input[type="text"], input[type="password"], input[type="number"], input[type="email"] {
    background: #f1f2f2;
}

textarea {
    display: block;
    width: 100%;
    background: #f1f2f2;
    border: none;
    border-bottom: 2px solid #69be27;
    padding: 10px;
    resize: none;
}

input[type="radio"] {
    display: none;
}

    input[type="radio"] + label {
        color: #f2f2f2;
    }

        input[type="radio"] + label span:first-child {
            display: inline-block;
            width: 52px;
            height: 31px;
            vertical-align: middle;
            background: #69be27;
            cursor: pointer;
        }

    input[type="radio"]:checked + label span:first-child {
        background: #69be27 url(../images/checkmark.svg) center center no-repeat;
    }

label {
    font-size: 1.6rem;
    display: block;
    text-align: left;
}

.checkbox-cont {
    display: inline-block;
    margin-left: 20px;
}

    .checkbox-cont:first-child {
        margin-left: 0;
    }

span.unit {
    display: block;
    color: #69be27;
    font-weight: bold;
    text-align: right;
    padding: 5px 5px 0 0;
}

.checkbox-cont span.unit {
    display: inline-block;
    padding: 0 0 0 10px;
}

.tile.calc-container p.tool-tip {
    position: relative;
    background: #006f35;
    font-size: 1.4rem;
    color: #fff;
    padding: 10px;
    margin-bottom: 0;
    z-index: 10;
    display: none;
}

p.tool-tip:before {
    content: "";
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 5px solid #006f35;
    position: absolute;
    top: -5px;
    right: 16px;
}

span.question {
    display: block;
    width: 22px;
    height: 22px;
    background-image: url(../images/question-mark.svg);
    background-repeat: no-repeat;
    position: absolute;
    top: 11px;
    right: 10px;
    cursor: pointer;
}

#pm-rate > div {
    position: relative;
}

#pm-rate span {
    font-size: 1.4rem;
    color: #7d7d7d;
    position: absolute;
    top: 36px;
    right: 10px;
}

label.error {
    color: red;
    font-size: 1.4rem;
    position: absolute;
    bottom: 0;
}

input.error {
    margin-bottom: 25px;
}

input[type="submit"] {
    width: 100%;
    background: #fff;
    height: 46px;
    line-height: 46px;
    border: none;
    margin-top: 30px;
}

.submit-outer {
    width: 100%;
    text-align: center;
}

.submit-inner {
    position: relative;
}

    .submit-inner:after {
        position: absolute;
        top: 50%;
        right: -30px;
        transform: translateY(-50%);
    }

#contact input[type="submit"] {
    margin-top: 0;
    font-weight: bold;
    font-size: 2.4rem;
}

@media (min-width:768px) {
    .submit-outer {
        width: 100%;
        text-align: right;
    }

    .submit-inner:after {
        right: 0;
    }

    #contact input[type="submit"] {
        font-size: 1.8rem;
        padding-right: 35px;
    }
}

#calculator-results {
    display: none;
    margin-top: 30px;
}

    #calculator-results.primo-maxx {
        margin-top: 0;
    }

    #calculator-results .results-container {
        background: #fff;
        padding: 15px;
    }

        #calculator-results .results-container.secondary, #calculator-results .results-container.third {
            display: none;
            margin-top: 15px;
        }

    #calculator-results span.arrow {
        display: block;
        font-size: 2.4rem;
        color: #69be27;
        text-align: center;
        transform: rotate(90deg);
        margin-bottom: 30px;
    }

    #calculator-results p {
        margin: 1.5rem 0 0;
    }

        #calculator-results p:first-child {
            margin-top: 0;
        }

    #calculator-results.active-ingredients strong {
        display: inline;
        color: #000;
        margin: 0;
    }

#ai-calculator + #calculator-results strong {
    display: block;
    font-size: 1.8rem;
    font-weight: bold;
    color: #007035;
}

#ai-calculator + #calculator-results span {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    color: #69be27;
    margin-top: 5px;
}

    #ai-calculator + #calculator-results span.ai {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }

#calculator-results .result {
    margin-top: 30px;
}

    #calculator-results .result:first-child {
        margin-top: 0;
    }

    #calculator-results .result span {
        display: block;
        font-size: 3rem;
        font-weight: bold;
        margin-top: 1rem;
    }

/*********************************
      featured news
*********************************/
#featured-news {
    background: #f1f2f2;
}

/*********************************
      social
*********************************/
#connect {
    padding-bottom: 0;
}

    #connect .col-lg-4 {
        margin-top: 30px;
    }

        #connect .col-lg-4:first-child {
            margin-top: 0;
        }

.twitter-post {
    background: #f1f2f2;
    font-style: italic;
    padding: 15px 20px;
    border-bottom: 10px solid #69be27;
}

    .twitter-post video {
        height: 174px;
        width: 300px;
    }

.tweet-heading {
    margin-bottom: 1rem;
    padding-left: 45px;
    position: relative;
}

    /*.tweet-heading:before {
    content: "";
    display: block;
    width: 29px;
    height: 25px;
    background: url(../images/twitter.svg);
    background-size: cover;
    background-repeat: no-repeat;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}*/

    .tweet-heading img {
        content: "";
        display: block;
        width: 40px;
        height: 40px;
        background: url(../images/twitter.svg);
        background-size: cover;
        background-repeat: no-repeat;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        border-radius: 50%;
    }

.tweet-stats {
    margin-top: 1rem;
    color: #69be27;
    font-style: italic;
    text-align: right;
}

.connect-links a {
    margin: 20px 0;
    font-size: 1.8rem;
}

    .connect-links a:first-child {
        margin-bottom: 0;
    }

@media (min-width:768px) {
    .connect-links a {
        font-size: 1.6rem;
    }
}

@media (min-width:992px) {
    #connect .col-lg-4 {
        margin-top: 0;
    }

    #connect .read-more {
        text-align: center;
    }

    .tweet-stats {
        text-align: center;
    }
}

/*********************************
      product detail
*********************************/
section#product-detail {
    padding-bottom: 0;
}

#product-detail h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    width: 50%;
}

    #product-detail h1 span {
        font-size: 1.4rem;
    }

.product-header {
    position: relative;
    border-bottom: 5px solid #006937;
    padding-top: 30px;
}

    .product-header img {
        height: 50px;
        position: absolute;
        right: 0;
        bottom: 10px;
    }

.product-sidebar {
    margin: 30px 0;
    color: #212121;
}

.info-section {
    margin-top: 15px;
}

    .info-section:first-child {
        margin-top: 0;
    }

.info-heading {
    background: #f1f2f2;
    font-size: 1.8rem;
    color: #006937;
    font-weight: bold;
    padding: 10px 15px;
    position: relative;
    cursor: pointer;
}

    .info-heading:before {
        content: "►";
        font-size: 1.6rem;
        color: #dbdbdb;
        position: absolute;
        top: 50%;
        right: 15px;
        transform: translateY(-50%);
    }

    .info-heading.open:before {
        display: none;
    }

    .info-heading:after {
        content: "";
        display: block;
        height: 100%;
        width: 8px;
        background: #006937;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transition: all .3s;
        transition: all .3s;
    }

    .info-heading.open:after {
        transform: rotate(90deg);
    }

.info-content {
    padding: 20px 15px;
    display: none;
}

    .info-content ul {
        padding-left: 20px;
        margin-bottom: 0;
    }

    .info-content p {
        margin-top: 1rem;
        margin-bottom: 0;
    }

        .info-content p:first-child {
            margin-top: 0;
        }

p.disclaimer {
    padding-top: 30px;
}

.download-container {
    display: table;
    width: 100%;
    max-width: 350px;
    table-layout: fixed;
    background: #eee;
    padding: 20px 0;
}

.download {
    display: table-cell;
    text-align: center;
    position: relative;
}

    .download:before {
        content: "";
        display: block;
        width: 6px;
        height: 100%;
        background: #fff;
        position: absolute;
        left: -3px;
        top: 0;
    }

    .download:first-child {
        margin-left: 0;
    }

        .download:first-child:before {
            display: none;
        }

    .download i {
        display: block;
        max-width: 100%;
        background-repeat: no-repeat;
        background-size: cover;
        margin: 0 auto 10px;
    }

    .download.label i {
        width: 46px;
        height: 58px;
        background-image: url(../images/tiles/guide.svg);
    }

    .download.msds i {
        width: 53px;
        height: 53px;
        background-image: url(../images/tiles/bulletins.svg);
    }

.product-sidebar h3 {
    margin: 30px 0 10px;
}

.product-info #Add_Res_print {
    display: none;
}

.tile.resource {
    flex-flow: wrap;
    justify-content: left;
}

    .tile.resource img, .tile.resource span {
        display: inline-block;
    }

    .tile.resource a {
        text-decoration: none;
    }

    .tile.resource img {
        width: 28px;
        margin: 0 25px 0 0;
    }

    .tile.resource:before {
        content: "";
        display: block;
        width: 80%;
        height: 4px;
        background: #fff;
        position: absolute;
        top: -2px;
        left: 10%;
    }

    .tile.resource:first-child {
        background-color: #ebebeb;
    }

        .tile.resource:first-child:before {
            display: none;
        }

@media (min-width:768px) {
    #product-detail h1 {
        font-size: 2.5rem;
        width: 100%;
    }

        #product-detail h1 span {
            font-size: 1.8rem;
        }

    .product-header img {
        height: 62px;
    }

    .product-info, .product-sidebar {
        margin: 30px 0 0;
    }

    .download-container, .additional-resources {
        max-width: 400px;
    }
}

@media (min-width:280px) and (max-width:767px) {

    #btnPrint {
        display: none;
    }

    .product-info #Add_Res_print {
        display: block;
    }

    .product-sidebar #Add_Res {
        display: none;
    }
}

/*********************************
  weather
*********************************/
#weather h2 {
    margin-bottom: 0;
}

#weather .row:first-child {
    position: relative;
}

.print-button {
    position: absolute;
    right: 15px;
    top: 5px;
    cursor: pointer;
}

    .print-button img {
        width: 45px;
        height: 45px;
    }

@media (min-width:768px) {
    #weather .row:first-child .col-md-6 {
        text-align: right;
    }

        #weather .row:first-child .col-md-6:first-child {
            text-align: left;
        }

        #weather .row:first-child .col-md-6 p {
            padding-right: 60px;
        }

        #weather .row:first-child .col-md-6:first-child p {
            padding-right: 0;
        }
}

/*********************************
  footer
*********************************/
footer {
    margin-bottom: 30px;
    font-size: 1.4rem;
}

    footer hr {
        border-top: 1px solid black;
        margin: 30px 0;
        display: none;
    }

    footer .col-7 {
        text-align: right;
    }

    footer .row.legal {
        font-size: 1.3rem;
    }

    footer .col-md-8 ul {
        text-align: center;
    }

    footer .col-md-8 li {
        margin-top: 10px;
    }

    footer ul {
        margin: 0;
        padding: 0;
        list-style-type: none;
    }

        footer ul li {
            display: inline-block;
            margin-right: -4px;
        }

            footer ul li:before {
                content: "|";
                display: inline-block;
                padding: 0 5px;
            }

            footer ul li:first-child:before {
                display: none;
            }

            footer ul li a {
                display: inline-block;
                color: #000;
                vertical-align: middle;
                text-decoration: none;
            }

                footer ul li a:hover {
                    color: #000;
                }

                footer ul li a.twitter-link {
                    width: 20px;
                    height: 20.5px;
                    background: url(../images/twitter.svg) no-repeat;
                    background-size: cover;
                }

                footer ul li a.youtube-link {
                    width: 25px;
                    height: 17px;
                    background: url(../images/youtube.svg) no-repeat;
                    background-size: cover;
                }

    footer .turf-app div {
        display: inline-block;
    }

    footer .turf-app .app-store, footer .turf-app .play-store {
        height: 39px;
    }

    footer .turf-app div:first-child {
        display: block;
    }

    footer .turf-app div:nth-child(3) {
        margin-left: 10px;
    }

    footer .turf-app div strong {
        font-size: 1.8rem;
        color: #69be27;
    }

    footer .turf-app div img {
        height: 100%;
    }

    footer .row.legal {
        margin-top: 15px;
    }

@media (min-width:576px) {
    footer ul.social-links {
        font-size: 1.8rem;
        font-weight: bold;
    }

    footer .row.legal {
        font-size: 1.5rem;
    }

    footer ul li:before {
        padding: 0 10px;
    }
}

@media (min-width:768px) {
    footer .col-md-8 {
        text-align: right;
    }

    footer .row.legal {
        font-size: 1.6rem;
    }

    footer .col-md-8 ul {
        text-align: right;
    }

    footer .col-md-8 li {
        margin-top: 0;
    }

    footer hr {
        display: block;
    }

    footer .turf-app div {
        display: inline-block;
        margin-left: 16px !important;
    }

        footer .turf-app div:first-child {
            display: inline-block;
            margin-left: 0;
        }

        footer .turf-app div strong {
            font-size: 1.6rem;
        }

    footer .turf-app .app-store, footer .turf-app .play-store {
        height: 28px;
    }
}
@media only screen and (max-width: 767px) {
    footer ul li a.twitter-link{
        height: 20px !important;
        width: 19px !important;
    }
}

    /*********************************
  bootstrap overrides
*********************************/

    .row {
        min-width: 100%;
        /*margin-right: 0px;
    margin-left: 0px;*/
    }

    @media (min-width:576px) {
        .container {
            max-width: 100%;
        }
    }

    @media (min-width:992px) {
        .container {
            max-width: 960px;
        }
    }

    @media (min-width:1200px) {
        .container {
            max-width: 1140px;
        }
    }

    .loader {
        border: 5px solid #f3f3f3;
        border-radius: 50%;
        border-top: 5px solid #69be27;
        width: 50px;
        height: 50px;
        -webkit-animation: spin 2s linear infinite; /* Safari */
        animation: spin 2s linear infinite;
        margin-left: 50%;
        position: absolute;
    }

    /* Safari */
    @-webkit-keyframes spin {
        0% {
            -webkit-transform: rotate(0deg);
        }

        100% {
            -webkit-transform: rotate(360deg);
        }
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }


    .print_header_div {
        width: 84%;
        float: left;
        padding-right: 9px;
    }

        .print_header_div .print_header {
            padding-top: 25px !important;
            display: inline-block;
            font-size: 25px !important;
        }

    .print_main_div #ProdTitle {
        display: inline !important;
    }

    .product-header.print_main_div img {
        height: 60px;
        position: inherit;
        right: 0;
        /* bottom: 14px; */
        float: right;
        margin-bottom: -2px;
    }


    .print_main_div #AppLogo {
        width: 16% !important;
    }

    /* margin classes */
    .mb-0 {
        margin-bottom: 0 !important;
    }



    .blog-feed-header {
        padding: 120px 20px;
        background-size: cover;
        color: white;
        text-align: center;
    }

        .blog-feed-header h1 {
            font-size: 40px;
            font-weight: bold;
            line-height: 50px;
            color: white;
        }

        .blog-feed-header p {
            font-size: 17px;
            line-height: 23px;
            color: white;
        }

    #divArticles a {
        color: #282828 !important;
    }
    #divRelatedContent a {
        color: #282828 !important;
    }