.cloner-button {
    border-radius: 4px;
    background-color: #4e9e4d;
    border: none;
    color: #FFFFFF;
    text-align: center;
    font-size: 15px;
    padding: 15px;
    width: auto;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
    position: fixed;
    bottom: 150px;
    right: 7%;
}

.cloner-button span {
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

.cloner-button span:after {
    content: '>>';
    position: absolute;
    opacity: 0;
    top: 0;
    right: -20px;
    transition: 0.5s;
}

.cloner-button:hover span {
    padding-right: 25px;
}

.cloner-button:hover span:after {
    opacity: 1;
    right: 0;
}

.cloner-button.disabled{
    background-color: #c1c1c1;
}

.cloner-selects{
    float:left;
    margin-right: 5px;
}

.cloner-deselect{
background-color:#ce0e0e;
    bottom: 40px;


}

.cloner-select-all{
background-color:#5888d0;
    bottom: 95px;

}

#edit_clone_into_chzn {
    max-width: 100%;
}