.new-topbar__panel {
    min-height: 70px;
    background: #000;
    display: flex;
    justify-content: center;
    position: relative;
}

.new-topbar__container {
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
}

.new-topbar__logo {
    background-image: url(../images/KatalystLogoV2.FullWhite@2x.png);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    width: 200px;
    min-width: 200px;
    height: 40px;
    display: block;
    margin-top: 14px;
}

.new-topbar__links {
    width: 100%;
    display: flex;
    padding-left: 5%;
    height: 70px;
    align-items: center;
}

.new-topbar__links-a {
    color: #FFF;
    font-size: 17px;
    display: inline-block;
    margin-right: 45px;
    white-space: nowrap;
}

.new-topbar__links-a:last-child {
    margin-right: 0px;
}

.new-topbar__links-a:focus,
.new-topbar__links-a:hover {
    color: #007aff;
    text-decoration: none;
}

.new-topbar__buttons {
    display: flex;
    height: 70px;
    align-items: center;
}

.new-topbar__buttons-a {
    display: inline-block;
    border: 1px rgba(255,255,255,0.38) solid;
    font-size: 17px;
    color: #FFF;
    white-space: nowrap;
    text-decoration: none;
    padding: 10px 42px;
    border-radius: 4px;
    margin-left: 24px;
}

.new-topbar__buttons-a:first-child {
    margin-left: 10px;
}

.new-topbar__buttons-a:focus,
.new-topbar__buttons-a:hover {
    text-decoration: none;
    border-color: #007aff;
    background: #007aff;
    color: #FFF;
}

.new-topbar__buttons-a_highlighted {
    border-color: #007aff;
    background: #007aff;
    color: #FFF;
}

.new-topbar__buttons-a_highlighted:focus,
.new-topbar__buttons-a_highlighted:hover {
    border-color: #2D97F8;
    background: #2D97F8;
}

/* Profile */

.new-topbar__profile {
    display: flex;
    position: relative;
    z-index: 1;
}

.new-topbar__profile-box {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
    min-width: 170px;
}

.new-topbar__profile-box:hover {
    background: rgb(24, 24, 24);
}

.new-topbar__profile-box-pic {
    min-width: 45px;
    min-height: 45px;
    border-radius: 100%;
    background-image: url(../../i/userpic.png);
    background-size: cover;
}

.new-topbar__profile-box-name {
    color: #FFF;
    white-space: nowrap;
    padding-left: 15px;
    margin: 0px;
}

/* md */

@media (min-width: 992px) and (max-width: 1200px) {

    .new-topbar__buttons-a {
        padding: 10px 25px;
    }

    .new-topbar__links {
        padding-left: 4%;
    }

    .new-topbar__links-a {
        margin-right: 18px;
        font-size: 16px;
    }

}

/* sm */ 

@media (min-width: 480px) and (max-width: 991px) {

    .new-topbar__container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .new-topbar__logo {
        width: 130px;
        min-width: 130px;
    }

    .new-topbar__buttons-a {
        padding: 10px 25px;
        font-size: 14px;
        margin-left: 15px;
    }

    .new-topbar__links {
        padding-left: 4%;
    }

    .new-topbar__links-a {
        margin-right: 20px;
        font-size: 13px;
    }

    /* Menu profile */

    .new-topbar__profile-box-pic {
        min-width: 40px;
        min-height: 40px;
    }

    .new-topbar__profile-box-link {
        font-size: 12px !important;
    }

}

/* xs */

@media (max-width: 767px) {

    .new-topbar__container {
        padding-left: 10px;
        padding-right: 10px;
    }

    .new-topbar__logo {
        width: 130px;
        min-width: 130px;
    }

    .new-topbar__buttons-a {
        padding: 8px 11px;
        font-size: 12px;
        margin-left: 12px;
    }

    .new-topbar__links {
        display: none;
    }

    /* Menu profile */

    .new-topbar__profile-box {
        padding-left: 10px;
        padding-right: 10px;
        min-width: 160px;
    }

    .new-topbar__profile-box-pic {
        min-width: 35px;
        min-height: 35px;
    }

    .new-topbar__profile-box-name {
        font-size: 12px;
    }

    .new-topbar__profile-box-link {
        font-size: 12px !important;
    }

    .new-topbar__buttons-a_hide {
        display: none;
    }

}