.mittippen-apk-banner {
    position: fixed;
    z-index: 2147483000;
    left: 12px;
    right: 12px;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    display: flex;
    align-items: center;
    gap: 10px;
    max-width: 720px;
    margin: 0 auto;
    padding: 14px 46px 14px 16px;
    color: #fff;
    background: rgba(7, 15, 25, .97);
    border: 1px solid rgba(24, 148, 255, .55);
    border-radius: 14px;
    box-shadow: 0 10px 34px rgba(0, 0, 0, .34);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .22s ease, transform .22s ease;
    font-family: inherit;
}

.mittippen-apk-banner--show {
    opacity: 1;
    transform: translateY(0);
}

.mittippen-apk-banner--hide {
    opacity: 0;
    transform: translateY(18px);
}

.mittippen-apk-banner__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    width: 100%;
}

.mittippen-apk-banner__text {
    display: flex;
    min-width: 0;
    flex-direction: column;
    gap: 3px;
}

.mittippen-apk-banner__title {
    color: #fff;
    font-size: 15px;
    line-height: 1.25;
}

.mittippen-apk-banner__message {
    color: #cbd5df;
    font-size: 12px;
    line-height: 1.35;
}

.mittippen-apk-banner__actions {
    flex: 0 0 auto;
}

.mittippen-apk-banner__download {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0 15px;
    color: #fff !important;
    background: #087ed1;
    border-radius: 9px;
    font-size: 13px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
    white-space: nowrap;
}

.mittippen-apk-banner__download:hover,
.mittippen-apk-banner__download:focus {
    color: #fff !important;
    background: #096fb7;
}

.mittippen-apk-banner__close {
    position: absolute;
    top: 7px;
    right: 8px;
    width: 34px;
    height: 34px;
    padding: 0;
    color: #bdc8d2;
    background: transparent;
    border: 0;
    border-radius: 50%;
    font-size: 25px;
    line-height: 34px;
    cursor: pointer;
}

@media (max-width: 560px) {
    .mittippen-apk-banner {
        left: 8px;
        right: 8px;
        bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        padding: 13px 42px 13px 14px;
    }

    .mittippen-apk-banner__content {
        align-items: stretch;
        flex-direction: column;
        gap: 10px;
    }

    .mittippen-apk-banner__download {
        width: 100%;
    }
}
