@import url('https://fonts.googleapis.com/css?family=PT+Sans');

body {
	font-family: 'PT Sans', sans-serif !important;
}

:focus {
	outline: none !important;
}

.welcome-header {
	font-size: 24px;
}

.welcome-message {
	font-size: 14px;
}

.welcome-button {
	font-size: 12px;
	text-transform: uppercase;
	margin-top: 10px;
}

.msg-input {
	width: 100%;
	font-size: 14px;
	padding: 2px 10px 2px 10px;
	border-radius: 10px;
	border: 1px solid #fff;
}

.msg-btn {
	border: none;
	color: #337ab7 !important;
	background: transparent !important;
	padding: 0 10px;
}

.msg-btn:active {
	color: #355d8c !important;
}

.msg-btn:focus {
	outline: none;
	box-shadow: inherit;
}

.msg-btn:hover {
	color: #355d8c !important;
}

.msg-menu {
	bottom: 90px;
	background-color: #FFFFFF;
	border: 1px solid #999999;
	border-radius: 10px;
	cursor: default;
	display: none;
	margin-top: -100px;
	position: absolute;
	text-align: left;
	min-width: 100px;
	z-index: 50;
}

.msg-menu-item {
	padding: 5px 10px;
	background: #fff;
	border-bottom: 1px solid #ddd;
}

.msg-menu-item:first-child {
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
}

.msg-menu-item:last-child {
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
	border-bottom: none;
}

.msg-menu-item:hover {
	color: #fff !important;
	background: #337ab7;
	cursor: pointer;
}

#menuToggle {
	display: inline-block;
	position: absolute;
	margin-left: 5px;
	margin-right: 5px;
	margin-top: 5px;
	z-index: 1;
	-webkit-user-select: none;
	user-select: none;
}

#menuToggle input {
	display: block;
	width: 40px;
	height: 32px;
	position: absolute;
	top: -7px;
	left: -5px;
	cursor: pointer;
	opacity: 0; /* hide this */
	z-index: 2; /* and place it over the hamburger */
	-webkit-touch-callout: none;
}

#menuToggle span {
	display: block;
	width: 33px;
	height: 4px;
	margin-bottom: 5px;
	position: relative;
	background: #cdcdcd;
	border-radius: 3px;
	z-index: 1;
	transform-origin: 4px 0;
	transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1.0), opacity 0.55s ease;
}

#menuToggle span:first-child {
	transform-origin: 0 0;
}

#menuToggle span:nth-last-child(2) {
	transform-origin: 0 100%;
}

#menuToggle input:checked ~ ul {
	transform: none;
	display: inline;
}

@media (max-width: 401px) {
	body {
		background-color: transparent !important;
	}

	.welcome-header {
		font-size: 14px;
	}

	.panel {
		border: none !important;
		background-color: #fff;
	}

	.panel-heading {
		background-color: #3171E9 !important;
		border-color: #3171E9 !important;
		border-top-left-radius: 6px !important;
		border-top-right-radius: 6px !important;
	}

	.panel-footer {
		padding: 5px 5px;
		border-bottom-right-radius: 6px !important;
		border-bottom-left-radius: 6px !important;
	}

	.msg.left .chat-body {
		margin-left: 40px;
		margin-right: 60px;
	}

	.msg.right .chat-body {
		margin-right: 40px;
		margin-left: 60px;
	}

	.btn {
		font-size: 10px;
	}

	.img-circle {
		height: 30px;
		width: 30px;
	}
}