@import url('https://fonts.googleapis.com/css?family=Raleway:400,700&display=swap');


/* ========================
Style

.chatwpp {
  display: flex;
  flex-direction: column-reverse;
  position: fixed;
  bottom: 10px;
  right: 20px;
  text-align: right;
}
.chatwpp_icon {
  width: 50px;
  cursor: pointer;
  transition: 0.2s ease-in;
}


======================== */


.chatwpp_options {



}
.chatwpp_options li {
  list-style: none;
  padding: 0;
  margin: 10px 10px;
  font-family: 'roboto', sans-serif;
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  position: relative;
  float: left;
}
.chatwpp_options li a {
  background: #0B3B7D;
  border-radius: 5px;
  color: white;
  line-height: 4.3em;
  padding: 15px;
  text-decoration: none;
  transition: 0.2s ease-in;
}
.chatwpp_options li a:hover{
  background: #0f58be;
}
.chatwpp_hidden {
  display: none
}

/* ========================
Animaion
======================== */

 .animate li {
  position: relative;
  -webkit-animation: comingIn 1s ease-in-out;
  animation: comingIn 0.9s ease-in-out forwards;
}
.animate li:nth-child(n+1) {
  opacity: 0;
}

/* Select delay for items */
.animate li:nth-child(2) {animation-delay: 0.2s;}
.animate li:nth-child(3) {animation-delay: 0.4s;}

/* Keyframes  */

@keyframes comingIn {
  0% {
    opacity: 0;
    right: -150px;
  }
  100% {
    opacity: 1;
    right: 0;
  }
}