@CHARSET "UTF-8";

.divWebPhone {
	position: absolute;
	z-index: 5;
}

.dialpad {
	width: 240px;
	height: 335px;
	background-color: white;
	text-align: center;
	line-height: 100px;
	font-size: 20px;
	color: black;
}

.dialpad > .screen {
	width: 100%;
	height: 100px;
	border: 1px solid lightgray;
}

.dialpad > .screen > .txtScreen {
	display: inline-block;
	width: 80%;
	height: 95%;
	text-align: center;
	cursor: default;
	border: none;
	color: black;
	background-color: white;
	text-overflow: ellipsis;
}

.dialpad > .screen > .icoDel {
	display: inline-block;
	width: 15%;
	height: 95%;
	cursor: pointer;
}

.dialpad > .clear {
	clear: both;
}

.dialpad > .lines {
	width: 100%;
	vertical-align: middle;
}

.dialpad > .lines > .line {
	display: inline-block;
	width: 80px;
	height: 35px;
	float: left;
	font-size: 10px;
	line-height: 15px;
	box-sizing: border-box;
	padding: 1px 0 0 0;
	border: 1px solid lightgray;
	cursor: pointer;
	transition: background-color 0.5s ease;
	text-align: center;
	vertical-align: middle;
}

.dialpad > .lines > .selection {
	background-color: lightgray;
}

.dialpad > .keys {
	width: 100%;
}

.dialpad > .keys > .key {
	display: inline-block;
	width: 80px;
	height: 50px;
	float: left;
	line-height: 50px;
	box-sizing: border-box;
	padding: 1px 0 0 0;
	border: 1px solid lightgray;
	cursor: pointer;
	transition: background-color 0.5s ease;
	text-align: center;
	vertical-align: middle;
}

.dialpad > .keys > .selection {
	background-color: lightgray;
}

.noselect {
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.popover-content {
	color: black;
	text-align: center;
}

.pop-btn {
	background-color: white;
	border: black;
	border-color: #D3D3D3;
	border-style: solid;
	border-width: 1px;
	color: black;
	padding: 5px 15px;
	text-align: center;
	text-decoration: none;
	display: inline-block;
	font-size: 16px;
}
