@charset "UTF-8";
/* ==========================================================================
   NODE MODULES
   ========================================================================== */
/* ==========================================================================
   VARIABLES
   ========================================================================== */
/* ==========================================================================
   COLOURS
   ========================================================================== */
/* ==========================================================================
   DIMENSIONS
   ========================================================================== */
/* ==========================================================================
   MIXINS
   ========================================================================== */
/* ==========================================================================
   BASE
   ========================================================================== */
/* ==========================================================================
   DEV
   ========================================================================== */
/* ==========================================================================
   FONTS
   ========================================================================== */
/* ==========================================================================
   GENERAL
   ========================================================================== */
body,
html {
  text-align: center;
  margin: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
   RESET
   ========================================================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  vertical-align: baseline;
  box-sizing: border-box;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
  text-align: center;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

div {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
body {
  font-family: sans-serif;
  font-size: 16px;
  font-weight: 200;
  line-height: 145%;
}

h1, h2, h3 {
  font-family: "Times New Roman", serif;
}

h1 {
  font-size: 34px;
  text-transform: uppercase;
  font-weight: 400;
  margin-bottom: 1.2rem;
}

h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

h3 {
  font-size: 22px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

p {
  margin-bottom: 0.9rem;
  line-height: 150%;
  font-family: Helvetica, serif;
}

/* ==========================================================================
   COMPONENTS
   ========================================================================== */
/* ==========================================================================
     BANNER - ADVERT
   ========================================================================== */
#tg-banner-advert {
  width: 100%;
  text-align: center;
  display: inline-block;
}
#tg-banner-advert .inner {
  position: relative;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#tg-banner-advert .inner a {
  display: inline-block;
}
#tg-banner-advert .inner a img {
  width: 100%;
  height: auto;
}

/* ==========================================================================
     BANNER - EVENTS
   ========================================================================== */
#banner-events {
  width: 100%;
  height: 60px;
  text-align: center;
  margin-bottom: 10px;
}
#banner-events .inner {
  position: relative;
  display: inline-block;
  height: 100%;
  background-color: black;
  width: 1000px;
  max-width: 90%;
  margin: auto;
  text-transform: uppercase;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  line-height: 60px;
  color: #F8BB00;
  text-decoration: none;
}
#banner-events .inner span {
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  font-family: Helvetica, sans-serif;
  font-size: 18px;
}
#banner-events .inner img {
  display: none;
  width: 50px;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 550px) {
  #banner-events .inner {
    font-size: 32px;
    text-align: left;
    padding-left: 30px;
  }
  #banner-events .inner span {
    font-size: 26px;
  }
  #banner-events .inner img {
    display: inline-block;
    right: 30px;
  }
}
@media screen and (min-width: 850px) {
  #banner-events .inner {
    font-size: 40px;
    text-align: center;
  }
  #banner-events .inner span {
    font-size: 32px;
  }
  #banner-events .inner img {
    width: 80px;
    right: 30px;
  }
}

/* ==========================================================================
     BANNER - Upcoming
   ========================================================================== */
#banner-jr-reunion {
  width: 100%;
  height: 60px;
  text-align: center;
}
#banner-jr-reunion .inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;

  height: 100%;
  background-color: #045184;
  width: 1000px;
  max-width: 90%;
  margin: auto;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  line-height: 60px;
  color: white;
  text-decoration: none;
}

#banner-jr-reunion .inner .banner-title {
  color: #F8BB00;
}
#banner-jr-reunion .inner span {
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  font-family: Helvetica, sans-serif;
  font-size: 18px;
}
#banner-jr-reunion .inner img {
  display: inline-block;
  width: 50px;
  margin-right: 10px;
}
#banner-jr-reunion .inner .banner-title,
#banner-jr-reunion .inner span {
    line-height: normal;
}
@media screen and (min-width: 550px) {
  #banner-jr-reunion .inner {
    font-size: 32px;
    text-align: left;
    padding-left: 30px;
  }
  #banner-jr-reunion .inner span {
    font-size: 26px;
  }
  #banner-jr-reunion .inner img {
    display: inline-block;
    right: 30px;
  }
}
@media screen and (min-width: 850px) {
  #banner-jr-reunion .inner {
    font-size: 40px;
    text-align: center;
  }
  #banner-jr-reunion .inner span {
    font-size: 32px;
  }
  #banner-jr-reunion .inner img {
    width: 80px;
    right: 30px;
  }
}

/* ==========================================================================
   BANNER - MEMBERSHIP
   ========================================================================== */
#banner-membership {
  width: 100%;
  height: 70px;
  text-align: center;
  margin-bottom: 20px;
}
#banner-membership .inner {
  position: relative;
  display: flex; /* Use flexbox for horizontal alignment */
  align-items: center; /* Vertically center content */
  justify-content: center; /* Horizontally center the combined image and text */

  height: 100%;
  background-color: #045184;
  width: 1000px;
  max-width: 90%;
  margin: auto;
  font-family: "Times New Roman", serif;
  font-size: 22px;
  /* line-height: 70px; */ /* Consider removing or adjusting if flexbox alignment works better without it */
  text-decoration: none;
  color: inherit;
  /* text-align: center; */ /* Flexbox handles alignment now */
}
#banner-membership .inner span {
  color: white;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  font-family: Helvetica, sans-serif;
  font-size: 20px;
}

#banner-membership .inner .title {
  color: #F8BB00;
}

#banner-membership .inner img {
  display: inline-block; /* Make it visible and part of the flex flow */
  width: 50px;
  /* Remove absolute positioning for left placement within flex */
  /* position: absolute; */
  /* right: 10px; */
  /* top: 50%; */
  /* transform: translateY(-50%); */
  margin-right: 10px; /* Add space between image and text */
}


@media screen and (min-width: 550px) {
  #banner-membership .inner {
    font-size: 32px;
    text-align: left;
    padding-left: 30px;
  }
  #banner-membership .inner span {
    font-size: 28px;
  }
  #banner-membership .inner img {
    display: inline-block;
    right: 30px;
  }
}
@media screen and (min-width: 850px) {
  #banner-membership .inner {
    font-size: 40px;
    text-align: center;
  }
  #banner-membership .inner span {
    font-size: 36px;
  }
  #banner-membership .inner img {
    width: 80px;
    right: 30px;
  }
}

/* ==========================================================================
   CART ICON
   ========================================================================== */
.cart-contents {
  position: absolute;
  justify-content: center;
  width: auto;
  top: 34px;
  right: 0;
  text-decoration: none;
  color: inherit;
  display: flex;
  align-items: center;
}
.cart-contents img {
  width: 32px;
  height: 32px;
}
.cart-contents .cart-contents-count {
  font-family: Helvetica, sans-serif;
  font-weight: normal;
  font-size: 16px;
  line-height: 22px;
  color: inherit;
  margin-left: -10px;
  margin-top: -25px;
  width: 22px;
  height: 22px;
  background-color: #F8BB00;
  border-radius: 11px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #333;
  padding: 60px 0 20px 0;
  margin-top: 20px;
  text-align: center;
}
footer .inner {
  width: 430px;
  max-width: 90%;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 550px) {
  footer .inner {
    display: flex;
  }
}
footer .inner .facebook {
  width: 100%;
  align-self: center;
  text-align: center;
  margin: 20px 0;
}
footer .inner .facebook img {
  height: 60px;
  width: 60px;
  margin: auto;
}
footer .inner .menu {
  margin: auto;
  width: 120px;
}
footer .inner .menu a {
  color: white;
  text-decoration: none;
}
footer .inner .menu a:hover {
  text-decoration: underline;
}
footer .copyright {
  width: 100%;
  color: white;
  margin-top: 60px;
}
footer .copyright a {
  color: inherit;
}

