.headerPhonesDD__openerBtn {
	-webkit-touch-callout: none;
	user-select: none;
	/* stylelint-disable-line */
	outline: 0;
}

.headerPhonesDD__openerBtn:focus {
	outline: none;
}

/* ================== START header top ================== */
.headerTopContainer {
	background: #F6FBFD;
}

.headerTop {
	min-height: 40px;
	align-items: center;
	justify-content: space-between;
	/*padding: 0 20px;*/
	max-width: 1920px;
	margin: 0 auto;
}

@media (min-width: 992px) {
	.headerTop {
		display: flex;
	}
}

@media screen and (max-width: 991px) {
	.headerTop {
		display: none;
	}
}

.headerTop__topMenuLink {
	color: #1C2938;
	border-top: 1px solid transparent;
	border-bottom: 1px solid transparent;
	font-size: 14px;
}

.headerTop__topMenuLink:hover {
	color: #2E477D;
	border-bottom-color: #2E477D;
}

.headerTop__topMenuLink + .headerTop__topMenuLink {
	margin-left: 30px;
}

/* ================== END header top ================== */
/* ================== START header Phones DD ================== */
.headerPhonesDD {
	position: relative;
}

.headerPhonesDD__openerBtn {
	display: flex;
	align-items: center;
	cursor: pointer;
	padding: 6px 0;
}

.headerPhonesDD__openerBtnIconPhone {
	height: 14px;
	width: 14px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.headerPhonesDD__openerBtnIconPhone svg {
	height: 100%;
	width: 100%;
}

.headerPhonesDD__openerBtnIconPhone + .headerPhonesDD__openerBtnPhoneText {
	margin-left: 10px;
}

.headerPhonesDD__openerBtnPhoneText {
	font-size: 14px;
	color: #1C2938;
}

.headerPhonesDD__openerBtnPhoneText + .headerPhonesDD__openerBtnIconChevronDown {
	margin-left: 10px;
}

.headerPhonesDD__openerBtnIconChevronDown {
	background: #CAE1EA;
	border-radius: 4px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 16px;
	width: 16px;
}

.headerPhonesDD__openerBtnIconChevronDown svg {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 7px;
	width: 7px;
	color: #2E477D;
}

.headerPhonesDD__content {
	opacity: 0;
	transition: opacity 150ms linear;
	max-height: 0;
	overflow: hidden;
}

[data-dd-opened] .headerPhonesDD__content {
	opacity: 1;
	max-height: 500px;
	position: absolute;
	top: 100%;
	z-index: 1;
	padding-left: 16px;
}

.headerPhonesDD__phonesList {
	display: flex;
	flex-direction: column;
	background: #F6FBFD;
	border-radius: 0 0 2px 2px;
}

.headerPhonesDD__phonesListItem {
	text-decoration: none;
	padding: 8px 10px 2px 8px;
}

.headerPhonesDD__phonesListItem span {
	font-size: 14px;
	color: #1C2938;
}

/* ================== END header Phones DD ================== */