/* Box colors */
.bg-1 {
	width:100px;
	height:32px;
	color: #37474f;
	padding-top:595px;
}

.bg-1 .button span a{
	color: #006d68;
}

/* Common button styles */
.button {
	margin:0 auto;
	display:block;
	min-width: 100px;
	max-width: 100px;
	display: block;
	border: none;
	background: none;
	color: inherit;
	vertical-align: middle;
	position: relative;
	z-index: 1;
	-webkit-backface-visibility: hidden;
	-moz-osx-font-smoothing: grayscale;
}
.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) */
.bg-1 .button {
	color: #fff;
	border-color: #006d68;
	background:#fcfcfc;
}


/* Sizes */
.button--size-s {
	font-size: 13px;
}


/* Borders */
.button--border-thin {
	border: 1px solid;
}


/* Rayen */
.button--rayen {
	overflow: hidden;
    padding: 0;
    width: 100px;
    height: 32px;
    border: 1px #006d68 solid;
    line-height: 32px;
}
.button--rayen.button--inverted {
	color: #fff;
}
.button--rayen::before {
	content: attr(data-text);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: #006d68;
	-webkit-transform: translate3d(-100%, 0, 0);
	transform: translate3d(-100%, 0, 0);
}
.button--rayen.button--inverted::before {
	background: #fff;
	color: #37474f;
}
.button--rayen > span {
	display: block;
}
.button--rayen::before,
.button--rayen > span {
	-webkit-transition: -webkit-transform 0.3s;
	transition: transform 0.3s;
	-webkit-transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
	transition-timing-function: cubic-bezier(0.75, 0, 0.125, 1);
}
.button--rayen:hover::before {
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
}
.button--rayen:hover > span {
	-webkit-transform: translate3d(0, 100%, 0);
	transform: translate3d(0, 100%, 0);
}