/* ==========================================================================
   HEADER DESKTOP
   ========================================================================== */
#header-desktop {
  height: 180px;
  text-align: center;
  display: none;
}
@media screen and (min-width: 1000px) {
  #header-desktop {
    display: inline-block;
  }
}
#header-desktop #header-desktop-inner {
  width: 1000px;
  height: 100%;
  max-width: 90%;
  margin: auto;
  position: relative;
}
#header-desktop #header-desktop-inner #main-logo {
  height: 100%;
  width: 120px;
  float: left;
}
#header-desktop #header-desktop-inner #main-logo img {
  width: 100%;
  height: auto;
}
#header-desktop #header-desktop-inner #main-name {
  width: calc(100% - 120px);
  height: calc(100% - 50px);
  float: left;
  font-family: "Times New Roman", serif;
  font-size: 80px;
  letter-spacing: 10px;
  line-height: 120px;
  text-transform: uppercase;
}
#header-desktop #header-desktop-inner #main-menu {
  width: calc(100% - 120px);
  height: 50px;
  float: left;
}
#header-desktop #header-desktop-inner #main-menu .menu-main-menu-container {
  width: auto;
  height: 100%;
}
#header-desktop #header-desktop-inner #main-menu .menu-main-menu-container ul {
  text-align: right;
}
#header-desktop #header-desktop-inner #main-menu .menu-main-menu-container ul li {
  display: inline-block;
  margin-left: 20px;
  position: relative;
}
#header-desktop #header-desktop-inner #main-menu .menu-main-menu-container ul li a {
  text-decoration: none;
  color: inherit;
  text-transform: uppercase;
  line-height: 50px;
}
#header-desktop #header-desktop-inner #main-menu .menu-main-menu-container ul li:hover .sub-menu {
  display: flex;
}
#header-desktop #header-desktop-inner #main-menu .sub-menu {
  display: none;
  flex-direction: column;
  background-color: black;
  color: white;
  position: absolute;
  left: -25px;
  margin-top: 7px;
  padding: 15px 0;
  z-index: 100;
  width: 390px;
}
#header-desktop #header-desktop-inner #main-menu .sub-menu li {
  height: 40px;
  text-align: left;
  padding: 0;
}
#header-desktop #header-desktop-inner #main-menu .sub-menu li a {
  display: inline-block;
  height: 100%;
  width: 100%;
  padding: 0 20px;
  text-align: left;
  line-height: 40px;
}
#header-desktop #header-desktop-inner #main-menu .sub-menu:before {
  display: block;
  content: "";
  background: url("../../dist/images/up-arrow.svg") no-repeat center;
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 20px;
  cursor: pointer;
  width: 106px;
  height: 30px;
  justify-content: center;
  align-items: flex-start;
}
#header-desktop #header-desktop-inner #main-menu .menu-item-has-children > a:after {
  content: "▾";
  width: 5px;
  height: 5px;
  padding-left: 5px;
}

/* ==========================================================================
   HEADER MOBILE
   ========================================================================== */
#header-mobile {
  display: inline-block;
  height: 100px;
  text-align: center;
  width: 100%;
}
@media screen and (min-width: 1000px) {
  #header-mobile {
    display: none;
  }
}
#header-mobile .inner {
  width: 90%;
  height: 100%;
  margin: auto;
  display: flex;
  justify-content: space-between;
  position: relative;
}
#header-mobile .inner .logo {
  height: 100px;
  width: 80px;
}
#header-mobile .inner .logo img {
  width: auto;
  height: 100%;
}
#header-mobile .inner .name {
  align-self: center;
  font-family: "Times New Roman", serif;
  font-size: 32px;
  text-transform: uppercase;
}
@media screen and (min-width: 500px) {
  #header-mobile .inner .name {
    font-size: 50px;
  }
}
#header-mobile .inner #hamburger {
  width: 50px;
  height: 36px;
  align-self: center;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-left: 15px;
  position: relative;
}
#header-mobile .inner #hamburger span {
  width: 50px;
  height: 4px;
  background-color: black;
  position: relative;
  left: 0;
}
#header-mobile .inner #hamburger.active span {
  width: 45px;
}
#header-mobile .inner #hamburger.active span:nth-of-type(1) {
  top: 16.5px;
  left: 3px;
  transform: rotate(45deg);
}
#header-mobile .inner #hamburger.active span:nth-of-type(2) {
  display: none;
}
#header-mobile .inner #hamburger.active span:nth-of-type(3) {
  transform: rotate(-45deg);
  bottom: 16.5px;
  left: 3px;
}
#header-mobile .inner #menu-mobile {
  display: flex;
  position: fixed;
  height: calc(100% - 100px);
  right: -350px;
  top: 100px;
  width: 350px;
  background-color: dimgrey;
  color: white;
  z-index: 1;
  flex-direction: column;
  justify-content: center;
  transition: all 0.5s ease-in-out;
  padding-left: 80px;
}
#header-mobile .inner #menu-mobile .menu-mobile-menu-container,
#header-mobile .inner #menu-mobile .menu-main-menu-container {
  width: 100%;
}
#header-mobile .inner #menu-mobile .menu-mobile-menu-container ul,
#header-mobile .inner #menu-mobile .menu-main-menu-container ul {
  margin: 0;
  text-align: left;
}
#header-mobile .inner #menu-mobile .menu-mobile-menu-container ul li,
#header-mobile .inner #menu-mobile .menu-main-menu-container ul li {
  padding: 5px 0;
  margin-bottom: 10px;
}
#header-mobile .inner #menu-mobile .menu-mobile-menu-container ul li a,
#header-mobile .inner #menu-mobile .menu-main-menu-container ul li a {
  color: white;
  text-decoration: none;
  text-transform: uppercase;
  width: 100%;
  display: inline-block;
}
#header-mobile .inner #menu-mobile .menu-mobile-menu-container .sub-menu,
#header-mobile .inner #menu-mobile .menu-main-menu-container .sub-menu {
  display: none;
}
#header-mobile .inner #menu-mobile.show {
  right: 0;
}

body.menu-open {
  height: 100vh;
  overflow-y: hidden;
  position: fixed;
}

/* ==========================================================================
   HOME SLIDER
   ========================================================================== */
#home-slider {
  width: 100%;
  text-align: left;
  padding-bottom: 70px;
}
#home-slider #flexslider-carousel {
  height: 500px;
  width: 1000px;
  max-width: 90%;
  margin: auto;
}
@media screen and (min-width: 550px) {
  #home-slider #flexslider-carousel {
    height: 250px;
  }
}
#home-slider #flexslider-carousel .slides {
  width: 100%;
  height: 100%;
}
#home-slider #flexslider-carousel .slides li {
  display: block;
  height: 500px;
  text-align: center;
}
@media screen and (min-width: 550px) {
  #home-slider #flexslider-carousel .slides li {
    height: 250px;
    max-width: 1000px;
  }
}
#home-slider #flexslider-carousel .slides li a {
  color: inherit;
  text-decoration: none;
}
#home-slider #flexslider-carousel .slides li a .image {
  width: 250px;
  height: 250px;
  padding: 20px;
  text-align: center;
  margin: auto;
}
#home-slider #flexslider-carousel .slides li a .image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  margin: auto;
  box-shadow: 1px 9px 13px -3px rgba(0, 0, 0, 0.75);
  border: 3px solid #F8BB00;
}
@media screen and (min-width: 550px) {
  #home-slider #flexslider-carousel .slides li a .image {
    height: 100%;
    float: left;
    text-align: center;
  }
}
#home-slider #flexslider-carousel .slides li a .content {
  width: 100%;
  height: 250px;
  padding: 20px 0;
  overflow: hidden;
  text-align: left;
  text-decoration: none;
}
#home-slider #flexslider-carousel .slides li a .content .header {
  display: inline-block;
  width: 100%;
}
#home-slider #flexslider-carousel .slides li a .content .header h2, #home-slider #flexslider-carousel .slides li a .content .header h3 {
  width: 100%;
  color: #045184;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  text-align: left;
}
#home-slider #flexslider-carousel .slides li a .content .header .date {
  width: 100%;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}
