
/* global styles */
.timeline__wrapper {
    background-color: #f2f7d5;
    padding-bottom: 50px;
}

@media (min-width: 768px) {
    .timeline__wrapper .crux-container {
        padding: 0;
    }
}

.timeline__wrapper .crux-label-style--regular {
    border-top: 5px solid #000;
    padding-top: 15px;
    margin-bottom: 40px;
    display: inline-block;
}

.timeline__wrapper .crux-section-header--small {
    margin-bottom: 50px;
}

.timeline__container {
    position: relative;
}

.timeline__wrapper .timeline__button {
    position: absolute;
    top: 154px;
    border: 0;
    background-color: transparent;
    height: 30px;
    width: 30px;
    padding: 0;
    font-size: 30px;
}

.timeline__wrapper .timeline__button[disabled],
.timeline__wrapper .timeline__button[disabled]:hover {
    color: #C8C8C8;
}

.timeline__wrapper .timeline__button:hover {
    color: #00AE4D;
}

.timeline__button.timeline__button--left {
    left: -8px;
}

.timeline__button.timeline__button--right {
    right: -8px;
}

.timeline__items {
    height: 339px;
    margin: 0 30px;
    padding: 0 10px;
    position: relative;
    white-space: nowrap;
    overflow: hidden;
    background: linear-gradient(to bottom, transparent 48.5%, black 49%, black 50%, transparent 50.5%);
    will-change: scroll-position;
    transform: translate3d(0, 0, 0);
}

@media (max-width: 1199px) {
    .timeline__wrapper {
        padding-bottom: 27px;
    }

    .timeline__wrapper .crux-section-header--small {
        margin-bottom: 12px;
    }

    .timeline__items {
        height: 385px;
        padding: 0 2px;
    }


    .timeline__wrapper .timeline__button {
        top: 176px
    }
}

@media (max-width: 767px) {

    .timeline__wrapper {
        padding-bottom: 40px;
    }

    .timeline__wrapper .crux-label-style--regular {
        margin-bottom: 24px;
    }

    .timeline__wrapper .crux-section-header--small {
        margin-bottom: 25px;
    }

    .timeline__wrapper .timeline__button {
        display: none;
    }

    .timeline__items:before {
        content: '';
        width: 5px;
        min-height: 100%;
        position: absolute;
        background-color: black;
        left: 45px;
    }
}
/* global styles */

/* item styles */

/* common */
.timelineItem-cq-wrapper {
    width: 235px;
    margin-right: 46px;
    display: inline-block;
    position: relative;
    min-height: 339px;
    vertical-align: top;
    will-change: scroll-position;
    transform: translate3d(0, 0, 0);
}

.timelineItem-cq-wrapper:hover {
    z-index: 1;
}

.timelineItem-cq-wrapper:last-child {
    margin-right: 0;
}

.timelineItem__title-block {
    margin-left: 65px;
    white-space: normal;
}

.timelineItem__title-block:before {
    content: "";
    display: block;
    width: 1px;
    height: 40px;
    position: absolute;
    border: 6px solid #f2f7d5;
    border-top-width: 0;
    z-index: 1;
    background-color: #000;
    left: 5px;
}

.timelineItem__description-block {
    display: none;
}

.timelineItem p {
    margin: 0;
}

/* odd without image */
.timelineItem-cq-wrapper:nth-child(odd) .timelineItem__title-block:before {
    top: -50px;
}

.timelineItem-cq-wrapper:nth-child(odd) .timelineItem__title-block {
    position: absolute;
    top: 215px;
}

.timelineItem__img {
    width: 145px;
    height: 145px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* odd with image */
.timelineItem-cq-wrapper:nth-child(odd) .image .timelineItem__img {
    margin-bottom: 70px;
}

/* even without image */
.timelineItem-cq-wrapper:nth-child(even) .timelineItem__title-block {
    position: absolute;
    bottom: 212px;
}

.timelineItem-cq-wrapper:nth-child(even) .timelineItem__title-block:before {
    bottom: -50px;
}

/* odd with image */
.timelineItem-cq-wrapper:nth-child(even) .image .timelineItem__img {
    position: absolute;
    bottom: 3px;
}

@media (min-width: 1199px) {
    .timelineItem__title-block {
        margin-left: 64px;
    }

    /* description */
    .timelineItem__description-block:hover,
    .timelineItem__img:hover ~ .timelineItem__description-block,
    .timelineItem__title-block:hover ~ .timelineItem__description-block {
        display: block;
    }

    .timelineItem__description-block {
        width: 295px;
        height: 336px;
        padding: 25px 30px;
        background-color: #ffffff;
        position: absolute;
        top: 0;
        z-index: 2;
        white-space: normal;
    }

    .timelineItem__description-block .crux-body-copy.crux-body-copy--small {
        margin-top: 10px;
    }

    .timelineItem__description-block .timelineItem__title {
        width: 175px;
    }

    .timelineItem__description-block .timelineItem__description {
        width: 235px;
    }

    .timelineItem--last .timelineItem__description-block {
        right: 0;
    }

    .timelineItem__description-block .border {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        z-index: 1;
    }
    .timelineItem__description-block .border:first-child:before {
        position: absolute;
        display: block;
        content: '';
        background-color: #000;
        width: 0%;
        height: 1px;
        top: 0;
        left: 0;
        z-index: 1;
        transition: all 250ms ease-out 200ms;
    }
    .timelineItem__description-block .border:first-child:after {
        position: absolute;
        display: block;
        content: '';
        background-color: #000;
        width: 1px;
        height: 0;
        top: 0;
        right: 0;
        z-index: 1;
        transition: all 50ms linear 150ms;
    }
    .timelineItem__description-block .border:last-child:before {
        position: absolute;
        display: block;
        content: '';
        background-color: #000;
        width: 0%;
        height: 1px;
        bottom: 0;
        right: 0;
        z-index: 1;
        transition: all 50ms linear 100ms;
    }
    .timelineItem__description-block .border:last-child:after {
        position: absolute;
        display: block;
        content: '';
        background-color: #000;
        width: 1px;
        height: 0;
        bottom: 0;
        left: 0;
        z-index: 1;
        transition: all 100ms ease-in;
    }
    .timelineItem__description-block .content {
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: center;
        background: white;
        z-index: 3;
    }
    .timelineItem__description-block:hover .border:first-child:before {
        width: 100%;
        transition: all 150ms ease-in;
    }
    .timelineItem__description-block:hover .border:first-child:after {
        height: 100%;
        transition: all 200ms linear 150ms;
    }
    .timelineItem__description-block:hover .border:last-child:before {
        width: 100%;
        transition: all 150ms linear 350ms;
    }
    .timelineItem__description-block:hover .border:last-child:after {
        height: 100%;
        transition: all 200ms ease-out 500ms;
    }
}

@media (max-width: 1199px) {
    .timelineItem-cq-wrapper {
        width: 192px;
        margin-right: 45px;
        top: 20px;
    }

    .timelineItem-cq-wrapper:nth-child(odd) .timelineItem__title-block {
        top: 217px
    }

    .timelineItem-cq-wrapper:nth-child(even) .timelineItem__title-block {
        bottom: 210px;
    }

    .timelineItem__description-block {
        height: 365px;
    }
}

@media (max-width: 767px) {
    .timelineItem-cq-wrapper {
        top: 0;
    }

    .timeline__items {
        height: 100%;
        width: 100%;
        overflow: initial;
        background: none;
        white-space: normal;
        margin: 0;
        padding: 0;
        display: flex;
        flex-direction: column-reverse;
    }

    .timeline__items:before {
        content: '';
        width: 5px;
        min-height: calc(100% + 10px);
        position: absolute;
        background-color: black;
        left: 50px;
        top: 5px;
    }

    .timeline__items .timelineItem__img,
    .timeline__items .timelineItem__description-block,
    .timeline__items .timelineItem__title-block:before {
        display: none!important; /* lazyloading sets inline style */
    }

    .timelineItem-cq-wrapper {
        min-height: 0;
        width: 100%;
        margin: 30px 0 0;
    }

    .timelineItem__title-block > * {
        display: inline-block;
        vertical-align: top;
    }

    .timelineItem__date span {
        width: 45px;
        display: inline-block;
    }

    .timelineItem__date:after {
        content: "";
        display: inline-block;
        width: 26px;
        height: 1px;
        position: static;
        border: 6px solid #f2f7d5;
        border-left-width: 5px;
        border-right-width: 5px;
        z-index: 1;
        background-color: #000;
        min-height: 0;
        margin-left: 0;
    }

    .timelineItem-cq-wrapper .timelineItem .timelineItem__title-block {
        position: static;
        margin: 0;
    }

    .timelineItem__title {
        width: calc(100% - 85px);
    }

    .timelineItem__title-block > * {
        display: inline-block;
    }

    .timelineItem__description-block {
        height: 375px;
    }

}
/* item styles */

/* edit mode */
.timeline__items.ui-sortable > div:not(.timelineItem-cq-wrapper) {
    display: none;
}

.ui-sortable .timelineItem__description-block:hover,
.ui-sortable .timelineItem__img:hover ~ .timelineItem__description-block,
.ui-sortable .timelineItem__title-block:hover ~ .timelineItem__description-block {
    display: none;
}

.timeline__wrapper .add-product-form {
    display: block;
    clear: both;
}

/* odd without image */
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 1) .timelineItem__title-block:before,
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 2) .timelineItem__title-block:before {
    top: -50px;
}

