.powerball {
    width: 50px;
    height: 50px;
    line-height: 50px;
    font-size: 36px;
    font-family: 'Lora', serif;
    font-weight: bold;
    color: azure;
    background: linear-gradient(90deg, rgba(0,171,194,1) 0%, rgba(1,189,214,1) 35%, rgba(5,192,217,1) 100%);
    display: inline-block;
    border-radius: 50%;
    box-shadow: #00ABC2 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #00ABC2 0 -3px 0 inset;
    text-align: center;
}

.smallball {
    width: 40px;
    height: 40px;
    line-height: 40px;
    margin-left: 4%;
    font-size: 28px;
    font-family: 'Lora', serif;
    text-align: center;
    font-weight: bold;
    color: azure;
    background: linear-gradient(90deg, rgba(0,171,194,1) 0%, rgba(1,189,214,1) 35%, rgba(5,192,217,1) 100%);
    display: inline-block;
    border-radius: 50%;
    box-shadow: #00ABC2 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, #00ABC2 0 -3px 0 inset;
}

/* Button */

.live-button {
    align-items: center;
    appearance: none;
    background: linear-gradient(90deg, rgba(0,171,194,1) 0%, rgba(1,189,214,1) 35%, rgba(5,192,217,1) 100%);
    border: 0;
    border-radius: 6px;
    box-shadow: rgba(66, 66, 35, 0.4) 0 2px 4px,rgba(63, 66, 35, 0.3) 0 7px 13px -3px,rgba(107, 111, 58, 0.5) 0 -3px 0 inset;
    box-sizing: border-box;
    color: midnightblue;
    cursor: pointer;
    display: inline-flex;
    font-family: "Nunito", serif;
    font-weight: bold;
    height: 48px;
    justify-content: center;
    line-height: 1;
    list-style: none;
    overflow: hidden;
    padding-left: 16px;
    padding-right: 16px;
    position: relative;
    text-align: left;
    text-decoration: none;
    transition: box-shadow .15s,transform .15s;
    user-select: none;
    -webkit-user-select: none;
    touch-action: manipulation;
    white-space: nowrap;
    will-change: box-shadow,transform;
    font-size: 18px;
    z-index: 0;
}

.live-button:focus {
    box-shadow: azure 0 0 0 1.5px inset, rgba(45, 35, 66, .4) 0 2px 4px, rgba(45, 35, 66, .3) 0 7px 13px -3px, azure 0 -3px 0 inset;
}

.live-button:hover {
    box-shadow: rgba(45, 35, 66, .4) 0 4px 8px, rgba(45, 35, 66, .3) 0 7px 13px -3px, azure 0 -3px 0 inset;
    transform: translateY(-2px);
}

.live-button:active {
    box-shadow: azure 0 3px 7px inset;
    transform: translateY(2px);
}