.app-banner{
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
    box-sizing:border-box; min-width:180px; 
    max-width:calc(100% - 20px);
    min-height:60px;
    border-radius:6px;
    background-color:#0076be;
    color:#FFF;
    position:fixed;
    bottom:10px;
    left:10px;
    z-index:999999;
}

.app-banner .app-header-container{
    width:100%;
    float:left; 
    border-bottom:solid 1px #0076be; 
    padding:12px 18px 6px 18px; 
    display:flex; 
    align-items:center;
    position:relative;
}

.app-banner .app-header-container .app-image{
    width:35px; 
    float:left;
}

.app-banner .app-header-container .app-titulo{
    float:left; 
    margin-left:10px; 
}

.app-banner .app-header-container .close-banner{
    position:absolute; 
    right:20px;
    font-size:1.4rem;
    font-weight:700;
}

.app-banner .app-body-container{
    font-size:1rem; 
    display:flex;
    flex-direction:column; 
    line-height:150%; 
    justify-content:space-between; 
    padding:20px 18px; 
    background-color:#fafafa; 
    border-radius:0 0 6px 6px;
}

.app-banner .app-body-container .app-message{
    width:100%;
    float:left;
    padding:8px 0; 
    color:#333;
}

.app-banner .app-body-container .app-message .app-list{
    display:flex; 
    flex-direction:column;
    margin-top:6px; 
    padding-left:8px;
}

.app-banner .app-body-container .hidden-app-message{
    display:none !important;
}

.app-banner .app-body-container .app-btn-container{
    display:flex; 
    justify-content:end;
}

.app-banner .app-body-container .app-btn-container .app-btn{
    padding:8px 16px;
    text-align:center;
    background-color:#20c997;
    color:#FFF;
    font-weight:600;
    border-radius:20px;
    font-size:1rem;
    max-width:120px;
    margin-top:10px;
}

.app-banner .app-body-container .app-btn-container .app-btn:hover{
    cursor:pointer;
    background: #ff8201;
}


@media only screen and (min-width: 600px){
   .app-banner{
       max-width:calc(400px - 20px) !important;
   } 
}