.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 1) .timelineItem__title-block,
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 2) .timelineItem__title-block {
    position: absolute;
    top: 215px;
}

/* odd with image */
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 1) .image .timelineItem__img,
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 2) .image .timelineItem__img {
    margin-bottom: 70px;
    position: static;
}

/* even without image */
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 3) .timelineItem__title-block,
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 4) .timelineItem__title-block {
    position: absolute;
    bottom: 212px;
}

.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 3) .timelineItem__title-block:before,
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 4) .timelineItem__title-block:before {
    bottom: -50px;
}

/* odd with image */
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 3) .image .timelineItem__img,
.ui-sortable .timelineItem-cq-wrapper:nth-child(4n + 4) .image .timelineItem__img {
    position: absolute;
    bottom: 0;
}

/* Start Product Item */
.productItem {
    /*height:350px;*/
}
.productItem .overlay {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    background: #000;
    background: rgba(0,0,0,.3);
    height: 100%;
    width: 100%;
    display: none;
    z-index: 10;
}

.productItem .hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 5;
}

@media (max-width: 991px) {
    .productItem .hover-bg img {
        height: 350px;
    }
}

@media (min-width: 992px) {
    .productItem .hover-bg img {
        max-width: 280px;
        /*height: 375px;*/
       /* width: 100%;*/
    }
}

/* End Product Item */
/* Start Product Item */

.productCardsSmall--wrapper {
    margin-top: 0;
    margin-bottom: 60px;
}

.productItemSmall {
    background-color: white;
    margin-top: 50px;
}

.productItemSmall-container .a-z-item h4 a {
    color: #078fd4;
}

.productItemSmall:hover {
    cursor: pointer;
}

.productItemSmall .poster-img {
    width: 110px;
    min-height: 35px;
    max-height: 80px;
    display: inline-block;
    vertical-align: top;
}


.productItemSmall h4 a {
    color: black;
    text-transform: capitalize;
}


.productItemSmall span {
    color: black;
    font-size: 18px;
    font-weight: 200;
    line-height: 1.6;
}


.productItemDescription {
    padding-left: 30px;
    display: inline-block;
    vertical-align: middle;
    width: 68%;
}

.productItemDescription a:hover {
    text-decoration: none;
}

.productItemSmall:hover h4 {
    color: #00ae4d;
}

.productItemDescription h4 {
    padding-bottom: 5px;
    margin-bottom: 0;
    text-transform: capitalize;
}
.productItemBg{
    margin-left: 143px;
}

.productItemNoRatings{
    margin-top: -35px;
}
@media only screen and (max-width: 1199px){
    .productItemDescription {
        width: 65%;
    }
}

@media only screen and (max-width: 767px){
    .productItemRated {
        display: none;
    }
    .productItemBg{
        display: none;
    }

    .productCardsSmall--wrapper {
        margin-top: 0;
        margin-bottom: 30px;
    }
}
/* End Product Item */
/* Start Product Cards */


.productCardsSmall-cq-wrapper .container {
    width: 1180px;
    padding: 0;
}

.productItemSmall-container {
    display: inline-block;
    float: none;
    vertical-align: top;
    width: 33%;
}

.cq-wcm-edit .productItemSmall-cq-wrapper {
    display: inline-block;
    float: left;
    vertical-align: top;
    width: 33%;
    min-height: 145px;
}

.cq-wcm-edit .productItemSmall-container {
    width: 100%;
}

.productCardsSmall-cq-wrapper .sectionHeader * {
    max-width: 850px;
    margin: 0 auto 5px;
    font-family: "Helvetica W01", Helvetica, Arial, sans-serif;
    color: #000;
    text-align: center;
}

.productCardsSmall-cq-wrapper .sectionHeader h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 50px;
    text-transform: uppercase;
}

.productCardsSmall-cq-wrapper .sectionHeader .sectionSubHeader {
    font-family: "Neue Helvetica W01", Helvetica, Arial, sans-serif;
    font-size: 24.5px;
    font-weight: 300;
    line-height: 29px;
}


.productCardsSmall {
    margin-top: -30px;
}

.cq-wcm-edit .productCardsSmall {
    margin-top: 0;
}

@media only screen and (max-width: 1199px) {
    .productItemSmall-container {
        width: 49%;
    }

    .cq-wcm-edit .productItemSmall-cq-wrapper {
        display: inline-block;
        float: left;
        vertical-align: top;
        width: 49%;
        min-height: 171px;
    }
}

/* End Product Cards */
/* Start Product Cards - sm  */
@media only screen and (max-width: 767px) {

    .productCardsSmall-cq-wrapper .container {
        width: 100%
    }

    .productCardsSmall-cq-wrapper .sectionHeader h2 {
        margin-bottom: 0;
        font-size: 24px;
        line-height: 26px;
    }

    .productCardsSmall-cq-wrapper .sectionSubHeader {
        display: none;
    }

    .productItemSmall {
        text-align: center;
        margin: 0;
    }

    .productItemDescription {
        width: 100%;
        padding-left: 0;
        padding-top: 20px;
    }

    .productItemDescription h4 {
        margin: 0;
    }

    .productCardsSmall-cq-wrapper .heading h3 {
        display: none;
    }

    .productCardsSmall {
        margin-top: 35px;
        padding-bottom: 0;
    }

    .productItemSmall-container {
        padding-bottom: 25px;
    }

    .productItemSmall-container:nth-child(n + 5) {
        width: 100%;
        padding-bottom: 0;
    }

    .productItemSmall-container:nth-child(n + 5) .productItemSmall {
        height: auto;
        margin: 0;
        text-align: left;
        border-top: 1px solid #ccc;
    }

    .productItemSmall-container:nth-child(n + 5) .productItemDescription {
        padding: 15px 0;
    }

    .productItemSmall-container:last-child .productItemDescription {
        padding-bottom: 0;
    }

    .productItemSmall-container:nth-child(n + 5) .productItemDescription h4 {
        padding: 0;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .productItemSmall-container:nth-child(n + 5) .productItemSmall .poster-img {
        display: none;
    }

    .productItemSmall-container:last-child {
        padding-bottom: 0;
    }
}
/* End Product Cards - sm */
/* Start Product Cards */

.productCards-cq-wrapper {
    position: relative;
    background: #fff;
    min-height: 500px;
    margin-top: 81px;
    z-index: 99;
}

.heroSection-cq-wrapper .hero .productCards-cq-wrapper {
    margin: 100px auto 0 auto;
}

.productCards {
    padding: 20px;
}

.productCards .productItem-container {
    border: 1px solid #d8d8d8;
    height: 336px;
    margin-right: 20px;
    margin-bottom: 20px;
    max-width: 280px;
    position: relative;
    padding-top: 10px;
    overflow: hidden;
    cursor: pointer;
}

@media (min-width: 801px) and (max-width: 899px) {
    .productCards .productItem-container:nth-child(4n + 4) {
        margin-right: 0;
    }
}

.productCards .productItem-container h4 {
    font-size: 27px;
    position: relative;
    text-transform: capitalize;
    z-index: 20;
    font-weight: 300;
    min-height: 300px;
}

.productCards .productItem-container .productItem-cq-wrapper .productItem > img {
    width: 88%;
    position: absolute;
    bottom: 20px;
    max-width: 240px;
    max-height: 175px;
    left: 50%;
    -webkit-transform: translate(-50%);
    -moz-transform: translate(-50%);
    -ms-transform: translate(-50%);
    -o-transform: translate(-50%);
    transform: translate(-50%);

}

@media (min-width: 1200px) {
    .container.productCards-cq-wrapper {
        width: 1220px;
    }
}

.productCards .productItem-container span {
    position: absolute;
    bottom: -150px;
    left: 0;
    text-align: center;
    width: 100%;
    color: #fff;
    text-decoration: none;
    background-color: #00ae4d;
    padding: 12px;
    font-size: 18px;
    z-index: 15;
    text-transform: uppercase;
    font-family: "Helvetica W01";
    font-weight: 700;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 18px;
    background: #000;
    background: rgba(0, 0, 0, .3);
    height: 100%;
    width: 100%;
    display: none;
    z-index: 10;
}

.hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    display: none;
    z-index: 5;
}

/*.hover-bg img {
    max-width: 281px;
    height: 375px;
    width: 100%;
}*/

