/* ------------------------- */
/* YOO ADMIN OVERRIDES ----- */
/* ------------------------- */
/* /templates/yootheme/packages/theme-joomla/assets/css/admin.css */

html {
  scroll-behavior: smooth;
  scroll-padding: 100px;
}


/* CUSTOM LMICK FONTS --------------------- */
@import "/_resources/fonts/font-styles.css";

h1 {
  font-family: Poynter Oldstyle Text, serif !important;
  font-size: 30px !important;
  font-weight: 400 !important;
  font-style: bold !important;
  color: #00B388 !important;
  margin-bottom: -15px !important;
  line-height: 30px !important;
}

h2 {
  font-family: Objektiv Mk1, serif !important;
  font-size: 24px;
  font-weight: 400;
  font-style: normal;
  color: #006B50;
  margin-bottom: -15px;
}

h3 {
  font-family: Objektiv Mk1, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400;
  font-style: normal;
  color: #00b388;
}

h4 {
  font-family: Objektiv Mk1, sans-serif !important;
  font-size: 20px !important;
  font-weight: 400;
  font-style: normal;
  color: #333F48;
}

body {
  font-family: Objektiv Mk1, sans-serif !important;
  font-size: 16px !important;
  font-weight: 400;
  font-style: normal;
}

.smartslider {
  font-family: Poynter Oldstyle Text, serif !important;
}


/* CUSTOM ZOO ACCORDION STYLES --------------------- */
/* Level 1 (Primary) – optional styling */
.zoo-accordion .acc-level-1__title {
  font-weight: 500;
  font-size: 14px;
}

/* Add vertical spacing between Level 1 title and Level 2 block */
.zoo-accordion .acc-level-1__content {
  margin-top: 0.5rem;   /* adjust to taste */
}

/* Level 2 (Subcategory) indent */
.zoo-accordion .acc-level-2__title {
  padding-left: 1.25rem;
  font-weight: 500;
  font-size: 14px;
}

/* Space between Level 2 title and its item list */
.zoo-accordion .acc-level-2__content {
  margin-top: 0.4rem;   /* adjust to taste */
}

/* Items: indent further than subcategory */
.zoo-accordion .acc-items {
  margin: 0;
  padding-left: 2.5rem;   /* adjust to taste */
  list-style: square;
  font-size: 14px;
}

.zoo-accordion .acc-item {
  margin: 0.25rem 0;
}

.zoo-accordion .acc-item-link {
  text-decoration: none;
}

.zoo-accordion .acc-item-link:hover {
  text-decoration: underline;
}

/* Pill badge base */
.zoo-accordion .acc-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  height: 14px;          /* fixed height (does not change) */
  min-width: 1.35rem;       /* makes 1–9 still look like a circle-ish pill */
  padding: 0 0.55rem;       /* gives room for 2+ digits */
  
  font-size: 9px;
  font-weight: 600;
  line-height: 1;

  border-radius: 999px;

  background: #e5e7eb;
  color: #FFF;

  margin-left: 0.5rem;
  white-space: nowrap;      /* keep numbers on one line */
  font-variant-numeric: tabular-nums; /* optional: nicer alignment */
}

/* Primary pill (slightly stronger) */
.zoo-accordion .acc-count--primary {
  background: #29333A;
  height: 14px;
  min-width: 1.45rem;
  font-size: 9px;
}

/* Sub pill (slightly lighter) */
.zoo-accordion .acc-count--sub {
  background: #006B50;
}



/*footer { margin-top: 40px; }*/
/*#tm-main { margin-bottom: -40px !important; }*/
.uk-article-title { font-size: 28px; }
.membersonly { color: red; }
em.news { color: red !important; }
li { padding-bottom: 4px; }



/* ------------------------- */
/* ROTATING ADS ------------ */
/* ------------------------- */
/* Moved to Yootheme Internal CSS */
/* .ads { width: 210px; float: right; margin-left:20px; } */




/* ------------------------- */
/* MENU TWEEKS ------------- */
/* ------------------------- */
.submenu {
  text-transform: uppercase !important;
  color: #3a8dde;
  font-weight: 900;
  margin-bottom: -20px !important;
  letter-spacing: 1px;
}




