﻿.bg-light {
    background-color: #5b0013 !important;
}

.navbar-light .navbar-nav .nav-link {
    color: #ffffff;
    font-weight: bold;
    padding-right: .6rem;
    padding-left: .6rem;
}

    .navbar-light .navbar-nav .active > .nav-link, .navbar-light .navbar-nav .nav-link.active, .navbar-light .navbar-nav .nav-link.show, .navbar-light .navbar-nav .show > .nav-link {
        color: rgb(252 255 16 / 90%);
    }

.navbar-light .navbar-brand {
    color: rgb(255 255 255 / 90%);
    font-weight: 600;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 6px;
        top: .8em;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: .1rem;
        margin-right: .1rem;
    }

.dropdown-item {
    display: block;
    width: 100%;
    padding: .25rem 1.5rem;
    clear: both;
    font-weight: 400;
    color: #212529;
    text-align: inherit;
    white-space: nowrap;
    background-color: transparent;
    border: 0;
    font-size: 15px;
}

.navbar-light .navbar-toggler {
    background-color: #ffffff;
    padding: 1px;
}

.dropdown-item:hover {
    background-color: #5b0013 !important;
    color: #ffffff;
}


/*HEADER*/
header {
    width: 100%;
    background-color: #f8f9fa;
    display: flex;
}

    header section {
        width: 100%;
        padding: 0rem 0.5rem;
        font-size: 14px;
        display: flex;
        align-items: center;
        justify-content: right;
    }

        header section span {
            padding: 0 1rem;
            text-align: center;
            white-space: nowrap;
        }

            header section span:not(:last-child) {
                border-right: 1px solid rgba(255,255,255,0.6);
            }

    header span .fa {
        color: var(--primary);
        margin: 0 5px;
    }

    header .btn1 {
        padding: 5px 10px !important;
    }

.show-on-mobile {
    display: none;
}

@media (max-width:820px) {
    header section:nth-child(1) {
        display: none !important;
    }

    header section {
        padding: 0.5rem 0rem;
    }

    .hide-on-mobile {
        display: none;
    }

    .show-on-mobile {
        display: block;
    }

}

@media (max-width:340px) {
    header section span {
        padding: 0 2px;
    }

    .hide-on-mobile {
        display: none;
    }

    .show-on-mobile {
        display: block;
    }
}


/* Page content */
.content {
    padding: 16px;
}

.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
  /*  left: 0;*/
}
 .sticky + .content {
    padding-top: 60px;
}

.search {
    width: 100%;
    position: relative;
    display: flex;
}

.searchTerm {
    width: 100%;
    border: 1px solid #5e082e;
    border-right: none;
    padding: 5px;
    height: 30px;
    border-radius: 5px 0 0 5px;
    outline: none;
    color: #0042c9;
}

    .searchTerm:focus {
        color: #00B4CC;
    }

.searchButton {
    width: 40px;
    height: 30px;
    border: 1px solid #640b32;
    background: #5b0013;
    text-align: center;
    color: #fff;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-size: 20px;
}

/*Resize the wrap to see the search bar change!*/
.wrap {
    width: 100%;
    position: absolute;
    top: 2px;
    right: 0;
    /*transform: translate(-50%, -50%);*/
}

.dropdown-menu {
    display: none;
    margin-top:-2px;
}

.dropdown:hover > .dropdown-menu {
    display: block;
}