@media (min-width: 600px) and (max-width: 699px) {
    .productCards .productItem-container {
        max-width: 262px;
    }

    .productCards .productItem-container {
        margin-left: 9px;
    }

    .productCards .productItem-container:nth-child(2n+2) {
        margin-right: 0px;
        margin-left: 0px;
    }

}

@media (min-width: 700px) and (max-width: 767px) {
    .productCards .productItem-container {
        margin-bottom: 24px;
        margin-right: 24px;
        max-width: 320px;
    }

    .productCards .productItem-container:nth-child(2n+2) {
        margin-right: 0px;
    }

    .productCards .productItem-container .hover-bg img {
        max-width: 318px;
        width: 100%;
    }
}

@media (min-width: 768px) and (max-width: 899px) {
    .productCards .productItem-container {
        max-width: 230px;
        margin-right: 0.5%;
        margin-bottom: 0.625em;
        margin-left: 0.5%;
    }

    .productCards .productItem-container:nth-child(3n+3) {
        margin-right: 0;
    }

    .productCards .productItem-container:nth-child(4n+4) {
        margin-right: 0.5%;
    }

    .productCards .productItem-container:nth-child(7),
    .productCards .productItem-container:nth-child(8) {
        display: none;
    }
}

@media (min-width: 900px) and (max-width: 960px) {
    .productCards .productItem-container {
        max-width: 224px;
        margin-left: 0.85%;
        margin-right: 0.85%;
    }

    .productCards .productItem-container:nth-child(7),
    .productCards .productItem-container:nth-child(8) {
        display: none;
    }
}

/*@media (min-width: 961px) and (max-width: 1024px) and (orientation: landscape) {
    .productCards .productItem-container {
        margin-bottom: 10px;
        margin-right: 10px;
        max-width: 301px;
    }

    .productCards .productItem-container:nth-child(4n+4) {
        margin-right: 10px;
    }

    .productCards .productItem-container:nth-child(3n+3) {
        margin-right: 0;
    }

    .productCards .productItem-container:nth-child(7),
    .productCards .productItem-container:nth-child(8) {
        display: none;
    }

    .productCards .productItem-container .hover-bg img {
        max-width: 301px;
        width: 100%;
    }
}*/

@media (min-width: 961px) and (max-width: 991px) {
    .productCards .productItem-container {
        margin-bottom: 10px;
        margin-right: 10px;
        max-width: 230px;
    }

    .productCards .productItem-container:nth-child(4n+4) {
        margin-right: 10px;
    }

    .productCards .productItem-container:nth-child(3n+3) {
        margin-right: 0;
    }

    .productCards .productItem-container:nth-child(7),
    .productCards .productItem-container:nth-child(8) {
        display: none;
    }

    .productCards .productItem-container .hover-bg img {
        max-width: 301px;
        width: 100%;
    }
}

/*@media (min-width: 980px) and (max-width: 991px) {
    .productCards.row {
        margin-left: 0;
    }

    .productCards .productItem-container {
        max-width: 213px;
    }
}*/

@media (min-width: 992px) and (max-width: 1199px) {
    .productCards.row {
        margin-left: 10px;
    }

    .productCards .productItem-container {
        margin-bottom: 32px;
    }

    .productCards .productItem-container:nth-child(7),
    .productCards .productItem-container:nth-child(8) {
        display: none;
    }
}

@media (min-width: 1200px) {
    .productCards .productItem-container:nth-child(4n+4) {
        margin-right: 0;
    }
}

.productCards .productItem-container:hover,
.productCards .productItem-container:hover .overlay,
.productCards .productItem-container:hover .hover-bg {
    display: block;
    background: rgba(0, 0, 0, .3);
    color: #fff;
}

.productCards .add-product-form {
    float: left;
}
/* End Product Cards */
/* Start Product Cards - sm  */

@media only screen and (max-width: 767px) {

    #header .productCards {
        padding: 5px 5% 10px;
    }

    .productCards .productItem-container {
        display: none;
    }

    .productCards .productItem-container,
    .productCards .productItem-container:nth-child(2n+2) {
        height: 210px;
        width: 46%;
        max-width: none;
        margin: 5px 2%;
        padding: 10px;
    }

    .productItem-container:nth-child(-n+8) {
        display: block;
    }

    .productCards .productItem-container h4 {
    	font-size: 18px;
        color: #000;
        line-height: 21px;
    }

    .productCards .productItem-container .productItem-cq-wrapper .productItem > img {
        max-height: 155px;
    }

    .productCards .productItem-container .hover-bg,
    .productCards .productItem-container span,
    .productCards .productItem-container:hover .hover-bg {
        display: none;
    }

    .productCards .productItem-container:hover,
    .productCards .productItem-container:hover .overlay {
        background: rgba(0, 0, 0, 0);
    }
}
/* End Product Cards - sm */
.caseStudy__wrapper {
    padding-bottom: 40px;
}

.caseStudy__wrapper .crux-container {
    padding: 0 15px;
}

.caseStudy__wrapper .crux-section-header--small {
    margin-bottom: 0px;
}


.caseStudy__items {
    margin-top: 30px;
}

.issue-page-caseStudy__container {
    margin: 0 -15px;
}


.caseStudy__bordered-content {
  border: 1px solid black;

  margin-top: 20px;
  position: relative;
}

.caseStudy__bordered-content .caseStudy__title {
  margin: -10px 0 0 10px;

  padding: 3px;
  display: inline-block;
  font-weight: bold;
  position: absolute;
}

.caseStudy__bordered-content .caseStudy__content {
  padding: 25px;
}

.caseStudy__content > p > b {
	font-family: 'Averta W01 Bold', Helvetica, Arial, sans-serif;
 }

.caseStudy__content > ul {
	    padding-left: 20px;
    }

#caseStudy__imageContainer {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

#caption {
    margin-top: 15px;
}

.caseStudy__image {
	width: 100%;
        height: auto;
    }

#caseStudy__description {
    margin-top: 15px;
    margin-bottom: 10px;
}

@media (min-width: 1200px) {
	#caseStudy__imageContainer {
    	margin-left: 5px;
	}
}

@media (min-width: 768px) and (max-width: 1199px) {
    .caseStudy__wrapper {
        padding-bottom: 20px;
    }

    .caseStudy__description {
        margin-top: 15px;
    }

	#caseStudy__imageContainer {
		display: none;
	}

	#caseStudy__text {
	margin-bottom: 60px;
}


}

@media (max-width: 767px) {
    .caseStudy__wrapper {
        padding-bottom: 30px;
    }


    .caseStudy__wrapper .crux-label-style--regular {
        padding-top: 25px;
        margin-bottom: 15px;
    }

    .caseStudy__wrapper .crux-product-title {
        font-size: 22px;
    }

    .issue-page-caseStudy__container {
        margin: 0;
    }

	#caseStudy__imageContainer {
		margin-top: 30px;
	}
}


.timelineItem__title-block:before {
    box-sizing: content-box;
}

.timelineItem__img {
    width: 125px;
    height: 125px;
    border-radius: 50%;
    overflow: hidden;
    margin-left: 15px;
}

.timelineItem-cq-wrapper:nth-child(odd) .image .timelineItem__img {
    margin-top: 20px;
}

.timelineItem-cq-wrapper:nth-child(even) .image .timelineItem__img {
    bottom: 23px;
}

.tooltiptext,
.tooltiparrow {
    display: none;
}

@media (max-width: 767px) {
    .timelineItem-cq-wrapper {
        width: 50%;
        flex-shrink: 0;
        margin-top: 0;
    }

    .timelineItem-cq-wrapper .image .timelineItem__img {
        display: block !important;
    }

    .timelineItem__date,
    .timelineItem__title {
        display: block;
        width: 100%;
    }

    .timelineItem__date {
        margin: 10px 0;
        padding: 0 5px;
    }

    .timelineItem__date:after {
        box-sizing: content-box;
        width: 1px;
        height: 35px;
        position: relative;
        top: 5px;
    }

    .timelineItem__title {
        position: relative;
    }

    .timelineItem__title .tooltiptext {
        display: none;
        width: calc(100vw - 70px);
        background-color: white;
        color: #000;
        border: 1px solid #000;
        border-radius: 0;
        padding: 20px;
        position: absolute;
        z-index: 1;
        top: calc(100% + 10px);
    }

    .timelineItem__title-text {
        position: relative;
        padding: 0 10px;
    }

    .timelineItem__title .tooltiparrow {
        display: none;
        position: absolute;
        bottom: -1px;
        left: calc(50% - 10px);
        z-index: 2;
    }

    .timelineItem__title .tooltiparrow:before {
        content: '';
        display: block;
        position: absolute;
        left: 0;
        bottom: -10px;
        width: 0;
        height: 0;
        border: 10px solid transparent;
        border-bottom-color: black;
    }

    .timelineItem__title .tooltiparrow:after {
        content: '';
        display: block;
        position: absolute;
        left: 1px;
        bottom: -10px;
        width: 0;
        height: 0;
        border: 9px solid transparent;
        border-bottom-color: white;
    }

    .timelineItem__date span {
        width: 100%;
    }

    .timelineItem-cq-wrapper:nth-child(odd) .image .timelineItem__img,
    .timelineItem-cq-wrapper:nth-child(even) .image .timelineItem__img {
        position: static;
        margin: 0 auto;
    }

    .timelineItem-cq-wrapper .timelineItem .timelineItem__title-block {
        text-align: center;
    }
}
.timeline__wrapper {
    padding-bottom: 40px;
}

