.header {
	position: fixed;
	z-index: 20;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	box-sizing: border-box;
	padding: .1rem 0;
	height: var(--header-height);
	background-color: #32424A;
	font-size: 1.5rem;
/*	font-size: 1.1rem;*/
}
.header_logo {
	display: flex;
	justify-content: space-around;
	align-items: center;
	cursor: pointer;
}
.header_logo_svg {
	height: 1.75rem;
/*	margin-right: .5rem;*/
	margin-left: 1rem;
}
.header_logo_title {
	margin: 0 1rem;
	color: #DBE3E6;
}
.header_input {
	display: flex;
	align-items: center;
	margin: 0 .5rem;
}
.header_input input {
	width: 15rem;
	padding: .1rem .5rem;
	border-radius: .1rem;
	border: none;
	outline: none;
	background: #DBE3E6;
	color: #32424A;
	line-height: 1.5;
	font-size: 1.2rem;
	font-weight: 700;
	letter-spacing: .5px;
}
::-webkit-search-cancel-button {
	color: #80CBC4;
}
.header_input input::placeholder {
	font-style: italic;
	letter-spacing: normal;
}

.header_click {
	flex-grow: 1;
	padding: .25rem .5rem;
}


.header_btns {
	display: flex;
	justify-content: end;
	align-items: center;
}
.header_btn {
	margin: 0 2rem;
	color: #80CBC4;
	font-size: 1.8rem;
	padding: 0 .5rem;
	background-color: transparent;
	border: none;
	outline: none;
}
.save_btn {
	display: none;
}

/*@media screen and (max-width: 1200px) {
	.header_click {
		display: flex;
		justify-content: end;
	}
	.header_click button {
		display: flex;
	}
	.header_upload,
	.header_btns {
		display: none;
	}
}*/