@charset "UTF-8";
.simple-resize {
  position: relative; }
  .simple-resize-top, .simple-resize-bottom {
    position: absolute;
    width: 100%;
    height: 6px;
    cursor: s-resize; }
  .simple-resize-top {
    top: -3px;
    left: 0; }
  .simple-resize-bottom {
    left: 0;
    bottom: -3px; }
  .simple-resize-left, .simple-resize-right {
    position: absolute;
    width: 6px;
    height: 100%;
    cursor: e-resize; }
  .simple-resize-left {
    top: 0;
    left: -3px; }
  .simple-resize-right {
    top: 0;
    right: -3px; }
  .simple-resize-top-left, .simple-resize-top-right, .simple-resize-bottom-left, .simple-resize-bottom-right {
    position: absolute;
    width: 1em;
    height: 1em;
    color: #ddd;
    text-align: center; }
    .simple-resize-top-left:after, .simple-resize-top-right:after, .simple-resize-bottom-left:after, .simple-resize-bottom-right:after {
      content: '\2877'; }
  .simple-resize-top-left {
    left: -.36em;
    top: .08em;
    transform: rotate(225deg);
    cursor: se-resize; }
  .simple-resize-top-right {
    right: .08em;
    top: -.36em;
    transform: rotate(-45deg);
    cursor: sw-resize; }
  .simple-resize-bottom-left {
    left: .08em;
    bottom: -.36em;
    transform: rotate(135deg);
    cursor: ne-resize; }
  .simple-resize-bottom-right {
    right: -.36em;
    bottom: .08em;
    transform: rotate(45deg);
    cursor: nw-resize; }
  .simple-resize-outer-top, .simple-resize-outer-bottom {
    border: 1px solid #ccc;
    background-color: #d3d3d3;
    height: 3px;
    cursor: s-resize; }
  .simple-resize-outer-left, .simple-resize-outer-right {
    border: 1px solid #fff;
    background-color: #fff;
    width: 5px;
    cursor: e-resize; }