.data-value.soldout + .data-legend > a.list-legend > i.legend-icon {
    visibility: hidden !important;
    pointer-events: none;
}
.list-legend li:hover .merchandising-tooltip, .footer-legend li:hover  .merchandising-tooltip,
.list-legend li:active .merchandising-tooltip, .footer-legend li:active  .merchandising-tooltip{
    opacity: 1;
    pointer-events: auto;
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
}

.date-price-body {
    -webkit-transition: -webkit-transform 0.6s ease-in-out;
    transition: transform 0.6s ease-in-out;
}
@media (max-width: 767px) {

    .date-price-body>li .body-wrap>li .body-data>li .data-wrap .data-legend {
        display: table-cell;
    }
    .date-price-body>li .body-wrap>li .body-data {
        min-width: inherit;
    }
    .date-price-body>li .body-wrap>li .body-data>li:first-child {
        border-left:none;
    }
    .date-price-body>li .body-wrap>li .body-data>li:nth-child(4n) {
        display:inline;
        border-right:none;
    }
    .flex-container {
        padding: 0 ;
        margin: 0;
        list-style: none;

        display: -webkit-box !important;
        display: -moz-box !important;
        display: -ms-flexbox !important;
        display: -webkit-flex !important;
        display: flex !important;

        -webkit-flex-flow: row wrap !important;
        justify-content: flex-start !important;
    }

    .flex-item {
        flex-shrink: 0;
        flex-basis: 24.9%;

    }
}

.tooltip-inner {
    max-width: 300px;
    /*padding: 10px !important;*/
    color: black !important;
    text-decoration: none !important;
    background-color: white !important;
    border: 5px solid #81c8e8 !important;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.tooltip.top .tooltip-arrow {
    border-top-color: #81c8e8  !important;;
}

.tooltip.bottom .tooltip-arrow {
    border-bottom-color: #81c8e8 !important;
}
.list-legend, .footer-legend li{
    cursor: default;
}
.list-legend .merchandising-tooltip, .footer-legend li .merchandising-tooltip {
    background-color: white;
    border: 4px solid #81c8e8;
    border-radius: 5px;
    color: #323232;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    padding: 10px !important;
    position: absolute;
    text-align: left;
    width: 250px;
    z-index: 9999;

    display: block;
    margin-top: 2px;
    opacity: 0;
    pointer-events: none;
    -webkit-transform: translateY(10px);
    -moz-transform: translateY(10px);
    -ms-transform: translateY(10px);
    -o-transform: translateY(10px);
    transform: translateY(10px);
    -webkit-transition: all .25s ease-out;
    -moz-transition: all .25s ease-out;
    -ms-transition: all .25s ease-out;
    -o-transition: all .25s ease-out;
    transition: all .25s ease-out;
    -webkit-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -moz-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -ms-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    -o-box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
}

/* This bridges the gap so you can mouse into the tooltip without it disappearing */
.list-legend .merchandising-tooltip:before,
.footer-legend li .merchandising-tooltip:before {
    top: -5px;
    content: " ";
    display: block;
    height: 20px;
    left: 0;
    position: absolute;
    width: 100%;
}

/* CSS Triangles - see Trevor's post */
.footer-legend .merchandising-tooltip:after,
.list-legend .merchandising-tooltip:after {
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-bottom: solid #81c8e8 10px;
    top: -10px;
    content: " ";
    height: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
    width: 0;
}

/* IE can just show/hide with no transition */
.lte8  .list-legend .merchandising-tooltip,.lte8  .footer-legend li .merchandising-tooltip {
    display: none;
}

.lte8  .list-legend:hover .merchandising-tooltip,.lte8  .footer-legend li:hover .merchandising-tooltip,
.lte8  .list-legend:active .merchandising-tooltip,.lte8  .footer-legend li:active .merchandising-tooltip {
    display: block;
}