/*
================================================================================
CONTENT:
================================================================================
*/

@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 400;
  src: url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-400.eot');
  src: url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-400.eot?#iefix') format('embedded-opentype'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-400.woff2') format('woff2'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-400.woff') format('woff'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-400.ttf') format('truetype'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-400.svg') format('svg');
}

@font-face {
  font-family: 'Rawline';
  font-style: normal;
  font-weight: 700;
  src: url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-700.eot');
  src: url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-700.eot?#iefix') format('embedded-opentype'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-700.woff2') format('woff2'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-700.woff') format('woff'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-700.ttf') format('truetype'),
    url('//cdn.rawgit.com/h-ibaldo/Raleway_Fixed_Numerals/master/font/rawline-700.svg') format('svg');
}

/* set the base size on HTML element so "em" & "rem" work correctly */
html {
  font-size: 17px;
}

body {
  overflow-x: hidden;
  font-family: 'Rawline', 'Raleway', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", sans-serif;
  font-size: inherit;
  line-height: 1.5;
  color: #373840;
}

/* WYSIWYG
-------------------------------------------------------------------------------- */
body.wysiwyg-content {
  margin: 4px;
  color: #333;
  background-color: #fff;
}

body.wysiwyg-content img {
  height: auto;
}

body.wysiwyg-content table {
  border: 1px solid;
}

body.wysiwyg-content .collapse {
  display: block;
}

body.wysiwyg-content .flexslider li {
  display: block;
}

body.wysiwyg-content [class^="col"] {
  margin: 5px;
  padding: 10px;
  border: 1px dashed #d6d6d6;
}

/* Links
-------------------------------------------------------------------------------- */
a {
  color: var(--primary-color);
  transition: all .2s ease-in-out;
}

a:hover {
  color: var(--primary-color-darker);
}

/* disable cursor if href is empty */
a[href=""] {
  pointer-events: none;
}


/* Headings
-------------------------------------------------------------------------------- */
h1,
h2,
h3,
h4,
h5 {
  margin-top: 0;
  font-weight: 600;
}

h1 {
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
}

h2 {
  margin-bottom: 40px;
  font-size: 30px;
  font-weight: 700;
  line-height: 1.2;
  color: #00a6e4;
  text-transform: uppercase;
  letter-spacing: 2px;
}

h3 {
  margin: 10px 0;
  font-size: 24.5px;
  font-weight: 700;
  line-height: 40px;
  text-transform: uppercase;
}

h4 {
  font-size: 105%;
}

h5 {
  font-size: 90%;
}

h1:only-child,
h2:only-child,
h3:only-child,
h4:only-child,
h5:only-child {
  margin-bottom: 0;
}

/* No Filter if Heading has a link */
h1:has(a),
h2:has(a),
h3:has(a),
h4:has(a),
h5:has(a) {
  filter: none;
}

/* Firefox doesn't support ":has()" */
@-moz-document url-prefix() {

  h1,
  h2,
  h3,
  h4,
  h5 {
    filter: none;
  }
}


/* Paragraphs
-------------------------------------------------------------------------------- */
p:only-child {
  margin-bottom: 0;
}

.lead {
  font-size: 130%;
  font-weight: normal;
}

small {
  color: inherit !important;
}


/* Images
-------------------------------------------------------------------------------- */
img {
  max-width: 100%;
  height: auto;
}

.placeholder {
  display: block;
  width: 100%;
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  background-color: rgba(0, 50, 100, 0.05);
  border: 1px solid rgba(51, 50, 50, 0.1);
  fill: #33323259;
}

/* Blockquote
-------------------------------------------------------------------------------- */
blockquote {
  position: relative;
  padding-left: 60px;
  font-family: Georgia, 'Times New Roman', Times, serif;
  font-size: 110%;
  font-style: italic;
  border-left: 0;
}

blockquote::before {
  content: "\201C";
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 4em;
}

blockquote footer,
blockquote small,
blockquote .small {
  font-family: Arial, Helvetica, sans-serif;
  font-style: normal;
  color: inherit;
  opacity: 0.5;
}


/* Lists
-------------------------------------------------------------------------------- */
ul,
ol {
  position: relative;
}

::marker {
  color: var(--primary-color);
}


/* List Inline
------------------------------------ */
.list-inline {
  margin-bottom: 0;
}

.list-inline a:not(.btn) {
  display: block;
  padding-right: 4px;
}


/* List Checkmark
------------------------------------
<ul class="list-checkmark">
*/

.list-checkmark {
  list-style: none;
}

.list-checkmark > li::before {
  content: "\f00c";
  display: inline-block;
  width: 1.25em;
  margin-left: -1.3em;
  font-family: "FontAwesome";
  color: var(--primary-color);
}


