.global-phone {
  width: 270px;
  height: 160px;
  position: fixed;
  bottom: 40px;
  right: 50px;
  color: #fff;
  z-index: 101;
  background: #258fa5;
  padding: 10px 20px;
  font-weight: 500;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease;
  -ms-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-transform: translate3d(40px, 0, 0);
  -ms-transform: translate3d(40px, 0, 0);
  -o-transform: translate3d(40px, 0, 0);
  transform: translate3d(40px, 0, 0);
}
.global-phone .phone-label {
  margin-bottom: 20px;
}
.global-phone .phone-label i {
    margin-right: 6px;
}
.fa {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.global-phone .phone {
  font-size: 20px;
  font-weight: bold;
  line-height: 36px;
}

.show-global-phone .global-phone {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
