.panel-header {
	position: relative;
	background-color: #fff;
	color: #000;
}

.panel-header .inner {
	max-width: 1415px;
	width: 100%;
	margin: 0 auto;
}

@media (min-width: 1025px) {
	.panel-header .inner {
		padding: 44px 40px 25px 28px;
	}   
}

.panel-header .top-nav-cont {
	display: flex;
	justify-content: space-between;
}

.panel-header .top-nav-cont .header-left {
	display: none;
}

.panel-header .top-nav-cont .header-right {
	display: none;
}

.panel-header .logo img { width:100% }


/*MOBILE*/
.panel-header .mobile-nav {
	width: 100%;
}

.panel-header .mobile-nav .logo img {
	width: 189px;
}

.panel-header .mobile-nav .navbar {
	display: flex;
	width: 100%;
	align-items: center;
	justify-content: space-between;
	padding: 15px 5px 15px 12px;
}

.panel-header .mobile-nav .nav-toggle {
	display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: transparent;
    margin-bottom: 0;
    width: 86px;
    height: 50px;
    padding: 0;
}
.panel-header .mobile-nav.active .nav-toggle {
	justify-content: flex-end;
}
.panel-header .mobile-nav .mobile-dd {
	display: none;
	position: absolute;
	top: calc(100% - 13px);
	right: 0;
	width: 100%;
	background-color: white;
	z-index: 30;

	box-shadow: 0 0px 14px 11px rgba(0,0,0,0.13), 0 1px 2px rgba(0,0,0,0.24);
}
.panel-header .mobile-nav .mobile-dd .mobile-dd-top {
	display: flex;
	flex-direction: row;
	align-items: center;
	border-bottom: 2px solid #a1a3a5;
	margin: 16px 20px 11px;
}
.panel-header .mobile-nav .mobile-dd .mobile-dd-top .search-cont {
	flex-grow: 1;
}
.panel-header .mobile-nav.active .mobile-dd { display: block; }


/* Hamburger icon */

.panel-header .mobile-nav .hamburger-inner {
	position: relative;
}

.panel-header .mobile-nav .nav-toggle:focus{
	outline: none;
}
.panel-header .mobile-nav .nav-toggle .fas{
	color: #303030;
}
.panel-header .mobile-nav .nav-toggle .fas.fa-search{
	font-size: 22px;
    margin-right: 8px;
}
.panel-header .mobile-nav .nav-toggle .fas.fa-times{
	display: none;
	font-size: 27px;
	margin-right: 19px;
}

.panel-header .mobile-nav .hamburger-inner::after,
.panel-header .mobile-nav .hamburger-inner::before {
	position: absolute;
}

.panel-header .mobile-nav .hamburger-inner,
.panel-header .mobile-nav .hamburger-inner::after,
.panel-header .mobile-nav .hamburger-inner::before {
	width: 26px;
	height: 3px;
	background-color: #303030;
	transition-property: transform;
	transition-duration: 0.075s;
	transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.panel-header .mobile-nav .hamburger-inner::before {
	content: "";
	display: block;
	top: -7px;
	transition: top 0.075s 0.12s ease, opacity 0.075s ease;
}

.panel-header .mobile-nav .hamburger-inner::after {
	content: "";
	display: block;
	bottom: -7px;
	transition: bottom 0.075s 0.12s ease,transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.panel-header .mobile-nav.active .fas.fa-search,
.panel-header .mobile-nav.active .hamburger-inner {
	display: none;
}
.panel-header .mobile-nav.active .nav-toggle .fas.fa-times{
	display: block;
}

/* end hamburger icon */

@media screen and (min-width: 1025px){
	.panel-header .top-nav-cont .header-left,
	.panel-header .contentRender_name_plugins_common_logo {
		display: flex;
		align-items: center;
	}

	.panel-header .logo img {
		width: calc(175px + (360 - 175) * ((100vw - 1025px) / (1440 - 1025)));
	}
	.panel-header .top-nav-cont .header-right {
		display: flex;
		flex-direction: column;
		align-items: flex-end;
	}

	.panel-header .top-nav-cont .header-right-top,
	.panel-header .top-nav-cont .header-right-bottom {
		display: flex;
		align-items: center;
	}

	.panel-header .top-nav-cont .header-right-top{
		margin-right: 4px;
		margin-bottom: -3px;
	}

	.panel-header .top-nav-cont .mobile-nav {
		display: none;
	}
}

@media screen and (min-width: 1440px){
	.panel-header .logo img {
		width: 360px;
	}
}