
.float{
	position:absolute;
	width:55px;
	height:55px;
	bottom:-30px;
	right:85px;
	background-color:#42a5f5;
	color:#FFF;
	border-radius:50px;
	text-align:center;
	box-shadow: 2px 2px 3px #1375c5;
  cursor:pointer;
}
.float:hover {
    color: #1375c5;
}

.my-float{
	margin-top:22px;
  font-size: 30px;
  line-height: 10px;
}

#iframeDisplay {
	position: fixed;
  right: 70px;
  bottom: 150px;
	border-radius: 3px;
  overflow:hidden;
  border: 0px;
  z-index: 1;
	background-color: #f4fbfe;

	-webkit-animation: fadein 1.5s; /* Safari, Chrome and Opera > 12.1 */
	-moz-animation: fadein 1.5s; /* Firefox < 16 */
	 -ms-animation: fadein 1.5s; /* Internet Explorer */
	  -o-animation: fadein 1.5s; /* Opera < 12.1 */
		 animation: fadein 1.5s;
}
#iframeDisplay iframe{
  border:none;
  display:block
}

@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Opera < 12.1 */
@-o-keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@media(max-width: 650px) {

    .float {
      position: absolute;
      bottom: 1%;
      right: 5%;
    }

    #iframeDisplay{
      width: 60%;
      bottom: 15%;
      right: 5%; 
    }

    .speech-bubble{
      display: none;
    }
}

@media(max-width: 540px) {
  
    .float {
      position: absolute;
      bottom: 1%;
      right: 1%;
    }

    #iframeDisplay {
      width: 80%;
      bottom: 15%;
      right: 1%;
    }

    .speech-bubble, .speech-bubble:after, .speech-bubble:before{
      display: none;
    }

}
.chatbot-container{
  position: fixed;
  bottom: 90px;
  right: -10px;
}

/* Bubble chat stuff*/

.speech-bubble {
  font-family: RobotoDraft, 'Helvetica Neue', Helvetica, Arial;
  margin: 1em auto;
  padding: 1em;
  width: 10em; 
  height: 3em;
  border-radius: .25em;
  font-size:2.2em;
  line-height:0.4em;
  transform: scale(0.50); 
  background: #629bdd;
  text-align: center;
}

.speech-bubble:before, .speech-bubble:after {
  position: absolute;
  z-index: -1;
  content: '';
}

.speech-bubble:after {
  top: 0; 
  right: 0; 
  bottom: 0; 
  left: 0;
  border-radius: inherit;
  transform: translate(.35em, -0.3em) scale(1.02);
  background: #f4fbfe;

}

.speech-bubble:before {
  border: solid 0 transparent;
  border-right: solid 2.5em #f4fbfe;
  bottom: 0.1em;
  left: 3.25em;
  width: 0; 
  height: 0.9em;
  transform: rotate(45deg) skewX(60deg);
}
