#course-selection-form .course-list {
    /* display: flex; */
    /* flex-direction: column; */
    display: grid;
    grid-template-columns: auto auto auto;
    grid-gap: 24px;
    background-color: #fff;
    color: #444;
}

#course-selection-form .course-list .course-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

#course-selection-form .course-list .course-card img {
    border-radius: 8px;
}

#course-selection-form .course-list.horizontal {
    display: flex;
    flex-direction: column;
    gap: 16px;
    background-color: #fff;
    color: #444;
}

#course-selection-form .course-list.horizontal .course-card {
    border-top: 1px solid #eee;
    display: flex;
    flex-direction: row;
    gap: 16px;
    margin-top: 8px;
    padding-top: 24px;
}

#course-selection-form .course-list.horizontal .course-info {
    align-items: center;
    display: flex;
    flex-direction: row;
    gap: 16px;
    width: 100%;
}

#course-selection-form .course-list.horizontal .course-info .course-title {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
}

#course-selection-form .course-list.horizontal .course-card button {
    width: 180px;
}

#course-selection-form .course-list .course-card button:focus svg * {
    fill: #ffffff;
}

#course-selection-form .course-list .course-card button:focus {
    background-color: #07294d;
    color: #ffffff;
}


#course-selection-form .course-list .course-card button.selected,
#course-selection-form .course-list .course-card button.selected:focus,
#course-selection-form .course-list .course-card button.selected:focus:hover,
#course-selection-form .course-list .course-card button:focus:hover {
    background-color: #ffc600;
    color: #07294d;
}

#course-selection-form .course-list .course-card button.selected svg * {
    fill: #07294d;
}

#course-selection-form .course-list.horizontal .course-card p {
    display: none;
}

#course-selection-form .course-list .course-price {
    font-weight: bold;
}

#course-selection-form .course-list.horizontal .course-price {
    padding: 0 24px;
}

#course-selection-form .course-list.horizontal img {
    height: 80px;
    width: 120px;
}

#course-selection-form .hour-amount {
    color: #07294d;
    font-weight: bold;
}

#course-selection-form .course-selection-bar {
    /* background-color: #07294d; */
    background-color: #eee;
    border-radius: 8px;
    box-shadow: 0 24px #FFFFFF 0;
    /* color: #ffffff; */
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding: 24px;
    position: sticky;
    top: 130px;
}

#course-selection-form .course-selection-bar *,
#course-selection-form .course-info * {
    margin-bottom: 0;
}

#course-selection-form .course-selection-bar .heading {
    align-items: center;
    display: flex;
    gap: 16px;
}

#course-selection-form .course-info {
    align-items: flex-start;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

#course-selection-form .course-info .course-ce-hours {
    background-color: #eee;
    border-radius: 24px;
    font-size: 13px;
    font-weight: bold;
    padding: 2px 16px;
    text-transform: uppercase;
    width: auto;
}

#course-selection-form .course-info button {
    align-items: center;
    display: flex;
    gap: 8px;
    height: 50px;
    justify-content: center;
    padding: 8px;
    text-align: center;
    width: 100%;
}

#course-selection-form button#submit-button[disabled] {
    background-color: #eee;
    color: #444;
}

#course-selection-form button#submit-button[disabled] svg * {
    fill: #07294d;
}

#course-selection-form button#submit-button {
    align-items: center;
    display: flex;
    font-weight: bold;
    transition: none;
    white-space: nowrap;
}

#course-selection-form button#submit-button svg {
    margin-left: 8px;
}

#course-selection-form button#submit-button:hover svg *,
#course-selection-form button#submit-button:focus svg * {
    fill: #07294d;
}

#course-selection-form button#submit-button svg * {
    fill: #FFFFFF;
}

/* #course-selection-form .course-bundle-bar {
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: flex-end;
    margin-top: 24px;
    padding: 36px 0;
} */

#course-selection-form .course-bundle-bar {
    position: fixed;
    left: 0;
    top: calc(100vh - 124px);
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
    background: #fff;
    border-top: 1px solid #eee;
    height: 100px;
    margin-top: 24px;
    padding: 24px;
    width: 100%;
    z-index: 100;
}

#course-selection-form .course-bundle-bar {
    display: flex;
    align-items: center;
    gap: 24px;
}

#course-selection-form .bundle-title {
    display: flex;
    flex-direction: column;
}

#course-selection-form .bundle-title p {
    color: #07294d;
    font-weight: bold;
    margin: 0;
}

#course-selection-form .bundle-checkout {
    display: flex;
    align-items: center;
    gap: 24px;
}

/* Ignore this in the final plugin */
body .site-content.page-header-disable {
    margin: 0 !important;
}

@media only screen and (max-width: 1024px) {
    #course-selection-form .course-bundle-bar .bundle-checkout div {
        display: none;
    }

    #course-selection-form .course-selection-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    #course-selection-form .course-selection-bar div:nth-child(2) {
        margin-left: 38px;
    }
}