body {
	background-color: #42a5f5;
	display: flex;
	flex-direction: column;
}
.row {
	margin: 0 auto;
	width: 280px;
    clear: both;
    font-family: "Exo";
	text-align: center;
}

.digit, .dig {
	float: left;
	padding: 10px 30px;
	width: 30px;
	font-size: 2rem;
	cursor: pointer;
}
.fa-wifi {
	color: green;
	cursor: auto !important;
}
.fa-warning {
	color: orange;
	cursor: auto !important;
}
.sub {
	font-size: 0.8rem;
	color: grey;
}

.container {
	background-color: white;
	width: 320px;
	padding: 20px;
	margin: 30px auto;
	height: 450px;
	text-align: center;
	box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
	visibility: hidden;
	position: absolute;
	top: -100%;
	left: -100%;
}
.container.show {
	top: auto;
	left: auto;
	visibility: visible;
	position: relative;
}

#output, .info, #status {
	font-family: "Exo";
	font-size: 1.5rem;
    letter-spacing: 3px;
    height: 50px;
	padding: 0 10px;
	margin-bottom: 20px;
	font-weight: bold;
	color: #1976d2;
}
#status {
	text-transform: uppercase;
}

.call {
	display: inline-block;
	background-color: #66bb6a;
	padding: 4px 30px;
	margin: 23px 10px;
	color: white;
	border-radius: 4px;
	float: left;
	cursor: pointer;
}
.call.fakecall {
	background-color: white;
}
.call.hangup {
	background-color: orangered;
}
.fa.fake-arrow {
	color: white;
}
#call-incoming {
	display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.botrow {
	margin: 0 auto;
	width: 280px;
	clear: both;
	text-align: center;
	font-family: "Exo";
}

.digit:active, .dig:active {
	background-color: #e6e6e6;
}

#call:hover {
	background-color: #81c784;
}

.dig {
	float: left;
	padding: 10px 20px;
	margin: 10px;
	width: 30px;
	cursor: pointer;
}

input[type=text] {
    padding:5px; 
    border:2px solid #ccc; 
    -webkit-border-radius: 5px;
    border-radius: 5px;
}

input[type=text]:focus {
    border-color:#333;
}

input[type=submit], button {
    padding:5px 15px; 
    background:#ccc; 
    border:0 none;
    cursor:pointer;
    -webkit-border-radius: 5px;
	border-radius: 5px; 
	margin: auto;
}
button {
	background: white; 
}
#advanced {
	width: 65%;
	height: auto;
}
#advanced > .row:last-of-type {
	width: 100%;
}
#advanced textarea {
	width: 100%;
	min-height: 275px;
}
#advanced textarea.error {
	border: red;
	outline-color: red;
}
#advanced span {
	margin: auto;
}
#login > .row, #advanced > .row {
	margin: 5px auto;
	display: flex;
	justify-content: space-between;
}

#login label {
	width: 45%;
    text-align: right;
}

#login {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: auto;
}
body.on .off, body .on {
	display: none;
}
body.on .on {
	display: inline;
}
#toggleMute .fa-microphone-slash, #toggleMute.on .fa-microphone {
	display: none;
}
#toggleMute.on .fa-microphone-slash, #toggleMute .fa-microphone {
	display: inline;
}
#toggleMute.on, #toggleHold.on {
	color: #42a5f5;
}
.command {
	display: flex;
	justify-content: space-around;
	margin-bottom: 20px;
}
.command > div {
	padding: 4px 30px;
	cursor: pointer;
	
}