.courses_map {
    width: 1500px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.courses_map > .course-box {
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .3);
    background-color: #fff;
    width: 400px;
    border-radius: 20px;
}

.courses_map > .course-box > img {
    border-radius: 20px 20px 0 0;
    width: 400px;
    height: 250px;
}

.courses_map > .course-box > h3 {
    padding: 15px;
}

.courses_map > .course-box > h4 {
    padding-left: 15px;
}

.courses_map > .course-box > .editors {
    width: 100%;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px;
}

.courses_map > .course-box > .editors > a {
    text-decoration: none;
    padding: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
}

.courses_map > .course-box > .editors > a:hover {
    box-shadow: 1px 1px 10px rgba(0, 0, 0, 1);
}


/* Edit course */

.edit_course {
    padding: 20px;
    width: 450px;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #00276b;
    color: #fff;
}

.edit_course .close-button {
    padding: 20px;
    width: 100%;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: left;
}

.edit_course .close-button > i{
    border-radius: 50%;
    padding: 10px;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #00276b;
    cursor: pointer;
}

.edit_course form {
    padding: 10px;
}