.virtual-keyboard{
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(0,0,0,0.7);
	z-index: 1000000;
	display: none;
}
.virtual-keyboard.active{
	display: block;
}
.virtual-keyboard .block{
	width: 50%;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
.virtual-keyboard .block .area{
	display: block;
	padding: 0 5px;
}
.keyboard-transfer{
	display: block;
	width: 100%;
	height: 60px;
	padding: 0 15px;
}
.simple-keyboard {
	display: block;
	font-family: "VDNH";

	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	box-sizing: border-box;
	overflow: hidden;
	touch-action: manipulation
}

.simple-keyboard .hg-row {
	display: flex
}

.simple-keyboard .hg-row:not(:last-child) {
	margin-bottom: 5px
}

.simple-keyboard .hg-row .hg-button-container,
.simple-keyboard .hg-row .hg-button:not(:last-child) {
	margin-right: 5px
}

.simple-keyboard .hg-row > div:last-child {
	margin-right: 0
}

.simple-keyboard .hg-row .hg-button-container {
	display: flex
}

.simple-keyboard .hg-button {
	display: inline-block;
	flex-grow: 1;
	cursor: pointer
}

.simple-keyboard .hg-button span {
	pointer-events: none
}

.simple-keyboard.hg-theme-default {
	background-color: rgba(0, 0, 0, .1);
	padding: 5px;
	border-radius: 5px
}

.simple-keyboard.hg-theme-default .hg-button {
	box-shadow: 0 0 3px -1px rgba(0, 0, 0, .3);
	height: 60px;
	box-sizing: border-box;
	padding: 5px;
	background: #fff;
	/*border-bottom: 1px solid #b5b5b5;*/
	font-size: 30px;
	font-weight: 400;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
}

.simple-keyboard button.hg-button {
	border-width: 0;
	outline: 0;
	font-size: inherit
}

.simple-keyboard.hg-theme-default:not(.hg-touch-events) .hg-button:active {
	background: #e4e4e4
}

.simple-keyboard.hg-theme-default.hg-layout-numeric .hg-button {
	width: 33.3%;
	height: 60px;
	align-items: center;
	display: flex;
	justify-content: center
}

.simple-keyboard.hg-theme-default .hg-button.hg-button-numpadadd,
.simple-keyboard.hg-theme-default .hg-button.hg-button-numpadenter {
	height: 85px
}

.simple-keyboard.hg-theme-default .hg-button.hg-button-numpad0 {
	width: 105px
}

.simple-keyboard.hg-theme-default .hg-button.hg-button-com {
	max-width: 85px
}

.simple-keyboard.hg-theme-default .hg-button.hg-standardBtn.hg-button-at {
	max-width: 45px
}

.simple-keyboard.hg-theme-default .hg-button.hg-selectedButton {
	background: rgba(5, 25, 70, .53);
	color: #fff
}

.simple-keyboard.hg-theme-default .hg-button.hg-standardBtn[data-skbtn="@"] {
	max-width: 80px;
	background: #ffe4b8;
}

.simple-keyboard.hg-theme-default .hg-button.hg-standardBtn[data-skbtn="@"][data-skbtnuid="en_shift-r0b2"] {
	background: #ffffff;
}

.simple-keyboard.hg-theme-default .hg-button.hg-standardBtn[data-skbtn="@"] {
	max-width: 80px;
}

.simple-keyboard.hg-theme-default .hg-button.hg-functionBtn{
	position: relative;
	background: #ffe4b8;
}

.simple-keyboard.hg-theme-default .hg-button.hg-functionBtn.hg-button-alt{
	max-width: 100px;
}
.simple-keyboard.hg-theme-default .hg-button.hg-functionBtn.hg-button-alt i{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}


@media (max-width: 1599px) {
	.virtual-keyboard .block{
		width: 70%;
	}
}

@media (max-width: 1023px) {
	.simple-keyboard.hg-theme-default .hg-button {
		height: 40px;
	}
}

@media (max-width: 767px) {
	.virtual-keyboard .block{
		width: 96%;
	}
	.simple-keyboard.hg-theme-default .hg-button {
		height: 25px;
	}
	.keyboard-transfer{
		height: 30px;
		padding: 0 10px;
	}
}