/**/
ul.megalabelscontent {
    position: absolute;
    top: 0px;
    left: 0px;
    margin-bottom: 0px;
    display: flex;
    gap: 10px;
}
ul.megalabelscontent.bottom-left {
    top: initial;
    left: 0px;
    bottom: 0px;
}
ul.megalabelscontent.bottom-right {
    top: initial;
    right: 0px;
    bottom: 0px;
    left: initial
}

ul.megalabelscontent > li {
    position: relative;
    width: max-content;
    padding: 0px 5px;
}

ul.megalabelscontent > li ul {
    display: flex;
    gap: 6px;
}

ul.megalabelscontent .bottom-right {
    bottom: 0px;
}
ul.megalabelscontent > li ul li {
    font-size: 13px;
    padding: 0px 8px;
    cursor: pointer;
}
.megalabelscontent .description {
    position: absolute;
    background: #08080882;
    max-width: 150px;
    z-index: 12;
    left: 0px;
    padding: 5px 5px;
    /* filter: blur(1px); */
    color: white;
    font-size: 11px;
    margin-top: 5px;
    z-index: -1;
    opacity: 0;
    width: max-content;
    line-height: 15px;
}

.megalabelscontent li:hover .description {
    opacity: 1;
    z-index: 1
}

.megalabelscontent .description:before {
    content: "";
    display: block;
    width: 0px;
    height: 0px;
    border-left: 3px solid transparent;
    border-right:  3px solid transparent;
    border-bottom: 6px solid #08080882;
    position: absolute;
    top: -6px;
}

.megalabelscontent .bottom-left .description, .megalabelscontent .bottom-right .description {
    bottom: 26px;
}
.megalabelscontent .bottom-right .description {
    right: 0px;
    left: initial;
}
.megalabelscontent .bottom-left .description:before {
    top: initial;
    bottom: -4px;
    transform: rotate(60deg);
}
.megalabelscontent .bottom-right .description:before {
    top: initial;
    bottom: -4px;
    right: 5px;
    transform: rotate(60deg);
}

ul.megalabelscontent .bottom-left {
    bottom: 0px;
}
ul.megalabelscontent .bottom-right {
    bottom: 0px;
    right: 0px
}

/*prestashop color tags*/
ul.megalabelscontent > li.discount {
    background-color: #E30613;
    color: white;
}
ul.megalabelscontent > li.out_of_stock {
    background-color: #000;
    color: white
}
/*prestashop color tags end*/