@font-face {
	font-family: 'Filson Soft';
	src: url('../assets/fonts/filson-soft/FilsonSoft-Bold.woff2') format('woff2'),
		url('../assets/fonts/filson-soft/FilsonSoft-Bold.woff') format('woff'),
		url('../assets/fonts/filson-soft/FilsonSoft-Bold.ttf') format('truetype');
	font-weight: 700;
	font-style: normal;
}

@font-face {
	font-family: 'Filson Soft';
	src: url('../assets/fonts/filson-soft/FilsonSoftRegular.woff2') format('woff2'),
		url('../assets/fonts/filson-soft/FilsonSoftRegular.woff') format('woff'),
		url('../assets/fonts/filson-soft/FilsonSoftRegular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

body {
	font-family: 'Filson Soft', sans-serif;
}

#elm-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0,0,0,0.5);
	z-index: 10;
	display: none;
}

.elm-overlay-frame {
	position: relative;
	display: block;
	width: 100%;
	max-width: 280px;
	margin: 20px auto;
}

.elm-overlay-backdrop {
	position: absolute;
	display: block;
	width: 100%;
	height: 100%;
}

.elm-overlay-modal {
	position: relative;
	display: block;
	width: 100%;
	background: #fff;
	color: #6E6259;
	border-radius: 10px;
	padding: 20px 20px 20px 20px;
	box-sizing: border-box;
	line-height: 1.3;
}

.elm-overlay-modal-close {
	position: absolute;
	top: 0;
	right: 0;
	width: 40px;
	height: 40px;
	background: #FF5C38;
	border-radius: 50%;
	margin-top: -10px;
	margin-right: -10px;
	transform: rotate(45deg);
}

.elm-overlay-modal-close::before,
.elm-overlay-modal-close::after {
	content: "";
	width: 50%;
	height: 4px;
	position: absolute;
	top: 50%;
	left: 25%;
	margin-top: -2px;
	background: #fff;
}

.elm-overlay-modal-close::after {
	transform: rotate(90deg);
}

.elm-overlay-modal-title {
	font-weight: 700;
	font-size: 17px;
	padding-right: 10px;
}

.elm-overlay-modal-content {
	font-size: 15px;
	margin-top: 10px;
}

.elm-overlay-modal-content img {
	display: block;
	width: 100%;
	max-width: 180px;
	margin: 0 auto;
}

#elm-trigger-animation {
	position: fixed;
	bottom: 30px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 10;
}

#elm-trigger-animation .button {
	position: relative;
	display: inline-block;
	background: #FF5C38;
	color: #fff;
	padding: 14px 20px;
	font-size: 20px;
	border-radius: 10px;
	min-width: 180px;
	box-sizing: border-box;
	text-align: center;
	border: 3px solid #FF5C38;
}

#elm-trigger-animation .button.button-close {
	display: none;
	background: #fff;
	border-color: #FF5C38;
	color: #FF5C38;
}

#elm-trigger-animation.open .button.button-open {
	display: none;
}

#elm-trigger-animation.open .button.button-close {
	display: inline-block;
}

.a-canvas {
	z-index: 0;
}