/* Header_acs. */

.header_acs {
	pointer-events: none;
	position: relative;
	margin-top: 24px;
}

.header_acs_tabs {
	justify-content: center;
	grid-gap: 16px;
}

.header_acs_tab {
	pointer-events: visible;
	display: flex;
	align-items: center;
	grid-gap: 8px;
	padding: 14px 24px 16px;
	border: 2px solid #BFE4F3;
	border-radius: 20px;
	line-height: 1.25;
	cursor: pointer;
	transition: border-color .43s;
}

.header_acs_tab:hover,
.header_acs_tab.active {
	border-color: var(--primary);
}

.header_acs_tab span {
	font-weight: 500;
}

.header_acs_content {
	pointer-events: visible;
	position: absolute;
	top: calc(100% - -2px);
	left: calc(var(--bone_size) * -1);
	right: calc(var(--bone_size) * -1);

	padding: 0 var(--bone_size);
	background-color: var(--bg);
	z-index: 99;
}

.header_acs_content > li {
	overflow: hidden;
	display: none;
}

.header_acs_content_net {
	overflow-y: scroll;
	grid-template-columns: 260px 1fr;
	grid-gap: 20px;
	padding-bottom: 20%;
	margin-top: 60px;
	height: calc(100vh - 28px);
}

.header_acs_content_net::-webkit-scrollbar {
	width: 7px;
}

.header_acs_content_net::-webkit-scrollbar-thumb {
	background-color: #E6E6E6;
	border-radius: 4px;
}

.header_acs_product {
	padding-bottom: 40px;
}

.header_acs_product .product {
	position: sticky;
	top: 0;
}

.header_acs_lists {
	justify-self: end;

	width: 100%;
	max-width: 1180px;
	padding-bottom: 40px;
}

.header_acs_title {
	display: flex;
	align-items: center;

	grid-gap: 20px;

	font-size: 24px;
	font-weight: 700;
	margin-bottom: 28px;
}

.header_acs_title img {
	--size: 36px;

	width: var(--size);
	height: var(--size);
	object-fit: contain;
	object-position: center;
}

.header_acs_roster {
	grid-gap: 68px 40px;
}

.header_acs_caption {
	display: inline-block;

	margin-bottom: 12px;
	font-size: 19px;
	font-weight: 700;
	padding-bottom: 6px;
	border-bottom: 1px solid #D9D9D9;
}

.header_acs_list {
	display: grid;
	grid-gap: 20px;
}

.header_acs_list a {
	transition: color .43s;
}

.header_acs_list a:hover {
	color: var(--primary);
}

.header_acs_more {
	--icon_size: 7px;

	display: inline-flex;
	align-items: center;
	justify-content: flex-start;
	grid-gap: 12px;

	margin-top: 20px;

	transition: color .43s;
}

.header_acs_more:hover {
	color: var(--primary);
}

.header_acs_more:after {
	content: '';

	width: var(--icon_size);
	height: var(--icon_size);
	background-image: url("data:image/svg+xml,%3Csvg width='7' height='11' viewBox='0 0 7 11' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2 9L5.13991 6.25258C5.59524 5.85416 5.59524 5.14583 5.13991 4.74742L2 2' stroke='%230093CD' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

/* Header_acs. */

@media only screen and (min-width: 1031px) {

	/* Header_acs. */

	.header_acs_tab img {
		display: none;
	}

	/* Header_acs. */

}

@media only screen and (max-width: 1100px) {

	/* Header_acs. */

	.header_acs_content {
		padding-right: 0;
	}

	/* Header_acs. */

}

@media only screen and (max-width: 1030px) {

	/* Header_acs. */

	.header_acs {
		margin-top: 0;
	}

	.header_acs_tabs {
		align-items: flex-start;
		flex-direction: column;
		grid-gap: 34px;
	}

	.header_acs_tab {
		display: flex;
		align-items: center;
		grid-gap: 16px;

		padding: 0;
		border: 0 none;
		border-radius: 0;
	}

	.header_acs_tab img {
		width: 23px;
		height: 23px;
		object-fit: contain;
		object-position: center;
	}

	.header_acs_content {
		position: fixed;
		top: 55px;
		left: 0;
		right: 0;
	}

	.header_acs_content_net {
		grid-template-columns: 1fr;

		height: calc(100vh - 55px);
		margin-top: 0;
		padding-top: 26px;
		padding-right: var(--bone_size);
	}

	.header_acs_product {
		display: none;
	}

	.header_acs_roster {
		grid-gap: 20px;
	}

	.header_acs_roster > li:not(:last-child) {
		padding-bottom: 20px;
		border-bottom: 1px solid #EEEEEE;
	}

	.header_acs_caption {
		margin-bottom: 20px;
		padding-bottom: 0;
		border-bottom: 0 none;
	}

	/* Header_acs. */

}