#cx-blik-status-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 40px 56px;
    margin: 40px auto;
    max-width: 600px;
    gap: 32px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 0 2px black;
}

#cx-blik-status-header {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

#cx-blik-status-cx-pay-logo {
    width: fit-content;
    height: 28px;
}

#cx-blik-status-blik-logo {
    width: fit-content;
    height: 30px;
}

.cx-blik-status-icon {
    width: 32px;
    height: 32px;
}

.cx-blik-status-primary-text {
    font-weight: 800;
    font-size: 32px;
    line-height: 38px;
    color: #333333;
}

.cx-blik-status-additional-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}

.cx-blik-status-text {
    line-height: 24px;
    color: #333333;
}

#cx-blik-status-loader {
    width: 40px;
    height: 40px;
    border: 5px solid #F0F8FF;
    border-bottom-color: #2699f2;
    border-radius: 50%;
    animation: rotation 1s linear infinite;
}

@keyframes rotation {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

#cx-blik-status-disclaimer {
    font-size: 12px;
    line-height: 14px;
    letter-spacing: 0.004em;
    color: #808080;
}

.cx-blik-status-button {
    height: 48px;
    min-width: 136px;
    border: none;
    border-radius: 4px;
    background-color: #0b49db;
    color: white;
    font-size: 14px;
    line-height: 16px;
    cursor: pointer;
    white-space: nowrap;
}

@media only screen and (max-width: 576px) {
    #cx-blik-status-container {
        padding: 24px 24px 40px;
        margin: 5px;
        gap: 28px;
    }

    #cx-blik-status-cx-pay-logo {
        height: 26px;
    }

    #cx-blik-status-blik-logo {
        height: 28px;
    }

    .cx-blik-status-icon {
        width: 30px;
        height: 30px;
    }

    .cx-blik-status-primary-text {
        font-size: 30px;
        line-height: 36px;
    }

    #cx-blik-status-loader {
        width: 38px;
        height: 38px;
    }
}