@charset "UTF-8";
/*!
 * WP Animated Buttons | WPBakery Button Addon
 * Author: Web_Trendy
 * Copyright 2020 © Web_Trendy (https://codecanyon.net/user/web_trendy/portfolio)
 * Licensed under Envato (https://codecanyon.net/licenses/standard)
 *
 * "Open your hands if you want to be held." -Rumi
 *
 */
 /*------------------------------------------------------------------
[Table of contents]

1.0 Variables
2.0 Main Styles
-------------------------------------------------------------------*/
/*--------------------------------------------------------------
1.0 Variables
Variables used inside the library. Update per your needs.
--------------------------------------------------------------*/
/*1.1 Default Variables - Colors, sizes and transitions used as default.*/
:root {
  --ab-button-color: #f2eee0;
  --ab-button-bg-color: #ffdc2a; }

/*--------------------------------------------------------------
2.0 General Styles
Styles needed for all buttons.
--------------------------------------------------------------*/
.ab-btn {
  --ab-button-text-color: #252525;
  text-decoration: none;
  color: var(--ab-button-text-color);
  padding: 10px 40px;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 180px;
  height: 45px;
  background-color: var(--ab-button-color); }
  .ab-btn span {
    font-weight: 400;
    font-size: 80%;
    text-transform: uppercase;
    display: inline-block;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
    z-index: 99;
    will-change: transform; }
  .ab-btn:before {
    content: '';
    position: absolute;
    background-color: var(--ab-button-background-color);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    left: 0;
    top: 0;
    width: 0px;
    height: 100%; }
  .ab-btn:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease; }
  .ab-btn:hover:before {
    width: 100%; }

/*--------------------------------------------------------------
3.0 Button Animations
Animation classes. 20 different animations.
--------------------------------------------------------------*/
/*Style 1*/
.ab-style-1:after {
  left: 30px;
  width: 0px;
  height: 1px;
  background-color: var(--ab-button-text-color); }
.ab-style-1:hover:after {
  width: 20px;
  -webkit-transition-delay: 200ms;
          transition-delay: 200ms; }
.ab-style-1:hover span {
  -webkit-transform: translateX(20px);
          transform: translateX(20px); }

/*Style 2*/
.ab-style-2 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-2 span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); }
    .ab-style-2 span:before {
      content: '';
      position: absolute;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
      top: 50%;
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%);
      left: -15px;
      width: 0;
      height: 0;
      border-left: 7px solid var(--ab-button-text-color);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent; }
    .ab-style-2 span:after {
      content: '';
      position: absolute;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
      top: 50%;
      -webkit-transform: translateY(-50%) scale(0);
              transform: translateY(-50%) scale(0);
      right: -15px;
      width: 0;
      height: 0;
      border-left: 7px solid var(--ab-button-text-color);
      border-top: 5px solid transparent;
      border-bottom: 5px solid transparent; }
  .ab-style-2:hover span {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px); }
    .ab-style-2:hover span:before {
      -webkit-transform: translateY(-50%) scale(0);
              transform: translateY(-50%) scale(0);
      -webkit-transition-delay: 100ms;
              transition-delay: 100ms; }
    .ab-style-2:hover span:after {
      -webkit-transform: translateY(-50%) scale(1);
              transform: translateY(-50%) scale(1);
      -webkit-transition-delay: 250ms;
              transition-delay: 250ms; }

