div#edit-actions{
	    background: transparent;
    font-size: 14px;
    font-weight: normal;
    padding: 10px 20px;
    letter-spacing: 1px;
    border: 1px solid #7c000c;
    position: relative;
    color: #fff;
    z-index: 1;
}
div#edit-actions:before {
    content: '';
    position: absolute;
    background: #7c000c;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    transition: .5s;
    z-index: -1;
}
div#edit-actions:hover {
    border-color: #7c000c !important;
    color: #7c000c;
}
div#edit-actions:hover:before {
    width: 0;
}
div#edit-actions input#edit-submit {
    background: transparent;
    padding: 0;
    border: none;
}
div#edit-actions:hover input#edit-submit {
    color: #7c000c;
}