.design-editor {
    position: fixed;
    background: #2c2c2c;
    top: 35%;
    left: -220px;
    width: 220px;
    z-index: 999;
    color: silver;
    transition: left .5s;
}

.design-editor.open {
    left: 0;
}

.design-editor .design-editor-body {
    padding: 15px 30px;
    position: relative;
}

.design-editor .design-editor-body a.btn {
    background: white;
    color: black;
    padding: 0 15px;
    height: 35px;
    line-height: 35px;
    margin: 10px 0;
}

.design-editor .design-editor-body .checkbox label, .design-editor .design-editor-body .radio label {
    display: flex;
    align-items: center;
}

.design-editor .design-editor-body .checkbox input[type=checkbox], .design-editor .design-editor-body .radio input[type=radio] {
    margin: 0;
    margin-top: 2px;
    margin-left: -22px;
}

.design-editor .design-editor-body a.design-editor-btn {
    position: absolute;
    display: block;
    background: #000000;
    color: white;
    width: 50px;
    height: 50px;
    text-align: center;
    line-height: 50px;
    font-size: 25px;
    right: -50px;
    top: 0;
    -webkit-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.20);
    -moz-box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.20);
    box-shadow: 0px 0px 40px 0px rgba(0, 0, 0, 0.20);
}

.design-editor .design-editor-body a.design-editor-btn:before {
    content: '\f1c6';
    font-family: Material-Design-Iconic-Font;
    display: inline-block;
    -webkit-animation:spin 2s linear infinite;
    -moz-animation:spin 2s linear infinite;
    animation:spin 2s linear infinite;
}

@-moz-keyframes spin { 100% { -moz-transform: rotate(360deg); } }
@-webkit-keyframes spin { 100% { -webkit-transform: rotate(360deg); } }
@keyframes spin { 100% { -webkit-transform: rotate(360deg); transform:rotate(360deg); } }

@media (max-width: 1440px){

    .design-editor {
        display: none;
    }

}