/*Style 3*/
.ab-style-3 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-3 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background-color: var(--ab-button-text-color);
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    opacity: 0; }
  .ab-style-3 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 50%;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--ab-button-text-color);
    border-right: 1px solid var(--ab-button-text-color);
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    opacity: 0; }
  .ab-style-3:hover span {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
    .ab-style-3:hover span:before, .ab-style-3:hover span:after {
      opacity: 1; }

/*Style 4*/
.ab-style-4 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-4 span {
    -webkit-transform: translateY(2px);
            transform: translateY(2px); }
    .ab-style-4 span:after {
      content: '';
      position: absolute;
      -webkit-transition: all 300ms ease;
      transition: all 300ms ease;
      left: 0px;
      width: 0px;
      bottom: 0px;
      height: 1px;
      background-color: var(--ab-button-text-color); }
  .ab-style-4:hover span {
    -webkit-transform: translateY(-2px);
            transform: translateY(-2px); }
    .ab-style-4:hover span:after {
      width: 100%;
      -webkit-transform: translateY(4px);
              transform: translateY(4px); }

/*Style 5*/
.ab-style-5 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-5:after {
    right: 20px;
    width: 0px;
    height: 0px;
    border-left: 5px solid var(--ab-button-text-color);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
    -webkit-transform: scale(0);
            transform: scale(0); }
  .ab-style-5:hover:after {
    -webkit-transform: scale(1);
            transform: scale(1); }
  .ab-style-5:hover span {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }

/*Style 6*/
.ab-style-6 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-6 span {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px); }
  .ab-style-6:after {
    left: 0px;
    width: 0px;
    bottom: 0;
    height: 1px;
    background-color: var(--ab-button-text-color); }
  .ab-style-6:hover:after {
    width: 100%;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }
  .ab-style-6:hover span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); }

/*Style 7*/
.ab-style-7 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-7 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 1px;
    background-color: var(--ab-button-text-color); }
  .ab-style-7 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    left: -30px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 1px;
    background-color: var(--ab-button-text-color); }
  .ab-style-7:hover span:after {
    width: 20px;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }
  .ab-style-7:hover span:before {
    width: 20px;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }

/*Style 8*/
.ab-style-8 span:after {
  content: '';
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  left: -10px;
  width: 0px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  height: 1px;
  background-color: var(--ab-button-text-color); }
.ab-style-8:hover span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px); }
  .ab-style-8:hover span:after {
    width: calc(100% + 20px);
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }

/*Style 9*/
.ab-style-9 span:before {
  content: '';
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  left: -20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0px;
  height: 1px;
  background-color: var(--ab-button-text-color); }
.ab-style-9 span:after {
  content: '';
  position: absolute;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  left: -12px;
  top: 4px;
  width: 0px;
  height: 1px;
  background-color: var(--ab-button-text-color); }
.ab-style-9:hover span {
  -webkit-transform: translateX(20px);
          transform: translateX(20px); }
  .ab-style-9:hover span:before {
    width: 15px; }
  .ab-style-9:hover span:after {
    width: 15px;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }

/*Style 10*/
.ab-style-10 {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }
  .ab-style-10 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 50%;
    width: 0px;
    height: 1px;
    background-color: var(--ab-button-text-color);
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    -webkit-transform-origin: right;
            transform-origin: right; }
  .ab-style-10 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 50%;
    width: 0px;
    height: 1px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
    -webkit-transform-origin: right;
            transform-origin: right;
    background-color: var(--ab-button-text-color); }
  .ab-style-10:after {
    left: 30px;
    width: 20px;
    height: 1px;
    background-color: var(--ab-button-text-color); }
  .ab-style-10:hover:after {
    width: 0px; }
  .ab-style-10:hover span {
    -webkit-transform: translateX(-20px);
            transform: translateX(-20px); }
    .ab-style-10:hover span:before, .ab-style-10:hover span:after {
      opacity: 1;
      width: 7px;
      -webkit-transition-delay: 200ms;
              transition-delay: 200ms; }

