.chatModalBackground {
  display: none;
  position: fixed;
  z-index: 1000;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0,0.4);
}
.modalWrap {
  position: relative;
  background-color: #fefefe;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 90%;
  border-radius: 10px;
  box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s
}
/* Add Animation */
@-webkit-keyframes animatetop {
  from {top:-300px; opacity:0} 
  to {top:0; opacity:1}
}
@keyframes animatetop {
  from {top:-300px; opacity:0}
  to {top:0; opacity:1}
}
.modalClose {
  color: #aaaaaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
}
.modalClose:hover,
.modalClose:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
}
.modalTitle {
	display: flex; flex-direction: row; align-items: center;
}
.modalTitleIcon {
	margin-right: 5px;
}
.modalTitleIcon i {
	font-size: 25px; color: #ff3300;
}
.modalTitleText {
	font-size: 14px; font-weight: 600;
}
.modalContent {
	margin: 20px 0px;
}
.modalChatItem {
	font-weight: 600;
	margin-bottom: 5px;
}
.modalChatText {
}
.modalButtonRow {
	margin-top: 20px; text-align: center;
}
.modalButton {
	background-color: #ff3300; color: #fff; padding: 10px; border-radius: 5px; display: inline-block; padding-left: 30px; padding-right: 30px;
}
.modalButton:hover, .modalButton:focus {
	background-color: #ff4400;
	color: #fff; 
}

@media (min-width: 768px) {
	.modalWrap {
		width: 500px;
	}
}