/**
 * @file
 * LCN - primary menu
 */

.region-primary-menu .menu {
  width: 100%;
  position: absolute;
  background-color: #b8b3b3;
/*  border-radius: 0 0 5px 5px; */
  font-size: 1.2em;
  margin: 0 5px;
  padding: 0;
  text-align: left; /* LTR */
}
.region-primary-menu .menu-item {
  width: auto;
}
.region-primary-menu .menu a {
  color: #7A003C;
  float: none;
  display: block;
  text-decoration: none;
  text-shadow: none;
  margin: 0;
  padding: 0.9em 0 0.9em 15px; /* LTR */
  background: #b8b3b3;
  border-radius: 0;
}
.region-primary-menu .menu a:hover,
.region-primary-menu .menu a:focus {
  background: #7A003C;
  color: #fff;
}
.region-primary-menu .menu a:active {
  background: #7A003C;
  color: #fff;
}
ul.menu a.is-active, 
.region-primary-menu .menu-item a.is-active {
  border-bottom: none;
  color: #fff;
  background: #7A003C;
}

.sf-accordion-toggle {
  padding: 10px;
  text-align: center;
  margin: 0 auto;
}
.sf-accordion-toggle a {
  color: #fff;
  font-weight: bold;
  padding: 10px;
  background: #7A003C;
  border-radius: 0;
}

#main-standardfront-page .sf-depth-1 {
  border-bottom-left-radius: 5px;
}

/*
ul.sf-menu.menu li:nth-last-child(1) > a {
  border-bottom-right-radius: 5px !important;
}
*/

/* Bump the menu items down a bit */
ul.sf-menu ul {
  margin-top: 4px !important;
  border-top: 1px solid #7A003C;
}

/* Makes all items in a menu the same width */
.sf-depth-2 {
  width: 100%;
}

.sf-item-1 {
  width: 15%;
}
.sf-item-2 {
  width: 15%;
}
.sf-item-3 {
  width: 30%;
}
.sf-item-4 {
  width: 25%;
}
.sf-item-5 {
  width: 15%;
}

.sf-menu ul {
  left: 0;
  position: absolute;
  top: -99999em;
  width: 100%;
}

/* Spread menu across width (for wide displays) */
@media all and (min-width: 851px) {
  .sf-menu ul li {
    width: 100%;
  }
  ul.sf-menu.menu {
    display: flex;
  }
  ul.sf-menu li {
    flex: auto;
  }
}

/* Indent menu items on small screens */
@media all and (max-width: 764px) {
  .sf-depth-2 {
    text-indent: 20px;
    width: 90%;
  }
}

/* Move list of items in menu down slightly */
ul.sf-menu ol {
  margin-top: 5px;
  border: 1px solid #dcdbdb;
/*  padding-top: 5px; */
}
