#gift-wrapper {
    width: 128px;
    height: 100px;
    position: fixed;
    bottom: 20px;
    right: 0;
    overflow: hidden;
    cursor: pointer;
}

/*#gift-wrapper #gift-player {
    width: 256px;
    height: 256px;
    position: absolute;
    left: calc(50% - 128px);
    top: calc(50% - 128px);
}*/

#gift-wrapper #gift-player {
    width: 100%;
    height: 100%;
    /*position: absolute;
    left: calc(50% - 128px);
    top: calc(50% - 128px);*/
}


#gift-modal {
    position: fixed;
    left: 0;
    top: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 50;
    background-color: rgba(0,0,0,0.8);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms linear 0ms;
}

#gift-modal.active {
    pointer-events: auto;
    opacity: 1;
}

#gift-modal #gift-confetti {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 800px;
    pointer-events: none;
}

#gift-modal #santa-gift {
    position: absolute;
    width: 100%;
    height: 600px;
    max-height: 100%;
    bottom: -40px;
    pointer-events: none;
    z-index: 2;
    left: 0;
    display: none;
}

#gift-modal #bad-santa {
    position: absolute;
    width: 100%;
    height: 100%;
    max-height: 100%;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 2;
    display: none;
}


#gift-modal #gift-form {
    position: absolute;
    font-size: 100px;
    text-align: center;
    color: #fff;
    font-weight: bold;
    bottom: calc(50% - 100px);
    left: calc(50% - 300px);
    cursor: copy;
    width: 640px;
    z-index: 2;
}

#gift-modal #gift-form #gift-promo {
    padding: 40px;
}

@media (max-width: 639px) {
    #gift-modal #gift-form {
        left: 0;
        width: 100%;
        font-size: 40px;
    }
}