﻿div, section {
    position: relative;
}

a.btn-default {
    display: block;
    color: #fff;
    background: #00558c;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    padding: 7px 18px;
    border-color: #00558c;
    border-width: 2px;
    border-style: solid;
    -webkit-transition: all .25s;
    transition: all .25s;
    width: 100%;
    text-align: center;
    -webkit-box-shadow: 0px 2px 11px 1px rgba(102, 102, 102, 0.5);
    box-shadow: 0px 2px 11px 1px rgba(102, 102, 102, 0.5);
}

    a.btn-default:hover {
        background: #fff;
        color: #00558c;
        -webkit-box-shadow: none;
        box-shadow: none;
    }


#hero-cont {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: none;
    margin-top: -14px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://assets.syngentaebiz.com/images/media/syn-us-hero-all-products.jpg');
}

#copy-block {
    color: #000;
}

    #copy-block .cb-main {
        padding-top: 0;
        padding-bottom: 20px;
    }

    #copy-block .copy-all {
        display: block;
    }


.herbicides #copy-block .copy-herbicides {
    display: block;
}

.herbicides #hero-cont {
    background-image: url(../img/hero_herbicide.jpg);
}

.fungicides #copy-block .copy-fungicides {
    display: block;
}

.fungicides #hero-cont {
    background-image: url(../img/hero_fungicide.jpg);
}

.insecticides #copy-block .copy-insecticides {
    display: block;
}

.insecticides #hero-cont {
    background-image: url(../img/hero_insecticide.jpg);
}

.seed-treatments #copy-block .copy-seed-treatments {
    display: block;
}

.seed-treatments #hero-cont {
    background-image: url(../img/hero_seedtreatment.jpg);
}

#copy-block .copy-herbicides,
#copy-block .copy-fungicides,
#copy-block .copy-insecticides,
#copy-block .copy-seed-treatments,
.herbicides #copy-block .copy-all,
.fungicides #copy-block .copy-all,
.insecticides #copy-block .copy-all,
.seed-treatments #copy-block .copy-all {
    display: none;
}


#copy-block h1 {
    font-size: 35px;
    line-height: 42px;
    font-weight: 700;
    color: #000;
    letter-spacing: -1px;
    margin: 0 0 10px;
}

#copy-block h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

#copy-block p {
    font-size: 16px;
    line-height: 24px;
    color: #000;
}

#pr-filters {
    background-color: #e6e6e6;
    padding: 20px;
}

    #pr-filters h4 {
        font-size: 18px;
        line-height: 20px;
        font-weight: 700;
        color: #000;
        margin: 0 0 15px;
    }

    #pr-filters .single-filter-cont {
        display: block;
        width: 100%;
        margin-bottom: 7px;
    }

        #pr-filters .single-filter-cont label {
            display: block;
            font-size: 11px;
            line-height: 18px;
            font-weight: 700;
            color: #000;
        }

.filter-btns-cont {
    margin-top:7px;
}

button#clear-all-filters,
button#clear-all-filters:focus,
button#clear-all-filters:active {
    border: none;
    background: transparent;
    font-weight: 700;
    font-size: 14px;
    padding: 5px 10px;
    margin:0 15px 5px 0;
    background-color:#ccc;
    cursor: pointer;
    outline: none;
}

    button#clear-all-filters:hover {
        opacity: .5;
    }

    button#clear-all-filters::after {
        content: 'X';
        padding-left: 10px;
    }


a.btn-all-prod,
a.btn-all-prod:focus,
a.btn-all-prod:active {
    display: none;
    color: #fff;
    background: #00558c;
    text-decoration: none;
    font-weight: 700;
    font-size: 13px;
    padding: 3px 10px;
    border-color: #00558c;
    border-width: 2px;
    border-style: solid;
    -webkit-transition: all .25s;
    transition: all .25s;
    width: auto;
    text-align: center;
    -webkit-box-shadow: 0px 2px 11px 1px rgba(102, 102, 102, 0.5);
    box-shadow: 0px 2px 11px 1px rgba(102, 102, 102, 0.5);
}

    a.btn-all-prod:hover {
        background: #fff;
        color: #00558c;
        -webkit-box-shadow: none;
        box-shadow: none;
    }

#loading-results {
    height: 400px;
}

    #loading-results .load-label {
        font-size: 22px;
        font-weight: 700;
        display: inline-block;
    }

    #loading-results .lds-ellipsis {
        display: inline-block;
        position: relative;
        width: 80px;
        height: 40px;
    }

        #loading-results .lds-ellipsis div {
            position: absolute;
            top: 33px;
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #000;
            animation-timing-function: cubic-bezier(0, 1, 1, 0);
        }

            #loading-results .lds-ellipsis div:nth-child(1) {
                left: 8px;
                animation: lds-ellipsis1 0.6s infinite;
            }

            #loading-results .lds-ellipsis div:nth-child(2) {
                left: 8px;
                animation: lds-ellipsis2 0.6s infinite;
            }

            #loading-results .lds-ellipsis div:nth-child(3) {
                left: 32px;
                animation: lds-ellipsis2 0.6s infinite;
            }

            #loading-results .lds-ellipsis div:nth-child(4) {
                left: 56px;
                animation: lds-ellipsis3 0.6s infinite;
            }

