.header-two{
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 102;
	transition: all 0.6s;
	padding: 10px 0px;
}

.header-two .header-box{
	position: relative;
}
.header-two .logo{
	width: calc(200px);
}
.header-two .logo img{
	max-width: 100%;
	display: block;
	height: 101px;
	transition: all 0.6s;
}
.header-two.header-fixed{
	background: #E1872D;
}
.header-two.header-fixed .logo img{
	height: 60px;
}

.header-two #menu{
	width: calc(100% - 350px);
	padding-right: 150px;
}
.icon-search{
    width: 45px;
    height: 45px;
    background: #e1872d;
    border-radius: 50%;
    position: absolute;
    right: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #FFF;
    cursor: pointer;
}
.header-two .search-bar{
	position: absolute;
	top: 76px;
	right: 0px;
	width: 200px;
	height: 33px;
	border: 1px solid #FFF;
	background-color: #FFF;
	transition: all 0.6s;
	border-radius: 30px;
	overflow: hidden;
}
.header-two .search-bar.none{
	visibility: hidden;
	opacity: 0;
}
.header-two .search-bar.show{
	visibility: visible;
	opacity: 1;
	width: 250px;
}
.header-two .search-bar input.search-text{
	background-color: #FFF;
	border: none;
	height: 30px;
	width: 100%;
	padding: 5px 30px 5px 10px;
	outline: none;
}
.header-two .search-bar .search-btn{
	width: 30px;
	height: 30px;
	border: none;
	background-color: transparent;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #333;
	position: absolute;
	top: 0px;
	right: 0px;
	cursor: pointer;
}
.header-two  .account{
	position: absolute;
	right: 55px;
	cursor: pointer;
}
.header-two  .account > div.icon,.header-two  .cart > div.icon{
	width: 45px;
	height: 45px;
	border-radius: 50%;
	background: #e1872d;
}
.header-two  .account > div.icon span,.header-two  .cart > div.icon span {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    text-align: center;
    display: block;
    line-height: 45px;
    font-size: 18px;
    color: #fff;
}

.header-two  .account .achover {
    width: 180px;
    background: #fff;
    padding: 10px;
    text-align: center;
    box-shadow: 0px 10px 21.6px 2.4px rgba(0,0,0,0.06);
    -webkit-box-shadow: 0px 10px 21.6px 2.4px rgba(0,0,0,0.06);
    -moz-box-shadow: 0px 10px 21.6px 2.4px rgba(0,0,0,0.06);
    -o-box-shadow: 0px 10px 21.6px 2.4px rgba(0,0,0,0.06);
    -os-box-shadow: 0px 10px 21.6px 2.4px rgba(0,0,0,0.06);
    position: absolute;
    right: 0px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    margin-top: 20px;
    top: 100%;
    border-radius: 10px;
    transition: all 0.6s;
}
.header-two  .account .achover a{
	    display: block;
    padding: 5px 10px;
    color: #FFFFFF;
    text-decoration: none;
    background: #ff2d37;
    margin: 4px 0px;
    border-radius: 30px;
    font-size: 13px;
    line-height: 25px;
    text-transform: uppercase;
    transition: all 0.6s;
}
.header-two  .account .achover a:hover{
	color: #FFF;
	background: #10263e;
}
.header-two  .account:hover .achover,.header-two  .cart:hover .achover,.header-two  .cart.active .achover{
	opacity: 1;
    visibility: visible;
    margin-top: 0px;
}

@media screen and (max-width:1048px) {
	.header-two .header-box{
		justify-content: center !important;
	}
	.header-two #menu{
		display: none;
	}
	.header-two .logo{
		width: 114px;
	}
	.header-two .logo img{
		max-height: 60px;
	}
	.header-two .search-bar.show{
		width: 100%;
	}
}
