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


html, body {
  margin: 0;
  padding: 0;
   background-image: url("ttps://cdn.wallpapersafari.com/20/42/J4Dbt2.jpg");
}

body {
  background: #F1F2EE;  /* fallback for old browsers */
	height:100vh;	
  color: #FFFFFF;
  background-image: url("ttps://cdn.wallpapersafari.com/20/42/J4Dbt2.jpg");
}

iframe {
  width: 100%;
	overflow:none;
}
#my-botui-app{
	overflow:auto; 
	background: #2C3E50;  /* fallback for old browsers */
	background: -webkit-linear-gradient(to bottom, #BFB7B6, #F1F2EE);  /* Chrome 10-25, Safari 5.1-6 */
	background: linear-gradient(to bottom, #BFB7B6, #F1F2EE); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
	background-repeat:no-repeat;
	background-size:cover;
}
.botui-app-container {
  margin-top: 40px;
	overflow:none;
	width:100%;
}

.botui-container {
  background: transparent;
}
.botui-message-content {
  background: #e1eb34;
  color: black;
  border-radius: 15px;
  border-bottom-left-radius: 0;
  font-size: 18px;
  font-family: 'Montserrat';
 
  box-shadow: 0 4px 6px rgba(48, 41, 58, 0.5);
}

.botui-message-content.human {
  background-color: #f0edc0;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 0;
  box-shadow: 0 4px 6px rgba(48, 41, 58, 0.5);
  
}
.human.botui-message-content.text {
    background: white;
    color: rgb(48, 41, 58);
}

.botui-actions-text-input {
  color: #313E50;
  border-bottom: 1px solid #63ADF2;
  font-size: 18px !important;
  font-family: 'Montserrat';
}

.botui-action-text-icon{
	color: #313E50;
}

.botui-actions-buttons-button {
  line-height: 1 !important;
  background-color: #63ADF2;
  font-size: 18px !important;
  font-family: 'Montserrat';
}
.botui-actions-buttons-button:hover {
  background-color: #848C8E;
}

.botui-message-content-link {
  color: #12796b;
}

.botui-actions-text-searchselect {
    border: 0;
    outline: 0;
    border-radius: 0;
    padding: 5px 7px;
    font-size: 18px !important;
    font-family: 'Montserrat';
    background-color: transparent;
    color: #595a5a;
    border-bottom: 1px solid #919292;
}

.botui-actions-text-searchselect .selected-tag {
    background-color: #FFF !important;
    border: 0!important;
}

.botui-message-content.loading {
    background-color: rgba(206, 206, 206, 1);
    line-height: 1.3;
    text-align: center;
}
input::placeholder{
	color:#313E50;
}
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: #555;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  opacity: 0.8;
  position: fixed;
  bottom: 23px;
  right: 28px;
  width: 280px;
}

/* The popup chat - hidden by default */
.chat-popup {
  display: none;
  position: fixed;
  bottom: 0;
  right: 15px;
  border: 3px solid #f1f1f1;
  z-index: 9;
}

/* Add styles to the form container */
.form-container {
  max-width: 300px;
  padding: 10px;
  background-color: white;
}

/* Full-width textarea */
.form-container textarea {
  width: 100%;
  padding: 15px;
  margin: 5px 0 22px 0;
  border: none;
  background: #f1f1f1;
  resize: none;
  min-height: 200px;
}

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

/* Set a style for the submit/send button */
.form-container .btn {
  background-color: #04AA6D;
  color: white;
  padding: 16px 20px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-bottom:10px;
  opacity: 0.8;
}

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

/* Add some hover effects to buttons */
.form-container .btn:hover, .open-button:hover {
  opacity: 1;
}