.tunap-floating-ctas{
  position: fixed;
  right: 0px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 9999;
}

.tunap-floating-cta{
  display: flex;
  align-items: center;
  width: fit-content;
  padding: 10px;
  background: #222c3a;
  color: white;
  margin-left: auto;
}

.tunap-floating-cta:not(:last-child){
  margin-bottom: 5px;
}

.tunap-floating-cta__icon svg{
  height: 40px;
  width: 40px;
  fill: white;
}

.tunap-floating-cta .tunap-floating-cta__text{
  width: 0px;
  font-size: 20px;
  margin: unset;
  opacity: 0;
  transition: width .2s;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tunap-floating-cta:hover > .tunap-floating-cta__text{
  width: 200px;
  opacity: 1;
  margin-left: 10px;
  transition: width .3s;
}

@media only screen and (max-width: 1000px) {
  .tunap-floating-ctas{
    display: none;
}