/* ::::: FOR SVG */
#Layer_1 {
    margin: auto;
    cursor:pointer;
  }
  #Layer_1 rect, #Layer_1 #eye, #Layer_1 #pupil {
    transition: all 0.2s ease;
  }
  #Layer_1:hover #eye, #Layer_1:hover #pupil {
    animation: squeeze 2s infinite;
    fill: black;
  }
  #Layer_1:hover rect {
    fill: black;
  }
  @keyframes squeeze {
    10% {
      transform: none;
      animation-timing-function: ease-in;
    }
    13% {
      transform: translateY(69px) scaleY(.3)
    }
    20% {
      animation-timing-function: ease-out;
    }
    21% {
      transform: none;
      animation-timing-function: ease-in;
    }
  }

  #Layer_1 #eye, #Layer_1 #pupil {
    animation: squeeze 2s infinite;
    fill: black;
  }