.timeline__wrapper .crux-container {
    padding: 0 15px;
}

.timeline__wrapper .crux-section-header--small {
    margin-bottom: 0px;
}

.timeline__description {
    margin-top: 5px;
}

.timeline__items {
    margin-top: 30px;
}

.issue-page-timeline__container {
    margin: 0 -15px;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .timeline__wrapper {
        padding-bottom: 20px;
    }

    .timeline__description {
        margin-top: 15px;
    }

    .timeline__items {
        margin-top: 0;
    }
}

@media (max-width: 767px) {
    .timeline__wrapper {
        padding-bottom: 30px;
    }

    .timeline__items-wrapper {
        background: linear-gradient(to bottom, transparent 170px, black 171px, black 175px, transparent 176px);
        margin: 0 20px;
    }

    .timeline__items {
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        overflow-x: hidden;
    }

    .timeline__items:before {
        content: none;
    }

    .timeline__wrapper .timeline__button {
        display: block;
        top: 158px;
    }

    .timeline__wrapper .crux-label-style--regular {
        padding-top: 25px;
        margin-bottom: 15px;
    }

    .timeline__wrapper .crux-product-title {
        font-size: 22px;
    }

    .issue-page-timeline__container {
        margin: 0;
    }
}
.pinned-article {
    margin: 40px 0 30px;
}

.pinned-article__link:hover * {
    text-decoration: none;
    color: #00AE4D;
}

.pinned-article__hero {
    position: relative;
}

.pinned-article__link:hover .pinned-article__hero:before {
    content: '';
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: rgba(0,174,77, 1);
    mix-blend-mode: multiply;
    z-index: 1;
}

@media all and (-ms-high-contrast:none), all and (-ms-high-contrast:active) {
    .pinned-article__link:hover .pinned-article__hero:before {
        background-color: rgba(0,174,77, 0.7);
    }
}

@supports (-ms-ime-align:auto) {
    .pinned-article__link:hover .pinned-article__hero:before {
        background-color: rgba(0,174,77, 0.7);
    }
}

.pinned-article__label,
.pinned-article__subtitle {
    margin-top: 15px;
}

.pinned-article__image {
    display: inline-block;
    width: 100%;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .pinned-article {
        margin-bottom: 50px;
    }
}

@media (max-width: 767px) {
    .pinned-article {
        margin: 20px 0 0;
        padding-bottom: 20px;
        border-bottom: 1px solid #dcdcdc;
    }

    .pinned-article__label {
        margin-bottom: 10px;
    }
}
.newsletter-cta {
    padding: 60px 0;
}

.newsletter-cta_wrapper {
    display: inline-block;
}

.newsletter-cta_headline {
    margin-bottom: 10px;
}

.newsletter-cta_subheadline {
    padding: 10px 0;
    margin-bottom: 10px;
}

.newsletter-cta_link-wrapper {
    margin-top: 10px;
}

