/* set up grid for header - wee man, space, title & desc  */
.table_td {
  display: grid;
  grid-template-columns: 100px 40px minmax(min-content, 1100px) ; 
}

/* set background colour */
.container-header {
  background-color: white; 
  background-image: none;
}

/* set menu colour */
.container-header .mod-menu {
  color: #553bb0;
}

/* set menu toggler for mobiles etc */
.container-header .navbar-toggler  {
  color: #553bb0 !important ;
}

/* for title description site module position: below-top*/
/* title stuff */
.lp_title {
  font-size: 3rem;
  color: black;
}
/* remove the underline */
.lp_title a {
	text-decoration: none;
}
/* description stuff */
.lp_desc {
  font-size: 1.7rem;
  line-height: 200% !important;
  color: grey;
}

/* setup background image */
.grid_item_bg {
  /* see https://issues.joomla.org/tracker/joomla-cms/38947 */
  background: url('../../../../../images/druidic_man_carving.jpg');
  background-repeat:no-repeat;
}

/* general grid stuff */

/* make table 155 1fr */
.table_2y {
  display: grid;
  grid-template-columns: 155px 1fr; 
}
/* make table 1fr 155 155*/
.table_3y {
  display: grid;
  grid-template-columns: 1fr 155px 155px; 
}



/* grid item stuff */
.grid_item {
  /* border: 2px solid #87b5ff; */
  padding-top: 3px;
  padding-right: 3px;
  padding-bottom: 3px;
  padding-left: 3px;
}

/* center text in grid item */
.grid_item_ctr {
  text-align: center;
}

/* bottom margin for a table */
.table_bm {
  margin-bottom: 7px ;
}

/* space for line for full width of grid - any no of cols */
.spacer_item {
  grid-column-start: 1;
  grid-column-end: -1;
}