#home-slider .date {
  text-transform: uppercase;
  background-color: #FFD700; 
  color: #045184;           
  padding: 5px 10px;       
  border: none;
  display: inline-block;       
}
@media screen and (min-width: 550px) {
  #home-slider #flexslider-carousel .slides li a .content {
    width: calc(100% - 270px);
    height: 100%;
    float: right;
    margin-left: 20px;
  }
  #home-slider #flexslider-carousel .slides li a .content .header h2, #home-slider #flexslider-carousel .slides li a .content .header h3 {
    width: calc(100% - 110px);
    float: left;
  }
  #home-slider #flexslider-carousel .slides li a .content .header .date {
    width: 110px;
    float: right;
  }
}
#home-slider .flex-control-nav {
  width: 1000px;
  max-width: 90%;
  height: 50px;
  margin: auto;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}
#home-slider .flex-control-nav li a {
  width: 22px;
  height: 22px;
  border-radius: 13px;
  margin: 0 5px;
  background-color: darkgrey;
  display: inline-block;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  color: darkgrey;
}
#home-slider .flex-control-nav li .flex-active {
  background-color: dimgrey;
  color: dimgrey;
}

/* ==========================================================================
   PAGE TITLE
   ========================================================================== */
#page-title {
  width: 100%;
  text-align: center;
  display: inline-block;
  margin-top: 20px;
}
#page-title .inner {
  width: 1000px;
  max-width: 90%;
  padding: 17px;
  background-color: #045184;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#page-title .inner h1 {
  font-size: 32px;
  line-height: 32px;
  font-family: "Times New Roman", serif;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}
#page-title .inner h1 span {
  color: white;
  font-size: 35px;
  text-shadow: 2px 2px 2px rgba(255, 255, 255, 0.9);
}
#page-title .inner h1 span span {
  font-size: 35px;
}
@media screen and (min-width: 850px) {
  #page-title .inner h1 {
    font-size: 50px;
    line-height: 50px;
  }
}
#page-title .jr-reunion {
  background-color: #0F52BA !important;
}
#page-title .jr-reunion h1 {
  color: #fff !important;
}

/* ==========================================================================
   PAGINATION
   ========================================================================== */
/* ==========================================================================
   PAGES
   ========================================================================== */
/* ==========================================================================
   ARCHIVE - ADVERTS
   ========================================================================== */
#page-adverts {
  text-align: center;
}
#page-adverts .content {
  margin: auto;
  width: 850px;
  max-width: 90%;
  padding: 120px 0;
}
#page-adverts .content .advert {
  width: 100%;
  margin-bottom: 40px;
  display: inline-block;
  padding: 0;
}
#page-adverts .content .advert img {
  width: 100%;
  height: auto;
  margin: 0;
  display: block;
}

/* ==========================================================================
   ARCHIVE - ANNUAL REPORTS
   ========================================================================== */
#page-annual-reports {
  width: 100%;
  text-align: center;
  padding: 100px 0;
}
#page-annual-reports .content {
  width: 1000px;
  max-width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 494px) {
  #page-annual-reports .content {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
}
#page-annual-reports .content .tile {
  width: 100%;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
@media screen and (min-width: 494px) {
  #page-annual-reports .content .tile {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 525px) {
  #page-annual-reports .content .tile {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  #page-annual-reports .content .tile {
    width: 33.333%;
  }
}
@media screen and (min-width: 1050px) {
  #page-annual-reports .content .tile {
    width: 25%;
  }
}
#page-annual-reports .content .tile .image {
  width: 220px;
  height: 310px;
  margin: auto;
  border: 1px solid black;
}
#page-annual-reports .content .tile .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-annual-reports .content .tile .year {
  margin-top: 10px;
}

/* ==========================================================================
   ARCHIVE - EVENTS
   ========================================================================== */
#events-page {
  text-align: center;
  padding: 40px 0;
}
#events-page .header {
  width: 1000px;
  max-width: 90%;
  margin: auto;
}
@media screen and (min-width: 850px) {
  #events-page .header {
    display: flex;
  }
}
#events-page .header .image {
  width: 100%;
  height: 300px;
}
#events-page .header .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 850px) {
  #events-page .header .image {
    width: 300px;
    height: 300px;
  }
}
#events-page .header .content {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 850px) {
  #events-page .header .content {
    text-align: left;
    width: calc(100% - 300px);
    padding-left: 40px;
    margin-top: 0;
  }
}
#events-page .header .content .date, #events-page .header .content .title, #events-page .header .content .subtitle {
  color: #0076BA;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}
#events-page .header .content .date {
  font-size: 30px;
  line-height: 1.2em;
}
#events-page .header .content .title {
  width: 100%;
}
#events-page .header .content .title h2 {
  font-size: 46px;
  line-height: 1.2em;
  margin-bottom: 0;
}
#events-page .header .content .subtitle {
  width: 100%;
  margin-bottom: 10px;
}
#events-page .header .content .subtitle h3 {
  font-size: 32px;
  line-height: 1.2em;
  margin-bottom: 0;
}
#events-page .header .content .text {
  width: 100%;
}
#events-page .table {
  width: 1000px;
  max-width: 90%;
  margin: 40px auto;
  border-collapse: collapse;
  empty-cells: show;
}
#events-page .table table, #events-page .table th, #events-page .table td {
  border: 1px solid black;
  border-collapse: collapse;
}
#events-page .table table {
  width: 100%;
  font-size: 12px;
}
#events-page .table table .events-date-col {
  border: 1px solid green;
  min-width: 60px;
}
@media screen and (min-width: 750px) {
  #events-page .table table .events-date-col {
    min-width: 100px;
  }
}
#events-page .table table tr:nth-of-type(2n) {
  background-color: #EEEEEE;
}
#events-page .table table tr th, #events-page .table table tr td {
  padding: 5px 3px;
}
#events-page .table table tr th {
  text-transform: uppercase;
  font-size: 12px;
}
#events-page .table table tr td {
  position: relative;
}
#events-page .table table tr td:first-of-type {
  text-align: right;
}
#events-page .table table tr td:last-of-type {
  text-align: left;
}
@media screen and (min-width: 750px) {
  #events-page .table table {
    font-size: 18px;
  }
  #events-page .table table tr th {
    font-size: 24px;
  }
  #events-page .table table tr th, #events-page .table table tr td {
    padding: 10px;
  }
}
#events-page .table table .cancelled {
  position: relative;
}
#events-page .table table .cancelled td:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: 3px solid red;
  width: 100%;
  right: 20%;
}
@media screen and (min-width: 600px) {
  #events-page .table table .cancelled td:first-of-type:before {
    left: 20%;
    right: 0;
  }
}
@media screen and (min-width: 600px) {
  #events-page .table table .cancelled td:last-of-type:before {
    width: 80%;
    left: 0;
  }
}
#events-page .table table .cancelled td:last-of-type:after {
  display: none;
  position: absolute;
  content: "cancelled";
  right: -30px;
  color: red;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  top: 20px;
}
@media screen and (min-width: 600px) {
  #events-page .table table .cancelled td:last-of-type:after {
    display: inline-block;
  }
}

