﻿/* Keep the nav menu independent of scrolling and on top of other items */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.navbar-hidemobile {
    display: none;
}

.app {
    padding-top: 50px;
}

@media (min-width: 768px) {
    .navbar-hidemobile {
        display: block;
    }

    .navbar {
        border-radius: 0px;
        border-width: 0px;
        height: 100%;
    }

    .navbar-collapse.collapse.hidenonmobile {
        display: none !important;
    }

    .navbar-collapse {
        border-top: 1px solid #444;
        padding: 0px;
    }

    .navbar ul {
        float: none;
    }

    .navbar li {
        float: none;
        font-size: 15px;
        margin: 6px;
    }

        .navbar li a {
            padding: 10px 16px;
            border-radius: 4px;
        }

    .navbar a {
        /* If a menu item's text is too long, truncate it */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}
/* end navbar */

.detailsLabel {
    font-weight: bold;
    display: inline-block;
    width: 155px;
}


@media (min-width: 400px) {
    .merchant-list-notes {
        max-width: 275px;
        display: table-cell;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .merchantDetailsAsin {
        display: table-cell;
    }
}

@media(max-width: 399px) {
    .merchant-list-notes {
        display: none;
    }

    .merchantDetailsAsin {
        display: none;
    }
}

.dashboard-asin-title {
    display: table-cell;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}