.btn-dropdown-group{
    position: relative;
    display: inline-flex;
    vertical-align: middle;
}
.dp-px-1{
    padding-left: .5rem;
    padding-right: .5rem;
}
.btn {
    display: inline-block;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: center;
    text-decoration: none;
    vertical-align: middle;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    background-color: transparent;
    border: 1px solid transparent;
    padding: .375rem .75rem;
    font-size: 1rem;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.btn-dropdown-group>.btn {
    cursor: pointer;
    padding: .25rem .5rem;
    font-size: .875rem;
    border-radius: .2rem;
    color: #fff;
    background-color: transparent;
    /* border-color: #6c757d; */
    position: relative;
    flex: 1 1 auto;
}
.dropdown-toggle {
    white-space: nowrap;
}
.dropdown-toggle::after {
    display: inline-block;
    margin-left: .555rem;
    vertical-align: .255em;
    content: "";
    border-top: .3em solid;
    border-right: .3em solid transparent;
    border-bottom: 0;
    border-left: .3em solid transparent;
}
.dropdown-menu {
    position: absolute;
    top: 100%;
    right: -1px;
    z-index: 10;
    display: none;
    min-width: 10rem;
    padding: .5rem 0;
    margin: .125rem 0 0;
    font-size: .875rem;
    color: #212529;
    text-align: left;
    list-style: none;
    background-color: var(--dark-color);
    background-clip: padding-box;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: .25rem;
}
.dropdown-menu.show {
    display: block;
}
.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem .5rem;
    clear: both;
    font-weight: 400;
    color: rgb(128, 128, 128);
    text-align: inherit;
    text-decoration: none;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    margin: .5rem 0;
}
.dropdown-item:hover{
    background-color: rgb(128, 128, 128);
    color: var(--dark-color);
}
hr:not([size]) {
    height: 1px;
}
.dropdown-divider {
    height: 0;
    margin: .5rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(0,0,0,.15);
    color: inherit;
    background-color: rgb(128, 128, 128);
    border: 0;
    opacity: .25;
}