.course-modal-application {
    display: none;
    position: fixed;
    z-index: 5;
    padding-top: 150px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.4);
}

.course-modal-application-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    border: 1px solid #888;
    border-radius: 13px;
    width: 80%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2), 0 6px 20px rgba(0, 0, 0, 0.19);
    animation-name: course-animatetop;
    animation-duration: 0.4s;
}

@keyframes course-animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.course-close {
    color: white;
    float: right;
    font-size: 32px;
    font-weight: bold;
}

.course-close:hover,
.course-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.course-modal-application-header {
    padding: 2px 16px;
    background-color: var(--main);
    color: white !important;
    border-radius: 12px 12px 0 0;
}

.course-modal-application-header h2 {
    color: var(--white);
}

.course-modal-application-body {
    padding: 2px 16px;
    border-radius: 12px;
}


.thanks {
    background-color: #d1e7dd;
    color: #0f5132;
    text-align: center;
    padding: 1rem 1rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}