
.button,
.button:after,
.button:before {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	z-index:0;
} 
.hidden {
	position: absolute;
	width: 0;
	height: 0;
	overflow: hidden;
	pointer-events: none;
}
   
  

/* Common button styles */
.button { 
	font-family: sansation;
	min-width: 130px; 
	    max-width: fit-content;

	/*max-width: 250px;*/
	display: block;
	/*padding: 3px 4px;*/
	    padding: 0.3vw 0.4vw;

	border: none;
	background: #3c725b;
	font-weight:bold;
	color: #ffffff; 
	vertical-align: middle;
	position: relative; 
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
	cursor:pointer;
	z-index:0;
	font-size: 1.5vw;
    line-height: 0.9;

}
.button:focus {
	outline: none;
}
.button > span {
	vertical-align: middle;
}

/* Text color adjustments (we could stick to the "inherit" but that does not work well in Safari) */
 

/* Sizes */

/* Typography and Roundedness */
.button--text-upper {
	letter-spacing: 2px;
	text-transform: uppercase;
}
.button--text-thin {
	font-weight: 300;
}
.button--text-medium {
	font-weight: 500;
}
.button--text-thick {
	font-weight: 600;
}
.button--round-s {
	border-radius: 5px;
}
.button--round-m {
	border-radius: 15px;
}
.button--round-l {
	border-radius: 40px;
}

/* Borders */
.button--border-thin {
	border: 1px solid;
}
.button--border-medium {
	border: 2px solid;
}
.button--border-thick {
	/*border: 3px solid;*/
}


/* Simple button style */
.button--simple {
	overflow: hidden;
    text-transform: uppercase;
	   /* border-radius: 5px;*/

}
.button--simple.button--inverted {
	color: #fff;
}
.button--simple::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0%;
	width: 100%; 
	height: 100%;
	background: #7eb448;
    padding: 0px;
    text-transform: uppercase;
	color:#FFF;
	-webkit-transform: translate3d(0, 200%, 0);
	transform: translate3d(0, 200%, 0);
	z-index:0;
	border: solid 4px #7eb448;
}
.button--simple.button--inverted::before {
	background: #fff;
	color: #7eb448;
}
.button--simple > span {
	display: block;
}
.button--simple::before,
.button--simple > span {
    padding: 4px;
    padding-right: 20px;
    padding-left: 20px;
	
    padding-bottom: 8px;
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.4s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	z-index:0;
}
.button--simple:hover::before {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.button--simple:hover > span {
	-webkit-transform: translate3d(0, -100%, 0);
	transform: translate3d(0, -100%, 0); }
	
	


@media screen and  (max-width:908px) {
	
.button--size-s {
	/*font-size: 14px;*/
	    font-size: 16px;
}
.button--size-m {
	/*font-size: 16px;*/
	font-size: 17px;
}
.button--size-l {
	/*font-size: 18px;    */
	font-size: 18px;
}
}
@media screen and  (min-width:908px) { 

.button--size-s {
	/*font-size: 14px;*/
	    font-size: 1.4vw;
}
.button--size-m {
	/*font-size: 16px;*/
	font-size: 1.5vw;
}
.button--size-l {
	/*font-size: 18px;    */
	font-size: 1.6vw;
}
}