.float-icon-hotline {
    display: block;
    width: 40px;
    position: fixed;
    bottom: 20px;
    right: 40px;
    z-index: 999999;
  }
  .float-icon-hotline ul {
    display: block;
    width: 100%;
    padding-left: 0;
    margin-bottom: 0;
  }
  .float-icon-hotline ul li {
    display: block;
    width: 100%;
    position: relative;
    margin-bottom: 10px;
    cursor: pointer;
  }
  .float-icon-hotline ul li .fa {
    background-color: #ed1c24;
    display: block;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 36px;
    -moz-box-shadow: 0 0 5px #888;
    -webkit-box-shadow: 0 0 5px#888;
    box-shadow: 0 0 5px #888;
    color: #fff;
    font-weight: 700;
    border-radius: 50%;
    position: relative;
    z-index: 2;
    border: 2px solid #fff;
  }
  .float-icon-hotline ul li .fa-phone {
    background-color: #00b1ff;
  }
  .float-icon-hotline ul li .fa-zalo {
    background: #ef0303
      url('../../../images/icon/zalo.png')
      center center no-repeat;
  }
  .float-icon-hotline ul li .fa-fb {
    background: #ef0303
      url('../../../images/icon/messenger.png')
      center center no-repeat !important;
  }
  .animated.infinite {
    animation-iteration-count: infinite;
  }
  .tada {
    animation-name: tada;
  }
  .animated {
    animation-duration: 1s;
    animation-fill-mode: both;
  }
  .float-icon-hotline ul li span {
    display: inline-block;
    padding: 0;
    background-color: #ff6a00;
    color: #fff;
    border: 2px solid #fff;
    border-radius: 20px;
    height: 40px;
    line-height: 36px;
    position: absolute;
    top: 0;
    right: 15px;
    z-index: 0;
    width: 0;
    overflow: hidden;
    -webkit-transition: all 1s;
    transition: all 1s;
    background-color: #ff6a00;
    -moz-box-shadow: 0 0 5px #888;
    -webkit-box-shadow: 0 0 5px#888;
    box-shadow: 0 0 5px #888;
    font-weight: 400;
    white-space: nowrap;
    opacity: 0;
  }
  
  @media only screen and (min-width: 960px) {
    .float-icon-hotline ul li:hover span {
      width: 215px;
      padding-left: 30px;
      padding-right: 10px;
      opacity: 1;
    }
  }
  
  @media only screen and (max-width: 959px) {
    .float-icon-hotline ul {
      display: flex !important ;
    }
    .float-icon-hotline ul li ~ li {
      margin-left: 10px;
    }
    .float-icon-hotline {
        bottom: 5px !important;
        right: 200px !important;
    }
  }
  
  @keyframes tada {
    0% {
      transform: scale3d(1, 1, 1);
    }
    10%,
    20% {
      transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
    }
    30%,
    50%,
    70%,
    90% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
    }
    40%,
    60%,
    80% {
      transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
    }
    100% {
      transform: scale3d(1, 1, 1);
    }
  }
  .fa-phone:before {
    content: "\f095";
  }
  