.button-block__referal-link{
    height: 48px;
    margin:0 20px 0 9px;
}

.button-block__balls-content{
    display: flex;
    align-items: center;
    gap: 5px;
    background: #2394E5;
    padding: 2px 5px;
    border-radius: 10px;
}

.button-block__balls-notice {
    /*height: 30px;*/
    cursor: pointer;
    display: flex;
    align-items: center;
}

.button-block__balls-notice p{
    font-weight: 300;
    font-size: 14px;
    position: absolute;
    width: 300px;
    height: auto;
    background: #fff;
    display: none;
    transition: .3s;
    right: 13px;
    top: -28px;
    /* display: none; */
    padding: 16px;
    border-radius: 5px;
    z-index: 100;
    box-shadow: 0 4px 5px rgba(0,0,0,0.4);
    margin-top: 40px
}

.button-block__balls-quantity{
    color: #fff;
}

.button-block__balls-notice svg{
    width: 12px;
    height: 12px;
}

.button-block__balls-notice:hover > p{
    display: inline-block;
    color: #000;
}