
/*** T3SB identifier: easybutton-4 */

      /* BTN FOUR */
      .button {
        color: #ffffff;
      }
      .easybutton4 {
      	 display: inline-block;
      	 padding: 0.75rem 1.25rem;
      	 border-radius: 10rem;
      	 color: #fff;
      	 text-transform: uppercase;
      	 font-size: 1rem;
      	 letter-spacing: 0.15rem;
      	 transition: all 0.3s;
      	 position: relative;
      	 overflow: hidden;
      	 z-index: 1;
      }
       .easybutton4:after {
      	 content: '';
      	 position: absolute;
      	 bottom: 0;
      	 left: 0;
      	 width: 100%;
      	 height: 100%;
      	 background-color: #b3eb63;
      	 border-radius: 10rem;
      	 z-index: -2;
      }
       .easybutton4:before {
      	 content: '';
      	 position: absolute;
      	 bottom: 0;
      	 left: 0;
      	 width: 0%;
      	 height: 100%;
      	 background-color: darken(#b3eb63, 15%);
      	 transition: all 0.3s;
      	 border-radius: 10rem;
      	 z-index: -1;
      }
       .easybutton4:hover {
      	 color: #ffffff;
      }
       .easybutton4:hover:before {
      	 width: 100%;
      }
    

