@media (max-width: 960px) {
  .present {
    right: 10px;
  }
}

@media (min-width: 960px) {
  .present {
    right: 32px;
  }
}


.present {
  
  border:none;
  position:fixed;
  bottom: 150px;
 z-index:99;
  
}
.present img {
  height:60px;
}

.present {

  -webkit-animation: pulsing 2s infinite;
  animation: pulsing 2s infinite;
}

@-webkit-keyframes pulsing {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5)
  }

  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }

  100% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}

@keyframes pulsing {
  0% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5)
  }

  50% {
    -webkit-transform: scale(1.0, 1.0);
    transform: scale(1.0, 1.0);
  }

  100% {
    -webkit-transform: scale(0.5, 0.5);
    transform: scale(0.5, 0.5);
  }
}

.t770__list  li:nth-child(4) a
{
  color: #ff33c3!important;
}