.Site {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    font-family: webfont;
}

.Site-content {
    -webkit-flex: 1;
    flex: 1;
    width: 100%;
    padding: contentpadding;
    -ms-flex-preferred-size: auto;
}

.Container {
    max-width: gridmaxwidth;
    margin: 0 auto;
}

.Grid {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
}

.Grid-cell {
    -webkit-flex: 1;
    flex: 1;
}

.Grid-cell-Rev {
    -webkit-flex: 0;
    flex: 0;
}

.Grid--flexCells > .Grid-cell {
    display: -webkit-flex;
    display: flex;
}

.Grid--top {
    -webkit-align-items: flex-start;
    align-items: flex-start;
}

.Grid--bottom {
    -webkit-align-items: flex-end;
    align-items: flex-end;
}

.Grid--center {
    -webkit-align-items: center;
    align-items: center;
}

.Grid--justifyCenter {
    -webkit-justify-content: center;
    justify-content: center;
}

.Grid-cell--top {
    -webkit-align-self: flex-start;
    align-self: flex-start;
}

.Grid-cell--bottom {
    -webkit-align-self: flex-end;
    align-self: flex-end;
}

.Grid-cell--center {
    -webkit-align-self: center;
    align-self: center;
}

.Grid-cell--autoSize {
    -webkit-flex: none;
    flex: none;
}

.Grid--fit > .Grid-cell {
    -webkit-flex: 1;
    flex: 1;
}

.Grid--full > .Grid-cell {
    -webkit-flex: 0 0 100%;
    flex: 0 0 100%;
}

.Grid--1of2 > .Grid-cell {
    -webkit-flex: 0 0 50%;
    flex: 0 0 50%;
}

.Grid--1of3 > .Grid-cell {
    -webkit-flex: 0 0 33.3333%;
    flex: 0 0 33.3333%;
}

.Grid--1of4 > .Grid-cell {
    -webkit-flex: 0 0 25%;
    flex: 0 0 25%;
}

.Grid--1of5 > .Grid-cell {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
}

