/** tooltip **/

.pshowpricelog_tooltip_container {
    position: relative;
    display: inline-block;
    cursor: help;
}

.pshowpricelog_tooltip {
    visibility: hidden;
    position: absolute;
    text-align: left;
    width: 170px;
    bottom: 130%;
    left: 50%;
    line-height: normal;
    background: #2e2e2e;
    color: white;
    border-radius: 5px;
    border: 1px solid #d5d5d5;
    padding: 4px 8px;
    white-space: normal;
    z-index: 99999;
    font-size: 12px;
    filter: drop-shadow(0 1px 2px rgb(0 0 0 / 0.1)) drop-shadow(0 1px 1px rgb(0 0 0 / 0.06));
}

#newproduct_block .pricelog_container {
    margin-top: -10px;
}

#newproduct_block .pricelog_container svg {
    width: 18px;
    height: 18px;
}

.pshowpricelog_tooltip::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-color: #454545 transparent transparent transparent;
    border-width: 5px;
    border-style: solid;
}

.pshowpricelog_tooltip_container:hover .pshowpricelog_tooltip {
    visibility: visible;
}

/** / tooltip **/

.pricelog_container {
    display: flex !important;
    clear: both;
    column-gap: 15px;
    align-items: center;
    padding: 15px 15px 15px 0;
}

.pricelog_container div {
    font-size: 13px;
    line-height: normal;
    font-weight: 400;
    margin: 0;
    text-transform: none;
}

.has-discount + .tax-shipping-delivery-label {
    display: flex !important;
    flex-direction: column !important;
}

@media (max-width: 768px) {
    .pricelog_container svg {
        width: 42px;
        height: 42px;
    }
}

.pshowpricelog_tooltip_container {
    float: left;
    margin-right: 6px;
    margin-left: -4px;
}

.pricelog_hidden {
    display: none;
}