@keyframes lds-ellipsis1 {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

@keyframes lds-ellipsis3 {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(0);
    }
}

@keyframes lds-ellipsis2 {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(24px, 0);
    }
}



#pr-result-all {
    padding: 25px 0;
    display: none;
}

.pr-results-count {
    font-size: 16px;
    font-weight: 700;
    color: #000;
    margin-bottom: 15px;
}

.view-box {
    display: none;
}

.product-single {
    background-color: #fff;
    border: 1px solid #000;
    padding: 18px;
    color: #000;
    margin-bottom: 15px;
}

    .product-single.featured {
        background-color: #f5f5f5;
    }

    .product-single .expander {
        position: absolute;
        top: 15px;
        right: 5px;
        font-size: 30px;
        line-height: 40px;
        padding: 0 8px;
        font-weight: 700;
        z-index: 500;
        cursor: pointer;
    }

        .product-single .expander:hover {
            opacity: .4;
        }

        .product-single .expander .minus {
            display: none;
        }

    .product-single .logo {
        margin-bottom: 5px;
    }

        .product-single .logo img {
            height: 50px;
            margin-left: -10px;
            max-width: 92%;
        }

        .product-single .logo h4 {
            font-size: 22px;
            line-height: 50px;
            padding: 0;
            color: #000;
            margin: 0;
        }

    .product-single p {
        font-size: 16px;
        font-weight: 400;
        line-height: 24px;
        margin: 0 0 15px;
        padding: 0;
        color: #000;
    }

        .product-single p .title {
            font-size: 18px;
            font-weight: 700;
            line-height: 22px;
            margin: 0;
            padding: 0;
            color: #000;
            display: block;
        }


    .product-single .pr-info {
        overflow: hidden;
        height: 138px;
    }

    .product-single.featured .pr-info {
        height: 113px;
    }

    .product-single .fade-out {
        display: block;
        height: 60px;
        margin-top: -60px;
        background: -moz-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
        background: -ms-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #ffffff));
        background: -webkit-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
        background: -o-linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr='#000000');
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr='#000000')";
        background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,1));
        z-index: 1;
        opacity: 1;
        -webkit-transition: opacity .25s;
    }

        .product-single .fade-out:hover {
            opacity: .5;
            cursor: pointer;
        }

    .product-single.open .expander {
    }

        .product-single.open .expander .minus {
            display: block;
        }

        .product-single.open .expander .plus,
        .product-single.open .fade-out {
            display: none;
        }

    .product-single.open .pr-info {
        height: auto;
    }

    .product-single .featured-flag {
        display: none;
    }

    .product-single.featured .featured-flag {
        display: block;
        position: absolute;
        top: 10px;
        left: -10px;
        padding: 5px 15px;
        background-color: #818181;
        color: #fff;
        font-weight: 700;
        font-size: 12px;
        line-height: 14px
    }

    .product-single.featured .logo {
        margin-top: 25px;
    }

    .product-single.featured .fade-out {
        background: -moz-linear-gradient(rgba(255,255,255,0), rgba(245,245,245,1));
        background: -ms-linear-gradient(rgba(255,255,255,0), rgba(245,245,245,1));
        background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #000000), color-stop(100%, #f5f5f5));
        background: -webkit-linear-gradient(rgba(255,255,255,0), rgba(245,245,245,1));
        background: -o-linear-gradient(rgba(255,255,255,0), rgba(245,245,245,1));
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr='#f5f5f5');
        -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr=transparent, endColorstr='#f5f5f5')";
        background: linear-gradient(rgba(255,255,255,0), rgba(245,245,245,1));
        background: linear-gradient(rgba(255,255,255,0), rgba(245,245,245,1));
        z-index: 1;
    }

#helpline {
}

    #helpline h3 {
        color: #00558c;
        margin-bottom: 8px;
    }

        #helpline h3 a {
            color: #00558c;
            text-decoration: none;
        }

            #helpline h3 a:hover {
                opacity: .5;
            }

    #helpline p a {
        color: #000;
    }

        #helpline p a:hover {
            opacity: .5;
        }

.reff-btn-cont {
    margin: -10px 0 20px 0;
    display: none;
}

    .reff-btn-cont .btn-default {
        color: #000;
        background: #fff;
        border-color: #000;
    }

        .reff-btn-cont .btn-default:hover {
            color: #fff;
            background: #000;
            border-color: #000;
        }


