
/*** T3SB identifier: easybutton-2 */

      /* BTN TWO */
      .button {
        color: #375f3a;
      }
      .easybutton2::before, .easybutton2::after {
        content: '';
        position: absolute;
        width: 100%;
      	height: 100%;
        bottom: 0;
      	left: 0;
      	z-index: 0;
        transition: all 0.3s;
        border: 1px solid #375f3a;
      }

      .easybutton2:hover::after {
        animation-name: rotatecw;
        animation-duration: 2s;
      }
      .easybutton2:hover::before {
        animation-name: rotateccw;
        animation-duration: 3s;
      }
      .easybutton2:hover::after, .easybutton2:hover::before {
        left: 96px;
        width: 64px;

        animation-iteration-count: infinite;
        animation-timing-function: linear;
      }

      @keyframes rotatecw {
          from {transform: rotate(0deg);}
          to {transform: rotate(360deg);}
      }

      @keyframes rotateccw {
          from {transform: rotate(0deg);}
          to {transform: rotate(-360deg);}
      }
    

