/* Put your custom css here */

.orange {
    color: #f2622a !important;
}

.white {
    color: white !important;
}

#black-nav {
    visibility: collapse;
    position: fixed;
    top: 0;
    background-color: black;
    color: white;
    width: 100%;
    z-index: 1001;
    border-bottom: 1px solid #f2622a;
}

#black-nav li.active > a {
    color: #f2622a !important;
}

#black-nav a {
    color: white;
    text-decoration: none;
}

#black-nav ul {
    margin-top: 7px;
    margin-bottom: 7px;
}

#black-nav ul li {
    display: inline-block;
    padding-right: 20px;
}

.display_small {
    display: none !important;
}

.right-side {
    position: absolute;
    right: 20px;
    top: 8px;
}

@media (max-width: 1024px) {
    .display_small {
        display: inherit !important;
    }
}

@media (min-width: 1025px) {
    #black-nav {
        visibility: visible;
    }
    .navbar-fixed-top {
        top: 39px !important;
        border-width: 0 0 1px;
    }
}