html {
	height: 100%;
}

body {
	font-family: Roboto;
	overflow: hidden;
	position: relative;
	height: 100%;
	
}

* {
	box-sizing: border-box;
}

:not( input ):not( textarea ) {
	-webkit-user-select		: none;
    -khtml-user-select		: none;
    -moz-user-select		: none;
    -ms-user-select			: none;
    -o-user-select			: none;
}

fieldset {
	padding-top: 50px;
	border-top: 1px solid #eee;
	position: relative;
}

legend {
	position: absolute;
	font-size: 14px;
	font-weight: bold;
	top: 20px;
	left: 160px;
	width: auto;
}

/* Element */
	[v-cloak] {
		display: none;
	}
	
	.el-table__empty-text {
		display: none;
	}
	
	input, textarea, select, button {
		font-family: Roboto;
	}
	
	.el-loading-mask {
		background-color: rgba( 0, 0, 0, 0.1 );
	}
	
	.el-message-box {
		width: 100%;
		max-width: 420px;
	}
	
	.el-date-editor.el-input, .el-date-editor.el-input__inner {
		width: 100%;
	}
	
	.el-select {
		width: 100%;
	}
	
	.el-menu.el-menu--horizontal {
		border-bottom: none;
		float: right;
	}
	
	.el-popover.el-popper {
		max-height: 100%;
		display: flex;
	}
	
	.el-popover.el-popper .el-form {
		overflow: auto;
		width: 100%;
	}
	
	.el-button + span {
		margin-left: 10px;
	}
	
	.el-button + .el-button-group {
		margin-left: 10px;
	}
	
	.el-button-group + span {
		margin-left: 10px;
	}
	
	span + .el-button {
		margin-left: 10px;
	}

/* Container Top */
	.container-top {
		position: absolute;
		top: 0;
		right: 0;
		bottom: auto;
		left: 0;
		width: auto;
		height: 61px;
		border-bottom: 1px solid #ebeef5;
	}

/* el-menu--horizontal */
	.el-menu--horizontal .fas {
		margin-right: 5px;
		width: 24px;
		text-align: center;
		font-size: 14px;
		vertical-align: middle;
	}

/* Container Menu */
	.container-menu {
		position: absolute;
		top: 61px;
		right: auto;
		bottom: 0;
		left: 0;
		width: 220px;
		height: auto;
		overflow: auto;
		border-right: 1px solid #ebeef5;
	}
	
	.container-menu .el-menu {
		border-right: none;
	}
	
	.container-menu .el-menu .fas {
		margin-right: 5px;
		width: 24px;
		text-align: center;
		font-size: 18px;
		vertical-align: middle;
	}

/* Container Right */
	.container-right {
		position: absolute;
		top: 61px;
		right: 0;
		bottom: 0;
		left: 220px;
		width: auto;
		height: auto;
		overflow: hidden;
		padding: 20px;
	}
	
	.container-right .module .container-grid .el-table {
		margin-top: 20px;
	}
	
	.container-right .module .container-grid .el-form .el-form-item {
		margin-bottom: 0;
	}
	
	.container-right .module .container-grid .el-pagination {
		padding: 10px;
	}
	
	.container-right .module .container-grid .el-tabs {
		margin-top: 20px;
	}
	
	.container-right .module .container-form {
		display: none;
	}
	
	.container-right .module .container-form .el-form {
		margin-top: 20px;
		overflow: auto;
	}
	
	.container-right .module .container-preview iframe {
		margin-top: 20px;
	}
	
	.container-right .module .container-form .module .container-grid .el-form {
		margin-top: 0;
	}
	
	.container-right .module .container-form .el-form .line {
		text-align: center;
	}
	
	.container-right .module .container-form .el-tabs {
		margin-top: 0;
	}
	
	.container-right .module .container-view {
		display: none;
	}
	
	.container-right .module .container-view .el-form {
		margin-top: 20px;
		overflow: auto;
	}
	
	.container-right .module .container-view .el-form iframe {
		border: 1px solid #dcdfe6;
	}
	
	.container-right .module {
		display: none;
	}
	
	.container-right .module .module {
		display: block;
	}

/* Responsive */
	@media ( max-width: 600px ) {
		.container-menu{
			display: none;
		}
		
		.container-right{
			left: 0;
		}
		
		.container-grid [class*=el-col-] {
			float: none;
			width: 100%;
		}
		
		.container-grid .el-col-16 {
			margin-bottom: 10px;
		}
		
		.el-popover.el-popper {
			left: 0 !important;
			width: 100% !important;
		}
		
		.el-popover.el-popper .el-form {
			max-height: 350px;
		}
		
		.container-form .el-form-item__label {
			width: 140px !important;
			text-overflow: ellipsis;
			white-space: nowrap;
			overflow: hidden;
		}
		
		.container-form .el-form-item__content {
			margin-left: 140px !important;
		}
		
		.container-form legend {
			left: 140px;
		}
	}
	
	@media ( min-width: 601px ) {
		.el-menu--horizontal {
			display: none;
		}
	}