.price-tooltip {
    position: relative;
    display: inline-block;
}

.price-tooltip-icon {
    display: block;
    margin-bottom: -5px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_2575_23316)'%3E%3Cpath d='M10 18C14.4183 18 18 14.4183 18 10C18 5.58172 14.4183 2 10 2C5.58172 2 2 5.58172 2 10C2 14.4183 5.58172 18 10 18Z' stroke='black' stroke-width='1.5' stroke-miterlimit='10'/%3E%3Crect x='9.25' y='6' width='1.5' height='1.5' fill='black'/%3E%3Crect x='9.25' y='9' width='1.5' height='6' fill='black'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_2575_23316'%3E%3Crect width='20' height='20' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
}

.price-tooltip-content {
    display: none;
    position: absolute;
    background: #90959E;
    padding: 6px 12px;
    max-width: 226px;
    width: max-content;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 1.43;
    color: #FFFFFF;
    border-radius: 5px;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
}

.price-tooltip:hover .price-tooltip-content {
    display: block;
}

.price-tooltip-content::before {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    bottom: -3px;
    border-radius: 2px;
    left: 50%;
    transform: rotate(45deg);
    margin-left: -4px;
    background: inherit;
}
