.show-courses-dropdown .nav-courses-dropdown {
    display: block;
}

.nav-courses-dropdown {
    position: relative;
}

.nav-courses-dropdown-fixed {
    width: 250px;
    text-align: left;
    background-color: #ffffff;
    padding: 5px 5px;
    overflow: hidden;
    max-height: 30px;
    border-radius: 5px;
    visibility: visible;
    transition: max-height 0.2s ease-in-out;
    position: absolute;
    right: 0px;
    top: -15px;
}

.nav-courses-dropdown:hover .nav-courses-dropdown-fixed {
    max-height: 900px;
    transition: max-height 0.2s ease-in-out;
}

.nav-courses-dropdown-select {
    display: flex;
    height: 30px;
    margin-bottom: 10px;
}

.nav-courses-dropdown-select-image {
    width: 20px;
    height: 20px;
    background-color: #F9F9F9;
}

.nav-courses-dropdown-select-title {
    margin-left: 10px;
    padding-top: 0px;
    color: #959595;
    line-height: 1.4;
}

.nav-courses-dropdown-select svg {
    position: absolute;
    right: 10px;
    top: 13px;
}

.nav-courses-dropdown-cat-group {
    padding: 0px 10px;
}

.nav-courses-dropdown-cat-group-title {
    font-weight: 600;
    margin-bottom: 5px;
}

.nav-courses-dropdown-cat-group-course {
    display: flex;
    margin-bottom: 10px;
}

.nav-courses-dropdown-cat-group-course-image {
    width: 25px;
    height: 25px;
    border-radius: 5px;

}

.nav-courses-dropdown-cat-group-course-title {
    margin-top: 7px;
    margin-left: 10px;
    font-size: 12px;
    cursor: pointer;
}