* {
	box-sizing: border-box;
}
/**
 * Body
 */
.v-body {
	padding: 0;
	margin: 0;
	height: 100%;
	background: #222;
	color: #ccc;
	font-family: 'Arial';
}


/**
 * Button
 */
.v-btn {
	position: relative;
	display: inline-block;
	padding: 0 20px;
	min-width: 120px;
	height: 34px;
	line-height: 34px;
	color: #ccc;
	background-color: #444;
	font-size: 10pt;
	text-align: center;
	text-decoration: none;
	border-radius: 6px;
	border: 0;
	outline: 0;
	transition: 0.2s;
	cursor: pointer;
	margin: 2px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
	font-family: 'Roboto', 'Arial';
}
.v-btn:hover {
	background-color: #555;
	color: #fff;
}

.v-btn.primary {
	background-color: #005cf2;
	color: #fff;
}
.v-btn.disable {
	background-color: #333;
	color: #555;
	cursor: default;
}
.v-btn.fit {
	width: 100%;
}
.v-btn.shadow {
	box-shadow: 3px 3px 30px rgba(0,0,0,0.3);
}
.v-btn.blur {
	background-color: rgba(255,255,255, 0.05);
}
.v-btn.blur:hover {
	background-color: rgba(255,255,255, 0.1);
}
.v-btn.ico {
	padding: 0 5px;
	min-width: auto;
}
.v-btn.ico.small {
	padding: 0;
	min-width: auto;
}
.v-btn.ico.tiny {
	padding: 0;
	min-width: auto;
}
.v-btn.ico > img {
	display: block;
	margin: 0 auto;
	height: 100%;
}
.v-btn.no-bg {
	background-color: transparent;
	opacity: 0.6;
}
.v-btn.no-bg:hover {
	opacity: 1;
}

.v-btn.small {
	height: 28px;
	line-height: 28px;
	min-width: 100px;
	font-size: 9pt;
}
.v-btn.tiny {
	height: 20px;
	line-height: 20px;
	min-width: auto;
	font-size: 9pt;
}
.v-btn.no-min-width {
	min-width: auto;
}
.v-btn.large {
	height: 44px;
	line-height: 44px;
	min-width: 180px;
	font-size: 10pt;
	border-radius: 10px;
}

.v-btn-group {
	font-size: 0;
}
.v-btn-group > .v-btn {
	
}
.v-btn-group > .v-btn:first-child {
	
}
.v-btn-group > .combine {
	display: inline-block;
	margin: 2px 2px;
}
.v-btn-group > .combine:first-child {
	margin-left: 0;
}
.v-btn-group > .combine > .v-btn {
	margin: 0;
	margin-left: 1px;
	border-radius: 0;
}
.v-btn-group > .combine > .v-btn:first-child {
	border-top-left-radius: 6px;
	border-bottom-left-radius: 6px;
}
.v-btn-group > .combine > .v-btn:last-child {
	border-top-right-radius: 6px;
	border-bottom-right-radius: 6px;
}

.v-btn.bordered {
	background-color: transparent;
	border: 1px solid #777;
	line-height: 32px;
	box-sizing: border-box;
}
.v-btn.bordered:hover {
	border-color: #888;
}
.v-btn.bordered.large {
	line-height: 42px;
}
.v-btn.bordered.small {
	line-height: 26px;
}
.v-btn.bordered.tiny {
	line-height: 18px;
}

.v-btn.more {
	padding-right: 40px;
}
.v-btn.more:after {
	content: "";
	display: block;
	position: absolute;
	top: 11px;
	right: 13px;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	background-color: transparent;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-bottom-right-radius: 1px;
}
.v-btn.more.large:after {
	top: 15px;
	right: 18px;
	width: 7px;
	height: 7px;
}
.v-btn.more.small:after {
	top: 7px;
	right: 13px;
	width: 7px;
	height: 7px;
}
.v-btn.more.tiny:after {
	top: 6px;
	right: 12px;
	width: 5px;
	height: 5px;
}
/**
 * Container
 */
.v-container {
	max-width: 900px;
	padding: 0 20px;
}

.v-container.no-padding {
	padding: 0;
}

.v-container.narrow {
	max-width: 500px;
}

.v-container.fit {
	max-width: none;
}


/**
 * Form
 */