@media (max-width: 767px) {
    .newsletter-cta {
        padding: 40px 0;
    }
}
.accordion {
    color: black;
    cursor: pointer;
    padding: 20px 0px 20px 0px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    transition: 0.4s;
    display: flex;
    justify-content: space-between;
  }
  
  .panel {
    padding-bottom: 20px;
    display: none;
  
    overflow: hidden;
  }
  
  .panel > p {
    margin-top: 10px;
    margin-bottom: 30px;
  }
  
  .accordion:after {
    font-family: "crux-icons";
    content: "\h";
  
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    font-family: "crux-icons";
    content: "\37";
    color: #00ae4d;
  }
  
  .accordion {
    border-top: 1px solid black;
  }

  .faqs {
    border-bottom: 1px solid black;
  }

  h2 {
    margin-bottom: 60px;
    margin-top: 60px;
  }
  
  .faqIntro {
    margin-top: 20px;
    margin-bottom: 30px;
    padding-left: 0px im !important;
    padding-right: 0px !important;
  }
  
  .faq_buttonContainer {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
  .faqContainer {
    background: #f8f8f8;
    padding-top: 30px;
    padding-bottom: 30px;
    padding-right: 40px;
    padding-left: 40px;
  }
  
  .faqQuestion {
      width: 95%;
  }

  button.accordion.crux-body-copy.crux-body-copy--bold{
    background: #f8f8f8;
  }
  
  @media screen and (max-width: 767px) {
    h2 {
      margin-bottom: 30px;
      margin-top: 30px;
    }
    .faqQuestion {
      width: 80%;
    }

    .faqContainer {
        padding-right: 30px;
        padding-left: 30px;
        margin-left: -15px;
        width: 100vw;
      }
      
  }
  @media screen and (min-width: 1200px){
    .faqIntro {
        width: 75%;
    }
  } 

  .faqTitle:after {
    font-family: "crux-icons";
    content: "\W";
    border-radius: 50%;
    border: 5px solid black;
    color: #00ae4d;
    padding: 5px 8px;
    float: right;
    bottom: 10px;
    position: relative;
  }
  
.issueLinks .single-newscard-item {
    border: 1px solid #dcdcdc;
    padding-bottom: 45px;
    margin-bottom: 30px;
}

.issueLinks .single-newscard-item-left {
    padding-bottom: 45px;
}

.issueLinks .single-newscard-item-right {
    padding-bottom: 45px;
}

.issueLinks .chevron-k:before {
    font-family: "crux-icons";
    content: "k";
    margin-left: 3px;
    font-size: 10px;
    vertical-align: top;
}

.issueLinks .q-and-a-title {
    margin-bottom: 30px;
    margin-top: 40px;
}


.issueLinks .crux-body-copy.crux-body-copy--list li.newscard--list-item {
    margin-left: 15px;
    text-indent: -17px;
}

@media screen and (max-width: 767px) {
    .issueLinks .crux-body-copy.crux-body-copy--list li.newscard--list-item {
        margin-bottom: 20px;
    }
}

.canvas .q-and-a-main-title {
    margin-bottom: 45px;
    margin-top: 60px;
}

.canvas .q-and-a-button {
    margin-top: 15px;
    margin-bottom: 30px;
}


  .circle_1234 {
    height: 175px;
    width: 175px;
  }
  .circle_1234_container {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
  }
  
  .hero-section__principle-headline {
    font-size: 18px;
    padding-top: 30px;
    padding-bottom: 20px;
  }
  .hero-section__principle-index {
    font-size: 36px;
    margin-right: 30px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
  }
  
  @media (max-width: 767px) {
    .visible-xs-block {
      display: block !important;
    }
    .hero-section__principle-wrapper:last-of-type {
      margin-bottom: 0;
    }
    .hero-section__principle-wrapper {
      margin-bottom: 30px;
    }
    .circle_1234 {
      margin-top: 30px;
    }
    .hero-section__principles-headline {
      margin-bottom: 0px;
    }
  }
  
  @media (max-width: 1199px) and (min-width: 768px) {
    .hero-section__principle-index {
      margin-right: 20px;
    }
    .clearfix {
      margin-bottom: 30px;
    }
  }
  
.hero-section {
    padding: 60px 0;
}

.hero-section__headline {
    font-family: 'Averta W01 ExtraBold', Helvetica, Arial, sans-serif;
    font-size: 50px;
    color: #000;
    font-weight: normal;
    line-height: 1.1em;
}

.hero-section__paragraph {
    margin: 30px 0 50px;
}

.hero-section__principles-headline {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero-section__principle-wrapper {
    display: -webkit-flex;
    display: flex;
}

.hero-section .hero-section__principle-index {
    font-size: 36px;
    margin-right: 30px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
}

.hero-section__principle-text b {
    font-family: 'Averta W01 Bold', Helvetica, Arial, sans-serif;
}

.hero-section__image {
    display: inline-block;
    width: 100%;
}

@media (min-width:1200px) {
    .hero-section__image {
        margin-bottom: -30px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .hero-section {
        padding: 40px 0;
    }

    .hero-section__principle-headline {
        font-size: 18px;
    }

    .hero-section__image {
        margin-top: 90px;
    }

    .hero-section__paragraph {
        margin-bottom: 40px;
    }

    .hero-section__principle-headline {
        margin-bottom: 15px;
    }

    .hero-section .hero-section__principle-index {
        margin-right: 20px;
    }

    .hero-section .clearfix {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 30px 0 70px;
    }

    .hero-section__headline {
        font-size: 30px;
    }

    .hero-section__paragraph {
        margin: 15px 0 30px;
    }

    .hero-section__icon-wrapper {
        display: -webkit-flex;
        display: flex;
    }

    .hero-section__icon-wrapper .crux-icons {
        margin: 15px auto 0 auto;
        font-size: 30px;
        color: #000;
    }

    .hero-section__principle-headline {
        font-size: 18px;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .hero-section__principle-wrapper {
        margin-bottom: 30px;
    }

    .hero-section__principle-wrapper:last-of-type {
        margin-bottom: 0;
    }

    .hero-section__principle-text p {
        margin-bottom: 0;
    }

    .hero-section-mobile-principles .hero-section__principle-index {
        font-size: 36px;
        margin-right: 20px;
    }
}
.featured-links {
    margin-bottom: 20px;
    padding: 0;
}

.featured-links__title {
    border-top: 5px solid #000;
    padding: 20px 0 40px;
}

.featured-links__item {
    padding-bottom: 20px;
    border-bottom: 1px solid #c8c8c8;
    margin-bottom: 20px;
}

.featured-links__item a {
    font-family: 'Averta W01 Semibold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #000;
}

.featured-links__item a:hover {
    text-decoration: none;
    color: #00AE4D;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .featured-links {
        padding-right: 15px;
    }
}
.call-to-action-small__overview {
    margin-bottom: 30px;
}

.call-to-action-small__title {
    margin-bottom: 15px;
}

call-to-action-small__paragraph {
    margin-bottom: 15px;
}

.call-to-action-small__cta img {
    width: auto;
    height: 147px; }

.call-to-action-small__cta--fixed {
    width: 100%;
    float: left;
    padding-left: 15px;
    padding-right: 15px; }
@media (min-width: 768px) {
    .call-to-action-small__cta--fixed {
        width: 365px;
        box-sizing: content-box;
        float: left; } }

.call-to-action-small__cta a {
    position: relative;
    display: block;
    -webkit-animation-fill-mode: both;
    animation: loading-sliding 0.3s 0s;
    -webkit-animation-fill-mode: backwards; }
.call-to-action-small__cta a .call-to-action-small__cta-container {
    animation: slide-down 0.1s;
    -webkit-animation-fill-mode: forwards; }
.call-to-action-small__cta a:hover .call-to-action-small__cta-container {
    animation: slide-up 0.1s;
    -webkit-animation-fill-mode: forwards; }

.call-to-action-small__cta--fadein {
    transform: scale(1);
    opacity: 1;
    transition: transform .3s, opacity .3s; }

.call-to-action-small__cta--fadeout {
    transform: scale(0.98);
    opacity: 0;
    transition: transform .3s, opacity .3s; }

.call-to-action-small__cta--show-results {
    position: relative; }
.call-to-action-small__cta--show-results img {
    position: relative;
    top: 0;
    transition: top .3s linear; }
.call-to-action-small__cta--show-results .call-to-action-small__copy-container {
    position: absolute;
    bottom: 0;
    background-color: white;
    z-index: 1;
    height: calc(100% - 274px);
    transition: top .3s linear, height .3s linear; }
.call-to-action-small__cta--show-results .call-to-action-small__see-results {
    display: inline-block;
    opacity: 0;
    height: 0;
    transition: opacity .1s linear, height .2s linear .1s; }
.call-to-action-small__cta--show-results:hover img {
    position: relative;
    top: -30px;
    transition: top .3s linear; }
.call-to-action-small__cta--show-results:hover .call-to-action-small__copy-container {
    height: calc(100% - 200px);
    transition: top .3s linear, height .3s linear; }
.call-to-action-small__cta--show-results:hover .call-to-action-small__see-results {
    opacity: 1;
    height: 45px;
    transition: height .3s linear, opacity .1s linear .2s; }

.call-to-action-small__cta .call-to-action-small__see-results {
    display: none; }

.call-to-action-small__cta-container {
    box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.2);
    height: 147px;
    margin-bottom: 15px;
    position: relative; }
.call-to-action-small__cta--fixed .call-to-action-small__cta-container {
    margin-bottom: 30px;
    overflow: hidden; }

.call-to-action-small__copy-container {
    height: 100%;
    margin-left: 119px;
    padding: 10px;
    position: absolute;
    max-width: 220px; }

.call-to-action-small__title__text {
    margin-bottom: 10px;
    font-size: 10px;
    margin-bottom: 5px; }

.call-to-action-small__title__second {
    margin-bottom: 20px;
    margin-top: 0; }

.call-to-action-small__button-wrapper {
    position: absolute;
    bottom: 10px;
    width: auto;
    height: auto;
    display: flex;
    flex-direction: row;
    align-items: baseline; }
.call-to-action-small__button-wrapper .crux-primary-gray {
    color: #999; }
.call-to-action-small__button-wrapper > span,
.call-to-action-small__button-wrapper > a {
    flex-grow: 1; }
.call-to-action-small__button-wrapper > span:first-child,
.call-to-action-small__button-wrapper > a:first-child {
    text-align: left;
    position: static; }
.call-to-action-small__button-wrapper > span:nth-child(2),
.call-to-action-small__button-wrapper > a:nth-child(2) {
    text-align: center;
    display: none; }
.call-to-action-small__button-wrapper > span:last-child,
.call-to-action-small__button-wrapper > a:last-child {
    text-align: right;
    position: static;
    display: none; }
.call-to-action-small__button-wrapper .call-to-action-small__skip {
    text-decoration: underline;
    display: none; }
.call-to-action-small__button-wrapper .call-to-action-small__skip:hover {
    color: black; }

.call-to-action-small__member-icon {
    font-size: 15px;
    vertical-align: bottom; }

.call-to-action-small__wrapper {
    margin-bottom: 50px;
    position: relative; }
.call-to-action-small__wrapper > h3.crux-body-copy {
    margin-bottom: 40px;
    position: absolute;
    top: -135px; }
.call-to-action-small__wrapper > div + div {
    overflow: hidden; }
.call-to-action-small__wrapper h3.crux-section-header {
    margin-bottom: 30px;
    margin-top: 0; }
.call-to-action-small__wrapper .crux-btn {
    text-decoration: none; }
.call-to-action-small__wrapper .crux-btn.crux-btn-primary--lg {
    margin: 10px auto; }
.call-to-action-small__wrapper .crux-article__bold-link:hover {
    color: black; }
.call-to-action-small__wrapper .row:nth-child(2) {
    text-align: center; }

.call-to-action-small__cta, .call-to-action-small__cta-container {
    position: relative; }

.call-to-action-small__image-wrapper {
    height: 100%;
    overflow: hidden;
    padding: 0;
    width: 113px; }
.call-to-action-small__image-wrapper svg {
    top: 10px;
    left: 10px;
    position: absolute;
    width: 22px;
    height: 27px;
    z-index: 2; }
.call-to-action-small__cta a:hover .call-to-action-small__image-wrapper:before {
    content: "";
    position: absolute;
    height: 100%;
    width: 100%;
    background-color: #00ae4d;
    mix-blend-mode: multiply;
    z-index: 1; }


@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ CSS styles */
    .call-to-action-small__cta a:hover .call-to-action-small__image-wrapper:before {
        opacity: 0.6;
    }
}

@supports (-ms-ime-align:auto) {
    /* IE EDGE+ CSS styles */
    .call-to-action-small__cta a:hover .call-to-action-small__image-wrapper:before {
        opacity: 0.6;
    }
}

.call-to-action-small__cta a:hover .call-to-action-small__image-wrapper img {
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%); }

.call-to-action-small__top {
    float: none;
    display: block;
    margin: 10px auto 0;
    text-align: center;
    width: 22px;
    line-height: 1;
    color: black;
    font-size: 16px; }

.call-to-action-small__all_button {
    float: left; }

.call-to-action-small__no-completed__wrapper {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 60px; }
@media (min-width: 768px) {
    .call-to-action-small__no-completed__wrapper {
        width: 359px; } }
@media (min-width: 1199px) {
    .call-to-action-small__no-completed__wrapper {
        width: 491px;
        margin-bottom: 30px; } }

.call-to-action-small__no-completed__icon {
    display: inline-block;
    margin-bottom: 20px; }

.call-to-action-small__no-completed h4.crux-intro-large {
    margin-top: 0;
    margin-bottom: 10px;
    color: #999; }

.call-to-action-small__no-completed p.crux-body-copy {
    margin-top: 0;
    margin-bottom: 0;
    color: #999; }

.call-to-action-small__no-latest__wrapper {
    text-align: center;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 80px;
    margin-top: 80px; }
@media (min-width: 768px) {
    .call-to-action-small__no-latest__wrapper {
        width: 366px;
        margin-bottom: 200px;
        margin-top: 200px; } }

.call-to-action-small__no-latest__icon {
    font-size: 50px;
    color: #999;
    margin-bottom: 40px; }
@media (min-width: 768px) {
    .call-to-action-small__no-latest__icon {
        margin-bottom: 20px; } }

.call-to-action-small__no-latest h4.crux-intro-large {
    margin-top: 0;
    margin-bottom: 10px;
    color: #999; }

.call-to-action-small__no-latest p.crux-body-copy {
    margin-top: 0;
    margin-bottom: 20px;
    color: #999; }

.call-to-action-small__no-latest .crux-btn {
    padding: 0 45px;
    float: none; }
.call-to-action-small__no-latest .crux-btn:hover {
    text-decoration: none; }

/* animation */
.call-to-action-small__cta:nth-child(12n + 1) a {
    animation-delay: 0s; }

.call-to-action-small__cta:nth-child(12n + 2) a {
    animation-delay: 0.3s; }

.call-to-action-small__cta:nth-child(12n + 3) a {
    animation-delay: 0.6s; }

.call-to-action-small__cta:nth-child(12n + 4) a {
    animation-delay: 0.9s; }

.call-to-action-small__cta:nth-child(12n + 5) a {
    animation-delay: 1.2s; }

.call-to-action-small__cta:nth-child(12n + 6) a {
    animation-delay: 1.5s; }

.call-to-action-small__cta:nth-child(12n + 7) a {
    animation-delay: 1.8s; }

.call-to-action-small__cta:nth-child(12n + 8) a {
    animation-delay: 2.1s; }

.call-to-action-small__cta:nth-child(12n + 9) a {
    animation-delay: 2.4s; }

.call-to-action-small__cta:nth-child(12n + 10) a {
    animation-delay: 2.7s; }

.call-to-action-small__cta:nth-child(12n + 11) a {
    animation-delay: 3s; }

.call-to-action-small__cta:nth-child(12n + 12) a {
    animation-delay: 3.3s; }

@-webkit-keyframes loading-sliding {
    0% {
        opacity: 0;
        top: 100px; }
    100% {
        opacity: 1;
        top: 0; } }

@keyframes slide-up {
    0% {
        top: 0;
        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.2); }
    100% {
        top: -10px;
        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.5); } }

@keyframes slide-down {
    0% {
        top: -10px;
        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.5); }
    100% {
        top: 0;
        box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.2); } }
.cta {
    margin: 60px 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.cta-text {
    margin: 10px 0 15px;
}

.cta-button:hover {
    color: #fff;
}

@media (max-width: 767px) {
    .cta {
        margin: 40px 0 30px;
        align-items: self-start;
    }

    .cta-text {
        margin: 20px 0 25px;
    }
}
.heroSection-cq-wrapper {
    min-height: 768px;
}

.heroSection-cq-wrapper .convio-subscribe-cq-wrapper,
.heroSection-cq-wrapper .action-button-cq-wrapper {
    display: none;
}

.heroSection-cq-wrapper .hero-media {
    height: 768px;
    position: absolute;
    background: #ddd 50% 0 no-repeat;
    background-size: cover;
    padding: 0;
    margin: 0;
}

.heroSection-cq-wrapper .videoWrapper {
    height: 768px;
    width: 100%;
}

.heroSection-cq-wrapper .overlay {
    display: block;
    height: 100%;
}

.heroSection-cq-wrapper .videoControl {

    display: none;
    color: #fff;
    font-size: 60px;
    cursor: pointer;
    z-index: 250;
    background: no-repeat 50% 50%;
    outline: none;
    box-shadow: none !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin: -75px 0 0 -92px;

    overflow: hidden;
    border: none;
    text-indent: -9999px;
    height: 102px;
    width: 86px;

}

.heroSection-cq-wrapper .videoControl.play {
    background-image: url(../../../images/common/video_play_btn.png);
}

.heroSection-cq-wrapper .videoControl.pause {
    background-image: url(../../../images/common/video_pause_btn.png);
}
@media only screen and (max-width: 767px) {

    .heroSection-cq-wrapper {
        padding-top: 0;
    }

    .heroSection-cq-wrapper > section {
        position: relative;
        margin: 0;
    }

    .heroSection-cq-wrapper .hero-media {
        top: 0;
        bottom: 950px;
        width: 100%;
        height: auto;
    }

    .heroSection-cq-wrapper .parsys.heroSection-pars {
        padding-top: 80px
    }

    .heroSection-cq-wrapper .productCards-cq-wrapper,
    .heroSection-cq-wrapper .hero .productCards-cq-wrapper {
        margin: 0 auto;
    }

    .productCards {
        padding: 5px 5% 20px;
    }
}
.advocacy {
    margin: 28px 0 0 0;
    position: relative;
}

.heroSection-cq-wrapper .advocacy .overlay {
    display: block;
    height: 100%;
    background: rgba(0, 0, 0, .3);
}

.heroSection-cq-wrapper .advocacy .buttons-block {
    /*margin: 55px 0 55px 0;*/
}

.heroSection-cq-wrapper .advocacy .head-line-cq-wrapper .headline .subheader {
    max-width: 1015px;
}

.heroSection-cq-wrapper .advocacy .head-line-cq-wrapper {
    /*padding-top: 140px;*/
}

.heroSection-cq-wrapper .advocacy .newsList-cq-wrapper {
    margin: 70px 0 0 0;
    position: relative;
}
@media only screen and (max-width: 767px) {

    #content .heroSection-cq-wrapper {
        padding-top: 30px;
    }

    #content .hero .hero-media,
    .heroSection-cq-wrapper .advocacy .hero-media {
        bottom: 0;
        width: 100%;
        height: 100%;
    }
    .convio-subscribe-cq-wrapper .convioSubscribe form,
    .convio-subscribe-cq-wrapper .convioSubscribe form h3 {
    	width: 100%;
    }
    #content .hero .headline .subheader,
    .advocacy .head-line-cq-wrapper .headline .subheader {
        display: initial;
        font-weight: 300;
    }
    #content .hero .headline .tagline,
    .advocacy .head-line-cq-wrapper .headline .tagline {
        font-weight: 700;
        font-family: "Helvetica W01";
        margin-bottom: 15px;
    }
    #content .hero .headline,
    .advocacy .headline {
        text-align: center;
    }
    #content .hero section.newsList .btn,
    .advocacy section.newsList .btn {
        margin-bottom: 20px;
    }
    #content .hero .action-button-cq-wrapper .btn,
    .advocacy .action-button-cq-wrapper .btn {
        font-family: "Neue Helvetica W01";
        font-weight: 500;
    }
    #content .heroSection-cq-wrapper {
        min-height: initial;
    }
    .convio-subscribe-cq-wrapper .convioSubscribe form div.privacy-policy a {
    	font-size: 14px;
    }
    .cons_email #cons-email,
    .cons_zip_code #cons_zip_code,
    .convioSubscribe form div.cons_email,
    .convioSubscribe form div.cons_zip_code {
        float: none;
    }
    .cons_email #cons-email,
    .cons_zip_code #cons_zip_code,
    .convioSubscribe .convio-submit {
        width: 100%;
        font-weight: 300;
    }
    .convio-subscribe-cq-wrapper.section {
        margin-top: 0;
    }
    #content .hero div.newsList-cq-wrapper,
    .heroSection-cq-wrapper .advocacy div.newsList-cq-wrapper {
        margin: 0;
    }
    #content .hero .convio-subscribe-cq-wrapper,
    .advocacy .convio-subscribe-cq-wrapper {
        margin-bottom: 0;
    }
}