/*Style 11*/
.ab-style-11 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-11 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    background-color: var(--ab-button-text-color);
    -webkit-transform: translateY(-50%) rotate(45deg);
            transform: translateY(-50%) rotate(45deg);
    opacity: 0; }
  .ab-style-11 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 50%;
    width: 15px;
    height: 1px;
    -webkit-transform: translateY(-50%) rotate(-45deg);
            transform: translateY(-50%) rotate(-45deg);
    background-color: var(--ab-button-text-color);
    opacity: 0; }
  .ab-style-11:hover span {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
    .ab-style-11:hover span:before, .ab-style-11:hover span:after {
      opacity: 1; }

/*Style 12*/
.ab-style-12 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-12 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -15px;
    bottom: 2px;
    width: 8px;
    height: 1px;
    background-color: var(--ab-button-text-color);
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transform-origin: right;
            transform-origin: right;
    opacity: 0; }
  .ab-style-12 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -15px;
    bottom: 2px;
    width: 16px;
    height: 1px;
    -webkit-transform: rotate(135deg);
            transform: rotate(135deg);
    -webkit-transform-origin: right;
            transform-origin: right;
    background-color: var(--ab-button-text-color);
    opacity: 0; }
  .ab-style-12:hover span {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
    .ab-style-12:hover span:before, .ab-style-12:hover span:after {
      opacity: 1; }

/*Style 13*/
.ab-style-13 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-13 span {
    -webkit-transform: translateX(-5px);
            transform: translateX(-5px); }
  .ab-style-13:after {
    left: calc(100% - 40px);
    width: 0px;
    height: 1px;
    background-color: var(--ab-button-text-color); }
  .ab-style-13:hover:after {
    width: 40px;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }
  .ab-style-13:hover span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); }

/*Style 14*/
.ab-style-14 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-14 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    bottom: 0;
    left: -10px;
    width: 1px;
    height: 0px;
    background-color: var(--ab-button-text-color); }
  .ab-style-14 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -10px;
    width: 1px;
    height: 0px;
    background-color: var(--ab-button-text-color); }
  .ab-style-14:hover span:before {
    height: 100%; }
  .ab-style-14:hover span:after {
    height: 100%;
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }

/*Style 15*/
.ab-style-15 span:before {
  content: '';
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  right: -15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--ab-button-text-color);
  border-right: 1px solid var(--ab-button-text-color);
  -webkit-transform: translate(20px, -50%) rotate(45deg);
          transform: translate(20px, -50%) rotate(45deg);
  opacity: 0; }
.ab-style-15 span:after {
  content: '';
  position: absolute;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
  right: -10px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-top: 1px solid var(--ab-button-text-color);
  border-right: 1px solid var(--ab-button-text-color);
  -webkit-transform: translate(20px, -50%) rotate(45deg);
          transform: translate(20px, -50%) rotate(45deg);
  opacity: 0; }
.ab-style-15:hover span {
  -webkit-transform: translateX(10px);
          transform: translateX(10px); }
  .ab-style-15:hover span:before {
    opacity: 1;
    -webkit-transform: translate(0px, -50%) rotate(45deg);
            transform: translate(0px, -50%) rotate(45deg);
    -webkit-transition-delay: 200ms;
            transition-delay: 200ms; }
  .ab-style-15:hover span:after {
    opacity: 1;
    -webkit-transform: translate(0px, -50%) rotate(45deg);
            transform: translate(0px, -50%) rotate(45deg); }

/*Style 16*/
.ab-style-16 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-16 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -19px;
    top: 3px;
    width: 15px;
    height: 1px;
    background-color: var(--ab-button-text-color);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    -webkit-transform-origin: top right;
            transform-origin: top right; }
  .ab-style-16 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    top: 3px;
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--ab-button-text-color);
    border-right: 1px solid var(--ab-button-text-color);
    -webkit-transform: rotate(5deg);
            transform: rotate(5deg);
    -webkit-transform-origin: top right;
            transform-origin: top right; }
  .ab-style-16:hover span {
    -webkit-transform: translateX(-10px);
            transform: translateX(-10px); }
    .ab-style-16:hover span:before {
      right: -20px;
      top: 50%;
      width: 15px;
      height: 1px;
      background-color: var(--ab-button-text-color);
      -webkit-transform: translateY(-50%);
              transform: translateY(-50%); }
    .ab-style-16:hover span:after {
      right: -20px;
      top: 50%;
      width: 5px;
      height: 5px;
      border-top: 1px solid var(--ab-button-text-color);
      border-right: 1px solid var(--ab-button-text-color);
      -webkit-transform: translateY(-50%) rotate(45deg);
              transform: translateY(-50%) rotate(45deg);
      -webkit-transform-origin: center;
              transform-origin: center; }

