.sticky-bar {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translate(0, -50%);
    z-index: 1000;
}

.sticky-bar-icon {
    width: 50px;
    height: 50px;
    padding: 12px;
    background-color: #e63312;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: 1px solid #fff;
    transition: background-color 0.3s ease;
    transform: translateX(1px);

    &:hover {
        background-color: #c12b10;
    }
}