@media (min-width: 385px) {
    .small-Grid--fit > .Grid-cell {
        -webkit-flex: 1;
        flex: 1;
    }

    .small-Grid--full > .Grid-cell {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .small-Grid--1of2 > .Grid-cell {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .small-Grid--1of3 > .Grid-cell {
        -webkit-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }

    .small-Grid--1of4 > .Grid-cell {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .small-Grid--1of5 > .Grid-cell {
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

@media (min-width: 577px) {
    .med-Grid--fit > .Grid-cell {
        -webkit-flex: 1;
        flex: 1;
    }

    .med-Grid--full > .Grid-cell {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .med-Grid--1of2 > .Grid-cell {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .med-Grid--1of3 > .Grid-cell {
        -webkit-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }

    .med-Grid--1of4 > .Grid-cell {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .med-Grid--1of5 > .Grid-cell {
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

@media (min-width: 769px) {
    .large-Grid--fit > .Grid-cell {
        -webkit-flex: 1;
        flex: 1;
    }

    .large-Grid--full > .Grid-cell {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .large-Grid--1of2 > .Grid-cell {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .large-Grid--1of3 > .Grid-cell {
        -webkit-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }

    .large-Grid--1of4 > .Grid-cell {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .large-Grid--1of5 > .Grid-cell {
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

@media (min-width: 961px) {
    .xlarge-Grid--fit > .Grid-cell {
        -webkit-flex: 1;
        flex: 1;
    }

    .xlarge-Grid--full > .Grid-cell {
        -webkit-flex: 0 0 100%;
        flex: 0 0 100%;
    }

    .xlarge-Grid--1of2 > .Grid-cell {
        -webkit-flex: 0 0 50%;
        flex: 0 0 50%;
    }

    .xlarge-Grid--1of3 > .Grid-cell {
        -webkit-flex: 0 0 33.3333%;
        flex: 0 0 33.3333%;
    }

    .xlarge-Grid--1of4 > .Grid-cell {
        -webkit-flex: 0 0 25%;
        flex: 0 0 25%;
    }

    .xlarge-Grid--1of5 > .Grid-cell {
        -webkit-flex: 0 0 20%;
        flex: 0 0 20%;
    }
}

.Box {
    width: 100%;
    padding: boxpadding;
    margin-bottom: boxbottom;
    background: boxbackground;
    border-radius: cornersround;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

.u-full {
    width: 100% !important;
}

.u-full,
.u-1of2 {
    -webkit-flex: none !important;
    flex: none !important;
}

.u-1of2 {
    width: 50% !important;
}

.u-1of3 {
    width: 33.3333% !important;
}

.u-1of3,
.u-2of3 {
    -webkit-flex: none !important;
    flex: none !important;
}

.u-2of3 {
    width: 66.6667% !important;
}

.u-1of4 {
    width: 25% !important;
}
.u-1of4,
.u-3of4 {
    -webkit-flex: none !important;
    flex: none !important;
    margin: auto;
}

.u-3of4 {
    width: 75% !important;
}

.u-1of5 {
    width: 20% !important;
}

.u-1of5,
.u-4of5 {
    -webkit-flex: none !important;
    flex: none !important;
}

.u-2of5 {
    width: 40% !important;
}

.u-3of5 {
    width: 60% !important;
}

.u-4of5 {
    width: 80% !important;
}

@media (min-width: 385px) {
    .u-small-full {
        width: 100% !important;
    }

    .u-small-full,
    .u-small-1of2 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-small-1of2 {
        width: 50% !important;
    }

    .u-small-1of3 {
        width: 33.3333% !important;
    }

    .u-small-1of3,
    .u-small-2of3 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-small-2of3 {
        width: 66.6667% !important;
    }

    .u-small-1of4 {
        width: 25% !important;
    }

    .u-small-1of4,
    .u-small-3of4 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-small-3of4 {
        width: 75% !important;
    }

    .u-small-1of5 {
        width: 20% !important;
    }

    .u-small-1of5,
    .u-small-4of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-small-2of5 {
        width: 40% !important;
    }

    .u-small-2of5,
    .u-small-3of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-small-3of5 {
        width: 60% !important;
    }

    .u-small-4of5 {
        width: 80% !important;
    }
}

@media (min-width: 577px) {
    .u-med-full {
        width: 100% !important;
    }

    .u-med-full,
    .u-med-1of2 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-med-1of2 {
        width: 50% !important;
    }

    .u-med-1of3 {
        width: 33.3333% !important;
    }

    .u-med-1of3,
    .u-med-2of3 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-med-2of3 {
        width: 66.6667% !important;
    }

    .u-med-1of4 {
        width: 25% !important;
    }

    .u-med-1of4,
    .u-med-3of4 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-med-3of4 {
        width: 75% !important;
    }

    .u-med-1of5 {
        width: 20% !important;
    }

    .u-med-1of5,
    .u-med-4of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-med-2of5 {
        width: 40% !important;
    }

    .u-med--2of5,
    .u-med--3of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-med-3of5 {
        width: 60% !important;
    }

    .u-med-4of5 {
        width: 80% !important;
    }
}

@media (min-width: 769px) {
    .u-large-full {
        width: 100% !important;
    }

    .u-large-full,
    .u-large-1of2 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-1of2 {
        width: 50% !important;
    }

    .u-large-1of3 {
        width: 33.3333% !important;
    }

    .u-large-1of3,
    .u-large-2of3 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-2of3 {
        width: 66.6667% !important;
    }

    .u-large-1of4 {
        width: 25% !important;
    }

    .u-large-1of4,
    .u-large-3of4 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-3of4 {
        width: 75% !important;
    }

    .u-large-1of5 {
        width: 20% !important;
    }

    .u-large-1of5,
    .u-large-4of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-4of5 {
        width: 80% !important;
    }

    .u-large-2of5 {
        width: 40% !important;
    }

    .u-large--2of5,
    .u-large--3of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-3of5 {
        width: 60% !important;
    }
}

@media (min-width: xlbreak) {
    .u-xlarge-full {
        width: 100% !important;
    }

    .u-xlarge-full,
    .u-large-1of2 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-xlarge-1of2 {
        width: 50% !important;
    }

    .u-xlarge-1of3 {
        width: 33.3333% !important;
    }

    .u-xlarge-1of3,
    .u-large-2of3 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-xlarge-2of3 {
        width: 66.6667% !important;
    }

    .u-xlarge-1of4 {
        width: 25% !important;
    }

    .u-xlarge-1of4,
    .u-large-3of4 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-xlarge-3of4 {
        width: 75% !important;
    }

    .u-xlarge-1of5 {
        width: 20% !important;
    }

    .u-xlarge-1of5,
    .u-large-4of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-xlarge-2of5 {
        width: 40% !important;
    }

    .u-xlarge--2of5,
    .u-xlarge--3of5 {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-xlarge-3of5 {
        width: 60% !important;
    }

    .u-xlarge-4of5 {
        width: 80% !important;
    }
}

@media (min-width: 577px) {
    .u-med-full {
        width: 100% !important;
    }

    .u-med-full,
    .u-med-fixed {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-med-fixed {
        width: fixedMed !important;
    }
}

@media (min-width: 769px) {
    .u-large-full {
        width: 100% !important;
    }

    .u-large-full,
    .u-large-fixed {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-fixed {
        width: fixedLarge !important;
    }
}

@media (min-width: 1025px) {
    .u-large-full {
        width: 100% !important;
    }

    .u-large-full,
    .u-large-fixed {
        -webkit-flex: none !important;
        flex: none !important;
    }

    .u-large-fixed {
        width: fixedXLarge !important;
    }
}

.LtoR {
    -webkit-order: 0 !important;
    order: 0 !important;
}

@media (min-width: 769px) {
    .LtoR {
        -webkit-order: 2 !important;
        order: 2 !important;
    }
}

.RtoL {
    -webkit-order: 0 !important;
    order: 0 !important;
}

@media (min-width: 769px) {
    .RtoL {
        -webkit-order: 1 !important;
        order: 1 !important;
    }
}

.LtoR-med {
    -webkit-order: 0 !important;
    order: 0 !important;
}

@media (min-width: 577px) {
    .LtoR-med {
        -webkit-order: 2 !important;
        order: 2 !important;
    }
}

.RtoL-med {
    -webkit-order: 0 !important;
    order: 0 !important;
}

@media (min-width: 577px) {
    .RtoL-med {
        -webkit-order: 1 !important;
        order: 1 !important;
    }
}

.k-listview {
    overflow: visible !important;
    border-color: transparent !important;
    border: 0 !important;
    background-color: transparent !important;
}

    .k-listview .k-listview-content {
        overflow: visible !important;
    }

.eq-tab-tpl {
    background-color: #fff;
    margin-bottom: 1em;
    padding: 1em;
    box-shadow: 0 2px 5px 0 rgba(0,0,0,0.16), 0 2px 10px 0 rgba(0,0,0,0.12);
    border: 1px solid transparent;
}

    .eq-tab-tpl:hover {
        border: 1px solid #204085;
        transition: all 0.2s ease-in-out;
    }

        .eq-tab-tpl:hover .eq-vendor {
            color: #204085;
            transition: 0.2s ease-in-out;
        }
/*
.eq-tab-info {
    border-right: 1px solid #efefef;
}*/

    .eq-tab-info dt {
        font-size: 11px;
        height: 16px;
        line-height: 16px;
        text-transform: uppercase;
        opacity: 0.5;
    }

    .eq-tab-info dd {
        margin-bottom: 0.5rem;
    }

.eq-tab-logo img {
    margin-top: 0 !important;
    width: 100% !important;
    margin-right: 0 !important;
    position: relative !important;
    padding: 1em;
}

.eq-vendor-add-info {
    padding-left: 1em;
}

.eq-hex:before {
    content: " ";
    width: 0;
    height: 0;
    border-bottom: 15px solid #eaebe7;
    border-left: 26px solid transparent;
    border-right: 26px solid transparent;
    position: absolute;
    top: -15px;
}

.eq-hex {
    margin-top: 15px;
    width: 52px;
    height: 30px;
    background-color: #eaebe7;
    position: relative;
    margin-bottom: 2em;
    display: inline-block !important;
    margin-right: 0.5em !important;
}

    .eq-hex dt,
    .eq-hex dd {
        text-align: center;
    }

    .eq-hex dt {
        font-weight: 700;
        font-size: 0.5rem;
        text-transform: uppercase;
    }

    .eq-hex dd {
        font-size: 0.8rem;
        line-height: 0.5;
    }

    .eq-hex:after {
        content: "";
        width: 0;
        position: absolute;
        bottom: -15px;
        border-top: 15px solid #eaebe7;
        border-left: 26px solid transparent;
        border-right: 26px solid transparent;
    }

.eq-vendor {
    display: inline-block !important;
}

    .eq-vendor dt {
        display: none !important;
    }



.eq-tab-info-b {
    border-right: 1px solid #efefef;
}