/* Add border-bottom to sticky header */
.container-header .container-nav {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 1em;
    border-bottom: 2px solid #dee2e6;
}

/*
Change language text weight and size
*/
div.mod-languages a {
    font-weight: bolder;
    font-size: 14px;
}

/* Home Page logo and image size */
img {
    height: auto;
    max-width: 65%;
}

/*
Add space between menu items
*/
.container-header .mod-menu a {
  -webkit-border-radius: 0 0 6px 6px;
  -moz-border-radius: 0 0 6px 6px;
  border-radius: 0 0 6px 6px; 
  padding: 3px 15px;
}

/*
Set active menu item highlighted
*/
.container-header .mod-menu>li.active>a, .container-header .mod-menu>li.active>span, .container-header .mod-menu>li>a:hover {
    text-decoration: auto;
    color: #DA8D00;
}

/*
Change color of hamburger icon on small screen devices
*/
.container-header .navbar-toggler {
    color: #DA8D00;
    border: 1px solid #DA8D00;
    
}

/*
Change menu hover color
*/
.container-header .mod-menu a:hover {
    color: #DA8D00;
}

/*
Create a gradient style header
*/
.container-header {
    position: relative;
    z-index: 10;
    margin-bottom: 20px;
    background-color: #ffffff;
    background-image: linear-gradient(135deg, #ffffff 30%, #ffffff 100%);
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.03) inset;
}

/*
Change menu text color to black and size
*/
.container-header .mod-menu {
    color: #000;
    font-weight: bolder;
    margin-left: 150px;
    font-size: 14px;
}

.footer {
    background-image: linear-gradient(135deg, #D0D0D0 0, #D0D0D0 100%);
    color: #000;
    margin-top: 1em;
}


/*
Disable CB user list count & footer "Powered by... message
*/
.cbUserListResultCount {display:none}

.cbPoweredBy {display:none}