body.idic {
	background: #FFB800;
}

.idic-main-container {
	width: 500px;
	margin: 0 auto;
}



.right-reserved {
	text-align: center;
	color: #fff;
	font-size: 14px;
	position: fixed;
	bottom: 10%;
	left: 50%;
	transform: translateX(-50%);
}

.main-page-img {
	position: fixed;
	width: 50%;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.main-page-search {
	position: relative;
	background: #fff;
	border: 1px solid #666666;
	border-radius: 10px;
	position: fixed;
	width: 50%;
	left: 50%;
	top: 67%;
	transform: translateX(-50%);
}
.main-page-search.on {
	top: 100px;
}
.main-page-search .search-box {
	all: unset;
	width: 100%;
	font-size: 26px;
	padding: 5px 20px;
	font-weight: 400;
	ime-mode: disabled;
}

.main-page-search .btn-search-submit {
	position: absolute;
	right: 0;
	top: 0;
	/* background: red; */
	width: 70px;
	height: 55px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.main-page-search .btn-search-submit svg {
	width: 24px;
	height: 24px;
}

.idic-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #FFB800;
	padding: 10px;
	height: 70px;
	/* overflow: hidden; */
}
.idic-header .idictionary-logo {
	width: 160px;
	flex-shrink: 1;
}

.idic-header .idic-header-search {
	flex-grow: 1;
	margin-left: 20px;
	position: relative;
	/* overflow: hidden; */
	height: 45px;
}
.idic-header .idic-header-search .idic-header-search__box {
	background: #fff;
	border: 1px solid #666666;
	border-radius: 10px;
	width: 100%;
	position: absolute;
	left: 0;
	top: 0;
	z-index: 5;
}
.idic-header .idic-header-search .search-box {
	all: unset;
	font-size: 22px;
	padding: 5px 20px;
	font-weight: 700; 
	width: 900px;
}

.idic-header .idic-header-search .btn-search-submit {
	position: absolute;
	right: 0;
	top: 0;
	/* background: red; */
	width: 70px;
	height: 44px;
	display: flex;
	justify-content: center;
	align-items: center;
}
.idic-header .idic-header-search .btn-search-submit svg {
	width: 24px;
	height: 24px;
}
/* .idic-header .keyword-display {
	position: absolute;
	left: 0;
	top: 100%;
	width: 100%;
} */
.idic-contents-container {
	background: #fff;
	height: calc(100vh - 120px);
	border-top-right-radius: 10px;
	border-top-left-radius: 10px;
	overflow: hidden;
}
.idic-contents-container.on {
	height: calc(100vh - 70px);
}

.search-result-container {
	display: grid;
	grid-template-columns: 50% 50%;
	height: 100%;
}


.search-result-left {
	/* background: #666; */
	overflow-y: scroll;
	padding: 10px;
	border-left: 1px solid #dbdbdb;
	grid-area: 1 / 2;
}
.search-result-right {
	overflow-y: scroll;
	position: relative;
}
.search-result-right .loading-img {
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
}
.search-result-left::-webkit-scrollbar {
	display: none; /* Chrome, Safari, Opera*/
}

.search-result-title {
	color: #FF8400;
	font-weight: 700;
	font-size: 22px;
	margin-bottom: 10px;
}
.search-result-word-list .search-word-date {
	font-weight: 700;
	font-size: 18px;
	color: var(--blue-color2);
	margin-bottom: 5px;
	padding-left: 5px;
}
.search-result-word-list .search-word-list__word  {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 10px;
	padding: 10px;
	border-radius: 10px;
	overflow: hidden;
	border: 1px solid transparent;
	background: transparent;
}
.search-result-word-list .search-word-list__word.on {
	border: 1px solid #96BCFF;
	background: #F0F6FF;
}

.search-result-word-list .word-container {
	display: flex;
	align-items: center;
}
.search-result-word-list .word-container .word-txt a{
	display: flex;
	align-items: center;
}
.search-result-word-list .word-container .word-txt .voca-word {
	font-weight: 900;
	font-size: 28px;
	color: #000;
	margin-bottom: 10px;
	line-height: 1;
	word-break: break-all;
}
.search-result-word-list .word-container .word-txt .voca-sound {
	width: 25px;
	margin-left: 10px;
	flex-shrink: 0;
}
.search-result-word-list .word-container .part-word {
	flex-shrink: 0;
}
.search-result-word-list .word-list-img-list {
	display: flex;
	background: #fafafa;
	border-radius: 4px;
	width: 275px;
	justify-content: flex-start;
	overflow-y: scroll;
	padding-top: 5px;
	padding-bottom: 5px;
	position: relative;
	flex-shrink: 0;
	margin-left: 10px;
}
.search-result-word-list .search-word-list__word.on .word-list-img-list {
	background: #ddebff;
}
.search-result-word-list .word-list-img-list:after,
.search-result-word-list .word-list-img-list:before {
	flex-shrink: 0;
	content: '';
	width: 5px;
	height: 1px;
}
.search-result-word-list .word-list-img-list .snt_no {
	width: 85px;
	height: 85px;
	border: 1px solid #bdbdbd;
	border-radius: 4px;
	overflow: hidden;
	margin-right: 5px;
	flex-shrink: 0;
}
.search-result-word-list .word-list-img-list .snt_no:last-child {
	margin-right: 0;
}
.search-result-word-list .word-list-img-list .snt_no.on {
	border: 1px solid var(--blue-color2);
	box-shadow: 0 0 0 2px var(--blue-color2);
}

.word-detail .word-slider .preview-img-box {
	max-width: 280px;
	margin: 0 auto;
	margin-bottom: 60px;
}


.word-img-slider {
	display: flex;
	align-items: center;
	justify-content: center;
	overflow-x: scroll;
	width: 100%;
	position: relative;
}
.word-img-slider:after,
.word-img-slider:before {
	flex-shrink: 0;
	content: '';
	width: 5px;
	height: 1px;
}
.word-img-slider.line {
	justify-content: flex-start;
}
.word-img-slider > .word-img-slider--item {
	width: 80px;
	margin: 0 2px;
	flex-shrink: 0;
}

.word-img-slider .preview-img {
	margin: 5px 0;
}
.word-img-slider .word-img-slider--item.on .preview-img {
	border: 1px solid var(--blue-color2);
	box-shadow: 0 0 0 2px var(--blue-color2);
}



/* 기존 part-word CSS 수정 */
.part-word > .ipart {
	font-size: 12px;
}

.word-detail {
	padding: 20px 10px 20px;
	position: relative;
}

.word-detail .word__title {
	margin-bottom: 20px;
	width: 90%;
}
.word-detail hr {
	margin: 20px 0;
}
.word-detail .word-definition {
	text-align: center;
	margin-bottom: 20px;
}
.word-detail .btn-my-word {
	position: absolute;
	right: 20px;
	top: 20px;
	width: 30px;
}
.word-detail .btn-my-word.delete svg path {
	fill: #FF8400;
}
/* swiper CSS 수정 */
.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: 20px;
}
.swiper-pagination-bullet {
	transition: all .2s;
}
.swiper-pagination-bullet-active {
	transform: scale(1.5);
	background: var(--blue-color2);
}