/* ==========================================================================
   ARCHIVE - MEDIA RELEASES
   ========================================================================== */
#page-media-releases {
  width: 100%;
  text-align: center;
  padding: 100px 0;
}
#page-media-releases .content {
  width: 1000px;
  max-width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 494px) {
  #page-media-releases .content {
    display: flex;
    flex-wrap: wrap;
  }
}
#page-media-releases .content .tile {
  width: 100%;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
@media screen and (min-width: 494px) {
  #page-media-releases .content .tile {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 525px) {
  #page-media-releases .content .tile {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  #page-media-releases .content .tile {
    width: 33.333%;
  }
}
@media screen and (min-width: 1050px) {
  #page-media-releases .content .tile {
    width: 25%;
  }
}
#page-media-releases .content .tile .image {
  width: 220px;
  height: 310px;
  margin: auto;
  border: 1px solid black;
}
#page-media-releases .content .tile .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-media-releases .content .tile .edition {
  background-color: black;
  color: #F8BB00;
  width: 90px;
  padding: 10px 0;
  margin: 10px auto 0 auto;
  font-size: 18px;
}

/* ==========================================================================
   ARCHIVE - VOICE PIPES
   ========================================================================== */
#page-voice-pipes {
  width: 100%;
  text-align: center;
  padding: 100px 0;
}
#page-voice-pipes .content {
  width: 1000px;
  max-width: 90%;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 494px) {
  #page-voice-pipes .content {
    display: flex;
    flex-wrap: wrap;
  }
}
#page-voice-pipes .content .tile {
  width: 100%;
  margin-bottom: 40px;
  text-decoration: none;
  color: inherit;
  text-align: center;
}
@media screen and (min-width: 494px) {
  #page-voice-pipes .content .tile {
    margin-bottom: 60px;
  }
}
@media screen and (min-width: 525px) {
  #page-voice-pipes .content .tile {
    width: 50%;
  }
}
@media screen and (min-width: 800px) {
  #page-voice-pipes .content .tile {
    width: 33.333%;
  }
}
@media screen and (min-width: 1050px) {
  #page-voice-pipes .content .tile {
    width: 25%;
  }
}
#page-voice-pipes .content .tile .image {
  width: 220px;
  height: 310px;
  margin: auto;
  border: 1px solid black;
}
#page-voice-pipes .content .tile .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#page-voice-pipes .content .tile .edition {
  background-color: black;
  color: #F8BB00;
  width: 90px;
  padding: 10px 0;
  margin: 10px auto 0 auto;
  font-size: 18px;
}

/* ==========================================================================
   PAGE - ABOUT
   ========================================================================== */
#about-page {
  text-align: center;
}
#about-page .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#about-page .content .row {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-bottom: 45px;
}
@media screen and (min-width: 650px) {
  #about-page .content .row {
    display: flex;
    flex-direction: row;
    height: 220px;
    margin-bottom: 0;
  }
}
#about-page .content .row:nth-of-type(odd) {
  flex-direction: row-reverse;
}
#about-page .content .row:nth-of-type(odd) .name {
  text-align: center;
}
@media screen and (min-width: 650px) {
  #about-page .content .row:nth-of-type(odd) .name {
    text-align: right;
  }
}
@media screen and (min-width: 650px) {
  #about-page .content .row:not(:first-child) {
    margin-top: -70px;
  }
}
#about-page .content .row .image {
  height: 220px;
  width: 150px;
  display: inline-block;
  background-color: grey;
  border: 1px solid black;
}
@media screen and (min-width: 650px) {
  #about-page .content .row .image {
    height: 100%;
    width: 150px;
  }
}
#about-page .content .row .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#about-page .content .row .name {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px;
}
@media screen and (min-width: 650px) {
  #about-page .content .row .name {
    text-align: left;
    width: calc(100% - 300px);
  }
  #about-page .content .row .name a h2 {
    font-size: 36px;
    line-height: 36px;
  }
  #about-page .content .row .name h2 {
    font-size: 36px;
    line-height: 36px;
  }
}
#about-page .content .row .name a {
  text-decoration: none;
  color: inherit;
}
#about-page .content .row .name a h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
}
#about-page .content .row .name h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
}

/* ==========================================================================
   PAGE - COMMITTEE
   ========================================================================== */
#page-committee {
  text-align: center;
}
#page-committee .content {
  padding: 120px 0;
  width: 1000px;
  max-width: 90%;
  margin: auto;
}
#page-committee .content .title {
  padding-bottom: 50px;
}
#page-committee .content .title h2 {
  font-family: Helvetica, sans-serif;
  font-weight: 200;
  font-size: 40px;
  line-height: 40px;
}
#page-committee .content .tiles {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#page-committee .content .tiles .tile {
  width: 100%;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (min-width: 650px) {
  #page-committee .content .tiles .tile {
    width: 50%;
  }
}
@media screen and (min-width: 650px) {
  #page-committee .content .tiles .tile {
    width: 33.333%;
  }
}
@media screen and (min-width: 900px) {
  #page-committee .content .tiles .tile {
    width: 25%;
  }
}
#page-committee .content .tiles .tile .image {
  border: 2px solid #BDBDBD;
  margin: 15px;
}
@media screen and (max-width: 650px) {
  #page-committee .content .tiles .tile .image {
    max-width: 220px;
    margin: auto !important;
  }
}
#page-committee .content .tiles .tile .image img {
  width: 100%;
  height: 100%;
  margin-bottom: -6px;
}
#page-committee .content .tiles .tile .name {
  margin-top: 10px;
}
#page-committee .content .tiles .tile .name h3 {
  font-family: Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 18px;
  text-transform: capitalize;
}
#page-committee .content .tiles .tile .position {
  font-family: Helvetica, sans-serif;
  font-size: 18px;
  line-height: 18px;
}

/* ==========================================================================
   PAGE - CONTACT
   ========================================================================== */
#contact-page {
  text-align: left;
}
#contact-page .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
  text-align: center;
}
#contact-page .content #contact-donations {
  width: 100%;
  max-width: 800px;
  margin: 0 auto 50px auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
#contact-page .content #contact-donations #contact-donations-image {
  width: 300px;
  flex-shrink: 0;
}
#contact-page .content #contact-donations #contact-donations-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border: 1px solid black;
}
#contact-page .content #contact-donations #contact-donations-button {
  border: 2px solid black;
  text-align: center;
  width: 240px;
  flex-shrink: 0;
}
#contact-page .content #contact-donations #contact-donations-button #contact-donations-name {
  background-color: black;
  color: #FFFFFF;
  text-transform: uppercase;
  padding: 10px;
  font-weight: 700;
}
#contact-page .content #contact-donations #contact-donations-button #contact-donations-amount {
  padding: 10px;
  color: #FFFFFF;
  background-color: #0076BA;
}
#contact-page .content #contact-donations #contact-donations-button #contact-donations-add-cart {
  background-color: black;
  padding: 10px;
  display: inline-block;
  width: 100%;
  color: white;
  text-decoration: none;
}
/* Donation Banner Styles */
.donation-banner {
    background-color: #000000;
    border: 8px solid #0066cc;
    padding: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
}

.donation-banner-text {
    color: #ffffff;
    font-family: Arial, sans-serif;
}

.donation-title {
    font-size: 16px;
    font-weight: normal;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.donation-subtitle {
    font-size: 22px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Responsive styles for mobile */
@media screen and (max-width: 768px) {
  #contact-page .content #contact-donations {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }
  
  #contact-page .content #contact-donations #contact-donations-image {
    width: 280px;
  }
  
  #contact-page .content #contact-donations #contact-donations-button {
    width: 280px;
  }
}

