body {font-family: Arial, Helvetica, sans-serif;}
* {box-sizing: border-box;}

/* Button used to open the chat form - fixed at the bottom of the page */
.open-button {
  background-color: #d8b753;
  width: 200px;
  border-radius: 10%;
  padding: 2px 6px;
  border: 1px solid ;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 60px;
	color: #black;
	font-size: 12px;
  z-index: 99;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 23px;
  right: 15px;
  border: 1px solid #d8b753;
  z-index: 99;
}

/* Add styles to the form container */
.cnt {
	width: 500px;
  max-width: 500px;
  padding: 10px;
  background-color: #555;
}

.logoimg {
	height: 34px;
	border:0;
}

.end {
	position: absolute;
	right: 10px;
	top: 6px;
	text-decoration: none;
	color: #d8b753;
	
}

.dialog {
	height: 120px;
	max-height: 120px;
  width: 100%;
  padding: 8px;
  margin: 5px 0 22px 0;
  border:1px solid #d8b753; 
  background: #aaa;
  min-height: 60px;
  font-size:14px;
  color: #d8b753;
  letter-spacing: 1px;
  line-height:  25px;
}

.dialogown {
  color: #d8b753;
}


.dialogcli {
  color: #000;
  font-family: Times;
}


/* Full-width textarea */
.cnt textarea {
  width: 100%;
  padding: 8px;
  margin: 5px 0 4px 0;
  border:1px solid #d8b753; 
  background: #aaa;
  resize: none;
  min-height: 60px;
}

/* When the textarea gets focus, do something */
.cnt textarea:focus {
  background-color: #ddd;
  outline: none;
}

/* Set a style for the submit/send button */
.cnt .segurrabtn {
  background-color: #d8b753;
  color: black;
  font-weight: bold;
  padding: 6px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
  letter-spacing: 1px;
}

/* Add a red background color to the cancel button */
.cnt .cancel {
  background-color: red;
}

/* Add some hover effects to buttons */
.cnt .segurrabtn:hover, .open-button:hover {
  background-color: #eee;
}

.segurra {
	padding: 0px 0px 10px 10px;
	margin: 0px;
	font-size: 10px;
	background-color: #555;