.search-error-container {
	max-width: 80%;
	margin: 0 auto;
	padding: 40px;
	text-align: center;
}
.search-error-container .error-msg {
	margin-top: 40px;
	font-size: 32px;
	font-weight: 700;
	color: #FF8400;
	padding-bottom: 40px;
	border-bottom: 1px solid #dbdbdb;
}


/* 최근검색단어리스트 CSS */
.sub-page-title {
	font-size: 22px;
	font-weight: 700;
	text-align: center;
}


.keyword-display {
	display: none;
	padding: 0 20px;
	background: #fafafa;
	max-height: 180px;
	overflow-y: scroll;
	border-bottom-left-radius: 10px;
	border-bottom-right-radius: 10px;
}
.keyword-display .keyword-display-box {
	padding: 7px 0;
}
.keyword-display .keyword-display-box:last-child {
	padding-bottom: 17px;
}



/* 추천단어 */
.r-word-title {
	margin-top: 40px;
	font-size: 22px;
}
.r-word-card-list {
	display: grid;
	grid-template-columns: repeat(5, 120px);
	justify-content: space-around;
	margin-top: 50px;
}
.word-card--rec .img-box {
	border-radius: 4px;
	overflow: hidden;
	border: 1px solid #bdbdbd;
}
.word-card--rec .txt-box {
	font-weight: 700;
	color: #000;
}