
.circle{animation: circle 10s linear infinite;}@keyframes circle {0% {transform: rotate(0deg);}100% {transform: rotate(360deg);}}

.fadeIn{animation: fade_in 0.5s linear forwards;} @keyframes fade_in {0%{opacity:0;} 100%{opacity:1}}

.fadeOut{animation: fade_out 0.5s linear forwards;} @keyframes fade_out {0%{opacity:1;} 100%{opacity:0}}

.bop {animation: bop 1s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards infinite alternate;}@keyframes bop {0%{transform: scale(0.9);} 50%,100%{transform: scale(1);}}

@keyframes typing{from { width: 100%;}to { width: 0;}}

@keyframes cursor{50% { border-color: #d7b94c;}}

@keyframes attentionFadeIn
{
	from {opacity: 0;}
	to {opacity: 1;}
}

.attention{
	position: fixed;
	display: block;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 100;
	overflow-x: hidden;
	background-color: rgba(0,0,0,.75);
	opacity: 1;
	transition: opacity 250ms 250ms ease;
	animation:attentionFadeIn 0.5s ease-in-out;
	
}

.attention-wrap {
	position: relative;
	display: block;
	width: 100%;
	max-width: 400px;
	margin: 0 auto;
	margin-top: 20px;
	margin-bottom: 20px;
	border-radius: 4px;
	overflow: hidden;
	padding-bottom: 20px;
	background-color: #fff;
	-ms-flex-item-align: center;
	align-self: center;
	box-shadow: 0 12px 25px 0 rgba(199,175,189,.25);
	opacity: 1;
	transition: opacity 250ms 250ms ease, transform 300ms 250ms ease;
}
.attention-wrap img {
	display: block;
	width: 100%;
	height: auto;
}
.attention-wrap p {
	padding: 20px 30px 0 30px;
	font-size:20px;
	user-select:none;
}