@media only screen and (max-width: 767px) and (orientation: portrait) {

    .cons_email #cons-email,
    .cons_zip_code #cons_zip_code,
    .convioSubscribe .convio-submit {
        font-size: 18px;
        height: 50px;
    }
    .convioSubscribe .convio-submit {
        font-weight: 500;
        font-size: 20px;
    }
    #content .hero .head-line-cq-wrapper .headline .tagline,
    .advocacy .head-line-cq-wrapper .headline .tagline {
        font-size: 33px;
        line-height: 40px;
    }
    #content .hero .parsys.heroSection-pars,
    .heroSection-cq-wrapper .advocacy .parsys.heroSection-pars {
        padding-top: 50px;
    }
    #content .hero .head-line-cq-wrapper .headline .subheader,
    .advocacy .head-line-cq-wrapper .headline .subheader {
        font-size: 18px;
        line-height: 27px;
    }
    .convio-subscribe-cq-wrapper .convioSubscribe form h3 {
        margin-bottom: 30px;
    }
    .convioSubscribe form .cons_email,
    .convioSubscribe form .cons_zip_code {
        padding-bottom: 15px;
    }
    .convio-subscribe-cq-wrapper .convioSubscribe form div.privacy-policy {
        margin-top: 20px;
        margin-bottom: 35px;
    }
    #content .hero .action-button-cq-wrapper,
    .advocacy .action-button-cq-wrapper {
    	margin-top: 15px;
    	margin-bottom: 40px;
    }
    #content .hero .action-button-cq-wrapper .btn,
    .advocacy .action-button-cq-wrapper .btn {
        padding: 14px 18px;
        font-size: 20px;
    }
}
@media only screen and (max-width: 767px) and (orientation: landscape) {
    .cons_email #cons-email,
    .cons_zip_code #cons_zip_code,
    .convioSubscribe .convio-submit {
        font-size: 24px;
        height: 60px;
    }
    .convioSubscribe .convio-submit {
        font-weight: 500;
    }
    .convioSubscribe form{
    	padding: 0 25px;
    }
    #content .hero .head-line-cq-wrapper .headline .tagline,
    .advocacy .head-line-cq-wrapper .headline .tagline {
        font-size: 65px;
        line-height: 65px;
    }
    #content .hero .parsys.heroSection-pars,
    .heroSection-cq-wrapper .advocacy .parsys.heroSection-pars {
        padding-top: 45px;
    }
    #content .hero .head-line-cq-wrapper .headline .subheader,
    .advocacy .head-line-cq-wrapper .headline .subheader {
        font-size: 24px;
        line-height: 32px;
    }
    .convio-subscribe-cq-wrapper .convioSubscribe form h3 {
        font-size: 33px;
        margin-bottom: 40px;
    }
    .convioSubscribe form .cons_email,
    .convioSubscribe form .cons_zip_code {
        padding-bottom: 10px;
    }
    .convio-subscribe-cq-wrapper .convioSubscribe form div.privacy-policy {
        margin-top: 30px;
        margin-bottom: 50px;
    }
    #content .hero .action-button-cq-wrapper,
    .advocacy .action-button-cq-wrapper {
        margin-top: 80px;
        margin-bottom: 115px;
    }
    #content .hero .action-button-cq-wrapper > div > div > h3,
    .advocacy .action-button-cq-wrapper > div > div > h3 {
     margin-bottom: 30px;
    }
    #content .hero .action-button-cq-wrapper .btn,
    .advocacy .action-button-cq-wrapper .btn {
        padding: 18px 22px;
        font-size: 24px;
    }
}
.parsys.heroSection-pars {
    padding-top: 125px;
}