/* ==========================================================================
   PAGE - HISTORY
   ========================================================================== */
#history-page {
  text-align: left;
}
#history-page .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#history-page .content figcaption {
  color: rgb(94, 94, 94);
  font-style: italic;
  text-align: center;
}
#history-page .content strong {
  font-weight: bold;
}
#history-page .content .article-credit {
  color: rgb(94, 94, 94);
  font-style: italic;
  text-align: center;
}

/* ==========================================================================
   PAGE - HOME
   ========================================================================== */
   #page-home {
    width: 100%;
    text-align: left;
    padding: 20px 0;
    display: block; /* Changed from inline-block to block for better full-width behavior */
  }
  
  #page-home .inner {
    width: 1000px;
    max-width: 90%;
    margin: auto;
    /* MERGED AND ADDED FLEXBOX PROPERTIES */
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
  }
  
  /* NEW LEFT CONTENT BLOCK STYLES */
  #page-home .left-content-block {
    flex: 0 0 200px; /* Do not grow, do not shrink, base width 200px */
    margin-right: 30px; /* Increased margin slightly for better separation */
    text-align: center;
  }
  
  #page-home .left-content-block .bio-image img {
    max-width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 10px;
    display: block; /* Ensures centering with auto margins */
    margin-left: auto;
    margin-right: auto;
  }
  #page-home .left-content-block .bio-name {
    font-weight: bold;
    margin-bottom: 5px;
    text-align: left;
    text-transform: uppercase;
    color: #045184;
  }
  #page-home .left-content-block .bio-title {
    font-size: 0.9em;
    text-align: left;
  }
  #page-home .left-content-block .bio-company-1 {
    font-size: 0.9em;
    text-align: left;
  }
  #page-home .left-content-block .bio-company-2 {
    font-size: 0.9em;
    text-align: left;
  }
  #page-home .inner .content {
    flex: 1; 
    min-width: 450px; 
    margin-right: 30px; /* Space between main content and right sidebar */
  }

  #page-home .inner .content p:first-of-type {
    font-weight: bold;

}

/* Ensure subsequent paragraphs are not bold if they somehow inherit it */
#page-home .inner .content p {
    font-weight: normal; /* This ensures all paragraphs are normal by default */
    font-style: italic; /* As per your image, the main text is italic */
    font-size: 16px; /* As per our previous discussion for main content text */
    line-height: 1.6;
}
  
  /* MODIFIED RIGHT SIDEBAR STYLES FOR FLEXBOX */
  #page-home .inner .sidebar {
    flex: 0 0 250px; /* Fixed width for the sidebar */
    text-align: center;
    /* Original width: 100%; and display: inline-block; removed as flex property manages layout */
  }
  
  #page-home .inner .sidebar .facebook {
    padding: 10px;
    width: 250px;
    margin: auto;
  }
  #page-home .inner .sidebar .facebook img {
    width: 100%;
  }
  #page-home .inner .sidebar .section {
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: 300px; /* This max-width will apply within the 250px sidebar */
    margin: 0 auto 10px auto;
  }
  #page-home .inner .sidebar .section .featured-product {
    padding-top: 20px;
  }
  #page-home .inner .sidebar .section img {
    width: 100%;
    height: auto;
    border: 1px solid black;
  }
  #page-home .inner .sidebar .section span {
    text-transform: uppercase;
    font-weight: bold;
    font-size: 18px;
    padding: 0 10px;
  }
  #page-home .inner .sidebar .section a {
    color: inherit;
    text-decoration: none;
  }
  #page-home .inner .sidebar .section a:hover {
    text-decoration: underline;
  }

@media screen and (min-width: 550px) {
  #page-home .inner .sidebar .section {
    width: 50%;
    max-width: 700px;
    float: left;
    margin: 0;
  }
  #page-home .inner .sidebar .section:nth-of-type(2) {
    padding-right: 10px;
    padding-bottom: 20px;
  }
  #page-home .inner .sidebar .section:nth-of-type(3) {
    padding-left: 10px;
    padding-bottom: 20px !important;
  }
}
@media screen and (min-width: 850px) {
  #page-home .inner .content {
    width: calc(100% - 200px);
    float: left;
    padding-right: 40px;
  }
  #page-home .inner .sidebar {
    width: 200px;
    /* height: 700px; - reenable this for later*/
  }
  #page-home .inner .sidebar .facebook {
    padding: 0 10px 10px 10px;
    max-width: 150px;
  }
  #page-home .inner .sidebar .section {
    padding-bottom: 20px;
    text-align: center;
    width: 100%;
    max-width: 100%;
  }
  #page-home .inner .sidebar .section:nth-of-type(2) {
    padding: 0 0 20px 0;
  }
  #page-home .inner .sidebar .section:nth-of-type(3) {
    padding: 0;
  }
}

/* ==========================================================================
   PAGE - INDEX
   ========================================================================== */
#index-page {
  text-align: center;
}
#index-page .content {
  padding: 70px 0;
  width: 1000px;
  max-width: 90%;
  margin: auto;
}
#index-page .content .back-to-home {
  color: inherit;
  text-decoration: none;
}
#index-page .content .back-to-home:hover {
  text-decoration: underline;
}
#index-page .content input {
  height: 40px;
  padding-left: 10px;
  border-radius: 0;
  border: 1px solid black;
}
#index-page .content nav.woocommerce-MyAccount-navigation {
  width: 100%;
  margin-bottom: 20px;
}
@media screen and (min-width: 800px) {
  #index-page .content nav.woocommerce-MyAccount-navigation {
    width: 22%;
  }
}
#index-page .content nav.woocommerce-MyAccount-navigation ul {
  list-style-type: none;
  padding-left: 0;
  font-size: 17px;
  line-height: 26px;
  text-align: center;
}
@media screen and (min-width: 800px) {
  #index-page .content nav.woocommerce-MyAccount-navigation ul {
    max-width: 200px;
    text-align: left;
  }
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li {
  padding: 8px 20px;
  background-color: rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  color: inherit;
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li.is-active {
  background-color: rgba(0, 0, 0, 0.1);
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li.is-active a {
  color: rgba(0, 0, 0, 0.8);
  cursor: default;
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li.is-active:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0, 0, 0, 0.1);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
  display: none;
}
@media screen and (min-width: 800px) {
  #index-page .content nav.woocommerce-MyAccount-navigation ul li.is-active:after {
    display: inline-block;
  }
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover {
  background-color: rgba(0, 0, 0, 0.07);
}
#index-page .content nav.woocommerce-MyAccount-navigation ul li:not(.is-active):hover:after {
  content: "";
  height: 0;
  width: 0;
  border-top: 20px solid transparent;
  border-left: 14px solid rgba(0, 0, 0, 0.07);
  border-bottom: 20px solid transparent;
  float: right;
  margin-right: -34px;
  margin-top: -7px;
}
#index-page .content .woocommerce-MyAccount-content {
  text-align: left;
  width: 100%;
}
@media screen and (min-width: 800px) {
  #index-page .content .woocommerce-MyAccount-content {
    width: 78%;
    padding-left: 20px;
  }
}

/* ==========================================================================
   PAGE - MEMBERSHIP
   ========================================================================== */