/*Style 17*/
.ab-style-17 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }
  .ab-style-17 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    left: -5px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 0px;
    height: 1px;
    background-color: var(--ab-button-text-color); }
  .ab-style-17:after {
    content: "$";
    left: 35px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%); }
  .ab-style-17:hover span {
    -webkit-transform: translateX(10px);
            transform: translateX(10px); }
    .ab-style-17:hover span:before {
      width: 10px;
      -webkit-transform: translate(-10px, -50%);
              transform: translate(-10px, -50%); }

/*Style 18*/
.ab-style-18 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .ab-style-18 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    bottom: 2px;
    width: 1px;
    height: 10px;
    background-color: var(--ab-button-text-color);
    -webkit-transform-origin: bottom;
            transform-origin: bottom; }
  .ab-style-18 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -25px;
    bottom: 2px;
    width: 10px;
    height: 1px;
    background-color: var(--ab-button-text-color);
    -webkit-transform-origin: bottom;
            transform-origin: bottom; }
  .ab-style-18:hover span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); }
    .ab-style-18:hover span:before {
      -webkit-transform: translateX(-10px);
              transform: translateX(-10px); }
    .ab-style-18:hover span:after {
      -webkit-transform: translateX(-10px);
              transform: translateX(-10px); }

/*Style 19*/
.ab-style-19 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .ab-style-19 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    bottom: 5px;
    width: 10px;
    height: 10px;
    border: 1px solid var(--ab-button-text-color);
    border-radius: 50%; }
  .ab-style-19 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -13px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
    bottom: 7px;
    width: 1px;
    height: 10px;
    background-color: var(--ab-button-text-color);
    -webkit-transform-origin: bottom;
            transform-origin: bottom; }
  .ab-style-19:hover span {
    -webkit-transform: translateX(5px);
            transform: translateX(5px); }
    .ab-style-19:hover span:after {
      right: -19px;
      -webkit-transform: rotate(-225deg);
              transform: rotate(-225deg); }

/*Style 20*/
.ab-style-20 {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }
  .ab-style-20 span:before {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    bottom: 5px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--ab-button-text-color);
    border-left: 1px solid var(--ab-button-text-color);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }
  .ab-style-20 span:after {
    content: '';
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    right: -20px;
    bottom: 15px;
    width: 8px;
    height: 8px;
    border-bottom: 1px solid var(--ab-button-text-color);
    border-left: 1px solid var(--ab-button-text-color);
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    opacity: 0; }
  .ab-style-20:hover span:before {
    bottom: -5px;
    opacity: 0; }
  .ab-style-20:hover span:after {
    bottom: 5px;
    opacity: 1; }

/*--------------------------------------------------------------
4.0 Background Animations
Animations used as button background. 22 different animations.
--------------------------------------------------------------*/
/*Background Animation 1*/
.ab-anim-1:before {
  left: 0;
  top: 0;
  width: 10px;
  height: 100%; }
.ab-anim-1:hover:before {
  width: 100%; }

/*Background Animation 2*/
.ab-anim-2:before {
  right: 0;
  left: auto;
  top: 0;
  width: 10px;
  height: 100%; }
.ab-anim-2:hover:before {
  width: 100%; }

/*Background Animation 3*/
.ab-anim-3:before {
  left: 0;
  top: 0;
  width: 0px;
  height: 100%; }
.ab-anim-3:hover:before {
  width: 100%; }

/*Background Animation 4*/
.ab-anim-4:before {
  right: 0;
  left: auto;
  top: 0;
  width: 0px;
  height: 100%; }
