.dd-handle {
    font-family: "Helvetica Neue",Helvetica,Arial,sans-serif;
    display: block;
    height: 30px;
    margin: 5px 0;
    padding: 5px 10px;
    color: var(--dark-black-text);
    text-decoration: none;
    font-weight: normal;
    border: 1px solid #ccc;
    background: rgb(250,250,250);
    background: -moz-linear-gradient(top, rgba(250,250,250,1) 0%, rgba(216,216,216,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,250,250,1)), color-stop(100%,rgba(216,216,216,1)));
    background: -webkit-linear-gradient(top, rgba(250,250,250,1) 0%,rgba(216,216,216,1) 100%);
    background: -o-linear-gradient(top, rgba(250,250,250,1) 0%,rgba(216,216,216,1) 100%);
    background: -ms-linear-gradient(top, rgba(250,250,250,1) 0%,rgba(216,216,216,1) 100%);
    background: linear-gradient(to bottom, rgba(250,250,250,1) 0%,rgba(216,216,216,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#d8d8d8',GradientType=0 );
    -webkit-border-radius: 4px;
    border-radius: 4px;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
}
.dd-handle:hover {
    color: var(--dark-black-text);
    background: rgb(250,250,250);
    background: -moz-linear-gradient(top, rgba(250,250,250,1) 0%, rgba(204,204,204,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(250,250,250,1)), color-stop(100%,rgba(204,204,204,1)));
    background: -webkit-linear-gradient(top, rgba(250,250,250,1) 0%,rgba(204,204,204,1) 100%);
    background: -o-linear-gradient(top, rgba(250,250,250,1) 0%,rgba(204,204,204,1) 100%);
    background: -ms-linear-gradient(top, rgba(250,250,250,1) 0%,rgba(204,204,204,1) 100%);
    background: linear-gradient(to bottom, rgba(250,250,250,1) 0%,rgba(204,204,204,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#fafafa', endColorstr='#cccccc',GradientType=0 );
    cursor: move;
}
.dd-handle button {
    display: block;
    position: relative;
    cursor: pointer;
    float: right;
    margin: -4px 0 0 0;
    padding: 2px 8px;
    white-space: nowrap;
    overflow: hidden;
    font-size: 11px;
    text-align: center;
    font-weight: normal;
    border: 1px solid var(--black);
    border-radius: 2px;
    text-transform: uppercase;
    background: var(--white);
}
.dd-handle button:hover{
   background: #F7C785;
   border: 1px solid #FBA938;
   color:var(--white);
}
