.headerPanel {
	width: 100%;
	min-width: 768px;
	height: 60px;
	background: #000000;
	z-index: 99999;
	color: #fff;
    position: absolute;
    /*-webkit-backface-visibility: hidden;*/
    top: 0;
    /*transition: top 0.05s ease-in-out;*/
    will-change: top;
}
/*.headerPanel.view_hidden {*/
    /*top: -60px;*/
/*}*/
.headerPanel.state_open {
	position: fixed;
	z-index: 100000;
}
.floatingPanel {
    position: fixed;
}


.headerPanel.view_scrolling {
	opacity: .6;
    -webkit-transition: opacity .15s ease-out;
    -moz-transition: 	opacity .15s ease-out;
    transition: 		opacity .15s ease-out;
}
.headerPanel.view_scrolling:hover {
	opacity: 1;
}


@media screen and (max-width: 1040px) {
	.headerPanel.view_scrolling {
		opacity: 1;
		height: auto;
	}
	.headerPanel.view_scrolling .mobileMenuButton {
		position: fixed;
		z-index: 10;
		top: 5px;
		left: 5px;
		width: 80px;
		padding: 22px 0;
		background-color: hsla(0,0%,49%,.5);
	}
	.headerPanel.view_scrolling .mobileMenuButton.state_open {
		position: static;
		background: none;
		width: 56px;
		padding: 12px 0;
	}
	.headerPanel.view_scrolling .mobileMenuButton .icon_hamburger {
		margin: 0 auto;
	}
	.headerPanel.view_scrolling .mobileMenuButton.state_open .icon_hamburger {
		margin: 0;
		/*margin-left: 160px;*/
	}
	.headerPanel.view_scrolling .mainLogo,
	.headerPanel.view_scrolling .header__loginButton,
	.headerPanel.view_scrolling .header__userButton,
	.headerPanel.view_scrolling .header__searchButton,
	.headerPanel.view_scrolling .header__readLater,
	.headerPanel.view_scrolling .wrapper > .yellowButton,
	.headerPanel.view_scrolling .dayInfo,
	.headerPanel.view_scrolling .mainLogo {
		display: none;
	}
	.headerPanel.view_scrolling .state_open ~ .mainLogo,
	.headerPanel.view_scrolling .state_open ~ .yellowButton,
	.headerPanel.view_scrolling .state_open ~ .header__loginButton,
	.headerPanel.view_scrolling .state_open ~ .header__userButton,
	.headerPanel.view_scrolling .state_open ~ .header__searchButton,
	.headerPanel.view_scrolling .state_open ~ .header__readLater,
	.headerPanel.view_scrolling .state_open ~ .dayInfo,
	.headerPanel.view_scrolling .state_open ~ .mainLogo {
		display: block;
	}
}



.mainLogo {
	float: left;
	font-size: 0;
}
.mainLogo img {
	margin: 5px 0;
	width: 120px;
	height: 50px;
}
.mainLogo_black img {
	margin-top: 11px;
	width: 100px;
	height: 34px;
}










.menu {
	float: right;
}
.menu__item {
	float: left;
	position: relative;
}
.menu__link {
	font-weight: 700;
	font-size: 14px;
	display: table-cell;
    vertical-align: middle;
    text-transform: uppercase;
	color: #ddd;
	text-decoration: none;
	height: 60px;
	line-height: 20px;
	padding: 0 9px;
}
.menu__link:hover {
	/*background: #c64a1b;*/
	background: #667787;
	color: #fff !important;
}

.menu__link.view_menuIcon {
	position: relative;
	padding-right: 26px
}
.menu__link.view_menuIcon .icon {
	position: absolute;
    right: 9px;
    top: 46%;
	display: inline-block;
    border: 5px solid transparent;
    border-top: 5px solid #fff;
}
.menu__link.view_menuIcon.state_open {
	background: #667787;
}
.menu__link.view_menuIcon.state_open .icon {
    top: 38%;
    border: 5px solid transparent;
    border-bottom: 5px solid #fff;
}




.menu__link.view_enter,
.menu__link.view_search,
.menu__link.view_user,
.menu__link.view_readLater {
	padding-left: 70px;
	color: #ffd500;
}
.menu__link.view_enter:before,
.menu__link.view_search:before,
.menu__link.view_user:before,
.menu__link.view_readLater:before {
	display: block;
	position: absolute;
	content: "";
	width: 17px;
	height: 17px;
	left: 40px;
	top: 16px;
	background-image: url(../_images/icons_sprite.png);
}
.menu__link.view_user:before {
	height: 23px;
	top: 13px;
}
.menu__link.view_readLater:before {
	width: 24px;
	height: 13px;
	left: 36px;
	top: 18px;
}
.menu__link.view_readLater {
	color: #c64a1b;
}
.menu__link.view_readLater.state_open {
	background: #c64a1b;
	color: #fff;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) { 
	.menu__link.view_enter:before,
	.menu__link.view_search:before,
	.menu__link.view_user:before,
	.menu__link.view_readLater:before {
        background-image: url(../_images/icons_sprite_2x.png);
        background-size: 282px 500px;
    }
}

