.kn-button-wrapper {
    display: flex;
    width: 100%;
    justify-content: flex-start;
}

.kn-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.kn-button:hover {
    filter: brightness(0.92);
}

.kn-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(39, 173, 122, 0.25);
}

