.convbot-button{background-color: #009b41 !important;}
#tars-widget-fab.pop_right{right:0 !important;}

#tars-widget-fab .convbot-button{border-radius: 10px 0 0 10px !important; margin:0 !important;bottom: 50px!important;}

.whatsapp-fabs,.link-fabs,.location-fabs {
  bottom: 50px;
  position: fixed;
  margin: 1em 0 1em 1em;
  right: 0;
  z-index: 9999999;
}
.location-fabs{ bottom: 290px;}
.link-fabs{ bottom: 210px;}
.whatsapp-fabs{ bottom: 130px;}
.whatsapp-fab,.link-fab,.location-fab {
  display: block;
  width: 62px;
  height: 62px;
  border-radius: 10px 0 0 10px;
  text-align: center;
  color: #009b41;
  margin: 25px auto 0;
  box-shadow: 0 0 4px rgba(0, 0, 0, .14), 0 4px 8px rgba(0, 0, 0, .28);
  cursor: pointer;
  -webkit-transition: all .1s ease-out;
  transition: all .1s ease-out;
  position: relative;
  z-index: 999999;
  overflow: hidden;
  background: #009b41;
}
.whatsapp-fab >i, .link-fab > i, .location-fab > i {
  font-size: 2.2em;
  padding-top:5px;
  line-height: 55px;
  -webkit-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
  color:#fff;
}
.whatsapp-fab:not(:last-child) {
  width: 0;
  height: 0;
  margin: 20px auto 0;
  /*opacity: 0;*/
  display: none;
  visibility: hidden;
  line-height: 40px;
}
.whatsapp-fab:not(:last-child) > i {
  font-size: 1.4em;
  line-height: 40px;
}
.whatsapp-fab:not(:last-child).is-visible {
  width: 40px;
  height: 40px;
  margin: 15px auto 10;
  /*opacity: 1;*/
  display: block;
  visibility: visible;
}
.whatsapp-fab:nth-last-child(1) {
  -webkit-transition-delay: 25ms;
  transition-delay: 25ms;
}
.whatsapp-fab:not(:last-child):nth-last-child(2) {
  -webkit-transition-delay: 20ms;
  transition-delay: 20ms;
}
.whatsapp-fab:not(:last-child):nth-last-child(3) {
  -webkit-transition-delay: 40ms;
  transition-delay: 40ms;
}
.whatsapp-fab:not(:last-child):nth-last-child(4) {
  -webkit-transition-delay: 60ms;
  transition-delay: 60ms;
}
.whatsapp-fab:not(:last-child):nth-last-child(5) {
  -webkit-transition-delay: 80ms;
  transition-delay: 80ms;
}

.whatsapp-fab(:last-child):active,
.whatsapp-fab(:last-child):focus,
.whatsapp-fab(:last-child):hover {
  box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}
/*Chatbox*/
.whatsapp-chat {
  position: fixed;
  right: 85px;
  bottom: 20px;
  width: 400px;
  font-size: 12px;
  line-height: 22px;
  font-family: 'Roboto';
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  /*opacity: 0;*/
  display: none;
  box-shadow: 1px 1px 5px 2px rgba(0, 0, 0, 0.22);
  border-radius: 10px;
  -webkit-transition: all .2s ease-out;
  -webkit-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}
.whatsapp-chat.is-visible {
  /*opacity: 1;*/
  display: block;
  -webkit-animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);
  animation: zoomIn .2s cubic-bezier(.42, 0, .58, 1);
}
.is-hide{
  /*opacity: 0*/
  display: none;
}
.chat_body  {
  background: #fff;
  width: 100%;
  display: inline-block;
  text-align: center;
    overflow-y: auto;

    display: block;
    margin:0px;
    padding:0px;
    overflow:hidden;
    height: 100%;
}
.chat_body iframe{
    overflow:hidden;height:100%;width:100%
}

.chat_login p,.chat_body li, p, a{
    -webkit-animation: zoomIn .5s cubic-bezier(.42, 0, .58, 1);
  animation: zoomIn .5s cubic-bezier(.42, 0, .58, 1);
}
.chat_body p {
  padding: 20px;
  color: #888
}
.chat_body a {
  width: 10%;
  text-align: center;
  border: none;
  box-shadow: none;
  line-height: 40px;
  font-size: 15px;
}
/*Chatbox scrollbar*/

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  border-radius: 0;
}

::-webkit-scrollbar-thumb {
  margin: 2px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.2);
}
/*Element state*/

.whatsapp-fabs .is-active {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  -webkit-transition: all 1s ease-in-out;
  transition: all 1s ease-in-out;
}

.whatsapp-fabs .is-float {
  box-shadow: 0 0 6px rgba(0, 0, 0, .16), 0 6px 12px rgba(0, 0, 0, .32);
}

.whatsapp-fabs .is-loading {
  display: block;
  -webkit-animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
  animation: load 1s cubic-bezier(0, .99, 1, 0.6) infinite;
}
/*Animation*/
@-webkit-keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes zoomIn {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes load {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}

@keyframes load {
  0% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.0;
  }
  50% {
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 0;
  }
}
/* SMARTPHONES PORTRAIT */

@media only screen and (max-width: 300px) {
.whatsapp-chat {
        right: 0;
    width: 100%;
    height: 100%;
  }
  .chat_body iframe{
    overflow:hidden;
    height:100% !important;
    width:100%
}

}
/* SMARTPHONES LANDSCAPE */
@media only screen and (max-width: 480px) {
 .whatsapp-chat{
    right: 0;
    width: 100%;
    height: 100%;
  }
    .chat_body iframe{
    overflow:hidden;
    height:100% !important;
    width:100%
}
.is-float {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    margin: 1em 0 1em 1em;
}

@media only screen and (min-width: 1024px) {
  .whatsapp-chat {
    width: 400px;
    height: 500px;
  }

}
/* Ripple */

.ink {
  display: block;
  position: absolute;
  background: rgba(38, 50, 56, 0.4);
  border-radius: 100%;
  -moz-transform: scale(0);
  -ms-transform: scale(0);
  webkit-transform: scale(0);
  -webkit-transform: scale(0);
          transform: scale(0);
}
/*animation effect*/

.ink.animate {
  -webkit-animation: ripple 0.5s ease-in-out;
          animation: ripple 0.5s ease-in-out;
}

@-webkit-keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/

  100% {
    opacity: 0;
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    webkit-transform: scale(5);
    -webkit-transform: scale(5);
            transform: scale(5);
  }
}

@keyframes ripple {
  /*scale the element to 250% to safely cover the entire link and fade it out*/

  100% {
    opacity: 0;
    -moz-transform: scale(5);
    -ms-transform: scale(5);
    webkit-transform: scale(5);
    -webkit-transform: scale(5);
            transform: scale(5);
  }
}
::-webkit-input-placeholder { /* Chrome */
  color: #bbb;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #bbb;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #bbb;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #bbb;
}