.menu__link.view_enter:before {
	background-position: -44px -44px;
}
.menu__link.view_search:before {
	background-position: -10px -44px;
}
.menu__link.view_readLater:before {
	background-position: -80px -44px;
}
.menu__link.view_readLater.state_open:before,
.menu__link.view_readLater:hover:before {
	background-position: -64px -301px;
}
.menu__link.view_user:before {
	background-position: 0 -400px;
}
@media screen and (max-width: 1040px) {
	.menu {
		position: fixed;
		top: 60px;
		left: 0;
		float: none;
		height: 100%;
		width: 220px;
		margin-left: -100%;
		background: #000;
		transition: margin 0.15s ease;
	}
	.menu.state_open {
		margin-left: 0;
	}
	.menu__link {
		width: 100%;
		height: 40px;
		padding: 5px 5px 5px 40px;
	}
	.menu__link.view_menuIcon .icon {
		display: none;
	}
	.menu__item {
		display: table;
		width: 100%;
		border-bottom: 1px solid #252525;
	}
}
.menu__item.view_mobileOnly {
	display: none;
}

@media screen and (max-width: 1040px) {
	.menu__item.view_mobileOnly {
		display: table;
	}
}







.subMenu {
	display: none;
	width: 100%;
	position: fixed;
	top: 60px;
	left: 0;
}
.subMenu.state_open {
	display: block;
}
.submenuContent {
	background: #667787;
	padding-top: 20px;
	padding-bottom: 22px;	
}


@media screen and (max-width: 1040px) {
	.subMenu {
		left: 220px;
		height: 100%;
		width: calc(100% - 220px);
		min-width: 548px;
	}
	.submenuContent {
		height: 100%;
		padding-top: 22px;
		padding-bottom: 22px;
	}
	.submenuContent.paddings_side { /* РїРµСЂРµР±РёРІР°РµРј */
		padding-left: 20px;
		padding-right: 20px;	
	}
	.menu.state_open .subMenu {
		display: none;
	}
	.menu.state_open .subMenu.state_open {
		display: block;
	}
}


















.mobileMenuButton {
	display: none;
	font-size: 11px;
    text-transform: uppercase;
	color: #fff;
	text-decoration: none;
	padding: 12px 0;
	width: 56px;
	height: 36px;
	margin-right: 8px;
	position: relative;
}
.mobileMenuButton:hover {
	color: #fff;
}

.mobileMenuButton .icon_hamburger {
	position: relative;
	display: block;
	width: 40px;
}
.mobileMenuButton .icon_hamburger i,
.mobileMenuButton .icon_hamburger:before,
.mobileMenuButton .icon_hamburger:after {
	position: absolute;
	top: 17px;
	display: block;
	font-size: 0;
	content: "";
	width: 40px;
	height: 4px;
	background: #fff;
	transform: rotate(0deg);
	transition: .15s ease-in-out;
}
.mobileMenuButton .icon_hamburger:before {
	top: 7px;
}
.mobileMenuButton .icon_hamburger:after {
	top: 27px;
}
.mobileMenuButton.state_open .icon_hamburger:before,
.mobileMenuButton.state_open .icon_hamburger:after {
	width: 0;
	top: 17px;
	transition: .15s ease-in-out .10s;
}
.mobileMenuButton .icon_hamburger i {
	transition: .25s ease-in-out;
}
.mobileMenuButton.state_open .icon_hamburger i:nth-child(1) {
	transform: rotate(45deg);
}
.mobileMenuButton.state_open .icon_hamburger i:nth-child(2) {
	transform: rotate(-45deg);
}
.mobileMenuButton .icon_pointer {
	position: absolute;
    right: 7px;
    top: 52%;
	display: inline-block;
    border: 4px solid transparent;
    border-top: 4px solid #777;
}


@media screen and (max-width: 1040px) {
	.mobileMenuButton {
		display: block;
		float: left;
	}
	.mobileMenuButton.state_open .icon_pointer {
		top: 46%;
	    border: 4px solid transparent;
	    border-bottom: 4px solid #777;
    }
}












.user-elements {
	position: absolute;
	top: 60px;
	right: -20px;
	display: none;

    background: #fff;
    color: #000;
    font-size: 13px;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border: 3px solid #c64a1b;
}

.user-element a {
	text-decoration: none;
	font-size: 14px;
	font-weight: bold;
	padding: 20px;
	display: block;
}

@media screen and (min-width: 1280px) { 
	.user-elements {
		right: -16px;
	}
}





