.search-box {
	display: flex;
	justify-content: flex-end;
	align-items: center;
	margin-bottom: 10px;
}

 .widget_bks_widget {
	max-width: 900px;
	margin-left: auto !important;
	margin-right: auto !important;
}

@media only screen and (max-width: 600px) {
	.search-box {
		flex-direction: column-reverse;
	}
}


.search-box .search-input {
	display: flex;
	align-items: center;
	position: relative;
}

.search-box .search-input .error-msg {
	position: absolute;
	left: 5px;
	color: red;
	font-weight: bold;
	z-index: -1;
}

@media only screen and (max-width: 600px) {
	.search-box .search-input {
		margin-bottom: 6px;
	}
}

.search-box input {
	width: 200px;
	color: #666;
	font-size: 14px;
	line-height: 1.42857143;
	height: 34px;
	padding: 3px;
	background-color: #fff;
	border: 1px solid #E8E8E8;
	-webkit-border-radius: 0;
	-moz-border-radius: 0;
	border-radius: 0;
	-webkit-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-moz-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-ms-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	-o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
	transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

.search-box input:focus {
	border-color: #66afe9;
	outline: 0;
	-webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	-moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
	box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
}

.search-box input.failed {
	border: 1px solid red;
	background-color: rgba(255, 0, 0, 0.12);
	border-right: none;
}

.search-box input.failed.short {
	color: transparent;
}

.search-box .max-count {
	flex: 1;
	color: #1FA67A;
	font-size: 28px;
	font-weight: bold;
}

@media only screen and (max-width: 720px) {
	.search-box .max-count {
		font-size: 21px;
	}
}

@media only screen and (max-width: 650px) {
	.search-box .max-count {
		font-size: 20px;
	}
}

.search-box #book-search-btn {
	background-color: #1FA67A;
	border-color: #1FA67A;
	display: inline-block;
	padding: 6px 12px;
	margin-bottom: 0;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.42857143;
	text-align: center;
	white-space: nowrap;
	vertical-align: middle;
	-ms-touch-action: manipulation;
	touch-action: manipulation;
	cursor: pointer;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	background-image: none;
	border: 1px solid transparent;
	-webkit-border-radius: 0 4px 4px 0;
	-moz-border-radius: 0 4px 4px 0;
	border-radius: 0 4px 4px 0;
}

.search-box #book-search-btn:after {
	content: '\f002';
	color: #fff;
	font-weight: 700;
	font-family: 'Font Awesome\ 5 Free';
}

.search-box #book-search-btn.locked {
	pointer-events: none;
}

#accordion {
	display: flex;
	flex-direction: column;
}

#accordion .panel {
	-webkit-box-shadow: none;
	-moz-box-shadow: none;
	box-shadow: none;
	border: none;
	margin-top: 5px;
}

#accordion .panel.active .panel-heading a:after {
	content: '\2212';
}

#accordion .panel-heading {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #000;
	padding: 10px 15px;
	margin: 0;
	background-color: #f5f5f5;
	border: 1px solid #ddd;
	border-top-left-radius: 3px;
	border-top-right-radius: 3px;
	cursor: pointer;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
	transition: all .3s;
}

#accordion .panel-heading a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	color: #333;
	font-weight: bold;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
}

@media only screen and (max-width: 600px) {
	#accordion .panel-heading a {
		align-items: flex-start;
		flex-direction: column;
	}
}

#accordion .panel-heading a:hover {
	color: #1FA67A;
}

#accordion .panel-heading a:hover, #accordion .panel-heading a:focus {
	text-decoration: none;
}

#accordion .panel-heading a:after {
	content: '\002B';
	color: #333;
	font-size: 26px;
	font-weight: normal;
	position: absolute;
	right: 10px;
}

#accordion .panel-heading a h4 {
	width: 170px;
}

@media only screen and (max-width: 600px) {
	#accordion .panel-heading a h4 {
		width: 100%;
	}
}

#accordion .panel-heading .count {
	flex: 1;
	display: inline-block;
	width: 215px;
	color: #0f6dbf;
	font-weight: normal;
}

@media only screen and (max-width: 600px) {
	#accordion .panel-heading .count {
		width: 100%;
	}
}

#accordion .panel .panel-body {
	margin-bottom: 1px;
	border-left: 1px solid #ebebeb;
	border-right: 1px solid #ebebeb;
	border-bottom: 1px solid #ebebeb;
}

#accordion .panel ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

#accordion .panel ul > li {
	display: flex;
	color: #6B6B6B;
	cursor: pointer;
	flex-direction: column;
}

#accordion .panel ul > li:not(:last-child) {
	margin-bottom: 6px;
}

#accordion .panel ul > li > ul {
	margin-left: 26px;
}

@media only screen and (max-width: 600px) {
	#accordion .panel ul > li > ul {
		margin-left: 0;
	}
}

#accordion .panel ul > li > ul li {
	display: none;
	color: #0f6dbf;
}

#accordion .panel ul > li > ul li.show {
	display: block;
}

#accordion .panel span {
	display: flex;
}

@media only screen and (max-width: 600px) {
	#accordion .panel span {
		flex-direction: column;
	}
}

#accordion .panel span span {
	display: inline-block;
	order: 0;
}

#accordion .panel span p {
	color: #0f6dbf;
	-webkit-transition: color .3s;
	-moz-transition: color .3s;
	-ms-transition: color .3s;
	-o-transition: color .3s;
	transition: color .3s;
	margin: 0 0 0 5px;
}

@media only screen and (max-width: 600px) {
	#accordion .panel span p {
		margin: 0;
	}
}

#accordion .panel span p:hover {
	color: #1FA67A;
}

#accordion .panel span i {
	margin-left: 5px;
}