.ab-anim-4:hover:before {
  width: 100%; }

/*Background Animation 5*/
.ab-anim-5:before {
  left: 0;
  top: 0;
  width: 100%;
  height: 0; }
.ab-anim-5:hover:before {
  height: 100%; }

/*Background Animation 6*/
.ab-anim-6:before {
  left: 0;
  top: auto;
  bottom: 0;
  width: 100%;
  height: 0; }
.ab-anim-6:hover:before {
  height: 100%; }

/*Background Animation 7*/
.ab-anim-7 {
  overflow: hidden; }
  .ab-anim-7:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: bottom left;
            transform-origin: bottom left;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .ab-anim-7:hover:before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }

/*Background Animation 8*/
.ab-anim-8 {
  overflow: hidden; }
  .ab-anim-8:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .ab-anim-8:hover:before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }

/*Background Animation 9*/
.ab-anim-9 {
  overflow: hidden; }
  .ab-anim-9:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }
  .ab-anim-9:hover:before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }

/*Background Animation 10*/
.ab-anim-10 {
  overflow: hidden; }
  .ab-anim-10:before {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg); }
  .ab-anim-10:hover:before {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }

/*Background Animation 11*/
.ab-anim-11:before {
  right: 0;
  left: auto;
  top: 0;
  width: 0px;
  height: 100%; }
.ab-anim-11:hover:before {
  width: 47px; }

/*Background Animation 12*/
.ab-anim-12:before {
  left: 0;
  top: 0;
  width: 0px;
  height: 100%; }
.ab-anim-12:hover:before {
  width: 47px; }

/*Background Animation 13*/
.ab-anim-13 {
  overflow: hidden; }
  .ab-anim-13:before {
    right: -15%;
    left: auto;
    top: 0;
    width: 0;
    height: 100%;
    -webkit-transform: skewX(45deg);
            transform: skewX(45deg); }
  .ab-anim-13:hover:before {
    width: 130%; }

/*Background Animation 14*/
.ab-anim-14 {
  overflow: hidden; }
  .ab-anim-14:before {
    right: -15%;
    left: auto;
    top: 0;
    width: 0;
    height: 100%;
    -webkit-transform: skewX(-45deg);
            transform: skewX(-45deg); }
  .ab-anim-14:hover:before {
    width: 130%; }

/*Background Animation 15*/
.ab-anim-15 {
  overflow: hidden; }
  .ab-anim-15:before {
    left: -15%;
    top: 0;
    width: 0;
    height: 100%;
    -webkit-transform: skewX(45deg);
            transform: skewX(45deg); }
  .ab-anim-15:hover:before {
    width: 130%; }

/*Background Animation 16*/
.ab-anim-16 {
  overflow: hidden; }
  .ab-anim-16:before {
    left: -15%;
    top: 0;
    width: 0;
    height: 100%;
    -webkit-transform: skewX(-45deg);
            transform: skewX(-45deg); }
  .ab-anim-16:hover:before {
    width: 130%; }

/*Background Animation 17*/
.ab-anim-17 {
  overflow: hidden; }
  .ab-anim-17:before {
    left: 0;
    top: 0;
    width: 10px;
    height: 100%; }
  .ab-anim-17:hover:before {
    width: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

/*Background Animation 18*/
.ab-anim-18 {
  overflow: hidden; }
  .ab-anim-18:before {
    right: 0;
    left: auto;
    top: 0;
    width: 10px;
    height: 100%; }
  .ab-anim-18:hover:before {
    width: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

/*Background Animation 19*/
.ab-anim-19:before {
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%) scale(0);
          transform: translate(-50%, -50%) scale(0);
  width: 100%;
  height: 100%; }
.ab-anim-19:hover:before {
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1); }

/*Background Animation 20*/
.ab-anim-20 {
  overflow: hidden; }
  .ab-anim-20:before {
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(0);
            transform: translate(-50%, -50%) scale(0);
    width: 190px;
    height: 190px;
    border-radius: 50%; }
  .ab-anim-20:hover:before {
    -webkit-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
    width: 190px;
    height: 190px; }