.header__loginButton,
.header__searchButton {
	text-decoration: none;
	font-size: 0;
	float: right;
	width: 32px;
	height: 35px;
	margin: 12px 0;
	background-image: url(../_images/icons_sprite.png);
}

.user_wrapper {
	position: relative;
}

.user_wrapper:hover .user-elements {
	 display: block;
}

.header__userButton {	
	overflow: hidden;
	text-decoration: none;
	float: right;
	padding: 18px 9px 17px;
	font: normal 16px/24px 'PT Sans', sans-serif;
	color: #ffd051;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.header__userButton .user-name {
	margin-left: 5px;
}
.header__userButton:before {
	content: '';
	display: inline-block;
	height: 24px;
	width: 12px;
	vertical-align: middle;
	background-image: url(../_images/icons_sprite.png);
}


@media screen and (max-width: 1279px) {
	.header__userButton .user-name {
		display: none;
	}
}
.header__readLater {
	float: right;
	margin: 0 0 0 5px;
	padding: 0 9px 0 0;
	text-decoration: none;
	font-weight: normal;
	font-size: 0px;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
	color: #fff;
	text-align: center;
}
.header__readLater:hover,
.header__readLater.state_open {
	background-color: #c64a1b;
	color: #fff;
}
.header__readLater .icon {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 15px 5px 15px 0;
	background-color: #c64a1b;
	border-radius: 50%;
}
.header__readLater .icon:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	width: 16px;
	height: 8px;
	margin: -4px 0 0 -8px;
	background: url(../_images/icons_sprite.png) -48px -301px no-repeat;
}
.header__readLater .number {
	font-size: 10px;
	vertical-align: 26px;
}
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 144dpi) { 
	.header__loginButton,
	.header__searchButton,
	.header__userButton:before {
        background-image: url(../_images/icons_sprite_2x.png);
        background-size: 282px 500px;
    }
}

.header__loginButton {
	background-position: -35px 0;
}
.header__loginButton:hover,
.header__loginButton.state_open {
	background-position: -35px -35px;
}
.header__searchButton {
	background-position: 0 0;
}
.header__searchButton:hover {
	background-position: 0 -35px;
}
.header__userButton:before {
	background-position: 0 -400px;
}
.header__userButton:hover,
.header__userButton.state_open {
	background: #c64a1b;
	color: #ffd051;
}
@media screen and (max-width: 1040px) {
	.header__loginButton,
	.header__searchButton,
	.header__userButton,
	.header__readLater {
		display: none !important;
	}
}
@media screen and (min-width: 1024px) and (max-width: 1040px) {
	.header__loginButton,
	.header__searchButton {
		margin-left: 20px;
	}
}





.headerSearch {
	float: right;
	position: relative;
	z-index: 10;
	width: 100%;
}
@media screen and (max-width: 1023px) {
	.headerSearch {
		width: calc(100% - 198px);
	}
}
@media screen and (min-width: 1024px) and (max-width: 1040px) {
	.headerSearch {
		width: 700px;
	}
}
@media screen and (min-width: 1041px) and (max-width: 1279px) {
	.headerSearch {
		width: 809px;
	}
}
@media screen and (min-width: 1280px) {
	.headerSearch {
		width: 809px;
	}
}

.headerSearch__form {
	overflow: hidden;
	height: 60px;
	width: 0;
	opacity: 0;
	right: 0;
	top: 0;
	position: absolute;
	background: #000;
	display: none;
	padding: 14px 0 10px 0px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	box-sizing: border-box;
}

.floatingInfo .popoverReadLater {
	display: none;
}

.floatingInfo .popoverReadLater.state_open {
	display: block;
}

.header__readLater-white {
	display: inline-block;
	height: 100%;
	margin: 0 0 0 15px;
	padding: 0 9px 0 0;
	text-decoration: none;
	font-weight: normal;
	font-size: 0px;
	-webkit-transition: all .1s ease-in-out;
	-moz-transition: all .1s ease-in-out;
	transition: all .1s ease-in-out;
	color: #686b6f;
	text-align: center;
}
@media screen and (min-width: 1023px) and (max-width: 1279px) {
	.header__readLater-white {
		margin: 0 0 0 8px;
	}
}

.header__readLater-white:hover,
.header__readLater-white.state_open {
	background-color: #c64a1b;
	color: #fff;
}
.header__readLater-white .icon {
	position: relative;
	display: inline-block;
	width: 30px;
	height: 30px;
	margin: 13px 5px 15px 0;
	background-color: #c64a1b;
	border-radius: 50%;
}
.header__readLater-white .icon:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: inline-block;
	width: 16px;
	height: 8px;
	margin: -4px 0 0 -8px;
	background: url(../_images/icons_sprite.png) -48px -301px no-repeat;
}
.header__readLater-white .number {
	font-size: 10px;
	vertical-align: 26px;
}

