#membership-page {
  text-align: left;
}
#membership-page .content {
  padding: 70px 0;
  width: 300px;
  max-width: 90%;
  margin: auto;
}
@media screen and (min-width: 600px) {
  #membership-page .content {
    width: 700px;
  }
}
#membership-page .content .tg-mem-product {
  width: 100%;
  padding: 30px 0;
}
#membership-page .content .tg-mem-product:nth-of-type(1), #membership-page .content .tg-mem-product:nth-of-type(3) {
  border-bottom: 3px solid #F8BB00;
}
@media screen and (min-width: 600px) {
  #membership-page .content .tg-mem-product {
    display: flex;
  }
}
#membership-page .content .tg-mem-product .tg-mem-description {
  font-style: italic;
  text-align: center;
}
@media screen and (min-width: 600px) {
  #membership-page .content .tg-mem-product .tg-mem-description {
    width: calc(50% - 100px);
    text-align: left;
  }
}
#membership-page .content .tg-mem-product .tg-mem-image {
  width: 100px;
  height: 100px;
  margin: 20px auto;
}
@media screen and (min-width: 600px) {
  #membership-page .content .tg-mem-product .tg-mem-image {
    margin: 0 50px;
  }
}
#membership-page .content .tg-mem-product .tg-mem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (min-width: 600px) {
  #membership-page .content .tg-mem-product .tg-mem-details {
    width: calc(50% - 100px);
  }
}
#membership-page .content .tg-mem-product .tg-mem-details .tg-mem-details-inner {
  border: 2px solid black;
  text-align: center;
  width: 100%;
}
#membership-page .content .tg-mem-product .tg-mem-details .tg-mem-details-inner .tg-mem-name {
  background-color: black;
  color: #F8BB00;
  text-transform: uppercase;
  padding: 10px;
  font-weight: 400;
}
#membership-page .content .tg-mem-product .tg-mem-details .tg-mem-details-inner .tg-mem-price {
  padding: 10px;
}
#membership-page .content .tg-mem-product .tg-mem-details .tg-mem-details-inner .tg-mem-button {
  background-color: black;
  padding: 10px;
  display: inline-block;
  width: 100%;
  color: white;
  text-decoration: none;
}

#rum-raffle-page {
  text-align: left;
}
#rum-raffle-page .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#rum-raffle-page .content figcaption {
  color: #357CA2;
  font-style: italic;
  text-align: center;
}
#rum-raffle-page .content p {
  margin-top: 20px;
}
#rum-raffle-page .content .button {
  background: #000;
  padding: 20px;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  max-width: 250px;
  margin: auto;
  text-align: center;
}

/* ==========================================================================
   PAGE - PRIVACY
   ========================================================================== */
#privacy-page {
  text-align: left;
}
#privacy-page .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
  text-align: left;
}

/* ==========================================================================
   PAGE - TERMS
   ========================================================================== */
#terms-page {
  text-align: left;
}
#terms-page .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
  text-align: left;
}
#terms-page .content h5, #terms-page .content li {
  margin-bottom: 0.9rem;
}
#terms-page .content h2 {
  margin-bottom: 1.9rem;
}
#terms-page .content ol {
  list-style: auto;
  padding: 0 30px;
}

/* ==========================================================================
   PAGE - THANK YOU
   ========================================================================== */
/* ==========================================================================
   SINGLE - ADVERTS
   ========================================================================== */
/* ==========================================================================
   SINGLE - ANNUAL REPORTS
   ========================================================================== */
/* ==========================================================================
SINGLE - EVENT
========================================================================== */
#tribe-events-content .tribe-events-back {
  font-family: Helvetica, serif;
  margin-bottom: 20px;
}
#tribe-events-content .tribe-events-back a {
  font-family: Helvetica, serif;
}
#tribe-events-content .tribe-events-schedule {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
#tribe-events-content .type-tribe_events {
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#tribe-events-content .tribe-events-content {
  padding: 40px 0 0px 0;
}
#tribe-events-content .tribe-events-content p {
  font-size: 16px;
}
#tribe-events-content #tribe-tickets__tickets-form {
  margin: 25px auto;
}
#tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-item-details-content {
  text-align: left;
  font-size: 14px;
}
#tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-item-content-title, #tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-item-details-content, #tribe-events-content #tribe-tickets__tickets-form .tribe-currency-symbol, #tribe-events-content #tribe-tickets__tickets-form .tribe-amount, #tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-item-extra-available, #tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-item-quantity-number-input {
  color: #000 !important;
}
#tribe-events-content #tribe-tickets__tickets-form .tribe-formatted-currency-wrap, #tribe-events-content #tribe-tickets__tickets-form .tribe-events-c-subscribe-dropdown__button-text, #tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-item-quantity-number-input, #tribe-events-content #tribe-tickets__tickets-form .tribe-tickets__tickets-footer-quantity-number {
  font-family: sans-serif;
}
#tribe-events-content .tribe-events-event-meta {
  width: 100%;
  margin: 0 auto;
}
#tribe-events-content .tribe-common-c-btn-border, #tribe-events-content .tribe-common-c-btn {
  background-color: #0F52BA !important;
  color: #fff !important;
  border: 0 !important;
  font-family: sans-serif;
}
#tribe-events-content .tribe-events-meta-group, #tribe-events-content .tribe-events-back {
  display: none;
}

#event-introduction {
  text-align: left;
}
#event-introduction .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#event-introduction .content figcaption {
  color: #357CA2;
  font-style: italic;
  text-align: center;
}

#events-page-pdf {
  text-align: center;
}
#events-page-pdf .content {
  padding: 0px 0 0 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#events-page-pdf .content .row {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-top: 40px;
}
#events-page-pdf .content .row .image {
  height: 220px;
  width: 100%;
  display: inline-block;
  background-color: grey;
  border: 1px solid black;
}
@media screen and (min-width: 650px) {
  #events-page-pdf .content .row .image {
    height: 100%;
    width: 45%;
  }
}
#events-page-pdf .content .row .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#events-page-pdf .content .row .name {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (min-width: 650px) {
  #events-page-pdf .content .row .name a h2 {
    font-size: 36px;
    line-height: 36px;
  }
  #events-page-pdf .content .row .name h2 {
    font-size: 36px;
    line-height: 36px;
  }
}
#events-page-pdf .content .row .name a {
  text-decoration: none;
  color: inherit;
}
#events-page-pdf .content .row .name a h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
}
#events-page-pdf .content .row .name h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
}

#tribe-events-pg-template .terms-and-conditions-section {
  text-align: left;
  max-width: 700px;
  margin: 0 auto;
  padding-top: 70px;
}
#tribe-events-pg-template h5, #tribe-events-pg-template li, #tribe-events-pg-template p {
  margin-bottom: 0.9rem;
}
#tribe-events-pg-template h2 {
  margin-bottom: 0rem;
}

/* ==========================================================================
SINGLE - EVENTS
========================================================================== */
#tribe-events-content .tribe-events-back {
  font-family: Helvetica, serif;
  margin-bottom: 20px;
}
#tribe-events-content .tribe-events-back a {
  font-family: Helvetica, serif;
}
#tribe-events-content .tribe-events-schedule {
  display: block;
  width: 100%;
  margin-bottom: 0;
}
#tribe-events-content .type-tribe_events {
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#tribe-events-content .tribe-events-content {
  padding: 40px 0 0px 0;
}
#tribe-events-content .tribe-events-content p {
  font-size: 16px;
}
#tribe-events-content #tribe-tickets__tickets-form {
  margin: 25px auto;
}
#tribe-events-content .tribe-events-event-meta {
  width: 100%;
  margin: 0 auto;
}
#tribe-events-content .tribe-common-c-btn-border, #tribe-events-content .tribe-common-c-btn {
  background-color: #0F52BA !important;
  color: #fff !important;
  border: 0 !important;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 5px;
  justify-content: center;
}
#tribe-events-content .tribe-common-c-svgicon--cal-export {
  fill: #fff !important;
}

#event-introduction {
  text-align: left;
}
#event-introduction .content {
  padding: 70px 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#event-introduction .content figcaption {
  color: #357CA2;
  font-style: italic;
  text-align: center;
}

