/* sticky-size-button.css */
@media screen and (max-width: 549px) {
    .sticky-size-button {
        display: block !important;
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 999;
    }
}

@media screen and (min-width: 550px) {
    .sticky-size-button {
        display: none !important;
    }
}