/* Tables
-------------------------------------------------------------------------------- */
thead {
  color: #fff;
  background-color: var(--accent-color);
}

th {
  font-size: 80%;
  text-transform: uppercase;
  letter-spacing: 1px;
}


/* Card
--------------------------------------------------------------------------------
<div class="card">
  <div class="card-thumbnail" />
  <div class="card-body" />
</div>
*/

.card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-bottom: 30px;
  padding: 30px;
  overflow: hidden;
  color: #666;
  background-color: #fff;
  border-radius: 6px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: all 200ms;
}

.card:hover {
  box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.2);
}

.card:hover {
  box-shadow: 0px 8px 24px rgba(149, 157, 165, 0.35);
}

.card-thumbnail {
  margin: -30px -30px 30px -30px;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.05);
  border: 0;
  box-shadow: 0 0 0.7px;
}

.card-thumbnail img {
  width: 100%;
  height: 100%;
  max-height: 200px;
  transition: all 200ms;
  object-fit: cover;
}

.card:hover .card-thumbnail img {
  transform: scale(1.05);
}

.card-body {
  flex: 1;
}

.card > *:last-child {
  margin-bottom: 0;
}


/* Modals
-------------------------------------------------------------------------------- */
.modal-content {
  color: #333;
  border: 0;
}

.modal-header {
  color: #fff;
  background-color: var(--primary-color);
  border-bottom: 0;
}

.modal-header .close {
  margin: 0 !important;
  padding: 5px 15px !important;
  font-size: 30px !important;
  line-height: 1 !important;
  color: inherit;
  border-color: inherit !important;
  opacity: 0.7;
}

.modal-title {
  margin: 0;
}


/* Responsive Media Container
-------------------------------------------------------------------------------- */
.media-container {
  position: relative;
  float: none;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  clear: both;
}

.media-container > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


/* Fission Stuff - Do Not Delete
-------------------------------------------------------------------------------- */
.fission-form-box {
  width: 64px;
  height: 64px;
  background-image: url(/cmscore/js/tiny_mce/plugins/pfforms/images/pfforms-placeholder.gif);
  background-repeat: no-repeat;
}

pre {
  padding: 10px;
  color: #fff;
  background-color: #23241f;
  border-radius: 3px;
}


/* Concert List ex. /concerts-2023
-------------------------------------------------------------------------------- */
table.concert-list {
  width: 70%;
  margin: auto;
}

@media(min-width: 768px) and (max-width:991px) {
  table.concert-list {
    width: 100% !important;
  }
}

@media(max-width: 767px) {
  table.concert-list {
    width: 90% !important;
  }
}

table.concert-list tr:nth-child(odd) {
  background-color: #f5f5f5;
}

table.concert-list td {
  padding: 0 15px;
}

@media(max-width: 767px) {
  table.concert-list td {
    padding: 0 10px;
  }
}

@media(min-width: 992px) {
  .concert-date-column {
    width: 32%;
  }
}

@media(min-width: 768px) and (max-width:991px) {
  .concert-date-column {
    width: 30%;
  }
}



/* Sponsor Accordion /support-donations-supporters
-------------------------------------------------------------------------------- */
.sponsor-accordion details {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  min-height: 5px;
  margin: 0 auto;
  padding: 30px;
  font-size: 22px;
  border: 1px solid rgba(0, 0, 0, .1);
  border-radius: 4px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

@media(max-width: 767px) {
  .sponsor-accordion details {
    width: 100%;
  }
}

.sponsor-accordion details:hover {
  border: 1px solid #42b3e8;
  border-radius: 4px;
}

.sponsor-accordion details:hover summary {
  color: #42b3e8;
}

.sponsor-accordion details + details {
  margin-top: 5px;
}

.sponsor-accordion details[open] {
  min-height: 40px;
  background-color: #f6f7f8;
  border-radius: 4px;
  box-shadow: 2px 2px 20px rgba(0, 0, 0, .2);
}

.sponsor-accordion details p {
  margin-top: 30px;
  font-weight: 300;
}

.sponsor-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  cursor: pointer;
  transition: all .3s;
}

.sponsor-accordion summary:focus {
  outline: none;
}

.sponsor-accordion summary:focus::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  box-shadow: 0 0 0 1px #42b3e8;
}

.sponsor-accordion summary::-webkit-details-marker {
  display: none;
}

.sponsor-accordion .control-icon {
  pointer-events: none;
  -webkit-transition: .3s ease;
  transition: .3s ease;
  fill: #42b3e8;
}

.sponsor-accordion .control-icon-close {
  display: none;
}

.sponsor-accordion details[open] .control-icon-close {
  display: initial;
  -webkit-transition: .3s ease;
  transition: .3s ease;
}

.sponsor-accordion details[open] .control-icon-expand {
  display: none;
}