.head-line-cq-wrapper .headline .tagline {
    text-transform: uppercase;
    font-size: 60px;
    text-align: center;
    line-height: 75px;
    font-weight: 700;
    /* font-stretch: condensed; */
    font-family: "Helvetica W01";
}

@media (min-width: 700px) and (max-width: 800px) {
    .head-line-cq-wrapper .headline .tagline {
        font-size: 47px;
    }
}

.head-line-cq-wrapper .headline .subheader {
    font-size: 33px;
    text-align: center;
    line-height: 40px;
    margin: 0 auto;
    max-width: 870px;
    font-weight: 200;
    margin-top: 20px;
}

@media (min-width: 600px) and (max-width: 699px) {
    .head-line-cq-wrapper .headline .tagline {
        font-size: 38px;
    }

    .head-line-cq-wrapper .headline .subheader {
        font-size: 25px;
    }

}

.head-line-cq-wrapper {
    z-index: 100;
    position: relative;
}

@media (min-width: 700px) and (max-width: 800px) {
    .headline .tagline {
        font-size: 47px;
    }
}

.headline .subheader {
    font-size: 33px;
    text-align: center;
    line-height: 40px;
    margin: 0 auto;
    max-width: 870px;
}



@media only screen and (max-width: 767px) {

    #header .headline {
        color: #fff!important;
    }

    .head-line-cq-wrapper .headline .tagline {
         font-size: 32px;
         font-weight: 600;
         line-height: 40px;
    }

    .head-line-cq-wrapper .headline .subheader {
        display: none;
    }

    .head-line-cq-wrapper {
        padding-bottom: 20px;
    }
}
.sub-nav-component {
    background-color: #f1f6d2;
    margin-bottom: 50px;
    padding: 50px 0 25px;
}

.sub-nav {
    -webkit-align-items: baseline;
    align-items: flex-end;
    height: 55px;
}

.sub-nav__items {
    overflow: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
}

.sub-nav__items::-webkit-scrollbar {
    display: none;
}

.sub-nav__link {
    display: inline-flex;
    font-weight: normal;
    margin-right: 30px;
}

.sub-nav__link:last-child {
    margin-right: 0;
}

.sub-nav__link a {
    display: inline-block;
    padding-bottom: 5px;
}

.sub-nav__link a:hover {
    border-bottom: 5px solid #000;
    text-decoration: none;
}

.sub-nav__link--active a {
    border-bottom: 5px solid #000;
}

@media (min-width: 1200px) {
    .sub-nav {
        display: -webkit-flex;
        display: flex;
    }

    .sub-nav__body {
        text-align: right;
    }

}


@media (max-width: 1199px) {
    .sub-nav {
        display: block;
        height: auto;
    }

    .sub-nav__heading {
        height: 55px;
        margin-top: 40px;
        margin-bottom: 5px;
    }

    .sub-nav-component {
        margin-bottom: 30px;
        padding: 20px 0 20px;
    }
    .sub-nav__items {
        margin: 30px auto 30px auto;
    }
    .sub-nav__body {
        text-align: left;
    }

    .sub-nav__body {
        margin-right: 20px;
    }

}

@media (max-width: 991px) {
}
@media (max-width: 767px){
    .sub-nav-component {
        margin-bottom: 20px;
        padding: 5px 0 15px 0;
    }

    .sub-nav__heading {
        margin-bottom: 6px;
    }

    .sub-nav__link {
        font-size: 14px;
        margin-right: 20px;
    }

    .sub-nav__items {
        margin: auto auto 30px auto;
    }

}
.subCriteriaItem{padding:30px 0;border:solid 0px #979797;border-top-width:1px;}
.subCriteriaItem-wrapper{display: flex;align-items: center;}
.subCriteria:last-of-type{border:solid 0px #979797;border-bottom-width:1px;}
.subCriteria-rating{display: inline-block;width: 65px;margin-right: 35px;text-align: center;}
.subCriteriaRating-icon{font-size:30px;}
.subCriteriaRating-label{display:block;}
.subCriteria-expand{font-size:20px;width:50px;text-align:right;padding-top:7px;}
.subCriteria-title{width:calc(100% - 150px);display:inline-block;padding-top:0;}
.subCriteria-text{padding-top:33px;display:none;}
.subCriteria-text--visible{display:block;}
.subCriteria-better{display:inline-block;background:#f0f0f0;padding:20px;margin-top:30px;}
.subcriteria-better-headline{padding-bottom:17px;}
.subCriteria-better a{text-decoration:none;}
.clear{clear:both;line-height:0px;}
.subcriteria-better-img{padding-right:25px;}

.subCriteria-title--hover,.subCriteria-expand--hover{color:#00ae4d !important; cursor: pointer;}
.subCriteriaItem > .row:hover {cursor: pointer;}


@media (max-width:1199px) and (min-width:768px){
    .subCriteria-expand{padding-right:10px;}
    .subCriteriaItem-wrapper{align-items: flex-start;}
}

@media (max-width:767px){
    .subCriteria-title{padding-top:5px;width:calc(100% - 115px);}
    .subCriteriaItem{padding:15px 0;}
    .subCriteriaItem .row{margin: 0;}
    .subCriteriaRating-label{display:none;}
    .subCriteria-rating{margin:0 20px 0 0;width:30px;}
    .subCriteria-expand{padding-top:6px;padding-right:0px;}
    .subCriteriaItem-wrapper{align-items: flex-start;}
}

.sticky-foodlabels-ad__banner-container {
    display: none;
    bottom: 0;
    left: 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    min-height: 60px;
    padding-top: 18px;
}

#sticky-foodlabels-ad .crux-icons-member-expert {
    position: absolute;
    left: calc(50% - 17px);
    padding: 2px;
    top: -17px;
    font-size: 30px;
    color: #00AE4D;
    border-radius: 100%;
}

.sticky-foodlabels-ad__banner-info-wrapper {
    width: calc(100% - 60px);
    text-align: center;
}

.sticky-foodlabels-ad__banner-info {
    display: inline-block;
    overflow: hidden;
}

#sticky-foodlabels-ad .crux-icons-close {
    font-size: 18px;
    position: absolute;
    right: 20px;
    top: 18px;
    line-height: 30px;
    padding-left: 20px;
    border-left: 1px solid white;
    cursor: pointer;
}

#sticky-foodlabels-ad a.crux-body-copy {
    border-bottom: 0;
}

.sticky-foodlabels-ad__banner-animation {
    position: relative;
    z-index: -1;
    left: -100%;
    bottom: 2px;
    width: 100%;
    background: #00AE4D;
    height: 4px;
}

@media (max-width: 1199px) {
    .sticky-foodlabels-ad__banner-container {
        padding-bottom: 10px;
    }

    .sticky-foodlabels-ad__banner-animation {
        display: none;
    }

    .sticky-foodlabels-ad__banner-info {
        overflow: visible;
    }

    #sticky-foodlabels-ad a.crux-body-copy {
        border-bottom: 4px solid #00AE4D;
    }
}