/*Background Animation 21*/
.ab-anim-21 {
  overflow: hidden; }
  .ab-anim-21:before {
    left: 0;
    top: 0;
    width: 45px;
    height: 100%;
    -webkit-transform: translateX(-150%) rotate(45deg);
            transform: translateX(-150%) rotate(45deg); }
  .ab-anim-21:hover:before {
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
    width: 45px;
    height: 100%; }

/*Background Animation 22*/
.ab-anim-22 {
  overflow: hidden; }
  .ab-anim-22:before {
    right: 0;
    left: auto;
    top: 0;
    width: 45px;
    height: 100%;
    -webkit-transform: translateX(150%) rotate(45deg);
            transform: translateX(150%) rotate(45deg); }
  .ab-anim-22:hover:before {
    -webkit-transform: translateX(50%) rotate(45deg);
            transform: translateX(50%) rotate(45deg);
    width: 45px;
    height: 100%; }

/*--------------------------------------------------------------
5.0 Button Sizes
Small, normal and large button size.
--------------------------------------------------------------*/
/*Small Size*/
.size-small {
  width: 160px;
  height: 40px; }
  .size-small span {
    font-size: 70%; }

/*Normal Size*/
.size-normal {
  width: 180px;
  height: 45px; }
  .size-normal span {
    font-size: 80%; }

/*Large Size*/
.size-large {
  width: 220px;
  height: 55px; }
  .size-large span {
    font-size: 90%; }

/*--------------------------------------------------------------
6.0 Colors
Button Background colors, hover background colors and text colors.
--------------------------------------------------------------*/
/*Future Updates (White Icon)*/
.white-icon {
  color: white; }

.white-icon.ab-style-1:after, .white-icon.ab-style-6:after, .white-icon.ab-style-10:after, .white-icon.ab-style-13:after {
  background-color: white; }

.white-icon.ab-style-2 span:before {
  border-left-color: white; }
.white-icon.ab-style-2 span:after {
  border-left-color: white; }

.white-icon.ab-style-3 span:before, .white-icon.ab-style-16 span:before {
  background-color: white; }
.white-icon.ab-style-3 span:after, .white-icon.ab-style-16 span:after {
  border-top-color: white;
  border-right-color: white; }

.white-icon.ab-style-4 span:after, .white-icon.ab-style-8 span:after {
  background-color: white; }

.white-icon.ab-style-5:after {
  border-left-color: white; }

.white-icon.ab-style-7 span:before, .white-icon.ab-style-9 span:before, .white-icon.ab-style-10 span:before, .white-icon.ab-style-11 span:before, .white-icon.ab-style-12 span:before, .white-icon.ab-style-14 span:before, .white-icon.ab-style-18 span:before {
  background-color: white; }
.white-icon.ab-style-7 span:after, .white-icon.ab-style-9 span:after, .white-icon.ab-style-10 span:after, .white-icon.ab-style-11 span:after, .white-icon.ab-style-12 span:after, .white-icon.ab-style-14 span:after, .white-icon.ab-style-18 span:after {
  background-color: white; }

.white-icon.ab-style-15 span:before {
  border-top-color: white;
  border-right-color: white; }
.white-icon.ab-style-15 span:after {
  border-top-color: white;
  border-right-color: white; }

.white-icon.ab-style-17 span:before {
  background-color: white; }

.white-icon.ab-style-19 span:before {
  border-color: white; }
.white-icon.ab-style-19 span:after {
  background-color: white; }

.white-icon.ab-style-20 span:before {
  border-bottom-color: white;
  border-left-color: white; }
.white-icon.ab-style-20 span:after {
  border-bottom-color: white;
  border-left-color: white; }

/*End of the file*/
/* :) Let's meke internet BEAUTIFUL*/

/*# sourceMappingURL=wp-animated-buttons.css.map */