#floating-pricetag {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    overflow: hidden;
    z-index: 9999;
}

.price-tag {
    display: inline-block;
    width: auto;
    height: 38px;
    background-color: var(--tag-color, #333);
    border-radius: 3px 4px 4px 3px;
    border-left: 1px solid var(--tag-color, #333);
    margin-left: 19px;
    position: absolute;
    color: white;
    line-height: 38px;
    padding: 0 10px 0 10px;
    bottom: 0;
    white-space: nowrap;
    animation: floatUp 5s linear, fadeOut 5s ease-in-out forwards;
}

.price-tag::before {
    content: "";
    position: absolute;
    display: block;
    left: -19px;
    width: 0;
    height: 0;
    border-top: 19px solid transparent;
    border-bottom: 19px solid transparent;
    border-right: 19px solid var(--tag-color, #333);
}

.price-tag::after {
    content: "";
    background-color: white;
    border-radius: 50%;
    width: 4px;
    height: 4px;
    display: block;
    position: absolute;
    left: -9px;
    top: 17px;
}

@keyframes floatUp {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-100vh);
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}
