/*!
 * resizable 1.0.0
 * https://github.com/tannernetwork/resizable
 *
 * Copyright 2015 Tanner (http://tanner.zone)
 * Released under the MIT license
 */

.resizable {
    position: relative;
}

.resizable .resizable-handle {
    position: absolute;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.resizable .resizable-l, .resizable .resizable-r {
    height: calc(100% - 10px);
    top: 5px;
    width: 10px;
}

.resizable .resizable-l {
    cursor: ew-resize;
    left: -5px;
}

.resizable .resizable-r {
    cursor: ew-resize;
    right: -5px;
}

.resizable .resizable-t, .resizable .resizable-b {
    height: 10px;
    left: 5px;
    width: calc(100% - 10px);
}

.resizable .resizable-t {
    cursor: n-resize;
    top: -5px;
}

.resizable .resizable-b {
    cursor: s-resize;
    bottom: -5px;
}

.resizable-resizing {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
}

.resizable-resizing-l {
    cursor: ew-resize;
}

.resizable-resizing-r {
    cursor: ew-resize;
}

.resizable-resizing-t {
    cursor: n-resize;
}

.resizable-resizing-b {
    cursor: s-resize;
}