#n2-ss-editor-modal {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: none;
    z-index: 10000001;
    background-color: rgba(43, 52, 63, 0.9);
}

#n2-ss-editor-modal.n2-active {
    display: block;
}

.n2-ss-editor-inner {
    position: relative;
    top: 10%;
    max-width: 980px;
    height: 80%;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
}

.n2-ss-editor-header {
    position: relative;
    border-bottom: 1px solid #ccd1d6;
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    overflow: hidden;
    background-color: #f2f5fa;
    line-height: 59px;
    height: 59px;
    padding: 0 58px;
    text-align: center;
    font-size: 20px;
    text-transform: capitalize;
    color: #6b7989;
}

.n2-ss-editor-header-close {
    position: absolute;
    top: 0;
    right: 0;
    width: 59px;
    height: 59px;
    background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAGFBMVEW5w8m5w8m5w8m5w8myvMOzvMO4wsgAAABdt9D1AAAACHRSTlNhxZstF/D+AIlGn1gAAACzSURBVHgBhZNbjsQwCASb9/1vvGKRCDMTqesnjrrsODagFodKZIYovJYVTPOg9i10LDCvcoO08iGY7KRdTuwRLOb1YJJh/8LkWj/oGC3Iza8hI/TgjZmIskx7zSdBaXvvdATfBSJ8Bh6xSziwO4gxOo/dBaCJGnyMeQxIhaTVNW5eloJIr2vcvDwDmfXgN28yqUA/QTdJf5MeFD1qdln0ulnBsJKjRUvLnjcObz3evLT9/wD6sBe9VsZBUQAAAABJRU5ErkJggg==) center center no-repeat;
    cursor: pointer;
}

.n2-ss-editor-boxes {
    height: 500px;
    overflow: auto;
}

.n2-ss-editor-box {
    position: relative;
    width: 270px;
    height: 180px;
    float: left;
    margin: 20px;
    background-size: cover;
    background-position: center center;
    overflow: hidden;
    border-radius: 5px;
    cursor: pointer;
}

.n2-ss-editor-box.n2-active {
    box-shadow: 0 0 0 4px #0c92df;
}

.n2-ss-editor-box-actions {
    position: absolute;
    right: 5px;
    top: 5px;
    display: none;
}

:HOVER > .n2-ss-editor-box-actions {
    display: block;
}

.n2-ss-editor-box-actions a {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    padding: 0 5px;
    background-color: #6b7986;
    border-radius: 3px;
    color: #ffffff;
    text-decoration: none;
    box-shadow: none;
}

.n2-ss-editor-box .n2-ss-editor-box-title {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #212d3a;
    line-height: 50px;
    height: 50px;
    color: #cedae2;
    font-size: 12px;
    overflow: hidden;
    padding: 0 10px;
    width: 100%;
    box-sizing: border-box;
}

.n2-ss-editor-buttons {
    padding: 10px 20px;
    text-align: center;
    height: 36px;
}

.n2-ss-editor-buttons a {
    display: inline-block;
    height: 36px;
    line-height: 36px;
    min-width: 70px;
    padding: 0 20px;
    background: #51b82d;
    border-radius: 3px;
    box-shadow: none;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: bold;
}

.n2-ss-editor-buttons a.n2-ss-editor-insert {
    float: right;
}

.n2-ss-editor-buttons a.n2-ss-editor-create-slider {
    float: left;
    background-color: #6b7986;
}