/* ------------------------- */
/* ZOO CUSTOM CATEGORIES --- */
/* ------------------------- */
.uk-section .zoo-categories {
  margin-bottom: -20px;
}
.zoo-categories {
  /* SEE QUERIES */
}
.zoo-categories li {
  margin-top: 0px !important;
}






/* ------------------------- */
/* IMAGE INSERTS ----------- */
/* ------------------------- */
.corner-round {
  border-radius: 5px;
}
.caption {
  font-size: 80%;
}
.inset-image-left {
  /* width hard coded @ tag */
  float: left;
  margin: 0px 20px 5px 0px;
  display: inline;
}
.inset-image-right {
  /* width hard coded @ tag */
  float: right;
  margin: 0px 0px 5px 20px;
  display: inline;
}
.inset-image-center {
  /* width hard coded @ tag */
  margin: 0 auto;
}
.inset-image-bio {
  float: left;
  width: 150px;
  margin: 0px 20px 5px 0px;
  display: inline;
  border: 1px solid #777;
}
.flex-container {
  display: flex;
  float:right;
  text-align: center;
  margin: 0px 0px 0px 20px;
}
.flex-child {
  flex: 1;
}  
.flex-child:nth-child(n+1) {
  margin-right: 20px;
}




/* ------------------------- */
/* FLEXBOX ----------------- */
/* ------------------------- */
.flex-container {
  display: flex;
  flex-wrap: wrap;
}
.flex-headshot {
  width: 150px;
  flex: 0 0 150px; /* Fixed size */
  height: auto;
}
.flex-content {
  flex: 1 1 0;
  min-width: 0; /* Prevent overflow on narrow widths */
  padding: 10px;
  box-sizing: border-box;
}

.flex-container-nowrap {
  display: flex;
  flex-wrap: nowrap;
}
.flex-headshot-nowrap {
  width: 150px;
  height: auto;
  flex: 0 0 150px; /* fixed width, no grow/shrink */
}
.flex-content-nowrap {
  flex: 1 1 auto%; /* takes up remaining space */
  padding-left: 10px; /* optional spacing */
  box-sizing: border-box;
}




/* ------------------------- */
/* CORE TABLES ------------- */
/* ------------------------- */
table.coreTable {
  font-size:14px !important;
  border-collapse: collapse;
  line-height: 16px;
  width: 100%;
  color: #252525;
  margin: 20px 0px 20px 0px !important;
}
table.coreTable th {
  border-width: 1px;
  border-color: #737A9A;
  border-style: solid;
  line-height: 30px;
  vertical-align: text-top;
}
table.coreTable td {
  border-width: 1px;
  border-color: #5c627a;
  border-style: solid;
  padding: 10px;
  vertical-align: text-top;
}
table.coreTable thead {
  background-color: #5c627a;
  color: white;
  text-align: center;
}
table.coreTable tr:nth-child(even) {
  background-color: #d6d8e2;
}




/* ------------------------- */
/* EVENT TABLES ------------ */
/* ------------------------- */
table.agenda {
  font-size:14px !important;
  line-height: 16px;
  width: 100%;
}
table.agenda th {
  font-size: 15px;
  background-color: #777;
  color: #fff !important;
  padding: 10px;
}
table.agenda td {
  padding: 10px;
}
.agenda.initstate {
  color: #5c627a;
}
.agenda p {
  margin:0;
  padding-bottom: 2px;
}
.agenda ul {
  margin-top: 0px;
  margin-bottom: 10px;
  margin-left: -10px;
}
.agenda hr {
  margin-top: 10px;
  margin-bottom: 10px;
  border: 0;
  border-top: 1px solid #252525;
}
.agenda .timewidth {
  width: 180px;
}
.agenda .time {
  text-align: center;
  font-weight: 500;
}
.agenda .title {
  font-weight: 500;
}
.agenda .description {
  color:#666;
}
.agenda .description p {
  margin-bottom: 5px;
}
.agenda .description ol {
  margin-top: -2px;
  margin-bottom: 5px;
}
.agenda .description ul {
  margin-bottom: 5px;
}
.agenda .speaker {
  margin-top: 2px;
  margin-bottom: 2px;
  line-height: 18px;
  font-weight: normal;
}
.agenda .speaker span {
  font-weight: bold;
}
.agenda .sponsor {
  margin-top: 5px;
  color: #111be5;
  font-style: italic;
}
.agenda .room {
  margin-top: 4px;
  font-weight: 500;
}
.agenda .room span {
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  font-size: 10px;
  color: white;
  padding: 1px 5px 1px 5px;
  background-color: #777;
}
.agenda .download {
  margin-top: 4px;
}
.agenda .fa-caret-square-o-down {
  color: #777;
}
a[aria-expanded=true] .fa-caret-square-o-down {
  transition: .3s transform ease-in-out;
  transform: rotate(180deg);
  color: #b24c24;
}
a[aria-expanded=false] .fa-caret-square-o-down {
  transition: .3s transform ease-in-out;
  transform: rotate(0deg);
  color: #5c627a;
}


