.sa_lms_course_navigation_button_wrapper {
    justify-content: center;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    padding: 10px;
    border-top: 1px solid #dbdbdb;
    box-shadow: 0px 0px 40px #1727301c;
    display: flex;
}
.sa_lms_course_navigation_button_wrapper.hidden {
    display: none;
}

.sa_lms_complete_and_continue > button {
    border: none;
    font-size: 14px;
    padding: 8px 20px 6px 30px;
    background: rgb(25, 118, 210);
    color: white;
    display: flex;
    gap: 10px;
    align-items: center;
    align-content: center;
    transition: background-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, box-shadow 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, border-color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, color 250ms cubic-bezier(0.4, 0, 0.2, 1) 0ms;
    box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 1px -2px, 
                rgba(0, 0, 0, 0.14) 0px 2px 2px 0px, 
                rgba(0, 0, 0, 0.12) 0px 1px 5px 0px;
    font-family: Raleway, Roboto, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
}
.sa_lms_complete_and_continue > button:hover {
    background: rgb(21, 101, 192);
    box-shadow: rgba(0, 0, 0, 0.2) 0px 2px 4px -1px, 
                rgba(0, 0, 0, 0.14) 0px 4px 5px 0px,
                rgba(0, 0, 0, 0.12) 0px 1px 10px 0px
}

/* Keyframes for spinning animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Applying the animation to a text element */
.spinning {
    animation: spin 2s linear infinite;
}
