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

html, body {
  margin: 0;
  padding: 0;
}

body {
  background: #F1F2EE;  /* fallback for old browsers */
	height:100vh;	
  color: #FFFFFF;
}

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;
}

.botui-container {
  background: transparent;
}
.botui-message-content {
  background: #313E50;
  color: white;
  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: #28635a;
  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;
}

#fade {
  display: none;
  position: fixed;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100%;
  background-color: black;
  z-index: 1001;
  -moz-opacity: 0.8;
  opacity: .80;
  filter: alpha(opacity=80);
}

#light {
  display: none;
  position: absolute;
  top: 0%;
  left: 0%;
  max-width: 360px;
  max-height: 360px;
  margin-left: 0px;
  margin-top: 0px;
  border: 2px solid #FFF;
  background: #FFF;
  z-index: 1002;
  overflow: visible;
}

#boxclose {
  float: right;
  cursor: pointer;
  color: #fff;
  border: 1px solid #AEAEAE;
  border-radius: 3px;
  background: #222222;
  font-size: 31px;
  font-weight: bold;
  display: inline-block;
  line-height: 0px;
  padding: 11px 3px;
  position: absolute;
  right: 2px;
  top: 2px;
  z-index: 1002;
  opacity: 0.9;
}

.boxclose:before {
  content: "×";
}

#fade:hover ~ #boxclose {
  display:none;
}

.test:hover ~ .test2 {
  display: none;
}