p.legal {
    font-size: 12px;
    line-height: 14px;
    color: #000;
    margin: 18px 0 0;
}


/********************
    restyle select2    
************************/
.select2-selection__rendered {
    font-size: 14px;
    font-weight: 700;
}

.select2-results__option {
    font-size: 15px;
    line-height: 17px;
    margin: 0;
}

@media (min-width: 525px) {
    #hero-cont {
        display: block;
    }

    #copy-block .cb-main {
        padding-top: 20px;
    }
}

@media (min-width: 768px) {
    #pr-filters .single-filter-cont {
        display: inline-block;
        width: 18.5%;
        margin-bottom: 7px;
    }

    #pr-filters h4 {
        width: 50%;
    }
    /* fix this down the road for select drop width */
    .bigdrop {
        width: 300px !important;
    }

    .reff-btn-cont {
        margin: 60px 0 0 0;
    }

    .filter-btns-cont {
       position:absolute;
       right: 0;
       width: auto;
       margin-top:0;
       padding:0;
       z-index:100;
    }
}

@media (min-width: 992px) {
    #copy-block h1 {
        font-size: 48px;
        line-height: 56px;
        font-weight: 400;
    }
    /*#copy-block p {
        width:80%;
    }*/


    .view-box {
        display: block;
        width: 127px;
        position: absolute;
        top: 0;
        right: 0
    }

        .view-box .grid,
        .view-box .list,
        .view-box .link {
            display: inline-block;
            height: 30px;
            width: 30px;
            margin: 2px;
            cursor: pointer;
            opacity: .3;
        }

            .view-box .grid:hover,
            .view-box .list:hover,
            .view-box .link:hover {
                opacity: .5;
            }

            .view-box .grid.active,
            .view-box .list.active,
            .view-box .link.active {
                cursor: default;
                opacity: 1;
            }



    /*****  list view avalible on 992 and up  *****/

    .list-view .product-single {
        display: flex;
        padding: 18px 18px 0 18px;
    }

        .list-view .product-single .logo {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 23%;
        }

            .list-view .product-single .logo img {
                height: 40px;
                margin-bottom: 0;
            }

        .list-view .product-single .pr-info {
            flex-grow: 0;
            flex-shrink: 0;
            flex-basis: 50%;
            height: 95px;
        }

        .list-view .product-single a.btn-default {
            position: absolute;
            right: 50px;
            top: 16px;
            width: 202px;
            height: 44px;
        }

        .list-view .product-single .fade-out {
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
        }

        .list-view .product-single.open .pr-info {
            height: auto;
            margin-bottom: 15px;
        }

        .list-view .product-single p .title {
            font-size: 16px;
            display: inline-block;
        }

        .list-view .product-single p {
            margin: 0 0 5px;
        }


    /*****  Link view avalible on 992 and up  *****/

    .link-view #prods ul {
        columns: 3;
        -webkit-columns: 3;
        -moz-columns: 3;
        list-style: none;
        padding-left: 0;
        margin: 0;
    }

        .link-view #prods ul li a:hover {
            color: #000;
        }

    #pr-filters h4 {
        width: 80%;
        margin: 0 0 24px;
    }
}

@media (min-width: 1200px) {
    .link-view #prods ul {
        columns: 4;
        -webkit-columns: 4;
        -moz-columns: 4;
    }
}


/*****  Label page addition 12/22/20  *****/

#hero-label-cont {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: none;
    margin-top: -14px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url('https://assets.syngentaebiz.com/images/media/syn-us-hero-labels.jpg');
}


#label-initial-load {
    padding: 25px 0;
}

.fake-prod {
    background-color: #fff;
    border: 1px solid #000;
    color: #000;
    width: 100%;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}


    .fake-prod img {
        width: 130px;
        height: 130px;
    }

.tt-product-type {
    display: none;
    background-color: #fff;
    border: 1px solid #000;
    font-size: 12px;
    color: #000;
    line-height: 15px;
    padding: 10px;
    font-weight: 700;
    position: absolute;
    top: -52px;
    left: 0;
    width: 210px;
    border-radius: 6px;
}

.tri-right:before {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 80px;
    right: auto;
    top: auto;
    bottom: -20px;
    border: 10px solid;
    border-color: #000 transparent transparent #000;
}

.tri-right:after {
    content: ' ';
    position: absolute;
    width: 0;
    height: 0;
    left: 81px;
    right: auto;
    top: auto;
    bottom: -18px;
    border: 9px solid;
    border-color: #fff transparent transparent #fff;
}


@media (min-width: 525px) {
    #hero-label-cont {
        display: block;
    }
}
