#contactus .contactus-fab {
  display:block;
  cursor: pointer;
  height: 66px;
  text-align: center;
  width: 66px;
  position: fixed;
  right: 40px;
  bottom: 70px;
  z-index: 999;
  box-shadow: 0 8px 10px rgba(56, 163, 253, .3);
  -webkit-animation: hoverWave linear 1s infinite;
  animation: hoverWave linear 1s infinite;
  border-radius: 60%;
  z-index: 9999999;
}

@-webkit-keyframes hoverWave {
  0% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 0 rgba(56, 163, 253, .2), 0 0 0 0 rgba(56, 163, 253, .2);
  }
  40% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 15px rgba(56, 163, 253, .2), 0 0 0 0 rgba(56, 163, 253, .2);
  }
  80% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, .067);
  }
  100% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0);
  }
}

@keyframes hoverWave {
  0% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 0 rgba(56, 163, 253, .2), 0 0 0 0 rgba(56, 163, 253, .2);
  }
  40% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 15px rgba(56, 163, 253, .2), 0 0 0 0 rgba(56, 163, 253, .2);
  }
  80% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 26.7px rgba(56, 163, 253, .067);
  }
  100% {
      box-shadow: 0 8px 10px rgba(56, 163, 253, .3), 0 0 0 30px rgba(56, 163, 253, 0), 0 0 0 40px rgba(56, 163, 253, 0);
  }
}

#contactus .contactus-fab:hover  {
  opacity: 1;
  visibility: visible;
}

#contactus .fab-action-button:hover {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transform-origin: right center 0;
  transition-delay: 0.3s;
  background: rgba(56, 163, 253, .9);
  box-shadow: 0 8px 10px rgba(56, 163, 253, .3);
}

#contactus .fab-action-button {
  position: absolute;
  bottom: 0;
  display: block;
  width: 66px;
  height: 66px;
  background: rgba(56, 163, 253, .65);
  ;
  border-radius: 50%;
  box-shadow: 0 5px 5px rgba(56, 163, 253, .3);
}

#contactus .fab-action-button__icon {
  display: block;
  margin: 0 0 0 0px;
  width: 65px;
  height: 65px;
  background: url(../message.svg) no-repeat;
  transform: scale(.7);
}
#contactus .contactus-popover{
  position: absolute;
  width: 240px;
  height: 120px;
  top: -134px;
  right: 0;
  display: none;
  max-width: initial;
}
#contactus .contactus-fab:hover .contactus-popover{
  display: block;
}
#contactus .fab-action-button__icon.contactus-hide {
  background: url(../close.svg) no-repeat;
  transform: scale(.4);
}
#contactus .fab-close-button__icon {
  width: 16px;
  height: 16px;
  top: calc(50% - 8px);
  right: 10px;
  position: absolute;
  cursor: pointer;
  background: url(../close.svg) no-repeat;
  display: none;
}
#contactus .fab-close-button__icon.contactus-show {
  display: block;
}
#contactus .contactus-wrapper{
  position: fixed;
  z-index: 99999999;
  right: 35px;
  bottom: 151px;
  width: 300px;
  max-width: 100%;
  box-shadow: 0 7px 14px rgba(56, 163, 253, .3), 0 5px 5px rgba(56, 163, 253, .1);
}
#contactus .contactus-wrapper{
  display: none;
}
#contactus .contactus-wrapper.contactus-show{
  display: block;
}
#contactus .contactus-container{
  max-height: calc(100vh - 190px);
  overflow: auto;
  background: #fff;
}

#contactus .list-group {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
}
#contactus .list-group-item:first-child {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}
#contactus .list-group-item {
  position: relative;
  display: block;
  padding: 5px;
  margin-bottom: -1px;
  background-color: #fff;
  border: 1px solid rgba(0,0,0,.125);
  color: #000;
}
#contactus .list-group-item:hover {
  color: rgba(0,0,0,.7);
}
#contactus .list-group-item:focus, #contactus .list-group-item:hover {
  z-index: 1;
  text-decoration: none;
}
#contactus .mr-3{
  margin-right: 0.1rem!important;
}
#contactus img{
  width: 30px;
}
#contactus .contactus-header{
  position: relative;
  background: rgba(56, 163, 253, 1);
  padding: 10px 8px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#contactus .contactus-header h6{
  color: #fff;
  margin: 0px;
}
#contactus .card {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
}
#contactus .card-body {
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding: 1rem;
}
#contactus .card {
  border-radius: 0;
  padding: 0;
  margin: 0;
  border: none;
  background-color: transparent;
}
#contactus .card-body {
  border-bottom: none;
  margin: 0;
}