/* ------------------------- */
/* SPONSORS TABLE ---------- */
/* ------------------------- */
table.sponsors {
  font-size:12px !important;
  border-collapse: collapse;
  line-height: 12px;
  width: 100%;
  color: #252525;
  margin: 10px 0px 10px 0px !important;
}
table.sponsors td {
  border-width: 1px;
  border-color: #5c627a;
  border-style: solid;
  padding: 4px;
  vertical-align: text-top;
}
table.sponsors p {
  margin:0px !important;
}
table.sponsors tr:nth-child(even) {
  background-color: #ddd;
}



/* ------------------------------------------------------------------------------------------------------------- */

/* ------------------------- */
/* MEDIA QUERIES ----------- */
/* ------------------------- */
@media only screen and (max-width: 575px) {

  /* ZOO CATEGORIES */
  .zoo-categories {
    font-size: 14px;
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }

  /* MOBILE MENU ONLY SPACING */
  .uk-nav-sub a {
    padding: 5px 0;
  }
  .uk-offcanvas-bar {
    padding-top:50px;
  }

  /* RESPONSIVE MULTICOLUMN LIST */
  .multicolumn-list-2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .multicolumn-list-3 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .multicolumn-list-4 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }

  /* AGENDA TABLES*/
  .agenda .timewrap::before {
    content: "\a";
    white-space: pre;
  }
  .agenda .timewidth {
    width: 90px;
  }

  /* INSET IMAGES */
  .inset-image {
    height:auto !important;
    max-width:600px !important;
    width: 100% !important;
  }
  .inset-image-left {
    height:auto !important;
    max-width:600px !important;
    width: 100% !important;
    margin: 10px 0px 20px 0px;
    text-align: center;
  }
  .inset-image-right {
    height:auto !important;
    max-width:600px !important;
    width: 100% !important;
    margin: 10px 0px 20px 0px;
  }

  /* FLEXBOX */
  .flex-container {
    display: block;
    width: 100% !important;
    margin: 10px 0px 20px 0px!important;
  }
  .flex-child {
    margin: 10px 0px 20px 0px!important;
  }
}



@media only screen and (min-width: 576px) {

  /* ZOO CATEGORIES */
  .zoo-categories {
    font-size: 12px;
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }

  /* RESPONSIVE MULTICOLUMN LIST */
  .multicolumn-list-2 {
    -webkit-column-count: 1;
    -moz-column-count: 1;
    column-count: 1;
  }
  .multicolumn-list-3 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .multicolumn-list-4 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}



@media only screen and (min-width: 768px) {

  /* ZOO CATEGORIES */
  .zoo-categories {
    font-size: 12px;
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }

  /* RESPONSIVE MULTICOLUMN LIST */
  .multicolumn-list-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .multicolumn-list-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .multicolumn-list-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}



@media only screen and (min-width: 992px) {

  /* RESPONSIVE MULTICOLUMN LIST */
  .multicolumn-list-2 {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
  .multicolumn-list-3 {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
  .multicolumn-list-4 {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}