/* CSS Document */

#LoginForm{ 
	background-image: linear-gradient(to bottom,#021a3b 10%,#204097 90%); 
	background-repeat:no-repeat; 
	background-position:center; 
	background-size:cover; 
	padding:10px;
	height: 600px !important;
}

.darker-grey {
	color: #727272;
}

.form-heading { 
	color:#fff; 
	font-size:30px; 
	text-align: center; 
	padding: 10px 0 10px 0;
}

.login-form .form-control {
	border-radius: 4px;
	height: 50px;
	line-height: 50px;
}

.or {
	color:#777;
}	

.main-div {
	background: #ffffff none repeat scroll 0 0;
	border-radius: 2px;
	margin: 10px auto 30px;
	max-width: 95%;
	padding: 20px 40px 30px 40px;
}

.login-form .btn-pink, #offline-message-button {
	height: 50px;
}

#ChatForm{
	background-image: linear-gradient(to bottom,#021a3b 10%,#204097 90%); 
	height:600px;
	border-bottom: 1px #ddd solid;
	overflow: hidden;
}

.messageBoxContainer {
	position:absolute;
	bottom:0;
	display: block;
	height: 65px;
	background-color: #fff !important;
	width:520px;
	padding: 15px;
}	

.messageBox {
	outline:none !important;
	box-shadow: none !important; 
	border: none !important;
	border-radius: 0 !important;
	overflow-y: hidden;
	resize: none !important;
    overflow-x: hidden;
    line-height: 1.2;
    font-size: 16px;   
    padding: 0 !important;
}

.messageBox:focus, .messageBox:active, .sendMessageButton:focus, .sendMessageButton:active {
	outline:none !important;
	box-shadow: none !important; 
	border: none !important;
}	

.sendMessageButton {
	outline:none !important;
	box-shadow: none !important; 
	border: none !important;
	text-transform: none;
}	

.message-text {
	word-break: break-word;
}

.message-received {
	border-radius: 1.6rem 1.6rem 1.6rem .27rem;
	padding: 12px;
	max-width: 94%;
	font-size: 16px;
}	

#ChatForm .send-message-button:hover {
	text-decoration: none;
}

#start-chat-button, #send-offline-message-button {
	outline: none !important;
}

#offline-message	{
	height: auto !important;
	resize: none;
	font-size: 16px;
	line-height: normal !important;
}

textarea {
	padding: 12px;
	box-sizing: border-box;
}

.center {
  display: flex;
  justify-content: space-evenly;
  align-items: center;

}

.circle {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  box-shadow: 0px 0px 1px 1px #0000001a;
  background: #c83d82;
  animation: pulse-animation 2s infinite;
}

.online-circle {
  fill: #28e028;
  stroke: #0e7d0e;
  stroke-width: 0.1875em;
}

.offline-circle {
  fill: #e80505;
  stroke: #420606;
  stroke-width: 0.1875em;
}

.nav-menu {
	width: 150px;
	background-color: #f5f5f5;
	z-index: 9999;
	border: 1px solid #e3e3e3;
	border-radius: 6px;
	box-shadow: 0 6px 12px rgba(0,0,0,.175);
	text-align: left;
	position: absolute;
	right:114px;
	margin-top:-80px;
}
.nav-menu-item {
	width: 100%;
	padding:12px 0 12px 0;
	cursor:pointer;
}

.nav-menu-item:hover {
	background: #c83d82;
	color: #fff !important;
}	

.no-margins {
	margin:0!important;
}

.tooltip-inner {
    max-width: none;
    white-space: nowrap;
    margin-right:20px;
}

#modal-chat-info-table td,  #modal-chat-info-table th {
	padding: 10px;
}

#modal-chat-info-table th, #chats-list-table th {
	background-color: #021a3b;
	color: #fff;
}

#modal-chat-info-table td:last-child, #modal-chat-info-table th:last-child {
	display:none;
}

#messagesModal .modal-header {
    height: 170px;
    background-color: #f5f5f5;
}

#messagesModal .modal-footer {
    height: 140px;
    background-color: #f5f5f5;
}

#messagesModal .modal-body,
#messagesModal .modal-footer {
    position: absolute;
    width: 100%;
}

#messagesModal .modal-body {
    bottom: 150px;
    top: 170px;
    overflow-y: auto;
}

#messagesModal .modal-footer {
    bottom: 0;
}

#messagesModal textarea {
	resize: none;
}

#modal-chat-info-table tr:nth-child(1) {
	font-size: 80% !important;
}

#modal-chat-info-table tr:nth-child(2) {
	font-size: 112%;
	background-color: #fff;
}

.modal-open .modal {
	overflow-y: hidden;
}

#messagesModal #templates-button, #messagesModal #delete-chat-button, #messagesModal #email-current-chat-button, #messagesModal #delete-current-chat-danger, #messagesModal #end-current-chat-button {
	margin-top:10px;
}


@keyframes pulse-animation {
  0% {
    box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
  }
  100% {
    box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}

/**
 * ==============================================
 * Dot Pulse
 * ==============================================
 */
.dot-pulse {
	position: relative;
	left: -9999px;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #c83d82;
	color: #c83d82;
	box-shadow: 9999px 0 0 -5px #c83d82;
	animation: dotPulse 1.5s infinite linear;
	animation-delay: .25s;
}

.dot-pulse::before, .dot-pulse::after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 0;
	width: 10px;
	height: 10px;
	border-radius: 5px;
	background-color: #c83d82;
	color: #c83d82;
}

.dot-pulse::before {
	box-shadow: 9984px 0 0 -5px #c83d82;
	animation: dotPulseBefore 1.5s infinite linear;
	animation-delay: 0s;
}

.dot-pulse::after {
	box-shadow: 10014px 0 0 -5px #c83d82;
	animation: dotPulseAfter 1.5s infinite linear;
	animation-delay: .5s;
}

@keyframes dotPulseBefore {
  0% {
    box-shadow: 9984px 0 0 -5px #c83d82;
  }
  30% {
    box-shadow: 9984px 0 0 2px #c83d82;
  }
  60%,
  100% {
    box-shadow: 9984px 0 0 -5px #c83d82;
  }
}

@keyframes dotPulse {
  0% {
    box-shadow: 9999px 0 0 -5px #c83d82;
  }
  30% {
    box-shadow: 9999px 0 0 2px #c83d82;
  }
  60%,
  100% {
    box-shadow: 9999px 0 0 -5px #c83d82;
  }
}

@keyframes dotPulseAfter {
  0% {
    box-shadow: 10014px 0 0 -5px #c83d82;
  }
  30% {
    box-shadow: 10014px 0 0 2px #c83d82;
  }
  60%,
  100% {
    box-shadow: 10014px 0 0 -5px #c83d82;
  }
}

.snippet {
    position: relative;
    margin: 0;
    border-radius: .25rem;
}

.stage {
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 10px;
	margin: 0 -5%;
	overflow: hidden;
} 

.modal-footer .btn {
	margin-left: 0px !important;
	margin-right: 5px;
}

.margin-bottom-xs {
	margin-bottom: 2px;
}

.margin-left-xs {
	margin-left: 12px;
}

.dropdown-submenu {
  position: relative;
}

.dropdown-submenu .dropdown-menu {
	bottom: -30px;
	left: 100%;
	margin-left: -10px;
}

#offline-message-sent {
	height: 600px;
}

.label-pink {
	background-color: #c83d82;
}

.label-green {
	background-color: #28e028;
}
