#debug {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #ccc;
    bottom: 10px;
    max-height: 30%;
    max-width: 30%;
    opacity: 0.5;
    overflow: auto;
    padding: 5px 10px;
    position: fixed;
    right: 10px;
    z-index: 9999;
    -webkit-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
}
#debug:hover {
    opacity: 1;
}
#debug > .debug-close {
    background-color: #fff;
    cursor: pointer;
    display: block;
    font-style: normal;
    height: 15px;
    line-height: 14px;
    position: absolute;
    right: 0px;
    text-align: center;
    top: 0;
    width: 15px;
}
#debug > .debug-close:hover {
    color: #f00;
}
#debug > .debug-close:after {
    content: "x";
}
.nonsel {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	-o-user-select: none;
	user-select: none;
}
.hidden {
	opacity: 0;
	visibility: hidden;
}
.hide {
	opacity: 0;
}
.hide.visible,
.hidden.visible {
	opacity: 1;
	visibility: visible;
}
.none {
	display: none !important;
}
.clr {
	clear: both;
	font-size: 0;
	line-height: 0;
}
.clrfix:after {
    clear: both;
    content: "";
    display: block;
}
.fixtable:before,
.fixtable:after {
    content: "";
    display: table;
}
.error {
	color: #f04c63;
}
.wrap-table {
	display: table;
	height: 100%;
}
.wrap-row {
	display: table-row;
}
.wrap-cell {
	display: table-cell;
	vertical-align: middle;
}
.wrap-cell.top {
	vertical-align: top;
}
.center {
	text-align: center;
}
.wrap-rel {
	position: relative;
}
