.dvlotteryusa-float-widget {
    position: fixed;
    bottom: 6px;
    left: 10px;
    z-index: 99999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    box-shadow: none;
    border: none;
    cursor: pointer;
    transition: width 0.34s cubic-bezier(.28,.8,.38,1), height 0.2s;
    padding: 0;
    margin: 0;
    overflow: visible;
}

.dvlotteryusa-logo-img,
.dvlotteryusa-kofi-img {
    position: absolute;
    left: 0;
    top: 0;
    user-select: none;
    pointer-events: none;
    margin: 0;
    padding: 0;
    display: block;
    transition: opacity 0.18s, width 0.34s cubic-bezier(.28,.8,.38,1), height 0.2s;
    border: none;
    background: transparent;
}

.dvlotteryusa-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* SHOW WHOLE LOGO, not cropped */
    border-radius: 0;
    opacity: 1;
    z-index: 2;
}

.dvlotteryusa-kofi-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* SHOW WHOLE BANNER */
    border-radius: 0;
    opacity: 0;
    z-index: 3;
}

.dvlotteryusa-float-widget.dvlotteryusa-expanded {
    width: 180px;
    height: 48px;
    transition: width 0.34s cubic-bezier(.28,.8,.38,1), height 0.2s;
}
.dvlotteryusa-float-widget.dvlotteryusa-expanded .dvlotteryusa-logo-img {
    opacity: 0;
}
.dvlotteryusa-float-widget.dvlotteryusa-expanded .dvlotteryusa-kofi-img {
    opacity: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

@media (max-width: 900px) {
    .dvlotteryusa-float-widget {
        width: 48px;
        height: 48px;
    }
    .dvlotteryusa-float-widget.dvlotteryusa-expanded {
        width: 144px;
        height: 48px;
    }
}

@media (max-width: 600px) {
    .dvlotteryusa-float-widget {
        width: 48px;
        height: 48px;
        left: 10px;
        bottom: 4px;
    }
    .dvlotteryusa-float-widget.dvlotteryusa-expanded {
        width: 144px;    /* Larger so banner is legible! */
        height: 48px;
    }
}
.dvlotteryusa-logo-img:not([src]),
.dvlotteryusa-kofi-img:not([src]) {
    display: none !important;
}