/* Bar. */

.bar {
	margin-right: 16px;
}

.bar_burger {
	display: flex;
	flex-direction: column;
	justify-content: space-between;

	width: 21px;
	height: 8px;
	cursor: pointer;
}

.bar_burger span {
	width: 100%;
	height: 2px;
	background-color: var(--primary);
}

.bar_burger span:last-child {
	max-width: 14px;
}

.bar_wrapper {
	--inner: 24px;

	overflow: hidden;
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;

	max-height: calc(100vh);
	background-color: var(--bg);
	z-index: 99;
}

.bar_net {
	flex-direction: column;
	align-items: stretch;
	overflow-y: scroll;

	width: calc(100% + 40px);
	height: 100vh;
	max-height: 100vh;
	margin-right: -40px;
	padding: 0 calc(40px - var(--scroll)) 20px 0;
}

.bar_center {
	flex-grow: 1;
}

.bar_top {
	position: sticky;
	top: 0;

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

.bar_top_net {
	width: 100%;
	min-height: 55px;
	padding: 0 var(--inner);
	border-bottom: 1px solid #EEEEEE;
}

.bar_logo {
	max-width: 120px;
}

.bar_back {
	display: none;
	align-items: center;

	min-height: 55px;
	padding: 0 var(--inner) 0 calc(var(--inner) + 20px);
	background-image: url("data:image/svg+xml,%3Csvg width='10' height='17' viewBox='0 0 10 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M8 2L2 8.5L8 15' stroke='%230093CD' stroke-width='2' stroke-linecap='square'/%3E%3C/svg%3E%0A");
	background-position: var(--inner) center;
	background-repeat: no-repeat;
	background-size: 13px;
	border-bottom: 1px solid #EEEEEE;
}

.bar_section {
	padding: 28px var(--inner);
}

.bar_section:not(:last-child) {
	border-bottom: 20px solid #F7F7F7;
}

.bar_section:last-child {
	padding-bottom: 60px;
}

.bar_section_net {
	margin-bottom: 32px;
}

.bar_sing {
	--color: var(--primary);

	grid-gap: 30px;

	font-size: 15px;
	font-weight: 500;
}

.bar_close {
	width: 15px;
	height: 15px;
}

.bar_nav {
	margin-bottom: 20px;
	padding-bottom: 20px;
	border-bottom: 1px solid #eee;
}

.bar_nav ul {
	display: grid;
	grid-gap: 32px;
}

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

	width: 100%;
}

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

.bar_nav span {
	color: #ED6D30;
	font-weight: 700;
}

.bar_info {
	display: grid;
	grid-gap: 30px;
}

.bar_info p span {
	color: var(--gray);
}

.bar .header_bar_lang a:not(.active) {
	color: #666666;
}

/* Bar. */

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

	/* Bar. */

	.bar,
	.bar_wrapper {
		display: none !important;
	}

	/* Bar. */

}

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

	/* Bar. */

	.bar {
		margin-right: 0;
	}

	/* Bar. */

}