.mybutton {
	display: block;
  width: 140px;
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 0;
  overflow: hidden;
  position: relative;
  transform: translatez(0);
  text-decoration: none;
  box-sizing: border-box;
  font-size: 18px;
  display: inline-block;
  margin-right: 6px;
  margin-left: 6px;
	font-weight: normal;
	/* box-shadow: 0 9px 18px rgba(0,0,0,0.2); */
}

.instagram {
	text-align: center;
	border-radius: 24px;
  padding: 10px;
  color: white;
  background: #000000;
  transition: all 0.2s ease-out 0s;
}

.gradient {
	display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  bottom: auto;
  margin: auto;
  z-index: -1;
  background: radial-gradient(32px circle at top center, rgba(240, 238, 211, 0.8) 30%, rgba(255,255,255,0));
  transition: all 0s ease-out 0s;
	transform: translatex(-140px);
	animation: 18s linear 0s infinite move;
}

@keyframes move {
	0% {
		transform: translatex(-140px);
	}
	25% {
		transform: translatex(140px);
		opacity: 0.3;
	}
	50% {
		transform: translatex(140px);
		opacity: 1;
		background: radial-gradient(32px circle at bottom center, rgba(240, 238, 211, 0.8) 30%, rgba(255,255,255,0));
	}
	75% {
		transform: translatex(-140px);
		opacity: 0.3;
	}
	100% {
		opacity: 1;
		transform: translatex(-140px);
		background: radial-gradient(32px circle at top center, rgba(240, 238, 211, 0.8) 30%, rgba(255,255,255,0));
	}
}