.lds-ripple {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ripple div {
  position: absolute;
  border: 4px solid #fff;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
  opacity: 1;
  border-radius: 50%;
  -webkit-animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
          animation: lds-ripple 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
    background-color: #90b13e;  
}

.lds-ripple div:nth-child(2) {
  -webkit-animation-delay: -0.5s;
          animation-delay: -0.5s;
}

@-webkit-keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
}

@keyframes lds-ripple {
  0% {
    top: 28px;
    left: 28px;
    width: 0;
    height: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
    opacity: 1;
  }
  100% {
    top: -1px;
    left: -1px;
    width: 58px;
    height: 58px;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    opacity: 0;
  }
}

/*buttons animation*/

.btn_style_1, .btn_style_2 {
    display: inline-block!important;
    padding: 15px 45px!important;
    border-radius:  50px!important;
    font: 700 normal 15px 'Open Sans';
    border: 1px solid #91b046!important;
    text-transform: uppercase;
    letter-spacing: 1.6px;
    margin: 15px!important;
    text-align: center;
    -webkit-transition: all 1s ease;
    transition: all 1s ease;
    z-index: 100;
}

.btn_style_1:first-of-type, .btn_style_2:first-of-type {
    margin-right: 0!important;
    margin-left: 0!important;
}

.btn_style_1{   
    background:  #91b046!important;
    color: #eff3f0!important;
}

.btn_style_1:hover{
	background-color: transparent!important;
	text-shadow: none!important;
    border-color: #6d9018!important;
}

.btn_style_1:before{
    background: #6d9018!important;
}

.btn_style_2{   
    background:  transparent!important;
    color: #91b046!important;
}

.btn_style_2:hover{
    color: #eff3f0!important;
}

.btn_style_2:before{
    background: #91b046!important;
}

/* Global Button Styles */
.animated-button:link, .animated-button:visited {
	position: relative;
	display: block;
	margin: 30px auto 0;
	padding: 14px 15px;
	font-size:14px;
	font-weight: bold;
	text-align: center;
	text-decoration: none;
	text-transform: uppercase;
	overflow: hidden;
	border-radius: 0;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}
.animated-button:link:after, .animated-button:visited:after {
	content: "";
	position: absolute;
	height: 0%;
	left: 50%;
	top: 50%;
	width: 150%;
	z-index: -1;
	-webkit-transition: all 0.75s ease 0s;
	transition: all 0.75s ease 0s;
}
.animated-button:link:hover, .animated-button:visited:hover {
	text-shadow: none;
}
.animated-button:link:hover:after, .animated-button:visited:hover:after {
	height: 450%;
}
.animated-button:link, .animated-button:visited {
	position: relative;
	overflow: hidden;
	-webkit-transition: all 1s ease;
	transition: all 1s ease;
}

/* Thar Buttons */

.animated-button.thar-one {
	cursor: pointer;
	display: block;    
	position: relative;
	-webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}
.animated-button.thar-one:hover:before {
	bottom: 0%;
	top: auto;
	height: 100%;
}
.animated-button.thar-one:before {
	display: block;
	position: absolute;
	left: 0px;
	top: 0px;
	height: 0px;
	width: 100%;
	z-index: -1;
	content: '';
	-webkit-transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
	transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1) 0s;
}

/*end buttons animation*/