/*  */


body {
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    line-height: 1.5;
}


/* Navbar */


.navbar ul.active {
    height: 100vh;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 40px;
    right: 0;
    left: 40px;
    background-color: white;
    padding: 1.5rem;
    margin-top: 20px;
    box-shadow: 0 4px 10px 0 #666;
}

/* wishlist course */

.wishlist {
    right: -100%;
    opacity: 0;

    transition: all.8s ease-in-out;
}

.wishlist.show {
    right: 0;
    opacity: 1;
}
.selected-course {
    width: 100%;
    height: 92%;
    overflow-y: scroll;
}
