html {
    background-color: #71c285;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    text-align: center;
    color: white;
}

body {
    max-width: 768px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin: auto;
    height: 100%;
}

img {
    display: block;
    margin: auto;
}

img.install {
    margin-top: 15px;
}

img.logo {
    margin-top: 2rem;
}

img.gift {
    margin-top: 3rem;
}

img.store {
    display: inline-block;
    width: 150px;
}

img.install {
    margin-bottom: 1rem;
}

.bottom-container {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    z-index: -1;
}

.store-container {

    max-width: 768px;
    margin: auto;
    display: block;
}

img.emoji {
    width: 100%;
    height: auto;
    margin: 0;
    padding: 0;
}
.btn__Customerservice {
    color: #FFF;
    background-image: url(service-icon.png);
    background-repeat: no-repeat;
    background-size: 30px;
    background-position: 10px 9px;
    background-color: #000;
    padding: 15px 20px 15px 33px;
    font-weight: bold;
    display: block;
    max-width: 180px;
    border-radius: 5px;
    border: 1px solid #8f8e8f;
    text-decoration: none;
    margin: 10px auto;
    font-family: arial;
    font-size: 12px;
    text-transform: uppercase;
}

@-webkit-keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

@keyframes rubberBand {
    from {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }

    30% {
        -webkit-transform: scale3d(1.25, 0.75, 1);
        transform: scale3d(1.25, 0.75, 1);
    }

    40% {
        -webkit-transform: scale3d(0.75, 1.25, 1);
        transform: scale3d(0.75, 1.25, 1);
    }

    50% {
        -webkit-transform: scale3d(1.15, 0.85, 1);
        transform: scale3d(1.15, 0.85, 1);
    }

    65% {
        -webkit-transform: scale3d(0.95, 1.05, 1);
        transform: scale3d(0.95, 1.05, 1);
    }

    75% {
        -webkit-transform: scale3d(1.05, 0.95, 1);
        transform: scale3d(1.05, 0.95, 1);
    }

    to {
        -webkit-transform: scale3d(1, 1, 1);
        transform: scale3d(1, 1, 1);
    }
}

.rubberBand {
    /* -webkit-animation-name: rubberBand;
    animation-name: rubberBand; */
    animation: rubberBand 1s infinite;
}