#events-page-pdf {
  text-align: center;
}
#events-page-pdf .content {
  padding: 0px 0 0 0;
  width: 700px;
  max-width: 90%;
  margin: auto;
}
#events-page-pdf .content .row {
  width: 100%;
  height: auto;
  display: inline-block;
  margin-top: 30px;
}
#events-page-pdf .content .row .image {
  height: 220px;
  width: 100%;
  display: inline-block;
  background-color: grey;
  border: 1px solid black;
}
@media screen and (min-width: 650px) {
  #events-page-pdf .content .row .image {
    height: 100%;
    width: 45%;
  }
}
#events-page-pdf .content .row .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#events-page-pdf .content .row .name {
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 20px;
}
@media screen and (min-width: 650px) {
  #events-page-pdf .content .row .name a h2 {
    font-size: 36px;
    line-height: 36px;
  }
  #events-page-pdf .content .row .name h2 {
    font-size: 36px;
    line-height: 36px;
  }
}
#events-page-pdf .content .row .name a {
  text-decoration: none;
  color: inherit;
}
#events-page-pdf .content .row .name a h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
}
#events-page-pdf .content .row .name h2 {
  text-transform: uppercase;
  font-size: 30px;
  line-height: 30px;
  font-family: Helvetica, sans-serif;
  font-weight: 300;
}

/* ==========================================================================
   SINGLE - MEDIA RELEASES
   ========================================================================== */
/* ==========================================================================
   SINGLE - VOICE PIPES
   ========================================================================== */
/* ==========================================================================
   WOOCOMMERCE STORE PAGE
   ========================================================================== */
#store-page {
  text-align: center;
}
#store-page .woocommerce div.product {
  text-align: center;
}
#store-page .woocommerce div.product div.summary {
  text-align: left;
}
#store-page .content {
  padding: 70px 0;
  width: 1000px;
  max-width: 90%;
  margin: auto;
  display: inline-block;
  text-align: left;
}
#store-page .content .page-title,
#store-page .content .orderby,
#store-page .content .woocommerce-result-count,
#store-page .content .add_to_cart_button,
#store-page .content .woocommerce-loop-product__title,
#store-page .content .woocommerce-LoopProduct-link,
#store-page .content .price,
#store-page .content .product_type_variable,
#store-page .content .product_type_simple {
  display: none;
}
#store-page .content .products {
  max-width: 300px;
  margin: auto;
}
#store-page .content .products .product {
  width: 100%;
  margin-bottom: 0;
  text-align: center;
}
#store-page .content .products .product .tg-product {
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}
@media screen and (min-width: 650px) {
  #store-page .content .products {
    max-width: 550px;
  }
}
#store-page .content .tg-product-image {
  width: 100%;
  height: 200px;
}
#store-page .content .tg-product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 650px) {
  #store-page .content .tg-product-image {
    width: 48%;
    float: left;
  }
}
#store-page .content .tg-product-details {
  width: 100%;
  border: 2px solid black;
  float: right;
  text-align: center;
  position: relative;
  margin-top: 30px;
}
#store-page .content .tg-product-details .tg-product-name {
  background-color: black;
  color: #F8BB00;
  text-transform: uppercase;
  padding: 10px;
  font-weight: 400;
}
#store-page .content .tg-product-details .tg-product-price {
  padding: 10px;
}
#store-page .content .tg-product-details .tg-product-button {
  background-color: black;
  padding: 10px;
  display: inline-block;
  width: 100%;
  color: white;
}
#store-page .content .tg-product-details .tg-out-of-stock-notice {
  color: red;
  position: absolute;
  right: -20px;
  bottom: 57px;
  transform: rotate(-8deg);
  text-transform: uppercase;
  font-family: "Times New Roman", serif;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (min-width: 650px) {
  #store-page .content .tg-product-details {
    width: 48%;
    float: right;
  }
  #store-page .content .tg-product-details .tg-out-of-stock-notice {
    right: -62px;
    transform: rotate(-10deg);
  }
}
#store-page .content .up-sells {
  display: inline-block;
  margin: 0 auto;
  width: 100%;
}
#store-page .content .up-sells h2 {
  padding-bottom: 20px;
}
#store-page .content .related {
  display: inline-block;
  margin: 0 auto;
}
#store-page .content .summary .variations_form .variations .value select {
  height: 40px;
  width: 200px;
  min-width: 150px;
  padding: 0 15px;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-color: rgba(0, 0, 0, 0.3);
  cursor: pointer;
  block-size: border-box;
}
#store-page .content .summary .variations_form .quantity .qty {
  height: 40px;
  width: 60px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  cursor: pointer;
  block-size: border-box;
}
#store-page .content .summary .single_add_to_cart_button,
#store-page .content .summary .variations_form .variations_button .button {
  height: 40px;
  width: 200px;
  cursor: pointer;
  border-radius: 0;
  background-color: black;
  color: white;
  font-weight: 400;
}
#store-page .content .summary .variations_form .variations .reset_variations {
  display: none !important;
}
#store-page .content .summary .variations_form .variations .label {
  block-size: border-box;
}
#store-page .content .single_variation_wrap .woocommerce-variation-availability {
  display: none;
}
#store-page .content .summary .product_meta {
  display: none;
}
#store-page .content .woocommerce-cart-form__cart-item .product-name a {
  color: inherit;
  text-decoration: none;
}
#store-page .content .woocommerce-cart-form__cart-item .quantity .qty {
  height: 40px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#store-page .content .cart .quantity .qty {
  height: 40px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#store-page .content .summary .in-stock {
  display: none;
}
#store-page .content .summary .product_title {
  line-height: 120%;
}
#store-page .content .coupon #coupon_code {
  border: 1px solid rgba(0, 0, 0, 0.3);
  height: 40px;
  width: 115px;
  padding-left: 15px;
}
#store-page .content .coupon .button {
  height: 40px;
  border-radius: 0;
}
#store-page .content #woocommerce-cart-nonce {
  height: 40px;
  border-radius: 0;
}
#store-page .content .actions button {
  height: 40px;
  border-radius: 0;
}
#store-page .content .cart-collaterals .wc-proceed-to-checkout .checkout-button {
  height: 40px;
  background-color: black;
  color: white;
  border-radius: 0;
  line-height: 40px;
  padding: 0 30px;
}
#store-page .content .place-order .button {
  border-radius: 0;
  background-color: black;
  height: 40px;
}
#store-page .content .woocommerce-input-wrapper .wooccm-required-field,
#store-page .content .woocommerce-input-wrapper input,
#store-page .content .woocommerce-billing-fields .wooccm-required-field,
#store-page .content .woocommerce-billing-fields input {
  height: 40px;
  padding-left: 10px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
}
#store-page .content .woocommerce-additional-fields #order_comments {
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.3);
  height: 150px;
  padding: 10px;
}
#store-page .content .woocommerce-Tabs-panel {
  margin: 50px 0;
}
#store-page .content .woocommerce-Tabs-panel h3 {
  margin-bottom: 30px;
}
#store-page .content .woocommerce-Tabs-panel p {
  text-align: left;
  max-width: 700px;
  margin: auto;
}
#store-page .content .variations {
  margin-bottom: 0;
}
#store-page .content .quantity {
  margin-top: 15px;
}
#store-page .content .single_add_to_cart_button {
  margin-top: 15px;
}
#store-page .content .woocommerce-product-gallery__image {
  pointer-events: none;
}
#store-page .content .product-custom-fields {
  padding-bottom: 0;
}
#store-page .content .product-custom-fields .wapf-field-label {
  width: 22.8%;
  font-weight: bold;
  float: left;
}
#store-page .content .product-custom-fields .wapf-field-input {
  width: 200px;
  float: left;
}
#store-page .content .product-custom-fields .wapf-field-input input {
  height: 40px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  padding-left: 10px;
}
#store-page .content .woocommerce-form-login input {
  height: 40px;
  padding-left: 10px;
  border: 1px solid rgba(0, 0, 0, 0.3);
  border-radius: 0;
}
#store-page .jr-reunion-merch .woocommerce-pagination li {
  display: inline-block;
  border-right: 1px solid #cfc8d8;
  padding: 0;
  margin: 0;
  float: left;
  overflow: hidden;
  padding: 0.5em;
  min-width: 1em;
}

