.dropdown-basic .dropdown {
    position: relative;
    display: inline-block;
    margin-bottom: 10px;
}
.dropdown-basic .dropdown .dropbtn {
    color: white;
    padding: 6px 22px;
    border: none;
    cursor: pointer;
}
.dropdown-basic .btn-group .btn-round {
    border-radius: 5px;
    font-size: 16px;
    font-weight: 400;
}
.dropdown-basic .dropdown .dropdown-content {
    display: none;
    position: absolute;
    right: 0;
    background-color: #f9f9f9;
    min-width: 175px;
    -webkit-box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    box-shadow: 0px 8px 16px 0px rgb(0 0 0 / 20%);
    z-index: 1;
    left: 0;
    top: 36px;
}
.dropdown-basic .dropdown .dropdown-content a {
    color: #2b2b2b;
    opacity: 0.6;
    font-size: 13px;
    border-top: 1px solid #efefef;
    background: #fff;
    padding: 5px 16px;
    text-decoration: none;
    display: block;
}
.dropdown-basic .dropdown:hover .dropdown-content {
    display: block;
}
.dropdown-basic .dropdown .dropdown-content a:hover{
    
    background: #efefef;
}
