#products .standard-price-tooltip-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 6px;
    vertical-align: middle;
}

#products .standard-price-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;

    padding: 2px;
    margin: 0;
    border: 0;
    border-radius: 50%;

    background: #BDD73E;
    color: #000;

    cursor: pointer;
    vertical-align: middle;
    line-height: 1;

    appearance: none;
    -webkit-appearance: none;
}

#products .standard-price-info-icon:hover,
#products .standard-price-info-icon:focus {
    background: #BDD73E;
    color: #000;
    outline: none;
}

#products .standard-price-info-svg {
    display: block;
    width: 16px;
    height: 16px;
    min-width: 16px;
    min-height: 16px;
    flex: 0 0 16px;
}

#products .standard-price-tooltip {
    position: absolute;
    left: 50%;
    bottom: calc(100% + 8px);
    transform: translateX(-50%);
    z-index: 9999;

    display: none;
    width: max-content;
    max-width: 320px;
    padding: 7px 10px;

    background: #000;
    color: #fff;
    border-radius: 4px;

    font-family: inherit;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;

    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    pointer-events: none;
}

#products .standard-price-tooltip::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    transform: translateX(-50%);

    border-width: 5px;
    border-style: solid;
    border-color: #000 transparent transparent transparent;
}

#products .standard-price-tooltip.is-left::after {
    left: 10px;
    transform: none;
}

#products .standard-price-tooltip.is-right::after {
    left: auto;
    right: 10px;
    transform: none;
}

#products .standard-price-tooltip-wrapper:hover .standard-price-tooltip,
#products .standard-price-tooltip-wrapper:focus-within .standard-price-tooltip,
#products .standard-price-tooltip-wrapper.is-visible .standard-price-tooltip {
    display: block;
}

#products .standard-price-tooltip.is-below {
    top: calc(100% + 8px);
    bottom: auto;
}

#products .standard-price-tooltip.is-below::after {
    top: auto;
    bottom: 100%;

    border-color: transparent transparent #000 transparent;
}

@media (max-width: 767px) {
    #products .standard-price-tooltip {
        font-size: 13px;
        max-width: 280px;
        white-space: normal;
    }
}

@media (max-width:560px) {
    #products .standard-price-tooltip-wrapper {
        top: -2px;
    }
}