/** Rubberband **/
.a9s-selection.improved-polygon .a9s-rubberband {
  fill:rgba(255,255,255,0.15);
  stroke-width:1px;
  stroke:rgba(0, 0, 0, 0.3);
}

/** Polygon **/
.a9s-selection.improved-polygon .a9s-inner,
.a9s-annotation.improved-polygon.editable .a9s-inner {
  stroke-width:2px;
  stroke:#fff;
  stroke-dasharray:5 3;
}

.a9s-annotation.improved-polygon.editable .a9s-inner:hover {
  fill:transparent;
}

.a9s-selection.improved-polygon .a9s-outer,
.a9s-annotation.improved-polygon.editable .a9s-outer {
  stroke-width:4px;
  stroke:rgba(0, 0, 0, 0.35);
}

/** Corner handles **/
.a9s-selection.improved-polygon .a9s-handle .a9s-handle-outer,
.a9s-annotation.improved-polygon.editable .a9s-handle .a9s-handle-outer {
  stroke-width:1;
  stroke:#000;
  color:green;
}

.a9s-selection.improved-polygon .a9s-handle .a9s-handle-inner,
.a9s-annotation.improved-polygon.editable .a9s-handle .a9s-handle-inner {
  stroke-width:2;
  stroke:#fff;
  fill:#000;
  color:green;
}

.a9s-selection.improved-polygon .a9s-handle .a9s-handle-inner:hover,
.a9s-annotation.improved-polygon.editable .a9s-handle.selected .a9s-handle-inner,
.a9s-annotation.improved-polygon.editable .a9s-handle .a9s-handle-inner:hover {
  fill:#fff;
  color:green;
}
.selectedCorner {
  fill: white!important;
}
.selectedCorner .a9s-handle-inner{
  fill: white!important;
  color:green;
}
/** Midpoints **/
.a9s-annotation.improved-polygon.editable .a9s-midpoint {
  display:none;
  fill:rgba(255,255,255,0.65);
  stroke-width:1;
  stroke:rgba(0,0,0,0.65);
}

.a9s-annotation.improved-polygon.editable:hover .a9s-midpoint {
  display:block;
}

.a9s-annotation.improved-polygon.editable .a9s-midpoint:hover {
  fill:#fff;
}
