.header {
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.0625);
    display: block;
    height: 65px;
    margin-bottom: 0;
    padding: 0;
    position: fixed;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
    width: calc(100% - 230px);
    z-index: 800;
}

@media screen and (max-width: 991px) {
    .header {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
    .header {
        width: calc(100% - 70px);
    }
}

.header .header-container::before,
.header .header-container::after {
    content: " ";
    display: table;
}

.header .header-container::after {
    clear: both;
}

.header .header-container .nav-left,
.header .header-container .nav-right {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
    position: relative;
}

.header .header-container .nav-left > li,
.header .header-container .nav-right > li {
    float: left;
}

.header .header-container .nav-left > li > a,
.header .header-container .nav-right > li > a {
    color: #72777a;
    display: block;
    line-height: 65px;
    min-height: 65px;
    padding: 0 15px;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.header .header-container .nav-left > li > a i,
.header .header-container .nav-right > li > a i {
    font-size: 17px;
}

.header .header-container .nav-left > li > a:hover,
.header .header-container .nav-left > li > a:focus,
.header .header-container .nav-right > li > a:hover,
.header .header-container .nav-right > li > a:focus {
    color: #313435;
    text-decoration: none;
}

@media screen and (max-width: 991px) {
    .header .header-container .nav-left > li > a,
    .header .header-container .nav-right > li > a {
        padding: 0 15px;
    }
}

.header .header-container .nav-left .notifications,
.header .header-container .nav-right .notifications {
    position: relative;
}

.header .header-container .nav-left .notifications .counter,
.header .header-container .nav-right .notifications .counter {
    background-color: #ff3c7e;
    border-radius: 50px;
    color: #fff;
    font-size: 10px;
    line-height: 1;
    padding: 3px 5.5px;
    position: absolute;
    right: 6px;
    top: 12px;
}

.header .header-container .nav-left .notifications .dropdown-menu,
.header .header-container .nav-right .notifications .dropdown-menu {
    min-width: 350px;
    padding: 0;
}

@media screen and (max-width: 767px) {
    .header .header-container .nav-left .notifications .dropdown-menu,
    .header .header-container .nav-right .notifications .dropdown-menu {
        max-width: 300px;
    }
}

.header .header-container .dropdown-menu {
    display: block;
    margin: 0;
    -webkit-transform-origin: top right;
    transform-origin: top right;
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.15s ease-out;
    transition: -webkit-transform 0.15s ease-out;
    transition: transform 0.15s ease-out;
    transition: transform 0.15s ease-out, -webkit-transform 0.15s ease-out;
}

.header .header-container .dropdown-menu .divider {
    border-bottom: 1px solid rgba(0, 0, 0, 0.0625);
    height: 1px;
    overflow: hidden;
}

.header .header-container .dropdown-menu > li > a {
    -webkit-transition: all 0.2s ease-out;
    transition: all 0.2s ease-out;
}

.header .header-container .show .dropdown-menu {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
}

.header .header-container .nav-left {
    float: left;
    margin-left: 15px;
}

.header .header-container .nav-right {
    float: right;
}

.header .header-container .nav-right .dropdown-menu {
    left: auto;
    right: 0;
}

.header .header-container .nav-right .dropdown-menu > li {
    width: 100%;
}

.header .header-container .nav-right .dropdown-menu > li > a {
    line-height: 1.5;
    min-height: auto;
    padding: 10px 15px;
}

.header .search-box .search-icon-close {
    display: none;
}

.header .search-box.active .search-icon {
    display: none;
}

.header .search-box.active .search-icon-close {
    display: inline-block;
}

.header .search-input {
    display: none;
}

.header .search-input.active {
    display: inline-block;
}

.header .search-input input {
    background-color: transparent;
    border: 0;
    box-shadow: none;
    font-size: 18px;
    height: 40px;
    margin-top: 12px;
    outline: none;
    padding: 5px;
}

@media screen and (max-width: 767px) {
    .header .search-input input {
        width: 85px;
    }
}

.header .search-input input::-webkit-input-placeholder {
    color: #a6aaac;
    font-style: italic;
}

.header .search-input input:-moz-placeholder {
    color: #a6aaac;
    font-style: italic;
}

.header .search-input input::-moz-placeholder {
    color: #a6aaac;
    font-style: italic;
}

.header .search-input input:-ms-input-placeholder {
    color: #a6aaac;
    font-style: italic;
}

.is-collapsed .header {
    width: calc(100% - 70px);
}

@media screen and (max-width: 991px) {
    .is-collapsed .header {
        width: 100%;
    }
}

@media screen and (min-width: 992px) and (max-width: 1439px) {
    .is-collapsed .header {
        width: calc(100% - 280px);
    }
}