.nav_serch_comics_icon svg{
	display: block;
	fill: #565757;
}
.nav_serch_comics_icon svg:hover {
	fill: #ff28a5;
	cursor: pointer;	
}

#comics_search_modal {
	position: fixed;
	top: 0;
	width: 100%;
	height: 100vw;
	background: rgb(0 0 0 / 75%);
	z-index: 999;
	display: flex;
	align-items: flex-start	;
	justify-content: center;
}

#comics_search_modal .search_modal_inner {
	margin: 2em auto;
	padding-top: 2em;
	font-size: 16px;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
	width: 90%;
	max-width: 760px;
	height: calc( 100% - 4em );
}

#comics_search_modal .search_modal_input_area {
	display: flex;
	flex-direction: row;
  align-items: center;
	width: 100%;
	height: 35px;
}

#comics_search_modal .search_modal_inner svg {
	display: block;
	fill: #fff;
	height: 1.5em;
}

#comics_search_modal .search_modal_input {
	border-bottom: 1px solid #fff;
  display: flex;
  align-items: center;
  margin-right: 1em;
	width: 100%;
}

#comics_search_modal .search_modal_input input {
	font-size: 1em;
  border: none;
	outline: none;
  padding: 0.5em;
  background: none;
  color: inherit;
	width: 100%;
}

#comics_search_modal .search_modal_result {
	margin-top: 1em;
	width: 100%;
	height: calc( 100% - 35px - 2em );
}
#comics_search_modal .search_modal_result ul {
	background: #fff;
	max-height: 100%;
	overflow-y: scroll;
}
#comics_search_modal .search_modal_result ul li {
	color: #000;
	padding: 0.5em 1em;
	transition: .25s;
}
#comics_search_modal .search_modal_result ul li:hover {
	background: #000;
	color: #fff;
	transition: .25s;
	cursor: pointer;
}
#comics_search_modal .search_modal_result ul li a {
	color: inherit;
	text-decoration: none;
}

@media screen and (min-width: 1px) and (max-width: 767px) {
	.nav_serch_comics_icon {
		margin-right: 4%;
	}
}