/** SC.Panel Support */

.sc-pane.sc-panel {
  overflow: visible;
  z-index: 100;
  &.for-sc-panel {
    background: black;
    opacity: 0.3;
    -moz-opacity: 0.3;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=30)"; 
    filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=30);
  }
  
  > .sc-view {
    border: 0px #444 solid;
    background-color: #eaeaea ;
  }

  > .top-right-edge {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    right: -20px;
    z-index: -1;
  }

  > .top-left-edge {
    position: absolute;
    width: 40px;
    height: 40px;
    top: -20px;
    left: -20px;
    z-index: -1;
  }

  > .bottom-left-edge {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: -20px;
    z-index: -1;
  }

  > .bottom-right-edge {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    right: -20px;
    z-index: -1;
  }

  > .top-edge {
    position: absolute;
    height: 20px;
    top: -20px;
    right: 20px;
    left: 20px;
    z-index: -1;
  }

  > .bottom-edge {
    position: absolute;
    height: 20px;
    bottom: -20px;
    right: 20px;
    left: 20px;
    z-index: -1;
  }

  > .left-edge {
    position: absolute;
    width: 20px;
    top: 20px;
    bottom: 20px;
    left: -20px;
    z-index: -1;
  }

  > .right-edge {
    position: absolute;
    width: 20px;
    top: 20px;
    bottom: 20px;
    right: -20px;
    z-index: -1;
  }
}

