.wash-care--symbols {
    display: table;
    content: "";
    line-height: 0;
    clear: both;
    width: 100%;

    .entry--label {
        .unitize-height(37);
        vertical-align: middle;
        float: left;
        .unitize(line-height, 37);
    }

    .entry--content {
        width: 62%;
        float: left;
    }

    .symbols--tooltip {
        position: relative;
        display: inline-block;
        line-height: normal;

        &[data-tooltip] {
            &:before {
                position: absolute;
                left: 50%;
                transform: translate(-50%, 0);
                .unitize(bottom, 67);
                background-color: @brand-secondary;
                color: white;
                border-radius: 2px;
                .unitize-padding(10, 15);
                content: attr(data-tooltip);
                .unitize-width(200);
                text-align: center;
                opacity: 0;
                visibility: hidden;
                transition: all .3s ease-in-out;
                .unitize(font-size, 12);
            }

            &:after {
                position: absolute;
                left: 50%;
                transform: translate(-50%, 0);
                .unitize(top, -30);
                border-top: 7px solid @brand-secondary;
                border-left: 7px solid transparent;
                border-right: 7px solid transparent;
                content: "";
                opacity: 0;
                visibility: hidden;
                transition: all .3s ease-in-out;
            }

            &:hover {
                &:before {
                    opacity: 1;
                    visibility: visible;
                    .unitize(bottom, 47);
                }

                &:after {
                    opacity: 1;
                    visibility: visible;
                    .unitize(top, -10);
                }
            }
        }
    }
}