﻿
.myNavBar {

    position: sticky;
    top: 0;
    justify-content: flex-start;
    height: 4rem;
    display: flex;
    align-items: center;
    z-index: 520;
}

.bg {
    height: 10rem;
    background-color: white;
    position: sticky;
    z-index: 1;
    top: 0
}

.bg-items {
    padding-top: 60px;
    align-items: center;
    justify-content: center;
    /* padding-bottom: 10px; */
}

.top-row ::deep a, myNavBar ::deep a, .top-row .btn-link {
    white-space: nowrap;
    margin-left: 1.5rem;
}

.top-row a:first-child, myNavBar a:first-child {
    overflow: hidden;
    text-overflow: ellipsis;
}


@media (max-width: 640.98px) {
    .top-row:not(.auth), myNavBar:not(.auth) {
        display: none;
    }

    .top-row.auth, myNavBar.auth {
        justify-content: space-between;
    }

    .top-row a, myNavBar a, .top-row, myNavBar, .btn-link {
        margin-left: 0;
    } 

    .my-top-row a, my-top-row .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {

    .myNavBar {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .myNavBar {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
 
}


