.vipps-checkout {
    display: grid;
    width: 100%;
    gap: 20px;
}

.vipps-checkout__terms {
    display: flex;
    width: 100%;
    gap: 10px;
    align-items: flex-start;
    justify-self: stretch;
    color: var(--ink-soft, #626276);
    font-size: 12px;
    line-height: 1.45;
    text-align: left;
}

.vipps-checkout__terms input {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
    margin: 1px 0 0;
    accent-color: var(--primary, #594ae2);
}

.vipps-checkout__terms a {
    color: var(--primary-dark, #4032c5);
    font-weight: 700;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.vipps-checkout__button {
    display: block;
    width: min(100%, 320px);
    min-height: 52px;
    margin: 0 auto;
    padding: 0;
    border: 0;
    border-radius: 9px;
    color: #fff;
    background: #ff5b24;
    box-shadow: 0 5px 14px rgba(255, 91, 36, .16);
    cursor: pointer;
    font: inherit;
    font-weight: 700;
    line-height: 1;
    transition: filter .15s ease, transform .15s ease, box-shadow .15s ease;
}

.vipps-checkout__button img {
    display: block;
    width: 249px;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.vipps-checkout__button:hover {
    box-shadow: 0 7px 18px rgba(255, 91, 36, .2);
    filter: brightness(.96);
    transform: translateY(-1px);
}

.vipps-checkout__button:active {
    box-shadow: 0 4px 10px rgba(255, 91, 36, .14);
    transform: none;
}

.vipps-checkout__button:disabled {
    cursor: wait;
    opacity: .65;
    transform: none;
}

.vipps-checkout__payment-note {
    display: flex;
    gap: 7px;
    margin-top: 20px;
    align-items: center;
    justify-content: center;
    color: var(--ink-soft, #626276);
    font-size: 11px;
    font-weight: 700;
    text-align: center;
}

.vipps-checkout__payment-note svg {
    width: 16px;
    flex: 0 0 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
}

@media (prefers-reduced-motion: reduce) {
    .vipps-checkout__button {
        transition-duration: .01ms;
    }
}
