.custom-dropdown {position: relative;}

.custom-dropdown-menu {
    padding: 0;
    position: absolute;
    top: 50px;
    left: 0;
    z-index: 9;
    width: 180px;
    height: 0;
    opacity: 0;
    pointer-events: none;
    transition: all 0.5s linear;
}

.custom-dropdown:hover .custom-dropdown-menu {
    height: 100%;
    opacity: 1;
    pointer-events: all;
}

.custom-dropdown-item {
    list-style: none;
    border: 1px solid #eee;
}

.custom-dropdown-item a {
    display: block;
    background-color: #fff;
    color: #000;
    font-family: Poppins, sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    line-height: 1;
    border-top: 0;
    text-decoration: none;
    padding: 10px 15px;
    word-wrap: break-word;
    transition: all 0.1s linear;
}

.custom-dropdown-item a:hover {
    background-color: #e40201;
    color: #fff;
}