/* edit */
.ps-box {
    position: relative;
    min-height: 24px;
    /*special outline color added by js */
}
.ps-box:hover {
    outline: 2px solid #cbcbcb;
    min-height: 24px;
}
.ps-box .ps-edit,
.ps-box .ps-grab,
.ps-box .ps-add {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    box-sizing: border-box;
    border: none;
    width: 24px;
    height: 24px;
    color: #fff;
    cursor: pointer;
    z-index: 100;
    background-color: #cbcbcb;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 16px 16px;
}
.ps-box:hover .ps-edit,
.ps-box:hover .ps-grab,
.ps-box:hover .ps-add {
    display: block;
}
.ps-box .ps-edit {
    right: 16px;
    /*special bg color added by js*/
    background-image: url(/_static/dashboard/support/icons/pencil41.png);
}
.ps-box .ps-add {
    /*special bg color added by js*/
    background-image: url(/_static/dashboard/support/icons/1443751631_icon-plus-round.png);
}
.ps-box .ps-grab {
    /*special bg color added by js*/
    background-image: url(/_static/dashboard/support/icons/dots.png);
    width: 16px;
    cursor: url(img/openhand.cur) 8 8, move;
}
.ps-box.ps-box-add {
    min-height: 24px;
}
.ps-region:hover .ps-box-add {
    display: block;
    outline: 2px solid #d8d8d8;
}
.ps-region:hover .ps-box-add:hover {
    outline: 2px solid #cbcbcb;
    /*special outline color added by js*/
}

/* buttons */
.ps-btn {
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    padding: 8px;
    border: none;
    border-radius: 4px;
}
.ps-btn-primary {
    background-color: #2780e3;
}
.ps-btn-default {
    background-color: #090909;
}
.ps-include-editor {
    position: absolute;
    z-index: 100;
    transition: 150ms linear;
    background: #fff;
}
.ps-include-editor-titlebar {
    position: absolute;
    height: 43px;
    top: -43px;
    left: 0;
    right: 0;
    padding: 6px;
    background: #D7DADE;
    box-sizing: border-box;
    /*special bg color added by js*/
}
.ps-include-editor-titlebar p {
    float: left;
    margin: 0;
    font-family: Ubuntu, Helvetica Neue, Helvetica, Arial;
    color: #000;
    line-height: 31px;
}
.ps-include-editor-titlebar .ps-btn {
    float: right;
    margin-left: 6px;
}
.ps-include-editor-close:hover {
    background: rgba(255, 255, 255, 0.6);
}
.ps-include-modal {
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.3);
}
.ps-drop-target {
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
    transition: height 0.3s;
    overflow: hidden;
    outline: none;
    font-size: 14px;
    line-height: 0;
    color: #cbcbcb;
    text-transform: capitalize;
    text-align: center;
}
.ps-dragging-include .ps-drop-target {
    height: 20px;
    line-height: 20px;
    margin-top: 3px;
    margin-bottom: 3px;
    transition: height 0.3s;
    outline: 2px solid #cbcbcb;
    /*special outline color added by js*/
}
.ps-dragging-include .ps-drop-target.ps-no-drop {
    height: 0;
    margin-top: 0;
    margin-bottom: 0;
    outline: none !important;
}
.ps-drop-target.ps-drag-over {
    outline: 2px solid red;
    color: #000;
}
.ps-dragging-include .ps-box:hover {
    outline-color: #cbcbcb;;
}
.ps-dragging-include.ps-region:hover .ps-box-add {
    display: none !important;
}