.strabl-checkout-btn {
    font-family: "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", sans-serif;
    height: 55px;
    margin-top: 10px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: #fff !important;
    background: #100c08 !important;
    border: 1px solid #000;
    border-radius: 4px;
    padding: 12px;
    cursor: pointer;
    width: 100%;
}

.strabl-checkout-btn[data-role="cart"] {
    margin-top: 0;
}

.strabl-checkout-btn:disabled {
    background-color: #686464;
}

#strabl-info-dialog-close-btn {
    border: none;
    background: none;
    margin-right: -10px;
}

#strabl-info-dialog::backdrop {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(3px);
}

#strabl-loading-animation-container {
    left: 0;
    top: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    display: flex;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999999;
    align-items: center;
    align-content: center;
    justify-content: center;
}

.strabl-payment-icon {
    display: inline-flex;
    align-items: center;
    margin-inline-end: 6px;
    border-radius: 4px;
    overflow: hidden;
}

.strabl-payment-icon img {
    display: block;
    height: 20px;
    width: auto;
}

.strabl-logo-image {
    width: 69px;
    height: 16px;
    object-fit: cover;
    display: block;
}

.strabl-spinner {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.3);
    border-top-color: #100c08;
    animation: strabl-spin 0.8s linear infinite;
}

@keyframes strabl-spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}