.jkeyboard .jline ul li {
  font-family: arial, sans-serif;
  font-size: 20px;
  display: inline-block;
  border: 1px solid #468db3;
  -webkit-box-shadow: 0 0 3px #468db3;
  -webkit-box-shadow: inset 0 0 3px #468db3;
  margin: 10px 0 1px 14px;
  color: #f7faf7;
  border-radius: 5px;
  width: 52px;
  height: 52px;
  box-sizing: border-box;
  text-align: center;
  line-height: 52px;
  overflow: hidden;
  cursor: pointer;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: -moz-none;
  -ms-user-select: none;
  user-select: none;
}










#write {
margin: 0 0 5px;
padding: 5px;
width: 671px;
height: 200px;
font: 1em/1.5 Verdana, Sans-Serif;
background: #fff;
border: 1px solid #f9f9f9;
border-radius: 5px;
}

.on {
display: none;
}















#keyboard {
	margin: 0 auto;
	width: 100%;
	background: #eee;
	color: #000;
	z-index: 15;
	position: absolute;
	bottom: -46vw;
	right: 0;
	padding-bottom: 2vw;
	user-select: none;
	height: 46vw;
}
.closeKeyboard {
	height: 4.5vw;
	margin-bottom: 2vw;
}
.closeKeyboard p {
	margin: 1vw 3vw;
	color: #114633;
	font-weight: bold;
	font-size: 1.15em;
	text-align: center;
	width: 12vw;
	float: right;
}

#keyboard .keyboardKeys{
	list-style: none;
	display: flex;
	flex-direction: column;
	width: 100%;
}
#keyboard li.row ul {
	list-style: none;
	display: flex;
	flex-direction: row;
	align-content: space-around;
	justify-content: center;
	width: 100%;
}
#keyboard .key.letter {
	width: 7.5vw;
	height: 6vw;
	padding: 1vw 2vw;
	background: #fff;
}
#keyboard .key {
	min-width: 7.5vw;
	min-height: 6vw;
	padding: 1vw 3vw;
	margin: .5vw;
	border-radius: 5px;
	text-align: center;
	background: #dedede;
}
#keyboard .key.space {
	width: 50%;
	background-color: #fff;
}
#keyboard .key.submit {
	background-color: #114633;
	color: #fff;
}
#keyboard .key.submit.active {
	background-color: #2e5b5f;
}
.uppercase {
	text-transform: uppercase;
}
#keyboard .key.active {
	background-color: #ccc;
}
#keyboard .key.shift.upper {
	background-color: #000;
	color: #fff;
}