.v-form > .item {
	position: relative;
	display: block;
	margin: 10px 0 15px 0;	
	border-radius: 5px;
}
.v-form > .item > label {
	display: block;
	font-size: 11pt;
	margin-bottom: 8px;
}
input[type='text'],
input[type='password'] {
	position: relative;
	background-color: rgba(255,255,255,0.2);
	border: 0;
	width: 100%;
	color: #fff;
	padding: 10px 15px 10px 15px;
	border-radius: 8px;
	outline: none;
	font-size: 12pt;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
input[type='text']:focus,
input[type='password']:focus {
	background-color: rgba(255,255,255,0.25);
}
.v-form > .item.floating > label {
	position: absolute;
	top: 0px;
	line-height: 50px;
	height: 50px;
	left: 15px;
	display: block;
	font-size: 12pt;
	transition: 0.2s;
	z-index: 1;
	color: #bbb;
	cursor: text;
}
.v-form > .item.floating.focused > label {
	line-height: 27px;
	height: 27px;
	font-size: 10pt;
	color: #999;
}
.v-form > .item.floating > input[type='text'],
.v-form > .item.floating > input[type='password'] {
	height: 50px;
	padding: 20px 15px 5px 15px;
}
.v-form > .item > .input {
	position: relative;
}
.v-form > .item > .input > .right-ico,
.v-form > .item > .input > .left-ico {
	position: absolute;
	top: 7px;
	width: 22px;
	height: 22px;
	opacity: 0.6;
}
.v-form > .item > .input > .right-ico {
	right: 8px;
}
.v-form > .item > .input > .left-ico {
	left: 8px;
}
.v-form > .item > .input.right-ico > input[type='text'],
.v-form > .item > .input.right-ico > input[type='password'] {
	padding-right: 37px;
}
.v-form > .item > .input.left-ico > input[type='text'],
.v-form > .item > .input.left-ico > input[type='password'] {
	padding-left: 37px;
}

/**
 * hr
 */
.v-hr {
	height: 1px;
	background-color: rgba(255,255,255,0.15);
	margin: 40px 0;
}
.v-hr.medium {
	margin: 25px 0;
}
.v-hr.small {
	margin: 15px 0;
}
.v-hr.tiny {
	margin: 5px 0;
}
.v-hr.bottom {
	margin-top: 0;
}

.v-hr.top {
	margin-bottom: 0;
}

.v-hr.line-only {
	margin: 0;
}

.v-hr.transparent {
	background-color: transparent;
}


/**
 * InfoCard
 */
.v-infocard {
	text-align: center;
	padding: 20px 15% 35px 15%;
	font-size: 11pt;
}
.v-infocard > .title {
	color: #ccc;
	padding: 0;
	margin: 5px 0 10px 0;
	line-height: 140%;
	color: #fff;
}
.v-infocard > .msg {
	color: #ccc;
	font-size: 10pt;
	line-height: 140%;
}
.v-infocard > .foot {
	margin-top: 30px;
}


/**
 * Layout
 */
.v-layout {
	display: table;
	width: 100%;
	height: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}

.v-layout > .v-left-side {
	display: none;
	width: 200px;
	background-color: rgba(0,0,0,0.5);
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

@media (min-width: 480px) {
	.v-layout > .v-left-side {
		display: table-cell;
	}
}

.v-layout > .v-right-side {
	display: none;
	width: 200px;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
@media (min-width: 480px) {
	.v-layout > .v-right-side {
		display: table-cell;
	}
}
@media (min-width: 480px) {
	.v-layout.with-divider > .v-right-side,
	.v-layout.with-divider > .v-main {
		border-left: 1px solid rgba(255,255,255,0.1);
	}

	.v-layout.fixed-main > .v-main {
		width: 900px;
		max-width: 900px;
	}
	.v-layout.fixed-main > .v-right-side {
		width: auto;
		max-width: auto;
	}
	
}

.v-layout > .v-main {
	display: table-cell;
	-webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.v-layout > .v-left-side.with-padding,
.v-layout > .v-right-side.with-padding,
.v-layout > .v-main.with-padding {
	padding: 0 25px;
}


/**
 * List
 */
.v-list {
	font-size: 10pt;
	box-sizing: border-box;
}
.v-list > .v-label {
	color: #888;
	padding: 3px 0;
	margin-top: 15px;
}
.v-list > .v-label:first-child {
	margin-top: 0;
}
.v-list > .v-item {
	display: block;
	text-decoration: none;
	color: #ccc;
	transition: 0.2s;
	box-sizing: border-box;
}
.v-list > .v-item.left {
	text-align: left;
}
.v-list > .v-item.right {
	text-align: right;
}
.v-list > .v-item.center {
	text-align: center;
}
.v-list > a.v-item {
	cursor: pointer;
}
.v-list > a.v-item:hover {
	color: #fff;
}

.v-list.with-padding > .v-item {
	padding: 3px 0;
}
.v-list.h.with-padding > .v-item,
.v-list.h.with-padding > .v-label {
	padding: 3px 6px;
}
.v-list.h.with-padding > *[class^='v-']:first-child {
	padding-left: 0;
}

.v-list.h {
	display: table;
}
.v-list.h > .v-item {
	display: table-cell;
}
.v-list.h > .v-label {
	margin-top: 0;
}
.v-list.fit {
	width: 100%;
}

.v-list.h.with-divider > .v-item,
.v-list.h.with-divider > .v-label {
	border-left: 1px solid rgba(255,255,255,0.1);
}
.v-list.h.with-divider > *[class^='v-']:first-child {
	border-left: 0;
}

.v-list.h.with-divider.with-padding > .v-item,
.v-list.h.with-divider.with-padding > .v-label {
	padding: 3px 11px;
}
.v-list.h.with-divider.with-padding > *[class^='v-']:first-child {
	padding-left: 0;
}


/**
 * Msgbox
 */
.v-msgbox {
	position: relative;
	background: #444;
	margin: 13px;
	border-radius: 12px;
	text-align: left;
	min-height: 60px;
	box-shadow: 2px 2px 20px rgba(0,0,0,0.2);
	font-size: 10pt;
}
.v-msgbox.auto-width {
	display: inline-block;
	min-width: 100px;
}
.v-msgbox > .icon {
	position: absolute;
	top: 10px;
	left: 10px;
	vertical-align: top;
	width: 40px;
	height: 40px;
	background: #005cf2;
	border-radius: 10px;
	border: 0;
	outline: 0;
	box-shadow: 3px 3px 30px rgba(0,0,0,0.25);
}
.v-msgbox > .contents {
	padding: 10px 25px 13px 65px;
}
.v-msgbox > .contents > .title {
	display: block;
	transform-origin: left;
	transform: scale(0.75);
	opacity: 0.5;
	margin-bottom: 3px;
}
.v-msgbox > .contents > .msg {
	display: block;
}



/**
 * Panel
 */
.v-panel {
	position: fixed;
	display: block;
	top: 10%;
	left: 50%;
	margin-left: -250px;
	color: #ccc;
	max-width: 500px;
	border: 4px solid rgba(80,80,80,0.8);
	box-shadow: 0px 5px 50px rgba(0,0,0,0.5);
	border-radius: 8px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	vertical-align: top;
	width: 100%;
	overflow: hidden;
	transition: 0.35s;
	z-index: 10;
}
.v-panel.hidden {
	display: none;
	opacity: 0;
	top: 0%;
	transform: scale(0.9);
}

.v-panel > .close-btn {
	position: absolute;
	top: 6px;
	right: 6px;
	width: 15px;
	height: 15px;
	background-color: rgba(255,255,255,0.1);
	border-radius: 8px;
	cursor: pointer;
	transition: 0.2s;
}
.v-panel > .close-btn:before {
	position: absolute;
	top: 7px;
	left: 3px;
	content: '';
	width: 9px;
	height: 1px;
	background-color: #ccc;
	transform: rotate(45deg);
}
.v-panel > .close-btn:after {
	position: absolute;
	top: 7px;
	left: 3px;
	content: '';
	width: 9px;
	height: 1px;
	background-color: #ccc;
	transform: rotate(-45deg);
}
.v-panel > .close-btn:hover {
	background-color: #ccc;
}
.v-panel > .close-btn:hover:before,
.v-panel > .close-btn:hover:after {
	background-color: #000;
}


.v-panel > .contents {
	padding: 23px;
	background-color: #222;	
}

.v-panel > .contents > .title {
	font-family: 'roboto';
	font-weight: 200;
	font-size: 15pt;
	color: #fff;
	padding: 10px 0 20px 0;
	margin: 0;
}

.v-panel > .contents > .content {
	line-height: 140%;
	font-size: 10pt;
}

.v-panel .v-hr {
	background-color: rgba(255,255,255,0.2);
}

.v-panel .v-btn-group {
	text-align: right;
	padding: 0 23px 15px 23px;
	background-color: #222;	
}

.v-panel .v-btn-group.mobile {
	text-align: right;
	padding: 0 23px 15px 23px;
}

@media (max-width: 480px) {
	.v-panel {
		text-align: center;
	}
	.v-panel {
		width: 90%;
		left: 5%;
		margin-left: 0;
	}
	.v-panel .v-btn-group.mobile {
		display: table;
		width: 100%;
		padding: 0;
		margin: 0;
		border-top: 1px solid rgba(255,255,255,0.2);
	}
	.v-panel .v-btn-group.mobile > .v-btn {
		display: table-cell;
		border-radius: 0;
		margin: 0;
		border-left: 1px solid rgba(255,255,255,0.2);
		background-color: #252525;
		height: 48px;
		line-height: 48px;
		font-size: 11pt;
		color: #fff;
	}
	.v-panel .v-btn-group.mobile > .v-btn.primary {
		color: #fff;
		background-color: #005cf2;
	}
	.v-panel .v-btn-group.mobile > .v-btn:first-child {
		border-left: 0;
	}
	.v-panel .v-btn-group.mobile.verticle {
		display: block;
	}
	.v-panel .v-btn-group.mobile.verticle > .v-btn {
		display: block;
		border-left: 0;
		height: 48px;
		line-height: 48px;
		border-top: 1px solid rgba(255,255,255,0.2);
	}
}


/**
 * Dtable
 **/
.v-dtable {
	display: table;
}
.v-dtable > .v-dtable-row {
	display: table-row;
}
.v-dtable > .v-dtable-row > .v-dtable-cell {
	display: table-cell;
}
.v-dtable > .v-dtable-row > .v-dtable-cell.label {
	color: #888;
	padding: 0 10px 0 0;
}


/* v-checkbox */
.v-checkbox {
	box-sizing: border-box;
	display: table;
	margin: 10px 0;
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.v-checkbox > .rect-area {
	display: table-cell;
}
.v-checkbox > .rect-area > .rect {
	position: relative;
	width: 19px;
	height: 19px;
	border-radius: 3px;
	border: 2px solid #888;
}
.v-checkbox.checked > .rect-area > .rect {
	border-color: #666;
	background-color: #666;
}
.v-checkbox.checked > .rect-area > .rect:before {
	content: "";
	position: absolute;
	top: 6px;
	left: 1px;
	width: 7px;
	height: 3px;
	background-color: #fff;
	transform: rotate(45deg);
}
.v-checkbox.checked > .rect-area > .rect:after {
	content: "";
	position: absolute;
	top: 6px;
	left: 4px;
	width: 11px;
	height: 3px;
	background-color: #fff;
	transform: rotate(-45deg);
}
.v-checkbox > label {
	display: table-cell;
	vertical-align: middle;
	padding-left: 8px;
	padding-right: 8px;
	cursor: pointer;
	font-size: 11pt;
}
.v-checkbox:hover > label {
	color: #fff;
}


/* v-toggler */
.v-toggler {
	box-sizing: border-box;
	display: table;
	margin: 10px 0;
	cursor: pointer;
	user-select: none;
	-webkit-tap-highlight-color: transparent;
}
.v-toggler > .rect-area {
	display: table-cell;
	width: 40px;
}
.v-toggler > .rect-area > .rect {
	position: relative;
	width: 38px;
	height: 19px;
	border-radius: 10px;
	border: 2px solid #777;	
	transition: 0.2s;
}
.v-toggler.small > .rect-area > .rect {
	height: 17px;
}
.v-toggler.right {
	width: 100%;
}
.v-toggler:hover > .rect-area > .rect {
	border-color: #ccc;
}
.v-toggler.checked > .rect-area > .rect {
	border-color: #888;
	background-color: #888;
}
.v-toggler > .rect-area > .rect:before {
	content: "";
	position: absolute;
	top: 2px;
	left: 2px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background-color: #ccc;
	transition: 0.2s;
	border: 0px solid #ccc;
}
.v-toggler.small > .rect-area > .rect:before {
	top: 2px;
	width: 9px;
	height: 9px;
}
.v-toggler.checked > .rect-area > .rect:before {
	top: 2px;
	left: 21px;
	background-color: #fff;
}
.v-toggler.checked.small > .rect-area > .rect:before {
	left: 23px;
}
.v-toggler > label {
	display: table-cell;
	vertical-align: middle;
	padding-left: 8px;
	padding-right: 8px;
	cursor: pointer;
	font-weight: normal;
	font-size: 11pt;
}
.v-toggler.small > label {
	font-size: 10pt;
}
.v-toggler.right > label {
	padding-left: 0;
}
.v-toggler:hover > label {
	color: #fff;
}


/* Context-Menu */
.v-context-menu {
	position: relative;
	display: inline-block;
	min-width: 160px;
	background-color: black;
	color: #bbb;
	border-radius: 8px;
	box-shadow: 5px 5px 30px rgba(0,0,0,0.5);
	z-index: 5;
}
.v-context-menu.bright {
	background-color: #ccc;
	color: #222;
}

.v-context-menu.bright .v-hr {
	background-color: #aaa;
}

.v-context-menu.top-arrow:after {
	content: "";
	position: absolute;
	top: -8px;
	left: calc(50%);
	transform: translateX(-6.5px);
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 6.5px 8px 6.5px;
	border-color: transparent transparent #000 transparent;
}
.v-context-menu.top-arrow.bright:after {
	border-color: transparent transparent #ccc transparent;
}

.v-context-menu:before {
	content: "";
	position: absolute;
	top: -10px;
	left: 0;
	width: 100%;
	height: 10px;
	background-color: transparent;
}

.v-context-menu > .item {
	position: relative;
	font-size: 10pt;
	padding: 9px 10px 9px 38px;
	cursor: pointer;
}
.v-context-menu > .item:first-child {
	border-top-left-radius: 7px;
	border-top-right-radius: 7px;
}
.v-context-menu > .item:last-child {
	border-bottom-left-radius: 7px;
	border-bottom-right-radius: 7px;
}
.v-context-menu > .item:hover {
	background-color: #333;
	color: #fff;
}
.v-context-menu.bright > .item:hover {
	background-color: #666;
	color: #fff;
}
.v-context-menu > .item > .ico {
	position: absolute;
	top: 5px;
	left: 6px;
	width: 22px;
}

.v-img.circle {
	border-radius: 50%;
}
.v-img.medium {
	width: 50px;
}


.v-tag {
	background-color: #444;
	display: inline-block;
	font-size: 10pt;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
	transition: 0.3s;
}
.v-tag:hover{
	background-color: #555;
}


.v-avatar {

}

.v-avatar > .picture {
	display: inline-block;
	vertical-align: middle;
	margin-right: 7px;
}
.v-avatar > .picture.mini {
	width: 20px;
	border-radius: 10px;
}
.v-avatar > .picture.small {
	width: 30px;
	border-radius: 15px;
}
.v-avatar > .picture.medium {
	width: 40px;
	border-radius: 20px;
}
.v-avatar > .name {
	display: inline-block;
	vertical-align: middle;
	font-size: 10pt;
}


.v-dropdown {
	display: inline-block;
	position: relative;
}
.v-dropdown > .select {
	position: relative;
	height: 35px;
	padding: 0 50px 0 20px;
	min-width: 140px;
	line-height: 35px;
	background-color: #282828;
	border: 1px solid #777;
	white-space: nowrap;
	overflow: hidden;
	border-radius: 6px;
	font-size: 10.5pt;
	cursor: pointer;
}
.v-dropdown:hover .select {
	background-color: #333;
	color: #fff;
	border-color: #888;
}
.v-dropdown > .select:after {
	content: "";
	display: block;
	position: absolute;
	top: 11px;
	right: 13px;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	background-color: transparent;
	border-right: 1px solid #999;
	border-bottom: 1px solid #999;
	border-bottom-right-radius: 1px;
}
.v-dropdown > .options {
	width: 100%;
	display: none;
	position: absolute;
	padding-top: 5px;
	top: 30px;
	background-color: #000;
	z-index: 2;
	box-shadow: 1px 1px 20px rgba(0,0,0,1);
}
.v-dropdown.show-options > .select {
	z-index: 3;
}
.v-dropdown.show-options > .options {
	display: block;
	border-bottom-right-radius: 8px;
	border-bottom-left-radius: 8px;
	overflow: hidden;
}
.v-dropdown > .options > .option {
	padding: 10px 20px;
	font-size: 10pt;
	min-width: 140px;
	cursor: pointer;
}
.v-dropdown > .options > .option:hover {
	background-color: #ccc;
	color: #222;
}

.v-dropdown.fit {
	display: block;
}
.v-dropdown.fit > .options {
	width: 100%;
}

.v-dropdown.bright > .options {
	background-color: #ccc;
}
.v-dropdown.bright > .options > .option {
	color: #222;
}
.v-dropdown.bright > .options > .option:hover {
	background-color: #666;
	color: #fff;
}