.header {
	background: #fff
}

.header__top {
	background-color: #f3f3f3;
	font-size: 14px;
	color: #555
}

.header__top-wrap {
	display: flex;
	justify-content: space-between;
	align-items: center
}

@media (max-width:991px) {
	.header__top-wrap {
		flex-direction: column;
		padding-bottom: 10px
	}
}

.header__links-settings {
	display: flex;
	align-items: center
}

.header__greeting {
	display: flex;
	padding: 10px 0;
	height: 44px;
	cursor: pointer;
	transition: all .3s
}

.header__greeting:hover {
	color: var(--main-color)
}

.header__log-reg:hover {
	color: #555
}

.header__log-reg a {
	padding: 0!important
}

.header__log-reg a:first-child {
	padding-left: 20px!important;
	padding-right: 5px!important
}

.header__log-reg a:last-child {
	padding-left: 5px!important
}

.header__log-reg a:hover {
	color: var(--main-color)
}

.header__ls-element {
	padding: 5px 0;
	color: #555
}

.header__ls-element i {
	margin-right: 10px;
	color: #aaa
}

.header__ls-element a {
	color: #555;
	transition: all .3s;
	padding: 0 20px
}

.header__ls-element:not(.header__log-reg):hover a {
	color: var(--main-color)
}

.header .c-catalog {
	z-index: 101
}

.header__logo {
	width: 340px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
    justify-content: inherit;
    -ms-align-items: center;
    align-items: center;
}
.header__logo span {
	font-weight: bold;
}

@media (max-width:768px) {
	.header__logo {
		height: 40px
	}
	.header__logo img {
		height: 60px;
	}
}

.header__logo img {
	max-width: 100px
}

.header__mid {
	padding: 5px 0;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.header__site-info {
	padding-left: 5px
}

@media (max-width:1024px) {
	.header__site-info {
		padding-left: 5px
	}
}

@media (max-width:991px) {
	.header__site-info {
		display: none
	}
}

.header__bottom {
	background: #333;
	width: 100%;
	min-height: 40px;
  	display: none
}
@media (min-width: 769px) {
    .header__bottom {
        position: sticky;
      	display: block;
        top: 0;  
        z-index: 101;
    }
}

.header__bottom .container {
	display: flex;
	height: inherit
}

.header__search-wrap {
	width: 200px
}

.header__right {
	display: flex;
	flex-grow: 1;
	justify-content: space-between;
	height: inherit
}

.header__email,
.header__hotline {
	font-size: 18px;
	display: block;
	text-align: right;
	color: #666
}

.header__email b,
.header__hotline b {
	color: #000;
	font-weight: 500
}

.header__hotline a {
  color: #000;
}

.header__banner-text {
	padding: 15px
}

.header__banner-title {
	font-size: 34px;
	color: #333;
	text-align: left;
	margin-top: 38px!important;
	margin-bottom: 7px!important;
	font-weight: 600
}

.header__banner-subtitle {
	color: #666;
	margin-bottom: 14px
}

.header__banner-button {
	display: block;
	background: var(--main-color);
	border-radius: 40px;
	font-size: 15px;
	width: fit-content;
	color: #222;
	padding: 8px 25px;
	font-weight: 600;
	transition: all .3s
}

.header__banner-button:hover {
	color: #000
}

.header__link-panel {
	display: flex
}

.header__link {
	display: flex;
	align-items: center;
	margin-left: 20px;
	padding: 10px 0
}

@media (max-width:768px) {
	.header {
		max-height: 0;
		max-width: 0
	}
	.header .header__bottom,
	.header .header__mid,
	.header .header__top {
		display: none
	}
}

.header-mobile__top {
	display: none;
	background-color: #fff;
	border-bottom: 1px solid #eee;
	padding: 10px 15px;
	position: relative;
	justify-content: space-between;
	align-items: center
}

@media (max-width:768px) {
	.header-mobile__top {
		display: flex;
      	position: sticky;
      	top: 0;
      	z-index: 201
	}
    .header-mobile__top i.far.fa-chart-bar {
        font-size: 2rem;
        color: #555;
        padding: 4px 10px;
    }
    .header-mobile__top i.fa.fa-phone {
        font-size: 2rem;
        color: #555;
        padding: 4px 10px;
    }
    i.fas.fa-search {
    	font-size: 1.5rem;
      	color: #555;
	}
}

.header-mobile__top .c-hamburger__row {
	background: #000
}

.header-mobile__button-panel {
	display: flex
}

.header-mobile__button-wrap {
	padding-left: 10px;
	outline: 0
}

.header-mobile__button {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 40px;
	height: 40px;
	border: none;
	padding: 11px 10px;
	background: #fff;
	outline: 0;
  	margin-right: 10px;
}

.header-mobile__search-panel,
.header-mobile__settings-panel {
	display: flex;
	position: absolute;
	top: 100%;
	right: 0;
	background-color: #fff;
	padding: 15px;
	left: 0;
	z-index: 100;
	margin-top: 1px;
	padding-top: 50px;
	padding-bottom: 30px;
	visibility: hidden;
	opacity: 0;
	box-shadow: 0 1px 2px rgba(0, 0, 0, .2);
	transition: all .3s;
	transform: translateY(30px);
	z-index: -1
}

.header-mobile__search-panel.active,
.header-mobile__settings-panel.active {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
	z-index: 101
}

.header-mobile__close-settings {
	position: absolute;
	top: 10px;
	right: 15px;
	border: none;
	background: 0 0;
	color: #000;
	opacity: .5
}

.header-mobile__settings-element {
	flex-grow: 1
}

.footer-panel {
	display: none;
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	z-index: 999
}

.footer-panel__wrap {
	padding: 5px 0
}

@media (max-width:768px) {
	.footer-panel {
		display: block;
      	border-top: 1px solid #eee;
	}
}

.footer-panel__button-wrap {
	padding-left: 0;
	display: flex;
	justify-content: center
}

.footer-panel__button {
	position: relative;
	display: flex;
	flex-direction: column;
	align-items: center;
	background: 0 0;
	border: none;
	padding: 5px 0;
	color: #222;
	font-size: 14px;
	width: fit-content
}

.footer-panel__button i {
	font-size: 24px;
	display: block;
	position: relative;
	height: 30px;
	line-height: 30px;
	font-weight: 700
}

@media (max-width:768px) {
	.footer-panel__button {
		text-align: center
	}
}

.footer-panel .countsht,
.footer-panel .countsht-fav {
	position: absolute;
	top: 0;
	right: -12px;
	border-radius: 50%;
	background: var(--main-color);
	font-size: 15px;
	color: #222;
	width: 23px;
	height: 23px;
	font-weight: 600;
	text-align: center;
	z-index: 1;
	line-height: 23px;
	font-family: Lato, sans-serif!important
}
.header__site-info .header__hotline a:hover {
  	color: var(--main-color)
}