@media (max-width: 767px) {
    #sticky-foodlabels-ad .crux-icons-member-expert {
        display: none;
    }

    .sticky-foodlabels-ad__banner-container {
        padding: 10px;
        height: auto;
        text-align: left;
        z-index: 999999;
    }

    .sticky-foodlabels-ad__banner-animation {
        display: none;
        max-width: 300px;
    }

    .sticky-foodlabels-ad__banner-info-wrapper {
        width: auto;
        text-align: left;
    }

    .sticky-foodlabels-ad__banner-info {
        overflow: inherit;
        width: 80%;
    }

    #sticky-foodlabels-ad a.crux-body-copy {
        border-bottom: 4px solid #00AE4D;
    }
}

#global-footer {
    padding-bottom: 50px;
}

body.hide-banner .banner-container {
    display: none;
}

body.hide-banner #global-footer {
    padding-bottom: 0;
}
.pdf-link {
    margin-top: 30px;
}

.pdf-link:hover {
    color: #00AE4D;
}

.pdf-link .pdf-link__icon,
.pdf-link a {
    display: inline-block;
    vertical-align: middle;
}

.pdf-link .pdf-link__icon {
    font-size: 26px;
}
.manual-nav_items {
    position: relative;
    top: 17px;
}

.manual-nav_items .manual-nav_link {
    font-weight: normal;
}

.manual-nav_link a {
    border-bottom: 5px solid #f1f6d2;
}

.manual-nav_link.sub-nav__link--active a {
    border-bottom: 5px solid #000;
}

@media (max-width: 1199px){
    .manual-nav_items {
        top: 5px;
    }
}

@media (max-width: 767px){
    .manual-nav_items {
        top: 0;
    }
}
.left-nav_link {
    padding: 10px 0;
}

.left-nav_items .left-nav_link a {
    padding: 0;
}

.left-nav_items .left-nav_link.crux-body-copy--bold a,
.left-nav_items .left-nav_link.crux-body-copy--bold a:hover {
    border: none;
}

.left-nav_items .left-nav_link.crux-body-copy--bold a {
    color: #999999;
}

.left-nav_items  .left-nav_link.active a {
    color: #000;
}

@media (max-width: 1199px) {
    .left-nav_items .left-nav_link.crux-body-copy--bold a {
        color: #000;
    }

    .left-nav__title {
        margin-bottom: 10px;
    }

    .pdf-link {
        margin-top: 10px;
    }
}

@media (max-width: 767px) {
    .left-nav__title {
        margin: 10px 0 20px;
    }

    .pdf-link {
        margin-top: 20px;
    }
}
.food-landing-page__top-section--image  .food-labels__image {
    overflow: hidden;
}

@media only screen and (max-width : 767px) {
    .food-landing-page__top-section--image  .food-labels__image {
        margin-top: 5px;
    }
}
.labelComponent {
    display: inline-grid;
    margin-bottom: 15px;
}

.labelComponent__label-icon {
    /*width: 150px;*/
}

.labelComponent__label-rating {
    margin-left: 115px;
    position: absolute;
}

.labelComponent__label-verbatim {
    line-height: 1.31;
    margin-top: 10px;
    min-height: 4rem;
    max-width:150px;
    max-height:4rem;
    overflow:visible;
}

.food-landing-page__label--section .headline {
    margin-bottom: 15px;
}

@media only screen and (min-width: 768px) and (max-width: 1200px) {
    .labelComponent__label-icon {
        /*margin-left: -15px;*/
    }

    .labelComponent__label-rating {
        margin-left: 105px;
    }
}

@media only screen and (max-width: 767px) {
    .labelComponent {
        margin-bottom: 0;
    }

    .labelComponent__label-icon {
       /* margin-left: -15px;*/
    }

    .labelComponent__label-rating {
        margin-left: 105px;
    }

    .food-landing-page__label--section--odd.col-xs-6 {
        display: table;
    }
}
/*
.claimComponent {
    border-bottom: 2px solid #979797;
    margin-bottom: 15px;
    padding-bottom: 15px;
}
*/

.claimComponent{display:inline-grid;margin:0 0 40px;}

@media (max-width: 1199px) {
}

section.food-landing-page__middle-section-claim-component {
    /*border-bottom: 2px solid #dcdcdc;*/
    /*margin-bottom: 15px;
    padding-bottom: 15px;*/
    font-size: 0;
    display:grid;
    width:150px;
    height:150px;
    background:#fff;
    border-radius:75px;
    text-align:center;
    margin:auto;
}

.claimcomponent--last .food-landing-page__middle-section-claim-component {
    /* remove the bottom border on the element */
    border-bottom: none;
}

.food-landing-page__claim--section .headline {
    margin-bottom: 15px;
}

.img-food-claim-rating {
    margin-right: 10px;
    position: absolute;
    padding-left: 115px;
}

.img-food-claim-verbatim {
    display: inline-block;
    vertical-align: middle;
    width: calc(100% - 47px);
    margin: auto;
}

.img-food-claim-verbatim__link {
    display: inline-grid;
    width: 100%;
    font-size: 0;
}

.img-food-claim-verbatim__link-content {
    display: inline-grid;
    vertical-align: middle;
    width: calc(100% - 15px);
}

.food-landing-page__middle-section-claim-component .crux-icons-caret-slider-right {
    display: inline-block;
    vertical-align: middle;
    color: #9b9b9b;
    font-size: 15px;
}

.img-food-claim-verbatim:hover * {
    color: #00AE4D;
}

#issue-page-rss-news {
    margin-top: 58px;
}

#issue-page-rss-news .newsPageComponent__title {
    margin-bottom: 40px;
}

#issue-page-rss-news .news-item__timestamp,
#issue-page-rss-news .cra-news-item__timestamp {
    display: none;
}

#issue-page-rss-news .cra-news-item {
    margin-bottom: 20px;
}

#issue-page-rss-news .cra-see-all-news a.crux-body-copy {
    border-color: #000;
    text-decoration: none;
    border-width: 0;
    border-bottom-width: 1px;
    border-style: solid;
}

#issue-page-rss-news .cra-see-all-news a.crux-body-copy:hover {
    text-decoration: none;
    color: #00AE4D;
    border-bottom: 1px solid #00AE4D;
}

#issue-page-rss-news .cra-news-item a p:first-of-type {
    font-family: 'Averta W01 Semibold', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 600;
    font-style: normal;
    font-stretch: normal;
    line-height: 1.25;
    letter-spacing: normal;
    color: #000;
    margin-bottom: 20px;
}

#issue-page-rss-news .cra-news-item a p:first-of-type:hover {
    text-decoration: none;
    color: #00AE4D;
}

#issue-page-cta1 {
    margin-top: 60px;
}

#issue-page-timeline {
    margin-top: 50px;
}

#issue-page-first-ux-section {
    margin-top: 60px;
}

#issue-page-rss-news .rss-news-right-column {
    margin-top: 80px;
}

#issue-page-hero-section {
    overflow-x: hidden;
}

@media all and (-ms-high-contrast:none), all and (-ms-high-contrast:active) {
    #issue-page-rss-news .news-item a:hover .news-item__photo::before {
        background-color: rgba(0,174,77, 0.7);
    }
}

@supports (-ms-ime-align:auto) {
    #issue-page-rss-news .news-item a:hover .news-item__photo::before {
        background-color: rgba(0,174,77, 0.7);
    }
}

@media (max-width: 1199px) {
    #issue-page-first-ux-section {
        margin-top: 40px;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .rss-news-right-column .recirc-model {
        float: right;
        width: 50%;
        padding-left: 15px;
    }

    .rss-news-right-column .horizontal-line-wrapper {
        width: 50%;
        margin-left: 50%;
        padding-left: 15px;
    }

    .rss-news-right-column hr {
        margin-bottom: 0;
    }
}

@media (max-width: 1199px) {
    #issue-page-rss-news .rss-news-right-column {
        margin-top: 40px;
    }

    #issue-page-cta1 {
        margin-top: 25px;
    }
}

@media (max-width: 767px) {
    #issue-page-rss-news {
        margin-top: 35px;
    }
}


/* hide the dates from the news feeds
.news-item__timestamp {
    display:none;
    visibility: hidden;
}

.cra-news-item__timestamp {
    display:none;
    visibility: hidden;
}

.cra-news-item .crux-article__bold-link {
   margin: 0 0 20px;
}

.cra-news-list__item .cra-news-item {

}
*/

