/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v7.0.29,
* Autoprefixer: v9.7.6
* Browsers: last 4 version
*/

.header-index {
	background-color: white;
	padding: 38px 0px;
	-webkit-box-shadow: 0 0 5px rgba(0,0,0,0.5);
	        box-shadow: 0 0 5px rgba(0,0,0,0.5);
}

.header-index .index-list {
	margin-top: 30px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header-index .index-list .letter-link {
	border: none;
	padding: 6px 11px;
	border: 1px solid white;
	border-radius: 100%;
	color: #4b5259;
	font-weight: 600;
}

.header-index .index-list .letter-link:hover {
	color: #009596;
	border: 1px solid #e6e6e6;
	text-decoration: none;
}

.header-index .index-list .index-separator {
	margin-left: 20px;
	margin-right: 20px;
	width: 1px;
	background-color: #e6e6e6;
	height: 40px;
}

.header-index .page-title {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.header-index .page-title input {
	width: 230px;
}

.index-container {
	margin-top: 40px;
}

.index-container .index-item {
	background-color: white;
	border-radius: 5px;
	-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
	        box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
	position: relative;
	margin-bottom: 20px;
}

.index-container .index-item .accordion {
	color: #4b5259;
	font-size: 20px;
	font-weight: 600;
	border-bottom: 1px solid #f3f3f3;
}

.index-container .index-item .accordion.active {
	color: #009596;
}

.index-container .index-item .accordion::after {
	border-radius: 3px;
	background-color: #009596;
    color: white;
    padding: 12px 15px;
}

.index-container .index-item .accordion.active::after {
	background-color: #e9e9e9;
	color: #009596;
}

.index-container .index-item .accordion-panel {
	padding: 35px 25px;
}



.index-container .index-item .accordion-panel .link-list a {
	color: #4b5259;
}

.index-container .index-item .accordion-panel .link-list a:hover {
	color: #009596;
}

.search-field {
	position: relative;
}

.search-field span {
    position: absolute;
	right: 10px;
	color: #009596;
	font-size: 20px;
	top: 14px;
}