header{
	display: none;
}

@media(min-width: 1120px){
	header{
		display: block;
		width: 1120px;
		margin: 0 auto;
		display: flex;
	}

	.header_logo{
		width: 170px;
		height: 107px;
		background: url(/static/img/logo.svg) center -30px/258px no-repeat;
	}

	.header_support_wrap{
		display: flex;
		width: 160px;
		margin: 35px 0 0 400px;
	}

	.header_support_icon{
		width: 22px;
		height: 22px;
		background: url(/static/img/header/tel.svg) center/auto no-repeat;
	}

	.header_support_text_block{
		margin-left: auto;
	}

	.header_support_tel{
		font-size: 16px;
		line-height: 22px;
	}

	.header_support_text{
		font-size: 12px;
		line-height: 15px;
		color: #A9A9A9;
		margin-top: 7px;
	}

	.header_del{
		width: 1px;
		height: 90px;
		background: #A9A9A9;
		margin: 7px 0 0 125px;
	}

	.header_user_wrap{
		width: 90px;
		height: 50px;
		margin: 27px 0 0 24px;
		display: flex;
		align-items: center;
		position: relative;
	}

	.header_user_avatar{
		width: 50px;
		height: 50px;
		border-radius: 50%;
		background: url(/static/img/header/default_user.svg) center/auto no-repeat;
		border: 1px solid #A9A9A9;
	}

	.header_user_expander{
		width: 22px;
		height: 13px;
		background: url(/static/img/header/expander.svg) center/auto no-repeat;
		margin-left: auto;
		transition: transform 0.3s;
	}

	.header_user_wrap[expand="1"] .header_user_expander{
		transform: rotate(180deg);
	}

	.header_user_menu_wrap{
		position: absolute;
		left: -23px;
		top: 61px;
		overflow: hidden;
		height: 0;
		width: 136px;
		z-index: 4;
		transition: height 0.3s;
	}

	.header_user_menu_button{
		width: 100%;
		height: 58px;
		border-radius: 5px;
		background: white;
		border: 1px solid #D5D5D5;
		box-shadow: 0px 3px 5px rgb(0 0 0 / 12%);
		display: flex;
		align-items: center;
		justify-content: center;
		font-family: 'MontserratMedium';
	}

	.header_user_menu_button:hover{
		background: #f3f3f3;
	}


}