body {
	font-family: 'Circe';
	font-optical-sizing: auto;
	font-style: normal;
	font-weight: normal;
	color: #000;
	background: #fff;
	position: relative;
}

.container {
	max-width: 1705px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

header {
	padding: 20px 0;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	background: #fff;
	transition: all .3s;
}

.vysota {
	height: 1000px;
}

.header_cs {
	padding: 10px 0;
	-webkit-box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.2);
	box-shadow: 0px 5px 5px 5px rgba(0, 0, 0, 0.2);
}

.header_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 25px;
}

.logo {
	display: block;
	width: 258px;
	height: 60px;
	background: url(../img/logo.svg) center no-repeat;
}

.header_flex_right_top_flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 0 17px 0;
}

.header_flex_right_top_flex_menu {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
	padding: 2px 37px 2px 0;
	border-right: 1px solid #AEAEAE;
}

.header_flex_right_top_flex_menu p {
	color: #555;
	font-size: 16px;
	line-height: 1em;
	margin: 0;
}

.header_flex_right_top_flex_menu p a {
	color: #555;
	text-decoration: none;
}

.header_flex_right_top_flex_tel {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 15px;
	border-right: 1px solid #AEAEAE;
	padding: 2px 37px 2px 37px;
}

.header_flex_right_top_flex_tel p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	margin: 0;
}

.header_flex_right_top_flex_tel p a {
	color: #000;
	text-decoration: none;
}

.chose_location {
	position: relative;
	padding: 0 0 0 36px;
}

.chose_location_chosed {
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}

.chose_location_chosed_name {
	display: inline-block;
	color: #555;
	font-size: 16px;
	line-height: 1em;
	margin: 0 10px 0 0;
}

.chose_location_chosed_txt {
	width: 98px;
	color: #000;
	font-size: 16px;
	line-height: 1em;
	margin: 0;
	cursor: pointer;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;

}

.chose_location_chosed_txt span {
	display: inline-block;
	max-width: 100%;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	border-bottom: 1px solid #000;
}

.chose_location_list {
	position: absolute;
	top: 30px;
	right: 0;
	width: 265px;
	border-radius: 10px;
	border: 1px solid #959595;
	padding: 20px 10px 5px 0;
	background: #fff;
	overflow: hidden;
	display: none;
	z-index: 99;
}

.chose_location_list_in {
	max-height: 205px;
	overflow-y: scroll;
	background: #fff;
	padding: 0 25px 15px 25px;

}

.chose_location_list_in p {
	color: #959595;
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2em;
	margin: 0 0 20px 0;
	position: relative;
	cursor: pointer;
	transition: all .3s;
}

.chose_location_list_in p:hover {
	color: #161616;
}

.chose_location_list_in p:last-child {
	margin: 0;
}

.chose_location_list_in p.chose_location_list_in_selected {
	color: #D34D01;
}

p.chose_location_list_in_selected::after {
	content: "";
	display: inline-block;
	width: 12px;
	height: 8px;
	box-sizing: border-box;
	position: absolute;
	top: 3px;
	right: 0;
}

.chose_location_list_in::-webkit-scrollbar {
	width: 4px;
}

.chose_location_list_in::-webkit-scrollbar-track {
	background: transparent;
}

.chose_location_list_in::-webkit-scrollbar-thumb {
	background: #959595;
	border-radius: 2px;
}

.chose_location_list_in::-webkit-scrollbar-thumb:hover {
	background: #F0F0F0;
}

.header_flex_right_bot {
	margin: 0 0 20px 0;
}

.header_flex_right_bot_flex {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

.form_search {
	width: 50%;
}

.form_search_inpt {
	display: flex;
	justify-content: flex-start;
	align-items: center;
}

.form_search_inpt input {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	height: 60px;
	padding: 5px 20px;
	font-family: 'Circe';
	font-size: 16px;
	color: #555;
	border-radius: 10px 0px 0px 10px;
	border-left: 1px solid #AEAEAE;
	border-top: 1px solid #AEAEAE;
	border-bottom: 1px solid #AEAEAE;
	border-right: none;
}

.form_search_inpt input::placeholder {
	color: #555;
}

.btn_search {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	padding: 0;
	border: 1px solid #D34D01;
	border-radius: 10px;
	background: #D34D01;
	border: none;
	flex-shrink: 0;
	margin: 0 0 0 -10px;
}

.btn_search span {
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url(../img/btn_search_ic.svg) center no-repeat;
}

.analog_btn {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 262px;
	height: 60px;
	border-radius: 10px;
	background: #D34D01;
	padding: 0 10px;
	font-family: 'Circe';
	font-weight: 400;
	color: #FFF;
	font-size: 16px;
	font-weight: 400;
	line-height: 1em;
	text-transform: uppercase;
	border: 1px solid #D34D01;
}

.analog_btn p {
	margin: 0 16px 0 0;
}

.analog_btn>span {
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url(../img/analog_btn_ic.svg) center no-repeat;
	flex-shrink: 0;
	margin: -6px 0 0 0;
}

.btn_login {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-shrink: 0;
}

.btn_login_ic {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid #AEAEAE;
	border-radius: 50%;
	flex-shrink: 0;
	margin: 0 10px 0 0;
}

.btn_login_ic span {
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url(../img/btn_login_ic.svg) center no-repeat;
}

.btn_login_txt p {
	color: #555;
	font-size: 16px;
	line-height: 1em;
	margin: 0;
}





.btn_corzin {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-shrink: 0;
}

.btn_corzin_ic {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 60px;
	height: 60px;
	border: 1px solid #AEAEAE;
	border-radius: 50%;
	flex-shrink: 0;
	margin: 0 10px 0 0;
	position: relative;
}

.btn_corzin_ic span {
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url(../img/btn_corzin_ic.svg) center no-repeat;
}

.btn_corzin_ic p {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	font-size: 12px;
	color: #fff;
	background: #D34D01;
	margin: 0;
	position: absolute;
	top: 0;
	right: 0;
}

.btn_corzin_txt span {
	color: #555;
	font-size: 16px;
	line-height: 1em;
	margin: 0;
}

.btn_corzin_txt p {
	color: #000;
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	margin: 0;
}

.header_flex_right_bottom {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 25px;
}

.header_flex_right_bottom p {
	font-size: 16px;
	font-weight: 700;
	line-height: 1em;
	margin: 0;
}

.header_flex_right_bottom p a {
	color: #000;
	text-decoration: none;
}

.btn_for_menu {
	display: none;
	width: 50px;
	height: 50px;
	background: #D34D01;
	border-radius: 50%;
	flex-shrink: 0;
	margin: 0 10px 0 0;
	position: relative;
}

.for_cal_mob {
	display: none;
}

.btn_for_menu span {
	display: inline-block;
	width: 20px;
	height: 1px;
	background: #fff;
	border-radius: 10px;
	position: absolute;
	top: 50%;
	left: 15px;
	margin: -1px 0 0 0;
}

.btn_for_menu span::before,
.btn_for_menu span::after {
	content: "";
	display: inline-block;
	box-sizing: border-box;
	width: 100%;
	height: 1px;
	background: #fff;
	border-radius: 10px;
	position: absolute;
	left: 0;
	transition: all .3s;
}

.btn_for_menu span::before {
	top: -5px;
}

.btn_for_menu span::after {
	bottom: -5px;
}

.for_mobile_menu {
	display: none;
}