.nav_icon {
	display: grid;
	list-style: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: -7px;
	grid-template-columns: repeat(3, 1fr);
	height: 60px;
	z-index: 100000;
	width: 100%;
	max-width: 640px;
	margin: 0 auto 0 auto;
	text-align: center;
}

.nav_icon li {
	width: 100%;
	margin: 0 auto 7px auto;
	display: flex;
	justify-content: center;
	align-items: center;
}

.nav_icon li img{
	width: 80%;
	margin: 0 auto 0 auto;
	text-align: center;
}

.nav_icon li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	height: auto;
}

.nav_icon li:nth-child(1) {
background: #81cffa;
}

.nav_icon li:nth-child(2) {
background: #f0b7b8;
}

.nav_icon li:nth-child(3) {
background: #21ba4e;
}

.nav_icon li .nav_icon_pop{
	position: absolute;
	transform: translateX(-50%);
	transform-origin: bottom;
	left: 50%;
	bottom: 80%;
	width: 90%;
}

.nav_icon li .nav_icon_pop img{
	width: 95%;
}

.copy {}