.mobil-app {        
    position: fixed;
    left: 0;
    bottom: 0;    
    width: 100%;
    display: none;
    z-index: 1;
}

.mobile-app-main img {
    width: 100%;
}

.mobile-app-logo {
    position: absolute;
    left: 80px;
    top: 58%;
}

.mobile-app-logo img {
    transform: scale(3.5, 3.5);
    -ms-transform: scale(3.5, 3.5);
    -webkit-transform: scale(3.5, 3.5);
}

.mobile-app-label {
    position: absolute;
    left: 210px;
    top: 60%;    
    color: white;
    font-weight:bold;
    font-size:1.6em;
}
    
.mobile-app-button {
    position: absolute;
    right: 60px;
    top: 62%;
}
    
.mobile-app-button a {
    font-weight: 300;
    border: 3px solid white;
    border-radius: 25px;
    line-height: 10px;
    padding: 0 33px 0 32px;
    height: 50px;
    font-size: 30px;    
    background: white;
    color: black;
    -webkit-transition: background 150ms ease-in-out, color 150ms ease-in-out, border-color 150ms ease-in-out;
    transition: background 150ms ease-in-out, color 150ms ease-in-out, border-color 150ms ease-in-out;
}
.mobile-app-button a:hover {
    background: #46b65e;
    color: #fff;
}
.mobile-app-button a:active {
    background: #3fa354;
    border-color: #3fa354;
    color: #fff;
}

.mobile-app-close {
    position: absolute;
    right: 30px;
    top: 20%;
}
    
.mobile-app-close img {
    transform: scale(2.5, 2.5);
    -ms-transform: scale(2.5, 2.5);
    -webkit-transform: scale(2.5, 2.5);
}