/*------------------------

	ナビゲーションバー

--------------------------*/
.header-status-container {
	display: flex;
}

.sidebar-overlay {
	display: none;
}

@media screen and (max-width:1024px) {	
	.info-btn {
		width: 14px!important;
		height: 14px!important;
	}

  .flex-row {
    display: flex!important;
	}

	.sidebar-reverse {
		flex-direction: row !important;
	}

	.sidebar-overlay {
		display: block;
		position: fixed;
		top: 68px;
		right: 0;
		bottom: 0;
		left: 0;
		background: rgba(0, 0, 0, 0.35);
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.2s ease;
		z-index: 1050;
	}

	.sidebar-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	body.sidebar-open {
		overflow: hidden;
	}
}

@media screen and (max-width:599px) {
	.header-status-container {
		flex-direction: column;
	}
}
