#bubble-banner {
    position: fixed;
    left: 65px;
    bottom: 75px;
    z-index: 2;
    width: 140px;
    height: 140px;
    clip-path: circle();
    display: none;
}

#bubble-banner .item {
    border-radius: 50%;
    width: 120px;
    height: 120px;
    margin: 10px auto;
    display: flex;
    align-items: center;
    text-align: center;
    color: #fff;
    line-height: 1.5;
    transition: all .05s ease;
    background-color: #FF8357;
    transition: all .3s ease-in-out;
    opacity: 0.6;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .4);
    -webkit-box-shadow: 0 5px 5px 0 rgba(0, 0, 0, .4);
}

#bubble-banner .item span {
    margin: 12px;
}

@media (min-width: 1920px) {
    #bubble-banner {
        display: block;
    }
}