/*
You can add your own CSS here.

Click the help icon above to learn more.
*/
/* 3.9. Header
-------------------------------------------------- */
#header {
    position: relative;
    background-color: #fff;
}
.header-inner {
    position: relative
}
#header .logo h1 {
    margin-bottom: 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}
#header .retina-logo {
    display: none
}

/* Header One */
.header-style-one .logo {
    float: left;
    max-width: 190px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.header-style-one .logo a {
    display: block
}

.header-style-one .primary-navigation-wrapper {
    position: relative;
    border-top: 1px solid #eee;
}
.header-style-one .primary-navigation-inner {
    position: relative
}
.header-style-one .primary-navigation {
    float: left;
    width: 100%;
    text-align: center;
}
.header-style-one .primary-menu {
    display: inline-block;
    float: none;
    vertical-align: middle;
}

.header-style-one .header-search-icon {
    display: inline-block;
    float: none;
    margin-left: 30px;
    vertical-align: middle;
}
.header-style-one .header-search-btn {
    font-size: 13px;
    line-height: 60px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #666;
}
.header-style-one .header-search-btn:hover {
    color: #ff5b24
}

/* Header Two */
.header-style-two .logo {
    float: left;
    max-width: 190px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.header-style-two .logo a {
    display: block
}

.header-style-two .primary-navigation {
    float: right
}
.header-style-two .header-search-icon {
    float: left;
    margin-left: 30px;
}

.header-style-two .header-search-btn {
    font-size: 13px;
    line-height: 60px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #666;
}
.header-style-two .header-search-btn:hover {
    color: #ff5b24
}

/* Header Three */
.header-style-three .header-inner {
    padding: 25px 0
}

.header-style-three .logo {
    float: left;
    max-width: 190px;
    margin-top: 20px;
    margin-bottom: 20px;
}
.header-style-three .logo a {
    display: block
}

.header-ad {
    float: right;
    max-width: 65%;
    margin: 0;
}

.header-style-three .primary-navigation-wrapper {
    position: relative;
    border-top: 1px solid #eee;
}
.header-style-three .primary-navigation-inner {
    position: relative
}
.header-style-three .primary-navigation {
    float: left;
    width: 100%;
}

.header-style-three .header-search-icon {
    float: right;
    margin-left: 30px;
}
.header-style-three .header-search-btn {
    font-size: 13px;
    line-height: 60px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #666;
}
.header-style-three .header-search-btn:hover {
    color: #ff5b24
}

/* 3.10. Sticky Header
-------------------------------------------------- */
.sticky-header {
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    background-color: #fff;
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
    box-shadow: 0 1px 3px rgba(0, 0, 0, .12);
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}
.sticky-header.init-sticky {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
}
.sticky-header-inner {
    position: relative
}

/* Logo */
.sticky-header .logo {
    float: left;
    max-width: 190px;
    margin-top: 20px;
    margin-bottom: 10px;
}
.sticky-header .logo a {
    display: block
}
.sticky-header .retina-logo {
    display: none
}

/* Navigation */
.sticky-header .sticky-navigation {
    float: right
}

/* Search Icon */
.sticky-header .sticky-header-search-icon {
    float: left;
    margin-left: 30px;
}
.sticky-header .sticky-header-search-btn {
    font-size: 13px;
    line-height: 60px;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    color: #666;
}
.sticky-header .sticky-header-search-btn:hover {
    color: #ff5b24
}