.navbar {
    background: #3461c9;
    padding: 0 15px;
    height: 90px;
    z-index: 10000;
}

.navbar .container {
    width: 100%;
    position: relative;
    max-width: none;
    margin: 0 auto;
    padding: 0;
}

.navbar .btn.btn-link {
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    line-height: 1;
    padding: 6px 0;
    font-weight: 700;
    letter-spacing: .25px;
    width: 120px;
    font-size: 16px;
}

.navbar .btn.btn-link:hover {
    color: #fff !important;
}

.navbar .btn.btn-link:focus {
    box-shadow: none;
}

.navbar .btn.btn-link .icon {
    width: 36px;
    height: 25px;
    margin: 0 -3px 0 -14px;
    flex-shrink: 0;
}

.navbar .btn.btn-link .icon svg path {
    fill: #fff;
}

.navbar-brand {
    display: block;
    margin: 0;
    padding: 3px 0 0 0;
}

.navbar-brand > img {
    width: auto;
    height: 35px;
}

.navbar .left {
    z-index: 10;
    display: flex;
    justify-content: left;
    width: 33%;
}

.navbar .center {
    z-index: 10;
    display: flex;
    justify-content: center;
    width: 34%;
}

.navbar .right {
    z-index: 10;
    display: flex;
    justify-content: flex-end;
    width: 33%;
}

.navbar .overlay {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    width: 100%;
    max-width: 1217px;
    /* left: 50%;
    transform: translateX(-50%); */
    display: flex;
    align-items: center;
}

.navbar .link {
    display: flex;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    line-height: 14px;
    letter-spacing: 1px;
    width: 170px;
    height: 46px;
    margin: 0 0 0 15px;
    white-space: nowrap;
    outline: 0;
    position: relative;
    flex-shrink: 0;
    cursor: pointer;
    text-align: center;
}

.navbar .link.sign-out {
    background-color: #2c55b3;
}

.navbar .link > span {
    justify-content: center;
    margin: 10px 0px;
    line-height: 26px;
    width: 80px;
}

.navbar .link:hover {
    background: #fff;
    color: #2c55b3;
}

.navbar .link > svg {
    height: 46px;
    width: 46px;
    margin: 0px 6px;
    fill: #fff;
}

.navbar .link  > svg path {
    fill: #fff;
}

.navbar .link:hover  > svg path {
    fill: #2c55b3;
}

/* toggle mobile/desktop view */
@media only screen and (max-device-width: 991px) and (orientation: landscape), 
only screen and (max-device-width: 640px) and (orientation: portrait),
only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:portrait), /* iPAd For portrait layouts only */
only screen and (min-device-width: 481px) and (max-device-width: 1024px) and (orientation:landscape), /* iPAD For land layouts only */ 
only screen and (max-device-height: 576px)
{

    .navbar .hide-on-mobile {
        display: none;
    }

    .navbar .link {
        margin: 0;
        width: 46px;
    }

    .navbar .link > svg {
        margin: 0 auto;
    }

    .nav-tabs .nav-link > svg {
        margin-right: 0 !important;
    }
}
