.enliven-blob {
	-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.enliven-blob::after {
	content: "";
	border-radius: 5px;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
	opacity: 0;
	-webkit-transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
	transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.enliven-blob:hover {
	-webkit-transform: scale(1.25, 1.25);
	transform: scale(1.25, 1.25);
}

.enliven-blob:hover::after {
	opacity: 1;
}

.enliven-loader {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.enliven-loader div {
	position: absolute;
	top: 27px;
	width: 11px;
	height: 11px;
	border-radius: 50%;
	background: #fff;
	animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.enliven-loader div:nth-child(1) {
	left: 6px;
	animation: enliven-loader1 0.6s infinite;
}
.enliven-loader div:nth-child(2) {
	left: 6px;
	animation: enliven-loader2 0.6s infinite;
}
.enliven-loader div:nth-child(3) {
	left: 26px;
	animation: enliven-loader2 0.6s infinite;
}
.enliven-loader div:nth-child(4) {
	left: 45px;
	animation: enliven-loader3 0.6s infinite;
}
@keyframes enliven-loader1 {
	0% {
		transform: scale(0);
	}
	100% {
		transform: scale(1);
	}
}
@keyframes enliven-loader3 {
	0% {
		transform: scale(1);
	}
	100% {
		transform: scale(0);
	}
}
@keyframes enliven-loader2 {
	0% {
		transform: translate(0, 0);
	}
	100% {
		transform: translate(19px, 0);
	}
}

.enliven-loader-spinner {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.enliven-loader-spinner div {
	animation: enliven-loader-spinner 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
	transform-origin: 32px 32px;
	background: #fff;
}
.enliven-loader-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background: inherit;
	margin: -3px 0 0 -3px;
}
.enliven-loader-spinner div:nth-child(1) {
	animation-delay: -0.036s;
}
.enliven-loader-spinner div:nth-child(1):after {
	top: 50px;
	left: 50px;
}
.enliven-loader-spinner div:nth-child(2) {
	animation-delay: -0.072s;
}
.enliven-loader-spinner div:nth-child(2):after {
	top: 54px;
	left: 45px;
}
.enliven-loader-spinner div:nth-child(3) {
	animation-delay: -0.108s;
}
.enliven-loader-spinner div:nth-child(3):after {
	top: 57px;
	left: 39px;
}
.enliven-loader-spinner div:nth-child(4) {
	animation-delay: -0.144s;
}
.enliven-loader-spinner div:nth-child(4):after {
	top: 58px;
	left: 32px;
}
.enliven-loader-spinner div:nth-child(5) {
	animation-delay: -0.18s;
}
.enliven-loader-spinner div:nth-child(5):after {
	top: 57px;
	left: 25px;
}
.enliven-loader-spinner div:nth-child(6) {
	animation-delay: -0.216s;
}
.enliven-loader-spinner div:nth-child(6):after {
	top: 54px;
	left: 19px;
}
.enliven-loader-spinner div:nth-child(7) {
	animation-delay: -0.252s;
}
.enliven-loader-spinner div:nth-child(7):after {
	top: 50px;
	left: 14px;
}
.enliven-loader-spinner div:nth-child(8) {
	animation-delay: -0.288s;
}
.enliven-loader-spinner div:nth-child(8):after {
	top: 45px;
	left: 10px;
}
@keyframes enliven-loader-spinner {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(360deg);
	}
}

.enliven-loader-disk {
	display: inline-block;
	transform: translateZ(1px);
}
.enliven-loader-disk div {
	display: inline-block;
	width: 51px;
	height: 51px;
	margin: 6px;
	border-radius: 50%;
	background: #fff;
	animation: enliven-loader-disk 2.4s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
@keyframes enliven-loader-disk {
	0%, 100% {
		animation-timing-function: cubic-bezier(0.5, 0, 1, 0.5);
	}
	0% {
		transform: rotateY(0deg);
	}
	50% {
		transform: rotateY(1800deg);
		animation-timing-function: cubic-bezier(0, 0.5, 0.5, 1);
	}
	100% {
		transform: rotateY(3600deg);
	}
}

.enliven-loader-flash {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.enliven-loader-flash div {
	position: absolute;
	border: 4px solid #fff;
	opacity: 1;
	border-radius: 50%;
	animation: enliven-loader-flash 1s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}
.enliven-loader-flash div:nth-child(2) {
	animation-delay: -0.5s;
}
@keyframes enliven-loader-flash {
	0% {
		top: 28px;
		left: 28px;
		width: 0;
		height: 0;
		opacity: 1;
	}
	100% {
		top: -1px;
		left: -1px;
		width: 58px;
		height: 58px;
		opacity: 0;
	}
}

.enliven-loader-square {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.enliven-loader-square div {
	position: absolute;
	width: 13px;
	height: 13px;
	border-radius: 50%;
	background: #fff;
	animation: enliven-loader-square 1.2s linear infinite;
}
.enliven-loader-square div:nth-child(1) {
	top: 6px;
	left: 6px;
	animation-delay: 0s;
}
.enliven-loader-square div:nth-child(2) {
	top: 6px;
	left: 26px;
	animation-delay: -0.4s;
}
.enliven-loader-square div:nth-child(3) {
	top: 6px;
	left: 45px;
	animation-delay: -0.8s;
}
.enliven-loader-square div:nth-child(4) {
	top: 26px;
	left: 6px;
	animation-delay: -0.4s;
}
.enliven-loader-square div:nth-child(5) {
	top: 26px;
	left: 26px;
	animation-delay: -0.8s;
}
.enliven-loader-square div:nth-child(6) {
	top: 26px;
	left: 45px;
	animation-delay: -1.2s;
}
.enliven-loader-square div:nth-child(7) {
	top: 45px;
	left: 6px;
	animation-delay: -0.8s;
}
.enliven-loader-square div:nth-child(8) {
	top: 45px;
	left: 26px;
	animation-delay: -1.2s;
}
.enliven-loader-square div:nth-child(9) {
	top: 45px;
	left: 45px;
	animation-delay: -1.6s;
}
@keyframes enliven-loader-square {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.5;
	}
}

.enliven-loader-fixed-spinner {
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.enliven-loader-fixed-spinner div {
	position: absolute;
	width: 5px;
	height: 5px;
	background: #fff;
	border-radius: 50%;
	animation: enliven-loader-fixed-spinner 1.2s linear infinite;
}
.enliven-loader-fixed-spinner div:nth-child(1) {
	animation-delay: 0s;
	top: 29px;
	left: 53px;
}
.enliven-loader-fixed-spinner div:nth-child(2) {
	animation-delay: -0.1s;
	top: 18px;
	left: 50px;
}
.enliven-loader-fixed-spinner div:nth-child(3) {
	animation-delay: -0.2s;
	top: 9px;
	left: 41px;
}
.enliven-loader-fixed-spinner div:nth-child(4) {
	animation-delay: -0.3s;
	top: 6px;
	left: 29px;
}
.enliven-loader-fixed-spinner div:nth-child(5) {
	animation-delay: -0.4s;
	top: 9px;
	left: 18px;
}
.enliven-loader-fixed-spinner div:nth-child(6) {
	animation-delay: -0.5s;
	top: 18px;
	left: 9px;
}
.enliven-loader-fixed-spinner div:nth-child(7) {
	animation-delay: -0.6s;
	top: 29px;
	left: 6px;
}
.enliven-loader-fixed-spinner div:nth-child(8) {
	animation-delay: -0.7s;
	top: 41px;
	left: 9px;
}
.enliven-loader-fixed-spinner div:nth-child(9) {
	animation-delay: -0.8s;
	top: 50px;
	left: 18px;
}
.enliven-loader-fixed-spinner div:nth-child(10) {
	animation-delay: -0.9s;
	top: 53px;
	left: 29px;
}
.enliven-loader-fixed-spinner div:nth-child(11) {
	animation-delay: -1s;
	top: 50px;
	left: 41px;
}
.enliven-loader-fixed-spinner div:nth-child(12) {
	animation-delay: -1.1s;
	top: 41px;
	left: 50px;
}
@keyframes enliven-loader-fixed-spinner {
	0%, 20%, 80%, 100% {
		transform: scale(1);
	}
	50% {
		transform: scale(1.5);
	}
}

.enliven-loader-classic-spinner {
	color: official;
	display: inline-block;
	position: relative;
	width: 64px;
	height: 64px;
}
.enliven-loader-classic-spinner div {
	transform-origin: 32px 32px;
	animation: enliven-loader-classic-spinner 1.2s linear infinite;
	background: #fff;
}
.enliven-loader-classic-spinner div:after {
	content: " ";
	display: block;
	position: absolute;
	top: 3px;
	left: 29px;
	width: 5px;
	height: 14px;
	border-radius: 20%;
	background: inherit;
}
.enliven-loader-classic-spinner div:nth-child(1) {
	transform: rotate(0deg);
	animation-delay: -1.1s;
}
.enliven-loader-classic-spinner div:nth-child(2) {
	transform: rotate(30deg);
	animation-delay: -1s;
}
.enliven-loader-classic-spinner div:nth-child(3) {
	transform: rotate(60deg);
	animation-delay: -0.9s;
}
.enliven-loader-classic-spinner div:nth-child(4) {
	transform: rotate(90deg);
	animation-delay: -0.8s;
}
.enliven-loader-classic-spinner div:nth-child(5) {
	transform: rotate(120deg);
	animation-delay: -0.7s;
}
.enliven-loader-classic-spinner div:nth-child(6) {
	transform: rotate(150deg);
	animation-delay: -0.6s;
}
.enliven-loader-classic-spinner div:nth-child(7) {
	transform: rotate(180deg);
	animation-delay: -0.5s;
}
.enliven-loader-classic-spinner div:nth-child(8) {
	transform: rotate(210deg);
	animation-delay: -0.4s;
}
.enliven-loader-classic-spinner div:nth-child(9) {
	transform: rotate(240deg);
	animation-delay: -0.3s;
}
.enliven-loader-classic-spinner div:nth-child(10) {
	transform: rotate(270deg);
	animation-delay: -0.2s;
}
.enliven-loader-classic-spinner div:nth-child(11) {
	transform: rotate(300deg);
	animation-delay: -0.1s;
}
.enliven-loader-classic-spinner div:nth-child(12) {
	transform: rotate(330deg);
	animation-delay: 0s;
}
@keyframes enliven-loader-classic-spinner {
	0% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

.enliven-morph-huff-out {
	-webkit-animation: enliven-morph-huff-out 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
	        animation: enliven-morph-huff-out 0.2s cubic-bezier(0.165, 0.840, 0.440, 1.000) both;
}

@-webkit-keyframes enliven-morph-huff-out {
	0% {
	  -webkit-transform: scaleX(1);
			  transform: scaleX(1);
	  -webkit-filter: blur(0px);
			  filter: blur(0px);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scaleX(2);
			  transform: scaleX(2);
	  -webkit-filter: blur(2px);
			  filter: blur(2px);
	  opacity: 0.1;
	}
  }
@keyframes enliven-morph-huff-out {
	0% {
	  -webkit-transform: scaleX(1);
			  transform: scaleX(1);
	  -webkit-filter: blur(0px);
			  filter: blur(0px);
	  opacity: 1;
	}
	100% {
	  -webkit-transform: scaleX(2);
			  transform: scaleX(2);
	  -webkit-filter: blur(2px);
			  filter: blur(2px);
	  opacity: 0.1;
	}
  }
  
.enliven-morph-huff-in {
	-webkit-animation: enliven-morph-huff-in 0.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
	        animation: enliven-morph-huff-in 0.2s cubic-bezier(0.470, 0.000, 0.745, 0.715) both;
}

@-webkit-keyframes enliven-morph-huff-in {
	0% {
	  -webkit-transform: scaleX(1.1);
			  transform: scaleX(1.1);
	  -webkit-filter: blur(2px);
			  filter: blur(2px);
	  opacity: 0.1;
	}
	100% {
	  -webkit-transform: scaleX(1);
			  transform: scaleX(1);
	  -webkit-filter: blur(0px);
			  filter: blur(0px);
	  opacity: 1;
	}
  }

@keyframes enliven-morph-huff-in {
	0% {
	  -webkit-transform: scaleX(1.1);
			  transform: scaleX(1.1);
	  -webkit-filter: blur(2px);
			  filter: blur(2px);
	  opacity: 0.1;
	}
	100% {
	  -webkit-transform: scaleX(1);
			  transform: scaleX(1);
	  -webkit-filter: blur(0px);
			  filter: blur(0px);
	  opacity: 1;
	}
  }

.enliven-morph-vibrate-out {
	-webkit-animation: enliven-morph-vibrate-out 0.4s both;
	        animation: enliven-morph-vibrate-out 0.4s both;
}


@-webkit-keyframes enliven-morph-vibrate-out {
	0% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	5% {
	  -webkit-transform: translateZ(-100px);
			  transform: translateZ(-100px);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	15% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	25% {
	  -webkit-transform: translateZ(-110px);
			  transform: translateZ(-110px);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	38% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	52% {
	  -webkit-transform: translateZ(-200px);
			  transform: translateZ(-200px);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	70% {
	  -webkit-transform: translateZ(0) scale(1);
			  transform: translateZ(0) scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	85% {
	  opacity: 1;
	}
	100% {
	  -webkit-transform: translateZ(-900px) scale(0);
			  transform: translateZ(-900px) scale(0);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	  opacity: 0.1;
	}
  }
  @keyframes enliven-morph-vibrate-out {
	0% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	5% {
	  -webkit-transform: translateZ(-100px);
			  transform: translateZ(-100px);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	15% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	25% {
	  -webkit-transform: translateZ(-110px);
			  transform: translateZ(-110px);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	38% {
	  -webkit-transform: translateZ(0);
			  transform: translateZ(0);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	52% {
	  -webkit-transform: translateZ(-200px);
			  transform: translateZ(-200px);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	70% {
	  -webkit-transform: translateZ(0) scale(1);
			  transform: translateZ(0) scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	85% {
	  opacity: 1;
	}
	100% {
	  -webkit-transform: translateZ(-900px) scale(0);
			  transform: translateZ(-900px) scale(0);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	  opacity: 0.1;
	}
  }
  
.enliven-morph-vibrate-in {
	-webkit-animation: enliven-morph-vibrate-in 0.2s both;
	        animation: enliven-morph-vibrate-in 0.2s both;
}

@-webkit-keyframes enliven-morph-vibrate-in {
	0% {
	  -webkit-transform: scale(0);
			  transform: scale(0);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	  opacity: 0.1;
	}
	38% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	  opacity: 1;
	}
	55% {
	  -webkit-transform: scale(0.7);
			  transform: scale(0.7);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	72% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	81% {
	  -webkit-transform: scale(0.84);
			  transform: scale(0.84);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	89% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	95% {
	  -webkit-transform: scale(0.95);
			  transform: scale(0.95);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	100% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
  }
  @keyframes enliven-morph-vibrate-in {
	0% {
	  -webkit-transform: scale(0);
			  transform: scale(0);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	  opacity: 0.1;
	}
	38% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	  opacity: 1;
	}
	55% {
	  -webkit-transform: scale(0.7);
			  transform: scale(0.7);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	72% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	81% {
	  -webkit-transform: scale(0.84);
			  transform: scale(0.84);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	89% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
	95% {
	  -webkit-transform: scale(0.95);
			  transform: scale(0.95);
	  -webkit-animation-timing-function: ease-in;
			  animation-timing-function: ease-in;
	}
	100% {
	  -webkit-transform: scale(1);
			  transform: scale(1);
	  -webkit-animation-timing-function: ease-out;
			  animation-timing-function: ease-out;
	}
  }
  