/* LESS Mixin for CSS arrow
 *
 * Usage:
 * .arrow(size, color, direction, offset, border-size(optional), border-color(optional));
 *
 * 1. size: you can set pretty much whatever you want. Further tests required for em unit.
 * 2. color: sadly, no way to inherit. Use the same color as the background of your element.
 * 3. direction: the direction of the arrow (top, right, bottom, left).
 * 4. offset: the position on the side (20px, 50%, etc.).
 * 5. border-size (optional): you may have to set it 1px thinner than the actual border to smooth the rendering.
 * 6. border-color (optional): "inherit" as a default value.
 *
 *
 * Still many things to do and edge cases to fix.
 * It uses the :after pseudo-element to create the arrow. If there is a border, it uses the :before pseudo-element
 *
 * Changelog:
 * - now handles border
 * - "inherit" now supported as a @border-color value
 * - "inherit" now supported as a @color value as long as there is no border involved
 * - dramatically simplified the position
 * - drop-shadow enabled
 * - GitHub repo: https://github.com/HugoGiraudel/LESS-Mixin-for-CSS-arrows
 */
@import url('/Assets/fonts/MyFontsWebfontsKit.css');
.test {
  /* Size and position */
  box-sizing: border-box;
  display: block;
  width: 20%;
  padding: 10px;
  margin: 30px auto;
  /* Styles */
  background: #08C;
  border-color: #08C;
  border-radius: 3px;
  -webkit-filter: drop-shadow(0 4px 3px rgba(0, 0, 0, 0.3));
  /* Font styles */
  color: white;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  font-family: Arial, sans-serif;
  text-shadow: 0 -1px 1px rgba(0, 0, 0, 0.3);
}
.test1 {
  position: relative;
}
.test1:after,
.test1:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.test1:after {
  left: 100%;
  top: 50%;
  margin-top: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid inherit;
}
.test1:before {
  left: 100%;
  top: 50%;
  margin-top: -8px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 8px solid;
  border-left-color: inherit;
}
.test2 {
  border: 2px solid #006699;
  position: relative;
}
.test2:after,
.test2:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
}
.test2:after {
  top: 100%;
  left: 25%;
  margin-left: -20px;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #08C;
}
.test2:before {
  top: 100%;
  left: 25%;
  margin-left: -24px;
  border-left: 24px solid transparent;
  border-right: 24px solid transparent;
  border-top: 24px solid;
  border-top-color: #006699;
}
/* 
  TODO: Someday these imports will need to be updated with the ones included in the /bootstrap folder, and the existing imports removed
*/
img {
  display: block;
  max-width: 100%;
  height: auto;
}
/*! normalize.css v2.1.3 | MIT License | git.io/normalize */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}
audio,
canvas,
video {
  display: inline-block;
}
audio:not([controls]) {
  display: none;
  height: 0;
}
[hidden],
template {
  display: none;
}
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
a {
  background: transparent;
  cursor: pointer;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
abbr[title] {
  border-bottom: 1px dotted;
}
b,
strong {
  font-weight: bold;
}
dfn {
  font-style: italic;
}
hr {
  box-sizing: content-box;
  height: 0;
}
mark {
  background: #ff0;
  color: #000;
}
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em;
}
pre {
  white-space: pre-wrap;
}
q {
  quotes: '\201C' '\201D' '\2018' '\2019';
}
small {
  font-size: 80%;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
img {
  border: 0;
}
svg:not(:root) {
  overflow: hidden;
}
figure {
  margin: 0;
}
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}
legend {
  border: 0;
  padding: 0;
}
button,
input,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0;
}
button,
input {
  line-height: normal;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type='checkbox'],
input[type='radio'] {
  box-sizing: border-box;
  padding: 0;
}
input[type='search'] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type='search']::-webkit-search-cancel-button,
input[type='search']::-webkit-search-decoration {
  -webkit-appearance: none;
}
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
@media print {
  * {
    text-shadow: none !important;
    color: #000 !important;
    background: transparent !important;
    box-shadow: none !important;
  }
  a,
  a:visited {
    text-decoration: underline;
  }
  a[href]:after {
    content: ' (' attr(href) ')';
  }
  abbr[title]:after {
    content: ' (' attr(title) ')';
  }
  a[href^='javascript:']:after,
  a[href^='#']:after {
    content: '';
  }
  pre,
  blockquote {
    border: 1px solid #999;
    page-break-inside: avoid;
  }
  thead {
    display: table-header-group;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  img {
    max-width: 100% !important;
  }
  @page {
    margin: 2cm 0.5cm;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  select {
    background: #fff !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #ddd !important;
  }
}
html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
body {
  font-family: 'Gotham', sans-serif;
  font-size: 15px;
  line-height: 1.42857143;
  color: #222;
  background-color: #fff;
}
input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}
a {
  color: #222;
  text-decoration: none;
}
a:hover,
a:focus {
  color: #9eb5cb;
  text-decoration: underline;
}
a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
hr {
  margin-top: 21px;
  margin-bottom: 21px;
  border: 0;
  border-top: 1px solid #dad9d9;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.sr-only-focusable:active,
.sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  clip: auto;
}
@font-face {
  font-family: "Gotham";
  src: url('/fonts/Gotham Bold.otf');
  font-weight: 700;
}
@font-face {
  font-family: "Gotham";
  src: url('/fonts/Gotham Book.otf');
  font-weight: 400;
}
@font-face {
  font-family: "Gotham";
  src: url('/fonts/Gotham Light.otf');
  font-weight: 300;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}
h1,
.h1,
h2,
.h2,
h3,
.h3 {
  margin-top: 21px;
  margin-bottom: 10.5px;
}
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  margin-top: 10.5px;
  margin-bottom: 10.5px;
}
h1,
.h1 {
  font-size: 60px;
}
h2,
.h2 {
  font-size: 22px;
}
h3,
.h3 {
  font-size: 20px;
}
h4,
.h4 {
  font-size: 20px;
}
h5,
.h5 {
  font-size: 16px;
}
h6,
.h6 {
  font-size: 16px;
}
p {
  margin: 0 0 10.5px;
}
cite {
  font-style: normal;
}
ul,
ol {
  margin-top: 0;
  margin-bottom: 10.5px;
}
ul ul,
ol ul,
ul ol,
ol ol {
  margin-bottom: 0;
}
.list-unstyled {
  padding-left: 0;
  list-style: none;
}
.list-inline {
  padding-left: 0;
  list-style: none;
}
.list-inline > li {
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}
.list-inline > li:first-child {
  padding-left: 0;
}
dl {
  margin-top: 0;
  margin-bottom: 21px;
}
dt,
dd {
  line-height: 1.42857143;
}
dt {
  font-weight: bold;
}
dd {
  margin-left: 0;
}
abbr[title] {
  cursor: help;
  border-bottom: 1px dotted #999999;
}
address {
  margin-bottom: 21px;
  font-style: normal;
  line-height: 1.42857143;
}
code,
kbd,
pre,
samp {
  font-family: Menlo, Monaco, Consolas, 'Courier New', monospace;
}
code {
  padding: 2px 4px;
  font-size: 90%;
  color: #c7254e;
  background-color: #f9f2f4;
  white-space: nowrap;
}
kbd {
  padding: 2px 4px;
  font-size: 90%;
  color: #fff;
  background-color: #333;
}
pre {
  display: block;
  padding: 10px;
  margin: 0 0 10.5px;
  font-size: 14px;
  line-height: 1.42857143;
  word-break: break-all;
  word-wrap: break-word;
  color: #333333;
  background-color: #f5f5f5;
}
pre code {
  padding: 0;
  font-size: inherit;
  color: inherit;
  white-space: pre-wrap;
  background-color: transparent;
  border-radius: 0;
}
table {
  max-width: 100%;
  background-color: transparent;
}
th {
  text-align: left;
}
.table {
  width: 100%;
  margin-bottom: 21px;
}
.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
  padding: 8px;
  line-height: 1.42857143;
  vertical-align: top;
  border-top: 1px solid #ddd;
}
.table > thead > tr > th {
  vertical-align: bottom;
}
.table > caption + thead > tr:first-child > th,
.table > colgroup + thead > tr:first-child > th,
.table > thead:first-child > tr:first-child > th,
.table > caption + thead > tr:first-child > td,
.table > colgroup + thead > tr:first-child > td,
.table > thead:first-child > tr:first-child > td {
  border-top: 0;
}
.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
  padding: 5px;
}
.table-bordered {
  border: 1px solid #ddd;
}
.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
  border: 1px solid #ddd;
}
.table-striped > tbody > tr:nth-child(odd) > td,
.table-striped > tbody > tr:nth-child(odd) > th {
  background-color: #f9f9f9;
}
.table-hover > tbody > tr:hover > td,
.table-hover > tbody > tr:hover > th {
  background-color: #f5f5f5;
}
table col[class*="col-"] {
  position: static;
  float: none;
  display: table-column;
}
table td[class*="col-"],
table th[class*="col-"] {
  float: none;
  display: table-cell;
}
@media (max-width: 767px) {
  .table-responsive {
    width: 100%;
    margin-bottom: 15.75px;
    overflow-y: hidden;
    overflow-x: scroll;
    -ms-overflow-style: -ms-autohiding-scrollbar;
    border: 1px solid #ddd;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table {
    margin-bottom: 0;
  }
  .table-responsive > .table > thead > tr > th,
  .table-responsive > .table > tbody > tr > th,
  .table-responsive > .table > tfoot > tr > th,
  .table-responsive > .table > thead > tr > td,
  .table-responsive > .table > tbody > tr > td,
  .table-responsive > .table > tfoot > tr > td {
    white-space: nowrap;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:first-child,
  .table-responsive > .table-bordered > tbody > tr > th:first-child,
  .table-responsive > .table-bordered > tfoot > tr > th:first-child,
  .table-responsive > .table-bordered > thead > tr > td:first-child,
  .table-responsive > .table-bordered > tbody > tr > td:first-child,
  .table-responsive > .table-bordered > tfoot > tr > td:first-child {
    border-left: 0;
  }
  .table-responsive > .table-bordered > thead > tr > th:last-child,
  .table-responsive > .table-bordered > tbody > tr > th:last-child,
  .table-responsive > .table-bordered > tfoot > tr > th:last-child,
  .table-responsive > .table-bordered > thead > tr > td:last-child,
  .table-responsive > .table-bordered > tbody > tr > td:last-child,
  .table-responsive > .table-bordered > tfoot > tr > td:last-child {
    border-right: 0;
  }
  .table-responsive > .table-bordered > tbody > tr:last-child > th,
  .table-responsive > .table-bordered > tfoot > tr:last-child > th,
  .table-responsive > .table-bordered > tbody > tr:last-child > td,
  .table-responsive > .table-bordered > tfoot > tr:last-child > td {
    border-bottom: 0;
  }
}
fieldset {
  padding: 0;
  margin: 0;
  border: 0;
  min-inline-size: auto !important;
}
input[type='text'],
input[type='password'] {
  box-sizing: border-box;
}
label,
legend {
  display: inline-block;
  margin-bottom: 5px;
  font-weight: bold;
}
legend.form-legend {
  display: block;
  width: 100%;
  padding: 0;
  margin-bottom: 21px;
  font-size: 22.5px;
  line-height: inherit;
  color: #333333;
  border: 0;
  border-bottom: 1px solid #e5e5e5;
}
input,
input[type='search'],
select,
textarea {
  box-sizing: border-box;
}
input[type='radio'],
input[type='checkbox'] {
  margin: 4px 0 0;
  margin-top: 1px \9;
  /* IE8-9 */
  line-height: normal;
}
input[type='file'] {
  display: block;
}
select[multiple],
select[size] {
  height: auto;
}
select optgroup {
  font-size: inherit;
  font-style: inherit;
  font-family: inherit;
}
input[type='file']:focus,
input[type='radio']:focus,
input[type='checkbox']:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}
input[type='number']::-webkit-outer-spin-button,
input[type='number']::-webkit-inner-spin-button {
  height: auto;
}
.form-control {
  display: block;
  width: 100%;
  height: 35px;
  padding: 6px 12px;
  font-size: 15px;
  line-height: 1.42857143;
  color: #414042;
  background-image: none;
  border: 1px solid #ccc;
  border-radius: 4px;
  transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}
