#app_bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: white;
    box-sizing: border-box;
    padding: 9px 1px 9px 0;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}
#app_bar .close_btn {
    background: url(/2010/mobile/img/icons/close.png) no-repeat center;
    background-size: 12px auto;
    cursor: pointer;
    padding: 0 21px;
    -webkit-align-self: stretch;
    -moz-align-self: stretch;
    align-self: stretch;
}
#app_bar .logo {
    width: 43px;
    height: 57px;
    -webkit-flex: 0 0 42px;
    -moz-flex: 0 0 42px;
    flex: 0 0 42px;
}
img {
    border: none;
    max-width: 100%;
}
#app_bar .download {
    background: #044CA0;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 14px;
    padding: 6px 10px;
    border-radius: 3px;
}
#app_bar .text_box {
    margin: 0 12px;
    text-align: right;
    color: #333333;
    -webkit-flex: 1 1 auto;
    -moz-flex: 1 1 auto;
    flex: 1 1 auto;
}
#app_bar .text {
    padding-bottom: 12px;
    font-size: 13px;
}
button {
    -webkit-appearance: none;
    font: 16px/1.2 Helvetica, Arial, sans-serif;
    -webkit-border-radius: 0;
    border-radius: 0;
    border: none;
    padding: 0;
    margin: 0;
    color: #404040;
    outline: 0;
}