/* ==========================================================================
   LIST
   ========================================================================== */
#events-page {
  text-align: center;
  padding: 40px 0;
}
#events-page .header {
  width: 1000px;
  max-width: 90%;
  margin: auto;
}
@media screen and (min-width: 850px) {
  #events-page .header {
    display: flex;
  }
}
#events-page .header .image {
  width: 100%;
  height: 300px;
}
#events-page .header .image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (min-width: 850px) {
  #events-page .header .image {
    width: 300px;
    height: 300px;
  }
}
#events-page .header .content {
  text-align: center;
  width: 100%;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media screen and (min-width: 850px) {
  #events-page .header .content {
    text-align: left;
    width: calc(100% - 300px);
    padding-left: 40px;
    margin-top: 0;
  }
}
#events-page .header .content .date, #events-page .header .content .title, #events-page .header .content .subtitle {
  color: #0076BA;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.7);
  margin-bottom: 0;
}
#events-page .header .content .date {
  font-size: 30px;
  line-height: 1.2em;
}
#events-page .header .content .title {
  width: 100%;
}
#events-page .header .content .title h2 {
  font-size: 46px;
  line-height: 1.2em;
  margin-bottom: 0;
}
#events-page .header .content .subtitle {
  width: 100%;
  margin-bottom: 10px;
}
#events-page .header .content .subtitle h3 {
  font-size: 32px;
  line-height: 1.2em;
  margin-bottom: 0;
}
#events-page .header .content .text {
  width: 100%;
}
#events-page .table {
  width: 1000px;
  max-width: 90%;
  margin: 40px auto;
  border-collapse: collapse;
  empty-cells: show;
}
#events-page .table table, #events-page .table th, #events-page .table td {
  border: 1px solid black;
  border-collapse: collapse;
}
#events-page .table table {
  width: 100%;
  font-size: 12px;
}
#events-page .table table .events-date-col {
  border: 1px solid green;
  min-width: 60px;
}
@media screen and (min-width: 750px) {
  #events-page .table table .events-date-col {
    min-width: 100px;
  }
}
#events-page .table table tr:nth-of-type(2n) {
  background-color: #EEEEEE;
}
#events-page .table table tr th, #events-page .table table tr td {
  padding: 5px 3px;
}
#events-page .table table tr th {
  text-transform: uppercase;
  font-size: 12px;
}
#events-page .table table tr td {
  position: relative;
}
#events-page .table table tr td:first-of-type {
  text-align: right;
}
#events-page .table table tr td:last-of-type {
  text-align: left;
}
@media screen and (min-width: 750px) {
  #events-page .table table {
    font-size: 18px;
  }
  #events-page .table table tr th {
    font-size: 24px;
  }
  #events-page .table table tr th, #events-page .table table tr td {
    padding: 10px;
  }
}
#events-page .table table .cancelled {
  position: relative;
}
#events-page .table table .cancelled td:before {
  content: " ";
  position: absolute;
  top: 50%;
  left: 0;
  border-bottom: 3px solid red;
  width: 100%;
  right: 20%;
}
@media screen and (min-width: 600px) {
  #events-page .table table .cancelled td:first-of-type:before {
    left: 20%;
    right: 0;
  }
}
@media screen and (min-width: 600px) {
  #events-page .table table .cancelled td:last-of-type:before {
    width: 80%;
    left: 0;
  }
}
#events-page .table table .cancelled td:last-of-type:after {
  display: none;
  position: absolute;
  content: "cancelled";
  right: -30px;
  color: red;
  text-transform: uppercase;
  font-size: 16px;
  font-weight: bold;
  top: 20px;
}
@media screen and (min-width: 600px) {
  #events-page .table table .cancelled td:last-of-type:after {
    display: inline-block;
  }
}

/* ==========================================================================
   CHECKOUT
   ========================================================================== */
#ticket_checkout .tribe-tickets__commerce-checkout {
  margin: 0 auto;
}
#ticket_checkout footer {
  background-color: #F8BB00;
}
#ticket_checkout .tribe-tickets__commerce-checkout-cart-footer {
  padding: 20px;
}
#ticket_checkout .tribe-common-anchor-alt {
  border: 0;
}
#ticket_checkout .tribe-common-c-btn.tribe-tickets__commerce-checkout-form-submit-button {
  background-color: #000;
}

#store-page #place_order {
  color: #fff;
  border: 0;
  padding: 10px 20px;
}
#store-page #license_and_state_field {
  display: none;
}

/* ==========================================================================
   SUCCESS
   ========================================================================== */
#order-success .tribe-tickets__commerce-order {
  margin: 0 auto;
}
#order-success .tribe-tickets__commerce-order .tribe-common-b2.tribe-tickets__commerce-order-footer-links {
  background-color: #F8BB00;
  padding: 10px 0;
}
#order-success .tribe-tickets__commerce-order .tribe-common-b2.tribe-tickets__commerce-order-footer-links a {
  border-bottom: 0;
}

/* ==========================================================================
   PAGE - EVENT REGISTRATION
   ========================================================================== */
#event-registration-page {
  text-align: center;
}
#event-registration-page .content {
  padding: 0px 0;
  width: 600px;
  max-width: 100%;
  margin: auto;
}
#event-registration-page .content .jet-fb-form-block .jet-form-builder__label-text {
  text-align: left;
  margin-bottom: 10px;
  margin-top: 10px;
  font-family: sans-serif;
  font-weight: 600;
}
#event-registration-page .content .jet-fb-form-block input[type=date] {
  padding: 10px;
}
#event-registration-page .content .jet-fb-form-block select, #event-registration-page .content .jet-fb-form-block input, #event-registration-page .content .jet-fb-form-block textarea {
  height: 40px;
  padding: 10px;
}
#event-registration-page .content .jet-fb-form-block .jet-form-builder__action-button {
  width: 100%;
  justify-content: center;
  text-align: center;
  height: 40px;
  background-color: #000;
  color: #fff;
  font-weight: bold;
  align-items: center;
}
#event-registration-page .content .jet-fb-form-block h4 {
  font-size: 20px;
  font-weight: bold;
  font-family: sans-serif;
  margin: 20px 0 10px;
}
#event-registration-page .content .jet-fb-form-block select, #event-registration-page .content .jet-fb-form-block textarea {
  border-color: #000;
  border-radius: 0;
}
#event-registration-page .content .jet-fb-form-block textarea {
  height: 105px;
}
#event-registration-page .content .tribe-common-h6--min-medium {
  font-family: sans-serif;
  text-align: left;
  padding: 10px;
}
#event-registration-page .content .tribe-tickets__tickets-sale-price {
  font-family: sans-serif;
}
#event-registration-page .content .tribe-tickets__tickets-item-extra {
  align-self: center;
}
#event-registration-page .content .tribe-common-h1--min-medium, #event-registration-page .content .tribe-tickets__mini-cart-title, #event-registration-page .content .tribe-tickets__attendee-tickets-item-title {
  display: none;
}

/*# sourceMappingURL=styles.css.map */
