.float_telephone {
  position: fixed;
  z-index: 5;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 285px;
  height: 110px;
  text-align: center;
  background: #00a497;
  border-radius: 20px;
  bottom: 200px;
  right: 0;
  transition: 0.5s;
  opacity: 0;
}
.float_telephone.hidden {right: -300px;}

.float_telephone > span {
  position: absolute;
  z-index: 1;
  display: block;
  width: 45px;
  height: 46px;
  background: url("../img/btn_close.png") no-repeat center / cover;
  right: -9px;
  top: -23px;
  cursor: pointer;
}
.float_telephone p {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;    /*white*/
}
.float_telephone p span {
  display: block;
  font-size: 18px;
  color: #FFFFFF;    /*white*/
  margin: 10px 0 0;
}
/*.float_telephone p a {pointer-events: none;} /*not tel*/