.form-control:focus {
  border-color: #66afe9;
  outline: 0;
  box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102, 175, 233, 0.6);
}
.form-control:-moz-placeholder {
  color: #999999;
}
.form-control::-moz-placeholder {
  color: #999999;
  opacity: 1;
}
.form-control:-ms-input-placeholder {
  color: #999999;
}
.form-control::-webkit-input-placeholder {
  color: #999999;
}
.form-control[disabled],
.form-control[readonly],
fieldset[disabled] .form-control {
  cursor: not-allowed;
  background-color: #eeeeee;
}
textarea.form-control {
  height: auto;
}
input[type='date'] {
  line-height: 35px;
}
.form-group {
  margin-bottom: 15px;
}
.form-group .radio:only-of-type,
.form-group .checkbox:only-of-type,
.form-group .checkbox-inline,
.form-group .radio-inline {
  margin-bottom: 14px;
}
.radio,
.checkbox {
  display: block;
  min-height: 21px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.radio label,
.checkbox label {
  display: inline;
  font-weight: normal;
  cursor: pointer;
}
.radio input[type='radio'],
.radio-inline input[type='radio'] {
  float: left;
  margin-left: -20px;
}
.radio + .radio,
.checkbox + .checkbox {
  margin-top: -5px;
}
.radio-inline,
.checkbox-inline {
  display: inline-block;
  padding-left: 20px;
  margin-bottom: 0;
  vertical-align: middle;
  font-weight: normal;
  cursor: pointer;
}
.radio-inline + .radio-inline,
.checkbox-inline + .checkbox-inline {
  margin-top: 0;
  margin-left: 10px;
}
input[type='radio'][disabled],
input[type='checkbox'][disabled],
.radio[disabled],
.radio-inline[disabled],
.checkbox[disabled],
.checkbox-inline[disabled],
fieldset[disabled] input[type='radio'],
fieldset[disabled] input[type='checkbox'],
fieldset[disabled] .radio,
fieldset[disabled] .radio-inline,
fieldset[disabled] .checkbox,
fieldset[disabled] .checkbox-inline {
  cursor: not-allowed;
}
.has-warning .help-block,
.has-warning .control-label,
.has-warning .radio,
.has-warning .checkbox,
.has-warning .radio-inline,
.has-warning .checkbox-inline {
  color: #8a6d3b;
}
.has-warning .form-control {
  border-color: #8a6d3b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-warning .form-control:focus {
  border-color: #66512c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
}
.has-warning .input-group-addon {
  color: #8a6d3b;
  border-color: #8a6d3b;
  background-color: #fcf8e3;
}
.has-error .help-block,
.has-error .control-label,
.has-error .radio,
.has-error .checkbox,
.has-error .radio-inline,
.has-error .checkbox-inline {
  color: #a94442;
}
.has-error .form-control {
  border-color: #a94442;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-error .form-control:focus {
  border-color: #843534;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
}
.has-error .input-group-addon {
  color: #a94442;
  border-color: #a94442;
  background-color: #f2dede;
}
.has-success .help-block,
.has-success .control-label,
.has-success .radio,
.has-success .checkbox,
.has-success .radio-inline,
.has-success .checkbox-inline {
  color: #3c763d;
}
.has-success .form-control {
  border-color: #3c763d;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
}
.has-success .form-control:focus {
  border-color: #2b542c;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
}
.has-success .input-group-addon {
  color: #3c763d;
  border-color: #3c763d;
  background-color: #dff0d8;
}
.form-control-static {
  margin-bottom: 0;
}
.help-block {
  display: block;
  margin-top: 5px;
  margin-bottom: 10px;
  color: #626262;
}
@media (min-width: 768px) {
  .form-inline .form-group {
    display: inline-block;
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .form-control {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .control-label {
    margin-bottom: 0;
    vertical-align: middle;
  }
  .form-inline .radio,
  .form-inline .checkbox {
    display: inline-block;
    margin-top: 0;
    margin-bottom: 0;
    padding-left: 0;
    vertical-align: middle;
  }
  .form-inline .radio input[type='radio'],
  .form-inline .checkbox input[type='checkbox'] {
    float: none;
    margin-left: 0;
  }
}
.error-state .umbraco-forms-label {
  color: #a94442;
}
.alert {
  padding: 15px;
  margin-bottom: 21px;
  border: 1px solid transparent;
  border-radius: 4px;
}
.alert h4 {
  margin-top: 0;
  color: inherit;
}
.alert .alert-link {
  font-weight: bold;
}
.alert > p,
.alert > ul {
  margin-bottom: 0;
}
.alert > p + p {
  margin-top: 5px;
}
.alert-success {
  background-color: #dff0d8;
  border-color: #d6e9c6;
  color: #3c763d;
}
.alert-success hr {
  border-top-color: #c9e2b3;
}
.alert-success .alert-link {
  color: #2b542c;
}
.alert-info {
  background-color: #d9edf7;
  border-color: #bce8f1;
  color: #31708f;
}
.alert-info hr {
  border-top-color: #a6e1ec;
}
.alert-info .alert-link {
  color: #245269;
}
.alert-warning {
  background-color: #fcf8e3;
  border-color: #faebcc;
  color: #8a6d3b;
}
.alert-warning hr {
  border-top-color: #f7e1b5;
}
.alert-warning .alert-link {
  color: #66512c;
}
.alert-danger {
  background-color: #f2dede;
  border-color: #ebccd1;
  color: #a94442;
}
.alert-danger hr {
  border-top-color: #e4b9c0;
}
.alert-danger .alert-link {
  color: #843534;
}
.row:before,
.row:after {
  content: ' ';
  display: table;
}
.row:after {
  clear: both;
}
.row:before,
.row:after {
  content: ' ';
  display: table;
}
.row:after {
  clear: both;
}
.row > * {
  float: left;
}
@media (max-width: 767px) {
  .row.row-xs-collapse {
    width: auto;
  }
  .row.row-xs-collapse > * {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: auto !important;
  }
  .row.row-xs-collapse > * + * {
    margin-top: 10.5px;
  }
}
@media (max-width: 991px) {
  .row.row-sm-collapse {
    width: auto;
  }
  .row.row-sm-collapse > * {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: auto !important;
  }
  .row.row-sm-collapse > * + * {
    margin-top: 10.5px;
  }
}
@media (max-width: 1199px) {
  .row.row-md-collapse {
    width: auto;
  }
  .row.row-md-collapse > * {
    float: none !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    width: auto !important;
  }
  .row.row-md-collapse > * + * {
    margin-top: 10.5px;
  }
}
.input-group {
  position: relative;
  display: table;
  border-collapse: separate;
}
.input-group .form-control {
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
}
.input-group-addon,
.input-group-btn,
.input-group .form-control {
  display: table-cell;
}
.input-group-addon:not(:first-child):not(:last-child),
.input-group-btn:not(:first-child):not(:last-child),
.input-group .form-control:not(:first-child):not(:last-child) {
  border-radius: 0;
}
.input-group-addon,
.input-group-btn {
  width: 1%;
  white-space: nowrap;
  vertical-align: middle;
}
.input-group-addon {
  padding: 6px 12px;
  font-size: 15px;
  font-weight: normal;
  line-height: 1;
  color: #414042;
  text-align: center;
  background-color: #eeeeee;
  border: 1px solid #ccc;
  border-radius: 4px;
}
.input-group-addon input[type='radio'],
.input-group-addon input[type='checkbox'] {
  margin-top: 0;
}
.input-group .form-control:first-child,
.input-group-addon:first-child,
.input-group-btn:first-child > .btn {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}
.input-group-addon:first-child {
  border-right: 0;
}
.input-group .form-control:last-child,
.input-group-addon:last-child,
.input-group-btn:last-child > .btn,
.input-group-btn:first-child > .btn:not(:first-child) {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}
.input-group-addon:last-child {
  border-left: 0;
}
.input-group-btn {
  position: relative;
  font-size: 0;
  white-space: nowrap;
}
.input-group-btn > .btn {
  position: relative;
}
.input-group-btn > .btn + .btn {
  margin-left: -1px;
}
.input-group-btn > .btn:hover,
.input-group-btn > .btn:focus,
.input-group-btn > .btn:active {
  z-index: 2;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: -1px;
}
.input-group-btn:last-child > .btn,
.input-group-btn:last-child > .btn-group {
  margin-left: -1px;
}
.modal-open {
  overflow: hidden;
}
.modal {
  display: none;
  overflow: auto;
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
}
.modal.fade .modal-dialog {
  -webkit-transform: translate(0, -25%);
  -ms-transform: translate(0, -25%);
  transform: translate(0, -25%);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.modal.in .modal-dialog {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0);
}
.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px;
  z-index: 1050;
}
.modal-content {
  position: relative;
  background-color: #fff;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  background-clip: padding-box;
  outline: none;
}
.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
  background-color: #000;
}
.modal-backdrop.fade {
  opacity: 0;
  filter: alpha(opacity=0);
}
.modal-backdrop.in {
  opacity: 0.5;
  filter: alpha(opacity=50);
}
.modal-header {
  padding: 15px;
  border-bottom: 1px solid #e5e5e5;
  min-height: 16.42857143px;
}
.modal-header .close {
  margin-top: -2px;
}
.modal-title {
  margin: 0;
  line-height: 1.42857143;
}
.modal-body {
  position: relative;
  padding: 20px;
}
.modal-footer {
  margin-top: 15px;
  padding: 19px 20px 20px;
  text-align: right;
  border-top: 1px solid #e5e5e5;
}
.modal-footer:before,
.modal-footer:after {
  content: ' ';
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer:before,
.modal-footer:after {
  content: ' ';
  display: table;
}
.modal-footer:after {
  clear: both;
}
.modal-footer .btn + .btn {
  margin-left: 5px;
  margin-bottom: 0;
}
.modal-footer .btn-group .btn + .btn {
  margin-left: -1px;
}
.modal-footer .btn-block + .btn-block {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 30px auto;
  }
  .modal-content {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  }
}
@-ms-viewport {
  width: device-width;
}
.visible-xs {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-xs.visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-xs.visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-xs.visible-lg {
    display: block !important;
  }
}
.visible-sm {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-sm.visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-sm.visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-sm.visible-lg {
    display: block !important;
  }
}
.visible-md {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-md.visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-md.visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-md.visible-lg {
    display: block !important;
  }
}
.visible-lg {
  display: none !important;
}
@media (max-width: 767px) {
  .visible-lg.visible-xs {
    display: block !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .visible-lg.visible-sm {
    display: block !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .visible-lg.visible-md {
    display: block !important;
  }
}
@media (min-width: 1200px) {
  .visible-lg {
    display: block !important;
  }
}
.hidden-xs {
  display: block !important;
}
@media (max-width: 767px) {
  .hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-xs.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-xs.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-xs.hidden-lg {
    display: none !important;
  }
}
.hidden-sm {
  display: block !important;
}
@media (max-width: 767px) {
  .hidden-sm.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-sm.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-sm.hidden-lg {
    display: none !important;
  }
}
.hidden-md {
  display: block !important;
}
@media (max-width: 767px) {
  .hidden-md.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-md.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-md.hidden-lg {
    display: none !important;
  }
}
.hidden-lg {
  display: block !important;
}
@media (max-width: 767px) {
  .hidden-lg.hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .hidden-lg.hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .hidden-lg.hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .hidden-lg {
    display: none !important;
  }
}
.visible-print {
  display: none !important;
}
@media print {
  .visible-print {
    display: block !important;
  }
  .hidden-print {
    display: none !important;
  }
}
.clearfix:before,
.clearfix:after,
.grid:before,
.grid:after {
  content: ' ';
  display: table;
}
.clearfix:after,
.grid:after {
  clear: both;
}
.center-block {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin: 0 auto;
}
.pull-right {
  float: right !important;
}
.pull-left {
  float: left !important;
}
.hide {
  display: none !important;
}
.show {
  display: block !important;
}
.invisible {
  visibility: hidden;
}
.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}
.hidden {
  display: none !important;
  visibility: hidden !important;
}
.affix {
  position: fixed;
}
.grid {
  margin-left: -15px;
  margin-right: -15px;
}
.grid > * {
  position: relative;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;
  box-sizing: border-box;
  float: left;
  width: 100%;
}
@media (max-width: 767px) {
  .grid.grid-xs-collapse {
    margin-left: 0;
    margin-right: 0;
  }
  .grid.grid-xs-collapse > * {
    float: none;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
}
@media (max-width: 991px) {
  .grid.grid-sm-collapse {
    margin-left: 0;
    margin-right: 0;
  }
  .grid.grid-sm-collapse > * {
    float: none;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
}
@media (max-width: 1199px) {
  .grid.grid-md-collapse {
    margin-left: 0;
    margin-right: 0;
  }
  .grid.grid-md-collapse > * {
    float: none;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    left: 0 !important;
    right: 0 !important;
  }
}
.col-lg-12 {
  width: 100%;
}
.col-lg-11 {
  width: 91.66666667%;
}
.col-lg-10 {
  width: 83.33333333%;
}
.col-lg-9 {
  width: 75%;
}
.col-lg-8 {
  width: 66.66666667%;
}
.col-lg-7 {
  width: 58.33333333%;
}
.col-lg-6 {
  width: 50%;
}
.col-lg-5 {
  width: 41.66666667%;
}
.col-lg-4 {
  width: 33.33333333%;
}
.col-lg-3 {
  width: 25%;
}
.col-lg-2 {
  width: 16.66666667%;
}
.col-lg-1 {
  width: 8.33333333%;
}
.col-lg-pull-12 {
  right: 100%;
}
.col-lg-pull-11 {
  right: 91.66666667%;
}
.col-lg-pull-10 {
  right: 83.33333333%;
}
.col-lg-pull-9 {
  right: 75%;
}
.col-lg-pull-8 {
  right: 66.66666667%;
}
.col-lg-pull-7 {
  right: 58.33333333%;
}
.col-lg-pull-6 {
  right: 50%;
}
.col-lg-pull-5 {
  right: 41.66666667%;
}
.col-lg-pull-4 {
  right: 33.33333333%;
}
.col-lg-pull-3 {
  right: 25%;
}
.col-lg-pull-2 {
  right: 16.66666667%;
}
.col-lg-pull-1 {
  right: 8.33333333%;
}
.col-lg-pull-0 {
  right: auto;
}
.col-lg-push-12 {
  left: 100%;
}
.col-lg-push-11 {
  left: 91.66666667%;
}
.col-lg-push-10 {
  left: 83.33333333%;
}
.col-lg-push-9 {
  left: 75%;
}
.col-lg-push-8 {
  left: 66.66666667%;
}
.col-lg-push-7 {
  left: 58.33333333%;
}
.col-lg-push-6 {
  left: 50%;
}
.col-lg-push-5 {
  left: 41.66666667%;
}
.col-lg-push-4 {
  left: 33.33333333%;
}
.col-lg-push-3 {
  left: 25%;
}
.col-lg-push-2 {
  left: 16.66666667%;
}
.col-lg-push-1 {
  left: 8.33333333%;
}
.col-lg-push-0 {
  left: auto;
}
.col-lg-offset-12 {
  margin-left: 100%;
}
.col-lg-offset-11 {
  margin-left: 91.66666667%;
}
.col-lg-offset-10 {
  margin-left: 83.33333333%;
}
.col-lg-offset-9 {
  margin-left: 75%;
}
.col-lg-offset-8 {
  margin-left: 66.66666667%;
}
.col-lg-offset-7 {
  margin-left: 58.33333333%;
}
.col-lg-offset-6 {
  margin-left: 50%;
}
.col-lg-offset-5 {
  margin-left: 41.66666667%;
}
.col-lg-offset-4 {
  margin-left: 33.33333333%;
}
.col-lg-offset-3 {
  margin-left: 25%;
}
.col-lg-offset-2 {
  margin-left: 16.66666667%;
}
.col-lg-offset-1 {
  margin-left: 8.33333333%;
}
.col-lg-offset-0 {
  margin-left: 0%;
}
@media (max-width: 1199px) {
  .col-md-12 {
    width: 100%;
  }
  .col-md-11 {
    width: 91.66666667%;
  }
  .col-md-10 {
    width: 83.33333333%;
  }
  .col-md-9 {
    width: 75%;
  }
  .col-md-8 {
    width: 66.66666667%;
  }
  .col-md-7 {
    width: 58.33333333%;
  }
  .col-md-6 {
    width: 50%;
  }
  .col-md-5 {
    width: 41.66666667%;
  }
  .col-md-4 {
    width: 33.33333333%;
  }
  .col-md-3 {
    width: 25%;
  }
  .col-md-2 {
    width: 16.66666667%;
  }
  .col-md-1 {
    width: 8.33333333%;
  }
  .col-md-pull-12 {
    right: 100%;
  }
  .col-md-pull-11 {
    right: 91.66666667%;
  }
  .col-md-pull-10 {
    right: 83.33333333%;
  }
  .col-md-pull-9 {
    right: 75%;
  }
  .col-md-pull-8 {
    right: 66.66666667%;
  }
  .col-md-pull-7 {
    right: 58.33333333%;
  }
  .col-md-pull-6 {
    right: 50%;
  }
  .col-md-pull-5 {
    right: 41.66666667%;
  }
  .col-md-pull-4 {
    right: 33.33333333%;
  }
  .col-md-pull-3 {
    right: 25%;
  }
  .col-md-pull-2 {
    right: 16.66666667%;
  }
  .col-md-pull-1 {
    right: 8.33333333%;
  }
  .col-md-pull-0 {
    right: auto;
  }
  .col-md-push-12 {
    left: 100%;
  }
  .col-md-push-11 {
    left: 91.66666667%;
  }
  .col-md-push-10 {
    left: 83.33333333%;
  }
  .col-md-push-9 {
    left: 75%;
  }
  .col-md-push-8 {
    left: 66.66666667%;
  }
  .col-md-push-7 {
    left: 58.33333333%;
  }
  .col-md-push-6 {
    left: 50%;
  }
  .col-md-push-5 {
    left: 41.66666667%;
  }
  .col-md-push-4 {
    left: 33.33333333%;
  }
  .col-md-push-3 {
    left: 25%;
  }
  .col-md-push-2 {
    left: 16.66666667%;
  }
  .col-md-push-1 {
    left: 8.33333333%;
  }
  .col-md-push-0 {
    left: auto;
  }
  .col-md-offset-12 {
    margin-left: 100%;
  }
  .col-md-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-md-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-md-offset-9 {
    margin-left: 75%;
  }
  .col-md-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-md-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-md-offset-6 {
    margin-left: 50%;
  }
  .col-md-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-md-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-md-offset-3 {
    margin-left: 25%;
  }
  .col-md-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-md-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-md-offset-0 {
    margin-left: 0%;
  }
}
@media (max-width: 991px) {
  .col-sm-12 {
    width: 100%;
  }
  .col-sm-11 {
    width: 91.66666667%;
  }
  .col-sm-10 {
    width: 83.33333333%;
  }
  .col-sm-9 {
    width: 75%;
  }
  .col-sm-8 {
    width: 66.66666667%;
  }
  .col-sm-7 {
    width: 58.33333333%;
  }
  .col-sm-6 {
    width: 50%;
  }
  .col-sm-5 {
    width: 41.66666667%;
  }
  .col-sm-4 {
    width: 33.33333333%;
  }
  .col-sm-3 {
    width: 25%;
  }
  .col-sm-2 {
    width: 16.66666667%;
  }
  .col-sm-1 {
    width: 8.33333333%;
  }
  .col-sm-pull-12 {
    right: 100%;
  }
  .col-sm-pull-11 {
    right: 91.66666667%;
  }
  .col-sm-pull-10 {
    right: 83.33333333%;
  }
  .col-sm-pull-9 {
    right: 75%;
  }
  .col-sm-pull-8 {
    right: 66.66666667%;
  }
  .col-sm-pull-7 {
    right: 58.33333333%;
  }
  .col-sm-pull-6 {
    right: 50%;
  }
  .col-sm-pull-5 {
    right: 41.66666667%;
  }
  .col-sm-pull-4 {
    right: 33.33333333%;
  }
  .col-sm-pull-3 {
    right: 25%;
  }
  .col-sm-pull-2 {
    right: 16.66666667%;
  }
  .col-sm-pull-1 {
    right: 8.33333333%;
  }
  .col-sm-pull-0 {
    right: auto;
  }
  .col-sm-push-12 {
    left: 100%;
  }
  .col-sm-push-11 {
    left: 91.66666667%;
  }
  .col-sm-push-10 {
    left: 83.33333333%;
  }
  .col-sm-push-9 {
    left: 75%;
  }
  .col-sm-push-8 {
    left: 66.66666667%;
  }
  .col-sm-push-7 {
    left: 58.33333333%;
  }
  .col-sm-push-6 {
    left: 50%;
  }
  .col-sm-push-5 {
    left: 41.66666667%;
  }
  .col-sm-push-4 {
    left: 33.33333333%;
  }
  .col-sm-push-3 {
    left: 25%;
  }
  .col-sm-push-2 {
    left: 16.66666667%;
  }
  .col-sm-push-1 {
    left: 8.33333333%;
  }
  .col-sm-push-0 {
    left: auto;
  }
  .col-sm-offset-12 {
    margin-left: 100%;
  }
  .col-sm-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-sm-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-sm-offset-9 {
    margin-left: 75%;
  }
  .col-sm-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-sm-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-sm-offset-6 {
    margin-left: 50%;
  }
  .col-sm-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-sm-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-sm-offset-3 {
    margin-left: 25%;
  }
  .col-sm-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-sm-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-sm-offset-0 {
    margin-left: 0%;
  }
}
@media (max-width: 767px) {
  .col-xs-12 {
    width: 100%;
  }
  .col-xs-11 {
    width: 91.66666667%;
  }
  .col-xs-10 {
    width: 83.33333333%;
  }
  .col-xs-9 {
    width: 75%;
  }
  .col-xs-8 {
    width: 66.66666667%;
  }
  .col-xs-7 {
    width: 58.33333333%;
  }
  .col-xs-6 {
    width: 50%;
  }
  .col-xs-5 {
    width: 41.66666667%;
  }
  .col-xs-4 {
    width: 33.33333333%;
  }
  .col-xs-3 {
    width: 25%;
  }
  .col-xs-2 {
    width: 16.66666667%;
  }
  .col-xs-1 {
    width: 8.33333333%;
  }
  .col-xs-pull-12 {
    right: 100%;
  }
  .col-xs-pull-11 {
    right: 91.66666667%;
  }
  .col-xs-pull-10 {
    right: 83.33333333%;
  }
  .col-xs-pull-9 {
    right: 75%;
  }
  .col-xs-pull-8 {
    right: 66.66666667%;
  }
  .col-xs-pull-7 {
    right: 58.33333333%;
  }
  .col-xs-pull-6 {
    right: 50%;
  }
  .col-xs-pull-5 {
    right: 41.66666667%;
  }
  .col-xs-pull-4 {
    right: 33.33333333%;
  }
  .col-xs-pull-3 {
    right: 25%;
  }
  .col-xs-pull-2 {
    right: 16.66666667%;
  }
  .col-xs-pull-1 {
    right: 8.33333333%;
  }
  .col-xs-pull-0 {
    right: auto;
  }
  .col-xs-push-12 {
    left: 100%;
  }
  .col-xs-push-11 {
    left: 91.66666667%;
  }
  .col-xs-push-10 {
    left: 83.33333333%;
  }
  .col-xs-push-9 {
    left: 75%;
  }
  .col-xs-push-8 {
    left: 66.66666667%;
  }
  .col-xs-push-7 {
    left: 58.33333333%;
  }
  .col-xs-push-6 {
    left: 50%;
  }
  .col-xs-push-5 {
    left: 41.66666667%;
  }
  .col-xs-push-4 {
    left: 33.33333333%;
  }
  .col-xs-push-3 {
    left: 25%;
  }
  .col-xs-push-2 {
    left: 16.66666667%;
  }
  .col-xs-push-1 {
    left: 8.33333333%;
  }
  .col-xs-push-0 {
    left: auto;
  }
  .col-xs-offset-12 {
    margin-left: 100%;
  }
  .col-xs-offset-11 {
    margin-left: 91.66666667%;
  }
  .col-xs-offset-10 {
    margin-left: 83.33333333%;
  }
  .col-xs-offset-9 {
    margin-left: 75%;
  }
  .col-xs-offset-8 {
    margin-left: 66.66666667%;
  }
  .col-xs-offset-7 {
    margin-left: 58.33333333%;
  }
  .col-xs-offset-6 {
    margin-left: 50%;
  }
  .col-xs-offset-5 {
    margin-left: 41.66666667%;
  }
  .col-xs-offset-4 {
    margin-left: 33.33333333%;
  }
  .col-xs-offset-3 {
    margin-left: 25%;
  }
  .col-xs-offset-2 {
    margin-left: 16.66666667%;
  }
  .col-xs-offset-1 {
    margin-left: 8.33333333%;
  }
  .col-xs-offset-0 {
    margin-left: 0%;
  }
}
.grid-28px-gutter {
  margin-left: -14px;
  margin-right: -14px;
}
.grid-28px-gutter > * {
  padding-left: 14px;
  padding-right: 14px;
}
.grid-20px-gutter {
  margin-left: -10px;
  margin-right: -10px;
}
.grid-20px-gutter > * {
  padding-left: 10px;
  padding-right: 10px;
}
.grid-15px-gutter {
  margin-left: -7.5px;
  margin-right: -7.5px;
}
.grid-15px-gutter > * {
  padding-left: 7.5px;
  padding-right: 7.5px;
}
.grid-1px-gutter {
  margin-left: -0.5px;
  margin-right: -0.5px;
}
.grid-1px-gutter > * {
  padding-left: 0.5px;
  padding-right: 0.5px;
}
.grid-5px-gutter {
  margin-left: -2.5px;
  margin-right: -2.5px;
}
.grid-5px-gutter > * {
  padding-left: 2.5px;
  padding-right: 2.5px;
}
.grid-4px-gutter {
  margin-left: -2px;
  margin-right: -2px;
}
.grid-4px-gutter > * {
  padding-left: 2px;
  padding-right: 2px;
}
.grid-no-gutter {
  margin-left: 0px;
  margin-right: 0px;
}
.grid-no-gutter > * {
  padding-left: 0px;
  padding-right: 0px;
}
.container {
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 60px;
  }
}
* {
  box-sizing: border-box;
}
.container-fluid {
  padding: 0 20px;
}
@media (min-width: 1200px) {
  .container-fluid {
    padding: 0 60px;
  }
}
.row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-left: calc(-20px/2);
  margin-right: calc(-20px/2);
}
@media (min-width: 1200px) {
  .row {
    margin-left: calc(-60px/2);
    margin-right: calc(-60px/2);
  }
}
.grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
body {
  height: 100%;
  padding: 0;
  overflow-x: hidden;
  text-rendering: geometricPrecision;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 991px) {
  body {
    font-size: 15px;
  }
}
@media (max-width: 767px) {
  body {
    font-size: 15px;
  }
}
.lock-scroll {
  overflow: hidden;
}
.js-loading {
  display: none;
  text-align: center;
  width: 100%;
}
@media (max-width: 991px) {
  body.mobile-nav-open {
    overflow-y: hidden;
  }
}
.pos-relative {
  position: relative;
}
.gradient {
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.site-main-content {
  width: 100%;
  transition: margin-left 0.3s ease-out;
  will-change: margin-left;
  position: relative;
  z-index: 30;
  padding-top: 30px;
}
.home .site-main-content {
  padding-top: 80px;
}
.home.has-prompt .site-main-content {
  padding-top: calc(80px + var(--promptHeight, 100px));
}
@media (min-width: 1200px) {
  .site-main-content {
    padding-top: 60px;
  }
}
.mobile-nav-open .site-main-content {
  box-shadow: 0 0 7px rgba(0, 0, 0, 0.5);
}
@media (max-width: 991px) {
}
@media (max-width: 550px) {
}
.btn-mobile-menu-close {
  display: none;
  background-color: transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 10000;
  padding: 0;
  width: 100%;
  border: 0;
  cursor: pointer;
}
@media (max-width: 991px) {
  .mobile-nav-open .btn-mobile-menu-close {
    display: block;
  }
}
.main {
  position: relative;
  width: 100%;
  margin: 0 auto;
  z-index: 100;
}
.main:not(.main-home) {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .main:not(.main-home) {
    padding-bottom: 60px;
  }
}
.main h1:first-of-type {
  margin-top: 0;
}
.main.main-home,
.main.whats-on {
  background-color: #f3f3f1;
}
.main.whats-on {
  padding-bottom: 0;
  padding-top: 30px;
}
@media (min-width: 1200px) {
  .main.whats-on {
    padding-top: 60px;
  }
}
.col-main {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.col-main.white {
  padding: 50px;
  background-color: rgba(255, 255, 255, 0.9);
}
@media (max-width: 991px) {
  .col-main.white {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .col-main.white {
    padding: 25px 15px 25px 15px;
  }
}
.col-main.white.past-tiles h5 {
  text-transform: capitalize;
}
@media (max-width: 767px) {
  .col-main.white.past-tiles {
    padding: 25px 0;
  }
  .col-main.white.past-tiles .main-content-header {
    padding: 25px 15px;
  }
}
@media (min-width: 992px) {
  .col-main.white.past-tiles .col-lg-4 {
    width: calc(33.33333% - (120px / 3));
  }
  .col-main.white.past-tiles .col-lg-4 .image-tile-box .tile-image {
    width: 100%;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .col-main.white.past-tiles .col-sm-6 {
    width: calc(50% - (60px / 2));
  }
  .col-main.white.past-tiles .image-tile-box .tile-image {
    width: 100%;
  }
}
.col-main.edu-resource {
  background-color: white !important;
  padding: 50px;
  padding-top: 15px;
}
.col-main.edu-resource:before {
  content: ' ';
  background-image: url(../images/col-content-header-white.svg);
  background-size: 100% 100%;
  position: absolute;
  height: 100px;
  top: -100px;
  left: 0;
  right: 0;
}
@media (max-width: 991px) {
  .col-main.edu-resource {
    padding: 30px;
  }
}
@media (max-width: 767px) {
  .col-main.edu-resource {
    padding: 25px 15px 25px 15px;
  }
}
@media (max-width: 767px) {
  .col-main.col-main-padded {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.main-content-header {
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .main-content-header {
    margin-bottom: 45px;
    padding-right: 0;
  }
}
@media (max-width: 767px) {
  .main-content-header {
    margin-bottom: 30px;
  }
}
.main-content-body {
  padding-right: 30px;
  margin-bottom: 25px;
}
@media (max-width: 1199px) {
  .main-content-body {
    padding-right: 0px;
  }
}
@media (max-width: 767px) {
  .main-content-body {
    margin-bottom: 25px;
  }
}
.main-content-side-bar {
  margin-bottom: 25px;
}
.main-content-side-bar iframe {
  width: 475px;
  height: 275px;
}
@media (max-width: 991px) {
  .main-content-side-bar iframe {
    width: 400px;
    height: 275px;
  }
}
@media (max-width: 767px) {
  .main-content-side-bar iframe {
    width: 320px;
    height: 275px;
  }
}
.main-content-side-bar iframe.small {
  width: 100%;
  height: 175px;
}
.main-content-side-bar .widget-highlighted-content {
  padding: 20px;
  line-height: 1.2em;
}
.main-content-side-bar .widget-highlighted-content h6 {
  margin-top: 0px;
}
h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: 'Prata', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-weight: normal;
}
h1.primary-accent,
h2.primary-accent,
h3.primary-accent,
h4.primary-accent,
h5.primary-accent,
h6.primary-accent,
.h1.primary-accent,
.h2.primary-accent,
.h3.primary-accent,
.h4.primary-accent,
.h5.primary-accent,
.h6.primary-accent {
  color: #9a1e3b;
}
h1.light,
h2.light,
h3.light,
h4.light,
h5.light,
h6.light,
.h1.light,
.h2.light,
.h3.light,
.h4.light,
.h5.light,
.h6.light {
  color: #fff;
}
body {
  color: #222;
  line-height: 1.6;
}
a,
.link-style {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  color: #222;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
}
.blue-link {
  color: #9eb5cb;
}
.font-weight-light,
.font-weight-light a {
  font-weight: 300;
  text-transform: none;
}
h1,
.h1 {
  font-size: 28px;
  line-height: 130%;
}
@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 56px;
  }
}
@media (min-width: 1200px) {
  h1,
  .h1 {
    font-size: 77px;
  }
}
h2,
.h2 {
  font-size: 22px;
  line-height: 160%;
}
@media (min-width: 992px) {
  h2,
  .h2 {
    font-size: 35px;
  }
}
h2.subtitle,
.h2.subtitle {
  font-size: 22px;
  text-transform: none;
  margin-top: 0px;
  margin-bottom: 45px;
  line-height: 1.4;
}
h3,
.h3,
.header-3 {
  font-size: 20px;
}
h3.paragraph-header,
.h3.paragraph-header,
.header-3.paragraph-header {
  font-size: 16px;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
}
@media (max-width: 991px) {
  h3,
  .h3,
  .header-3 {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  h3,
  .h3,
  .header-3 {
    font-size: 18px;
  }
}
p + h3.paragraph-header {
  margin-top: 50px;
}
h4,
.h4 {
  font-size: 20px;
}
h5,
.h5,
h6,
.h6 {
  font-size: 16px;
  margin-bottom: 5px;
}
ul,
ol {
  margin-bottom: 25px;
}
p {
  margin-bottom: 20px;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
p.big {
  font-size: 30px;
  line-height: 1.3em;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  color: #222;
}
@media (max-width: 1199px) {
  p.big {
    font-size: 28px;
    line-height: 1.2em;
  }
}
@media (max-width: 991px) {
  p.big {
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  p.big {
    font-size: 22px;
  }
}
p.small {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  color: #222;
  font-size: 12px;
  line-height: 1.3em;
}
.accented-text {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 50px;
  line-height: 1.5em;
}
.accented-text.small-text {
  font-size: 12px;
}
@media (max-width: 767px) {
  .accented-text {
    margin-bottom: 25px;
  }
}
.accented-text p {
  margin-top: 0;
  margin-bottom: 15px;
}
.accented-text .larger {
  font-size: 18px;
}
.capitalize {
  text-transform: capitalize;
}
.font-regular {
  font-family: 'Gotham', sans-serif;
}
.font-light {
  font-family: 'Ainslie-NorLig', Helvetica, AFrial, sans-serif;
}
.font-bold {
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
}
b,
strong {
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
}
h1,
.h1,
h2,
.h2,
.h3,
h3,
.h4,
h4,
.h5,
h5,
.h6,
h6 {
  color: #222;
}
strong,
b {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
}
table {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
.text-small {
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .text-small {
    font-size: 20px;
  }
}
.text-uppercase {
  text-transform: uppercase;
}
.icon-set {
  position: relative;
  top: 4px;
  background-image: url('../images/icon_sprite.png');
  display: inline-block;
  margin: 0 auto;
}
.icon-set.block {
  display: block;
}
.icon-set.icon-edu {
  background-position: 0px -67px;
  width: 64px;
  height: 64px;
}
.icon-set.icon-program {
  background-position: 0px -3px;
  width: 64px;
  height: 64px;
}
.icon-set.icon-dvd {
  background-position: -64px -67px;
  width: 64px;
  height: 64px;
}
.icon-set.icon-music {
  background-position: -64px -3px;
  width: 64px;
  height: 64px;
}
.icon-set.icon-facebook {
  background-position: -132px -3px;
  width: 34px;
  height: 34px;
}
.icon-set.icon-twitter {
  background-position: -132px -37px;
  width: 34px;
  height: 34px;
}
.icon-set.icon-mail {
  background-position: -132px -71px;
  width: 34px;
  height: 34px;
}
.perf-sprite {
  position: relative;
  top: 4px;
  background-image: url('../images/perf-sprite.jpg');
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 auto;
}
.perf-sprite.block {
  display: block;
}
.perf-sprite.icon-edu {
  background-position: -129px 0px;
  width: 43px;
  height: 44px;
}
.perf-sprite.icon-program {
  background-position: 0px 0px;
  width: 43px;
  height: 44px;
}
.perf-sprite.icon-dvd {
  background-position: -86px 0px;
  width: 43px;
  height: 44px;
}
.perf-sprite.icon-music {
  background-position: -43px 0px;
  width: 43px;
  height: 44px;
}
.sprite {
  position: relative;
  top: 4px;
  background-image: url('../images/home-sprite.png');
  background-repeat: no-repeat;
  display: inline-block;
  margin: 0 auto;
}
.sprite.block {
  display: block;
}
@media (max-width: 767px) {
  .sprite.block {
    margin-left: 0;
  }
}
.sprite.icon-user {
  background-position: -21px -52px;
  width: 16px;
  height: 16px;
}
.sprite.icon-search {
  background-position: -36px -52px;
  width: 16px;
  height: 16px;
}
.sprite.icon-youtube {
  background-position: 0px 0px;
  width: 26px;
  height: 26px;
}
.sprite.icon-twitter {
  background-position: -26px 0px;
  width: 26px;
  height: 26px;
}
.sprite.icon-instagram {
  background-position: 0px -26px;
  width: 26px;
  height: 26px;
}
.sprite.icon-facebook {
  background-position: -26px -26px;
  width: 26px;
  height: 26px;
}
@media (max-width: 1199px), (min-width: 1200px) {
  .cart-box {
    display: inline-block;
    padding: 2px;
    color: #fff;
    width: 25px;
    margin-left: 10px;
    line-height: 12px;
    float: right;
    margin-top: -2px;
    background-color: #ae8f89;
  }
}
@media (max-width: 767px), (max-width: 991px) {
  .cart-box {
    display: inline-block;
    padding: 2px;
    color: #fff;
    width: 25px;
    margin-left: 5px !important;
    line-height: 12px;
    text-align: center;
    float: none;
    margin-top: -2px;
    background-color: #ae8f89;
  }
}
button,
.btn {
  box-sizing: border-box;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
}
button,
.btn,
button:visited,
.btn:visited,
button:hover,
.btn:hover,
button:active,
.btn:active {
  color: #fff;
  font-size: 13px;
  border: 0;
  padding: 12px 35px;
}
button.btn-odd-lg,
.btn.btn-odd-lg,
button.btn-odd-sm,
.btn.btn-odd-sm,
button.btn-odd-sm-ud,
.btn.btn-odd-sm-ud,
button.btn-odd-sm-army,
.btn.btn-odd-sm-army,
button.btn-odd-sm-ud-army,
.btn.btn-odd-sm-ud-army {
  background: transparent url(../images/btn-odd-lg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease !important;
}
button.btn-odd-lg:hover,
.btn.btn-odd-lg:hover,
button.btn-odd-sm:hover,
.btn.btn-odd-sm:hover,
button.btn-odd-sm-ud:hover,
.btn.btn-odd-sm-ud:hover,
button.btn-odd-sm-army:hover,
.btn.btn-odd-sm-army:hover,
button.btn-odd-sm-ud-army:hover,
.btn.btn-odd-sm-ud-army:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
button.btn-odd-lg:focus,
.btn.btn-odd-lg:focus,
button.btn-odd-sm:focus,
.btn.btn-odd-sm:focus,
button.btn-odd-sm-ud:focus,
.btn.btn-odd-sm-ud:focus,
button.btn-odd-sm-army:focus,
.btn.btn-odd-sm-army:focus,
button.btn-odd-sm-ud-army:focus,
.btn.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
button.btn-odd-lg,
.btn.btn-odd-lg {
  height: 90px;
  font-size: 18px;
  line-height: 60px;
}
button.btn-sm-md-1,
.btn.btn-sm-md-1 {
  height: 48.8px;
  width: 250px;
  background-image: url(../images/btn-sm-md-1.png);
  font-size: 12px;
  line-height: 25px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
button.btn-sm-md-1:focus,
.btn.btn-sm-md-1:focus {
  background-image: url('../images/btn-odd-blue.png');
}
button.btn-odd-sm,
.btn.btn-odd-sm,
button.btn-odd-sm-ud,
.btn.btn-odd-sm-ud,
button.btn-odd-sm-army,
.btn.btn-odd-sm-army,
button.btn-odd-sm-ud-army,
.btn.btn-odd-sm-ud-army {
  background-image: url(../images/btn-odd-sm.png);
  height: 44px;
  font-size: 12px;
  line-height: 21px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
button.btn-odd-sm:focus,
.btn.btn-odd-sm:focus,
button.btn-odd-sm-ud:focus,
.btn.btn-odd-sm-ud:focus,
button.btn-odd-sm-army:focus,
.btn.btn-odd-sm-army:focus,
button.btn-odd-sm-ud-army:focus,
.btn.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
button.btn-odd-sm-ud,
.btn.btn-odd-sm-ud {
  background-image: url(../images/btn-odd-sm-ud.png);
}
button.btn-odd-sm-ud:focus,
.btn.btn-odd-sm-ud:focus {
  background-image: url('../images/btn-odd-blue.png');
}
button.btn-odd-sm-army,
.btn.btn-odd-sm-army {
  background-image: url(../images/btn-odd-sm-army.png);
}
button.btn-odd-sm-army:focus,
.btn.btn-odd-sm-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
button.btn-odd-sm-ud-army,
.btn.btn-odd-sm-ud-army {
  background-image: url(../images/btn-odd-sm-ud-army.png);
}
button.btn-odd-sm-ud-army:focus,
.btn.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
button.btn-odd,
.btn.btn-odd {
  background: transparent url(../images/button.svg);
  background-size: 100% 100%;
}
button.btn-oddrev,
.btn.btn-oddrev {
  background: transparent url(../images/button-rev.svg);
  background-size: 100% 100%;
}
button.btn-odd-square-bl,
.btn.btn-odd-square-bl,
button.btn-odd-square-br,
.btn.btn-odd-square-br,
button.btn-odd-square-tl,
.btn.btn-odd-square-tl,
button.btn-odd-square-tr,
.btn.btn-odd-square-tr {
  background-size: 100% 100%;
  width: 50px;
  height: 75px;
}
button.btn-odd-square-bl,
.btn.btn-odd-square-bl {
  background: transparent url(../images/button-square-bl.svg);
}
button.btn-odd-square-br,
.btn.btn-odd-square-br {
  background: transparent url(../images/button-square-br.svg);
}
button.btn-odd-square-tl,
.btn.btn-odd-square-tl {
  background: transparent url(../images/button-square-tl.svg);
}
button.btn-odd-square-tr,
.btn.btn-odd-square-tr {
  background: transparent url(../images/button-square-tr.svg);
}
button.btn-odd-square,
.btn.btn-odd-square {
  position: relative;
  vertical-align: top;
  margin-bottom: 40px;
}
button.btn-odd-square:after,
.btn.btn-odd-square:after {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  color: #9a1e3b;
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
}
button:focus,
.btn:focus {
  color: #fff;
  text-decoration: none;
}
button.btn-medium,
.btn.btn-medium {
  font-size: 18px;
  padding: 16px 45px;
}
button.btn-large,
.btn.btn-large {
  font-size: 20px;
  padding: 20px 50px;
}
button.btn-block,
.btn.btn-block {
  display: block;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
button.btn-primary,
.btn.btn-primary {
  transition: background-color 0.5s ease;
}
button.btn-primary:hover,
.btn.btn-primary:hover {
  text-decoration: none;
  color: white;
}
button:visited,
.btn:visited {
  color: #fff;
}
button.btn-right,
.btn.btn-right {
  float: right;
}
button.btn-centered,
.btn.btn-centered {
  text-align: center;
  display: block;
}
button.btn-bang,
.btn.btn-bang {
  background-color: #9a1e3b !important;
}
button.btn-unstyled,
.btn.btn-unstyled {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}
button.btn-line-bottom,
.btn.btn-line-bottom {
  --border-bottom-width: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border-bottom: var(--border-bottom-width) solid transparent;
  background-color: transparent;
  color: #777;
  text-decoration: none;
  transition-property: color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
button.btn-line-bottom:hover,
.btn.btn-line-bottom:hover,
button.btn-line-bottom:focus,
.btn.btn-line-bottom:focus,
button.btn-line-bottom.active,
.btn.btn-line-bottom.active {
  border-bottom: var(--border-bottom-width) solid #9eb5cb;
  color: #222;
}
#wfgadget {
  margin-right: 5px;
}
.wordfly {
  margin-bottom: 25px;
}
.wordfly .row {
  margin-bottom: 10px;
}
.wordfly label {
  width: 90%;
}
*:focus {
  outline: none !important;
}
.control-label-required:after {
  content: '*';
}
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.mb-50 {
  margin-bottom: 50px;
}
.mb-75 {
  margin-bottom: 75px;
}
.mb-90 {
  margin-bottom: 90px;
}
.mt-0 {
  margin-top: 0px !important;
}
.mt-25 {
  margin-top: 25px;
}
.text-center {
  text-align: center;
}
.spacing-container {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .spacing-container {
    margin-top: 50px;
    margin-bottom: 50px;
  }
}
strong,
b {
  font-weight: normal;
  font-weight: 700;
}
.center-block {
  display: block;
  margin: 0 auto;
}
.center-inline-block {
  display: inline-block;
  margin: 0 auto;
}
.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 aspect ratio */
  height: 0;
}
.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.call-to-action {
  margin-bottom: 30px;
}
.arrow-bullets {
  list-style: url('../images/list-bullet-arrow.png');
  padding: 0 0 0 20px;
}
.arrow-bullets li {
  margin-bottom: 10px;
}
.no-style {
  list-style-type: none;
  padding: 0;
}
ul.no-padding {
  padding-left: 15px;
}
label,
legend {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.1em;
  margin: 0;
}
label.required:after,
legend.required:after {
  content: ' *';
  color: #ff9311;
}
hr.divider,
hr.divider-rev {
  border: none;
  height: 13px;
  width: 100%;
  background-image: url(../images/divider.svg);
  background-size: 100% 100%;
  margin: 30px 0;
}
@media (min-width: 992px) {
  hr.divider,
  hr.divider-rev {
    margin: 50px 0;
  }
}
hr.divider-rev {
  background-image: url(../images/divider-rev.svg);
}
body.l-dialog-open {
  overflow: hidden;
  position: relative;
}
.l-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  box-sizing: border-box;
  z-index: 1000;
  background-color: #333;
  background-color: rgba(0, 0, 0, 0.6);
  padding: 30px;
}
@media (max-width: 767px) {
  .l-dialog {
    padding: 15px;
  }
}
.l-dialog-container-main {
  margin: 0 auto;
  box-sizing: border-box;
  width: 80%;
  max-width: 1000px;
  background-color: #FFF;
}
@media (max-width: 767px) {
  .l-dialog-container-main {
    width: auto;
  }
}
.l-dialog-container-header {
  position: relative;
  padding: 25px;
}
@media (max-width: 767px) {
  .l-dialog-container-header {
    padding: 15px;
  }
}
.l-dialog-title {
  margin: 0;
  font-size: 38px;
  padding-right: 35px;
  color: #000;
}
.l-dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 32px;
  width: 32px;
  line-height: 1;
  color: #ececec;
  font-size: 15px;
  background-image: url("../images/dialog-close.png");
}
.l-dialog-content-target {
  padding: 0px 25px 25px 25px;
}
@media (max-width: 767px) {
  .l-dialog-content-target {
    padding: 0px 15px 15px 15px;
  }
}
.l-dialog-content-target > :first-child {
  margin-top: 0;
}
.l-dialog-content-target > :last-child {
  margin-bottom: 0;
}
.l-dialog-loading {
  text-align: center;
  font-style: italic;
  color: #AAA;
}
.l-dialog-loading:after {
  content: '';
  background-image: url(http://placehold.it/64x64/CCC/FFF&text=Loading...);
  width: 64px;
  height: 64px;
  display: block;
  margin: 20px auto 5px;
}
.lightbox .videoWrapper {
  position: relative;
  padding-bottom: 56.25%;
  /* 16:9 */
  padding-top: 25px;
  height: 0;
}
.lightbox .videoWrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lightbox .l-dialog-container-main {
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0;
  background-color: transparent;
  box-shadow: 0 0 10px #000;
}
@media (max-width: 767px) {
  .lightbox .l-dialog-container-main {
    width: auto;
  }
}
.lightbox .l-dialog-container-header {
  background-color: transparent;
  padding: 0;
}
.lightbox .l-dialog-content-target {
  padding: 0;
}
.lightbox .l-dialog-close {
  position: absolute;
  top: 15px;
  right: 15px;
  border: 0;
  padding: 0;
  cursor: pointer;
  height: 32px;
  width: 32px;
  line-height: 1;
  color: #ececec;
  font-size: 15px;
  background-image: none;
  background-color: black;
  color: white;
}
/* NAVIGATION STYLES */
.navigation-main {
  position: relative;
  width: 100%;
  text-transform: uppercase;
  font-size: 0.8em;
  height: 80px;
}
@media (max-width: 991px) {
  .navigation-main .secondary-logo {
    display: none !important;
  }
}
.home .navigation-main .secondary-logo {
  position: absolute;
  display: none;
}
.navigation-main .mobile-logo {
  display: none;
  margin-top: 18px;
}
@media (max-width: 991px) {
  .navigation-main .mobile-logo {
    margin-left: 15px;
    display: block;
  }
}
.navigation-main > .col-main {
  height: 80px;
}
.navigation-main .row > * {
  float: none;
}
.navigation-primary {
  margin-left: 24px;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
}
.navigation-primary.home-nav {
  margin-left: 92px;
}
@media (max-width: 991px) {
  .navigation-primary {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navigation-primary {
    margin-left: 15px;
  }
}
@media (min-width: 992px) {
  .navigation-primary {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 auto;
  }
}
.navigation-primary > ul {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .navigation-primary > ul {
    height: auto;
    padding-left: 0;
  }
}
.navigation-primary > ul li {
  letter-spacing: 0.1em;
  font-weight: 700;
  text-align: left;
}
@media (max-width: 1199px) {
  .navigation-primary > ul li {
    letter-spacing: 0.07em;
  }
}
.navigation-primary > ul a {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
  display: block;
  color: #222;
  text-decoration: none;
}
.navigation-primary > ul > li {
  font-size: 16px;
  position: relative;
  height: 39px;
  float: left;
  margin-top: 21px;
  margin-right: 20px;
}
.navigation-primary > ul > li::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: 6px;
  border-bottom: 2px solid;
  border-color: transparent;
  height: 2px;
}
.navigation-primary > ul > li::after {
  content: '';
  position: absolute;
  bottom: -15px;
  height: 30px;
  left: 0;
  right: 0;
  background: transparent;
}
@media (max-width: 1199px) {
  .navigation-primary > ul > li {
    font-size: 14px;
    margin-right: 15px;
    height: 39px;
    margin-top: 21px;
  }
}
@media (min-width: 1600px) {
  .navigation-primary > ul > li {
    margin-right: 55px;
  }
}
.navigation-primary > ul > li:last-child {
  margin-right: 0;
}
.navigation-primary > ul > li > a {
  height: 100%;
}
.navigation-primary > ul > li > a.active,
.navigation-primary > ul > li > a:active,
.navigation-primary > ul > li > a:focus {
  color: #9eb5cb;
}
.navigation-primary > ul > li > a:hover {
  text-decoration: none;
}
.navigation-primary > ul > li > a:visited {
  text-decoration: none;
}
.navigation-primary > ul > li:hover .dropdown-container,
.navigation-primary > ul > li:focus .dropdown-container {
  display: inline-block;
}
.navigation-primary > ul > li:hover > a,
.navigation-primary > ul > li:focus > a {
  color: #9eb5cb;
}
.navigation-primary > ul > li:hover::before,
.navigation-primary > ul > li:focus::before {
  border-color: #9eb5cb;
}
.navigation-primary .dropdown-container {
  z-index: 10;
  position: absolute;
  background-color: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
  width: auto;
  top: 49px;
  left: 50%;
  padding-top: 10px;
  display: none;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  border: none;
}
.navigation-primary .dropdown-container .second-level {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  height: auto;
  padding: 15px 0;
}
.navigation-primary .dropdown-container .second-level:before,
.navigation-primary .dropdown-container .second-level:after {
  content: ' ';
  display: table;
}
.navigation-primary .dropdown-container .second-level:after {
  clear: both;
}
.navigation-primary .dropdown-container .second-level:before,
.navigation-primary .dropdown-container .second-level:after {
  content: ' ';
  display: table;
}
.navigation-primary .dropdown-container .second-level:after {
  clear: both;
}
.navigation-primary .dropdown-container .second-level li {
  width: 100%;
  font-size: 12px;
  margin: 0;
}
.navigation-primary .dropdown-container .second-level li a {
  padding: 15px 30px;
  line-height: 1em;
  white-space: nowrap;
}
.navigation-primary .dropdown-container .second-level li a:hover {
  color: #9eb5cb;
}
.navigation-primary .dropdown-container .second-level li a:active {
  color: black;
}
.navigation-primary > ul li:first-child .dropdown-container {
  left: -24px;
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.navigation-user-functions {
  display: none;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
}
@media (min-width: 992px) {
  .navigation-user-functions {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.navigation-user-functions a {
  color: #222;
}
.navigation-user-functions .nav-login,
.navigation-user-functions .nav-search {
  position: relative;
  width: 20px;
  height: 20px;
}
.navigation-user-functions .nav-login::after,
.navigation-user-functions .nav-search::after {
  content: attr(data-title);
  position: absolute;
  top: 31px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 2px 5px;
  background-color: white;
  opacity: 0;
  font-family: 'Gotham', sans-serif;
  font-size: 11px;
  letter-spacing: 0px;
  text-align: center;
  line-height: 1.2;
  border-radius: 2px;
  pointer-events: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
@media (min-width: 992px) and (max-width: 1199px) {
  .navigation-user-functions .nav-login::after,
  .navigation-user-functions .nav-search::after {
    white-space: normal;
  }
}
@media (pointer: fine) {
  .navigation-user-functions .nav-login:hover::after,
  .navigation-user-functions .nav-search:hover::after {
    opacity: 1;
  }
}
.navigation-user-functions .nav-search {
  margin-right: 40px;
}
.navigation-user-functions ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navigation-user-functions ul li {
  padding: 0;
  padding-right: 15px;
  padding-top: 18px;
}
@media (max-width: 1199px) {
  .navigation-user-functions ul li {
    padding-right: 20px;
    padding-top: 18px;
  }
}
.navigation-user-functions ul li a {
  padding: 5px;
  display: block;
  text-align: center;
  font-weight: 700;
  color: #222;
  line-height: 10px;
}
.navigation-user-functions ul li a:hover {
  text-decoration: none;
  color: #222;
}
.navigation-user-functions ul li.book-now {
  background-color: #222;
  padding: 0;
}
.navigation-user-functions ul li.book-now a {
  line-height: 13.8571px;
  height: 100%;
  font-size: 16px;
  padding: 25px 35px 0 35px;
  color: #fff;
  transition: background-color 0.5s ease;
  text-decoration: none;
}
@media (max-width: 1199px) {
  .navigation-user-functions ul li.book-now a {
    padding: 25px 25px 0 25px;
  }
}
.navigation-user-functions ul li.book-now a:hover {
  background-color: #000;
  text-decoration: none;
}
.navigation-user-functions .nav-search,
.navigation-user-functions .nav-login,
.navigation-user-functions .nav-cart {
  text-decoration: none;
}
.navigation-user-functions .button-svg {
  display: none;
}
@media (min-width: 1200px) {
  .navigation-user-functions .button-svg {
    display: inline-block;
    margin-left: 28px;
  }
}
.nav-login:hover circle,
.nav-search:hover circle,
.nav-login:hover path,
.nav-search:hover path {
  stroke: #9eb5cb;
}
.nav-main-mobile {
  background-color: white;
  width: 100%;
  z-index: 501;
  bottom: 0;
  position: fixed;
  overflow: hidden;
  top: 80px;
  overflow-y: scroll;
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
}
.has-prompt .nav-main-mobile {
  top: calc(80px + var(--promptHeight, 100px));
}
.mobile-nav-open .nav-main-mobile {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
}
.nav-main-mobile input {
  width: 100%;
  height: 60px;
  border-radius: 2px;
  border: 1px solid #c8c8c8;
  padding: 0 20px;
  background: url('/Assets/images/icon-search.svg') right 18px center no-repeat;
}
.nav-main-mobile span.show-search {
  position: absolute;
  display: block;
  right: 30px;
  top: 15px;
  width: 60px;
  height: 60px;
  z-index: 20;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}
.nav-main-mobile span.show-search button {
  background: transparent;
  border: 0;
  text-align: center;
}
.nav-main-mobile .nav-form-wrapper {
  padding-top: 15px;
  border-bottom: 0;
}
.nav-main-mobile ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.nav-main-mobile ul li {
  position: relative;
  border-bottom: 1px solid #e0e0db;
}
.nav-main-mobile ul li:first-child {
  border-top: 1px solid #e0e0db;
}
.nav-main-mobile ul li .nav-link-wrapper,
.nav-main-mobile ul li form {
  box-sizing: border-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  color: #222;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}
.nav-main-mobile ul li .nav-expand-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
.nav-main-mobile ul li .nav-expand-wrapper.open .show-dropdown {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.nav-main-mobile ul li a,
.nav-main-mobile ul li form {
  padding: 15px 30px;
}
.nav-main-mobile ul li form {
  position: relative;
}
.nav-main-mobile ul li a {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.nav-main-mobile ul li a:hover {
  color: #9eb5cb;
  text-decoration: none;
}
.nav-main-mobile ul .dropdown-container {
  display: none;
}
.nav-main-mobile ul ul.second-level {
  list-style: none;
}
.nav-main-mobile ul ul.second-level li {
  box-sizing: border-box;
  width: 100%;
  font-size: 12px;
  border-bottom: 0;
}
.nav-main-mobile ul ul.second-level li:last-child {
  border-bottom: none;
}
.nav-main-mobile ul ul.second-level li ul.second-level li a {
  padding-left: 70px;
}
.nav-main-mobile ul ul.second-level li ul.second-level li ul li a {
  padding-left: 105px;
}
.nav-main-mobile .nav-mobile-rel {
  position: relative;
}
.nav-main-mobile .nav-mobile-rel .icon {
  display: inline;
  margin-left: 12px;
}
.nav-main-mobile .nav-mobile-rel .fa {
  position: absolute;
  left: 0;
  top: 18px;
}
.nav-main-mobile .nav-mobile-rel .fa-user {
  left: 100px;
}
.nav-main-mobile .nav-mobile-rel .fa-shopping-cart {
  left: 66px;
}
.nav-main-mobile .show-dropdown {
  display: block;
  width: 51px;
  height: 51px;
  background: url('../images/icon-down-arrow.svg') no-repeat center center;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
}
.main-sidebar-navigation ul.closed {
  display: none;
}
.main-sidebar-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.main-sidebar-navigation ul > li {
  margin-bottom: 20px;
  line-height: 1.2em;
}
.main-sidebar-navigation ul > li a {
  color: #000;
  text-decoration: none;
}
.main-sidebar-navigation ul > li a:hover {
  color: #9a1e3b;
}
.main-sidebar-navigation ul > li.active > a {
  color: #9a1e3b;
}
.education-resources .main-sidebar-navigation ul > li.active > a {
  font-weight: 700;
  color: #000;
}
.education-resources .main-sidebar-navigation ul > li.active > a:hover {
  color: #9a1e3b;
}
.main-sidebar-navigation ul > li.glossary-link {
  margin-top: 55px;
}
@media (max-width: 991px) {
  .main-sidebar-navigation ul > li.glossary-link {
    margin-top: 0;
  }
}
.main-sidebar-navigation ul > li ul {
  margin-top: 10px;
  font-size: 16px;
  padding-left: 10px;
}
.main-sidebar-navigation ul > li ul > li {
  margin-bottom: 10px;
  line-height: 1.2em;
}
.main-sidebar-navigation ul > li ul > li.active > a {
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
  font-weight: 700;
  color: #000;
}
.main-sidebar-navigation ul.auxillary {
  margin-top: 50px;
}
.mobile-menu {
  color: #222;
  font-size: 16px;
  width: 18px;
  height: 15px;
  position: relative;
}
.mobile-menu .menu-inner,
.mobile-menu .menu-inner::before,
.mobile-menu .menu-inner::after {
  width: 18px;
  height: 3px;
  background-color: #222;
  position: absolute;
}
.mobile-menu .menu-inner {
  top: auto;
  bottom: 0;
  transition-delay: 0.13s;
  transition-duration: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.mobile-menu .menu-inner::before,
.mobile-menu .menu-inner::after {
  content: '';
  display: block;
}
.mobile-menu .menu-inner::before {
  top: -6px;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.mobile-menu .menu-inner::after {
  top: -12px;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
.mobile-nav-open .mobile-menu .menu-inner {
  -webkit-transform: translate3d(0, -6px, 0) rotate(-45deg);
          transform: translate3d(0, -6px, 0) rotate(-45deg);
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transition-delay: 0.22s;
}
.mobile-nav-open .mobile-menu .menu-inner::before {
  -webkit-transform: rotate(-90deg);
      -ms-transform: rotate(-90deg);
          transform: rotate(-90deg);
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s, -webkit-transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
}
.mobile-nav-open .mobile-menu .menu-inner::after {
  opacity: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
}
.mobile-menu:hover {
  cursor: pointer;
}
.mobile-menu span {
  font-size: 24px;
  line-height: 1em;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none;
  }
}
/* HOMEPAGE STYLES */
.descriptor-link,
.descriptor-link.button-svg {
  position: absolute;
  top: -5em;
  right: 0;
  bottom: auto;
  left: 0;
  width: 23em;
  margin: auto;
}
.descriptor-link:focus,
.descriptor-link.button-svg:focus {
  top: 7.5em;
  z-index: 999;
}
@media (min-width: 992px) {
  .descriptor-link:focus,
  .descriptor-link.button-svg:focus {
    top: 8.5em;
  }
}
.main-header {
  width: 100%;
  position: fixed;
  top: 0;
  height: 80px;
  background-color: #fff;
  margin: 0 auto;
  z-index: 500;
  transition: box-shadow 0.3s;
}
.has-prompt .main-header {
  top: var(--promptHeight, 100px);
}
.main-header.shadow {
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}
.main-header .col-main.row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.main-header .col-main.row::before,
.main-header .col-main.row::after {
  content: none;
}
@media (max-width: 991px) {
  .main-header .col-main.row {
    height: 80px;
  }
}
@media (min-width: 992px) {
  .main-header .col-main.row {
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
@media (max-width: 991px) {
  .main-header {
    height: 80px;
  }
}
.homepage-top-tile {
  position: relative;
  margin-bottom: 1px;
  overflow: none;
  height: auto;
  box-sizing: border-box;
  background-color: rgba(111, 50, 49, 0.8);
  padding-top: 10px;
  padding-bottom: 10px;
}
@media (max-width: 767px) {
  .homepage-top-tile {
    background-color: #FFF;
  }
}
.homepage-top-tile.top-tile-logo {
  display: table;
  width: 100%;
  text-align: center;
  background-color: #000;
  padding-right: 25px;
  height: 199px;
}
@media (max-width: 991px) {
  .homepage-top-tile.top-tile-logo {
    display: none;
  }
}
.homepage-top-tile .logo {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.homepage-top-tile .logo img {
  margin: 0 auto;
}
.row--equal-height .row__container {
  padding: 0 0;
  width: 100%;
}
.row__container__table {
  display: table;
  border-collapse: separate;
  width: 100%;
}
.row__container__table__row {
  display: table-row;
}
.row__container__table__row__col--one-third {
  display: table-cell;
  background-color: black;
  vertical-align: middle;
  width: 33.3333%;
}
@media (max-width: 991px) {
  .row__container__table__row__col--one-third {
    display: none;
  }
}
.row__container__table__row__col--two-third {
  background-color: rgba(111, 50, 49, 0.8);
  display: table-cell;
  box-sizing: border-box;
  padding: 10px 0;
  margin-left: 1px;
}
.row__container__table__row__col--two-third .homepage-top-tile-content {
  box-sizing: border-box;
  padding: 15px 25px;
  border-right: 1px solid #281212;
}
@media (max-width: 1199px) {
  .row__container__table__row__col--two-third .homepage-top-tile-content {
    padding: 15px 20px;
  }
}
@media (max-width: 991px) {
  .row__container__table__row__col--two-third .homepage-top-tile-content {
    border-right: none;
  }
}
@media (max-width: 767px) {
  .row__container__table__row__col--two-third .homepage-top-tile-content {
    padding: 20px 15px;
    border-bottom: 1px solid #281212;
  }
}
.row__container__table__row__col--two-third .homepage-top-tile-content.last-top-tile-content {
  padding-left: 25px;
  border-left: none;
  border-right: none;
}
@media (max-width: 767px) {
  .row__container__table__row__col--two-third .homepage-top-tile-content.last-top-tile-content {
    border: none;
  }
}
.row__container__table__row__col--two-third .homepage-top-tile-content h5 {
  margin-top: 0;
  margin-bottom: 20px;
  color: #e5cfa7;
}
.row__container__table__row__col--two-third .homepage-top-tile-content button.btn-find-us {
  margin-top: -5px;
}
.row__container__table__row__col--two-third .info-block img {
  float: left;
  height: 110px;
  width: 110px;
  margin-right: 10px;
}
.row__container__table__row__col--two-third .info-block h3 {
  font-size: 21px;
  margin-top: 0;
  margin-bottom: 5px;
  color: white;
}
.row__container__table__row__col--two-third .info-block h4 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 11px;
  margin-bottom: 15px;
  line-height: 1.2em;
  color: white;
}
.row__container__table__row__col--two-third select {
  width: 100%;
  height: 45px;
  background: white;
  text-transform: uppercase;
  margin-bottom: 30px;
  font-size: 12px;
}
.widget-instagram-block {
  width: 1280px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
@media (min-width: 768px) {
  .widget-instagram-block .instagram-social-wrapper {
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .widget-instagram-block .instagram-social-wrapper button {
    margin-left: 10px;
  }
}
@media (max-width: 1199px) {
  .widget-instagram-block {
    width: 992px;
  }
}
@media (max-width: 991px) {
  .widget-instagram-block {
    width: 768px;
  }
}
@media (max-width: 767px) {
  .widget-instagram-block {
    max-width: 480px;
    width: 100%;
  }
}
.widget-instagram-block h3 {
  margin: 30px auto;
  max-width: 166px;
}
.widget-instagram-block a.instagram-link {
  display: block;
  text-align: center;
}
@media (max-width: 991px) {
  .widget-instagram-block a.instagram-link {
    margin-bottom: 5px;
  }
}
@media (max-width: 767px) {
  .widget-instagram-block a img {
    margin: 0 auto;
  }
}
.body-background {
  width: 100%;
  padding-top: 80px;
  z-index: 1;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding-bottom: 58.66666667%;
}
@media (min-width: 768px) {
  .body-background {
    height: 680px;
    padding-bottom: 0;
  }
}
.body-background #video-bg,
.body-background iframe {
  object-fit: cover;
  margin: 0 auto;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .body-background #video-bg,
  .body-background iframe {
    display: none;
  }
}
.body-background .banner-content {
  display: block;
  position: absolute;
  top: 80px;
  right: 0;
  bottom: 0;
  left: 0;
}
.body-background .banner-image {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.tile-row {
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .tile-row:first-child {
    margin-top: 60px;
  }
}
.tile-row .tile {
  position: relative;
  margin-top: 1px;
  overflow: none;
  height: auto;
  box-sizing: border-box;
  transition: all 0.3 ease;
}
.tile-row.animate-tiles {
  margin-bottom: 70px;
}
.tile-row.animate-tiles .tile-content:hover img.tile-image {
  width: 110%;
}
.tile-content {
  position: relative;
  width: auto;
  height: auto;
  overflow: hidden;
  color: black;
}
.tile-content.tile-content-square {
  max-height: 426px;
}
@media (max-width: 1199px) {
  .tile-content.tile-content-square {
    max-height: 331px;
  }
}
@media (max-width: 991px) {
  .tile-content.tile-content-square {
    max-height: 233px;
  }
}
@media (max-width: 767px) {
  .tile-content.tile-content-square {
    max-height: 320px;
  }
}
.tile-content img.tile-image {
  max-width: none;
  width: 100%;
  height: 100%;
  transition: all 0.3s ease;
}
.tile-content .stripe {
  position: absolute;
  bottom: 15%;
  width: 100%;
  background: url('../images/tile-stripe-texture.png') repeat top left;
  height: 100px;
  box-sizing: border-box;
  padding: 15px 25px;
}
@media (max-width: 991px) {
  .tile-content .stripe {
    height: auto;
  }
}
.tile-content .stripe .call-to-action {
  float: right;
  font-size: 12px;
  font-weight: 700;
  color: #df4925;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.5s ease;
  margin-bottom: 0;
}
@media (max-width: 991px) {
  .tile-content .stripe .call-to-action {
    float: none;
    text-align: center;
  }
}
.tile-content .stripe h3 {
  font-size: 26px;
  margin: 0 0 5px 0;
  line-height: 1em;
  text-transform: uppercase;
  text-overflow: ellipsis;
  color: black;
}
.tile-content .stripe h4 {
  text-transform: uppercase;
  margin: 0;
  font-weight: 700;
  letter-spacing: 0.1em;
  font-size: 12px;
  line-height: 1.2em;
  color: black;
}
.tile-full-width .stripe {
  height: auto;
  padding: 30px 50px;
}
@media (max-width: 991px) {
  .tile-full-width .stripe {
    position: relative;
    display: block;
    bottom: auto;
    padding: 30px 15px;
  }
}
.tile-full-width .stripe h2 {
  margin: 0;
  text-overflow: ellipsis;
  margin-bottom: 5px;
}
.tile-full-width .stripe h3 {
  margin: 0;
}
@media (max-width: 991px) {
  .tile-full-width .stripe h3 {
    margin-bottom: 15px;
  }
}
.tile-full-width .stripe p {
  font-size: 18px;
  text-transform: uppercase;
  padding-right: 10px;
  line-height: 1.4em;
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .tile-full-width .stripe p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}
.tile-full-width .stripe .btn {
  float: right;
}
@media (max-width: 1199px) {
  .tile-full-width .stripe .btn {
    float: none;
    margin-top: 15px;
  }
}
@media (max-width: 991px) {
  .tile-full-width .stripe .btn {
    float: right;
  }
}
@media (max-width: 767px) {
  .tile-full-width .stripe .btn {
    float: none;
  }
}
.home__hero-lead {
  width: 1280px;
  margin: 0 auto 45px auto;
}
.home__hero-lead > * {
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .home__hero-lead {
    width: 992px;
  }
}
@media (max-width: 991px) {
  .home__hero-lead {
    width: 768px;
  }
}
@media (max-width: 767px) {
  .home__hero-lead {
    max-width: 480px;
    width: 100%;
  }
}
.home__hero-lead a {
  background-color: #222;
  display: block;
  text-decoration: none;
  transition: background-color 0.5s ease;
}
.home__hero-lead a:hover {
  transition: background-color 0.5s ease;
  background-color: #000;
  text-decoration: none;
}
.home__hero-lead .home__hero-lead__call-to-action {
  display: table;
  width: 100%;
  color: white;
  height: auto;
  height: 60px;
  font-size: 2em;
  line-height: 2em;
}
@media (max-width: 991px) {
  .home__hero-lead .home__hero-lead__call-to-action {
    font-size: 1.5em;
  }
}
@media (max-width: 767px) {
  .home__hero-lead .home__hero-lead__call-to-action {
    font-size: 1em;
    line-height: 1em;
  }
}
.home__hero-lead .home__hero-lead__call-to-action__content {
  display: table-cell;
  vertical-align: middle;
  padding: 0 10px;
  color: #fff;
}
.home__hero-lead .home__hero-lead__call-to-action__content p {
  color: inherit;
  margin: 0;
  font-family: 'Gotham', sans-serif;
}
/* PERFORMANCE PAGE STYLES */
.performance-detail .main-content-header {
  margin-bottom: 40px;
}
.performance-detail .book-now {
  text-align: center;
}
.performance-detail h5 {
  font-size: 14px;
  letter-spacing: 0.1em;
  margin-top: 0;
  margin-bottom: 5px;
}
.performance-detail .p-credits {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .performance-detail .p-credits {
    margin-bottom: 30px;
  }
}
.performance-detail .choreographer {
  font-size: 20px;
}
.performance-detail .descriptor-link,
.performance-detail .descriptor-link:focus {
  position: relative;
  top: auto;
  right: auto;
  bottom: auto;
  left: auto;
  margin: 0 0 50px -20px;
}
.performance-additional-information {
  margin-bottom: 60px;
}
@media (max-width: 767px) {
  .performance-additional-information .credits-sidebar {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
}
.performance-additional-information ul {
  padding-left: 20px;
  margin-bottom: 30px;
  line-height: 160%;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
.performance-additional-information .music h3 {
  font-family: 'Gotham', sans-serif;
  margin-top: 0;
}
.performance-additional-information .music img {
  display: inline-block;
  width: 75px;
}
.performance-additional-information .production-tiles {
  margin-top: 60px;
}
@media (max-width: 991px) {
  .performance-additional-information .production-tiles {
    margin-top: 20px;
  }
}
.touring-info ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 25px;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
.performance-list-item {
  margin-bottom: 45px;
  line-height: 1.4em;
}
@media (max-width: 767px) {
  .performance-list-item {
    line-height: 1.3em;
  }
}
.performance-list-item h2 {
  margin-top: 0;
}
@media (max-width: 991px) {
  .performance-list-item h2 {
    font-size: 30px;
    margin-top: 20px;
  }
}
.performance-list-item h3 {
  margin-bottom: 30px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .performance-list-item h3 {
    font-size: 16px;
  }
}
.performance-list-item h4 {
  font-size: 14px;
  margin-bottom: 5px;
}
.performance-list-item .performance-links {
  margin-top: 20px;
}
.performance-list-item .performance-links a {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .performance-list-item .performance-links a {
    display: block;
    margin-right: 0px;
    margin-bottom: 10px;
  }
}
.performance-list-for-booking ul {
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
  box-sizing: border-box;
  text-align: left;
  border-top: 1px solid #EBEBEB;
}
.performance-list-for-booking ul:before,
.performance-list-for-booking ul:after {
  content: ' ';
  display: table;
}
.performance-list-for-booking ul:after {
  clear: both;
}
.performance-list-for-booking ul:before,
.performance-list-for-booking ul:after {
  content: ' ';
  display: table;
}
.performance-list-for-booking ul:after {
  clear: both;
}
@media (max-width: 767px) {
  .performance-list-for-booking ul {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.performance-list-for-booking ul:nth-child(even) {
  background-color: #f1f1f1;
}
.performance-list-for-booking ul:nth-child(even) li {
  background-color: #f1f1f1;
}
.performance-list-for-booking ul li {
  border-bottom: 0;
  float: left;
  width: 25%;
  text-transform: uppercase;
  font-size: 12px;
  box-sizing: border-box;
  padding: 10px;
}
.performance-list-for-booking ul li:first-child {
  width: 35%;
}
@media (max-width: 767px) {
  .performance-list-for-booking ul li:first-child {
    width: 100%;
  }
}
.performance-list-for-booking ul li:last-child {
  width: 15%;
}
@media (max-width: 767px) {
  .performance-list-for-booking ul li:last-child {
    width: 25%;
  }
}
.performance-list-for-booking ul li.book {
  text-align: right;
  font-weight: 700;
}
@media (max-width: 767px) {
  .performance-list-for-booking ul li {
    border-bottom: 0;
    width: 100%;
    float: none;
    padding: 5px;
  }
  .performance-list-for-booking ul li.book a {
    text-align: left;
    box-sizing: border-box;
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    text-align: center;
    letter-spacing: 1px;
    white-space: nowrap;
    font-family: 'Gotham', serif;
    font-style: normal;
    font-weight: 700;
    transition: background-color 0.5s ease;
    display: block;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    color: white;
  }
  .performance-list-for-booking ul li.book a,
  .performance-list-for-booking ul li.book a:visited,
  .performance-list-for-booking ul li.book a:hover,
  .performance-list-for-booking ul li.book a:active {
    color: #fff;
    font-size: 13px;
    border: 0;
    padding: 12px 35px;
  }
  .performance-list-for-booking ul li.book a.btn-odd-lg,
  .performance-list-for-booking ul li.book a.btn-odd-sm,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud,
  .performance-list-for-booking ul li.book a.btn-odd-sm-army,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army {
    background: transparent url(../images/btn-odd-lg.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    transition: all 0.2s ease !important;
  }
  .performance-list-for-booking ul li.book a.btn-odd-lg:hover,
  .performance-list-for-booking ul li.book a.btn-odd-sm:hover,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud:hover,
  .performance-list-for-booking ul li.book a.btn-odd-sm-army:hover,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army:hover {
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
  }
  .performance-list-for-booking ul li.book a.btn-odd-lg:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm-army:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army:focus {
    background-image: url('../images/btn-odd-blue.png');
  }
  .performance-list-for-booking ul li.book a.btn-odd-lg {
    height: 90px;
    font-size: 18px;
    line-height: 60px;
  }
  .performance-list-for-booking ul li.book a.btn-sm-md-1 {
    height: 48.8px;
    width: 250px;
    background-image: url(../images/btn-sm-md-1.png);
    font-size: 12px;
    line-height: 25px;
    padding: 12px 20px;
    margin-right: 0px;
    margin-left: 0px;
    min-width: 110px;
  }
  .performance-list-for-booking ul li.book a.btn-sm-md-1:focus {
    background-image: url('../images/btn-odd-blue.png');
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud,
  .performance-list-for-booking ul li.book a.btn-odd-sm-army,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army {
    background-image: url(../images/btn-odd-sm.png);
    height: 44px;
    font-size: 12px;
    line-height: 21px;
    padding: 12px 20px;
    margin-right: 0px;
    margin-left: 0px;
    min-width: 110px;
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm-army:focus,
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army:focus {
    background-image: url('../images/btn-odd-blue.png');
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud {
    background-image: url(../images/btn-odd-sm-ud.png);
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud:focus {
    background-image: url('../images/btn-odd-blue.png');
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm-army {
    background-image: url(../images/btn-odd-sm-army.png);
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm-army:focus {
    background-image: url('../images/btn-odd-blue.png');
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army {
    background-image: url(../images/btn-odd-sm-ud-army.png);
  }
  .performance-list-for-booking ul li.book a.btn-odd-sm-ud-army:focus {
    background-image: url('../images/btn-odd-blue.png');
  }
  .performance-list-for-booking ul li.book a.btn-odd {
    background: transparent url(../images/button.svg);
    background-size: 100% 100%;
  }
  .performance-list-for-booking ul li.book a.btn-oddrev {
    background: transparent url(../images/button-rev.svg);
    background-size: 100% 100%;
  }
  .performance-list-for-booking ul li.book a.btn-odd-square-bl,
  .performance-list-for-booking ul li.book a.btn-odd-square-br,
  .performance-list-for-booking ul li.book a.btn-odd-square-tl,
  .performance-list-for-booking ul li.book a.btn-odd-square-tr {
    background-size: 100% 100%;
    width: 50px;
    height: 75px;
  }
  .performance-list-for-booking ul li.book a.btn-odd-square-bl {
    background: transparent url(../images/button-square-bl.svg);
  }
  .performance-list-for-booking ul li.book a.btn-odd-square-br {
    background: transparent url(../images/button-square-br.svg);
  }
  .performance-list-for-booking ul li.book a.btn-odd-square-tl {
    background: transparent url(../images/button-square-tl.svg);
  }
  .performance-list-for-booking ul li.book a.btn-odd-square-tr {
    background: transparent url(../images/button-square-tr.svg);
  }
  .performance-list-for-booking ul li.book a.btn-odd-square {
    position: relative;
    vertical-align: top;
    margin-bottom: 40px;
  }
  .performance-list-for-booking ul li.book a.btn-odd-square:after {
    position: absolute;
    bottom: -20px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 9px;
    color: #9a1e3b;
    font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
  }
  .performance-list-for-booking ul li.book a:focus {
    color: #fff;
    text-decoration: none;
  }
  .performance-list-for-booking ul li.book a.btn-medium {
    font-size: 18px;
    padding: 16px 45px;
  }
  .performance-list-for-booking ul li.book a.btn-large {
    font-size: 20px;
    padding: 20px 50px;
  }
  .performance-list-for-booking ul li.book a.btn-block {
    display: block;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
  .performance-list-for-booking ul li.book a.btn-primary {
    transition: background-color 0.5s ease;
  }
  .performance-list-for-booking ul li.book a.btn-primary:hover {
    text-decoration: none;
    color: white;
  }
  .performance-list-for-booking ul li.book a:visited {
    color: #fff;
  }
  .performance-list-for-booking ul li.book a.btn-right {
    float: right;
  }
  .performance-list-for-booking ul li.book a.btn-centered {
    text-align: center;
    display: block;
  }
  .performance-list-for-booking ul li.book a.btn-bang {
    background-color: #9a1e3b !important;
  }
  .performance-list-for-booking ul li.book a.btn-unstyled {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    background: transparent;
    margin: 0;
    padding: 0;
    border: 0;
  }
  .performance-list-for-booking ul li.book a.btn-line-bottom {
    --border-bottom-width: 2px;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    margin: 0;
    padding: 0;
    border-bottom: var(--border-bottom-width) solid transparent;
    background-color: transparent;
    color: #777;
    text-decoration: none;
    transition-property: color, border-color;
    transition-duration: 0.2s;
    transition-timing-function: ease;
  }
  .performance-list-for-booking ul li.book a.btn-line-bottom:hover,
  .performance-list-for-booking ul li.book a.btn-line-bottom:focus,
  .performance-list-for-booking ul li.book a.btn-line-bottom.active {
    border-bottom: var(--border-bottom-width) solid #9eb5cb;
    color: #222;
  }
  .performance-list-for-booking ul li.book a:hover {
    text-decoration: none;
    color: white;
  }
}
/* ABOUT PAGES */
.dancers-list-container .dancer {
  position: relative;
  box-sizing: border-box;
  float: left;
  width: 20%;
  cursor: pointer;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
@media (max-width: 991px) {
  .dancers-list-container .dancer {
    width: 33.33%;
  }
}
@media (max-width: 767px) {
  .dancers-list-container .dancer {
    width: 50%;
  }
}
.dancers-list-container .dancer .dancer-name {
  display: none;
  position: absolute;
  box-sizing: border-box;
  width: 100%;
  top: 50%;
  color: #FFF;
  text-transform: uppercase;
  font-size: 20px;
  padding: 0 30px;
  text-align: center;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  z-index: 10;
}
@media (max-width: 767px) {
  .dancers-list-container .dancer .dancer-name {
    font-size: 18px;
    padding: 0 20px;
  }
}
.dancers-list-container .dancer .default-headshot {
  position: relative;
  z-index: 1;
}
.dancers-list-container .dancer .hover-headshot {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  border-right: 1px solid #FFF;
  border-bottom: 1px solid #FFF;
}
.people-list h2 {
  margin-top: 30px;
}
.people-list h2:first-of-type {
  margin-top: 0;
}
.people-list-container {
  margin-right: -20px;
}
.people-list-container .person {
  position: relative;
  box-sizing: border-box;
  float: left;
  width: 20%;
  padding: 0 20px 0 0;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .people-list-container .person {
    width: 33.333%;
  }
}
@media (max-width: 767px) {
  .people-list-container .person {
    width: 50%;
  }
}
.people-list-container .person-name {
  font-size: 22px;
  margin: 5px 0 0 0;
}
@media (max-width: 767px) {
  .people-list-container .person-name {
    font-size: 18px;
    line-height: 1em;
    margin-bottom: 5px;
  }
}
.people-list-container .person-title {
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.1em;
  margin: 0;
  font-weight: 700;
}
@media (max-width: 767px) {
  .people-list-container .person-title {
    font-size: 11px;
    line-height: 1.2em;
  }
}
.no-images-people-list .person-title {
  margin-bottom: 20px;
}
.dancer-profile-info {
  margin-bottom: 0;
}
.dancer-profile-info .bio-profile-info {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
@media (max-width: 767px) {
  .dancer-profile-info {
    margin-top: 20px;
  }
}
.dancer-profile-info dt {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  float: left;
  text-transform: uppercase;
  width: 33%;
  font-size: 14px;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .dancer-profile-info dt {
    float: none;
    width: 100%;
    margin-bottom: 5px;
  }
}
.dancer-profile-info dd {
  font-family: inherit;
  float: left;
  width: 66%;
  margin-bottom: 50px;
}
@media (max-width: 991px) {
  .dancer-profile-info dd {
    float: none;
    width: 100%;
    margin-bottom: 25px;
    line-height: 1.2em;
  }
}
.section-faq .faq-answer {
  display: none;
  padding-bottom: 20px;
}
.section-faq .faq-answer p {
  margin: 0;
}
.section-faq h3 {
  cursor: pointer;
}
.cms .faq-heading {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cms .faq-heading {
    margin-bottom: 30px;
  }
}
/* CALENDAR PAGES */
.calendar .calendar-list-container {
  display: none;
}
@media (max-width: 991px) {
  .calendar .calendar-list-container {
    display: block;
  }
}
@media (max-width: 991px) {
  .calendar .calendar-calendar-container {
    display: none;
  }
}
.calendar .next-month,
.calendar .previous-month {
  background: transparent;
  border: 0;
  color: #222;
}
.calendar .next-month:hover,
.calendar .previous-month:hover {
  color: #ae8f89;
}
.calendar .next-month {
  float: right;
}
.calendar .previous-month {
  float: left;
}
.calendar-list-options {
  padding-bottom: 20px;
  margin-bottom: 50px;
  border-bottom: 1px solid #e1e1e1;
}
@media (max-width: 767px) {
  .calendar-list-options {
    margin-bottom: 25px;
  }
}
.calendar-list-options .form-control {
  border: 0;
  padding-top: 0;
}
.calendar-list-options .select-menu {
  padding-top: 0;
}
@media (max-width: 767px) {
  .calendar-list-options .calendar-month-select select {
    font-size: 38px;
  }
}
@media (max-width: 767px) {
  .calendar-list-options .calendar-month-select select {
    background: #f8f8f8;
    border: 1px solid #ccc;
    color: #555;
    height: 42px;
    width: 100%;
    padding: 5px 30px 5px 0;
    font-size: 20px;
  }
}
.calendar-list-options .calendar-view-options {
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media (max-width: 991px) {
  .calendar-list-options .calendar-view-options {
    float: none;
  }
}
@media (max-width: 767px) {
  .calendar-list-options .calendar-view-options {
    float: none;
    margin-top: 20px;
  }
}
.calendar-list-options .calendar-view-options li {
  box-sizing: border-box;
  float: left;
  border-left: 1px solid #e1e1e1;
  padding: 0px 20px;
  text-align: center;
  font-size: 10px;
  line-height: 1.3em;
  height: 50px;
  display: table;
}
.calendar-list-options .calendar-view-options li:last-child {
  padding-right: 0px;
}
.calendar-list-options .calendar-view-options li:first-child {
  border-left: none;
}
.calendar-list-options .calendar-view-options li.select-menu {
  padding: 0px 30px 5px 0;
  width: 200px;
  font-size: 14px;
}
@media (max-width: 991px) {
  .calendar-list-options .calendar-view-options li.select-menu {
    padding-right: 0px;
    width: 100%;
  }
}
.calendar-list-options .calendar-view-options li a {
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.05em;
  display: table-cell;
  vertical-align: middle;
  color: #222;
}
.calendar-list-options .calendar-view-options li a:hover {
  color: #ae8f89;
}
.calendar-list-options .calendar-view-options li.active a {
  color: #000;
}
.calendar-list-item {
  margin-bottom: 50px;
}
.no-content {
  display: none;
  text-align: center;
}
.calendar-list-view .calendar-list-container {
  display: none;
}
@media (max-width: 991px) {
  .calendar-list-view .calendar-list-container {
    display: inline!important;
  }
}
.calendar-list-view .calendar-list-item {
  margin-bottom: 50px;
  text-transform: uppercase;
}
.calendar-list-view .calendar-list-item .grid {
  margin-bottom: 15px;
}
.calendar-list-view .calendar-list-item .grid .item-date {
  font-size: 36px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1em;
}
@media (max-width: 991px) {
  .calendar-list-view .calendar-list-item .grid .item-date {
    font-size: 30px;
  }
}
@media (max-width: 767px) {
  .calendar-list-view .calendar-list-item .grid .item-date {
    font-size: 24px;
    margin-top: 10px;
  }
}
.calendar-list-view .calendar-list-item .grid h2 {
  font-size: 30px;
  margin-top: 0;
  margin-bottom: 10px;
  line-height: 1em;
}
.calendar-list-view .calendar-list-item .grid .more-info {
  letter-spacing: 0.1em;
  font-weight: 700;
  font-size: 14px;
}
.calendar-list-view .calendar-list-item .grid .btn {
  float: right;
}
@media (max-width: 991px) {
  .calendar-list-view .calendar-list-item .grid .btn {
    float: none;
    margin-top: 10px;
  }
}
.calendar-location.form-control {
  padding-left: 0;
}
.calendar-month {
  border-collapse: collapse;
  padding: 0;
  margin-bottom: 15px;
  width: 100%;
}
.calendar-month * {
  box-sizing: border-box;
}
.calendar-month a {
  color: #000;
}
.calendar-month th,
.calendar-month td {
  padding: 0;
  margin: 0;
  width: 14.285%;
  text-transform: uppercase;
}
.calendar-month th hr,
.calendar-month td hr {
  margin-top: 5px;
  margin-bottom: 5px;
}
.calendar-month th {
  font-weight: 700;
  font-size: 12px;
  leter-spacing: 0.1em;
  text-align: left;
  padding-bottom: 2px;
}
.calendar-month td {
  position: relative;
  border: 1px solid #6f3231;
  height: 170px;
  padding: 12px;
  vertical-align: top;
}
.calendar-month td.has-performance:hover {
  background-color: #9a1e3b;
  color: #ffffff;
}
.calendar-month td.has-performance:hover a {
  color: white;
}
@media (max-width: 1199px) {
  .calendar-month td {
    height: 140px;
  }
}
.calendar-month p.date {
  color: #a09b9b;
  width: 100%;
  margin: 0;
  margin-bottom: 20px;
  line-height: 1em;
  font-size: 14px;
}
.calendar-month p {
  margin-bottom: 0px;
}
.calendar-month .time {
  font-size: 14px;
  font-weight: 700;
}
.calendar-month .title {
  font-size: 18px;
  line-height: 1.2em;
  margin-bottom: 5px;
}
.calendar-month .location {
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2em;
}
.calendar-month .btn {
  display: none;
  width: 100%;
  letter-spacing: 0.05em;
  margin-top: 25px;
}
@media (max-width: 991px) {
  .calendar-month {
    display: none;
  }
}
.calendar-month .calendar-perf-listing {
  margin-bottom: 15px;
}
/* SUPPORT PAGES */
.donation-widget .donate-button {
  text-align: right;
}
@media (max-width: 767px) {
  .donation-widget .donate-button {
    text-align: center;
  }
}
.donation-options-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.donation-options-container.donation-options-container--full {
  -webkit-flex-basis: 98%;
      -ms-flex-preferred-size: 98%;
          flex-basis: 98%;
  margin-top: 0;
}
.donation-option-banner img {
  width: 100%;
}
.donation-option {
  border: 1px solid #dad9d9;
  margin-bottom: 20px;
  width: 100%;
}
@media (min-width: 1200px) {
  .donation-option {
    margin-bottom: 30px;
  }
}
.donation-option-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.donation-option-banner {
  position: relative;
}
.donation-option-title {
  position: absolute;
  bottom: 15px;
  left: 20px;
}
@media (min-width: 768px) {
  .donation-option-title {
    bottom: 15px;
    left: 30px;
  }
}
.donation-option-title a {
  color: #222;
  font-size: 22px;
  text-transform: none;
}
@media (min-width: 992px) {
  .donation-option-title a {
    font-size: 35px;
  }
}
.donation-option-title a.light {
  color: #fff;
}
.donation-option-title h2 {
  margin: 0;
  margin-top: 5px;
}
.donation-option-text {
  padding: 30px;
}
@media (max-width: 767px) {
  .donation-option-text {
    padding: 15px;
  }
  .donation-option-text p {
    line-height: 1.2em;
  }
}
@media (min-width: 1200px) {
  .donation-option-text {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .donation-option-text .tile-desc {
    max-width: 336px;
  }
  .donation-option-text .button-wrapper {
    margin-left: auto;
  }
}
.donation-option-text h5 {
  margin-top: 0;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .donation-option-text h5 {
    font-size: 18px;
  }
}
.donation-option-text button {
  margin-top: 15px;
}
.partner-logos {
  padding-top: 40px;
}
@media (max-width: 767px) {
  .partner-logos {
    padding-top: 20px;
  }
}
.partner-logos img {
  margin-bottom: 15px;
}
.partner-logos hr.top-margin-13 {
  margin-top: 6px;
}
.giving-catalogue-options-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.giving-catalogue-options-container .giving-catalogue-option {
  border: 1px solid #dad9d9;
  max-width: 588px;
  margin: 0 auto;
  -webkit-flex-basis: 32.3%;
      -ms-flex-preferred-size: 32.3%;
          flex-basis: 32.3%;
  margin-bottom: 10px;
}
@media (max-width: 991px) {
  .giving-catalogue-options-container .giving-catalogue-option {
    -webkit-flex-basis: 49%;
        -ms-flex-preferred-size: 49%;
            flex-basis: 49%;
  }
}
@media (max-width: 767px) {
  .giving-catalogue-options-container .giving-catalogue-option {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-banner {
  position: relative;
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title {
  text-transform: uppercase;
  font-family: 'Ainslie-NorLig', Helvetica, AFrial, sans-serif;
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title a,
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title font {
  color: #000;
}
@media (max-width: 767px) {
  .giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title {
    bottom: 15px;
    left: 15px;
  }
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title h2,
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title h3 {
  margin: 0;
  margin-top: 5px;
  font-size: 25px;
  font-family: 'Gotham', sans-serif;
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-title h3 {
  font-style: italic;
  margin-bottom: 10px;
  font-size: 20px;
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text {
  padding: 10px;
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text p {
  font-size: 15px;
  line-height: 1.5;
}
@media (max-width: 767px) {
  .giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text {
    padding: 15px;
  }
  .giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text p {
    line-height: 1.2em;
  }
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text h5 {
  margin-top: 0;
  margin-bottom: 5px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text h5 {
    font-size: 18px;
  }
}
.giving-catalogue-options-container .giving-catalogue-option .giving-catalogue-option-text button {
  margin-top: 15px;
}
section.rekindling img.logo {
  min-width: 400px;
  max-width: 400px;
}
section.rekindling a.btn-odd-lg {
  margin-top: 75px;
}
section.rekindling h2.subtitle {
  margin-top: 55px;
  margin-bottom: 55px;
}
section.rekindling .community-leaders {
  padding: 35px;
  background-color: #ebebeb;
  margin-top: 50px;
}
section.rekindling .community-leaders p:last-child {
  margin-bottom: 0;
}
section.rekindling .community-leaders h2 {
  margin-top: 0;
}
section.rekindling .community-leaders h3 {
  font-family: 'Gotham', sans-serif;
}
section.rekindling .community-leaders .download-pdf {
  text-align: right;
}
section.rekindling .community-leaders .download-pdf a {
  font-size: 15px;
  margin-top: 0;
}
section.rekindling .locations {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 25px;
}
section.rekindling .locations .location {
  -webkit-flex-basis: 46.5%;
      -ms-flex-preferred-size: 46.5%;
          flex-basis: 46.5%;
  border: 1px solid #bbb;
  padding: 1%;
  padding-bottom: 2%;
  margin-bottom: 20px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 1s ease;
  height: 0%;
}
@media (max-width: 767px) {
  section.rekindling .locations .location {
    -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
            flex-basis: 100%;
  }
}
section.rekindling .locations .location.open .arrow-down {
  display: none;
}
section.rekindling .locations .location.open .arrow-up {
  display: block;
}
section.rekindling .locations .location:hover {
  border-color: #df4925;
}
section.rekindling .locations .location:hover .arrow-down,
section.rekindling .locations .location:hover .arrow-up {
  color: #df4925;
}
section.rekindling .locations .location h4 {
  margin-bottom: 0;
}
section.rekindling .locations .location .arrow-down,
section.rekindling .locations .location .arrow-up {
  position: absolute;
  right: 20px;
  top: 30px;
  color: #bbb;
}
section.rekindling .locations .location .arrow-up {
  display: none;
}
section.rekindling .locations .location ul {
  list-style-type: none;
  padding-left: 0;
  margin-top: 15px;
  margin-bottom: 0;
  transition: all 1s ease;
}
section.rekindling .rekindling-footer {
  margin-top: 50px;
}
section.rekindling .rekindling-footer ul li {
  margin-bottom: 10px;
}
section.rekindling .rekindling-form-widget {
  display: none;
  margin-top: 25px;
}
/* SINGLE PAGES */
.skiptocontent a {
  position: absolute;
  left: -10px;
  top: -75px;
  padding: 20px 15px 10px 25px;
  background: #000;
  color: #FFF;
  text-transform: uppercase;
  border-radius: 10px;
  z-index: 2000;
  font-size: 14px;
  transition: all 0.3s ease;
  text-decoration: none;
}
.skiptocontent a:focus {
  top: -10px;
  text-decoration: none;
}
.education-resources {
  font-size: 1em;
}
.education-resources .col-lg-3 {
  width: 12.75em;
  max-width: 1180px;
}
@media (max-width: 1199px) {
  .education-resources .col-lg-3 {
    width: 12.75em;
  }
}
@media (max-width: 991px) {
  .education-resources .col-lg-3 {
    width: 100%;
    max-width: 720px;
  }
}
.education-resources .col-lg-9 {
  width: 47.5em;
  max-width: 1180px;
}
@media (max-width: 1199px) {
  .education-resources .col-lg-9 {
    width: 47.5em;
  }
}
@media (max-width: 991px) {
  .education-resources .col-lg-9 {
    max-width: 720px;
    width: 100%;
  }
}
.education-resources .main-sidebar-navigation {
  margin-bottom: 50px;
}
.education-content ul li {
  margin-bottom: 10px;
}
.education-content .resource-introduction {
  margin-bottom: 25px;
}
.education-content .resource-introduction p {
  margin: 0;
}
.education-content .resources-video {
  height: 0;
  padding-bottom: 56.25%;
  /* 16:9 */
  position: relative;
}
.education-content .resources-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 845px;
  height: 100%;
  margin-bottom: 40px;
}
@media (max-width: 1199px) {
  .education-content .resources-video iframe {
    width: 661px;
  }
}
@media (max-width: 991px) {
  .education-content .resources-video iframe {
    width: 708px;
  }
}
@media (max-width: 767px) {
  .education-content .resources-video iframe {
    width: 100%;
  }
}
.education-content .resources-video + div {
  margin-top: 10px;
  margin-bottom: 35px;
}
.education-content .section-header {
  margin-bottom: 30px;
}
.education-content h5 {
  margin-bottom: 0px;
}
.education-resource-navigation-links {
  margin-top: 80px;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 700;
}
.education-resource-navigation-links .previous-page {
  float: left;
  margin-bottom: 25px;
}
.education-resource-navigation-links .next-page {
  float: right;
  margin-bottom: 25px;
}
.rekindling-youth-program .main-content-header {
  margin-bottom: 30px;
}
.rekindling-youth-program .rekindling-sidebar {
  padding-top: 120px;
}
@media (max-width: 991px) {
  .rekindling-youth-program .rekindling-sidebar {
    padding-top: 0px;
    padding-bottom: 30px;
  }
}
.rekindling-youth-program .rekindle-registration-location {
  position: relative;
  border: 1px solid #dad9d9;
  padding: 20px;
  margin: 0px 0 35px 0;
}
@media (max-width: 767px) {
  .rekindling-youth-program .rekindle-registration-location {
    margin-bottom: 20px;
  }
}
.rekindling-youth-program .rekindle-registration-location h3 {
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 5px;
}
.rekindling-youth-program .rekindle-registration-location > p {
  padding-right: 50px;
  margin-bottom: 0;
}
.rekindling-youth-program .rekindle-registration-location .rekindle-registration-dates {
  margin-top: 20px;
}
.rekindling-youth-program .rekindle-registration-location .rekindle-registration-dates p {
  margin: 0;
  margin-bottom: 5px;
}
.rekindling-youth-program .rekindle-registration-location .show-more-arrow {
  position: absolute;
  right: 20px;
  top: 30px;
  width: 30px;
  height: 30px;
  cursor: pointer;
}
@media (max-width: 991px) {
  .rekindling-youth-program .rekindle-registration-location .show-more-arrow {
    top: 15px;
  }
}
.rekindling-youth-program .rekindle-registration-location .show-more-arrow.closed {
  background: url("../images/small-gray-arrow-down.png") no-repeat center center;
}
.rekindling-youth-program .rekindle-registration-location .show-more-arrow.open {
  background: url("../images/small-gray-arrow-up.png") no-repeat center center;
}
.rekindling-youth-program .rekindling-sponsors li {
  margin-bottom: 10px;
}
.international-program .widget-slider {
  margin-bottom: 40px;
}
@media (max-width: 991px) {
  .international-program .widget-slider {
    margin-bottom: 0px;
  }
}
@media (max-width: 767px) {
  .international-program h1 {
    font-size: 36px;
  }
}
.corporate-sponsorship ul {
  padding-left: 0;
  list-style-type: none;
}
.corporate-sponsorship ul li {
  margin-bottom: 10px;
}
.corporate-sponsorship ul li:before {
  content: '> ';
  color: #9a1e3b;
}
.partners-container,
.partners {
  margin-top: 35px;
}
@media (min-width: 992px) {
  .partners-container,
  .partners {
    margin-top: 50px;
  }
}
.partners-container h3,
.partners h3 {
  border-top: 1px solid #ccc;
  margin-top: 0px;
  padding-top: 20px;
  margin-bottom: 35px;
  width: 100%;
}
@media (min-width: 992px) {
  .partners-container h3,
  .partners h3 {
    margin-top: 15px;
    padding-top: 35px;
    margin-bottom: 50px;
  }
}
.partners-container .partners-group,
.partners .partners-group {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: -20px;
  margin-right: -20px;
}
@media (min-width: 992px) {
  .partners-container .partners-group,
  .partners .partners-group {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.partners-container .partners-group .partner,
.partners .partners-group .partner {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-flex-basis: 50%;
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
  padding-left: 20px;
  padding-right: 20px;
  margin-bottom: 35px;
}
@media (min-width: 992px) {
  .partners-container .partners-group .partner,
  .partners .partners-group .partner {
    -webkit-flex-basis: 25%;
        -ms-flex-preferred-size: 25%;
            flex-basis: 25%;
    margin-bottom: 50px;
  }
}
.partners-container .partners-group .partner a,
.partners .partners-group .partner a,
.partners-container .partners-group .partner span,
.partners .partners-group .partner span {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  display: inline-block;
  color: #222;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 13px;
  text-decoration: none;
  word-break: break-word;
}
.partners-container .partners-group .partner-separator,
.partners .partners-group .partner-separator {
  -webkit-flex: 0 0 100%;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
  height: 0;
}
.partners-container .partners-group.group-ignore-logos,
.partners .partners-group.group-ignore-logos {
  padding-bottom: 15px;
}
@media (min-width: 992px) {
  .partners-container .partners-group.group-ignore-logos,
  .partners .partners-group.group-ignore-logos {
    padding-bottom: 30px;
  }
}
.partners-container .partners-group.group-ignore-logos .partner,
.partners .partners-group.group-ignore-logos .partner {
  display: block;
  width: 100%;
  -webkit-flex: 0 0 auto;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  max-width: 100%;
  margin-right: 0;
  margin-bottom: 20px;
}
.partners-container .group-government-core-funding-partners .partner,
.partners .group-government-core-funding-partners .partner,
.partners-container .group-other-government-partners .partner,
.partners .group-other-government-partners .partner {
  -webkit-flex: 0 1 auto;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: 100%;
}
@media (min-width: 992px) {
  .partners-container .group-government-core-funding-partners .partner,
  .partners .group-government-core-funding-partners .partner,
  .partners-container .group-other-government-partners .partner,
  .partners .group-other-government-partners .partner {
    max-width: 50%;
    margin-right: 100px;
  }
}
section.media-releases ul {
  margin-bottom: 35px;
}
section.media-releases ul li {
  margin-bottom: 10px;
}
section.media-releases ul:last-child {
  margin-bottom: 65px;
}
.artistic-director img {
  margin-bottom: 5px;
}
.artistic-director a {
  font-size: 12px;
}
.sidebar-media-contact {
  line-height: 1.5;
}
.dancer-list {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.dancer-list > * {
  margin-bottom: 4px;
}
.dancer-list .img__alternate {
  display: none;
  transition: 1s;
}
.dancer-list .gradient {
  z-index: 1;
}
.dancer-list .img__default {
  transition: 1s;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
}
.dancer-list .img-wrapper {
  position: relative;
  padding-bottom: 133.72641509%;
  overflow: hidden;
}
.dancer-list .dancer-name {
  font-size: 22px;
  position: absolute;
  margin-bottom: 0;
  z-index: 2;
  left: 2px;
  right: 2px;
  bottom: 0;
  color: #fff;
  padding-bottom: 35px;
  text-align: center;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 7.14%, #222 100%);
  text-decoration: none;
}
@media (min-width: 992px) {
  .dancer-list .dancer-name {
    font-size: 35px;
  }
}
.dancer-list .dancer-name p {
  margin-bottom: 0;
  font-weight: normal;
  text-transform: none;
  max-width: 351px;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  margin: 0 auto;
  font-family: 'Prata', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}
.bio-container .profile-image-container {
  position: relative;
  max-width: 276px;
  margin: 0 auto;
  overflow: hidden;
}
.bio-container .profile-image-container video {
  width: 100%;
}
.bio-container .profile-image-container img {
  object-fit: cover;
}
.bio-container .profile-image-container .dancer-video-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.bio-container .bio-profile-info {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
.bio-container .bio-profile-info dt {
  font-weight: 400;
}
@media (max-width: 991px) {
  .bio-container .bio-profile-info {
    margin-bottom: 0;
  }
}
.bio-container .bio-line {
  border-top: 1px solid #e0e0db;
  padding-top: 25px;
  margin-bottom: 25px;
  overflow: auto;
}
@media (max-width: 767px) {
  .bio-container .bio-line {
    margin-left: 0;
  }
}
@media (max-width: 991px) {
  .bio-container .bio-line {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}
.bio-container .bio-line:first-child {
  margin-top: 40px;
}
@media (min-width: 768px) {
  .bio-container .bio-line:first-child {
    margin-top: 0;
  }
}
.bio-container .bio-line:last-child {
  border-bottom: none;
}
.bio-container .bio-line dt,
.bio-container .bio-line dd {
  float: left;
}
@media (max-width: 991px) {
  .bio-container .bio-line dt,
  .bio-container .bio-line dd {
    float: none;
  }
}
.bio-container .bio-line dt {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1px;
  font-size: 15px;
  text-transform: uppercase;
  width: 33%;
  clear: left;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .bio-container .bio-line dt {
    width: 100%;
  }
}
.bio-container .bio-line dd {
  width: 66%;
}
@media (max-width: 991px) {
  .bio-container .bio-line dd {
    width: 100%;
  }
}
.bio-container .bio-line dd p {
  margin-bottom: 0;
}
.person-list-board .person,
.person-list-executives .person {
  width: 15%;
  margin-right: 1.2% !important;
}
.credit {
  margin-bottom: 30px;
}
.credit:last-of-type {
  margin-bottom: 0;
}
.team-title:not(:first-of-type) {
  margin-top: 50px;
}
.dancer-name {
  display: block;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  .the-team {
    -webkit-columns: 2;
            columns: 2;
    -webkit-column-count: 2;
            column-count: 2;
  }
}
@media (min-width: 992px) {
  .the-team {
    -webkit-columns: 3;
            columns: 3;
    -webkit-column-count: 3;
            column-count: 3;
  }
}
.the-team .credit h5 {
  margin-bottom: 10px;
}
.the-team .credit p,
.the-team .credit a {
  display: block;
  margin-bottom: 20px;
}
.team-section {
  margin-bottom: 50px;
  -webkit-column-break-inside: avoid;
          break-inside: avoid-column;
}
section.supporters {
  margin-bottom: 50px;
}
section.supporters h2 {
  font-size: 24px;
}
section.supporters .widget-collapse-box {
  cursor: inherit;
}
section.supporters .widget-collapse-box .locations {
  display: block;
  margin-bottom: 0;
}
section.supporters .widget-collapse-box .locations .location {
  padding: 0;
  border: 0;
  border-bottom: 1px solid #ccc;
  margin-bottom: 0;
}
section.supporters .widget-collapse-box .locations .location .js-toggle-btn {
  display: inline-block;
  width: 100%;
}
section.supporters .widget-collapse-box .locations .location .js-toggle-btn i {
  top: 29px;
}
section.supporters .widget-collapse-box .locations .location .content h2 {
  font-size: 24px;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  font-weight: 500;
  line-height: 1.1;
  margin: 0 !important;
  font-family: 'Ainslie-NorReg', Helvetica, Arial, sans-serif;
}
section.supporters .widget-collapse-box:hover h2 {
  color: #df4925;
}
section.supporters .content {
  opacity: 1;
}
section.supporters .content .supporters {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-top: 25px;
  gap: 15px;
}
section.supporters .content .supporters .grid {
  width: 100%;
}
@media (max-width: 991px) {
  section.supporters .content .supporters .grid .donor {
    padding: 10px 0;
  }
}
@media (max-width: 991px) {
  section.supporters .content .supporters .grid .donor {
    padding: 5px 0;
  }
}
section.past-productions {
  overflow: auto;
}
section.past-productions a .production {
  width: 393px;
  height: 393px;
  background-size: cover;
  background-position: center center;
  position: relative;
  float: left;
}
@media (max-width: 1199px) {
  section.past-productions a .production {
    width: 297px;
    height: 297px;
  }
}
@media (max-width: 991px) {
  section.past-productions a .production {
    width: 354px;
    height: 354px;
  }
}
@media (max-width: 767px) {
  section.past-productions a .production {
    width: 450px;
    height: 450px;
  }
}
section.past-productions a .production .title-container {
  position: absolute;
  height: 80px;
  bottom: 60px;
  width: 100%;
  background: url("../images/tile-stripe-texture.png") repeat top left;
}
section.past-productions a .production .title-container h2 {
  margin-left: 20px;
  font-size: 22px;
  margin-top: 10px;
  font-family: 'Gotham', sans-serif;
}
section.past-productions a:hover h2 {
  color: #ae8f89;
}
section.job-list {
  margin-bottom: 35px;
}
section.job-list .job {
  border-top: 1px solid #ccc;
  margin-top: 15px;
  padding-top: 15px;
}
section.job-list .job:first-child {
  border-top: 0;
}
.main .jobs-heading {
  margin-bottom: 0;
  font-size: 22px;
}
@media (min-width: 992px) {
  .main .jobs-heading {
    font-size: 35px;
  }
}
.jobs-section {
  -webkit-transform: translateY(-50px);
      -ms-transform: translateY(-50px);
          transform: translateY(-50px);
}
#form-work-experience .control-label-required:after {
  content: ' *';
  color: red;
}
#form-work-experience button {
  margin-top: 15px;
}
.venue-hire-form-container {
  border: none;
}
.venue-hire-form-container p {
  color: white;
}
.merchandise-category {
  padding-top: 35px;
}
.merchandise-category h2 {
  text-transform: initial;
}
.merchandise-category .merchandise {
  margin-bottom: 60px;
}
.merchandise-category .merchandise img {
  width: 100%;
}
.merchandise-category .merchandise h3 {
  margin-top: 10px;
  margin-bottom: 0;
}
.merchandise-category .merchandise p {
  margin-bottom: 5px;
}
.merchandise-category .merchandise a.btn {
  margin-left: -10px;
  margin-top: 15px;
  margin-bottom: 15px;
}
.teachers-workshop-form-widget h2 {
  margin-top: 10px;
  font-size: 28px;
}
.teachers-workshop-form-widget form .year-groups legend {
  display: block;
}
.teachers-workshop-form-widget form .year-groups .checkbox {
  display: inline-block;
  width: 125px;
}
.teachers-workshop-form-widget form .year-groups .checkbox:first-child {
  clear: left;
}
/* SHOPPING CART STYLES */
.shopping-products-overview h2 {
  margin-top: 90px;
  margin-bottom: 35px;
}
@media (max-width: 991px) {
  .shopping-products-overview h2 {
    margin-top: 70px;
  }
}
.shopping-products-overview .shop-item a {
  display: block;
  position: relative;
  text-decoration: none;
}
.shopping-products-overview .shop-item a > div {
  position: absolute;
  bottom: 5px;
  right: 5px;
  opacity: 1;
}
@media (max-width: 1199px) {
  .shopping-products-overview .shop-item a > div {
    left: 0;
  }
}
.shopping-products-overview .shop-item a h3:hover {
  color: #ae8f89;
}
.shopping-products-overview .shop-item a h3:hover > div {
  opacity: 1;
}
@media (max-width: 991px) {
  .shopping-products-overview .shop-item {
    margin-bottom: 30px;
  }
}
@media (max-width: 767px) {
  .shopping-products-overview .shop-item {
    padding-bottom: 30px;
    border-bottom: 1px solid #e6e6e6;
  }
}
.shopping-products-overview .shop-item .item-image {
  margin-bottom: 10px;
}
.shopping-products-overview .shop-item h3 {
  font-size: 22px;
  margin: 0;
}
@media (max-width: 991px) {
  .shopping-products-overview .shop-item h3 {
    font-size: 20px;
  }
}
.shopping-products-overview .shop-item .item-description {
  font-size: 14px;
  margin-bottom: 10px;
}
.shopping-products-overview .shop-item a.item-price {
  font-size: 26px;
  margin-top: 15px;
  margin-bottom: 20px;
}
@media (max-width: 991px) {
  .shopping-products-overview .shop-item a.item-price {
    margin-bottom: 15px;
  }
}
.shopping-products-overview .shop-item a:hover .item-price {
  color: #e2b7ae;
}
/* WIDGETS */
.widget-block-quote {
  padding: 10px 0;
  height: auto;
  text-align: center;
}
.widget-block-quote p {
  box-sizing: border-box;
  width: 85%;
  font-size: 32px;
  margin: 0 auto 20px auto;
  line-height: 1.3em;
  letter-spacing: 0.1em;
}
.widget-block-quote p.full-width {
  width: 100%;
}
@media (max-width: 991px) {
  .widget-block-quote p {
    width: 90%;
    font-size: 26px;
  }
}
@media (max-width: 767px) {
  .widget-block-quote p {
    width: 100%;
    font-size: 18px;
  }
}
.widget-block-quote .quote {
  font-size: 22px;
  margin-top: 0;
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .widget-block-quote .quote {
    font-size: 35px;
    margin-bottom: 40px;
  }
}
.widget-block-quote .citation {
  font-size: 15px;
  margin-bottom: 0;
  color: black;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.widget-block-quote.light-background {
  background-color: #fff;
  color: #000;
}
.widget-block-quote.dark-background {
  background-color: #6f3231;
  color: #fcfae1;
}
.widget-block-quote.transparent-background {
  text-transform: inherit;
}
.widget-block-quote.large-quote p {
  width: 90%;
  font-size: 36px;
}
@media (max-width: 991px) {
  .widget-block-quote.large-quote p {
    width: 100%;
    font-size: 28px;
  }
}
@media (max-width: 767px) {
  .widget-block-quote.large-quote p {
    font-size: 20px;
  }
}
.widget-block-quote.large-quote .citation {
  font-weight: normal;
}
.widget-newsletter {
  box-sizing: border-box;
  padding: 40px 0 40px 20px;
  background-color: #6f3231;
  height: auto;
  color: #FFF;
}
@media (max-width: 991px) {
  .widget-newsletter {
    padding: 25px 15px;
  }
}
@media (max-width: 767px) {
  .widget-newsletter {
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  .widget-newsletter .newsletter-form-row {
    margin-bottom: 20px;
  }
}
.widget-newsletter h2 {
  margin-top: 0px;
  margin-bottom: 20px;
}
@media (max-width: 767px) {
  .widget-newsletter h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.widget-newsletter .first-field {
  width: 40%;
}
@media (max-width: 767px) {
  .widget-newsletter .first-field {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.widget-newsletter .second-field {
  width: 81%;
}
@media (max-width: 767px) {
  .widget-newsletter .second-field {
    width: 100%;
    margin-bottom: 10px;
    margin-right: 0;
  }
}
.widget-newsletter .form-group {
  border-width: 0;
  padding-left: 0;
}
.widget-newsletter .form-group input {
  height: auto;
  background-color: transparent;
  border-radius: 0;
  border-color: rgba(255, 255, 255, 0.4);
  border-width: 1px;
  color: white;
  margin-right: 10px;
  font-size: 14px;
  padding: 5px 10px;
}
.widget-newsletter .form-group input::-webkit-input-placeholder {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Times';
}
.widget-newsletter .form-group input:-moz-placeholder {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Times';
}
.widget-newsletter .form-group input::-moz-placeholder {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Times';
}
.widget-newsletter .form-group input:-ms-input-placeholder {
  font-style: italic;
  color: rgba(255, 255, 255, 0.6);
  font-family: 'Times';
}
.widget-newsletter .form-group.country {
  width: auto;
}
@media (max-width: 767px) {
  .widget-newsletter .form-group.country {
    width: 100%;
  }
}
.widget-newsletter select {
  width: auto;
  margin-right: 10px;
  font-size: 12px;
}
@media (max-width: 767px) {
  .widget-newsletter select {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }
}
.widget-newsletter select.country {
  width: 40%;
}
@media (max-width: 991px) {
  .widget-newsletter select.country {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .widget-newsletter select.country {
    width: 100%;
  }
}
.widget-newsletter button {
  margin-top: 15px;
}
footer .widget-newsletter {
  background: transparent;
  padding: 0;
  margin-bottom: 0;
}
footer .widget-newsletter h2 {
  font-size: 22px;
  color: #e5cfa7;
}
@media (max-width: 767px) {
  footer .widget-newsletter {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(223, 73, 37, 0);
  }
  footer .widget-newsletter h2,
  footer .widget-newsletter .form-group,
  footer .widget-newsletter .newsletter-form-row {
    margin-bottom: 0;
  }
  footer .widget-newsletter button {
    margin-top: 8px;
  }
}
footer .widget-newsletter .first-field,
footer .widget-newsletter .second-field {
  width: 100%;
}
footer .widget-newsletter .first-field input,
footer .widget-newsletter .second-field input {
  background-color: #6f3231;
}
.widget-single-link-container {
  text-decoration: none;
  outline: none;
  color: inherit;
}
.widget-single-link-container:hover,
.widget-single-link-container:active,
.widget-single-link-container:visited {
  text-decoration: none;
  color: inherit;
}
.widget-single-link {
  position: relative;
  box-sizing: border-box;
  background-color: #000;
  height: 250px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 30px;
  color: #FFF;
}
@media (max-width: 767px) {
  .widget-single-link {
    height: auto;
    background-position: top left;
  }
}
.widget-single-link h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 30px;
  letter-spacing: 0.075em;
}
.widget-single-link h2 a {
  color: white;
}
@media (max-width: 767px) {
  .widget-single-link h2 {
    font-size: 22px;
    margin-bottom: 20px;
  }
}
.widget-single-link .quote {
  color: #CDCEBC;
  text-transform: none;
  font-size: 14px;
}
.widget-single-link .quote a {
  color: white;
}
.widget-single-link .quote p {
  letter-spacing: 1.2px;
  width: 50%;
  line-height: 1.5em;
  margin-bottom: 0px;
}
.widget-single-link .quote p a {
  color: white;
}
@media (max-width: 767px) {
  .widget-single-link .quote p {
    width: 100%;
  }
}
.widget-single-link .quote .citation {
  font-size: 12px;
  margin-top: 5px;
  font-weight: 700;
}
.widget-video-block button {
  padding: 0;
  margin: 0;
  border: 0;
  background-color: transparent;
}
.widget-video-block iframe {
  height: 700px;
}
@media (max-width: 1199px) {
  .widget-video-block iframe {
    height: 620px;
  }
}
@media (max-width: 991px) {
  .widget-video-block iframe {
    height: 430px;
  }
}
@media (max-width: 767px) {
  .widget-video-block iframe {
    height: 275px;
  }
}
.widget-video-block .thumbnail-video .fake-youtube-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 68px;
  height: 48px;
  margin-left: -34px !important;
  margin-top: -24px !important;
  transition: opacity 0.25s cubic-bezier(0, 0, 0.2, 1);
  outline: 0;
  border: none;
  background-color: transparent;
  padding: 0;
  color: inherit;
  text-align: inherit;
  font-size: 100%;
  font-family: inherit;
  cursor: pointer;
  line-height: inherit;
}
.widget-video-block .thumbnail-video .fake-youtube-btn #ytp-large-play-button-bg {
  fill: #1f1f1e;
  fill-opacity: 0.81;
}
.widget-video-block .thumbnail-video:hover #ytp-large-play-button-bg {
  fill: #CC181E;
  fill-opacity: 1;
}
.widget-resource-icons {
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.1em;
  color: #000;
  text-align: center;
}
@media (max-width: 991px) {
  .widget-resource-icons {
    margin-top: 0px;
  }
}
@media (max-width: 767px) {
  .widget-resource-icons {
    margin-top: 30px;
  }
}
.widget-resource-icons a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  line-height: 1.2em;
  margin-bottom: 15px;
}
.widget-resource-icons a img {
  margin: 0 auto;
}
.widget-resource-icons .icon-label {
  margin-bottom: 20px;
  margin-top: 5px;
}
.widget-resource-icons .col-lg-6 {
  padding-bottom: 35px;
}
.widget-share {
  position: absolute;
  right: 50px;
  top: 50px;
  display: none;
}
@media (max-width: 991px) {
  .widget-share {
    right: 0px;
    top: -55px;
    color: #FFF;
  }
}
.widget-share h5,
.widget-share .h5 {
  margin-bottom: 5px;
  margin-top: 0;
}
@media (max-width: 991px) {
  .widget-share h5,
  .widget-share .h5 {
    float: left;
    margin-right: 15px;
    margin-top: 14px;
  }
}
.widget-share a {
  float: left;
  display: inline-block;
  margin-right: 10px;
}
.widget-share a:last-child {
  margin-right: 0;
}
.widget-highlighted-content {
  padding: 30px;
  background-color: #ebebeb;
  margin-bottom: 80px;
}
@media (max-width: 991px) {
  .widget-highlighted-content {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .widget-highlighted-content {
    padding: 20px;
    margin-bottom: 30px;
  }
}
.widget-highlighted-content h2 {
  margin-top: 0px;
  margin-bottom: 20px;
}
.widget-highlighted-content h3 {
  margin-top: 0;
  margin-bottom: 7px;
}
.widget-highlighted-content button {
  float: right;
}
@media (max-width: 991px) {
  .widget-highlighted-content button {
    float: none;
    margin-top: 20px;
  }
}
.widget-highlighted-content p:last-child {
  margin-bottom: 0px;
}
@media (max-width: 767px) {
  .success-stories {
    padding-top: 10px;
  }
  .success-stories img {
    margin-bottom: 10px;
  }
}
.success-stories h3 {
  margin-top: 0;
}
@media (max-width: 767px) {
  .success-stories h3 {
    margin-bottom: 5px;
  }
}
/*--This is a mess, borrowed from somewhere else,
there were two collapse boxes for some reason,
no time to combine them.--*/
.widget-collapse-box .locations {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 25px;
}
.widget-collapse-box .locations .js-toggle-content {
  padding-top: 15px;
  padding-bottom: 15px;
}
.widget-collapse-box .locations .js-toggle-content > p {
  margin: 0;
}
.widget-collapse-box .title {
  position: relative;
  cursor: pointer;
}
.widget-collapse-box .title::before {
  content: '';
  right: 4px;
  top: 10px;
  position: absolute;
  width: 11px;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  height: 7px;
  background: url('/Assets/images/icon-accordion-arrow.svg') no-repeat;
  background-size: 11px auto;
}
.widget-collapse-box .open .title::before {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.widget-collapse-box .locations > * {
  height: 100%;
}
.widget-collapse-box .location {
  border: 1px solid #bbb;
  padding: 20px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
  height: 100%;
}
@media (min-width: 1200px) {
  .widget-collapse-box .location {
    margin-bottom: 24px;
  }
}
.widget-collapse-box .location .open .arrow-down {
  display: none;
}
.widget-collapse-box .location .open .arrow-up {
  display: block;
}
.widget-collapse-box .location:hover {
  border-color: #000;
}
.widget-collapse-box .location:hover .arrow-down,
.widget-collapse-box .location:hover .arrow-up {
  color: #000;
}
.widget-collapse-box .location h4 {
  margin-top: 0;
  text-transform: initial;
  margin-bottom: 0;
  line-height: 24px;
  margin-right: 50px;
  font-size: 16px;
}
@media (min-width: 992px) {
  .widget-collapse-box .location h4 {
    font-size: 21px;
    line-height: 30px;
  }
}
.widget-collapse-box .location .arrow-down,
.widget-collapse-box .location .arrow-up {
  position: absolute;
  right: 20px;
  top: 27px;
  color: #bbb;
}
@media (max-width: 767px) {
  .widget-collapse-box .location .arrow-down,
  .widget-collapse-box .location .arrow-up {
    top: 23px;
  }
}
.widget-collapse-box .location .arrow-up {
  display: none;
}
.person-list {
  overflow: auto;
}
.person-list .person {
  float: left;
  margin-right: 20px;
  margin-bottom: 35px;
}
@media (max-width: 1199px) {
  .person-list .person {
    width: 23%;
  }
}
@media (max-width: 991px) {
  .person-list .person {
    width: 23%;
  }
}
@media (max-width: 767px) {
  .person-list .person {
    width: 100%;
    margin-right: 0;
  }
}
.person-list .person img {
  margin-bottom: 15px;
}
@media (max-width: 767px) {
  .person-list .person img {
    width: 100%;
  }
}
.person-list .person h5 {
  margin-bottom: 2px;
}
@media (max-width: 767px) {
  .person-list.person-list-youth .person {
    width: 50%;
  }
}
.widget-expandable {
  margin: 30px 0;
}
.widget-expandable .expandable__head {
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.widget-expandable .expandable__head__title {
  display: inline-block;
}
.widget-expandable .expandable__head__title h2 {
  display: inline;
}
.widget-expandable .expandable__head__title h2 p {
  display: inline;
}
.widget-expandable .expandable__head__title h5 {
  margin-bottom: 10px;
}
.widget-expandable .expandable__head__action {
  display: inline-block;
  margin-left: 10px;
  position: relative;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
}
.widget-expandable .expandable__head__action.open {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
.widget-expandable .expandable__body {
  display: none;
}
#___gcse_0,
#___gcse_1,
.gsc-control-cse {
  font-family: 'Ainslie-NorReg', Helvetica, Arial, sans-serif !important;
  background-color: transparent !important;
  border: 0 !important;
}
#___gcse_0 b,
#___gcse_1 b,
.gsc-control-cse b {
  font-weight: 900;
  color: #9a1e3b !important;
}
#___gcse_0 a,
#___gcse_1 a,
.gsc-control-cse a {
  color: #9a1e3b;
  cursor: pointer;
}
#___gcse_0 .gsc-url-top > *,
#___gcse_1 .gsc-url-top > *,
.gsc-control-cse .gsc-url-top > * {
  color: black !important;
}
#___gcse_0 .gsc-webResult .gsc-result,
#___gcse_1 .gsc-webResult .gsc-result,
.gsc-control-cse .gsc-webResult .gsc-result {
  background-color: transparent;
  border: 0;
  padding: 25px 0;
}
#___gcse_0 .gsc-cursor-page,
#___gcse_1 .gsc-cursor-page,
.gsc-control-cse .gsc-cursor-page {
  color: #9a1e3b;
  background-color: transparent;
  border: 0;
}
#___gcse_0 .gsst_a,
#___gcse_1 .gsst_a,
.gsc-control-cse .gsst_a {
  padding-top: 6px !important;
}
#___gcse_0 .gsc-cursor-box.gs-bidi-start-align,
#___gcse_1 .gsc-cursor-box.gs-bidi-start-align,
.gsc-control-cse .gsc-cursor-box.gs-bidi-start-align {
  text-align: right !important;
}
#___gcse_0 .gsst_a .gscb_a,
#___gcse_1 .gsst_a .gscb_a,
.gsc-control-cse .gsst_a .gscb_a {
  color: black;
}
#___gcse_0 .gsc-table-result,
#___gcse_1 .gsc-table-result,
.gsc-control-cse .gsc-table-result {
  margin-left: 7px !important;
}
#___gcse_0 .gcsc-branding,
#___gcse_1 .gcsc-branding,
.gsc-control-cse .gcsc-branding {
  display: none;
}
#___gcse_0 .gs-image-box.gs-web-image-box.gs-web-image-box-portrait,
#___gcse_1 .gs-image-box.gs-web-image-box.gs-web-image-box-portrait,
.gsc-control-cse .gs-image-box.gs-web-image-box.gs-web-image-box-portrait,
#___gcse_0 .gs-image-box.gs-web-image-box.gs-web-image-box-landscape,
#___gcse_1 .gs-image-box.gs-web-image-box.gs-web-image-box-landscape,
.gsc-control-cse .gs-image-box.gs-web-image-box.gs-web-image-box-landscape {
  width: 200px;
  height: auto;
}
#___gcse_0 .gs-image-box.gs-web-image-box.gs-web-image-box-portrait .gs-image,
#___gcse_1 .gs-image-box.gs-web-image-box.gs-web-image-box-portrait .gs-image,
.gsc-control-cse .gs-image-box.gs-web-image-box.gs-web-image-box-portrait .gs-image,
#___gcse_0 .gs-image-box.gs-web-image-box.gs-web-image-box-landscape .gs-image,
#___gcse_1 .gs-image-box.gs-web-image-box.gs-web-image-box-landscape .gs-image,
.gsc-control-cse .gs-image-box.gs-web-image-box.gs-web-image-box-landscape .gs-image {
  width: 200px;
  min-width: 200px;
  max-height: none;
}
#___gcse_0 .gsc-table-cell-thumbnail .gsc-thumbnail,
#___gcse_1 .gsc-table-cell-thumbnail .gsc-thumbnail,
.gsc-control-cse .gsc-table-cell-thumbnail .gsc-thumbnail {
  min-width: 200px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2,
#___gcse_0 input.gsc-search-button-v2,
#___gcse_1 input.gsc-search-button-v2,
.gsc-control-cse input.gsc-search-button-v2 {
  height: 26px !important;
  margin-top: 0 !important;
  min-width: 13px !important;
  padding: 5px 26px !important;
  width: 68px !important;
  border-radius: 0 !important;
  border: 0;
  content: 'Search';
  box-sizing: border-box;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
  background-color: #9a1e3b;
  margin-top: 4px !important;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2,
#___gcse_0 input.gsc-search-button-v2,
#___gcse_1 input.gsc-search-button-v2,
.gsc-control-cse input.gsc-search-button-v2,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2:visited,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2:visited,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2:visited,
#___gcse_0 input.gsc-search-button-v2:visited,
#___gcse_1 input.gsc-search-button-v2:visited,
.gsc-control-cse input.gsc-search-button-v2:visited,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2:hover,
#___gcse_0 input.gsc-search-button-v2:hover,
#___gcse_1 input.gsc-search-button-v2:hover,
.gsc-control-cse input.gsc-search-button-v2:hover,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2:active,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2:active,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2:active,
#___gcse_0 input.gsc-search-button-v2:active,
#___gcse_1 input.gsc-search-button-v2:active,
.gsc-control-cse input.gsc-search-button-v2:active {
  color: #fff;
  font-size: 13px;
  border: 0;
  padding: 12px 35px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg,
#___gcse_0 input.gsc-search-button-v2.btn-odd-lg,
#___gcse_1 input.gsc-search-button-v2.btn-odd-lg,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-lg,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army {
  background: transparent url(../images/btn-odd-lg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease !important;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg:hover,
#___gcse_0 input.gsc-search-button-v2.btn-odd-lg:hover,
#___gcse_1 input.gsc-search-button-v2.btn-odd-lg:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-lg:hover,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:hover,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm:hover,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm:hover,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:hover,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud:hover,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud:hover,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:hover,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army:hover,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army:hover,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:hover,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army:hover,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-lg:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-lg:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-lg:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-lg,
#___gcse_0 input.gsc-search-button-v2.btn-odd-lg,
#___gcse_1 input.gsc-search-button-v2.btn-odd-lg,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-lg {
  height: 90px;
  font-size: 18px;
  line-height: 60px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-sm-md-1,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-sm-md-1,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-sm-md-1,
#___gcse_0 input.gsc-search-button-v2.btn-sm-md-1,
#___gcse_1 input.gsc-search-button-v2.btn-sm-md-1,
.gsc-control-cse input.gsc-search-button-v2.btn-sm-md-1 {
  height: 48.8px;
  width: 250px;
  background-image: url(../images/btn-sm-md-1.png);
  font-size: 12px;
  line-height: 25px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-sm-md-1:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-sm-md-1:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-sm-md-1:focus,
#___gcse_0 input.gsc-search-button-v2.btn-sm-md-1:focus,
#___gcse_1 input.gsc-search-button-v2.btn-sm-md-1:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-sm-md-1:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army {
  background-image: url(../images/btn-odd-sm.png);
  height: 44px;
  font-size: 12px;
  line-height: 21px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud {
  background-image: url(../images/btn-odd-sm-ud.png);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army {
  background-image: url(../images/btn-odd-sm-army.png);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-army:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-army:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army {
  background-image: url(../images/btn-odd-sm-ud-army.png);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_0 input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
#___gcse_1 input.gsc-search-button-v2.btn-odd-sm-ud-army:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd,
#___gcse_0 input.gsc-search-button-v2.btn-odd,
#___gcse_1 input.gsc-search-button-v2.btn-odd,
.gsc-control-cse input.gsc-search-button-v2.btn-odd {
  background: transparent url(../images/button.svg);
  background-size: 100% 100%;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-oddrev,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-oddrev,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-oddrev,
#___gcse_0 input.gsc-search-button-v2.btn-oddrev,
#___gcse_1 input.gsc-search-button-v2.btn-oddrev,
.gsc-control-cse input.gsc-search-button-v2.btn-oddrev {
  background: transparent url(../images/button-rev.svg);
  background-size: 100% 100%;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-bl,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-bl,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-br,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-br,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tl,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-tl,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tr,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tr,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tr,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-tr,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-tr,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-tr {
  background-size: 100% 100%;
  width: 50px;
  height: 75px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-bl,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-bl,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-bl,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-bl {
  background: transparent url(../images/button-square-bl.svg);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-br,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-br,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-br,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-br {
  background: transparent url(../images/button-square-br.svg);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tl,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-tl,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-tl,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-tl {
  background: transparent url(../images/button-square-tl.svg);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tr,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tr,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square-tr,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square-tr,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square-tr,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square-tr {
  background: transparent url(../images/button-square-tr.svg);
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square {
  position: relative;
  vertical-align: top;
  margin-bottom: 40px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square:after,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square:after,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-odd-square:after,
#___gcse_0 input.gsc-search-button-v2.btn-odd-square:after,
#___gcse_1 input.gsc-search-button-v2.btn-odd-square:after,
.gsc-control-cse input.gsc-search-button-v2.btn-odd-square:after {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  color: #9a1e3b;
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2:focus,
#___gcse_0 input.gsc-search-button-v2:focus,
#___gcse_1 input.gsc-search-button-v2:focus,
.gsc-control-cse input.gsc-search-button-v2:focus {
  color: #fff;
  text-decoration: none;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-medium,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-medium,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-medium,
#___gcse_0 input.gsc-search-button-v2.btn-medium,
#___gcse_1 input.gsc-search-button-v2.btn-medium,
.gsc-control-cse input.gsc-search-button-v2.btn-medium {
  font-size: 18px;
  padding: 16px 45px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-large,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-large,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-large,
#___gcse_0 input.gsc-search-button-v2.btn-large,
#___gcse_1 input.gsc-search-button-v2.btn-large,
.gsc-control-cse input.gsc-search-button-v2.btn-large {
  font-size: 20px;
  padding: 20px 50px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-block,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-block,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-block,
#___gcse_0 input.gsc-search-button-v2.btn-block,
#___gcse_1 input.gsc-search-button-v2.btn-block,
.gsc-control-cse input.gsc-search-button-v2.btn-block {
  display: block;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-primary,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-primary,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-primary,
#___gcse_0 input.gsc-search-button-v2.btn-primary,
#___gcse_1 input.gsc-search-button-v2.btn-primary,
.gsc-control-cse input.gsc-search-button-v2.btn-primary {
  transition: background-color 0.5s ease;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-primary:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-primary:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-primary:hover,
#___gcse_0 input.gsc-search-button-v2.btn-primary:hover,
#___gcse_1 input.gsc-search-button-v2.btn-primary:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-primary:hover {
  text-decoration: none;
  color: white;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2:visited,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2:visited,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2:visited,
#___gcse_0 input.gsc-search-button-v2:visited,
#___gcse_1 input.gsc-search-button-v2:visited,
.gsc-control-cse input.gsc-search-button-v2:visited {
  color: #fff;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-right,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-right,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-right,
#___gcse_0 input.gsc-search-button-v2.btn-right,
#___gcse_1 input.gsc-search-button-v2.btn-right,
.gsc-control-cse input.gsc-search-button-v2.btn-right {
  float: right;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-centered,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-centered,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-centered,
#___gcse_0 input.gsc-search-button-v2.btn-centered,
#___gcse_1 input.gsc-search-button-v2.btn-centered,
.gsc-control-cse input.gsc-search-button-v2.btn-centered {
  text-align: center;
  display: block;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-bang,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-bang,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-bang,
#___gcse_0 input.gsc-search-button-v2.btn-bang,
#___gcse_1 input.gsc-search-button-v2.btn-bang,
.gsc-control-cse input.gsc-search-button-v2.btn-bang {
  background-color: #9a1e3b !important;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-unstyled,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-unstyled,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-unstyled,
#___gcse_0 input.gsc-search-button-v2.btn-unstyled,
#___gcse_1 input.gsc-search-button-v2.btn-unstyled,
.gsc-control-cse input.gsc-search-button-v2.btn-unstyled {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom,
#___gcse_0 input.gsc-search-button-v2.btn-line-bottom,
#___gcse_1 input.gsc-search-button-v2.btn-line-bottom,
.gsc-control-cse input.gsc-search-button-v2.btn-line-bottom {
  --border-bottom-width: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border-bottom: var(--border-bottom-width) solid transparent;
  background-color: transparent;
  color: #777;
  text-decoration: none;
  transition-property: color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom:hover,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom:hover,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom:hover,
#___gcse_0 input.gsc-search-button-v2.btn-line-bottom:hover,
#___gcse_1 input.gsc-search-button-v2.btn-line-bottom:hover,
.gsc-control-cse input.gsc-search-button-v2.btn-line-bottom:hover,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom:focus,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom:focus,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom:focus,
#___gcse_0 input.gsc-search-button-v2.btn-line-bottom:focus,
#___gcse_1 input.gsc-search-button-v2.btn-line-bottom:focus,
.gsc-control-cse input.gsc-search-button-v2.btn-line-bottom:focus,
#___gcse_0 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom.active,
#___gcse_1 .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom.active,
.gsc-control-cse .cse .gsc-search-button input.gsc-search-button-v2.btn-line-bottom.active,
#___gcse_0 input.gsc-search-button-v2.btn-line-bottom.active,
#___gcse_1 input.gsc-search-button-v2.btn-line-bottom.active,
.gsc-control-cse input.gsc-search-button-v2.btn-line-bottom.active {
  border-bottom: var(--border-bottom-width) solid #9eb5cb;
  color: #222;
}
.search-container {
  width: 100%;
  z-index: 250;
  height: 0;
  overflow: hidden;
  background-color: #e0e0db;
  top: 58px;
  right: 0;
  margin: 0 auto;
  width: 62%;
  position: fixed;
  text-align: center;
  left: 50%;
  padding: 0;
  box-sizing: border-box;
  margin-left: -30.5%;
  box-shadow: 0;
}
.search-container input {
  margin-top: 24px;
  width: 75%;
  text-align: center;
}
.search-container button {
  box-sizing: border-box;
  display: inline-block;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
  background: transparent url(../images/btn-odd-lg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease !important;
  background-image: url(../images/btn-odd-sm.png);
  height: 44px;
  font-size: 12px;
  line-height: 21px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
.search-container button,
.search-container button:visited,
.search-container button:hover,
.search-container button:active {
  color: #fff;
  font-size: 13px;
  border: 0;
  padding: 12px 35px;
}
.search-container button.btn-odd-lg,
.search-container button.btn-odd-sm,
.search-container button.btn-odd-sm-ud,
.search-container button.btn-odd-sm-army,
.search-container button.btn-odd-sm-ud-army {
  background: transparent url(../images/btn-odd-lg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: all 0.2s ease !important;
}
.search-container button.btn-odd-lg:hover,
.search-container button.btn-odd-sm:hover,
.search-container button.btn-odd-sm-ud:hover,
.search-container button.btn-odd-sm-army:hover,
.search-container button.btn-odd-sm-ud-army:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.search-container button.btn-odd-lg:focus,
.search-container button.btn-odd-sm:focus,
.search-container button.btn-odd-sm-ud:focus,
.search-container button.btn-odd-sm-army:focus,
.search-container button.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button.btn-odd-lg {
  height: 90px;
  font-size: 18px;
  line-height: 60px;
}
.search-container button.btn-sm-md-1 {
  height: 48.8px;
  width: 250px;
  background-image: url(../images/btn-sm-md-1.png);
  font-size: 12px;
  line-height: 25px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
.search-container button.btn-sm-md-1:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button.btn-odd-sm,
.search-container button.btn-odd-sm-ud,
.search-container button.btn-odd-sm-army,
.search-container button.btn-odd-sm-ud-army {
  background-image: url(../images/btn-odd-sm.png);
  height: 44px;
  font-size: 12px;
  line-height: 21px;
  padding: 12px 20px;
  margin-right: 0px;
  margin-left: 0px;
  min-width: 110px;
}
.search-container button.btn-odd-sm:focus,
.search-container button.btn-odd-sm-ud:focus,
.search-container button.btn-odd-sm-army:focus,
.search-container button.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button.btn-odd-sm-ud {
  background-image: url(../images/btn-odd-sm-ud.png);
}
.search-container button.btn-odd-sm-ud:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button.btn-odd-sm-army {
  background-image: url(../images/btn-odd-sm-army.png);
}
.search-container button.btn-odd-sm-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button.btn-odd-sm-ud-army {
  background-image: url(../images/btn-odd-sm-ud-army.png);
}
.search-container button.btn-odd-sm-ud-army:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button.btn-odd {
  background: transparent url(../images/button.svg);
  background-size: 100% 100%;
}
.search-container button.btn-oddrev {
  background: transparent url(../images/button-rev.svg);
  background-size: 100% 100%;
}
.search-container button.btn-odd-square-bl,
.search-container button.btn-odd-square-br,
.search-container button.btn-odd-square-tl,
.search-container button.btn-odd-square-tr {
  background-size: 100% 100%;
  width: 50px;
  height: 75px;
}
.search-container button.btn-odd-square-bl {
  background: transparent url(../images/button-square-bl.svg);
}
.search-container button.btn-odd-square-br {
  background: transparent url(../images/button-square-br.svg);
}
.search-container button.btn-odd-square-tl {
  background: transparent url(../images/button-square-tl.svg);
}
.search-container button.btn-odd-square-tr {
  background: transparent url(../images/button-square-tr.svg);
}
.search-container button.btn-odd-square {
  position: relative;
  vertical-align: top;
  margin-bottom: 40px;
}
.search-container button.btn-odd-square:after {
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 9px;
  color: #9a1e3b;
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
}
.search-container button:focus {
  color: #fff;
  text-decoration: none;
}
.search-container button.btn-medium {
  font-size: 18px;
  padding: 16px 45px;
}
.search-container button.btn-large {
  font-size: 20px;
  padding: 20px 50px;
}
.search-container button.btn-block {
  display: block;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
.search-container button.btn-primary {
  transition: background-color 0.5s ease;
}
.search-container button.btn-primary:hover {
  text-decoration: none;
  color: white;
}
.search-container button:visited {
  color: #fff;
}
.search-container button.btn-right {
  float: right;
}
.search-container button.btn-centered {
  text-align: center;
  display: block;
}
.search-container button.btn-bang {
  background-color: #9a1e3b !important;
}
.search-container button.btn-unstyled {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  margin: 0;
  padding: 0;
  border: 0;
}
.search-container button.btn-line-bottom {
  --border-bottom-width: 2px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  padding: 0;
  border-bottom: var(--border-bottom-width) solid transparent;
  background-color: transparent;
  color: #777;
  text-decoration: none;
  transition-property: color, border-color;
  transition-duration: 0.2s;
  transition-timing-function: ease;
}
.search-container button.btn-line-bottom:hover,
.search-container button.btn-line-bottom:focus,
.search-container button.btn-line-bottom.active {
  border-bottom: var(--border-bottom-width) solid #9eb5cb;
  color: #222;
}
.search-container button:hover {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}
.search-container button:focus {
  background-image: url('../images/btn-odd-blue.png');
}
.search-container button:focus {
  background-image: url('../images/btn-odd-blue.png');
}
#header-search {
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 40px;
}
#header-search .gsc-control-searchbox-only {
  width: 100%;
}
#header-search input {
  background: none !important;
}
#header-search .gsc-search-button-v2,
#header-search .gsc-search-button-v2:hover,
#header-search .gsc-search-button-v2:focus {
  background-image: url('../images/btn-odd-sm.png');
  background-color: transparent;
  border: none;
}
@media (max-width: 991px) {
  #header-search {
    display: none;
  }
}
#header-search .gsib_b {
  display: none;
}
#___gcse_0 {
  padding: 0 1em;
}
#___gcse_0 .gsc-search-button-v2,
#___gcse_0 .gsc-search-button-v2:hover,
#___gcse_0 .gsc-search-button-v2:focus {
  border-color: #666666;
  background-color: #cecece;
  -webkit-filter: none;
          filter: none;
}
#___gcse_1 {
  width: 100%;
}
.gsc-results-close-btn-visible {
  display: none !important;
}
.gsc-control-cse {
  padding: 0 1em !important;
}
.gs-image-box {
  display: none;
}
.gsc-overflow-hidden {
  overflow-y: visible !important;
}
.gsc-control-wrapper-cse .gsc-results-wrapper-overlay {
  position: static !important;
  width: 100%;
  background: transparent;
  padding-left: 0;
  box-shadow: none;
  padding-top: 0;
}
.gsc-control-wrapper-cse .gsc-adBlock {
  display: none !important;
}
.gsc-control-wrapper-cse .gsc-modal-background-image-visible {
  opacity: 0;
  width: 1px;
  height: 1px;
  position: absolute;
  left: -2000px;
}
/* SLIDESHOW STYLES */
.slideshow {
  position: relative;
}
.slideshow .viewport {
  width: 300%;
  margin-left: -100%;
  position: relative;
  overflow: hidden;
}
.slideshow .slide {
  width: 33.333%;
  margin-left: 33.333%;
  position: relative;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}
.widget-slider {
  margin-bottom: 75px;
}
@media (max-width: 991px) {
  .widget-slider {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .widget-slider {
    margin-bottom: 25px;
  }
}
.slideshow .slideshow-container {
  max-height: 646px;
  margin: 0 auto 0;
  overflow: hidden;
  position: relative;
}
@media (max-width: 1199px) {
  .slideshow .slideshow-container {
    max-height: 488px;
  }
}
@media (max-width: 991px) {
  .slideshow .slideshow-container {
    max-height: 388px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .slideshow .slideshow-container {
    max-height: 246px;
  }
}
@media (max-width: 480px) {
  .slideshow .slideshow-container {
    max-height: 159px;
  }
}
.venue-hire .slideshow .slideshow-container {
  height: 395px;
}
@media (max-width: 1199px) {
  .venue-hire .slideshow .slideshow-container {
    height: 301px;
  }
}
@media (max-width: 991px) {
  .venue-hire .slideshow .slideshow-container {
    height: 214px;
  }
}
@media (max-width: 767px) {
  .venue-hire .slideshow .slideshow-container {
    height: auto;
  }
}
.slideshow .viewport,
.slideshow .slide {
  max-height: 646px;
}
@media (max-width: 1199px) {
  .slideshow .viewport,
  .slideshow .slide {
    max-height: 488px;
  }
}
@media (max-width: 991px) {
  .slideshow .viewport,
  .slideshow .slide {
    max-height: 388px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .slideshow .viewport,
  .slideshow .slide {
    max-height: 246px;
  }
}
@media (max-width: 480px) {
  .slideshow .viewport,
  .slideshow .slide {
    max-height: 159px;
  }
}
.venue-hire .slideshow .viewport,
.venue-hire .slideshow .slide {
  height: 395px;
}
@media (max-width: 1199px) {
  .venue-hire .slideshow .viewport,
  .venue-hire .slideshow .slide {
    height: 301px;
  }
}
@media (max-width: 991px) {
  .venue-hire .slideshow .viewport,
  .venue-hire .slideshow .slide {
    height: 214px;
  }
}
@media (max-width: 767px) {
  .venue-hire .slideshow .viewport,
  .venue-hire .slideshow .slide {
    height: auto;
  }
}
.slideshow .slide {
  width: 1280px;
  position: relative;
  text-align: center;
}
@media (max-width: 1199px) {
  .slideshow .slide {
    width: 892px;
  }
}
@media (max-width: 991px) {
  .slideshow .slide {
    width: 708px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .slideshow .slide {
    width: 450px;
  }
}
@media (max-width: 480px) {
  .slideshow .slide {
    width: 426px;
  }
}
.slideshow .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.slideshow .slide .pad-16x9 {
  position: relative;
  padding-bottom: 20%;
  height: 0;
  padding-bottom: 43.75%;
}
.slideshow .slide .pad-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: teal;
}
.slideshow .slide.video-thumb:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 102px;
  height: 104px;
  background: url('../images/video-play-btn.png') no-repeat center center;
  margin: -52px 0 0 -51px;
  cursor: pointer;
  background-size: cover;
}
@media (max-width: 767px) {
  .slideshow .slide.video-thumb:after {
    width: 50px;
    height: 51px;
    margin: -25px 0 0 -25px;
  }
}
.slideshow .slide .video-wrapper {
  background-color: #000;
}
.slideshow .slide .video-wrapper iframe {
  max-height: 646px;
}
@media (max-width: 1199px) {
  .slideshow .slide .video-wrapper iframe {
    max-height: 488px;
  }
}
@media (max-width: 991px) {
  .slideshow .slide .video-wrapper iframe {
    max-height: 388px;
  }
}
@media (min-width: 480px) and (max-width: 767px) {
  .slideshow .slide .video-wrapper iframe {
    max-height: 246px;
  }
}
@media (max-width: 480px) {
  .slideshow .slide .video-wrapper iframe {
    max-height: 159px;
  }
}
.slideshow-controls {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .slideshow-controls {
    bottom: 25px;
  }
}
.slideshow-controls .btn-slideshow-control {
  border: 1px solid #fff;
  background-color: transparent;
  border-radius: 50%;
  display: inline-block;
  height: 12px;
  overflow: hidden;
  width: 12px;
  position: relative;
  z-index: 99;
  margin: 0 2px;
}
.slideshow-controls .btn-slideshow-control.current {
  background-color: #fff;
}
.slideshow-arrow {
  width: 40px;
  display: block;
  top: 50%;
  height: 78px;
  cursor: pointer;
  position: absolute;
  border: none;
  background: none;
  z-index: 99;
  margin-top: -39px;
  padding: 0;
}
@media (max-width: 480px) {
  .slideshow-arrow {
    width: 30px;
    height: 30px;
    margin-top: -15px;
  }
}
.slideshow-arrow.slideshow-arrow-left {
  background: url('../images/media-gallery-slider-arrow-left.png') no-repeat center center;
  left: 25px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .slideshow-arrow.slideshow-arrow-left {
    left: 10px;
  }
}
@media (max-width: 480px) {
  .slideshow-arrow.slideshow-arrow-left {
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 10px;
    left: 0px;
  }
}
.slideshow-arrow.slideshow-arrow-right {
  background: url('../images/media-gallery-slider-arrow-right.png') no-repeat center center;
  right: 25px;
}
@media (min-width: 480px) and (max-width: 767px) {
  .slideshow-arrow.slideshow-arrow-right {
    right: 10px;
  }
}
@media (max-width: 480px) {
  .slideshow-arrow.slideshow-arrow-right {
    background-color: rgba(0, 0, 0, 0.5);
    background-size: 10px;
    right: 0px;
  }
}
.pad-16x9 {
  position: relative;
  padding-bottom: 20%;
  height: 0;
  padding-bottom: 56.25%;
}
.pad-16x9 iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: teal;
}
.footer-main {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  height: auto;
  color: #222;
  background-size: cover;
  position: relative;
  padding: 0;
  margin-top: 0;
  z-index: 1;
}
.footer-main .col-main {
  padding: 40px;
}
@media (max-width: 991px) {
  .footer-main .col-main {
    padding: 50px 25px;
  }
}
@media (max-width: 767px) {
  .footer-main .col-main {
    padding: 30px 15px;
  }
}
.footer-main .form-group {
  margin-bottom: 0;
}
.footer-main .grid {
  margin-left: 0px;
  margin-right: 0px;
}
@media (max-width: 991px) {
  .footer-main .grid {
    margin-left: -15px;
    margin-right: -15px;
  }
}
.footer-main .phone {
  margin-bottom: 5px;
  font-size: 18px;
  color: #222;
}
@media (max-width: 767px) {
  .footer-main .phone {
    font-size: 18px;
    margin-bottom: 25px;
  }
}
.footer-main .align-right {
  text-align: right;
}
@media (max-width: 991px) {
  .footer-main .align-right {
    text-align: left;
  }
}
@media (min-width: 992px) {
  .footer-main .bottom-section {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media (min-width: 1200px) {
  .footer-main .bottom-section {
    padding-left: 60px;
    padding-right: 60px;
  }
}
@media (min-width: 768px) {
  .footer-main .copy {
    padding-bottom: 30px;
  }
  .footer-main .copy p {
    display: inline;
  }
  .footer-main .copy p:first-child {
    margin-right: 60px;
  }
}
.footer-nav {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
  margin-bottom: 10px;
}
.footer-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.footer-nav ul li {
  float: left;
  margin-right: 25px;
}
@media (max-width: 767px) {
  .footer-nav ul li {
    margin-right: 10px;
    margin-bottom: 10px;
  }
}
.footer-nav ul li a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
}
/* Font Weights
Light: 300
Regular: 400
Medium: 500
Bold: 700
*/
.gotham-book {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
}
.gotham-bold {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 700;
}
/*  UMBRACO FORMS */
.umbraco-forms-field-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.umbraco-forms-field-wrapper input[type='checkbox'] {
  margin-right: 15px;
}
.umbraco-forms-label .mandatory {
  color: #a94442;
}
.field-validation-error {
  color: #a94442;
  font-size: 12px;
  margin-top: 4px;
}
.input-validation-error {
  border: 1px solid #a94442;
}
.form-group {
  margin-bottom: 15px;
}
/* Object Templates */
.ot-twelve-col-block img {
  margin-bottom: 20px;
}
.ot-twelve-col-block .caption-title {
  text-transform: uppercase;
  font-weight: 900;
}
.ot-grey-tile {
  padding: 35px;
  background-color: #ebebeb;
}
.secondary__call-to-action {
  box-sizing: border-box;
  text-align: center;
  width: 1280px;
  margin: 0 auto 45px auto;
  padding: 50px;
  background-color: #e0e0db;
}
.secondary__call-to-action a {
  text-decoration: none;
}
.secondary__call-to-action a:hover {
  text-decoration: none;
}
.secondary__call-to-action > * {
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .secondary__call-to-action {
    width: 992px;
  }
}
@media (max-width: 991px) {
  .secondary__call-to-action {
    width: 768px;
  }
  .secondary__call-to-action h1 {
    font-size: 32px;
  }
}
@media (max-width: 767px) {
  .secondary__call-to-action {
    max-width: 480px;
    width: 100%;
  }
  .secondary__call-to-action h1 {
    font-size: 24px;
  }
}
.home__call-to-action__module {
  box-sizing: border-box;
  text-align: center;
  width: 1280px;
  margin: 0 auto 45px auto;
}
.home__call-to-action__module a {
  text-decoration: none;
}
.home__call-to-action__module a:hover {
  text-decoration: none;
}
.home__call-to-action__module > * {
  box-sizing: border-box;
}
@media (max-width: 1199px) {
  .home__call-to-action__module {
    width: 992px;
  }
}
@media (max-width: 991px) {
  .home__call-to-action__module {
    width: 768px;
  }
}
@media (max-width: 767px) {
  .home__call-to-action__module {
    max-width: 480px;
    width: 100%;
  }
}
.home__call-to-action__module .home__call-to-action__module__content {
  background-color: #e0e0db;
  padding: 25px;
}
.home__call-to-action__module .home__call-to-action__module__content__customizable {
  margin-bottom: 25px;
}
.image-tiles {
  margin: 0 auto;
  position: relative;
}
.image-tiles-wrapper {
  padding-bottom: 50px;
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .image-tiles-wrapper {
    padding-bottom: 100px;
    margin-bottom: 70px;
  }
}
.image-tiles .gradient {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 66.43%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.image-tiles a {
  text-decoration: none;
  text-transform: none;
}
.image-tiles a:hover {
  text-decoration: none;
}
.image-tiles > * {
  box-sizing: border-box;
}
.image-tiles .image-tile-wrapper {
  overflow: hidden;
  display: block;
  position: relative;
}
.image-tiles .image-tile-box {
  margin-bottom: 4px;
}
.image-tiles .image-tile-box:hover .tile-image {
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.image-tiles .tile-image {
  width: 100%;
  height: 100%;
  transition: -webkit-transform 1.5s ease-in-out;
  transition: transform 1.5s ease-in-out;
  will-change: transform;
  background-size: cover;
  background-position: center;
  position: relative;
}
.image-tiles .tile-image::before {
  width: 100%;
  display: block;
  content: '';
  padding-top: 89.55223881%;
}
.image-tiles .tile-title {
  position: absolute;
  bottom: 30px;
  text-align: center;
  left: 20px;
  right: 20px;
  z-index: 1;
}
.image-tiles .tile-title h5 {
  color: #fff;
  font-size: 22px;
  line-height: 140%;
  font-weight: normal;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
}
@media (min-width: 1200px) {
  .image-tiles .tile-title h5 {
    font-size: 35px;
  }
}
@media (min-width: 1200px) {
  .image-tiles .tile-title {
    bottom: 50px;
    left: 50px;
    right: 50px;
  }
}
.image-tiles-wrapper.has-caption [class^='col-'] {
  margin-bottom: 4px;
}
.image-tiles-wrapper.has-caption .grid {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.image-tiles-wrapper.has-caption .image-tile-box {
  height: 100%;
}
.image-tiles-wrapper.has-caption .tile-title {
  max-width: 295px;
  margin: 0 auto;
  left: 0;
  z-index: 1;
  right: 0;
  bottom: 25px;
}
.image-tiles-wrapper.has-caption .tile-title h5 {
  margin-top: 0;
}
@media (min-width: 1200px) {
  .image-tiles-wrapper.has-caption .tile-title {
    max-width: 529px;
  }
}
.image-tiles-wrapper.has-caption .dates {
  font-weight: bold;
}
.image-tiles-wrapper.has-caption .dates,
.image-tiles-wrapper.has-caption .text,
.image-tiles-wrapper.has-caption .uppercase-label {
  font-size: 15px;
}
.image-tiles-wrapper.has-caption .tile-image {
  height: auto;
}
.image-tiles-wrapper.has-caption .tile-image::after {
  content: '';
  position: absolute;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.image-tiles-wrapper.has-caption .tile-caption {
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  letter-spacing: 0;
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px 30px;
  color: #fff;
  margin-top: -25px;
  background: linear-gradient(transparent 0%, #222 20px);
}
.image-tiles-wrapper.has-caption .uppercase-label {
  font-weight: bold;
  text-transform: uppercase;
}
.image-tiles-wrapper.has-caption .image-tile-wrapper {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
/* both tnew.less and tnew7.less are in use */
/* tnew.less is imported in style.less and used on the main website and the tnew website*/
/* tnew7.less is generated as a standalone file and used on the tnew website and not on the main website */
.no-touch #slot-a-label,
.no-touch #slot-b-label {
  display: none;
}
.tnew-page {
  /*-Select Seating Best Available-*/
}
.tnew-page #seating-options p {
  margin-top: 10px;
}
.tnew-page .tnew-uppercase {
  text-transform: uppercase;
  text-decoration: underline;
}
.tnew-page #tnew-or {
  margin-top: 15px;
  margin-bottom: 15px;
}
.tnew-page #slot-a-label,
.tnew-page #slot-b-label {
  width: 100%;
  font-weight: 900;
}
.tnew-page .tnew-cyoperf-drop-button {
  width: auto;
}
.tnew-page .tnew-cyoperf-moreinfo-button#viewNFSPerfButton {
  width: auto;
}
.tnew-page .site-main-content {
  padding-top: 367px;
}
@media (max-width: 1199px) {
  .tnew-page .site-main-content {
    padding-top: 225px;
  }
}
@media (max-width: 991px) {
  .tnew-page .site-main-content {
    padding-top: 0;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .tnew-page .site-main-content {
    margin-top: 0;
  }
}
@media (max-width: 1199px) {
  .tnew-page .tnew-template.main.home-main {
    margin-top: -155px;
  }
}
@media (max-width: 991px) {
  .tnew-page .tnew-template.main.home-main {
    margin-top: 60px;
  }
}
@media (max-width: 767px) {
  .tnew-page .tnew-template.main.home-main {
    margin-top: 60px;
  }
}
@media (max-width: 1199px) {
  .tnew-page .tnew-template.main.home-main .col-main.col-content.white {
    max-width: none;
    overflow-x: auto;
    width: 100%;
  }
}
@media (max-width: 991px) {
  .tnew-page .tnew-template.main.home-main .col-main.col-content.white {
    max-width: none;
    overflow-x: auto;
    width: 100%;
  }
}
@media (max-width: 767px) {
  .tnew-page .tnew-template.main.home-main .col-main.col-content.white {
    max-width: none;
    overflow-x: auto;
  }
}
.site-main-content .tnew-page .tnew-template {
  padding-top: 0;
}
.tnew-page .TNEW_steps_block {
  font-size: 16px;
}
.tnew-page .TNEW_steps_msg.TNEW_error_required {
  display: block;
}
.tnew-page .TNEW_subheader_bar {
  display: table;
  background-color: #222;
  font-size: 18px;
  color: white;
}
.tnew-page .TNEW_subheader_bar > p {
  display: table-cell;
  height: 50px;
  vertical-align: middle;
  color: white;
  padding-left: 10px;
  padding-right: 10px;
}
.tnew-page .TNEW_subheader_bar > p font {
  color: white !important;
}
.tnew-page #tnew-shipping-address-control .tdFormLabel {
  text-align: left;
}
.tnew-page #mainContent_divAddresses ul {
  padding-left: 0;
}
.tnew-page fieldset.payment-form ol li {
  float: none;
  margin: 0 auto;
}
@media (max-width: 991px) {
  .tnew-page fieldset.payment-form ol li {
    width: 100%;
  }
}
.tnew-page fieldset.payment-form ol li.req {
  width: 100%;
  text-align: center;
}
.tnew-page #cartTable {
  min-width: 800px;
}
.tnew-page .tnew-selectseating-container {
  min-width: 800px;
}
.tnew-page #form1 {
  position: relative;
}
.tnew-page .tnew-selectseating-continueshop-button,
.tnew-page #btn_purchase {
  position: absolute;
  bottom: 0;
}
#mainContent_btn_shop {
  margin-right: 5px;
}
.TNEW_required footer,
.TNEW_required {
  margin-top: 25px;
}
.tnew-login-required-container,
.tnew-register-required-container,
.tnew-forgot-required-container {
  color: red;
}
#tnew-site-loginwidget-wrapper {
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 1200px) {
  #tnew-site-loginwidget-wrapper {
    width: 1180px !important;
  }
}
@media (max-width: 1199px) {
  #tnew-site-loginwidget-wrapper {
    max-width: 892px !important;
  }
}
@media (max-width: 991px) {
  #tnew-site-loginwidget-wrapper {
    width: 708px !important;
  }
}
@media (max-width: 767px) {
  #tnew-site-loginwidget-wrapper {
    max-width: 320px !important;
    text-align: left !important;
    margin-bottom: 25px;
  }
}
/*=====  End of CYO Path  ======*/
.btnStyle {
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
  font-weight: 900;
  background-color: #222;
  border: 0;
  text-transform: uppercase;
  color: white;
  padding: 12px 35px;
  transition: background-color 0.5s ease;
}
.btnStyle#btn-next {
  padding-right: 10px;
  padding-left: 10px;
  padding: 10px;
  font-weight: 400;
  font-family: 'Ainslie-Nor', Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.btnStyle#btn-prev {
  padding-right: 10px;
  padding-left: 10px;
  padding: 10px;
  font-weight: 400;
  font-family: 'Ainslie-Nor', Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.btnStyle:hover {
  background-color: black;
}
.tnew-auxreserve-continueshop-button,
.tnew-eventdetail-buy-button,
.tnew-eventdetail-continueshop-button {
  padding-right: 10px;
  padding-left: 10px;
  padding: 10px;
  font-weight: 400;
  font-family: 'Ainslie-Nor', Helvetica, Arial, sans-serif;
  font-size: 12px;
}
.tnew-auxreserve-title,
.tnew-eventdetail-title {
  text-transform: uppercase !important;
  font-size: 22px !important;
  letter-spacing: 0.075em !important;
}
@media (max-width: 991px) {
  .tnew-auxreserve-title,
  .tnew-eventdetail-title {
    font-size: 32px !important;
  }
}
@media (max-width: 767px) {
  .tnew-auxreserve-title,
  .tnew-eventdetail-title {
    font-size: 28px !important;
  }
}
.tnew-auxreserve-title.large,
.tnew-eventdetail-title.large {
  display: none;
}
.tnew-auxreserve-container .tnew-auxreserve-container-left-column,
.tnew-auxreserve-container .tnew-auxreserve-container-right-column {
  display: table-cell;
  vertical-align: top;
  padding: 25px;
}
@media (max-width: 991px) {
  .tnew-auxreserve-container .tnew-auxreserve-container-left-column,
  .tnew-auxreserve-container .tnew-auxreserve-container-right-column {
    display: block;
    max-width: 320px;
  }
}
.tnew-auxreserve-form-pricetype-label {
  display: block !important;
}
.TNEW-form.tnew-auxreserve-form-custom-fieldset ol {
  list-style: none;
  padding: 0;
}
#mainContent_Order_notes {
  display: block;
}
.ui-dialog {
  background: white !important;
  width: 80% !important;
}
.tnew-login-container #mainContent_loginCtrl_btn_login {
  margin-right: 12px !important;
}
.tnew-login-container .tab_pagePad.login {
  float: left;
  width: 45%;
  margin-top: 20px;
}
@media (max-width: 991px) {
  .tnew-login-container .tab_pagePad.login {
    width: 100%;
    float: none !important;
  }
}
.tnew-login-container .tnew-login-title {
  width: 100%;
  text-align: left;
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
}
.tnew-login-container .tnew-login-text {
  width: 100%;
  margin-top: -11px;
}
.tnew-login-container .tnew-login-control-container td.tdFormLabel {
  text-align: left;
  font-family: 'Ainslie-NorBol', Helvetica, Arial, sans-serif;
  font-weight: 700;
}
.tnew-login-container .tnew-login-guest-checkout-button-container {
  padding: 0;
}
.tnew-login-container .tnew-login-guest-checkout-button-container .tnew-login-guest-checkout-button-container input {
  margin-left: 0;
  margin-right: 0;
}
.tnew-login-container input[type='submit'].tnew-login-guest-checkout-register-button,
.tnew-login-container input[type='submit'].tnew-login-guest-checkout-button {
  margin-left: 0;
  margin-right: 0;
}
@media (max-width: 991px) {
  .tnew-login-container .tnew-login-guest-checkout-container {
    width: 100%;
    float: none;
  }
}
#AllRadios label {
  text-transform: none;
}
#divValidationMessage label {
  font-weight: 300;
  text-transform: none;
}
.tnew-payment-Venue_Privacy_Ask-body ~ input[type='checkbox'] {
  float: left;
  margin-right: 6px;
  margin-left: 20px;
}
.youtube-video {
  margin: 40px 0;
}
.youtube-video .resources-video {
  position: relative;
  overflow: hidden;
  padding-top: 56.25%;
  cursor: pointer;
}
.youtube-video .resources-video iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.home-acknowledgement {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100vw;
  overflow-y: auto;
  z-index: 1050;
  background: url('/Assets/images/acknowledgement-background.jpg') center / cover no-repeat #000;
}
.home-acknowledgement .modal-body {
  width: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (min-width: 992px) {
  .home-acknowledgement .modal-body {
    margin: 0 auto;
    height: 100%;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.home-acknowledgement .h5 {
  color: #fff;
  font-size: 16px;
  max-width: 880px;
  font-weight: normal;
}
@media (min-width: 992px) {
  .home-acknowledgement .h5 {
    font-size: 20px;
  }
}
.home-acknowledgement p {
  font-family: 'Prata', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  margin-bottom: 30px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .home-acknowledgement p {
    line-height: 30px;
  }
}
.home-acknowledgement .gray-swash {
  opacity: 0.4;
  margin-top: 15px;
  margin-bottom: 60px;
}
.home-acknowledgement .container-column {
  padding: 50px 30px 0;
}
.home-acknowledgement .button-svg {
  margin-bottom: 60px;
}
@media (min-width: 992px) {
  .home-acknowledgement .button-svg {
    margin-bottom: 0;
  }
}
/* Components */
.banner {
  position: relative;
}
.banner.content .text-content {
  bottom: 0;
  left: 0;
  right: 0;
}
.banner .text-content {
  color: #fff;
  position: absolute;
}
.banner .text-content h1 {
  color: currentColor;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.2);
  margin-bottom: 35px;
}
@media (min-width: 1200px) {
  .banner .text-content h1 {
    line-height: 100px;
    margin-bottom: 80px;
  }
}
.breadcrumbs {
  margin: 28px 0;
}
.breadcrumbs a {
  display: inline-block;
  margin: 8px 15px 8px 0;
  white-space: nowrap;
}
.breadcrumbs a:nth-child(n + 2)::before {
  content: '•';
  display: inline-block;
  padding: 0 15px 0 0;
}
.fullscreen-banner {
  height: calc(100vh - 80px);
  position: relative;
}
.has-prompt .fullscreen-banner {
  height: calc(100vh - (80px + var(--promptHeight, 100px)));
}
.fullscreen-banner .banner-media,
.fullscreen-banner .banner-media-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.fullscreen-banner.has-tan-swash::before {
  z-index: 51;
}
.fullscreen-banner .text-content {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  position: absolute;
  padding: 0 20px;
  width: 85%;
  z-index: 50;
}
@media (min-width: 992px) {
  .fullscreen-banner .text-content {
    padding: 0 60px;
    width: 70%;
  }
}
@media (min-width: 1200px) {
  .fullscreen-banner .text-content {
    width: 60%;
  }
}
.fullscreen-banner .text-content h1,
.fullscreen-banner .text-content .h1 {
  font-size: 26px;
  line-height: 130%;
  margin: 0;
}
@media (min-width: 768px) {
  .fullscreen-banner .text-content h1,
  .fullscreen-banner .text-content .h1 {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .fullscreen-banner .text-content h1,
  .fullscreen-banner .text-content .h1 {
    font-size: 60px;
  }
}
.fullscreen-banner .text-content .button-svg {
  margin-top: 30px;
}
.umbraco-forms-label,
.control-label {
  letter-spacing: 1px;
  font-size: 13px;
  margin-bottom: 10px;
}
.form-standard {
  margin-top: 40px;
}
.umbraco-forms-field.checkbox {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.umbraco-forms-field.checkbox label {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
  margin-bottom: 0;
}
.umbraco-forms-field.checkbox input[type='checkbox'] {
  margin-top: 0;
}
.form-control {
  height: 60px;
}
select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url('/Assets/images/icon-down-arrow.svg') right 20px center no-repeat;
}
.hero-title {
  margin-top: 50px;
}
@media (min-width: 1200px) {
  .hero-title {
    margin-top: 100px;
  }
}
.hero-title h2 {
  margin-top: 0;
}
.gray-swash {
  margin: 40px auto 50px;
  width: 100%;
  height: 20px;
  background-image: url('/Assets/images/gray-swash.svg');
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 1200px) {
  .gray-swash {
    margin-bottom: 100px;
  }
}
.top-gray-swash .gray-swash {
  margin-bottom: 30px;
}
.social-icons {
  margin-bottom: 15px;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .social-icons {
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-bottom: 0;
  }
}
.social-icons .black {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #222;
  color: #fff;
  font-size: 25px;
  margin-right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 30px;
}
.social-icons .icon {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .social-icons .icon {
    width: 20px;
  }
}
.footer-main .social-cta {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 0;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .footer-main .social-cta {
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 992px) {
  .footer-main .social-cta {
    margin-top: 0;
    width: 33.33333333%;
    padding-left: 10px;
    padding-right: 10px;
  }
}
@media (min-width: 1200px) {
  .footer-main .social-cta {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.social-cta .social-icons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-flow: row wrap;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .social-cta .social-icons {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .social-cta .social-icons {
    margin-left: 7px;
  }
}
.social-cta .social-icons a {
  background: transparent;
  margin: 0 15px 15px;
  line-height: 1;
}
@media (min-width: 992px) {
  .social-cta .social-icons a {
    margin: 0 30px 15px 0;
  }
}
.social-cta .icon-link {
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.social-cta .icon-facebook {
  background-image: url('/Assets/images/icon-facebook-grey.svg');
}
.social-cta .icon-instagram {
  background-image: url('/Assets/images/icon-instagram-grey.svg');
}
.social-cta .icon-twitter {
  background-image: url('/Assets/images/icon-twitter-grey.svg');
}
.social-cta .icon-youtube {
  background-image: url('/Assets/images/icon-youtube-grey.svg');
}
.social-cta .icon-subscribe {
  background-color: currentColor;
  margin-right: 10px;
  mask-image: url('/Assets/images/icon-subscribe.svg');
  -webkit-mask-image: url('/Assets/images/icon-subscribe.svg');
  mask-position: center;
  -webkit-mask-position: center;
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
}
.icon-facebook {
  background-image: url('/Assets/images/icon-facebook.svg');
}
.icon-instagram {
  background-image: url('/Assets/images/icon-instagram.svg');
}
.icon-twitter {
  background-image: url('/Assets/images/icon-twitter.svg');
}
.icon-youtube {
  background-image: url('/Assets/images/icon-youtube.svg');
}
.sponsor-tile {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .sponsor-tile {
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .sponsor-tile.tile {
    margin-bottom: 0;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
@media (min-width: 992px) {
  .sponsor-tile {
    width: 66.66666667%;
  }
  .sponsor-tile.tile {
    margin-top: 0;
  }
}
@media (min-width: 1200px) {
  .sponsor-tile.tile {
    padding-right: 130px;
  }
}
.sponsors {
  margin-bottom: 20px;
  padding-left: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
@media (min-width: 768px) {
  .sponsors {
    margin-bottom: 0;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
.sponsors .first-level {
  width: 100%;
}
.sponsors .first-level img {
  width: 140px;
  height: 40px;
  object-fit: contain;
  margin: 0 auto 30px;
}
@media (min-width: 768px) {
  .sponsors .first-level {
    width: auto;
  }
  .sponsors .first-level img {
    width: auto;
    padding-left: 20px;
    margin: 0;
  }
}
@media (min-width: 992px) {
  .sponsors .first-level img {
    padding-left: 0;
  }
}
.sponsors .second-level {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.sponsors .second-level img {
  width: 140px;
  height: 40px;
  object-fit: contain;
  margin: 0 20px;
}
@media (min-width: 768px) {
  .sponsors .second-level img {
    width: auto;
    padding-left: 20px;
    margin: 0;
  }
}
@media (min-width: 1200px) {
  .sponsors .second-level img {
    padding-left: 30px;
  }
}
@media (min-width: 1600px) {
  .sponsors .second-level img {
    padding-left: 80px;
  }
}
.tile {
  margin: 30px auto;
  border-bottom: 1px solid #e0e0db;
  padding-bottom: 30px;
}
.tile.instagram-tile {
  border-bottom: 0;
  margin-bottom: 0;
}
.tile.footer-links-wrapper,
.tile.social-cta {
  padding-bottom: 30px;
}
@media (min-width: 992px) {
  .tile.footer-links-wrapper,
  .tile.social-cta {
    padding-bottom: 40px;
  }
}
.tile.sponsor-tile,
.tile.footer-links-wrapper {
  margin-top: 0;
  padding-top: 30px;
  border-top: 1px solid #e0e0db;
}
@media (min-width: 992px) {
  .tile.sponsor-tile {
    padding-top: 0;
    border-top: 0;
  }
}
@media (min-width: 992px) {
  .tile {
    padding-bottom: 40px;
  }
  .tile.instagram-tile {
    padding-bottom: 80px;
  }
  .tile.footer-links-wrapper {
    border-bottom: 0;
    position: relative;
  }
  .tile.footer-links-wrapper::before {
    position: absolute;
    content: '';
    border-bottom: 1px solid #e0e0db;
    left: 20px;
    right: 20px;
    bottom: 0;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .tile.footer-links-wrapper::before {
    left: 60px;
    right: 60px;
  }
}
.copy {
  color: #c8c8c8;
  font-size: 12px;
}
.copy p {
  margin-bottom: 5px;
}
.copy a {
  font-size: 12px;
  color: #c8c8c8;
  text-transform: none;
  font-weight: normal;
  letter-spacing: normal;
  margin-right: 40px;
}
.copy a:last-child {
  margin-right: 0;
}
@media (min-width: 992px) {
  .footer-links {
    width: 25%;
    padding-left: 10px;
    padding-right: 10px;
  }
  .footer-links ul {
    padding-left: 0;
    list-style: none;
    margin: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  .footer-links li {
    padding: 7px 0;
  }
  .footer-links.last {
    width: 33.33333%;
    margin-left: 16.66666667%;
  }
}
@media (min-width: 992px) and (min-width: 1200px) {
  .footer-links {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.button-svg {
  background: 0;
  line-height: 2em;
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  margin: 0;
  cursor: pointer;
  padding: 10px 30px 10px 35px;
  position: relative;
  color: #222;
}
.button-svg:hover {
  color: #222;
  text-decoration: none;
}
.button-svg:focus,
.button-svg.is-dark:focus {
  color: #fff;
  text-decoration: none;
}
.button-svg:focus svg path,
.button-svg.is-dark:focus svg path {
  fill: #9eb5cb;
}
.button-svg span {
  z-index: 1;
  position: relative;
}
.button-svg svg {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 0;
}
.button-svg svg path {
  fill: #fff;
}
.button-svg.is-dark {
  color: #fff;
}
.button-svg.is-dark svg path {
  fill: #222;
}
.prompt {
  position: fixed;
  top: 0;
  z-index: 55;
  background-color: #9eb5cb;
  width: 100%;
  display: none;
}
.has-prompt .prompt {
  display: block;
}
.prompt .text {
  font-size: 13px;
}
.prompt .title {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 0;
  font-weight: bold;
}
.prompt .inner {
  padding: 20px 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
}
.prompt .link:hover,
.prompt .link:focus {
  text-decoration: underline;
  color: #222;
}
@media (min-width: 992px) {
  .prompt p {
    margin-bottom: 0;
  }
  .prompt .content {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .prompt .text {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 75%;
  }
  .prompt .inner {
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .prompt .link {
    margin-right: 3.3%;
  }
}
.prompt button {
  padding: 0;
  background: 0;
}
.prompt button:hover,
.prompt button:focus {
  padding: 0;
}
.prompt .prompt-close {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.player-control {
  background: 0;
  border: 0;
  border-radius: 100%;
  color: #fff;
  display: block;
  left: 50%;
  opacity: 0;
  padding: 15px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: opacity 0.5s ease;
  z-index: 2;
  pointer-events: none;
}
.player-ready .player-control {
  opacity: 1;
}
@media (min-width: 1200px) {
  .player-control img {
    width: 160px;
  }
}
.player-poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}
.played-once .player-poster {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
/**
 * Swiper 6.5.0
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 5, 2021
 */
@font-face {
  font-family: swiper-icons;
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.swiper-container-multirow-column > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
}
.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-container-pointer-events {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
  transition-property: -webkit-transform, height;
  transition-property: transform, height;
}
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
:root {
  --swiper-navigation-size: 44px;
}
.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(-1 * var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}
.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}
.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: 'next';
}
.swiper-button-next.swiper-button-white,
.swiper-button-prev.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}
.swiper-button-next.swiper-button-black,
.swiper-button-prev.swiper-button-black {
  --swiper-navigation-color: #000000;
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
      -ms-transform: scale(1);
          transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
      -ms-transform: scale(0.66);
          transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
      -ms-transform: scale(0.33);
          transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s -webkit-transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s -webkit-transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s -webkit-transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
}
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
      -ms-transform-origin: left top;
          transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
      -ms-transform-origin: right top;
          transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}
.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
      -ms-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
      -ms-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
      -ms-transform-origin: 100% 0;
          transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-container-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
  filter: blur(50px);
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.progress-carousel {
  background-color: #ae8f89;
  position: relative;
  height: 100%;
  z-index: 50;
}
.progress-carousel .title {
  font-weight: 500;
  color: #fff;
  position: relative;
  margin-bottom: 0;
  transition: color 0.5s ease;
}
.progress-carousel .current .title {
  color: #fff;
}
.progress-carousel .progress,
.progress-carousel .completion {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 6px;
  border-radius: 2px;
}
.progress-carousel .screen {
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}
.progress-carousel .media-container,
.progress-carousel .poster,
.progress-carousel .overlay,
.progress-carousel .banner-media,
.progress-carousel .banner-media-fallback {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.progress-carousel .media-container {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.progress-carousel .media-container.current {
  opacity: 1;
}
.progress-carousel .play-pause {
  width: 40px;
  height: 40px;
  z-index: 31;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  background-size: 40px;
  transition: background-image 0.5s;
}
@media (min-width: 1200px) {
  .progress-carousel .play-pause {
    bottom: 125px;
    width: 60px;
    height: 60px;
    background-size: 60px;
  }
}
@media (min-width: 1600px) {
  .progress-carousel .play-pause {
    right: 30px;
  }
}
.progress-carousel[data-playing='true'] .play-pause {
  background-image: url('/Assets/images/embed-pause.svg');
}
.progress-carousel[data-playing='false'] .play-pause {
  background-image: url('/Assets/images/embed-play.svg');
}
.progress-carousel .poster {
  object-fit: cover;
  object-position: center;
}
.progress-carousel .poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.progress-carousel .overlay {
  z-index: 3;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.6) 100%);
}
.progress-carousel .banner-media,
.progress-carousel .banner-media-fallback {
  z-index: 2;
  object-fit: cover;
  opacity: 1;
  transition: opacity 0.5s ease;
}
.progress-carousel .banner-media.loading,
.progress-carousel .banner-media-fallback.loading {
  opacity: 0;
}
.progress-carousel .bottom-bar {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 30;
  padding: 0 20px;
}
@media (min-width: 992px) {
  .progress-carousel .bottom-bar {
    padding: 0 60px;
  }
}
.progress-carousel .categories {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
@media (min-width: 992px) {
  .progress-carousel .categories {
    bottom: 120px;
  }
}
.progress-carousel .cat {
  background-color: transparent;
  border: 0;
  width: auto;
  text-align: left;
  position: relative;
  white-space: nowrap;
  padding: 0;
  height: 6px;
  -webkit-flex: 1;
      -ms-flex: 1;
          flex: 1;
  margin-right: 20px;
}
.progress-carousel .cat:hover .title,
.progress-carousel .cat:focus .title {
  color: #fff;
}
.progress-carousel .cat .progress {
  background-color: #fff;
  overflow: hidden;
}
.progress-carousel .cat .completion {
  background-color: #fff;
  -webkit-transform-origin: left;
      -ms-transform-origin: left;
          transform-origin: left;
  -webkit-transform: scale(0);
      -ms-transform: scale(0);
          transform: scale(0);
}
.progress-carousel .cat.current .progress {
  background-color: #93a1c0;
}
.progress-carousel .cat.current ~ .cat .progress {
  background-color: #93a1c0;
}
.swiper-slide img {
  width: 100%;
}
.fullscreen {
  width: 100%;
  height: 100%;
}
.swiper-progress-bar {
  position: relative;
  width: 100%;
  display: block;
  z-index: 1;
  height: 2px;
}
.swiper-progress-bar .slide_progress-bar {
  position: absolute;
  height: 2px;
  background: rgba(0, 0, 0, 0.3);
  width: auto;
  clear: both;
  opacity: 0;
  bottom: 45px;
  left: 0;
  right: 0;
}
.swiper-progress-bar .slide_progress-bar:after {
  position: absolute;
  top: 0;
  left: 0;
  background: #000;
  height: 100%;
  width: 0;
  content: '';
}
.swiper-progress-bar.active .slide_progress-bar {
  opacity: 1;
}
.swiper-progress-bar.animate .slide_progress-bar:after {
  transition: width linear;
  transition-delay: unset;
  width: 100%;
  transition-duration: 5s;
}
.custom-swiper-styles {
  margin-top: 60px;
  margin-bottom: 60px;
}
.custom-swiper-styles .swiper-button-prev::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 27px 44px;
  background-image: url('/assets/images/media-gallery-slider-arrow-left.png');
}
.custom-swiper-styles .swiper-button-next::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-size: 27px 44px;
  background-image: url(/assets/images/media-gallery-slider-arrow-right.png);
}
.custom-swiper-styles .swiper-button-prev,
.custom-swiper-styles .swiper-button-next {
  background-size: 18px auto;
}
@media (min-width: 1200px) {
  .custom-swiper-styles .swiper-button-prev {
    left: 25px;
  }
  .custom-swiper-styles .swiper-button-next {
    right: 25px;
  }
}
.generic-modal {
  overflow-y: auto;
}
.generic-modal.fade .modal-dialog {
  opacity: 0;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  transition: opacity 0.3s ease-out;
}
.generic-modal.in .modal-dialog {
  opacity: 1;
}
.generic-modal .modal-dialog-centered {
  height: calc(100% - 20px);
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  pointer-events: none;
}
@media (min-width: 768px) {
  .generic-modal .modal-dialog-centered {
    height: calc(100% - 60px);
  }
}
.generic-modal .modal-content {
  padding: 22px 25px 25px;
  border-radius: 0;
  border: 2px solid #000;
  pointer-events: auto;
}
.generic-modal .modal-header,
.generic-modal .modal-body,
.generic-modal .modal-footer {
  padding: 0;
}
.generic-modal .modal-header {
  padding-bottom: 8px;
}
.generic-modal .modal-body {
  padding-top: 15px;
}
.generic-modal .modal-footer {
  padding-top: 15px;
}
.generic-modal .modal-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-align-items: flex-start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.generic-modal .modal-header button.close {
  height: auto;
  width: auto;
  padding: 10px;
  color: #000;
  background: transparent;
  font-size: 16px;
  margin: -3px -8px 0 0;
}
.explore-more .title {
  font-size: 35px;
  text-align: center;
  margin-bottom: 64px;
}
.explore-more .tiles-row {
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.explore-more .tiles-row .tile-col {
  padding: 2px;
  max-width: 500px;
}
.explore-more .tiles-row .tile-col a {
  position: relative;
}
.explore-more .tiles-row .tile-col .img-container {
  position: relative;
}
.explore-more .tiles-row .tile-col .img-container::before {
  content: '';
  display: block;
  height: 0;
  padding-top: 100%;
}
.explore-more .tiles-row .tile-col .img-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.explore-more .tiles-row .tile-col .text-container {
  position: absolute;
  bottom: 0;
  background: linear-gradient(180deg, rgba(34, 34, 34, 0) 7.14%, #222222 100%);
  padding: 0 15px;
  width: 100%;
  color: #fff;
  text-align: center;
}
@media (min-width: 1200px) {
  .explore-more .tiles-row .tile-col .text-container {
    padding: 0 30px;
  }
}
.explore-more .tiles-row .tile-col .text-container h4 {
  color: #fff;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .explore-more .tiles-row .tile-col .text-container h4 {
    margin-bottom: 30px;
    font-size: 35px;
  }
}
.explore-more .tiles-row .tile-col .text-container p {
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .explore-more .tiles-row .tile-col .text-container p {
    margin-bottom: 30px;
  }
}
.explore-more .tiles-row .tile-col .text-container .link-name {
  margin-bottom: 15px;
  font-weight: 700;
  text-transform: uppercase;
}
@media (min-width: 1200px) {
  .explore-more .tiles-row .tile-col .text-container .link-name {
    margin-bottom: 30px;
  }
}
.booking-links,
.booking-links + .details {
  margin-bottom: 30px;
}
@media (min-width: 992px) {
  .booking-links,
  .booking-links + .details {
    margin-bottom: 60px;
  }
}
.booking-links .button-row {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 10px 20px;
  margin: 24px 0;
  overflow-x: auto;
}
@media (min-width: 992px) {
  .booking-links .button-row {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    overflow-x: visible;
  }
}
.booking-links .button-row .btn-line-bottom {
  padding-bottom: 4px;
  font-size: 15px;
}
.booking-links .col-tile {
  margin-bottom: 20px;
}
.booking-links .title {
  margin-bottom: 0;
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
  transition: text-decoration-color 0.2s ease;
}
.booking-links .description {
  margin-bottom: 20px;
}
.booking-links .tile-wrapper {
  position: relative;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 10px;
  height: 100%;
  padding: 18px 25px;
  border: 1px solid #bbbbbb;
}
.booking-links .tile-wrapper .btn-line-bottom {
  color: #9eb5cb;
}
.booking-links .cta-section {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
}
.booking-links .date,
.booking-links .cta {
  margin-bottom: 0;
}
.booking-links .date {
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-right: 16px;
}
.booking-links .cta {
  padding: 0;
  color: inherit;
}
.booking-links .stretched-link {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.booking-links .stretched-link::after {
  outline: solid 2px transparent;
  transition: outline-color 0.2s ease;
}
.booking-links .stretched-link:hover::after,
.booking-links .stretched-link:focus::after {
  outline-color: #9eb5cb;
}
.booking-links .stretched-link:hover ~ div .title,
.booking-links .stretched-link:focus ~ div .title {
  -webkit-text-decoration-color: currentColor;
          text-decoration-color: currentColor;
}
.booking-links .stretched-link:hover ~ div .btn-line-bottom,
.booking-links .stretched-link:focus ~ div .btn-line-bottom {
  border-bottom-color: #9eb5cb;
}
/* Umbraco CMS pages */
.cms h5 {
  font-family: 'Gotham', serif;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 1px;
  font-weight: bold;
  text-transform: uppercase;
  line-height: 160%;
  margin-bottom: 20px;
}
.cms h1 {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .cms h1 {
    font-size: 35px;
    margin-bottom: 20px;
    line-height: 1.4;
  }
}
.cms .credits-sidebar p {
  margin-bottom: 20px;
}
@media (min-width: 992px) {
  .cms .credits-sidebar h2 {
    margin-bottom: 30px;
  }
}
.cms .credits-sidebar li {
  margin-bottom: 5px;
}
.cms .credits-sidebar h5 {
  margin-bottom: 10px;
}
.cms .credits-sidebar ul,
.cms .main-content-side-bar ul {
  list-style: none;
  padding-left: 0;
}
.cms .main-content-side-bar p {
  margin-bottom: 20px;
}
.cms .main-content-side-bar h5 {
  margin-bottom: 10px;
}
.cms h2 {
  font-size: 20px;
  margin-top: 0px;
  margin-bottom: 20px;
}
.cms h3 {
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .cms h3 {
    margin-bottom: 15px;
  }
}
.cms p {
  margin-bottom: 28px;
}
.cms a:not(.btn):not(.h2):not(.button-svg) {
  font-size: 15px;
  text-decoration: underline;
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
}
.page-blog-listing .featured-article-image {
  -webkit-order: 1;
      -ms-flex-order: 1;
          order: 1;
}
.page-blog-listing .featured-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.page-blog-listing .featured-article-body {
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
.page-blog-listing .featured-article-body .heading {
  line-height: 1.6;
  margin-bottom: 15px;
  margin-top: 0;
}
@media (min-width: 1200px) {
  .page-blog-listing .featured-article-body .heading {
    line-height: 1.4;
    margin-bottom: 20px;
  }
}
.page-blog-listing .featured-article-body .button-svg {
  margin-left: -10px;
}
.page-blog-listing .section {
  margin-top: 30px;
  margin-bottom: 50px;
}
@media (min-width: 1200px) {
  .page-blog-listing .section {
    margin-top: 40px;
    margin-bottom: 80px;
  }
}
.page-blog-listing .featured-article-text {
  line-height: 24px;
  margin-bottom: 15px;
}
@media (min-width: 1200px) {
  .page-blog-listing .featured-article-text {
    margin-bottom: 20px;
  }
}
.page-blog-listing .article-tile {
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .page-blog-listing .article-tile {
    margin-bottom: 40px;
  }
}
.page-blog-listing .article-tile .heading {
  text-transform: none;
  color: #000;
  margin-bottom: 0;
  letter-spacing: 0;
}
@media (min-width: 1200px) {
  .page-blog-listing .article-tile .heading {
    margin-top: 5px;
  }
}
.page-blog-listing .article-tile a {
  text-decoration: none;
}
.page-blog-listing .article-tile a h3 {
  margin-top: 10px;
}
.page-blog-listing .article-tile a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
.page-blog-listing .article-tile a:hover .article-tile-date {
  text-decoration: none;
}
.page-blog-listing .featured-article-date {
  font-weight: bold;
  color: #222;
  margin: 14px 0 15px;
}
.page-blog-listing .article-tile-date {
  font-weight: bold;
  color: #222;
  margin: 14px 0 0;
}
.page-blog-listing .more-articles-button-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 20px;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .page-blog-listing .more-articles-button-container {
    margin-top: 10px;
  }
}
.page-blog-listing .event-tile-image {
  width: 100%;
}
.featured-article-date,
.article-tile-date,
.article-date {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
}
.page-blog-detail .back-to-blog {
  display: block;
  margin-bottom: 30px;
}
@media (min-width: 1200px) {
  .page-blog-detail .back-to-blog {
    margin-bottom: 40px;
  }
}
.page-blog-detail .article-date {
  margin-bottom: 30px;
}
.page-blog-detail .blockquote-section + .carousel-section .custom-swiper-styles {
  margin-top: 10px;
  margin-bottom: 40px;
}
@media (min-width: 1200px) {
  .page-blog-listing .featured-article-text {
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .page-blog-listing .featured-article-image {
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .page-blog-listing .featured-article-date {
    font-weight: bold;
    color: #222;
    margin: 0 0 20px;
  }
  .page-blog-listing .article-tile .heading {
    font-size: 20px;
    line-height: 30px;
  }
}
/* Misc */
.has-swash,
.has-tan-swash {
  position: relative;
}
.has-swash::before,
.has-tan-swash::before {
  position: absolute;
  content: '';
  left: 0;
  right: 0;
  bottom: -1px;
  height: 20px;
  z-index: 2;
}
.has-swash::before {
  background: transparent url('/Assets/images/swash.svg') repeat-x;
}
.has-tan-swash::before {
  background: transparent url('/Assets/images/tan-swash.svg') repeat-x;
}
.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}
.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.stretched-link::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
/*# sourceMappingURL=style.css.map */