#fixed-price-element {
    position: relative;
    background-color: #fff;
    padding: 10px;
    border: 1px solid #ddd;
    width: 100%;
    box-sizing: border-box;
    z-index: 1000;
    transition: top 0.3s ease;
}

#fixed-price-element.sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}


.fixed-price-element-content {
    max-width: 1200px;
    display: flex;
    justify-content: flex-end;
    gap: 0.5em;
    font-size: larger;
    font-weight: 600;
}