.-x-ed-buttons {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 250px;
    height: 90px;
    background: rgba(255,255,255,.5);
    box-shadow: 0 0 6px rgba(0,0,0,.3);
    z-index: 5000;
}
.-x-ed-buttons a {
    position: relative;
    display: inline-block;
    height: 30px;
    padding: 0 20px;
    border: 1px solid #404040;
    border-radius: 8px;
    font: bold 16px/30px "PT Sans";
    color: white;
    background: #c02020;
    margin-top: 30px;
    margin-left: 30px;
    opacity: .75;
}
.-x-ed-buttons:hover {
    background: white;
}
.-x-ed-buttons a:hover {
    opacity: 1;
    box-shadow: 0 0 4px rgba(0,0,0,.2);
}
.-x-ed-buttons a.cancel {
    background: #909090;
}
.-x-ed-buttons a.disabled {
    opacity: .2 !important;
    cursor: default !important;
    text-decoration: none !important;
}

.-editable {
    border: none !important;
    outline: 2px dotted #d09090;
    outline-offset: 8px;
}
.-editable::before {
    position: absolute;
    font: bold 14px/18px "PT Sans";
    color: white;
    background: #d09090;
    padding: 3px 5px;
    content: "Editable mode";
    top: -32px;
    left: -10px;
    opacity: .15;
}
.-editable:focus::before {
    opacity: 1;
}
.-editable .img-slider {
    position: relative;
    width: 400px;
    margin: 50px auto 70px auto;
    outline: 1px dotted red;
    outline-offset: 5px;
    padding: 10px 5px;
    overflow: auto;
}
.-editable .img-slider>div {
    padding: 10px 20px;
    margin: 15px;
    outline: 1px dotted green;
    outline-offset: 5px;
}
.-x-ed { position: relative; }