@charset "utf-8";

.info_view {
	width: 100%;
	position: fixed;
    display: flex;
    flex-flow: column;
    padding: 12px;
	padding-bottom: 30px;
    height: 100%;
    overflow: hidden;
    top: 270px;
}

.view_title {
	position: relative;
	display: flex;
    align-items: center;
    justify-content: space-between;
	border-bottom: 2px solid #C5C5C5;
	padding: 4px 5px 14px 13px;
	/* margin-bottom: 18px; */
}

.view_title:after {
	position: absolute;
	content: '';
	width: 120px;
	height: 2px;
	bottom: -2px;
	left: 0px;
	background: #3D3D3D;
}

.view_title > h4 {
	font-size: 17px;
	line-height: 1.5;
}

.view_title > div {
    display: flex;
}

.view_con > * {
	padding: 0 13px;
	font-size: 15px;
	color: #2E2E2E;
	font-family: "NotoSansKR-Light";
	letter-spacing: -0.45px;
	line-height: 22px;
	text-align: justify;
	margin-bottom: 20px;
}

.view_contents {
	overflow-y: auto;
    height: calc(100% - 309px);
    padding-top: 18px;
}

.view_con {
	margin-bottom: 25px;
}

.view_con >  p:not(:last-child) {
	margin-bottom: 10px;
}

.view_list {
	padding: 0 13px;
	margin-bottom: 40px;
}

.view_list li:not(:last-child) {
	margin-bottom: 10px;
}

.view_list li a {
	display: flex;
	flex-flow: row nowrap;
	width: 100%;	
	background: #F3F9FE;
	box-shadow: 0px 3px 0px #00000005;
	border: 1px solid #0000000F;
	border-radius: 5px;	
	line-height: 23px;
	justify-content: space-between;
	padding: 8px 7px 10px 15px;
}

.view_list li a:hover {
	border: 1px solid #a6c1d8;
	box-shadow: 0px 0px 0px #00000005;
}

.view_list li a > h3 {
	font-family: "NotoSansKR-Regular";
	font-weight: normal;
	font-size: 15px;
	letter-spacing: -0.75px;
	padding: 0px;
	margin: 0px;
	color: #404C6D;	
}

.view_list li a > span {
	display: inline-flex;
	width: 26px;
	height: 26px;
	background: #FFF;
	border: 1px solid #E5EAEF;
	border-radius: 4px;
	align-items: center;
    justify-content: center;
}

.view_list li a > span img {
	display: block;
	width: 6px;
}

.view_list li a:hover > span {
	background: #90ccff;
}

.view_list li a:hover > span img {
	filter: brightness(0);
}

.view_navi {
	/* display: flex;
	flex-flow: row nowrap;
	justify-content: space-between; */
	margin-bottom: 40px;
	padding: 0 3px;
}

.view_navi > a {
	position: relative;
	width: auto;
	padding: 0 15px;
	font-size: 13px;
	line-height: 25px;
	font-family: "NotoSansKR-Light";
	font-weight: normal;
	border: 1px solid #DFDFDF;
	background: #FFF;
	color: #707070;
	border-radius: 20px;
}

.view_navi > a:hover {
	color: #000;
	border-color: #666;
}

.view_navi > a.prev {
	padding-left: 25px;
	/* text-align: left; */
	float: left;
}

.view_navi > a.next {
	padding-right: 25px;
	/* text-align: right; */
	float: right;
	/* clear: both; */
}
.view_navi > a:after {
	position: absolute;
	content: '';
	width: 5px;
	height: 9px;
	top: 50%;
	transform: translateY(-50%);	
}
.view_navi > a.prev:after {
	background: url(/assets/image/icon_prev.svg) no-repeat;
	background-size: 100%;
	left: 10px;
}
.view_navi > a.next:after {
	background: url(/assets/image/icon_next.svg) no-repeat;
	background-size: 100%;
	right: 10px;
}


/* 곤충백과사전 view */
.docent_wrap .view_contents .insect_info ul li{
    width: 100%;
    display: flex;
	border-bottom: 1px solid #E8E8E8;
	padding: 12px 0;
}
.docent_wrap .view_contents .insect_info ul li:last-child{
    border-bottom: none;
	margin-bottom: 20px;
}
.docent_wrap .view_contents .insect_info ul li span{
    width: 50px;
    display: inline-block;
    color: violet;
	text-align: justify;
	font: 15px 'NotoSansKR-Medium';
	margin-right: 13px;
	color: #3E5BB2;
	/* letter-spacing: -3px; */
}
/* 양쪽정렬을 위해 */
/* .docent_wrap .view_contents .insect_info ul li span::after{
	content: '';
	display: inline-block;
	width: 100%;
}
.docent_wrap .view_contents .insect_info ul li span::before{
	content: '';
	display: inline-block;
	width: 100%;
} */

.docent_wrap .view_contents .insect_info ul li p{
    width: calc(100% - 63px);
	font: 15px 'NotoSansKR-Light';
}