﻿/*Pop-up Entry*/
.ghost-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /*background-color: #d0e0e0a0;*/
    z-index: 1;
}

.container {
    position: absolute;
    bottom: 48px;
    left: 50%;
}

.ghost {
    animation: float 3s ease-out infinite;    
}

@keyframes float {
    50% {
        transform: translate(0, 20px);
    }
}

.shadowFrame {
    width: 130px;
    margin-top: 15px;
}

.shadow {
    animation: shrink 3s ease-out infinite;
    transform-origin: center center;
    ellipse

{
    transform-origin: center center;
}

}

@keyframes shrink {
    0% {
        width: 90%;
        margin: 0 5%;
    }

    50% {
        width: 60%;
        margin: 0 18%;
    }

    100% {
        width: 90%;
        margin: 0 5%;
    }
}
