/* Соц кнопки */

@-webkit-keyframes  social-animation {
    0% {
      transform: translatey(100px);
      opacity: 0;
    }
    30% {
      transform: translateX(-50px) scale(0.4);
    }
    70% {
      transform: translateX(0px) scale(1.2);
    }
    100% {
      transform: translatey(0px) scale(1);
      opacity: 1;
    }
  }
  @keyframes  social-animation {
    0% {
      transform: translatey(100px);
      opacity: 0;
    }
    30% {
      transform: translateX(-50px) scale(0.4);
    }
    70% {
      transform: translateX(0px) scale(1.2);
    }
    100% {
      transform: translatey(0px) scale(1);
      opacity: 1;
    }
  }
  
  .floating-container-soc {
    position: fixed;
    width: 100px;
    height: 100px;
    bottom: 0;
    right: 0;
    margin: 30px 10px;
    z-index: 99999;
  }
  
  
  .floating-container-soc:hover .floating-button-soc {
    box-shadow: 0 10px 25px -5px rgb(54 191 141 / 85%);
    transform: translatey(5px);
    transition: all 0.2s;
  }
  
  .floating-block-soc {
      height: 280px;
  }
  
  .floating-block-soc .element-container-soc .float-element-soc-tg {
    -webkit-animation:  social-animation 0.3s forwards 0.1s;
            animation:  social-animation 0.4s forwards 0.1s;
  }
  .floating-block-soc .element-container-soc .float-element-soc-wt {
    -webkit-animation:  social-animation 0.3s forwards 0.3s;
            animation:  social-animation 0.3s forwards 0.3s;
  }
  .floating-block-soc .element-container-soc .float-element-soc-email {
    -webkit-animation:  social-animation 0.3s forwards 0.5s;
            animation:  social-animation 0.3s forwards 0.5s;
  }
  
  .floating-container-soc .floating-button-soc {
    position: absolute;
    width: 65px;
    height: 65px;
    background: #35BF8D;
    bottom: 0;
    border-radius: 50%;
    left: 0;
    right: 0;
    margin: auto;
    color: white;
    line-height: 65px;
    text-align: center;
    font-size: 23px;
    z-index: 99999;
    box-shadow: 0 10px 25px -5px rgb(54 191 141 / 65%);
    cursor: pointer;
    transition: all 0.2s;
  }
  .floating-container-soc .float-element-soc-tg,
  .floating-container-soc .float-element-soc-wt,
  .floating-container-soc .float-element-soc-email {
    position: relative;
    display: block;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: 15px auto;
    color: white;
    font-weight: 500;
    text-align: center;
    line-height: 50px;
    z-index: 0;
    opacity: 0;
    transform: translateY(100px);
  }
  .floating-container-soc .soc-float-link {
    vertical-align: middle;
    font-size: 21px;
  }
  .floating-container-soc .soc-float-link .float-element-soc-tg {
    background: #42A5F5;
    box-shadow: 0 20px 20px -10px rgba(66, 165, 245, 0.5);
  }
  .floating-container-soc .soc-float-link .float-element-soc-wt {
    background: #4CAF50;
    box-shadow: 0 20px 20px -10px rgba(76, 175, 80, 0.5);
  }
  .floating-container-soc .soc-float-link .float-element-soc-email {
    background: #FF9800;
    box-shadow: 0 20px 20px -10px rgba(255, 152, 0, 0.5);
  }
  
  
  /* Конец - Соц кнопки */
  