.header-bar {
    background-color: #000;
    color: #fff;
    display: flex;
    text-transform: uppercase;
    justify-content: center;
}
.header-bar span {
    font-family: 'Neue Haas Grotesk Bold', sans-serif !important;
}
.header-bar a {
    text-decoration: none;
}
.header-bar a, .header-bar a:hover {
    color: #fff;
}
.header-bar a:hover, .header-bar a:active {
    text-decoration: underline;
}
.header-bar a:hover .btn-login-text, .header-bar a:active .btn-login-text {
    text-decoration: underline;
}
.header-bar-item:last-of-type a {
    text-decoration: none !important;
}

.header-bar-item {
    padding: 5px 0;
    width: 100%;
}
.header-bar-item:nth-child(2) {
    justify-content: center;
    text-align: center;
}
.header-bar-item a {
    display: flex;
    align-items: center;
}
.header-bar-item.smiley a {
    display: none;
}
.header-bar-item.smiley a:after {
    margin-left: 5px;
    position: relative;
    content: "";
    width: 20px;
    height: 20px;
    background: url("smiley-2.svg");
    background-repeat: no-repeat;
    display: inline-block;
}
.header-bar-item.gone {
    opacity: 0;
    pointer-events: none;
}
.header-bar-item span {
    white-space: nowrap;
}

.header-bar-item:first-of-type {
    opacity: 0;
    pointer-events: none;
}
.header-bar-item:last-of-type {
    text-align: right;
}
.header-bar-item:last-of-type a {
    display: inline-block;
    margin-right: 15px;
}
.btn-login-text {
    display: none;
    margin-right: 10px;
}

@media (min-width: 992px) {
    .btn-login-text {
        display: inline-block;
    }
    .header-bar-item:last-of-type a {
        margin-right: 0;
    }
    .header-bar-item:first-of-type {
        opacity: 1;
        pointer-events: all;
    }
    .header-bar-item.smiley a {
        display: flex;
    }
    .header-bar-item a:after {
        margin-left: 10px !important;
    }
    .header-bar {
        justify-content: space-between;
      	padding: 0 10px;
    }
    .header-bar-item {
        width: 33.33%;
        justify-content: center;
        align-items: center;
        display: flex;
    }
    .header-bar-item:first-of-type, .header-bar-item:last-of-type {
        display: flex;
    }
    .header-bar-item:first-of-type{
        justify-content: flex-start;
    }
    .header-bar-item:last-of-type{
        justify-content: flex-end;
    }
}

@media (min-width: 1920px) {
    .header-bar-item {
        padding: 5px 0;
    }
}