/* Style the pyramid of the tooltip */
.suggested-price-label .nav-arrow {
    border-style: solid;
    _border-style: dashed;
    border-width: 9px;
    border-color: transparent;
    border-top-width: 0;
    border-bottom: 9px solid #ccc;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: -9px;
    left: 50%;
    margin-left: -5px;
}

.suggested-price-label .nav-arrow-inner {
    border-style: solid;
    _border-style: dashed;
    border-width: 9px;
    border-color: transparent;
    border-top-width: 0;
    border-bottom: 9px solid #292929;
    width: 0;
    height: 0;
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 1px;
    left: -9px;
}

/* Style for the suggested price label */
.suggested-price-label {
    position: relative;
    color: #7A9C59;
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
    font-family: 'Montserrat';
    line-height: 18px;
}

.suggested-price-label bdi {
    color: #7A9C59;
    font-size: 14px;
    font-weight: 500;
    font-family: Montserrat, sans-serif;
    vertical-align: middle;
    line-height: 18px;
}

.suggested-price-label span.woocommerce-Price-currencySymbol {
    font-family: Montserrat, sans-serif;
    color: #7A9C59;
    font-size: 12px;
    font-weight: 500;
    vertical-align: middle;
    padding-bottom: 2px;
}

/* Hide the tooltip by default */
.suggested-price-label .tooltip {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Style for the info icon */
.suggested-price-label .info-icon {
    display: inline-block;
    width: 13px;
    height: 13px;
    background-image: url(/wp-content/uploads/2024/05/info-tooltop.svg);
    background-size: cover;
    margin-left: 5px;
    cursor: pointer;
    vertical-align: middle;
}

/* Style for the tooltip */
.suggested-price-label .tooltip {
    display: none; /* Hidden by default */
    position: absolute;
    padding: 14px 10px 15px 14px;
    font-size: 12px;
    margin-inline: 60px;
    font-weight: 500;
    line-height: 15px;
    background-color: #292929;
    font-family: 'Montserrat' !important;
    color: white;
    margin-top: 6px;
    width: 381px;
    transform: translateX(-2px);
}

/* Show the tooltip when hovering over the info icon or tooltip */
.suggested-price-label:hover .tooltip,
.suggested-price-label .tooltip:hover {
    display: block;
    opacity: 1; /* Make it visible */
}

/* Additional tooltip styling when hovered */
.suggested-price-label:hover .tooltip {
    z-index: 99999;
    padding: 14px 10px 15px 14px;
    font-size: 12px;
    margin-inline: 60px;
    font-weight: 500;
    line-height: 15px;
    background-color: #292929;
    font-family: 'Montserrat' !important;
    color: white;
    margin-top: 6px;
    width: 381px;
    transform: translateX(-2px);
}


@media screen and (max-width: 849px) {
    .suggested-price-label:hover .tooltip {
    margin-inline: 0;
    width: 100%;
    transform: translateX(0px);
    }

    /* Style for the tooltip */
.suggested-price-label .tooltip {
    margin-inline: 0;
    width: 100%;
    transform: translateX(0px);
}
}