#mobile-account-log {
    z-index: 2;
    width: 100%;
}

.account-log-container {
    background: #fff;
    overflow: hidden;
    max-height: 100vh;
    height: -webkit-fill-available;
    overflow-y: auto;
}

.account-log-header {
    text-align: center;
    background: #fff;
    border-bottom: 1px solid #ddd;
}

.account-log-header h1 {
    font-size: 18px;
    color: #555;
}

.account-log-balance {
    padding: 20px;
    text-align: center;
}

.account-log-balance h2 {
    color: #757575;
    font-family: Montserrat;
    font-size: 16px;
}

.account-log-balance .account-balance-amount {
    font-family: Montserrat;
    font-size: 32px;
    color: #EA794C;
    font-weight: 700;
}

.account-log-transaction .account-log-amount {
    font-family: "SFPROTEXT";
    font-weight: 500;
    font-size: 14px;
    width: 60px;
    max-width: 60px;
    text-align: right;
}

.account-log-tabs {
    display: flex;
    justify-content: space-around;
}

.account-log-tab {
    flex: 1;
    text-align: center;
    padding: 10px;
    cursor: pointer;
    font-family: "SFPROTEXT";
    font-size: 16px;
    font-weight: 700;
}

.account-log-tab.active {
    color: #EA794C;
    font-weight: bold;
    border-bottom: 2px solid #EA794C;
}

.account-log-transactions {
}

.account-log-transaction {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding: 12px;
}

.account-log-transaction:last-child {
    border-bottom: none;
}

.account-log-transaction .account-log-details {
    flex: 1;
}

.account-log-transaction .account-log-amount.positive {
    color: #5cb85c;
}

.account-log-transaction .account-log-amount.negative {
    color: #DF361F;
}

.account-log-timestamp {
    color: #757575;
    display: flex;
    flex-direction: column;
    text-align: left;
    width: 48px;
    max-width: 48px;
}

.account-log-date {
    font-family: Montserrat;
    font-size: 12px;
    font-weight: 700;
}

.account-log-time {
    font-family: Montserrat;
    font-size: 8px;
    font-weight: 500;
}

.account-log-note {
    display: flex;
    flex-direction: column;
    text-align: left;
    width: calc(100% - 108px);
    max-width: calc(100% - 108px);
}

.account-log-title {
    font-size: 15px;
    font-family: "SFPROTEXT";
    font-weight: bold;
    color: #000;
    font-weight: 500;
}

.account-log-subtitle {
    font-family: "SFPROTEXT";
    font-size: 12px;
    font-weight: 400;
    color: #757575;
}
