.gs-sizer-container {
    width: 444px;
    height: 444px;
    background-color: black;
}
.gs-view-container {
    width: 400px;
    height: 400px;
    //position: relative;
    //top: 20px;
    //left: 20px;
    margin: 22px;
    overflow: hidden;
    position: absolute;
}
.gs-inactive {
    width: 100%;
    height: 100%;
    opacity: 0.9;
    display: none;
    position: absolute;
    z-index: 3;
}
.gs-sizer-guide {
    width: 100%;
    height: 100%;
    position: absolute;
    display: none;
    z-index: 3;
    background-color: grey;
}
.gs-crosshair {
    position: relative;
    z-index: 4;
    background-color: black;
}
.gs-guide-crosshair {
    position: relative;
    z-index: 4;
    background-color: whitesmoke;
}
.gs-crosshair-y, .gs-guide-y {
    width: 100%;
    height: 1px;
    top: 198px;
}
.gs-crosshair-x, .gs-guide-x {
    height: 100%;
    width: 1px;
    left: 198px;
}
.gs-guide-center {
    top: -224px;
    left: 177px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid whitesmoke;
    position: relative;
    z-index: 4;
}
.gs-quadrant-sizer {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    z-index: 5;
    top: 180px;
    left: 180px;
    cursor: move;
    border: 2px solid grey;
}
.gs-quadrant {
    width: 50%;
    height: 50%;
    float: left;
    z-index: 2;
}

.gs-q1 {
    background-color: blue;
}
.gs-q2 {
    background-color: green;
}
.gs-q3 {
    background-color: red;
}
.gs-q4 {
    background-color: yellow;
}
.gs-snap-container {
    position: absolute;
    width: 100%;
    height: 100%;
}
.gs-snap-container > * {
    position: absolute;
    width: 40px;
    height: 40px;
}
.gs-snap-center {
    top: 180px;
    left: 180px;
}
.gs-snap-top {
    top: -20px;
    left: 180px;
}
.gs-snap-bottom {
    top: 380px;
    left: 180px;
}
.gs-snap-left {
    top: 180px;
    left: -20px;
}
.gs-snap-right {
    top: 180px;
    left: 380px;
}