.app-promotion {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.app-promotion[hidden] {
    display: none;
}

@media (max-width: 767px) {
    .app-promotion:not([hidden]) {
        display: flex;
    }

    #loginContent.app-promotion-active {
        display: none;
    }
}

.app-promotion-card {
    width: calc(100% - 32px);
    max-width: 335px;
    margin: 90px auto 0;
    padding: 30px 20px 20px;
    background: #ffffff;
    text-align: center;
    box-sizing: border-box;
}

.app-promotion-illustration {
    display: block;
    width: 210px;
    max-width: 210px;
    height: auto;
    margin: 0 auto 30px;
}

.app-promotion-title {
    margin: 0 0 16px;
    font-size: 24px;
    line-height: 1.2;
    font-weight: 700;
    color: #000000;
}

.app-promotion-description {
    margin: 0 0 24px;
    font-size: 16px;
    line-height: 1.45;
    color: #000000;
}

.app-promotion-primary-button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 50px;
    padding: 14px 18px;
    background: #0b8cff;
    color: #ffffff !important;
    border-radius: 12px;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 700;
    box-sizing: border-box;
}

.app-promotion-secondary-button {
    display: block;
    width: 100%;
    margin-top: 18px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #0b8cff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}