.slbOverlay, .slbWrapOuter, .slbWrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.slbOverlay {
  overflow: hidden;
  z-index: 2000;
  background-color: #000;
  opacity: 0.7;
  -webkit-animation: slbOverlay 0.5s;
  -o-animation: slbOverlay 0.5s;
     animation: slbOverlay 0.5s;
}

.slbWrapOuter {
  overflow-x: hidden;
  overflow-y: auto;
  z-index: 2010;
}

.slbWrap {
  position: absolute;
  text-align: center;
}

.slbWrap:before {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
}

.slbContentOuter {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin: 0px auto;
  padding: 0 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 2020;
  text-align: left;
  max-width: 100%;
}

.slbContentEl .slbContentOuter {
  padding: 5em 1em;
}

.slbContent {
  position: relative;
}

.slbContentEl .slbContent {
  -webkit-animation: slbEnter 0.3s;
  -o-animation: slbEnter 0.3s;
     animation: slbEnter 0.3s;
  background-color: #fff;
  -webkit-box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);
          box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.4);
}

.slbImageWrap {
  -webkit-animation: slbEnter 0.3s;
  -o-animation: slbEnter 0.3s;
     animation: slbEnter 0.3s;
  position: relative;
}

.slbImageWrap:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 5em;
  bottom: 5em;
  display: block;
  z-index: -1;
  -webkit-box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
          box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background-color: #FFF;
}

.slbDirectionNext .slbImageWrap {
  -webkit-animation: slbEnterNext 0.4s;
  -o-animation: slbEnterNext 0.4s;
     animation: slbEnterNext 0.4s;
}

.slbDirectionPrev .slbImageWrap {
  -webkit-animation: slbEnterPrev 0.4s;
  -o-animation: slbEnterPrev 0.4s;
     animation: slbEnterPrev 0.4s;
}

.slbImage {
  width: auto;
  max-width: 100%;
  height: auto;
  display: block;
  line-height: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 5em 0;
  margin: 0 auto;
}

.slbCaption {
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-size: 1.4em;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.71429em 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbCloseBtn, .slbArrow {
  margin: 0;
  padding: 0;
  border: 0;
  cursor: pointer;
  background: none;
}

.slbCloseBtn::-moz-focus-inner, .slbArrow::-moz-focus-inner {
  padding: 0;
  border: 0;
}

.slbCloseBtn:hover, .slbArrow:hover {
  opacity: 0.5;
}

.slbCloseBtn:active, .slbArrow:active {
  opacity: 0.8;
}

.slbCloseBtn {
  -webkit-animation: slbEnter 0.3s;
  -o-animation: slbEnter 0.3s;
     animation: slbEnter 0.3s;
  font-size: 3em;
  width: 1.66667em;
  height: 1.66667em;
  line-height: 1.66667em;
  position: absolute;
  right: -0.33333em;
  top: 0;
  color: #fff;
  color: rgba(255, 255, 255, 0.7);
  text-align: center;
}

.slbLoading .slbCloseBtn {
  display: none;
}

.slbLoadingText {
  font-size: 1.4em;
  color: #fff;
  color: rgba(255, 255, 255, 0.9);
}

.slbArrows {
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
}

.slbLoading .slbArrows {
  display: none;
}

.slbArrow {
  position: absolute;
  top: 50%;
  margin-top: -5em;
  width: 5em;
  height: 10em;
  opacity: 0.7;
  text-indent: -999em;
  overflow: hidden;
}

.slbArrow:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -0.8em 0 0 -0.8em;
  border: 0.8em solid transparent;
}

.slbArrow.next {
  right: 0;
}

.slbArrow.next:before {
  border-left-color: #fff;
}

.slbArrow.prev {
  left: 0;
}

.slbArrow.prev:before {
  border-right-color: #fff;
}

.slbIframeCont {
  width: 80em;
  height: 0;
  overflow: hidden;
  padding-top: 56.25%;
  margin: 5em 0;
}

.slbIframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
          box-shadow: 0 0.2em 1em rgba(0, 0, 0, 0.6);
  background: #000;
}

@-webkit-keyframes slbOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

@-o-keyframes slbOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

@keyframes slbOverlay {
  from {
    opacity: 0;
  }
  to {
    opacity: 0.7;
  }
}

@-webkit-keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
    -o-transform: translate3d(0, -1em, 0);
    transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnter {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -1em, 0);
    -o-transform: translate3d(0, -1em, 0);
    transform: translate3d(0, -1em, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0);
    -o-transform: translate3d(4em, 0, 0);
    transform: translate3d(4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnterNext {
  from {
    opacity: 0;
    -webkit-transform: translate3d(4em, 0, 0);
    -o-transform: translate3d(4em, 0, 0);
    transform: translate3d(4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@-webkit-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
  }
}

@-o-keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
    -o-transform: translate3d(-4em, 0, 0);
    transform: translate3d(-4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slbEnterPrev {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-4em, 0, 0);
    -o-transform: translate3d(-4em, 0, 0);
    transform: translate3d(-4em, 0, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@charset "UTF-8";
/*
 * Colors
 */
/* $darkgrey: #747474;
$textgrey: #5d5a5a; */
/* $button: #898989; */
/* ATC Colours */
/*
 * Type
 */
/*
 * Spacing
 */
/*
 * Grid
 */
@media (min-width: 768px) and (max-width: 991px) {
  .col-lg-3.order-lg-1 {
    width: 50%;
  }
  .col-lg-3.order-lg-1 .module-62__widget-inner {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left top;
         -o-transform-origin: left top;
            transform-origin: left top;
  }
  .col-lg-3.order-lg-3 {
    width: 50%;
  }
  .col-lg-3.order-lg-3 .module-62__widget-inner {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left top;
         -o-transform-origin: left top;
            transform-origin: left top;
  }
}

@font-face {
  font-family: "Headings";
  font-weight: 200;
  src: url("https://cdn.australianturfclub.com.au/app/themes/e3creative/dist/fonts/raisonne-light-pro.woff2") format("woff2");
}

@font-face {
  font-family: "Text";
  font-weight: 100;
  src: url("https://cdn.australianturfclub.com.au/app/themes/e3creative/dist/fonts/Gotham-Book.woff") format("woff");
}

@media (min-width: 768px) and (max-width: 991px) {
  .module-62 {
    margin-bottom: -80px;
  }
  .col-lg-3.order-lg-1 {
    width: 50%;
  }
  .col-lg-3.order-lg-1 .module-62__widget-inner {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left top;
         -o-transform-origin: left top;
            transform-origin: left top;
  }
  .col-lg-3.order-lg-3 {
    width: 50%;
  }
  .col-lg-3.order-lg-3 .module-62__widget-inner {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left top;
         -o-transform-origin: left top;
            transform-origin: left top;
  }
  .atc-raceclock-css {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left center;
         -o-transform-origin: left center;
            transform-origin: left center;
  }
}

@media (min-width: 992px) and (max-width: 1660px) {
  .module-62 {
    padding: 0 20px;
  }
  .module-62__widget-inner {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left top;
         -o-transform-origin: left top;
            transform-origin: left top;
  }
  .atc-raceclock-css {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left center;
         -o-transform-origin: left center;
            transform-origin: left center;
  }
  .atc-weather-css {
    -webkit-transform: scale(70%);
         -o-transform: scale(70%);
            transform: scale(70%);
    -webkit-transform-origin: left center;
         -o-transform-origin: left center;
            transform-origin: left center;
  }
}

@media (min-width: 1200px) and (max-width: 1660px) {
  .atc-racetitle-css {
    -webkit-transform: scale(80%);
         -o-transform: scale(80%);
            transform: scale(80%);
    -webkit-transform-origin: left center;
         -o-transform-origin: left center;
            transform-origin: left center;
  }
}

@media (max-width: 640px) {
  .atc-racetitle-css,
  .atc-raceclock-css,
  .module-62__widget-inner {
    -webkit-transform: scale(85%);
         -o-transform: scale(85%);
            transform: scale(85%);
    -webkit-transform-origin: center top;
         -o-transform-origin: center top;
            transform-origin: center top;
    margin-left: -30px;
  }
}

@media (max-width: 1000px) {
  .modal-open {
    overflow: visible;
  }
  .widget-countdowm-popup {
    display: none !important;
  }
}

.widget-countdowm-popup .close {
  font-size: 50px;
}

.widget-countdowm-popup .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.widget-slider__next,
.widget-slider__prev {
  background: none;
}

/*.module-62__widget-inner h2{font-size: 40px;}
  .module-62__widget-inner{
  height: 100%;
  background: #fff;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  padding: 40px 80px;
  text-align: center;
  }*/
.racecourse-badge {
  background-color: #fff;
  border-radius: 100%;
  color: #00204e;
  display: inline-block;
  font-family: "raisonne-demibold-pro";
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  letter-spacing: 1.5px;
  text-align: center;
  width: 40px;
}

.badge-rr {
  background-color: #F58226;
}

.badge-rg {
  background-color: #80d5b6;
}

.badge-cp {
  background-color: #627fdd;
}

.badge-wf {
  background-color: #80ad6c;
}

.badge-carnival {
  background-color: #a08032;
  color: #fff;
}

/** Import everything from autoload */
/*!
 * Bootstrap v4.6.2 (https://getbootstrap.com/)
 * Copyright 2011-2022 The Bootstrap Authors
 * Copyright 2011-2022 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */
:root {
  --blue: #007bff;
  --indigo: #6610f2;
  --purple: #6f42c1;
  --pink: #e83e8c;
  --red: #dc3545;
  --orange: #fd7e14;
  --yellow: #ffc107;
  --green: #28a745;
  --teal: #20c997;
  --cyan: #17a2b8;
  --white: #fff;
  --gray: #6c757d;
  --gray-dark: #343a40;
  --primary: #007bff;
  --secondary: #6c757d;
  --success: #398f14;
  --info: #17a2b8;
  --warning: #ffc107;
  --danger: #dc3545;
  --light: #f8f9fa;
  --dark: #343a40;
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 1024px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
  --breakpoint-xxxl: 1800px;
  --font-family-sans-serif: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font-family-monospace: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  font-family: sans-serif;
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

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

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #212529;
  text-align: left;
  background-color: #fff;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0 !important;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
  overflow: visible;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5rem;
}

p {
  margin-top: 0;
  margin-bottom: 2rem;
}

abbr[title],
abbr[data-original-title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  cursor: help;
  border-bottom: 0;
  -webkit-text-decoration-skip-ink: none;
          text-decoration-skip-ink: none;
}

address {
  margin-bottom: 1rem;
  font-style: normal;
  line-height: inherit;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 1rem;
}

ol ol,
ul ul,
ol ul,
ul ol {
  margin-bottom: 0;
}

dt {
  font-weight: 700;
}

dd {
  margin-bottom: .5rem;
  margin-left: 0;
}

blockquote {
  margin: 0 0 1rem;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -.25em;
}

sup {
  top: -.5em;
}

a {
  color: #007bff;
  text-decoration: none;
  background-color: transparent;
}

a:hover {
  color: #0056b3;
  text-decoration: underline;
}

a:not([href]):not([class]) {
  color: inherit;
  text-decoration: none;
}

a:not([href]):not([class]):hover {
  color: inherit;
  text-decoration: none;
}

pre,
code,
kbd,
samp {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size: 1em;
}

pre {
  margin-top: 0;
  margin-bottom: 1rem;
  overflow: auto;
  -ms-overflow-style: scrollbar;
}

figure {
  margin: 0 0 1rem;
}

img {
  vertical-align: middle;
  border-style: none;
}

svg {
  overflow: hidden;
  vertical-align: middle;
}

table {
  border-collapse: collapse;
}

caption {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  color: #6c757d;
  text-align: left;
  caption-side: bottom;
}

th {
  text-align: inherit;
  text-align: -webkit-match-parent;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
}

button {
  border-radius: 0;
}

button:focus:not(:focus-visible) {
  outline: 0;
}

input,
button,
select,
optgroup,
textarea {
  margin: 0;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role="button"] {
  cursor: pointer;
}

select {
  word-wrap: normal;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
  cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

textarea {
  overflow: auto;
  resize: vertical;
}

fieldset {
  min-width: 0;
  padding: 0;
  margin: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  max-width: 100%;
  padding: 0;
  margin-bottom: .5rem;
  font-size: 1.5rem;
  line-height: inherit;
  color: inherit;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}

[type="search"] {
  outline-offset: -2px;
  -webkit-appearance: none;
}

[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  font: inherit;
  -webkit-appearance: button;
}

output {
  display: inline-block;
}

summary {
  display: list-item;
  cursor: pointer;
}

template {
  display: none;
}

[hidden] {
  display: none !important;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

h1, .h1 {
  font-size: 4rem;
}

h2, .h2 {
  font-size: 3.2rem;
}

h3, .h3 {
  font-size: 2.8rem;
}

h4, .h4 {
  font-size: 2.4rem;
}

h5, .h5 {
  font-size: 2rem;
}

h6, .h6 {
  font-size: 1.6rem;
}

.lead {
  font-size: 2rem;
  font-weight: 300;
}

.display-1 {
  font-size: 6rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-2 {
  font-size: 5.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-3 {
  font-size: 4.5rem;
  font-weight: 300;
  line-height: 1.2;
}

.display-4 {
  font-size: 3.5rem;
  font-weight: 300;
  line-height: 1.2;
}

hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

small,
.small {
  font-size: 0.875em;
  font-weight: 400;
}

mark,
.mark {
  padding: 0.2em;
  background-color: #fcf8e3;
}

.list-unstyled, .comment-list {
  padding-left: 0;
  list-style: none;
}

.list-inline {
  padding-left: 0;
  list-style: none;
}

.list-inline-item {
  display: inline-block;
}

.list-inline-item:not(:last-child) {
  margin-right: 0.5rem;
}

.initialism {
  font-size: 90%;
  text-transform: uppercase;
}

.blockquote {
  margin-bottom: 1rem;
  font-size: 2rem;
}

.blockquote-footer {
  display: block;
  font-size: 0.875em;
  color: #6c757d;
}

.blockquote-footer::before {
  content: "\2014\A0";
}

.img-fluid, .wp-caption img {
  max-width: 100%;
  height: auto;
}

.img-thumbnail {
  padding: 0.25rem;
  background-color: #fff;
  border: 1px solid #dee2e6;
  border-radius: 0.3rem;
  max-width: 100%;
  height: auto;
}

.figure, .wp-caption {
  display: inline-block;
}

.figure-img, .wp-caption img {
  margin-bottom: 0.5rem;
  line-height: 1;
}

.figure-caption, .wp-caption-text {
  font-size: 90%;
  color: #6c757d;
}

code {
  font-size: 87.5%;
  color: #e83e8c;
  word-wrap: break-word;
}

a > code {
  color: inherit;
}

kbd {
  padding: 0.2rem 0.4rem;
  font-size: 87.5%;
  color: #fff;
  background-color: #212529;
  border-radius: 0.2rem;
}

kbd kbd {
  padding: 0;
  font-size: 100%;
  font-weight: 700;
}

pre {
  display: block;
  font-size: 87.5%;
  color: #212529;
}

pre code {
  font-size: inherit;
  color: inherit;
  word-break: normal;
}

.pre-scrollable {
  max-height: 340px;
  overflow-y: scroll;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container, .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container, .container-sm, .container-md {
    max-width: 720px;
  }
}

@media (min-width: 1024px) {
  .container, .container-sm, .container-md, .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container, .container-sm, .container-md, .container-lg, .container-xl {
    max-width: 1140px;
  }
}

.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .col,
.no-gutters > [class*="col-"] {
  padding-right: 0;
  padding-left: 0;
}

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto, .col-xl-1, .col-xl-2, .col-xl-3, .col-xl-4, .col-xl-5, .col-xl-6, .col-xl-7, .col-xl-8, .col-xl-9, .col-xl-10, .col-xl-11, .col-xl-12, .col-xl,
.col-xl-auto, .col-xxl-1, .col-xxl-2, .col-xxl-3, .col-xxl-4, .col-xxl-5, .col-xxl-6, .col-xxl-7, .col-xxl-8, .col-xxl-9, .col-xxl-10, .col-xxl-11, .col-xxl-12, .col-xxl,
.col-xxl-auto, .col-xxxl-1, .col-xxxl-2, .col-xxxl-3, .col-xxxl-4, .col-xxxl-5, .col-xxxl-6, .col-xxxl-7, .col-xxxl-8, .col-xxxl-9, .col-xxxl-10, .col-xxxl-11, .col-xxxl-12, .col-xxxl,
.col-xxxl-auto {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  max-width: 100%;
}

.row-cols-1 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.row-cols-2 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.row-cols-3 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.row-cols-4 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.row-cols-5 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 20%;
          flex: 0 0 20%;
  max-width: 20%;
}

.row-cols-6 > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66666667%;
          flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-auto {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}

.col-1 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 8.33333333%;
          flex: 0 0 8.33333333%;
  max-width: 8.33333333%;
}

.col-2 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 16.66666667%;
          flex: 0 0 16.66666667%;
  max-width: 16.66666667%;
}

.col-3 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 33.33333333%;
          flex: 0 0 33.33333333%;
  max-width: 33.33333333%;
}

.col-5 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 41.66666667%;
          flex: 0 0 41.66666667%;
  max-width: 41.66666667%;
}

.col-6 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
  max-width: 50%;
}

.col-7 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.33333333%;
          flex: 0 0 58.33333333%;
  max-width: 58.33333333%;
}

.col-8 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 66.66666667%;
          flex: 0 0 66.66666667%;
  max-width: 66.66666667%;
}

.col-9 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 75%;
          flex: 0 0 75%;
  max-width: 75%;
}

.col-10 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 83.33333333%;
          flex: 0 0 83.33333333%;
  max-width: 83.33333333%;
}

.col-11 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 91.66666667%;
          flex: 0 0 91.66666667%;
  max-width: 91.66666667%;
}

.col-12 {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
  max-width: 100%;
}

.order-first {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

.order-last {
  -webkit-box-ordinal-group: 14;
      -ms-flex-order: 13;
          order: 13;
}

.order-0 {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
}

.order-1 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.order-2 {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.order-3 {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
}

.order-4 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
}

.order-5 {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
}

.order-6 {
  -webkit-box-ordinal-group: 7;
      -ms-flex-order: 6;
          order: 6;
}

.order-7 {
  -webkit-box-ordinal-group: 8;
      -ms-flex-order: 7;
          order: 7;
}

.order-8 {
  -webkit-box-ordinal-group: 9;
      -ms-flex-order: 8;
          order: 8;
}

.order-9 {
  -webkit-box-ordinal-group: 10;
      -ms-flex-order: 9;
          order: 9;
}

.order-10 {
  -webkit-box-ordinal-group: 11;
      -ms-flex-order: 10;
          order: 10;
}

.order-11 {
  -webkit-box-ordinal-group: 12;
      -ms-flex-order: 11;
          order: 11;
}

.order-12 {
  -webkit-box-ordinal-group: 13;
      -ms-flex-order: 12;
          order: 12;
}

.offset-1 {
  margin-left: 8.33333333%;
}

.offset-2 {
  margin-left: 16.66666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.33333333%;
}

.offset-5 {
  margin-left: 41.66666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.33333333%;
}

.offset-8 {
  margin-left: 66.66666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.33333333%;
}

.offset-11 {
  margin-left: 91.66666667%;
}

@media (min-width: 576px) {
  .col-sm {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-sm-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-sm-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-sm-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-sm-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-sm-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-sm-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-sm-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-sm-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-sm-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-sm-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-sm-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-sm-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-sm-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-sm-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-sm-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-sm-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-sm-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-sm-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-sm-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-sm-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-sm-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-sm-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-sm-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-sm-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-sm-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-sm-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-sm-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-sm-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-sm-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-sm-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-sm-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-sm-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-sm-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.33333333%;
  }
  .offset-sm-2 {
    margin-left: 16.66666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333333%;
  }
  .offset-sm-5 {
    margin-left: 41.66666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333333%;
  }
  .offset-sm-8 {
    margin-left: 66.66666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333333%;
  }
  .offset-sm-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 768px) {
  .col-md {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-md-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-md-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-md-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-md-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-md-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-md-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-md-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-md-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-md-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-md-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-md-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-md-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-md-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-md-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-md-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-md-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-md-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-md-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-md-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-md-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-md-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-md-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-md-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-md-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-md-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-md-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-md-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-md-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-md-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-md-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-md-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-md-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-md-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.33333333%;
  }
  .offset-md-2 {
    margin-left: 16.66666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333333%;
  }
  .offset-md-5 {
    margin-left: 41.66666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333333%;
  }
  .offset-md-8 {
    margin-left: 66.66666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333333%;
  }
  .offset-md-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1024px) {
  .col-lg {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-lg-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-lg-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-lg-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-lg-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-lg-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-lg-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-lg-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-lg-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-lg-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-lg-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-lg-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-lg-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-lg-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-lg-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-lg-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-lg-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-lg-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-lg-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-lg-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-lg-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-lg-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-lg-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-lg-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-lg-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-lg-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-lg-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-lg-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-lg-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-lg-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-lg-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-lg-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-lg-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-lg-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.33333333%;
  }
  .offset-lg-2 {
    margin-left: 16.66666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333333%;
  }
  .offset-lg-5 {
    margin-left: 41.66666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333333%;
  }
  .offset-lg-8 {
    margin-left: 66.66666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333333%;
  }
  .offset-lg-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1200px) {
  .col-xl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-xl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xl-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1400px) {
  .col-xxl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-xxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxl-0 {
    margin-left: 0;
  }
  .offset-xxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxl-3 {
    margin-left: 25%;
  }
  .offset-xxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxl-6 {
    margin-left: 50%;
  }
  .offset-xxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxl-9 {
    margin-left: 75%;
  }
  .offset-xxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxl-11 {
    margin-left: 91.66666667%;
  }
}

@media (min-width: 1800px) {
  .col-xxxl {
    -ms-flex-preferred-size: 0;
        flex-basis: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    max-width: 100%;
  }
  .row-cols-xxxl-1 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .row-cols-xxxl-2 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .row-cols-xxxl-3 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .row-cols-xxxl-4 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .row-cols-xxxl-5 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
    max-width: 20%;
  }
  .row-cols-xxxl-6 > * {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxxl-auto {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: auto;
    max-width: 100%;
  }
  .col-xxxl-1 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 8.33333333%;
            flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .col-xxxl-2 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 16.66666667%;
            flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .col-xxxl-3 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
  .col-xxxl-4 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 33.33333333%;
            flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .col-xxxl-5 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 41.66666667%;
            flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .col-xxxl-6 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
  .col-xxxl-7 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 58.33333333%;
            flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .col-xxxl-8 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 66.66666667%;
            flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .col-xxxl-9 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 75%;
            flex: 0 0 75%;
    max-width: 75%;
  }
  .col-xxxl-10 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 83.33333333%;
            flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .col-xxxl-11 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 91.66666667%;
            flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .col-xxxl-12 {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100%;
            flex: 0 0 100%;
    max-width: 100%;
  }
  .order-xxxl-first {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  .order-xxxl-last {
    -webkit-box-ordinal-group: 14;
        -ms-flex-order: 13;
            order: 13;
  }
  .order-xxxl-0 {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
  }
  .order-xxxl-1 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .order-xxxl-2 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  .order-xxxl-3 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .order-xxxl-4 {
    -webkit-box-ordinal-group: 5;
        -ms-flex-order: 4;
            order: 4;
  }
  .order-xxxl-5 {
    -webkit-box-ordinal-group: 6;
        -ms-flex-order: 5;
            order: 5;
  }
  .order-xxxl-6 {
    -webkit-box-ordinal-group: 7;
        -ms-flex-order: 6;
            order: 6;
  }
  .order-xxxl-7 {
    -webkit-box-ordinal-group: 8;
        -ms-flex-order: 7;
            order: 7;
  }
  .order-xxxl-8 {
    -webkit-box-ordinal-group: 9;
        -ms-flex-order: 8;
            order: 8;
  }
  .order-xxxl-9 {
    -webkit-box-ordinal-group: 10;
        -ms-flex-order: 9;
            order: 9;
  }
  .order-xxxl-10 {
    -webkit-box-ordinal-group: 11;
        -ms-flex-order: 10;
            order: 10;
  }
  .order-xxxl-11 {
    -webkit-box-ordinal-group: 12;
        -ms-flex-order: 11;
            order: 11;
  }
  .order-xxxl-12 {
    -webkit-box-ordinal-group: 13;
        -ms-flex-order: 12;
            order: 12;
  }
  .offset-xxxl-0 {
    margin-left: 0;
  }
  .offset-xxxl-1 {
    margin-left: 8.33333333%;
  }
  .offset-xxxl-2 {
    margin-left: 16.66666667%;
  }
  .offset-xxxl-3 {
    margin-left: 25%;
  }
  .offset-xxxl-4 {
    margin-left: 33.33333333%;
  }
  .offset-xxxl-5 {
    margin-left: 41.66666667%;
  }
  .offset-xxxl-6 {
    margin-left: 50%;
  }
  .offset-xxxl-7 {
    margin-left: 58.33333333%;
  }
  .offset-xxxl-8 {
    margin-left: 66.66666667%;
  }
  .offset-xxxl-9 {
    margin-left: 75%;
  }
  .offset-xxxl-10 {
    margin-left: 83.33333333%;
  }
  .offset-xxxl-11 {
    margin-left: 91.66666667%;
  }
}

.table {
  width: 100%;
  margin-bottom: 1rem;
  color: #212529;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table thead th {
  vertical-align: bottom;
  border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
  border-top: 2px solid #dee2e6;
}

.table-sm th,
.table-sm td {
  padding: 0.3rem;
}

.table-bordered {
  border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
  border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
  border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
  border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
  color: #212529;
  background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
  background-color: #b8daff;
}

.table-primary th,
.table-primary td,
.table-primary thead th,
.table-primary tbody + tbody {
  border-color: #7abaff;
}

.table-hover .table-primary:hover {
  background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
  background-color: #9fcdff;
}

.table-secondary,
.table-secondary > th,
.table-secondary > td {
  background-color: #d6d8db;
}

.table-secondary th,
.table-secondary td,
.table-secondary thead th,
.table-secondary tbody + tbody {
  border-color: #b3b7bb;
}

.table-hover .table-secondary:hover {
  background-color: #c8cbcf;
}

.table-hover .table-secondary:hover > td,
.table-hover .table-secondary:hover > th {
  background-color: #c8cbcf;
}

.table-success,
.table-success > th,
.table-success > td {
  background-color: #c8e0bd;
}

.table-success th,
.table-success td,
.table-success thead th,
.table-success tbody + tbody {
  border-color: #98c585;
}

.table-hover .table-success:hover {
  background-color: #bad8ac;
}

.table-hover .table-success:hover > td,
.table-hover .table-success:hover > th {
  background-color: #bad8ac;
}

.table-info,
.table-info > th,
.table-info > td {
  background-color: #bee5eb;
}

.table-info th,
.table-info td,
.table-info thead th,
.table-info tbody + tbody {
  border-color: #86cfda;
}

.table-hover .table-info:hover {
  background-color: #abdde5;
}

.table-hover .table-info:hover > td,
.table-hover .table-info:hover > th {
  background-color: #abdde5;
}

.table-warning,
.table-warning > th,
.table-warning > td {
  background-color: #ffeeba;
}

.table-warning th,
.table-warning td,
.table-warning thead th,
.table-warning tbody + tbody {
  border-color: #ffdf7e;
}

.table-hover .table-warning:hover {
  background-color: #ffe8a1;
}

.table-hover .table-warning:hover > td,
.table-hover .table-warning:hover > th {
  background-color: #ffe8a1;
}

.table-danger,
.table-danger > th,
.table-danger > td {
  background-color: #f5c6cb;
}

.table-danger th,
.table-danger td,
.table-danger thead th,
.table-danger tbody + tbody {
  border-color: #ed969e;
}

.table-hover .table-danger:hover {
  background-color: #f1b0b7;
}

.table-hover .table-danger:hover > td,
.table-hover .table-danger:hover > th {
  background-color: #f1b0b7;
}

.table-light,
.table-light > th,
.table-light > td {
  background-color: #fdfdfe;
}

.table-light th,
.table-light td,
.table-light thead th,
.table-light tbody + tbody {
  border-color: #fbfcfc;
}

.table-hover .table-light:hover {
  background-color: #ececf6;
}

.table-hover .table-light:hover > td,
.table-hover .table-light:hover > th {
  background-color: #ececf6;
}

.table-dark,
.table-dark > th,
.table-dark > td {
  background-color: #c6c8ca;
}

.table-dark th,
.table-dark td,
.table-dark thead th,
.table-dark tbody + tbody {
  border-color: #95999c;
}

.table-hover .table-dark:hover {
  background-color: #b9bbbe;
}

.table-hover .table-dark:hover > td,
.table-hover .table-dark:hover > th {
  background-color: #b9bbbe;
}

.table-active,
.table-active > th,
.table-active > td {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover {
  background-color: rgba(0, 0, 0, 0.075);
}

.table-hover .table-active:hover > td,
.table-hover .table-active:hover > th {
  background-color: rgba(0, 0, 0, 0.075);
}

.table .thead-dark th {
  color: #fff;
  background-color: #343a40;
  border-color: #454d55;
}

.table .thead-light th {
  color: #495057;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.table-dark {
  color: #fff;
  background-color: #343a40;
}

.table-dark th,
.table-dark td,
.table-dark thead th {
  border-color: #454d55;
}

.table-dark.table-bordered {
  border: 0;
}

.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}

.table-dark.table-hover tbody tr:hover {
  color: #fff;
  background-color: rgba(255, 255, 255, 0.075);
}

@media (max-width: 575.98px) {
  .table-responsive-sm {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-sm > .table-bordered {
    border: 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive-md {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-md > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1023.98px) {
  .table-responsive-lg {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-lg > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1199.98px) {
  .table-responsive-xl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xl > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1399.98px) {
  .table-responsive-xxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxl > .table-bordered {
    border: 0;
  }
}

@media (max-width: 1799.98px) {
  .table-responsive-xxxl {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive-xxxl > .table-bordered {
    border: 0;
  }
}

.table-responsive {
  display: block;
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.table-responsive > .table-bordered {
  border: 0;
}

.form-control, .comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea, .search-form .search-field {
  display: block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .form-control, .comment-form input[type="text"],
  .comment-form input[type="email"],
  .comment-form input[type="url"],
  .comment-form textarea, .search-form .search-field {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.form-control::-ms-expand, .comment-form input[type="text"]::-ms-expand,
.comment-form input[type="email"]::-ms-expand,
.comment-form input[type="url"]::-ms-expand,
.comment-form textarea::-ms-expand, .search-form .search-field::-ms-expand {
  background-color: transparent;
  border: 0;
}

.form-control:focus, .comment-form input:focus[type="text"],
.comment-form input:focus[type="email"],
.comment-form input:focus[type="url"],
.comment-form textarea:focus, .search-form .search-field:focus {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.form-control::-webkit-input-placeholder, .comment-form input[type="text"]::-webkit-input-placeholder, .comment-form input[type="email"]::-webkit-input-placeholder, .comment-form input[type="url"]::-webkit-input-placeholder, .comment-form textarea::-webkit-input-placeholder, .search-form .search-field::-webkit-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-moz-placeholder, .comment-form input[type="text"]::-moz-placeholder, .comment-form input[type="email"]::-moz-placeholder, .comment-form input[type="url"]::-moz-placeholder, .comment-form textarea::-moz-placeholder, .search-form .search-field::-moz-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:-ms-input-placeholder, .comment-form input[type="text"]:-ms-input-placeholder, .comment-form input[type="email"]:-ms-input-placeholder, .comment-form input[type="url"]:-ms-input-placeholder, .comment-form textarea:-ms-input-placeholder, .search-form .search-field:-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::-ms-input-placeholder, .comment-form input[type="text"]::-ms-input-placeholder, .comment-form input[type="email"]::-ms-input-placeholder, .comment-form input[type="url"]::-ms-input-placeholder, .comment-form textarea::-ms-input-placeholder, .search-form .search-field::-ms-input-placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control::placeholder, .comment-form input[type="text"]::placeholder,
.comment-form input[type="email"]::placeholder,
.comment-form input[type="url"]::placeholder,
.comment-form textarea::placeholder, .search-form .search-field::placeholder {
  color: #6c757d;
  opacity: 1;
}

.form-control:disabled, .comment-form input:disabled[type="text"],
.comment-form input:disabled[type="email"],
.comment-form input:disabled[type="url"],
.comment-form textarea:disabled, .search-form .search-field:disabled, .form-control[readonly], .comment-form input[readonly][type="text"],
.comment-form input[readonly][type="email"],
.comment-form input[readonly][type="url"],
.comment-form textarea[readonly], .search-form .search-field[readonly] {
  background-color: #e9ecef;
  opacity: 1;
}

input[type="date"].form-control, .comment-form input[type="date"][type="text"],
.comment-form input[type="date"][type="email"],
.comment-form input[type="date"][type="url"], .search-form input.search-field[type="date"],
input[type="time"].form-control,
.comment-form input[type="time"][type="text"],
.comment-form input[type="time"][type="email"],
.comment-form input[type="time"][type="url"],
.search-form input.search-field[type="time"],
input[type="datetime-local"].form-control,
.comment-form input[type="datetime-local"][type="text"],
.comment-form input[type="datetime-local"][type="email"],
.comment-form input[type="datetime-local"][type="url"],
.search-form input.search-field[type="datetime-local"],
input[type="month"].form-control,
.comment-form input[type="month"][type="text"],
.comment-form input[type="month"][type="email"],
.comment-form input[type="month"][type="url"],
.search-form input.search-field[type="month"] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select.form-control:-moz-focusring, .search-form select.search-field:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

select.form-control:focus::-ms-value, .search-form select.search-field:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.form-control-file,
.form-control-range {
  display: block;
  width: 100%;
}

.col-form-label {
  padding-top: calc(0.375rem + 1px);
  padding-bottom: calc(0.375rem + 1px);
  margin-bottom: 0;
  font-size: inherit;
  line-height: 1.5;
}

.col-form-label-lg {
  padding-top: calc(0.5rem + 1px);
  padding-bottom: calc(0.5rem + 1px);
  font-size: 3rem;
  line-height: 1.5;
}

.col-form-label-sm {
  padding-top: calc(0.25rem + 1px);
  padding-bottom: calc(0.25rem + 1px);
  font-size: 1.2rem;
  line-height: 1.5;
}

.form-control-plaintext {
  display: block;
  width: 100%;
  padding: 0.375rem 0;
  margin-bottom: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  color: #212529;
  background-color: transparent;
  border: solid transparent;
  border-width: 1px 0;
}

.form-control-plaintext.form-control-sm, .form-control-plaintext.form-control-lg {
  padding-right: 0;
  padding-left: 0;
}

.form-control-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.form-control-lg {
  height: calc(1.5em + 1rem + 2px);
  padding: 0.5rem 1rem;
  font-size: 3rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

select.form-control[size], .search-form select.search-field[size], select.form-control[multiple], .search-form select.search-field[multiple] {
  height: auto;
}

textarea.form-control,
.comment-form textarea, .search-form textarea.search-field {
  height: auto;
}

.form-group, .comment-form p, .search-form label {
  margin-bottom: 1rem;
}

.form-text {
  display: block;
  margin-top: 0.25rem;
}

.form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-right: -5px;
  margin-left: -5px;
}

.form-row > .col,
.form-row > [class*="col-"] {
  padding-right: 5px;
  padding-left: 5px;
}

.form-check {
  position: relative;
  display: block;
  padding-left: 1.25rem;
}

.form-check-input {
  position: absolute;
  margin-top: 0.3rem;
  margin-left: -1.25rem;
}

.form-check-input[disabled] ~ .form-check-label,
.form-check-input:disabled ~ .form-check-label {
  color: #6c757d;
}

.form-check-label {
  margin-bottom: 0;
}

.form-check-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 0;
  margin-right: 0.75rem;
}

.form-check-inline .form-check-input {
  position: static;
  margin-top: 0;
  margin-right: 0.3125rem;
  margin-left: 0;
}

.valid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #398f14;
}

.valid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(57, 143, 20, 0.9);
  border-radius: 0.3rem;
}

.form-row > .col > .valid-tooltip,
.form-row > [class*="col-"] > .valid-tooltip {
  left: 5px;
}

.was-validated :valid ~ .valid-feedback,
.was-validated :valid ~ .valid-tooltip,
.is-valid ~ .valid-feedback,
.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .form-control:valid, .was-validated .comment-form input:valid[type="text"], .comment-form .was-validated input:valid[type="text"],
.was-validated .comment-form input:valid[type="email"], .comment-form .was-validated input:valid[type="email"],
.was-validated .comment-form input:valid[type="url"], .comment-form .was-validated input:valid[type="url"],
.was-validated .comment-form textarea:valid, .comment-form .was-validated textarea:valid, .was-validated .search-form .search-field:valid, .search-form .was-validated .search-field:valid, .form-control.is-valid, .comment-form input.is-valid[type="text"],
.comment-form input.is-valid[type="email"],
.comment-form input.is-valid[type="url"],
.comment-form textarea.is-valid, .search-form .is-valid.search-field {
  border-color: #398f14;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23398f14' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:valid:focus, .was-validated .comment-form input:valid:focus[type="text"], .comment-form .was-validated input:valid:focus[type="text"],
.was-validated .comment-form input:valid:focus[type="email"], .comment-form .was-validated input:valid:focus[type="email"],
.was-validated .comment-form input:valid:focus[type="url"], .comment-form .was-validated input:valid:focus[type="url"],
.was-validated .comment-form textarea:valid:focus, .comment-form .was-validated textarea:valid:focus, .was-validated .search-form .search-field:valid:focus, .search-form .was-validated .search-field:valid:focus, .form-control.is-valid:focus, .comment-form input.is-valid:focus[type="text"],
.comment-form input.is-valid:focus[type="email"],
.comment-form input.is-valid:focus[type="url"],
.comment-form textarea.is-valid:focus, .search-form .is-valid.search-field:focus {
  border-color: #398f14;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
}

.was-validated select.form-control:valid, .was-validated .search-form select.search-field:valid, .search-form .was-validated select.search-field:valid, select.form-control.is-valid, .search-form select.is-valid.search-field {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:valid,
.was-validated .comment-form textarea:valid, .comment-form .was-validated textarea:valid, .was-validated .search-form textarea.search-field:valid, .search-form .was-validated textarea.search-field:valid, textarea.form-control.is-valid,
.comment-form textarea.is-valid, .search-form textarea.is-valid.search-field {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:valid, .custom-select.is-valid {
  border-color: #398f14;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23398f14' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:valid:focus, .custom-select.is-valid:focus {
  border-color: #398f14;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
}

.was-validated .form-check-input:valid ~ .form-check-label, .form-check-input.is-valid ~ .form-check-label {
  color: #398f14;
}

.was-validated .form-check-input:valid ~ .valid-feedback,
.was-validated .form-check-input:valid ~ .valid-tooltip, .form-check-input.is-valid ~ .valid-feedback,
.form-check-input.is-valid ~ .valid-tooltip {
  display: block;
}

.was-validated .custom-control-input:valid ~ .custom-control-label, .custom-control-input.is-valid ~ .custom-control-label {
  color: #398f14;
}

.was-validated .custom-control-input:valid ~ .custom-control-label::before, .custom-control-input.is-valid ~ .custom-control-label::before {
  border-color: #398f14;
}

.was-validated .custom-control-input:valid:checked ~ .custom-control-label::before, .custom-control-input.is-valid:checked ~ .custom-control-label::before {
  border-color: #4bbc1a;
  background-color: #4bbc1a;
}

.was-validated .custom-control-input:valid:focus ~ .custom-control-label::before, .custom-control-input.is-valid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
}

.was-validated .custom-control-input:valid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-valid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #398f14;
}

.was-validated .custom-file-input:valid ~ .custom-file-label, .custom-file-input.is-valid ~ .custom-file-label {
  border-color: #398f14;
}

.was-validated .custom-file-input:valid:focus ~ .custom-file-label, .custom-file-input.is-valid:focus ~ .custom-file-label {
  border-color: #398f14;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.25);
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #dc3545;
}

.invalid-tooltip {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 5;
  display: none;
  max-width: 100%;
  padding: 0.25rem 0.5rem;
  margin-top: .1rem;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #fff;
  background-color: rgba(220, 53, 69, 0.9);
  border-radius: 0.3rem;
}

.form-row > .col > .invalid-tooltip,
.form-row > [class*="col-"] > .invalid-tooltip {
  left: 5px;
}

.was-validated :invalid ~ .invalid-feedback,
.was-validated :invalid ~ .invalid-tooltip,
.is-invalid ~ .invalid-feedback,
.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .form-control:invalid, .was-validated .comment-form input:invalid[type="text"], .comment-form .was-validated input:invalid[type="text"],
.was-validated .comment-form input:invalid[type="email"], .comment-form .was-validated input:invalid[type="email"],
.was-validated .comment-form input:invalid[type="url"], .comment-form .was-validated input:invalid[type="url"],
.was-validated .comment-form textarea:invalid, .comment-form .was-validated textarea:invalid, .was-validated .search-form .search-field:invalid, .search-form .was-validated .search-field:invalid, .form-control.is-invalid, .comment-form input.is-invalid[type="text"],
.comment-form input.is-invalid[type="email"],
.comment-form input.is-invalid[type="url"],
.comment-form textarea.is-invalid, .search-form .is-invalid.search-field {
  border-color: #dc3545;
  padding-right: calc(1.5em + 0.75rem) !important;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.was-validated .form-control:invalid:focus, .was-validated .comment-form input:invalid:focus[type="text"], .comment-form .was-validated input:invalid:focus[type="text"],
.was-validated .comment-form input:invalid:focus[type="email"], .comment-form .was-validated input:invalid:focus[type="email"],
.was-validated .comment-form input:invalid:focus[type="url"], .comment-form .was-validated input:invalid:focus[type="url"],
.was-validated .comment-form textarea:invalid:focus, .comment-form .was-validated textarea:invalid:focus, .was-validated .search-form .search-field:invalid:focus, .search-form .was-validated .search-field:invalid:focus, .form-control.is-invalid:focus, .comment-form input.is-invalid:focus[type="text"],
.comment-form input.is-invalid:focus[type="email"],
.comment-form input.is-invalid:focus[type="url"],
.comment-form textarea.is-invalid:focus, .search-form .is-invalid.search-field:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated select.form-control:invalid, .was-validated .search-form select.search-field:invalid, .search-form .was-validated select.search-field:invalid, select.form-control.is-invalid, .search-form select.is-invalid.search-field {
  padding-right: 3rem !important;
  background-position: right 1.5rem center;
}

.was-validated textarea.form-control:invalid,
.was-validated .comment-form textarea:invalid, .comment-form .was-validated textarea:invalid, .was-validated .search-form textarea.search-field:invalid, .search-form .was-validated textarea.search-field:invalid, textarea.form-control.is-invalid,
.comment-form textarea.is-invalid, .search-form textarea.is-invalid.search-field {
  padding-right: calc(1.5em + 0.75rem);
  background-position: top calc(0.375em + 0.1875rem) right calc(0.375em + 0.1875rem);
}

.was-validated .custom-select:invalid, .custom-select.is-invalid {
  border-color: #dc3545;
  padding-right: calc(0.75em + 2.3125rem) !important;
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat, #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e") center right 1.75rem/calc(0.75em + 0.375rem) calc(0.75em + 0.375rem) no-repeat;
}

.was-validated .custom-select:invalid:focus, .custom-select.is-invalid:focus {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .form-check-input:invalid ~ .form-check-label, .form-check-input.is-invalid ~ .form-check-label {
  color: #dc3545;
}

.was-validated .form-check-input:invalid ~ .invalid-feedback,
.was-validated .form-check-input:invalid ~ .invalid-tooltip, .form-check-input.is-invalid ~ .invalid-feedback,
.form-check-input.is-invalid ~ .invalid-tooltip {
  display: block;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label, .custom-control-input.is-invalid ~ .custom-control-label {
  color: #dc3545;
}

.was-validated .custom-control-input:invalid ~ .custom-control-label::before, .custom-control-input.is-invalid ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-control-input:invalid:checked ~ .custom-control-label::before, .custom-control-input.is-invalid:checked ~ .custom-control-label::before {
  border-color: #e4606d;
  background-color: #e4606d;
}

.was-validated .custom-control-input:invalid:focus ~ .custom-control-label::before, .custom-control-input.is-invalid:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.was-validated .custom-control-input:invalid:focus:not(:checked) ~ .custom-control-label::before, .custom-control-input.is-invalid:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid ~ .custom-file-label, .custom-file-input.is-invalid ~ .custom-file-label {
  border-color: #dc3545;
}

.was-validated .custom-file-input:invalid:focus ~ .custom-file-label, .custom-file-input.is-invalid:focus ~ .custom-file-label {
  border-color: #dc3545;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}

.form-inline, .search-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form-inline .form-check, .search-form .form-check {
  width: 100%;
}

@media (min-width: 576px) {
  .form-inline label, .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 0;
  }
  .form-inline .form-group, .search-form .form-group, .form-inline .comment-form p, .comment-form .form-inline p, .search-form .comment-form p, .comment-form .search-form p, .form-inline .search-form label, .search-form .form-inline label, .search-form label {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  .form-inline .form-control, .search-form .form-control, .form-inline .comment-form input[type="text"], .comment-form .form-inline input[type="text"], .search-form .comment-form input[type="text"], .comment-form .search-form input[type="text"],
  .form-inline .comment-form input[type="email"], .comment-form .form-inline input[type="email"],
  .search-form .comment-form input[type="email"], .comment-form .search-form input[type="email"],
  .form-inline .comment-form input[type="url"], .comment-form .form-inline input[type="url"],
  .search-form .comment-form input[type="url"], .comment-form .search-form input[type="url"],
  .form-inline .comment-form textarea, .comment-form .form-inline textarea,
  .search-form .comment-form textarea, .comment-form .search-form textarea, .search-form .search-field {
    display: inline-block;
    width: auto;
    vertical-align: middle;
  }
  .form-inline .form-control-plaintext, .search-form .form-control-plaintext {
    display: inline-block;
  }
  .form-inline .input-group, .search-form .input-group,
  .form-inline .custom-select,
  .search-form .custom-select {
    width: auto;
  }
  .form-inline .form-check, .search-form .form-check {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: auto;
    padding-left: 0;
  }
  .form-inline .form-check-input, .search-form .form-check-input {
    position: relative;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-top: 0;
    margin-right: 0.25rem;
    margin-left: 0;
  }
  .form-inline .custom-control, .search-form .custom-control {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .form-inline .custom-control-label, .search-form .custom-control-label {
    margin-bottom: 0;
  }
}

.btn, .comment-form input[type="submit"], .search-form .search-submit {
  display: inline-block;
  font-weight: 400;
  color: #212529;
  text-align: center;
  vertical-align: middle;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  background-color: transparent;
  border: 1px solid transparent;
  padding: 0.375rem 0.75rem;
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: 0.3rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .btn, .comment-form input[type="submit"], .search-form .search-submit {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.btn:hover, .comment-form input:hover[type="submit"], .search-form .search-submit:hover {
  color: #212529;
  text-decoration: none;
}

.btn:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn.focus, .comment-form input.focus[type="submit"], .search-form .focus.search-submit {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .comment-form input.disabled[type="submit"], .search-form .disabled.search-submit, .btn:disabled, .comment-form input:disabled[type="submit"], .search-form .search-submit:disabled {
  opacity: 0.65;
}

.btn:not(:disabled):not(.disabled), .comment-form input:not(:disabled):not(.disabled)[type="submit"], .search-form .search-submit:not(:disabled):not(.disabled) {
  cursor: pointer;
}

a.btn.disabled, .search-form a.disabled.search-submit,
fieldset:disabled a.btn,
fieldset:disabled .search-form a.search-submit,
.search-form fieldset:disabled a.search-submit {
  pointer-events: none;
}

.btn-primary {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:hover {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
}

.btn-primary:focus, .btn-primary.focus {
  color: #fff;
  background-color: #0069d9;
  border-color: #0062cc;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #0062cc;
  border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(38, 143, 255, 0.5);
}

.btn-secondary, .comment-form input[type="submit"], .search-form .search-submit {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:hover, .comment-form input:hover[type="submit"], .search-form .search-submit:hover {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
}

.btn-secondary:focus, .comment-form input:focus[type="submit"], .search-form .search-submit:focus, .btn-secondary.focus, .comment-form input.focus[type="submit"], .search-form .focus.search-submit {
  color: #fff;
  background-color: #5a6268;
  border-color: #545b62;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-secondary.disabled, .comment-form input.disabled[type="submit"], .search-form .disabled.search-submit, .btn-secondary:disabled, .comment-form input:disabled[type="submit"], .search-form .search-submit:disabled {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-secondary:not(:disabled):not(.disabled):active, .comment-form input:not(:disabled):not(.disabled):active[type="submit"], .search-form .search-submit:not(:disabled):not(.disabled):active, .btn-secondary:not(:disabled):not(.disabled).active, .comment-form input:not(:disabled):not(.disabled).active[type="submit"], .search-form .search-submit:not(:disabled):not(.disabled).active,
.show > .btn-secondary.dropdown-toggle,
.comment-form .show > input.dropdown-toggle[type="submit"],
.search-form .show > .dropdown-toggle.search-submit {
  color: #fff;
  background-color: #545b62;
  border-color: #4e555b;
}

.btn-secondary:not(:disabled):not(.disabled):active:focus, .comment-form input:not(:disabled):not(.disabled):active:focus[type="submit"], .search-form .search-submit:not(:disabled):not(.disabled):active:focus, .btn-secondary:not(:disabled):not(.disabled).active:focus, .comment-form input:not(:disabled):not(.disabled).active:focus[type="submit"], .search-form .search-submit:not(:disabled):not(.disabled).active:focus,
.show > .btn-secondary.dropdown-toggle:focus,
.comment-form .show > input.dropdown-toggle:focus[type="submit"],
.search-form .show > .dropdown-toggle.search-submit:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(130, 138, 145, 0.5);
}

.btn-success {
  color: #fff;
  background-color: #398f14;
  border-color: #398f14;
}

.btn-success:hover {
  color: #fff;
  background-color: #2c6d0f;
  border-color: #27620e;
}

.btn-success:focus, .btn-success.focus {
  color: #fff;
  background-color: #2c6d0f;
  border-color: #27620e;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 160, 55, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(87, 160, 55, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
  color: #fff;
  background-color: #398f14;
  border-color: #398f14;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
  color: #fff;
  background-color: #27620e;
  border-color: #23570c;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(87, 160, 55, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(87, 160, 55, 0.5);
}

.btn-info {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:hover {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
}

.btn-info:focus, .btn-info.focus {
  color: #fff;
  background-color: #138496;
  border-color: #117a8b;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-info.disabled, .btn-info:disabled {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-info:not(:disabled):not(.disabled):active, .btn-info:not(:disabled):not(.disabled).active,
.show > .btn-info.dropdown-toggle {
  color: #fff;
  background-color: #117a8b;
  border-color: #10707f;
}

.btn-info:not(:disabled):not(.disabled):active:focus, .btn-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(58, 176, 195, 0.5);
}

.btn-warning {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:hover {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
}

.btn-warning:focus, .btn-warning.focus {
  color: #212529;
  background-color: #e0a800;
  border-color: #d39e00;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-warning.disabled, .btn-warning:disabled {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-warning:not(:disabled):not(.disabled):active, .btn-warning:not(:disabled):not(.disabled).active,
.show > .btn-warning.dropdown-toggle {
  color: #212529;
  background-color: #d39e00;
  border-color: #c69500;
}

.btn-warning:not(:disabled):not(.disabled):active:focus, .btn-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(222, 170, 12, 0.5);
}

.btn-danger {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:hover {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
}

.btn-danger:focus, .btn-danger.focus {
  color: #fff;
  background-color: #c82333;
  border-color: #bd2130;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-danger.disabled, .btn-danger:disabled {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-danger:not(:disabled):not(.disabled):active, .btn-danger:not(:disabled):not(.disabled).active,
.show > .btn-danger.dropdown-toggle {
  color: #fff;
  background-color: #bd2130;
  border-color: #b21f2d;
}

.btn-danger:not(:disabled):not(.disabled):active:focus, .btn-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(225, 83, 97, 0.5);
}

.btn-light {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:hover {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
}

.btn-light:focus, .btn-light.focus {
  color: #212529;
  background-color: #e2e6ea;
  border-color: #dae0e5;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-light.disabled, .btn-light:disabled {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-light:not(:disabled):not(.disabled):active, .btn-light:not(:disabled):not(.disabled).active,
.show > .btn-light.dropdown-toggle {
  color: #212529;
  background-color: #dae0e5;
  border-color: #d3d9df;
}

.btn-light:not(:disabled):not(.disabled):active:focus, .btn-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(216, 217, 219, 0.5);
}

.btn-dark {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:hover {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
}

.btn-dark:focus, .btn-dark.focus {
  color: #fff;
  background-color: #23272b;
  border-color: #1d2124;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-dark.disabled, .btn-dark:disabled {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-dark:not(:disabled):not(.disabled):active, .btn-dark:not(:disabled):not(.disabled).active,
.show > .btn-dark.dropdown-toggle {
  color: #fff;
  background-color: #1d2124;
  border-color: #171a1d;
}

.btn-dark:not(:disabled):not(.disabled):active:focus, .btn-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(82, 88, 93, 0.5);
}

.btn-outline-primary {
  color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:hover {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:focus, .btn-outline-primary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #007bff;
  background-color: transparent;
}

.btn-outline-primary:not(:disabled):not(.disabled):active, .btn-outline-primary:not(:disabled):not(.disabled).active,
.show > .btn-outline-primary.dropdown-toggle {
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.btn-outline-primary:not(:disabled):not(.disabled):active:focus, .btn-outline-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-primary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-outline-secondary {
  color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:hover {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:focus, .btn-outline-secondary.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-secondary.disabled, .btn-outline-secondary:disabled {
  color: #6c757d;
  background-color: transparent;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active, .btn-outline-secondary:not(:disabled):not(.disabled).active,
.show > .btn-outline-secondary.dropdown-toggle {
  color: #fff;
  background-color: #6c757d;
  border-color: #6c757d;
}

.btn-outline-secondary:not(:disabled):not(.disabled):active:focus, .btn-outline-secondary:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-secondary.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.btn-outline-success {
  color: #398f14;
  border-color: #398f14;
}

.btn-outline-success:hover {
  color: #fff;
  background-color: #398f14;
  border-color: #398f14;
}

.btn-outline-success:focus, .btn-outline-success.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.5);
}

.btn-outline-success.disabled, .btn-outline-success:disabled {
  color: #398f14;
  background-color: transparent;
}

.btn-outline-success:not(:disabled):not(.disabled):active, .btn-outline-success:not(:disabled):not(.disabled).active,
.show > .btn-outline-success.dropdown-toggle {
  color: #fff;
  background-color: #398f14;
  border-color: #398f14;
}

.btn-outline-success:not(:disabled):not(.disabled):active:focus, .btn-outline-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-success.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.5);
}

.btn-outline-info {
  color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:hover {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:focus, .btn-outline-info.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-info.disabled, .btn-outline-info:disabled {
  color: #17a2b8;
  background-color: transparent;
}

.btn-outline-info:not(:disabled):not(.disabled):active, .btn-outline-info:not(:disabled):not(.disabled).active,
.show > .btn-outline-info.dropdown-toggle {
  color: #fff;
  background-color: #17a2b8;
  border-color: #17a2b8;
}

.btn-outline-info:not(:disabled):not(.disabled):active:focus, .btn-outline-info:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-info.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.btn-outline-warning {
  color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:hover {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:focus, .btn-outline-warning.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-warning.disabled, .btn-outline-warning:disabled {
  color: #ffc107;
  background-color: transparent;
}

.btn-outline-warning:not(:disabled):not(.disabled):active, .btn-outline-warning:not(:disabled):not(.disabled).active,
.show > .btn-outline-warning.dropdown-toggle {
  color: #212529;
  background-color: #ffc107;
  border-color: #ffc107;
}

.btn-outline-warning:not(:disabled):not(.disabled):active:focus, .btn-outline-warning:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-warning.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.btn-outline-danger {
  color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:hover {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:focus, .btn-outline-danger.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-danger.disabled, .btn-outline-danger:disabled {
  color: #dc3545;
  background-color: transparent;
}

.btn-outline-danger:not(:disabled):not(.disabled):active, .btn-outline-danger:not(:disabled):not(.disabled).active,
.show > .btn-outline-danger.dropdown-toggle {
  color: #fff;
  background-color: #dc3545;
  border-color: #dc3545;
}

.btn-outline-danger:not(:disabled):not(.disabled):active:focus, .btn-outline-danger:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-danger.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.btn-outline-light {
  color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:hover {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:focus, .btn-outline-light.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-light.disabled, .btn-outline-light:disabled {
  color: #f8f9fa;
  background-color: transparent;
}

.btn-outline-light:not(:disabled):not(.disabled):active, .btn-outline-light:not(:disabled):not(.disabled).active,
.show > .btn-outline-light.dropdown-toggle {
  color: #212529;
  background-color: #f8f9fa;
  border-color: #f8f9fa;
}

.btn-outline-light:not(:disabled):not(.disabled):active:focus, .btn-outline-light:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-light.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.btn-outline-dark {
  color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:hover {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:focus, .btn-outline-dark.focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-outline-dark.disabled, .btn-outline-dark:disabled {
  color: #343a40;
  background-color: transparent;
}

.btn-outline-dark:not(:disabled):not(.disabled):active, .btn-outline-dark:not(:disabled):not(.disabled).active,
.show > .btn-outline-dark.dropdown-toggle {
  color: #fff;
  background-color: #343a40;
  border-color: #343a40;
}

.btn-outline-dark:not(:disabled):not(.disabled):active:focus, .btn-outline-dark:not(:disabled):not(.disabled).active:focus,
.show > .btn-outline-dark.dropdown-toggle:focus {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.btn-link {
  font-weight: 400;
  color: #007bff;
  text-decoration: none;
}

.btn-link:hover {
  color: #0056b3;
  text-decoration: underline;
}

.btn-link:focus, .btn-link.focus {
  text-decoration: underline;
}

.btn-link:disabled, .btn-link.disabled {
  color: #6c757d;
  pointer-events: none;
}

.btn-lg, .btn-group-lg > .btn, .comment-form .btn-group-lg > input[type="submit"], .search-form .btn-group-lg > .search-submit {
  padding: 0.5rem 1rem;
  font-size: 3rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.btn-sm, .btn-group-sm > .btn, .comment-form .btn-group-sm > input[type="submit"], .search-form .btn-group-sm > .search-submit {
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn-block + .btn-block {
  margin-top: 0.5rem;
}

input[type="submit"].btn-block,
input[type="reset"].btn-block,
input[type="button"].btn-block {
  width: 100%;
}

.fade {
  -webkit-transition: opacity 0.15s linear;
  -o-transition: opacity 0.15s linear;
  transition: opacity 0.15s linear;
}

@media (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.fade:not(.show) {
  opacity: 0;
}

.collapse:not(.show) {
  display: none;
}

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.35s ease;
  -o-transition: height 0.35s ease;
  transition: height 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.collapsing.width {
  width: 0;
  height: auto;
  -webkit-transition: width 0.35s ease;
  -o-transition: width 0.35s ease;
  transition: width 0.35s ease;
}

@media (prefers-reduced-motion: reduce) {
  .collapsing.width {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.dropup,
.dropright,
.dropdown,
.dropleft {
  position: relative;
}

.dropdown-toggle {
  white-space: nowrap;
}

.dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-bottom: 0;
  border-left: 0.3em solid transparent;
}

.dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 1000;
  display: none;
  float: left;
  min-width: 10rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 1.6rem;
  color: #212529;
  text-align: left;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-radius: 0.3rem;
}

.dropdown-menu-left {
  right: auto;
  left: 0;
}

.dropdown-menu-right {
  right: 0;
  left: auto;
}

@media (min-width: 576px) {
  .dropdown-menu-sm-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-sm-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 768px) {
  .dropdown-menu-md-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-md-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1024px) {
  .dropdown-menu-lg-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-lg-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1200px) {
  .dropdown-menu-xl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xl-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1400px) {
  .dropdown-menu-xxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxl-right {
    right: 0;
    left: auto;
  }
}

@media (min-width: 1800px) {
  .dropdown-menu-xxxl-left {
    right: auto;
    left: 0;
  }
  .dropdown-menu-xxxl-right {
    right: 0;
    left: auto;
  }
}

.dropup .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: 0.125rem;
}

.dropup .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0;
  border-right: 0.3em solid transparent;
  border-bottom: 0.3em solid;
  border-left: 0.3em solid transparent;
}

.dropup .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-menu {
  top: 0;
  right: auto;
  left: 100%;
  margin-top: 0;
  margin-left: 0.125rem;
}

.dropright .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0;
  border-bottom: 0.3em solid transparent;
  border-left: 0.3em solid;
}

.dropright .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropright .dropdown-toggle::after {
  vertical-align: 0;
}

.dropleft .dropdown-menu {
  top: 0;
  right: 100%;
  left: auto;
  margin-top: 0;
  margin-right: 0.125rem;
}

.dropleft .dropdown-toggle::after {
  display: inline-block;
  margin-left: 0.255em;
  vertical-align: 0.255em;
  content: "";
}

.dropleft .dropdown-toggle::after {
  display: none;
}

.dropleft .dropdown-toggle::before {
  display: inline-block;
  margin-right: 0.255em;
  vertical-align: 0.255em;
  content: "";
  border-top: 0.3em solid transparent;
  border-right: 0.3em solid;
  border-bottom: 0.3em solid transparent;
}

.dropleft .dropdown-toggle:empty::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle::before {
  vertical-align: 0;
}

.dropdown-menu[x-placement^="top"], .dropdown-menu[x-placement^="right"], .dropdown-menu[x-placement^="bottom"], .dropdown-menu[x-placement^="left"] {
  right: auto;
  bottom: auto;
}

.dropdown-divider {
  height: 0;
  margin: 0.5rem 0;
  overflow: hidden;
  border-top: 1px solid #e9ecef;
}

.dropdown-item {
  display: block;
  width: 100%;
  padding: 0.25rem 1.5rem;
  clear: both;
  font-weight: 400;
  color: #212529;
  text-align: inherit;
  white-space: nowrap;
  background-color: transparent;
  border: 0;
}

.dropdown-item:hover, .dropdown-item:focus {
  color: #16181b;
  text-decoration: none;
  background-color: #e9ecef;
}

.dropdown-item.active, .dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #007bff;
}

.dropdown-item.disabled, .dropdown-item:disabled {
  color: #adb5bd;
  pointer-events: none;
  background-color: transparent;
}

.dropdown-menu.show {
  display: block;
}

.dropdown-header {
  display: block;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0;
  font-size: 1.2rem;
  color: #6c757d;
  white-space: nowrap;
}

.dropdown-item-text {
  display: block;
  padding: 0.25rem 1.5rem;
  color: #212529;
}

.btn-group,
.btn-group-vertical {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  vertical-align: middle;
}

.btn-group > .btn, .comment-form .btn-group > input[type="submit"], .search-form .btn-group > .search-submit,
.btn-group-vertical > .btn,
.comment-form .btn-group-vertical > input[type="submit"],
.search-form .btn-group-vertical > .search-submit {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
}

.btn-group > .btn:hover, .comment-form .btn-group > input:hover[type="submit"], .search-form .btn-group > .search-submit:hover,
.btn-group-vertical > .btn:hover,
.comment-form .btn-group-vertical > input:hover[type="submit"],
.search-form .btn-group-vertical > .search-submit:hover {
  z-index: 1;
}

.btn-group > .btn:focus, .comment-form .btn-group > input:focus[type="submit"], .search-form .btn-group > .search-submit:focus, .btn-group > .btn:active, .comment-form .btn-group > input:active[type="submit"], .search-form .btn-group > .search-submit:active, .btn-group > .btn.active, .comment-form .btn-group > input.active[type="submit"], .search-form .btn-group > .active.search-submit,
.btn-group-vertical > .btn:focus,
.comment-form .btn-group-vertical > input:focus[type="submit"],
.search-form .btn-group-vertical > .search-submit:focus,
.btn-group-vertical > .btn:active,
.comment-form .btn-group-vertical > input:active[type="submit"],
.search-form .btn-group-vertical > .search-submit:active,
.btn-group-vertical > .btn.active,
.comment-form .btn-group-vertical > input.active[type="submit"],
.search-form .btn-group-vertical > .active.search-submit {
  z-index: 1;
}

.btn-toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.btn-toolbar .input-group {
  width: auto;
}

.btn-group > .btn:not(:first-child), .comment-form .btn-group > input:not(:first-child)[type="submit"], .search-form .btn-group > .search-submit:not(:first-child),
.btn-group > .btn-group:not(:first-child) {
  margin-left: -1px;
}

.btn-group > .btn:not(:last-child):not(.dropdown-toggle), .comment-form .btn-group > input:not(:last-child):not(.dropdown-toggle)[type="submit"], .search-form .btn-group > .search-submit:not(:last-child):not(.dropdown-toggle),
.btn-group > .btn-group:not(:last-child) > .btn,
.comment-form .btn-group > .btn-group:not(:last-child) > input[type="submit"],
.search-form .btn-group > .btn-group:not(:last-child) > .search-submit {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.btn-group > .btn:not(:first-child), .comment-form .btn-group > input:not(:first-child)[type="submit"], .search-form .btn-group > .search-submit:not(:first-child),
.btn-group > .btn-group:not(:first-child) > .btn,
.comment-form .btn-group > .btn-group:not(:first-child) > input[type="submit"],
.search-form .btn-group > .btn-group:not(:first-child) > .search-submit {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.dropdown-toggle-split {
  padding-right: 0.5625rem;
  padding-left: 0.5625rem;
}

.dropdown-toggle-split::after,
.dropup .dropdown-toggle-split::after,
.dropright .dropdown-toggle-split::after {
  margin-left: 0;
}

.dropleft .dropdown-toggle-split::before {
  margin-right: 0;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split, .comment-form .btn-group-sm > input[type="submit"] + .dropdown-toggle-split, .search-form .btn-group-sm > .search-submit + .dropdown-toggle-split {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
}

.btn-lg + .dropdown-toggle-split, .btn-group-lg > .btn + .dropdown-toggle-split, .comment-form .btn-group-lg > input[type="submit"] + .dropdown-toggle-split, .search-form .btn-group-lg > .search-submit + .dropdown-toggle-split {
  padding-right: 0.75rem;
  padding-left: 0.75rem;
}

.btn-group-vertical {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}


.btn-group-vertical > .btn,
.comment-form .btn-group-vertical > input[type="submit"],
.search-form .btn-group-vertical > .search-submit,
.btn-group-vertical > .btn-group {
  width: 100%;
}

.btn-group-vertical > .btn:not(:first-child), .comment-form .btn-group-vertical > input:not(:first-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) {
  margin-top: -1px;
}

.btn-group-vertical > .btn:not(:last-child):not(.dropdown-toggle), .comment-form .btn-group-vertical > input:not(:last-child):not(.dropdown-toggle)[type="submit"], .search-form .btn-group-vertical > .search-submit:not(:last-child):not(.dropdown-toggle),
.btn-group-vertical > .btn-group:not(:last-child) > .btn,
.comment-form .btn-group-vertical > .btn-group:not(:last-child) > input[type="submit"],
.search-form .btn-group-vertical > .btn-group:not(:last-child) > .search-submit {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.btn-group-vertical > .btn:not(:first-child), .comment-form .btn-group-vertical > input:not(:first-child)[type="submit"], .search-form .btn-group-vertical > .search-submit:not(:first-child),
.btn-group-vertical > .btn-group:not(:first-child) > .btn,
.comment-form .btn-group-vertical > .btn-group:not(:first-child) > input[type="submit"],
.search-form .btn-group-vertical > .btn-group:not(:first-child) > .search-submit {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.btn-group-toggle > .btn, .comment-form .btn-group-toggle > input[type="submit"], .search-form .btn-group-toggle > .search-submit,
.btn-group-toggle > .btn-group > .btn,
.comment-form .btn-group-toggle > .btn-group > input[type="submit"],
.search-form .btn-group-toggle > .btn-group > .search-submit {
  margin-bottom: 0;
}

.btn-group-toggle > .btn input[type="radio"], .comment-form .btn-group-toggle > input[type="submit"] input[type="radio"], .search-form .btn-group-toggle > .search-submit input[type="radio"],
.btn-group-toggle > .btn input[type="checkbox"],
.comment-form .btn-group-toggle > input[type="submit"] input[type="checkbox"],
.search-form .btn-group-toggle > .search-submit input[type="checkbox"],
.btn-group-toggle > .btn-group > .btn input[type="radio"],
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] input[type="radio"],
.search-form .btn-group-toggle > .btn-group > .search-submit input[type="radio"],
.btn-group-toggle > .btn-group > .btn input[type="checkbox"],
.comment-form .btn-group-toggle > .btn-group > input[type="submit"] input[type="checkbox"],
.search-form .btn-group-toggle > .btn-group > .search-submit input[type="checkbox"] {
  position: absolute;
  clip: rect(0, 0, 0, 0);
  pointer-events: none;
}

.input-group {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}

.input-group > .form-control, .comment-form .input-group > input[type="text"],
.comment-form .input-group > input[type="email"],
.comment-form .input-group > input[type="url"],
.comment-form .input-group > textarea, .search-form .input-group > .search-field,
.input-group > .form-control-plaintext,
.input-group > .custom-select,
.input-group > .custom-file {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  width: 1%;
  min-width: 0;
  margin-bottom: 0;
}

.input-group > .form-control + .form-control, .comment-form .input-group > input[type="text"] + .form-control, .comment-form .input-group > input[type="email"] + .form-control, .comment-form .input-group > input[type="url"] + .form-control, .comment-form .input-group > textarea + .form-control, .search-form .input-group > .search-field + .form-control, .comment-form .input-group > .form-control + input[type="text"], .comment-form .input-group > input[type="text"] + input[type="text"], .comment-form .input-group > input[type="email"] + input[type="text"], .comment-form .input-group > input[type="url"] + input[type="text"], .comment-form .input-group > textarea + input[type="text"], .search-form .comment-form .input-group > .search-field + input[type="text"], .comment-form .search-form .input-group > .search-field + input[type="text"],
.comment-form .input-group > .form-control + input[type="email"],
.comment-form .input-group > input[type="text"] + input[type="email"],
.comment-form .input-group > input[type="email"] + input[type="email"],
.comment-form .input-group > input[type="url"] + input[type="email"],
.comment-form .input-group > textarea + input[type="email"],
.search-form .comment-form .input-group > .search-field + input[type="email"], .comment-form .search-form .input-group > .search-field + input[type="email"],
.comment-form .input-group > .form-control + input[type="url"],
.comment-form .input-group > input[type="text"] + input[type="url"],
.comment-form .input-group > input[type="email"] + input[type="url"],
.comment-form .input-group > input[type="url"] + input[type="url"],
.comment-form .input-group > textarea + input[type="url"],
.search-form .comment-form .input-group > .search-field + input[type="url"], .comment-form .search-form .input-group > .search-field + input[type="url"],
.comment-form .input-group > .form-control + textarea,
.comment-form .input-group > input[type="text"] + textarea,
.comment-form .input-group > input[type="email"] + textarea,
.comment-form .input-group > input[type="url"] + textarea,
.comment-form .input-group > textarea + textarea,
.search-form .comment-form .input-group > .search-field + textarea, .comment-form .search-form .input-group > .search-field + textarea, .search-form .input-group > .form-control + .search-field, .comment-form .search-form .input-group > input[type="text"] + .search-field, .search-form .comment-form .input-group > input[type="text"] + .search-field, .comment-form .search-form .input-group > input[type="email"] + .search-field, .search-form .comment-form .input-group > input[type="email"] + .search-field, .comment-form .search-form .input-group > input[type="url"] + .search-field, .search-form .comment-form .input-group > input[type="url"] + .search-field, .comment-form .search-form .input-group > textarea + .search-field, .search-form .comment-form .input-group > textarea + .search-field, .search-form .input-group > .search-field + .search-field,
.input-group > .form-control + .custom-select,
.comment-form .input-group > input[type="text"] + .custom-select,
.comment-form .input-group > input[type="email"] + .custom-select,
.comment-form .input-group > input[type="url"] + .custom-select,
.comment-form .input-group > textarea + .custom-select,
.search-form .input-group > .search-field + .custom-select,
.input-group > .form-control + .custom-file,
.comment-form .input-group > input[type="text"] + .custom-file,
.comment-form .input-group > input[type="email"] + .custom-file,
.comment-form .input-group > input[type="url"] + .custom-file,
.comment-form .input-group > textarea + .custom-file,
.search-form .input-group > .search-field + .custom-file,
.input-group > .form-control-plaintext + .form-control,
.comment-form .input-group > .form-control-plaintext + input[type="text"],
.comment-form .input-group > .form-control-plaintext + input[type="email"],
.comment-form .input-group > .form-control-plaintext + input[type="url"],
.comment-form .input-group > .form-control-plaintext + textarea,
.search-form .input-group > .form-control-plaintext + .search-field,
.input-group > .form-control-plaintext + .custom-select,
.input-group > .form-control-plaintext + .custom-file,
.input-group > .custom-select + .form-control,
.comment-form .input-group > .custom-select + input[type="text"],
.comment-form .input-group > .custom-select + input[type="email"],
.comment-form .input-group > .custom-select + input[type="url"],
.comment-form .input-group > .custom-select + textarea,
.search-form .input-group > .custom-select + .search-field,
.input-group > .custom-select + .custom-select,
.input-group > .custom-select + .custom-file,
.input-group > .custom-file + .form-control,
.comment-form .input-group > .custom-file + input[type="text"],
.comment-form .input-group > .custom-file + input[type="email"],
.comment-form .input-group > .custom-file + input[type="url"],
.comment-form .input-group > .custom-file + textarea,
.search-form .input-group > .custom-file + .search-field,
.input-group > .custom-file + .custom-select,
.input-group > .custom-file + .custom-file {
  margin-left: -1px;
}

.input-group > .form-control:focus, .comment-form .input-group > input:focus[type="text"],
.comment-form .input-group > input:focus[type="email"],
.comment-form .input-group > input:focus[type="url"],
.comment-form .input-group > textarea:focus, .search-form .input-group > .search-field:focus,
.input-group > .custom-select:focus,
.input-group > .custom-file .custom-file-input:focus ~ .custom-file-label {
  z-index: 3;
}

.input-group > .custom-file .custom-file-input:focus {
  z-index: 4;
}

.input-group > .form-control:not(:first-child), .comment-form .input-group > input:not(:first-child)[type="text"],
.comment-form .input-group > input:not(:first-child)[type="email"],
.comment-form .input-group > input:not(:first-child)[type="url"],
.comment-form .input-group > textarea:not(:first-child), .search-form .input-group > .search-field:not(:first-child),
.input-group > .custom-select:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group > .custom-file {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.input-group > .custom-file:not(:last-child) .custom-file-label,
.input-group > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .custom-file:not(:first-child) .custom-file-label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.input-group:not(.has-validation) > .form-control:not(:last-child), .comment-form .input-group:not(.has-validation) > input:not(:last-child)[type="text"],
.comment-form .input-group:not(.has-validation) > input:not(:last-child)[type="email"],
.comment-form .input-group:not(.has-validation) > input:not(:last-child)[type="url"],
.comment-form .input-group:not(.has-validation) > textarea:not(:last-child), .search-form .input-group:not(.has-validation) > .search-field:not(:last-child),
.input-group:not(.has-validation) > .custom-select:not(:last-child),
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label,
.input-group:not(.has-validation) > .custom-file:not(:last-child) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group.has-validation > .form-control:nth-last-child(n + 3), .comment-form .input-group.has-validation > input:nth-last-child(n + 3)[type="text"],
.comment-form .input-group.has-validation > input:nth-last-child(n + 3)[type="email"],
.comment-form .input-group.has-validation > input:nth-last-child(n + 3)[type="url"],
.comment-form .input-group.has-validation > textarea:nth-last-child(n + 3), .search-form .input-group.has-validation > .search-field:nth-last-child(n + 3),
.input-group.has-validation > .custom-select:nth-last-child(n + 3),
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label,
.input-group.has-validation > .custom-file:nth-last-child(n + 3) .custom-file-label::after {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group-prepend,
.input-group-append {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.input-group-prepend .btn, .input-group-prepend .comment-form input[type="submit"], .comment-form .input-group-prepend input[type="submit"], .input-group-prepend .search-form .search-submit, .search-form .input-group-prepend .search-submit,
.input-group-append .btn,
.input-group-append .comment-form input[type="submit"],
.comment-form .input-group-append input[type="submit"],
.input-group-append .search-form .search-submit,
.search-form .input-group-append .search-submit {
  position: relative;
  z-index: 2;
}

.input-group-prepend .btn:focus, .input-group-prepend .comment-form input:focus[type="submit"], .comment-form .input-group-prepend input:focus[type="submit"], .input-group-prepend .search-form .search-submit:focus, .search-form .input-group-prepend .search-submit:focus,
.input-group-append .btn:focus,
.input-group-append .comment-form input:focus[type="submit"],
.comment-form .input-group-append input:focus[type="submit"],
.input-group-append .search-form .search-submit:focus,
.search-form .input-group-append .search-submit:focus {
  z-index: 3;
}

.input-group-prepend .btn + .btn, .input-group-prepend .comment-form input[type="submit"] + .btn, .comment-form .input-group-prepend input[type="submit"] + .btn, .input-group-prepend .search-form .search-submit + .btn, .search-form .input-group-prepend .search-submit + .btn, .input-group-prepend .comment-form .btn + input[type="submit"], .comment-form .input-group-prepend .btn + input[type="submit"], .input-group-prepend .comment-form input[type="submit"] + input[type="submit"], .comment-form .input-group-prepend input[type="submit"] + input[type="submit"], .input-group-prepend .search-form .comment-form .search-submit + input[type="submit"], .comment-form .input-group-prepend .search-form .search-submit + input[type="submit"], .search-form .input-group-prepend .comment-form .search-submit + input[type="submit"], .comment-form .search-form .input-group-prepend .search-submit + input[type="submit"], .input-group-prepend .search-form .btn + .search-submit, .search-form .input-group-prepend .btn + .search-submit, .input-group-prepend .comment-form .search-form input[type="submit"] + .search-submit, .search-form .input-group-prepend .comment-form input[type="submit"] + .search-submit, .comment-form .input-group-prepend .search-form input[type="submit"] + .search-submit, .search-form .comment-form .input-group-prepend input[type="submit"] + .search-submit, .input-group-prepend .search-form .search-submit + .search-submit, .search-form .input-group-prepend .search-submit + .search-submit,
.input-group-prepend .btn + .input-group-text,
.input-group-prepend .comment-form input[type="submit"] + .input-group-text,
.comment-form .input-group-prepend input[type="submit"] + .input-group-text,
.input-group-prepend .search-form .search-submit + .input-group-text,
.search-form .input-group-prepend .search-submit + .input-group-text,
.input-group-prepend .input-group-text + .input-group-text,
.input-group-prepend .input-group-text + .btn,
.input-group-prepend .comment-form .input-group-text + input[type="submit"],
.comment-form .input-group-prepend .input-group-text + input[type="submit"],
.input-group-prepend .search-form .input-group-text + .search-submit,
.search-form .input-group-prepend .input-group-text + .search-submit,
.input-group-append .btn + .btn,
.input-group-append .comment-form input[type="submit"] + .btn,
.comment-form .input-group-append input[type="submit"] + .btn,
.input-group-append .search-form .search-submit + .btn,
.search-form .input-group-append .search-submit + .btn,
.input-group-append .comment-form .btn + input[type="submit"],
.comment-form .input-group-append .btn + input[type="submit"],
.input-group-append .comment-form input[type="submit"] + input[type="submit"],
.comment-form .input-group-append input[type="submit"] + input[type="submit"],
.input-group-append .search-form .comment-form .search-submit + input[type="submit"],
.comment-form .input-group-append .search-form .search-submit + input[type="submit"],
.search-form .input-group-append .comment-form .search-submit + input[type="submit"],
.comment-form .search-form .input-group-append .search-submit + input[type="submit"],
.input-group-append .search-form .btn + .search-submit,
.search-form .input-group-append .btn + .search-submit,
.input-group-append .comment-form .search-form input[type="submit"] + .search-submit,
.search-form .input-group-append .comment-form input[type="submit"] + .search-submit,
.comment-form .input-group-append .search-form input[type="submit"] + .search-submit,
.search-form .comment-form .input-group-append input[type="submit"] + .search-submit,
.input-group-append .search-form .search-submit + .search-submit,
.search-form .input-group-append .search-submit + .search-submit,
.input-group-append .btn + .input-group-text,
.input-group-append .comment-form input[type="submit"] + .input-group-text,
.comment-form .input-group-append input[type="submit"] + .input-group-text,
.input-group-append .search-form .search-submit + .input-group-text,
.search-form .input-group-append .search-submit + .input-group-text,
.input-group-append .input-group-text + .input-group-text,
.input-group-append .input-group-text + .btn,
.input-group-append .comment-form .input-group-text + input[type="submit"],
.comment-form .input-group-append .input-group-text + input[type="submit"],
.input-group-append .search-form .input-group-text + .search-submit,
.search-form .input-group-append .input-group-text + .search-submit {
  margin-left: -1px;
}

.input-group-prepend {
  margin-right: -1px;
}

.input-group-append {
  margin-left: -1px;
}

.input-group-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.375rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  text-align: center;
  white-space: nowrap;
  background-color: #e9ecef;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
}

.input-group-text input[type="radio"],
.input-group-text input[type="checkbox"] {
  margin-top: 0;
}

.input-group-lg > .form-control:not(textarea), .comment-form .input-group-lg > input:not(textarea)[type="text"],
.comment-form .input-group-lg > input:not(textarea)[type="email"],
.comment-form .input-group-lg > input:not(textarea)[type="url"],
.comment-form .input-group-lg > textarea:not(textarea), .search-form .input-group-lg > .search-field:not(textarea),
.input-group-lg > .custom-select {
  height: calc(1.5em + 1rem + 2px);
}

.input-group-lg > .form-control, .comment-form .input-group-lg > input[type="text"],
.comment-form .input-group-lg > input[type="email"],
.comment-form .input-group-lg > input[type="url"],
.comment-form .input-group-lg > textarea, .search-form .input-group-lg > .search-field,
.input-group-lg > .custom-select,
.input-group-lg > .input-group-prepend > .input-group-text,
.input-group-lg > .input-group-append > .input-group-text,
.input-group-lg > .input-group-prepend > .btn,
.comment-form .input-group-lg > .input-group-prepend > input[type="submit"],
.search-form .input-group-lg > .input-group-prepend > .search-submit,
.input-group-lg > .input-group-append > .btn,
.comment-form .input-group-lg > .input-group-append > input[type="submit"],
.search-form .input-group-lg > .input-group-append > .search-submit {
  padding: 0.5rem 1rem;
  font-size: 3rem;
  line-height: 1.5;
  border-radius: 0.3rem;
}

.input-group-sm > .form-control:not(textarea), .comment-form .input-group-sm > input:not(textarea)[type="text"],
.comment-form .input-group-sm > input:not(textarea)[type="email"],
.comment-form .input-group-sm > input:not(textarea)[type="url"],
.comment-form .input-group-sm > textarea:not(textarea), .search-form .input-group-sm > .search-field:not(textarea),
.input-group-sm > .custom-select {
  height: calc(1.5em + 0.5rem + 2px);
}

.input-group-sm > .form-control, .comment-form .input-group-sm > input[type="text"],
.comment-form .input-group-sm > input[type="email"],
.comment-form .input-group-sm > input[type="url"],
.comment-form .input-group-sm > textarea, .search-form .input-group-sm > .search-field,
.input-group-sm > .custom-select,
.input-group-sm > .input-group-prepend > .input-group-text,
.input-group-sm > .input-group-append > .input-group-text,
.input-group-sm > .input-group-prepend > .btn,
.comment-form .input-group-sm > .input-group-prepend > input[type="submit"],
.search-form .input-group-sm > .input-group-prepend > .search-submit,
.input-group-sm > .input-group-append > .btn,
.comment-form .input-group-sm > .input-group-append > input[type="submit"],
.search-form .input-group-sm > .input-group-append > .search-submit {
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
  border-radius: 0.2rem;
}

.input-group-lg > .custom-select,
.input-group-sm > .custom-select {
  padding-right: 1.75rem;
}

.input-group > .input-group-prepend > .btn, .comment-form .input-group > .input-group-prepend > input[type="submit"], .search-form .input-group > .input-group-prepend > .search-submit,
.input-group > .input-group-prepend > .input-group-text,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .btn,
.comment-form .input-group:not(.has-validation) > .input-group-append:not(:last-child) > input[type="submit"],
.search-form .input-group:not(.has-validation) > .input-group-append:not(:last-child) > .search-submit,
.input-group:not(.has-validation) > .input-group-append:not(:last-child) > .input-group-text,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .btn,
.comment-form .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > input[type="submit"],
.search-form .input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .search-submit,
.input-group.has-validation > .input-group-append:nth-last-child(n + 3) > .input-group-text,
.input-group > .input-group-append:last-child > .btn:not(:last-child):not(.dropdown-toggle),
.comment-form .input-group > .input-group-append:last-child > input:not(:last-child):not(.dropdown-toggle)[type="submit"],
.search-form .input-group > .input-group-append:last-child > .search-submit:not(:last-child):not(.dropdown-toggle),
.input-group > .input-group-append:last-child > .input-group-text:not(:last-child) {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-group > .input-group-append > .btn, .comment-form .input-group > .input-group-append > input[type="submit"], .search-form .input-group > .input-group-append > .search-submit,
.input-group > .input-group-append > .input-group-text,
.input-group > .input-group-prepend:not(:first-child) > .btn,
.comment-form .input-group > .input-group-prepend:not(:first-child) > input[type="submit"],
.search-form .input-group > .input-group-prepend:not(:first-child) > .search-submit,
.input-group > .input-group-prepend:not(:first-child) > .input-group-text,
.input-group > .input-group-prepend:first-child > .btn:not(:first-child),
.comment-form .input-group > .input-group-prepend:first-child > input:not(:first-child)[type="submit"],
.search-form .input-group > .input-group-prepend:first-child > .search-submit:not(:first-child),
.input-group > .input-group-prepend:first-child > .input-group-text:not(:first-child) {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.custom-control {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 2.4rem;
  padding-left: 1.5rem;
  print-color-adjust: exact;
}

.custom-control-inline {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  margin-right: 1rem;
}

.custom-control-input {
  position: absolute;
  left: 0;
  z-index: -1;
  width: 1rem;
  height: 1.7rem;
  opacity: 0;
}

.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #007bff;
  background-color: #007bff;
}

.custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #80bdff;
}

.custom-control-input:not(:disabled):active ~ .custom-control-label::before {
  color: #fff;
  background-color: #b3d7ff;
  border-color: #b3d7ff;
}

.custom-control-input[disabled] ~ .custom-control-label, .custom-control-input:disabled ~ .custom-control-label {
  color: #6c757d;
}

.custom-control-input[disabled] ~ .custom-control-label::before, .custom-control-input:disabled ~ .custom-control-label::before {
  background-color: #e9ecef;
}

.custom-control-label {
  position: relative;
  margin-bottom: 0;
  vertical-align: top;
}

.custom-control-label::before {
  position: absolute;
  top: 0.7rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  pointer-events: none;
  content: "";
  background-color: #fff;
  border: 1px solid #adb5bd;
}

.custom-control-label::after {
  position: absolute;
  top: 0.7rem;
  left: -1.5rem;
  display: block;
  width: 1rem;
  height: 1rem;
  content: "";
  background: 50% / 50% 50% no-repeat;
}

.custom-checkbox .custom-control-label::before {
  border-radius: 0.3rem;
}

.custom-checkbox .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath fill='%23fff' d='M6.564.75l-3.59 3.612-1.538-1.55L0 4.26l2.974 2.99L8 2.193z'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::before {
  border-color: #007bff;
  background-color: #007bff;
}

.custom-checkbox .custom-control-input:indeterminate ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3e%3cpath stroke='%23fff' d='M0 2h4'/%3e%3c/svg%3e");
}

.custom-checkbox .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-checkbox .custom-control-input:disabled:indeterminate ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-radio .custom-control-label::before {
  border-radius: 50%;
}

.custom-radio .custom-control-input:checked ~ .custom-control-label::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e");
}

.custom-radio .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 1.75rem;
  pointer-events: all;
  border-radius: 0.5rem;
}

.custom-switch .custom-control-label::after {
  top: calc(0.7rem + 2px);
  left: calc(-2.25rem + 2px);
  width: calc(1rem - 4px);
  height: calc(1rem - 4px);
  background-color: #adb5bd;
  border-radius: 0.5rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -o-transform 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-transform 0.15s ease-in-out, -o-transform 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-switch .custom-control-label::after {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
  background-color: #fff;
  -webkit-transform: translateX(0.75rem);
       -o-transform: translateX(0.75rem);
          transform: translateX(0.75rem);
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
  background-color: rgba(0, 123, 255, 0.5);
}

.custom-select {
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 1.75rem 0.375rem 0.75rem;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  vertical-align: middle;
  background: #fff url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='4' height='5' viewBox='0 0 4 5'%3e%3cpath fill='%23343a40' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e") right 0.75rem center/8px 10px no-repeat;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-select:focus {
  border-color: #80bdff;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-select:focus::-ms-value {
  color: #495057;
  background-color: #fff;
}

.custom-select[multiple], .custom-select[size]:not([size="1"]) {
  height: auto;
  padding-right: 0.75rem;
  background-image: none;
}

.custom-select:disabled {
  color: #6c757d;
  background-color: #e9ecef;
}

.custom-select::-ms-expand {
  display: none;
}

.custom-select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #495057;
}

.custom-select-sm {
  height: calc(1.5em + 0.5rem + 2px);
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  padding-left: 0.5rem;
  font-size: 1.2rem;
}

.custom-select-lg {
  height: calc(1.5em + 1rem + 2px);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  font-size: 3rem;
}

.custom-file {
  position: relative;
  display: inline-block;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin-bottom: 0;
}

.custom-file-input {
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(1.5em + 0.75rem + 2px);
  margin: 0;
  overflow: hidden;
  opacity: 0;
}

.custom-file-input:focus ~ .custom-file-label {
  border-color: #80bdff;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-file-input[disabled] ~ .custom-file-label,
.custom-file-input:disabled ~ .custom-file-label {
  background-color: #e9ecef;
}

.custom-file-input:lang(en) ~ .custom-file-label::after {
  content: "Browse";
}

.custom-file-input ~ .custom-file-label[data-browse]::after {
  content: attr(data-browse);
}

.custom-file-label {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1;
  height: calc(1.5em + 0.75rem + 2px);
  padding: 0.375rem 0.75rem;
  overflow: hidden;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  border: 1px solid #ced4da;
  border-radius: 0.3rem;
}

.custom-file-label::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: block;
  height: calc(1.5em + 0.75rem);
  padding: 0.375rem 0.75rem;
  line-height: 1.5;
  color: #495057;
  content: "Browse";
  background-color: #e9ecef;
  border-left: inherit;
  border-radius: 0 0.3rem 0.3rem 0;
}

.custom-range {
  width: 100%;
  height: 1.4rem;
  padding: 0;
  background-color: transparent;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.custom-range:focus {
  outline: 0;
}

.custom-range:focus::-webkit-slider-thumb {
  -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-moz-range-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range:focus::-ms-thumb {
  box-shadow: 0 0 0 1px #fff, 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.custom-range::-moz-focus-outer {
  border: 0;
}

.custom-range::-webkit-slider-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: -0.25rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -webkit-appearance: none;
          appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-webkit-slider-thumb {
    -webkit-transition: none;
    transition: none;
  }
}

.custom-range::-webkit-slider-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-webkit-slider-runnable-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-moz-range-thumb {
  width: 1rem;
  height: 1rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -moz-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  -moz-appearance: none;
       appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-moz-range-thumb {
    -moz-transition: none;
    transition: none;
  }
}

.custom-range::-moz-range-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-moz-range-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: #dee2e6;
  border-color: transparent;
  border-radius: 1rem;
}

.custom-range::-ms-thumb {
  width: 1rem;
  height: 1rem;
  margin-top: 0;
  margin-right: 0.2rem;
  margin-left: 0.2rem;
  background-color: #007bff;
  border: 0;
  border-radius: 1rem;
  -ms-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  appearance: none;
}

@media (prefers-reduced-motion: reduce) {
  .custom-range::-ms-thumb {
    -ms-transition: none;
    transition: none;
  }
}

.custom-range::-ms-thumb:active {
  background-color: #b3d7ff;
}

.custom-range::-ms-track {
  width: 100%;
  height: 0.5rem;
  color: transparent;
  cursor: pointer;
  background-color: transparent;
  border-color: transparent;
  border-width: 0.5rem;
}

.custom-range::-ms-fill-lower {
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range::-ms-fill-upper {
  margin-right: 15px;
  background-color: #dee2e6;
  border-radius: 1rem;
}

.custom-range:disabled::-webkit-slider-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-webkit-slider-runnable-track {
  cursor: default;
}

.custom-range:disabled::-moz-range-thumb {
  background-color: #adb5bd;
}

.custom-range:disabled::-moz-range-track {
  cursor: default;
}

.custom-range:disabled::-ms-thumb {
  background-color: #adb5bd;
}

.custom-control-label::before,
.custom-file-label,
.custom-select {
  -webkit-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .custom-control-label::before,
  .custom-file-label,
  .custom-select {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.nav-link {
  display: block;
  padding: 0.5rem 1rem;
}

.nav-link:hover, .nav-link:focus {
  text-decoration: none;
}

.nav-link.disabled {
  color: #6c757d;
  pointer-events: none;
  cursor: default;
}

.nav-tabs {
  border-bottom: 1px solid #dee2e6;
}

.nav-tabs .nav-link {
  margin-bottom: -1px;
  background-color: transparent;
  border: 1px solid transparent;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}

.nav-tabs .nav-link:hover, .nav-tabs .nav-link:focus {
  isolation: isolate;
  border-color: #e9ecef #e9ecef #dee2e6;
}

.nav-tabs .nav-link.disabled {
  color: #6c757d;
  background-color: transparent;
  border-color: transparent;
}

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #495057;
  background-color: #fff;
  border-color: #dee2e6 #dee2e6 #fff;
}

.nav-tabs .dropdown-menu {
  margin-top: -1px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.nav-pills .nav-link {
  background: none;
  border: 0;
  border-radius: 0.3rem;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
  color: #fff;
  background-color: #007bff;
}

.nav-fill > .nav-link,
.nav-fill .nav-item {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  text-align: center;
}

.nav-justified > .nav-link,
.nav-justified .nav-item {
  -ms-flex-preferred-size: 0;
      flex-basis: 0;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}

.tab-content > .tab-pane {
  display: none;
}

.tab-content > .active {
  display: block;
}

.navbar {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 0.5rem 1rem;
}

.navbar .container,
.navbar .container-fluid, .navbar .container-sm, .navbar .container-md, .navbar .container-lg, .navbar .container-xl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.navbar-brand {
  display: inline-block;
  padding-top: -0.55rem;
  padding-bottom: -0.55rem;
  margin-right: 1rem;
  font-size: 3rem;
  line-height: inherit;
  white-space: nowrap;
}

.navbar-brand:hover, .navbar-brand:focus {
  text-decoration: none;
}

.navbar-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
}

.navbar-nav .nav-link {
  padding-right: 0;
  padding-left: 0;
}

.navbar-nav .dropdown-menu {
  position: static;
  float: none;
}

.navbar-text {
  display: inline-block;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.navbar-collapse {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.navbar-toggler {
  padding: 0.25rem 0.75rem;
  font-size: 3rem;
  line-height: 1;
  background-color: transparent;
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.navbar-toggler:hover, .navbar-toggler:focus {
  text-decoration: none;
}

.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: 50% / 100% 100% no-repeat;
}

.navbar-nav-scroll {
  max-height: 75vh;
  overflow-y: auto;
}

@media (max-width: 575.98px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 576px) {
  .navbar-expand-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-sm .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-sm .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid, .navbar-expand-sm > .container-sm, .navbar-expand-sm > .container-md, .navbar-expand-sm > .container-lg, .navbar-expand-sm > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-sm .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-sm .navbar-toggler {
    display: none;
  }
}

@media (max-width: 767.98px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 768px) {
  .navbar-expand-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-md .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-md .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid, .navbar-expand-md > .container-sm, .navbar-expand-md > .container-md, .navbar-expand-md > .container-lg, .navbar-expand-md > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-md .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-md .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-md .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1023.98px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1024px) {
  .navbar-expand-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid, .navbar-expand-lg > .container-sm, .navbar-expand-lg > .container-md, .navbar-expand-lg > .container-lg, .navbar-expand-lg > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-lg .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-lg .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1199.98px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1200px) {
  .navbar-expand-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid, .navbar-expand-xl > .container-sm, .navbar-expand-xl > .container-md, .navbar-expand-xl > .container-lg, .navbar-expand-xl > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xl .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1399.98px) {
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid, .navbar-expand-xxl > .container-sm, .navbar-expand-xxl > .container-md, .navbar-expand-xxl > .container-lg, .navbar-expand-xxl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1400px) {
  .navbar-expand-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxl > .container,
  .navbar-expand-xxl > .container-fluid, .navbar-expand-xxl > .container-sm, .navbar-expand-xxl > .container-md, .navbar-expand-xxl > .container-lg, .navbar-expand-xxl > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xxl .navbar-toggler {
    display: none;
  }
}

@media (max-width: 1799.98px) {
  .navbar-expand-xxxl > .container,
  .navbar-expand-xxxl > .container-fluid, .navbar-expand-xxxl > .container-sm, .navbar-expand-xxxl > .container-md, .navbar-expand-xxxl > .container-lg, .navbar-expand-xxxl > .container-xl {
    padding-right: 0;
    padding-left: 0;
  }
}

@media (min-width: 1800px) {
  .navbar-expand-xxxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .navbar-expand-xxxl .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .navbar-expand-xxxl .navbar-nav .dropdown-menu {
    position: absolute;
  }
  .navbar-expand-xxxl .navbar-nav .nav-link {
    padding-right: 0.5rem;
    padding-left: 0.5rem;
  }
  .navbar-expand-xxxl > .container,
  .navbar-expand-xxxl > .container-fluid, .navbar-expand-xxxl > .container-sm, .navbar-expand-xxxl > .container-md, .navbar-expand-xxxl > .container-lg, .navbar-expand-xxxl > .container-xl {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
  .navbar-expand-xxxl .navbar-nav-scroll {
    overflow: visible;
  }
  .navbar-expand-xxxl .navbar-collapse {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
  }
  .navbar-expand-xxxl .navbar-toggler {
    display: none;
  }
}

.navbar-expand {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  padding-right: 0;
  padding-left: 0;
}

.navbar-expand .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.navbar-expand .navbar-nav .dropdown-menu {
  position: absolute;
}

.navbar-expand .navbar-nav .nav-link {
  padding-right: 0.5rem;
  padding-left: 0.5rem;
}

.navbar-expand > .container,
.navbar-expand > .container-fluid, .navbar-expand > .container-sm, .navbar-expand > .container-md, .navbar-expand > .container-lg, .navbar-expand > .container-xl {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}

.navbar-expand .navbar-nav-scroll {
  overflow: visible;
}

.navbar-expand .navbar-collapse {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -ms-flex-preferred-size: auto;
      flex-basis: auto;
}

.navbar-expand .navbar-toggler {
  display: none;
}

.navbar-light .navbar-brand {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-brand:hover, .navbar-light .navbar-brand:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-nav .nav-link {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-nav .nav-link:hover, .navbar-light .navbar-nav .nav-link:focus {
  color: rgba(0, 0, 0, 0.7);
}

.navbar-light .navbar-nav .nav-link.disabled {
  color: rgba(0, 0, 0, 0.3);
}

.navbar-light .navbar-nav .show > .nav-link,
.navbar-light .navbar-nav .active > .nav-link,
.navbar-light .navbar-nav .nav-link.show,
.navbar-light .navbar-nav .nav-link.active {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-toggler {
  color: rgba(0, 0, 0, 0.5);
  border-color: rgba(0, 0, 0, 0.1);
}

.navbar-light .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-light .navbar-text {
  color: rgba(0, 0, 0, 0.5);
}

.navbar-light .navbar-text a {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-light .navbar-text a:hover, .navbar-light .navbar-text a:focus {
  color: rgba(0, 0, 0, 0.9);
}

.navbar-dark .navbar-brand {
  color: #fff;
}

.navbar-dark .navbar-brand:hover, .navbar-dark .navbar-brand:focus {
  color: #fff;
}

.navbar-dark .navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-nav .nav-link:hover, .navbar-dark .navbar-nav .nav-link:focus {
  color: rgba(255, 255, 255, 0.75);
}

.navbar-dark .navbar-nav .nav-link.disabled {
  color: rgba(255, 255, 255, 0.25);
}

.navbar-dark .navbar-nav .show > .nav-link,
.navbar-dark .navbar-nav .active > .nav-link,
.navbar-dark .navbar-nav .nav-link.show,
.navbar-dark .navbar-nav .nav-link.active {
  color: #fff;
}

.navbar-dark .navbar-toggler {
  color: rgba(255, 255, 255, 0.5);
  border-color: rgba(255, 255, 255, 0.1);
}

.navbar-dark .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='30' height='30' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.5%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-dark .navbar-text {
  color: rgba(255, 255, 255, 0.5);
}

.navbar-dark .navbar-text a {
  color: #fff;
}

.navbar-dark .navbar-text a:hover, .navbar-dark .navbar-text a:focus {
  color: #fff;
}

.card {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  border: 1px solid rgba(0, 0, 0, 0.125);
  border-radius: 0.3rem;
}

.card > hr {
  margin-right: 0;
  margin-left: 0;
}

.card > .list-group {
  border-top: inherit;
  border-bottom: inherit;
}

.card > .list-group:first-child {
  border-top-width: 0;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.card > .list-group:last-child {
  border-bottom-width: 0;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.card > .card-header + .list-group,
.card > .list-group + .card-footer {
  border-top: 0;
}

.card-body {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-height: 1px;
  padding: 1.25rem;
}

.card-title {
  margin-bottom: 0.75rem;
}

.card-subtitle {
  margin-top: -0.375rem;
  margin-bottom: 0;
}

.card-text:last-child {
  margin-bottom: 0;
}

.card-link:hover {
  text-decoration: none;
}

.card-link + .card-link {
  margin-left: 1.25rem;
}

.card-header {
  padding: 0.75rem 1.25rem;
  margin-bottom: 0;
  background-color: rgba(0, 0, 0, 0.03);
  border-bottom: 1px solid rgba(0, 0, 0, 0.125);
}

.card-header:first-child {
  border-radius: calc(0.3rem - 1px) calc(0.3rem - 1px) 0 0;
}

.card-footer {
  padding: 0.75rem 1.25rem;
  background-color: rgba(0, 0, 0, 0.03);
  border-top: 1px solid rgba(0, 0, 0, 0.125);
}

.card-footer:last-child {
  border-radius: 0 0 calc(0.3rem - 1px) calc(0.3rem - 1px);
}

.card-header-tabs {
  margin-right: -0.625rem;
  margin-bottom: -0.75rem;
  margin-left: -0.625rem;
  border-bottom: 0;
}

.card-header-pills {
  margin-right: -0.625rem;
  margin-left: -0.625rem;
}

.card-img-overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 1.25rem;
  border-radius: calc(0.3rem - 1px);
}

.card-img,
.card-img-top,
.card-img-bottom {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
}

.card-img,
.card-img-top {
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.card-img,
.card-img-bottom {
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.card-deck .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-deck {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-right: -15px;
    margin-left: -15px;
  }
  .card-deck .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-right: 15px;
    margin-bottom: 0;
    margin-left: 15px;
  }
}

.card-group > .card {
  margin-bottom: 15px;
}

@media (min-width: 576px) {
  .card-group {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .card-group > .card {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 0%;
            flex: 1 0 0%;
    margin-bottom: 0;
  }
  .card-group > .card + .card {
    margin-left: 0;
    border-left: 0;
  }
  .card-group > .card:not(:last-child) {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-top,
  .card-group > .card:not(:last-child) .card-header {
    border-top-right-radius: 0;
  }
  .card-group > .card:not(:last-child) .card-img-bottom,
  .card-group > .card:not(:last-child) .card-footer {
    border-bottom-right-radius: 0;
  }
  .card-group > .card:not(:first-child) {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-top,
  .card-group > .card:not(:first-child) .card-header {
    border-top-left-radius: 0;
  }
  .card-group > .card:not(:first-child) .card-img-bottom,
  .card-group > .card:not(:first-child) .card-footer {
    border-bottom-left-radius: 0;
  }
}

.card-columns .card {
  margin-bottom: 0.75rem;
}

@media (min-width: 576px) {
  .card-columns {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
    -webkit-column-gap: 1.25rem;
       -moz-column-gap: 1.25rem;
            column-gap: 1.25rem;
    orphans: 1;
    widows: 1;
  }
  .card-columns .card {
    display: inline-block;
    width: 100%;
  }
}

.accordion {
  overflow-anchor: none;
}

.accordion > .card {
  overflow: hidden;
}

.accordion > .card:not(:last-of-type) {
  border-bottom: 0;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.accordion > .card:not(:first-of-type) {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.accordion > .card > .card-header {
  border-radius: 0;
  margin-bottom: -1px;
}

.breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0.5rem;
}

.breadcrumb-item + .breadcrumb-item::before {
  float: left;
  padding-right: 0.5rem;
  color: #6c757d;
  content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
  text-decoration: none;
}

.breadcrumb-item.active {
  color: #6c757d;
}

.pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
  list-style: none;
  border-radius: 0.3rem;
}

.page-link {
  position: relative;
  display: block;
  padding: 0.5rem 0.75rem;
  margin-left: -1px;
  line-height: 1.25;
  color: #007bff;
  background-color: #fff;
  border: 1px solid #dee2e6;
}

.page-link:hover {
  z-index: 2;
  color: #0056b3;
  text-decoration: none;
  background-color: #e9ecef;
  border-color: #dee2e6;
}

.page-link:focus {
  z-index: 3;
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.page-item:first-child .page-link {
  margin-left: 0;
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.page-item.active .page-link {
  z-index: 3;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.page-item.disabled .page-link {
  color: #6c757d;
  pointer-events: none;
  cursor: auto;
  background-color: #fff;
  border-color: #dee2e6;
}

.pagination-lg .page-link {
  padding: 0.75rem 1.5rem;
  font-size: 3rem;
  line-height: 1.5;
}

.pagination-lg .page-item:first-child .page-link {
  border-top-left-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}

.pagination-lg .page-item:last-child .page-link {
  border-top-right-radius: 0.3rem;
  border-bottom-right-radius: 0.3rem;
}

.pagination-sm .page-link {
  padding: 0.25rem 0.5rem;
  font-size: 1.2rem;
  line-height: 1.5;
}

.pagination-sm .page-item:first-child .page-link {
  border-top-left-radius: 0.2rem;
  border-bottom-left-radius: 0.2rem;
}

.pagination-sm .page-item:last-child .page-link {
  border-top-right-radius: 0.2rem;
  border-bottom-right-radius: 0.2rem;
}

.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.3rem;
  -webkit-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
  -o-transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .badge {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

a.badge:hover, a.badge:focus {
  text-decoration: none;
}

.badge:empty {
  display: none;
}

.btn .badge, .comment-form input[type="submit"] .badge, .search-form .search-submit .badge {
  position: relative;
  top: -1px;
}

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem;
}

.badge-primary {
  color: #fff;
  background-color: #007bff;
}

a.badge-primary:hover, a.badge-primary:focus {
  color: #fff;
  background-color: #0062cc;
}

a.badge-primary:focus, a.badge-primary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.badge-secondary {
  color: #fff;
  background-color: #6c757d;
}

a.badge-secondary:hover, a.badge-secondary:focus {
  color: #fff;
  background-color: #545b62;
}

a.badge-secondary:focus, a.badge-secondary.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(108, 117, 125, 0.5);
}

.badge-success {
  color: #fff;
  background-color: #398f14;
}

a.badge-success:hover, a.badge-success:focus {
  color: #fff;
  background-color: #27620e;
}

a.badge-success:focus, a.badge-success.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(57, 143, 20, 0.5);
}

.badge-info {
  color: #fff;
  background-color: #17a2b8;
}

a.badge-info:hover, a.badge-info:focus {
  color: #fff;
  background-color: #117a8b;
}

a.badge-info:focus, a.badge-info.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5);
}

.badge-warning {
  color: #212529;
  background-color: #ffc107;
}

a.badge-warning:hover, a.badge-warning:focus {
  color: #212529;
  background-color: #d39e00;
}

a.badge-warning:focus, a.badge-warning.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5);
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

a.badge-danger:hover, a.badge-danger:focus {
  color: #fff;
  background-color: #bd2130;
}

a.badge-danger:focus, a.badge-danger.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.5);
}

.badge-light {
  color: #212529;
  background-color: #f8f9fa;
}

a.badge-light:hover, a.badge-light:focus {
  color: #212529;
  background-color: #dae0e5;
}

a.badge-light:focus, a.badge-light.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5);
}

.badge-dark {
  color: #fff;
  background-color: #343a40;
}

a.badge-dark:hover, a.badge-dark:focus {
  color: #fff;
  background-color: #1d2124;
}

a.badge-dark:focus, a.badge-dark.focus {
  outline: 0;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
          box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5);
}

.jumbotron {
  padding: 2rem 1rem;
  margin-bottom: 2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

@media (min-width: 576px) {
  .jumbotron {
    padding: 4rem 2rem;
  }
}

.jumbotron-fluid {
  padding-right: 0;
  padding-left: 0;
  border-radius: 0;
}

.alert {
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.3rem;
}

.alert-heading {
  color: inherit;
}

.alert-link {
  font-weight: 700;
}

.alert-dismissible {
  padding-right: 4.9rem;
}

.alert-dismissible .close {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  padding: 0.75rem 1.25rem;
  color: inherit;
}

.alert-primary {
  color: #004085;
  background-color: #cce5ff;
  border-color: #b8daff;
}

.alert-primary hr {
  border-top-color: #9fcdff;
}

.alert-primary .alert-link {
  color: #002752;
}

.alert-secondary {
  color: #383d41;
  background-color: #e2e3e5;
  border-color: #d6d8db;
}

.alert-secondary hr {
  border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
  color: #202326;
}

.alert-success {
  color: #1e4a0a;
  background-color: #d7e9d0;
  border-color: #c8e0bd;
}

.alert-success hr {
  border-top-color: #bad8ac;
}

.alert-success .alert-link {
  color: #0c1d04;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

.alert-info hr {
  border-top-color: #abdde5;
}

.alert-info .alert-link {
  color: #062c33;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-warning hr {
  border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
  color: #533f03;
}

.alert-danger {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-danger hr {
  border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
  color: #491217;
}

.alert-light {
  color: #818182;
  background-color: #fefefe;
  border-color: #fdfdfe;
}

.alert-light hr {
  border-top-color: #ececf6;
}

.alert-light .alert-link {
  color: #686868;
}

.alert-dark {
  color: #1b1e21;
  background-color: #d6d8d9;
  border-color: #c6c8ca;
}

.alert-dark hr {
  border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
  color: #040505;
}

@-webkit-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@-o-keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

@keyframes progress-bar-stripes {
  from {
    background-position: 1rem 0;
  }
  to {
    background-position: 0 0;
  }
}

.progress {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 1rem;
  overflow: hidden;
  line-height: 0;
  font-size: 1.2rem;
  background-color: #e9ecef;
  border-radius: 0.3rem;
}

.progress-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  background-color: #007bff;
  -webkit-transition: width 0.6s ease;
  -o-transition: width 0.6s ease;
  transition: width 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.progress-bar-striped {
  background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: -o-linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-image: linear-gradient(45deg, rgba(255, 255, 255, 0.15) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.15) 50%, rgba(255, 255, 255, 0.15) 75%, transparent 75%, transparent);
  background-size: 1rem 1rem;
}

.progress-bar-animated {
  -webkit-animation: 1s linear infinite progress-bar-stripes;
       -o-animation: 1s linear infinite progress-bar-stripes;
          animation: 1s linear infinite progress-bar-stripes;
}

@media (prefers-reduced-motion: reduce) {
  .progress-bar-animated {
    -webkit-animation: none;
         -o-animation: none;
            animation: none;
  }
}

.media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.media-body {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.list-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 0;
  margin-bottom: 0;
  border-radius: 0.3rem;
}

.list-group-item-action {
  width: 100%;
  color: #495057;
  text-align: inherit;
}

.list-group-item-action:hover, .list-group-item-action:focus {
  z-index: 1;
  color: #495057;
  text-decoration: none;
  background-color: #f8f9fa;
}

.list-group-item-action:active {
  color: #212529;
  background-color: #e9ecef;
}

.list-group-item {
  position: relative;
  display: block;
  padding: 0.75rem 1.25rem;
  background-color: #fff;
  border: 1px solid rgba(0, 0, 0, 0.125);
}

.list-group-item:first-child {
  border-top-left-radius: inherit;
  border-top-right-radius: inherit;
}

.list-group-item:last-child {
  border-bottom-right-radius: inherit;
  border-bottom-left-radius: inherit;
}

.list-group-item.disabled, .list-group-item:disabled {
  color: #6c757d;
  pointer-events: none;
  background-color: #fff;
}

.list-group-item.active {
  z-index: 2;
  color: #fff;
  background-color: #007bff;
  border-color: #007bff;
}

.list-group-item + .list-group-item {
  border-top-width: 0;
}

.list-group-item + .list-group-item.active {
  margin-top: -1px;
  border-top-width: 1px;
}

.list-group-horizontal {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.list-group-horizontal > .list-group-item:first-child {
  border-bottom-left-radius: 0.3rem;
  border-top-right-radius: 0;
}

.list-group-horizontal > .list-group-item:last-child {
  border-top-right-radius: 0.3rem;
  border-bottom-left-radius: 0;
}

.list-group-horizontal > .list-group-item.active {
  margin-top: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item {
  border-top-width: 1px;
  border-left-width: 0;
}

.list-group-horizontal > .list-group-item + .list-group-item.active {
  margin-left: -1px;
  border-left-width: 1px;
}

@media (min-width: 576px) {
  .list-group-horizontal-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-sm > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-sm > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-sm > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 768px) {
  .list-group-horizontal-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-md > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-md > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-md > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1024px) {
  .list-group-horizontal-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-lg > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-lg > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-lg > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1200px) {
  .list-group-horizontal-xl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xl > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1400px) {
  .list-group-horizontal-xxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

@media (min-width: 1800px) {
  .list-group-horizontal-xxxl {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .list-group-horizontal-xxxl > .list-group-item:first-child {
    border-bottom-left-radius: 0.3rem;
    border-top-right-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item:last-child {
    border-top-right-radius: 0.3rem;
    border-bottom-left-radius: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item.active {
    margin-top: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item {
    border-top-width: 1px;
    border-left-width: 0;
  }
  .list-group-horizontal-xxxl > .list-group-item + .list-group-item.active {
    margin-left: -1px;
    border-left-width: 1px;
  }
}

.list-group-flush {
  border-radius: 0;
}

.list-group-flush > .list-group-item {
  border-width: 0 0 1px;
}

.list-group-flush > .list-group-item:last-child {
  border-bottom-width: 0;
}

.list-group-item-primary {
  color: #004085;
  background-color: #b8daff;
}

.list-group-item-primary.list-group-item-action:hover, .list-group-item-primary.list-group-item-action:focus {
  color: #004085;
  background-color: #9fcdff;
}

.list-group-item-primary.list-group-item-action.active {
  color: #fff;
  background-color: #004085;
  border-color: #004085;
}

.list-group-item-secondary {
  color: #383d41;
  background-color: #d6d8db;
}

.list-group-item-secondary.list-group-item-action:hover, .list-group-item-secondary.list-group-item-action:focus {
  color: #383d41;
  background-color: #c8cbcf;
}

.list-group-item-secondary.list-group-item-action.active {
  color: #fff;
  background-color: #383d41;
  border-color: #383d41;
}

.list-group-item-success {
  color: #1e4a0a;
  background-color: #c8e0bd;
}

.list-group-item-success.list-group-item-action:hover, .list-group-item-success.list-group-item-action:focus {
  color: #1e4a0a;
  background-color: #bad8ac;
}

.list-group-item-success.list-group-item-action.active {
  color: #fff;
  background-color: #1e4a0a;
  border-color: #1e4a0a;
}

.list-group-item-info {
  color: #0c5460;
  background-color: #bee5eb;
}

.list-group-item-info.list-group-item-action:hover, .list-group-item-info.list-group-item-action:focus {
  color: #0c5460;
  background-color: #abdde5;
}

.list-group-item-info.list-group-item-action.active {
  color: #fff;
  background-color: #0c5460;
  border-color: #0c5460;
}

.list-group-item-warning {
  color: #856404;
  background-color: #ffeeba;
}

.list-group-item-warning.list-group-item-action:hover, .list-group-item-warning.list-group-item-action:focus {
  color: #856404;
  background-color: #ffe8a1;
}

.list-group-item-warning.list-group-item-action.active {
  color: #fff;
  background-color: #856404;
  border-color: #856404;
}

.list-group-item-danger {
  color: #721c24;
  background-color: #f5c6cb;
}

.list-group-item-danger.list-group-item-action:hover, .list-group-item-danger.list-group-item-action:focus {
  color: #721c24;
  background-color: #f1b0b7;
}

.list-group-item-danger.list-group-item-action.active {
  color: #fff;
  background-color: #721c24;
  border-color: #721c24;
}

.list-group-item-light {
  color: #818182;
  background-color: #fdfdfe;
}

.list-group-item-light.list-group-item-action:hover, .list-group-item-light.list-group-item-action:focus {
  color: #818182;
  background-color: #ececf6;
}

.list-group-item-light.list-group-item-action.active {
  color: #fff;
  background-color: #818182;
  border-color: #818182;
}

.list-group-item-dark {
  color: #1b1e21;
  background-color: #c6c8ca;
}

.list-group-item-dark.list-group-item-action:hover, .list-group-item-dark.list-group-item-action:focus {
  color: #1b1e21;
  background-color: #b9bbbe;
}

.list-group-item-dark.list-group-item-action.active {
  color: #fff;
  background-color: #1b1e21;
  border-color: #1b1e21;
}

.close {
  float: right;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: .5;
}

.close:hover {
  color: #000;
  text-decoration: none;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
  opacity: .75;
}

button.close {
  padding: 0;
  background-color: transparent;
  border: 0;
}

a.close.disabled {
  pointer-events: none;
}

.toast {
  -ms-flex-preferred-size: 350px;
      flex-basis: 350px;
  max-width: 350px;
  font-size: 0.875rem;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
          box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  opacity: 0;
  border-radius: 0.25rem;
}

.toast:not(:last-child) {
  margin-bottom: 0.75rem;
}

.toast.showing {
  opacity: 1;
}

.toast.show {
  display: block;
  opacity: 1;
}

.toast.hide {
  display: none;
}

.toast-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.25rem 0.75rem;
  color: #6c757d;
  background-color: rgba(255, 255, 255, 0.85);
  background-clip: padding-box;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  border-top-left-radius: calc(0.25rem - 1px);
  border-top-right-radius: calc(0.25rem - 1px);
}

.toast-body {
  padding: 0.75rem;
}

.modal-open {
  overflow: hidden;
}

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none;
}

.modal.fade .modal-dialog {
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  -o-transition: -o-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out, -o-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
       -o-transform: translate(0, -50px);
          transform: translate(0, -50px);
}

@media (prefers-reduced-motion: reduce) {
  .modal.fade .modal-dialog {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.modal.show .modal-dialog {
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.modal.modal-static .modal-dialog {
  -webkit-transform: scale(1.02);
       -o-transform: scale(1.02);
          transform: scale(1.02);
}

.modal-dialog-scrollable {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-height: calc(100% - 1rem);
}

.modal-dialog-scrollable .modal-content {
  max-height: calc(100vh - 1rem);
  overflow: hidden;
}

.modal-dialog-scrollable .modal-header,
.modal-dialog-scrollable .modal-footer {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.modal-dialog-scrollable .modal-body {
  overflow-y: auto;
}

.modal-dialog-centered {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  min-height: calc(100% - 1rem);
}

.modal-dialog-centered::before {
  display: block;
  height: calc(100vh - 1rem);
  height: -webkit-min-content;
  height: -moz-min-content;
  height: min-content;
  content: "";
}

.modal-dialog-centered.modal-dialog-scrollable {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}

.modal-dialog-centered.modal-dialog-scrollable .modal-content {
  max-height: none;
}

.modal-dialog-centered.modal-dialog-scrollable::before {
  content: none;
}

.modal-content {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}

.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}

.modal-backdrop.fade {
  opacity: 0;
}

.modal-backdrop.show {
  opacity: 0.5;
}

.modal-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.modal-header .close {
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
}

.modal-title {
  margin-bottom: 0;
  line-height: 1.5;
}

.modal-body {
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  padding: 1rem;
}

.modal-footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  padding: 0.75rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: calc(0.3rem - 1px);
  border-bottom-left-radius: calc(0.3rem - 1px);
}

.modal-footer > * {
  margin: 0.25rem;
}

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .modal-dialog-scrollable {
    max-height: calc(100% - 3.5rem);
  }
  .modal-dialog-scrollable .modal-content {
    max-height: calc(100vh - 3.5rem);
  }
  .modal-dialog-centered {
    min-height: calc(100% - 3.5rem);
  }
  .modal-dialog-centered::before {
    height: calc(100vh - 3.5rem);
    height: -webkit-min-content;
    height: -moz-min-content;
    height: min-content;
  }
  .modal-sm {
    max-width: 300px;
  }
}

@media (min-width: 1024px) {
  .modal-lg,
  .modal-xl {
    max-width: 800px;
  }
}

@media (min-width: 1200px) {
  .modal-xl {
    max-width: 1140px;
  }
}

.tooltip {
  position: absolute;
  z-index: 1070;
  display: block;
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 1.2rem;
  word-wrap: break-word;
  opacity: 0;
}

.tooltip.show {
  opacity: 0.9;
}

.tooltip .arrow {
  position: absolute;
  display: block;
  width: 0.8rem;
  height: 0.4rem;
}

.tooltip .arrow::before {
  position: absolute;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-tooltip-top, .bs-tooltip-auto[x-placement^="top"] {
  padding: 0.4rem 0;
}

.bs-tooltip-top .arrow, .bs-tooltip-auto[x-placement^="top"] .arrow {
  bottom: 0;
}

.bs-tooltip-top .arrow::before, .bs-tooltip-auto[x-placement^="top"] .arrow::before {
  top: 0;
  border-width: 0.4rem 0.4rem 0;
  border-top-color: #000;
}

.bs-tooltip-right, .bs-tooltip-auto[x-placement^="right"] {
  padding: 0 0.4rem;
}

.bs-tooltip-right .arrow, .bs-tooltip-auto[x-placement^="right"] .arrow {
  left: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-right .arrow::before, .bs-tooltip-auto[x-placement^="right"] .arrow::before {
  right: 0;
  border-width: 0.4rem 0.4rem 0.4rem 0;
  border-right-color: #000;
}

.bs-tooltip-bottom, .bs-tooltip-auto[x-placement^="bottom"] {
  padding: 0.4rem 0;
}

.bs-tooltip-bottom .arrow, .bs-tooltip-auto[x-placement^="bottom"] .arrow {
  top: 0;
}

.bs-tooltip-bottom .arrow::before, .bs-tooltip-auto[x-placement^="bottom"] .arrow::before {
  bottom: 0;
  border-width: 0 0.4rem 0.4rem;
  border-bottom-color: #000;
}

.bs-tooltip-left, .bs-tooltip-auto[x-placement^="left"] {
  padding: 0 0.4rem;
}

.bs-tooltip-left .arrow, .bs-tooltip-auto[x-placement^="left"] .arrow {
  right: 0;
  width: 0.4rem;
  height: 0.8rem;
}

.bs-tooltip-left .arrow::before, .bs-tooltip-auto[x-placement^="left"] .arrow::before {
  left: 0;
  border-width: 0.4rem 0 0.4rem 0.4rem;
  border-left-color: #000;
}

.tooltip-inner {
  max-width: 200px;
  padding: 0.25rem 0.5rem;
  color: #fff;
  text-align: center;
  background-color: #000;
  border-radius: 0.3rem;
}

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  white-space: normal;
  word-spacing: normal;
  line-break: auto;
  font-size: 1.2rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
}

.popover .arrow {
  position: absolute;
  display: block;
  width: 1rem;
  height: 0.5rem;
  margin: 0 0.3rem;
}

.popover .arrow::before, .popover .arrow::after {
  position: absolute;
  display: block;
  content: "";
  border-color: transparent;
  border-style: solid;
}

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem;
}

.bs-popover-top > .arrow, .bs-popover-auto[x-placement^="top"] > .arrow {
  bottom: calc(-0.5rem - 1px);
}

.bs-popover-top > .arrow::before, .bs-popover-auto[x-placement^="top"] > .arrow::before {
  bottom: 0;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-top > .arrow::after, .bs-popover-auto[x-placement^="top"] > .arrow::after {
  bottom: 1px;
  border-width: 0.5rem 0.5rem 0;
  border-top-color: #fff;
}

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem;
}

.bs-popover-right > .arrow, .bs-popover-auto[x-placement^="right"] > .arrow {
  left: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-right > .arrow::before, .bs-popover-auto[x-placement^="right"] > .arrow::before {
  left: 0;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-right > .arrow::after, .bs-popover-auto[x-placement^="right"] > .arrow::after {
  left: 1px;
  border-width: 0.5rem 0.5rem 0.5rem 0;
  border-right-color: #fff;
}

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem;
}

.bs-popover-bottom > .arrow, .bs-popover-auto[x-placement^="bottom"] > .arrow {
  top: calc(-0.5rem - 1px);
}

.bs-popover-bottom > .arrow::before, .bs-popover-auto[x-placement^="bottom"] > .arrow::before {
  top: 0;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-bottom > .arrow::after, .bs-popover-auto[x-placement^="bottom"] > .arrow::after {
  top: 1px;
  border-width: 0 0.5rem 0.5rem 0.5rem;
  border-bottom-color: #fff;
}

.bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1rem;
  margin-left: -0.5rem;
  content: "";
  border-bottom: 1px solid #f7f7f7;
}

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem;
}

.bs-popover-left > .arrow, .bs-popover-auto[x-placement^="left"] > .arrow {
  right: calc(-0.5rem - 1px);
  width: 0.5rem;
  height: 1rem;
  margin: 0.3rem 0;
}

.bs-popover-left > .arrow::before, .bs-popover-auto[x-placement^="left"] > .arrow::before {
  right: 0;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: rgba(0, 0, 0, 0.25);
}

.bs-popover-left > .arrow::after, .bs-popover-auto[x-placement^="left"] > .arrow::after {
  right: 1px;
  border-width: 0.5rem 0 0.5rem 0.5rem;
  border-left-color: #fff;
}

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1.6rem;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px);
}

.popover-header:empty {
  display: none;
}

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529;
}

.carousel {
  position: relative;
}

.carousel.pointer-event {
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}

.carousel-inner {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel-inner::after {
  display: block;
  clear: both;
  content: "";
}

.carousel-item {
  position: relative;
  display: none;
  float: left;
  width: 100%;
  margin-right: -100%;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: -webkit-transform 0.6s ease-in-out;
  -o-transition: -o-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-item {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: block;
}

.carousel-item-next:not(.carousel-item-left),
.active.carousel-item-right {
  -webkit-transform: translateX(100%);
       -o-transform: translateX(100%);
          transform: translateX(100%);
}

.carousel-item-prev:not(.carousel-item-right),
.active.carousel-item-left {
  -webkit-transform: translateX(-100%);
       -o-transform: translateX(-100%);
          transform: translateX(-100%);
}

.carousel-fade .carousel-item {
  opacity: 0;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
  -webkit-transform: none;
       -o-transform: none;
          transform: none;
}

.carousel-fade .carousel-item.active,
.carousel-fade .carousel-item-next.carousel-item-left,
.carousel-fade .carousel-item-prev.carousel-item-right {
  z-index: 1;
  opacity: 1;
}

.carousel-fade .active.carousel-item-left,
.carousel-fade .active.carousel-item-right {
  z-index: 0;
  opacity: 0;
  -webkit-transition: opacity 0s 0.6s;
  -o-transition: opacity 0s 0.6s;
  transition: opacity 0s 0.6s;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-fade .active.carousel-item-left,
  .carousel-fade .active.carousel-item-right {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev,
.carousel-control-next {
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 15%;
  padding: 0;
  color: #fff;
  text-align: center;
  background: none;
  border: 0;
  opacity: 0.5;
  -webkit-transition: opacity 0.15s ease;
  -o-transition: opacity 0.15s ease;
  transition: opacity 0.15s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-control-prev,
  .carousel-control-next {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-control-prev:hover, .carousel-control-prev:focus,
.carousel-control-next:hover,
.carousel-control-next:focus {
  color: #fff;
  text-decoration: none;
  outline: 0;
  opacity: 0.9;
}

.carousel-control-prev {
  left: 0;
}

.carousel-control-next {
  right: 0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background: 50% / 100% 100% no-repeat;
}

.carousel-control-prev-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M5.25 0l-4 4 4 4 1.5-1.5L4.25 4l2.5-2.5L5.25 0z'/%3e%3c/svg%3e");
}

.carousel-control-next-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='%23fff' width='8' height='8' viewBox='0 0 8 8'%3e%3cpath d='M2.75 0l-1.5 1.5L3.75 4l-2.5 2.5L2.75 8l4-4-4-4z'/%3e%3c/svg%3e");
}

.carousel-indicators {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 15;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-left: 0;
  margin-right: 15%;
  margin-left: 15%;
  list-style: none;
}

.carousel-indicators li {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  width: 30px;
  height: 3px;
  margin-right: 3px;
  margin-left: 3px;
  text-indent: -999px;
  cursor: pointer;
  background-color: #fff;
  background-clip: padding-box;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  opacity: .5;
  -webkit-transition: opacity 0.6s ease;
  -o-transition: opacity 0.6s ease;
  transition: opacity 0.6s ease;
}

@media (prefers-reduced-motion: reduce) {
  .carousel-indicators li {
    -webkit-transition: none;
    -o-transition: none;
    transition: none;
  }
}

.carousel-indicators .active {
  opacity: 1;
}

.carousel-caption {
  position: absolute;
  right: 15%;
  bottom: 20px;
  left: 15%;
  z-index: 10;
  padding-top: 20px;
  padding-bottom: 20px;
  color: #fff;
  text-align: center;
}

@-webkit-keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@-o-keyframes spinner-border {
  to {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}

@keyframes spinner-border {
  to {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.spinner-border {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  border: 0.25em solid currentcolor;
  border-right-color: transparent;
  border-radius: 50%;
  -webkit-animation: .75s linear infinite spinner-border;
       -o-animation: .75s linear infinite spinner-border;
          animation: .75s linear infinite spinner-border;
}

.spinner-border-sm {
  width: 1rem;
  height: 1rem;
  border-width: 0.2em;
}

@-webkit-keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
            transform: none;
  }
}

@-o-keyframes spinner-grow {
  0% {
    -o-transform: scale(0);
       transform: scale(0);
  }
  50% {
    opacity: 1;
    -o-transform: none;
       transform: none;
  }
}

@keyframes spinner-grow {
  0% {
    -webkit-transform: scale(0);
         -o-transform: scale(0);
            transform: scale(0);
  }
  50% {
    opacity: 1;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
  }
}

.spinner-grow {
  display: inline-block;
  width: 2rem;
  height: 2rem;
  vertical-align: -0.125em;
  background-color: currentcolor;
  border-radius: 50%;
  opacity: 0;
  -webkit-animation: .75s linear infinite spinner-grow;
       -o-animation: .75s linear infinite spinner-grow;
          animation: .75s linear infinite spinner-grow;
}

.spinner-grow-sm {
  width: 1rem;
  height: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  .spinner-border,
  .spinner-grow {
    -webkit-animation-duration: 1.5s;
         -o-animation-duration: 1.5s;
            animation-duration: 1.5s;
  }
}

.align-baseline {
  vertical-align: baseline !important;
}

.align-top {
  vertical-align: top !important;
}

.align-middle {
  vertical-align: middle !important;
}

.align-bottom {
  vertical-align: bottom !important;
}

.align-text-bottom {
  vertical-align: text-bottom !important;
}

.align-text-top {
  vertical-align: text-top !important;
}

.bg-primary {
  background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important;
}

.bg-secondary {
  background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important;
}

.bg-success {
  background-color: #398f14 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #27620e !important;
}

.bg-info {
  background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #117a8b !important;
}

.bg-warning {
  background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important;
}

.bg-danger {
  background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important;
}

.bg-light {
  background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important;
}

.bg-dark {
  background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important;
}

.bg-white {
  background-color: #fff !important;
}

.bg-transparent {
  background-color: transparent !important;
}

.border {
  border: 1px solid #dee2e6 !important;
}

.border-top {
  border-top: 1px solid #dee2e6 !important;
}

.border-right {
  border-right: 1px solid #dee2e6 !important;
}

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important;
}

.border-left {
  border-left: 1px solid #dee2e6 !important;
}

.border-0 {
  border: 0 !important;
}

.border-top-0 {
  border-top: 0 !important;
}

.border-right-0 {
  border-right: 0 !important;
}

.border-bottom-0 {
  border-bottom: 0 !important;
}

.border-left-0 {
  border-left: 0 !important;
}

.border-primary {
  border-color: #007bff !important;
}

.border-secondary {
  border-color: #6c757d !important;
}

.border-success {
  border-color: #398f14 !important;
}

.border-info {
  border-color: #17a2b8 !important;
}

.border-warning {
  border-color: #ffc107 !important;
}

.border-danger {
  border-color: #dc3545 !important;
}

.border-light {
  border-color: #f8f9fa !important;
}

.border-dark {
  border-color: #343a40 !important;
}

.border-white {
  border-color: #fff !important;
}

.rounded-sm {
  border-radius: 0.2rem !important;
}

.rounded {
  border-radius: 0.3rem !important;
}

.rounded-top {
  border-top-left-radius: 0.3rem !important;
  border-top-right-radius: 0.3rem !important;
}

.rounded-right {
  border-top-right-radius: 0.3rem !important;
  border-bottom-right-radius: 0.3rem !important;
}

.rounded-bottom {
  border-bottom-right-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important;
}

.rounded-left {
  border-top-left-radius: 0.3rem !important;
  border-bottom-left-radius: 0.3rem !important;
}

.rounded-lg {
  border-radius: 0.3rem !important;
}

.rounded-circle {
  border-radius: 50% !important;
}

.rounded-pill {
  border-radius: 50rem !important;
}

.rounded-0 {
  border-radius: 0 !important;
}

.clearfix::after {
  display: block;
  clear: both;
  content: "";
}

.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
}

.d-inline-flex {
  display: -webkit-inline-box !important;
  display: -ms-inline-flexbox !important;
  display: inline-flex !important;
}

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important;
  }
  .d-sm-inline {
    display: inline !important;
  }
  .d-sm-inline-block {
    display: inline-block !important;
  }
  .d-sm-block {
    display: block !important;
  }
  .d-sm-table {
    display: table !important;
  }
  .d-sm-table-row {
    display: table-row !important;
  }
  .d-sm-table-cell {
    display: table-cell !important;
  }
  .d-sm-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-sm-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 768px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-md-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1024px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1200px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1400px) {
  .d-xxl-none {
    display: none !important;
  }
  .d-xxl-inline {
    display: inline !important;
  }
  .d-xxl-inline-block {
    display: inline-block !important;
  }
  .d-xxl-block {
    display: block !important;
  }
  .d-xxl-table {
    display: table !important;
  }
  .d-xxl-table-row {
    display: table-row !important;
  }
  .d-xxl-table-cell {
    display: table-cell !important;
  }
  .d-xxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media (min-width: 1800px) {
  .d-xxxl-none {
    display: none !important;
  }
  .d-xxxl-inline {
    display: inline !important;
  }
  .d-xxxl-inline-block {
    display: inline-block !important;
  }
  .d-xxxl-block {
    display: block !important;
  }
  .d-xxxl-table {
    display: table !important;
  }
  .d-xxxl-table-row {
    display: table-row !important;
  }
  .d-xxxl-table-cell {
    display: table-cell !important;
  }
  .d-xxxl-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-xxxl-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .d-print-inline-flex {
    display: -webkit-inline-box !important;
    display: -ms-inline-flexbox !important;
    display: inline-flex !important;
  }
}

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.embed-responsive::before {
  display: block;
  content: "";
}

.embed-responsive .embed-responsive-item,
.embed-responsive iframe,
.embed-responsive embed,
.embed-responsive object,
.embed-responsive video {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-responsive-21by9::before {
  padding-top: 42.85714286%;
}

.embed-responsive-16by9::before {
  padding-top: 56.25%;
}

.embed-responsive-4by3::before {
  padding-top: 75%;
}

.embed-responsive-1by1::before {
  padding-top: 100%;
}

.flex-row {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: row !important;
          flex-direction: row !important;
}

.flex-column {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: normal !important;
      -ms-flex-direction: column !important;
          flex-direction: column !important;
}

.flex-row-reverse {
  -webkit-box-orient: horizontal !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: row-reverse !important;
          flex-direction: row-reverse !important;
}

.flex-column-reverse {
  -webkit-box-orient: vertical !important;
  -webkit-box-direction: reverse !important;
      -ms-flex-direction: column-reverse !important;
          flex-direction: column-reverse !important;
}

.flex-wrap {
  -ms-flex-wrap: wrap !important;
      flex-wrap: wrap !important;
}

.flex-nowrap {
  -ms-flex-wrap: nowrap !important;
      flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse !important;
      flex-wrap: wrap-reverse !important;
}

.flex-fill {
  -webkit-box-flex: 1 !important;
      -ms-flex: 1 1 auto !important;
          flex: 1 1 auto !important;
}

.flex-grow-0 {
  -webkit-box-flex: 0 !important;
      -ms-flex-positive: 0 !important;
          flex-grow: 0 !important;
}

.flex-grow-1 {
  -webkit-box-flex: 1 !important;
      -ms-flex-positive: 1 !important;
          flex-grow: 1 !important;
}

.flex-shrink-0 {
  -ms-flex-negative: 0 !important;
      flex-shrink: 0 !important;
}

.flex-shrink-1 {
  -ms-flex-negative: 1 !important;
      flex-shrink: 1 !important;
}

.justify-content-start {
  -webkit-box-pack: start !important;
      -ms-flex-pack: start !important;
          justify-content: flex-start !important;
}

.justify-content-end {
  -webkit-box-pack: end !important;
      -ms-flex-pack: end !important;
          justify-content: flex-end !important;
}

.justify-content-center {
  -webkit-box-pack: center !important;
      -ms-flex-pack: center !important;
          justify-content: center !important;
}

.justify-content-between {
  -webkit-box-pack: justify !important;
      -ms-flex-pack: justify !important;
          justify-content: space-between !important;
}

.justify-content-around {
  -ms-flex-pack: distribute !important;
      justify-content: space-around !important;
}

.align-items-start {
  -webkit-box-align: start !important;
      -ms-flex-align: start !important;
          align-items: flex-start !important;
}

.align-items-end {
  -webkit-box-align: end !important;
      -ms-flex-align: end !important;
          align-items: flex-end !important;
}

.align-items-center {
  -webkit-box-align: center !important;
      -ms-flex-align: center !important;
          align-items: center !important;
}

.align-items-baseline {
  -webkit-box-align: baseline !important;
      -ms-flex-align: baseline !important;
          align-items: baseline !important;
}

.align-items-stretch {
  -webkit-box-align: stretch !important;
      -ms-flex-align: stretch !important;
          align-items: stretch !important;
}

.align-content-start {
  -ms-flex-line-pack: start !important;
      align-content: flex-start !important;
}

.align-content-end {
  -ms-flex-line-pack: end !important;
      align-content: flex-end !important;
}

.align-content-center {
  -ms-flex-line-pack: center !important;
      align-content: center !important;
}

.align-content-between {
  -ms-flex-line-pack: justify !important;
      align-content: space-between !important;
}

.align-content-around {
  -ms-flex-line-pack: distribute !important;
      align-content: space-around !important;
}

.align-content-stretch {
  -ms-flex-line-pack: stretch !important;
      align-content: stretch !important;
}

.align-self-auto {
  -ms-flex-item-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  -ms-flex-item-align: start !important;
      align-self: flex-start !important;
}

.align-self-end {
  -ms-flex-item-align: end !important;
      align-self: flex-end !important;
}

.align-self-center {
  -ms-flex-item-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  -ms-flex-item-align: baseline !important;
      align-self: baseline !important;
}

.align-self-stretch {
  -ms-flex-item-align: stretch !important;
      align-self: stretch !important;
}

@media (min-width: 576px) {
  .flex-sm-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-sm-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-sm-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-sm-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-sm-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-sm-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-sm-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-sm-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-sm-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-sm-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-sm-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-sm-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-sm-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-sm-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-sm-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-sm-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-sm-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-sm-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-sm-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-sm-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-sm-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-sm-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-sm-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-sm-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-sm-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-sm-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-sm-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-sm-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-sm-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-sm-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-sm-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-sm-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 768px) {
  .flex-md-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-md-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-md-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-md-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-md-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-md-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-md-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-md-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-md-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-md-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-md-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-md-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-md-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-md-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-md-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-md-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-md-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-md-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-md-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1024px) {
  .flex-lg-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-lg-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-lg-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-lg-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-lg-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-lg-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-lg-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-lg-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-lg-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-lg-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-lg-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-lg-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-lg-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-lg-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-lg-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-lg-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1200px) {
  .flex-xl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1400px) {
  .flex-xxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

@media (min-width: 1800px) {
  .flex-xxxl-row {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: row !important;
            flex-direction: row !important;
  }
  .flex-xxxl-column {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: normal !important;
        -ms-flex-direction: column !important;
            flex-direction: column !important;
  }
  .flex-xxxl-row-reverse {
    -webkit-box-orient: horizontal !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: row-reverse !important;
            flex-direction: row-reverse !important;
  }
  .flex-xxxl-column-reverse {
    -webkit-box-orient: vertical !important;
    -webkit-box-direction: reverse !important;
        -ms-flex-direction: column-reverse !important;
            flex-direction: column-reverse !important;
  }
  .flex-xxxl-wrap {
    -ms-flex-wrap: wrap !important;
        flex-wrap: wrap !important;
  }
  .flex-xxxl-nowrap {
    -ms-flex-wrap: nowrap !important;
        flex-wrap: nowrap !important;
  }
  .flex-xxxl-wrap-reverse {
    -ms-flex-wrap: wrap-reverse !important;
        flex-wrap: wrap-reverse !important;
  }
  .flex-xxxl-fill {
    -webkit-box-flex: 1 !important;
        -ms-flex: 1 1 auto !important;
            flex: 1 1 auto !important;
  }
  .flex-xxxl-grow-0 {
    -webkit-box-flex: 0 !important;
        -ms-flex-positive: 0 !important;
            flex-grow: 0 !important;
  }
  .flex-xxxl-grow-1 {
    -webkit-box-flex: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
  }
  .flex-xxxl-shrink-0 {
    -ms-flex-negative: 0 !important;
        flex-shrink: 0 !important;
  }
  .flex-xxxl-shrink-1 {
    -ms-flex-negative: 1 !important;
        flex-shrink: 1 !important;
  }
  .justify-content-xxxl-start {
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
  }
  .justify-content-xxxl-end {
    -webkit-box-pack: end !important;
        -ms-flex-pack: end !important;
            justify-content: flex-end !important;
  }
  .justify-content-xxxl-center {
    -webkit-box-pack: center !important;
        -ms-flex-pack: center !important;
            justify-content: center !important;
  }
  .justify-content-xxxl-between {
    -webkit-box-pack: justify !important;
        -ms-flex-pack: justify !important;
            justify-content: space-between !important;
  }
  .justify-content-xxxl-around {
    -ms-flex-pack: distribute !important;
        justify-content: space-around !important;
  }
  .align-items-xxxl-start {
    -webkit-box-align: start !important;
        -ms-flex-align: start !important;
            align-items: flex-start !important;
  }
  .align-items-xxxl-end {
    -webkit-box-align: end !important;
        -ms-flex-align: end !important;
            align-items: flex-end !important;
  }
  .align-items-xxxl-center {
    -webkit-box-align: center !important;
        -ms-flex-align: center !important;
            align-items: center !important;
  }
  .align-items-xxxl-baseline {
    -webkit-box-align: baseline !important;
        -ms-flex-align: baseline !important;
            align-items: baseline !important;
  }
  .align-items-xxxl-stretch {
    -webkit-box-align: stretch !important;
        -ms-flex-align: stretch !important;
            align-items: stretch !important;
  }
  .align-content-xxxl-start {
    -ms-flex-line-pack: start !important;
        align-content: flex-start !important;
  }
  .align-content-xxxl-end {
    -ms-flex-line-pack: end !important;
        align-content: flex-end !important;
  }
  .align-content-xxxl-center {
    -ms-flex-line-pack: center !important;
        align-content: center !important;
  }
  .align-content-xxxl-between {
    -ms-flex-line-pack: justify !important;
        align-content: space-between !important;
  }
  .align-content-xxxl-around {
    -ms-flex-line-pack: distribute !important;
        align-content: space-around !important;
  }
  .align-content-xxxl-stretch {
    -ms-flex-line-pack: stretch !important;
        align-content: stretch !important;
  }
  .align-self-xxxl-auto {
    -ms-flex-item-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xxxl-start {
    -ms-flex-item-align: start !important;
        align-self: flex-start !important;
  }
  .align-self-xxxl-end {
    -ms-flex-item-align: end !important;
        align-self: flex-end !important;
  }
  .align-self-xxxl-center {
    -ms-flex-item-align: center !important;
        align-self: center !important;
  }
  .align-self-xxxl-baseline {
    -ms-flex-item-align: baseline !important;
        align-self: baseline !important;
  }
  .align-self-xxxl-stretch {
    -ms-flex-item-align: stretch !important;
        align-self: stretch !important;
  }
}

.float-left {
  float: left !important;
}

.float-right {
  float: right !important;
}

.float-none {
  float: none !important;
}

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important;
  }
  .float-sm-right {
    float: right !important;
  }
  .float-sm-none {
    float: none !important;
  }
}

@media (min-width: 768px) {
  .float-md-left {
    float: left !important;
  }
  .float-md-right {
    float: right !important;
  }
  .float-md-none {
    float: none !important;
  }
}

@media (min-width: 1024px) {
  .float-lg-left {
    float: left !important;
  }
  .float-lg-right {
    float: right !important;
  }
  .float-lg-none {
    float: none !important;
  }
}

@media (min-width: 1200px) {
  .float-xl-left {
    float: left !important;
  }
  .float-xl-right {
    float: right !important;
  }
  .float-xl-none {
    float: none !important;
  }
}

@media (min-width: 1400px) {
  .float-xxl-left {
    float: left !important;
  }
  .float-xxl-right {
    float: right !important;
  }
  .float-xxl-none {
    float: none !important;
  }
}

@media (min-width: 1800px) {
  .float-xxxl-left {
    float: left !important;
  }
  .float-xxxl-right {
    float: right !important;
  }
  .float-xxxl-none {
    float: none !important;
  }
}

.user-select-all {
  -webkit-user-select: all !important;
     -moz-user-select: all !important;
      -ms-user-select: all !important;
          user-select: all !important;
}

.user-select-auto {
  -webkit-user-select: auto !important;
     -moz-user-select: auto !important;
      -ms-user-select: auto !important;
          user-select: auto !important;
}

.user-select-none {
  -webkit-user-select: none !important;
     -moz-user-select: none !important;
      -ms-user-select: none !important;
          user-select: none !important;
}

.overflow-auto {
  overflow: auto !important;
}

.overflow-hidden {
  overflow: hidden !important;
}

.position-static {
  position: static !important;
}

.position-relative {
  position: relative !important;
}

.position-absolute {
  position: absolute !important;
}

.position-fixed {
  position: fixed !important;
}

.position-sticky {
  position: sticky !important;
}

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030;
}

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030;
}

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020;
  }
}

.sr-only, .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only-focusable:active, .screen-reader-text:active, .sr-only-focusable:focus, .screen-reader-text:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal;
}

.shadow-sm {
  -webkit-box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
          box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important;
}

.shadow {
  -webkit-box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
          box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.shadow-lg {
  -webkit-box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
          box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

.shadow-none {
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
}

.w-25 {
  width: 25% !important;
}

.w-50 {
  width: 50% !important;
}

.w-75 {
  width: 75% !important;
}

.w-100 {
  width: 100% !important;
}

.w-auto {
  width: auto !important;
}

.h-25 {
  height: 25% !important;
}

.h-50 {
  height: 50% !important;
}

.h-75 {
  height: 75% !important;
}

.h-100 {
  height: 100% !important;
}

.h-auto {
  height: auto !important;
}

.mw-100 {
  max-width: 100% !important;
}

.mh-100 {
  max-height: 100% !important;
}

.min-vw-100 {
  min-width: 100vw !important;
}

.min-vh-100 {
  min-height: 100vh !important;
}

.vw-100 {
  width: 100vw !important;
}

.vh-100 {
  height: 100vh !important;
}

.m-0 {
  margin: 0 !important;
}

.mt-0,
.my-0 {
  margin-top: 0 !important;
}

.mr-0,
.mx-0 {
  margin-right: 0 !important;
}

.mb-0,
.my-0 {
  margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
  margin-left: 0 !important;
}

.m-1 {
  margin: 0.25rem !important;
}

.mt-1,
.my-1 {
  margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important;
}

.m-2 {
  margin: 0.5rem !important;
}

.mt-2,
.my-2 {
  margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important;
}

.m-3 {
  margin: 1rem !important;
}

.mt-3,
.my-3 {
  margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
  margin-right: 1rem !important;
}

.mb-3,
.my-3 {
  margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
  margin-left: 1rem !important;
}

.m-4 {
  margin: 1.5rem !important;
}

.mt-4,
.my-4 {
  margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important;
}

.m-5 {
  margin: 3rem !important;
}

.mt-5,
.my-5 {
  margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
  margin-right: 3rem !important;
}

.mb-5,
.my-5 {
  margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
  margin-left: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0,
.py-0 {
  padding-top: 0 !important;
}

.pr-0,
.px-0 {
  padding-right: 0 !important;
}

.pb-0,
.py-0 {
  padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
  padding-left: 0 !important;
}

.p-1 {
  padding: 0.25rem !important;
}

.pt-1,
.py-1 {
  padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
  padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
  padding-left: 0.25rem !important;
}

.p-2 {
  padding: 0.5rem !important;
}

.pt-2,
.py-2 {
  padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
  padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
  padding-left: 0.5rem !important;
}

.p-3 {
  padding: 1rem !important;
}

.pt-3,
.py-3 {
  padding-top: 1rem !important;
}

.pr-3,
.px-3 {
  padding-right: 1rem !important;
}

.pb-3,
.py-3 {
  padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
  padding-left: 1rem !important;
}

.p-4 {
  padding: 1.5rem !important;
}

.pt-4,
.py-4 {
  padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
  padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
  padding-left: 1.5rem !important;
}

.p-5 {
  padding: 3rem !important;
}

.pt-5,
.py-5 {
  padding-top: 3rem !important;
}

.pr-5,
.px-5 {
  padding-right: 3rem !important;
}

.pb-5,
.py-5 {
  padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
  padding-left: 3rem !important;
}

.m-n1 {
  margin: -0.25rem !important;
}

.mt-n1,
.my-n1 {
  margin-top: -0.25rem !important;
}

.mr-n1,
.mx-n1 {
  margin-right: -0.25rem !important;
}

.mb-n1,
.my-n1 {
  margin-bottom: -0.25rem !important;
}

.ml-n1,
.mx-n1 {
  margin-left: -0.25rem !important;
}

.m-n2 {
  margin: -0.5rem !important;
}

.mt-n2,
.my-n2 {
  margin-top: -0.5rem !important;
}

.mr-n2,
.mx-n2 {
  margin-right: -0.5rem !important;
}

.mb-n2,
.my-n2 {
  margin-bottom: -0.5rem !important;
}

.ml-n2,
.mx-n2 {
  margin-left: -0.5rem !important;
}

.m-n3 {
  margin: -1rem !important;
}

.mt-n3,
.my-n3 {
  margin-top: -1rem !important;
}

.mr-n3,
.mx-n3 {
  margin-right: -1rem !important;
}

.mb-n3,
.my-n3 {
  margin-bottom: -1rem !important;
}

.ml-n3,
.mx-n3 {
  margin-left: -1rem !important;
}

.m-n4 {
  margin: -1.5rem !important;
}

.mt-n4,
.my-n4 {
  margin-top: -1.5rem !important;
}

.mr-n4,
.mx-n4 {
  margin-right: -1.5rem !important;
}

.mb-n4,
.my-n4 {
  margin-bottom: -1.5rem !important;
}

.ml-n4,
.mx-n4 {
  margin-left: -1.5rem !important;
}

.m-n5 {
  margin: -3rem !important;
}

.mt-n5,
.my-n5 {
  margin-top: -3rem !important;
}

.mr-n5,
.mx-n5 {
  margin-right: -3rem !important;
}

.mb-n5,
.my-n5 {
  margin-bottom: -3rem !important;
}

.ml-n5,
.mx-n5 {
  margin-left: -3rem !important;
}

.m-auto {
  margin: auto !important;
}

.mt-auto,
.my-auto {
  margin-top: auto !important;
}

.mr-auto,
.mx-auto {
  margin-right: auto !important;
}

.mb-auto,
.my-auto {
  margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
  margin-left: auto !important;
}

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important;
  }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important;
  }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important;
  }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important;
  }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important;
  }
  .m-sm-1 {
    margin: 0.25rem !important;
  }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important;
  }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important;
  }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important;
  }
  .m-sm-2 {
    margin: 0.5rem !important;
  }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important;
  }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important;
  }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important;
  }
  .m-sm-3 {
    margin: 1rem !important;
  }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important;
  }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important;
  }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important;
  }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important;
  }
  .m-sm-4 {
    margin: 1.5rem !important;
  }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important;
  }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important;
  }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important;
  }
  .m-sm-5 {
    margin: 3rem !important;
  }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important;
  }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important;
  }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important;
  }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important;
  }
  .p-sm-0 {
    padding: 0 !important;
  }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important;
  }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important;
  }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important;
  }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important;
  }
  .p-sm-1 {
    padding: 0.25rem !important;
  }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important;
  }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important;
  }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important;
  }
  .p-sm-2 {
    padding: 0.5rem !important;
  }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important;
  }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important;
  }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important;
  }
  .p-sm-3 {
    padding: 1rem !important;
  }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important;
  }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important;
  }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important;
  }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important;
  }
  .p-sm-4 {
    padding: 1.5rem !important;
  }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important;
  }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important;
  }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important;
  }
  .p-sm-5 {
    padding: 3rem !important;
  }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important;
  }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important;
  }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important;
  }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important;
  }
  .m-sm-n1 {
    margin: -0.25rem !important;
  }
  .mt-sm-n1,
  .my-sm-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-sm-n1,
  .mx-sm-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-sm-n1,
  .my-sm-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-sm-n1,
  .mx-sm-n1 {
    margin-left: -0.25rem !important;
  }
  .m-sm-n2 {
    margin: -0.5rem !important;
  }
  .mt-sm-n2,
  .my-sm-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-sm-n2,
  .mx-sm-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-sm-n2,
  .my-sm-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-sm-n2,
  .mx-sm-n2 {
    margin-left: -0.5rem !important;
  }
  .m-sm-n3 {
    margin: -1rem !important;
  }
  .mt-sm-n3,
  .my-sm-n3 {
    margin-top: -1rem !important;
  }
  .mr-sm-n3,
  .mx-sm-n3 {
    margin-right: -1rem !important;
  }
  .mb-sm-n3,
  .my-sm-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-sm-n3,
  .mx-sm-n3 {
    margin-left: -1rem !important;
  }
  .m-sm-n4 {
    margin: -1.5rem !important;
  }
  .mt-sm-n4,
  .my-sm-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-sm-n4,
  .mx-sm-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-sm-n4,
  .my-sm-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-sm-n4,
  .mx-sm-n4 {
    margin-left: -1.5rem !important;
  }
  .m-sm-n5 {
    margin: -3rem !important;
  }
  .mt-sm-n5,
  .my-sm-n5 {
    margin-top: -3rem !important;
  }
  .mr-sm-n5,
  .mx-sm-n5 {
    margin-right: -3rem !important;
  }
  .mb-sm-n5,
  .my-sm-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-sm-n5,
  .mx-sm-n5 {
    margin-left: -3rem !important;
  }
  .m-sm-auto {
    margin: auto !important;
  }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important;
  }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important;
  }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important;
  }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 768px) {
  .m-md-0 {
    margin: 0 !important;
  }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important;
  }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important;
  }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important;
  }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important;
  }
  .m-md-1 {
    margin: 0.25rem !important;
  }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important;
  }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important;
  }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important;
  }
  .m-md-2 {
    margin: 0.5rem !important;
  }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important;
  }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important;
  }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important;
  }
  .m-md-3 {
    margin: 1rem !important;
  }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important;
  }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important;
  }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important;
  }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important;
  }
  .m-md-4 {
    margin: 1.5rem !important;
  }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important;
  }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important;
  }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important;
  }
  .m-md-5 {
    margin: 3rem !important;
  }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important;
  }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important;
  }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important;
  }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important;
  }
  .p-md-0 {
    padding: 0 !important;
  }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important;
  }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important;
  }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important;
  }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important;
  }
  .p-md-1 {
    padding: 0.25rem !important;
  }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important;
  }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important;
  }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important;
  }
  .p-md-2 {
    padding: 0.5rem !important;
  }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important;
  }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important;
  }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important;
  }
  .p-md-3 {
    padding: 1rem !important;
  }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important;
  }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important;
  }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important;
  }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important;
  }
  .p-md-4 {
    padding: 1.5rem !important;
  }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important;
  }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important;
  }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important;
  }
  .p-md-5 {
    padding: 3rem !important;
  }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important;
  }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important;
  }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important;
  }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important;
  }
  .m-md-n1 {
    margin: -0.25rem !important;
  }
  .mt-md-n1,
  .my-md-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-md-n1,
  .mx-md-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-md-n1,
  .my-md-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-md-n1,
  .mx-md-n1 {
    margin-left: -0.25rem !important;
  }
  .m-md-n2 {
    margin: -0.5rem !important;
  }
  .mt-md-n2,
  .my-md-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-md-n2,
  .mx-md-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-md-n2,
  .my-md-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-md-n2,
  .mx-md-n2 {
    margin-left: -0.5rem !important;
  }
  .m-md-n3 {
    margin: -1rem !important;
  }
  .mt-md-n3,
  .my-md-n3 {
    margin-top: -1rem !important;
  }
  .mr-md-n3,
  .mx-md-n3 {
    margin-right: -1rem !important;
  }
  .mb-md-n3,
  .my-md-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-md-n3,
  .mx-md-n3 {
    margin-left: -1rem !important;
  }
  .m-md-n4 {
    margin: -1.5rem !important;
  }
  .mt-md-n4,
  .my-md-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-md-n4,
  .mx-md-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-md-n4,
  .my-md-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-md-n4,
  .mx-md-n4 {
    margin-left: -1.5rem !important;
  }
  .m-md-n5 {
    margin: -3rem !important;
  }
  .mt-md-n5,
  .my-md-n5 {
    margin-top: -3rem !important;
  }
  .mr-md-n5,
  .mx-md-n5 {
    margin-right: -3rem !important;
  }
  .mb-md-n5,
  .my-md-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-md-n5,
  .mx-md-n5 {
    margin-left: -3rem !important;
  }
  .m-md-auto {
    margin: auto !important;
  }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important;
  }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important;
  }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important;
  }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1024px) {
  .m-lg-0 {
    margin: 0 !important;
  }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important;
  }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important;
  }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important;
  }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important;
  }
  .m-lg-1 {
    margin: 0.25rem !important;
  }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important;
  }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important;
  }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important;
  }
  .m-lg-2 {
    margin: 0.5rem !important;
  }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important;
  }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important;
  }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important;
  }
  .m-lg-3 {
    margin: 1rem !important;
  }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important;
  }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important;
  }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important;
  }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important;
  }
  .m-lg-4 {
    margin: 1.5rem !important;
  }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important;
  }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important;
  }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important;
  }
  .m-lg-5 {
    margin: 3rem !important;
  }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important;
  }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important;
  }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important;
  }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important;
  }
  .p-lg-0 {
    padding: 0 !important;
  }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important;
  }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important;
  }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important;
  }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important;
  }
  .p-lg-1 {
    padding: 0.25rem !important;
  }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important;
  }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important;
  }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important;
  }
  .p-lg-2 {
    padding: 0.5rem !important;
  }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important;
  }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important;
  }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important;
  }
  .p-lg-3 {
    padding: 1rem !important;
  }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important;
  }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important;
  }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important;
  }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important;
  }
  .p-lg-4 {
    padding: 1.5rem !important;
  }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important;
  }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important;
  }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important;
  }
  .p-lg-5 {
    padding: 3rem !important;
  }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important;
  }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important;
  }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important;
  }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important;
  }
  .m-lg-n1 {
    margin: -0.25rem !important;
  }
  .mt-lg-n1,
  .my-lg-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-lg-n1,
  .mx-lg-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-lg-n1,
  .my-lg-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-lg-n1,
  .mx-lg-n1 {
    margin-left: -0.25rem !important;
  }
  .m-lg-n2 {
    margin: -0.5rem !important;
  }
  .mt-lg-n2,
  .my-lg-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-lg-n2,
  .mx-lg-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-lg-n2,
  .my-lg-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-lg-n2,
  .mx-lg-n2 {
    margin-left: -0.5rem !important;
  }
  .m-lg-n3 {
    margin: -1rem !important;
  }
  .mt-lg-n3,
  .my-lg-n3 {
    margin-top: -1rem !important;
  }
  .mr-lg-n3,
  .mx-lg-n3 {
    margin-right: -1rem !important;
  }
  .mb-lg-n3,
  .my-lg-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-lg-n3,
  .mx-lg-n3 {
    margin-left: -1rem !important;
  }
  .m-lg-n4 {
    margin: -1.5rem !important;
  }
  .mt-lg-n4,
  .my-lg-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-lg-n4,
  .mx-lg-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-lg-n4,
  .my-lg-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-lg-n4,
  .mx-lg-n4 {
    margin-left: -1.5rem !important;
  }
  .m-lg-n5 {
    margin: -3rem !important;
  }
  .mt-lg-n5,
  .my-lg-n5 {
    margin-top: -3rem !important;
  }
  .mr-lg-n5,
  .mx-lg-n5 {
    margin-right: -3rem !important;
  }
  .mb-lg-n5,
  .my-lg-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-lg-n5,
  .mx-lg-n5 {
    margin-left: -3rem !important;
  }
  .m-lg-auto {
    margin: auto !important;
  }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important;
  }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important;
  }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important;
  }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1200px) {
  .m-xl-0 {
    margin: 0 !important;
  }
  .mt-xl-0,
  .my-xl-0 {
    margin-top: 0 !important;
  }
  .mr-xl-0,
  .mx-xl-0 {
    margin-right: 0 !important;
  }
  .mb-xl-0,
  .my-xl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xl-0,
  .mx-xl-0 {
    margin-left: 0 !important;
  }
  .m-xl-1 {
    margin: 0.25rem !important;
  }
  .mt-xl-1,
  .my-xl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xl-1,
  .mx-xl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xl-1,
  .my-xl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xl-1,
  .mx-xl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xl-2 {
    margin: 0.5rem !important;
  }
  .mt-xl-2,
  .my-xl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xl-2,
  .mx-xl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xl-2,
  .my-xl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xl-2,
  .mx-xl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xl-3 {
    margin: 1rem !important;
  }
  .mt-xl-3,
  .my-xl-3 {
    margin-top: 1rem !important;
  }
  .mr-xl-3,
  .mx-xl-3 {
    margin-right: 1rem !important;
  }
  .mb-xl-3,
  .my-xl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xl-3,
  .mx-xl-3 {
    margin-left: 1rem !important;
  }
  .m-xl-4 {
    margin: 1.5rem !important;
  }
  .mt-xl-4,
  .my-xl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xl-4,
  .mx-xl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xl-4,
  .my-xl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xl-4,
  .mx-xl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xl-5 {
    margin: 3rem !important;
  }
  .mt-xl-5,
  .my-xl-5 {
    margin-top: 3rem !important;
  }
  .mr-xl-5,
  .mx-xl-5 {
    margin-right: 3rem !important;
  }
  .mb-xl-5,
  .my-xl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xl-5,
  .mx-xl-5 {
    margin-left: 3rem !important;
  }
  .p-xl-0 {
    padding: 0 !important;
  }
  .pt-xl-0,
  .py-xl-0 {
    padding-top: 0 !important;
  }
  .pr-xl-0,
  .px-xl-0 {
    padding-right: 0 !important;
  }
  .pb-xl-0,
  .py-xl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xl-0,
  .px-xl-0 {
    padding-left: 0 !important;
  }
  .p-xl-1 {
    padding: 0.25rem !important;
  }
  .pt-xl-1,
  .py-xl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xl-1,
  .px-xl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xl-1,
  .py-xl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xl-1,
  .px-xl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xl-2 {
    padding: 0.5rem !important;
  }
  .pt-xl-2,
  .py-xl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xl-2,
  .px-xl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xl-2,
  .py-xl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xl-2,
  .px-xl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xl-3 {
    padding: 1rem !important;
  }
  .pt-xl-3,
  .py-xl-3 {
    padding-top: 1rem !important;
  }
  .pr-xl-3,
  .px-xl-3 {
    padding-right: 1rem !important;
  }
  .pb-xl-3,
  .py-xl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xl-3,
  .px-xl-3 {
    padding-left: 1rem !important;
  }
  .p-xl-4 {
    padding: 1.5rem !important;
  }
  .pt-xl-4,
  .py-xl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xl-4,
  .px-xl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xl-4,
  .py-xl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xl-4,
  .px-xl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xl-5 {
    padding: 3rem !important;
  }
  .pt-xl-5,
  .py-xl-5 {
    padding-top: 3rem !important;
  }
  .pr-xl-5,
  .px-xl-5 {
    padding-right: 3rem !important;
  }
  .pb-xl-5,
  .py-xl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xl-5,
  .px-xl-5 {
    padding-left: 3rem !important;
  }
  .m-xl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xl-n1,
  .my-xl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xl-n1,
  .mx-xl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xl-n1,
  .my-xl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xl-n1,
  .mx-xl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xl-n2,
  .my-xl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xl-n2,
  .mx-xl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xl-n2,
  .my-xl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xl-n2,
  .mx-xl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xl-n3 {
    margin: -1rem !important;
  }
  .mt-xl-n3,
  .my-xl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xl-n3,
  .mx-xl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xl-n3,
  .my-xl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xl-n3,
  .mx-xl-n3 {
    margin-left: -1rem !important;
  }
  .m-xl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xl-n4,
  .my-xl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xl-n4,
  .mx-xl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xl-n4,
  .my-xl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xl-n4,
  .mx-xl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xl-n5 {
    margin: -3rem !important;
  }
  .mt-xl-n5,
  .my-xl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xl-n5,
  .mx-xl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xl-n5,
  .my-xl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xl-n5,
  .mx-xl-n5 {
    margin-left: -3rem !important;
  }
  .m-xl-auto {
    margin: auto !important;
  }
  .mt-xl-auto,
  .my-xl-auto {
    margin-top: auto !important;
  }
  .mr-xl-auto,
  .mx-xl-auto {
    margin-right: auto !important;
  }
  .mb-xl-auto,
  .my-xl-auto {
    margin-bottom: auto !important;
  }
  .ml-xl-auto,
  .mx-xl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1400px) {
  .m-xxl-0 {
    margin: 0 !important;
  }
  .mt-xxl-0,
  .my-xxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxl-0,
  .mx-xxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxl-0,
  .my-xxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxl-0,
  .mx-xxl-0 {
    margin-left: 0 !important;
  }
  .m-xxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxl-1,
  .my-xxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxl-1,
  .mx-xxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxl-1,
  .my-xxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxl-1,
  .mx-xxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxl-2,
  .my-xxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxl-2,
  .mx-xxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxl-2,
  .my-xxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxl-2,
  .mx-xxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxl-3 {
    margin: 1rem !important;
  }
  .mt-xxl-3,
  .my-xxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxl-3,
  .mx-xxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxl-3,
  .my-xxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxl-3,
  .mx-xxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxl-4,
  .my-xxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxl-4,
  .mx-xxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxl-4,
  .my-xxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxl-4,
  .mx-xxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxl-5 {
    margin: 3rem !important;
  }
  .mt-xxl-5,
  .my-xxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxl-5,
  .mx-xxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxl-5,
  .my-xxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxl-5,
  .mx-xxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxl-0 {
    padding: 0 !important;
  }
  .pt-xxl-0,
  .py-xxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxl-0,
  .px-xxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxl-0,
  .py-xxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxl-0,
  .px-xxl-0 {
    padding-left: 0 !important;
  }
  .p-xxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxl-1,
  .py-xxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxl-1,
  .px-xxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxl-1,
  .py-xxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxl-1,
  .px-xxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxl-2,
  .py-xxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxl-2,
  .px-xxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxl-2,
  .py-xxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxl-2,
  .px-xxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxl-3 {
    padding: 1rem !important;
  }
  .pt-xxl-3,
  .py-xxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxl-3,
  .px-xxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxl-3,
  .py-xxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxl-3,
  .px-xxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxl-4,
  .py-xxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxl-4,
  .px-xxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxl-4,
  .py-xxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxl-4,
  .px-xxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxl-5 {
    padding: 3rem !important;
  }
  .pt-xxl-5,
  .py-xxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxl-5,
  .px-xxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxl-5,
  .py-xxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxl-5,
  .px-xxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxl-n1,
  .my-xxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxl-n1,
  .mx-xxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxl-n1,
  .my-xxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxl-n1,
  .mx-xxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxl-n2,
  .my-xxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxl-n2,
  .mx-xxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxl-n2,
  .my-xxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxl-n2,
  .mx-xxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxl-n3,
  .my-xxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxl-n3,
  .mx-xxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxl-n3,
  .my-xxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxl-n3,
  .mx-xxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxl-n4,
  .my-xxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxl-n4,
  .mx-xxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxl-n4,
  .my-xxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxl-n4,
  .mx-xxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxl-n5,
  .my-xxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxl-n5,
  .mx-xxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxl-n5,
  .my-xxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxl-n5,
  .mx-xxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxl-auto {
    margin: auto !important;
  }
  .mt-xxl-auto,
  .my-xxl-auto {
    margin-top: auto !important;
  }
  .mr-xxl-auto,
  .mx-xxl-auto {
    margin-right: auto !important;
  }
  .mb-xxl-auto,
  .my-xxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxl-auto,
  .mx-xxl-auto {
    margin-left: auto !important;
  }
}

@media (min-width: 1800px) {
  .m-xxxl-0 {
    margin: 0 !important;
  }
  .mt-xxxl-0,
  .my-xxxl-0 {
    margin-top: 0 !important;
  }
  .mr-xxxl-0,
  .mx-xxxl-0 {
    margin-right: 0 !important;
  }
  .mb-xxxl-0,
  .my-xxxl-0 {
    margin-bottom: 0 !important;
  }
  .ml-xxxl-0,
  .mx-xxxl-0 {
    margin-left: 0 !important;
  }
  .m-xxxl-1 {
    margin: 0.25rem !important;
  }
  .mt-xxxl-1,
  .my-xxxl-1 {
    margin-top: 0.25rem !important;
  }
  .mr-xxxl-1,
  .mx-xxxl-1 {
    margin-right: 0.25rem !important;
  }
  .mb-xxxl-1,
  .my-xxxl-1 {
    margin-bottom: 0.25rem !important;
  }
  .ml-xxxl-1,
  .mx-xxxl-1 {
    margin-left: 0.25rem !important;
  }
  .m-xxxl-2 {
    margin: 0.5rem !important;
  }
  .mt-xxxl-2,
  .my-xxxl-2 {
    margin-top: 0.5rem !important;
  }
  .mr-xxxl-2,
  .mx-xxxl-2 {
    margin-right: 0.5rem !important;
  }
  .mb-xxxl-2,
  .my-xxxl-2 {
    margin-bottom: 0.5rem !important;
  }
  .ml-xxxl-2,
  .mx-xxxl-2 {
    margin-left: 0.5rem !important;
  }
  .m-xxxl-3 {
    margin: 1rem !important;
  }
  .mt-xxxl-3,
  .my-xxxl-3 {
    margin-top: 1rem !important;
  }
  .mr-xxxl-3,
  .mx-xxxl-3 {
    margin-right: 1rem !important;
  }
  .mb-xxxl-3,
  .my-xxxl-3 {
    margin-bottom: 1rem !important;
  }
  .ml-xxxl-3,
  .mx-xxxl-3 {
    margin-left: 1rem !important;
  }
  .m-xxxl-4 {
    margin: 1.5rem !important;
  }
  .mt-xxxl-4,
  .my-xxxl-4 {
    margin-top: 1.5rem !important;
  }
  .mr-xxxl-4,
  .mx-xxxl-4 {
    margin-right: 1.5rem !important;
  }
  .mb-xxxl-4,
  .my-xxxl-4 {
    margin-bottom: 1.5rem !important;
  }
  .ml-xxxl-4,
  .mx-xxxl-4 {
    margin-left: 1.5rem !important;
  }
  .m-xxxl-5 {
    margin: 3rem !important;
  }
  .mt-xxxl-5,
  .my-xxxl-5 {
    margin-top: 3rem !important;
  }
  .mr-xxxl-5,
  .mx-xxxl-5 {
    margin-right: 3rem !important;
  }
  .mb-xxxl-5,
  .my-xxxl-5 {
    margin-bottom: 3rem !important;
  }
  .ml-xxxl-5,
  .mx-xxxl-5 {
    margin-left: 3rem !important;
  }
  .p-xxxl-0 {
    padding: 0 !important;
  }
  .pt-xxxl-0,
  .py-xxxl-0 {
    padding-top: 0 !important;
  }
  .pr-xxxl-0,
  .px-xxxl-0 {
    padding-right: 0 !important;
  }
  .pb-xxxl-0,
  .py-xxxl-0 {
    padding-bottom: 0 !important;
  }
  .pl-xxxl-0,
  .px-xxxl-0 {
    padding-left: 0 !important;
  }
  .p-xxxl-1 {
    padding: 0.25rem !important;
  }
  .pt-xxxl-1,
  .py-xxxl-1 {
    padding-top: 0.25rem !important;
  }
  .pr-xxxl-1,
  .px-xxxl-1 {
    padding-right: 0.25rem !important;
  }
  .pb-xxxl-1,
  .py-xxxl-1 {
    padding-bottom: 0.25rem !important;
  }
  .pl-xxxl-1,
  .px-xxxl-1 {
    padding-left: 0.25rem !important;
  }
  .p-xxxl-2 {
    padding: 0.5rem !important;
  }
  .pt-xxxl-2,
  .py-xxxl-2 {
    padding-top: 0.5rem !important;
  }
  .pr-xxxl-2,
  .px-xxxl-2 {
    padding-right: 0.5rem !important;
  }
  .pb-xxxl-2,
  .py-xxxl-2 {
    padding-bottom: 0.5rem !important;
  }
  .pl-xxxl-2,
  .px-xxxl-2 {
    padding-left: 0.5rem !important;
  }
  .p-xxxl-3 {
    padding: 1rem !important;
  }
  .pt-xxxl-3,
  .py-xxxl-3 {
    padding-top: 1rem !important;
  }
  .pr-xxxl-3,
  .px-xxxl-3 {
    padding-right: 1rem !important;
  }
  .pb-xxxl-3,
  .py-xxxl-3 {
    padding-bottom: 1rem !important;
  }
  .pl-xxxl-3,
  .px-xxxl-3 {
    padding-left: 1rem !important;
  }
  .p-xxxl-4 {
    padding: 1.5rem !important;
  }
  .pt-xxxl-4,
  .py-xxxl-4 {
    padding-top: 1.5rem !important;
  }
  .pr-xxxl-4,
  .px-xxxl-4 {
    padding-right: 1.5rem !important;
  }
  .pb-xxxl-4,
  .py-xxxl-4 {
    padding-bottom: 1.5rem !important;
  }
  .pl-xxxl-4,
  .px-xxxl-4 {
    padding-left: 1.5rem !important;
  }
  .p-xxxl-5 {
    padding: 3rem !important;
  }
  .pt-xxxl-5,
  .py-xxxl-5 {
    padding-top: 3rem !important;
  }
  .pr-xxxl-5,
  .px-xxxl-5 {
    padding-right: 3rem !important;
  }
  .pb-xxxl-5,
  .py-xxxl-5 {
    padding-bottom: 3rem !important;
  }
  .pl-xxxl-5,
  .px-xxxl-5 {
    padding-left: 3rem !important;
  }
  .m-xxxl-n1 {
    margin: -0.25rem !important;
  }
  .mt-xxxl-n1,
  .my-xxxl-n1 {
    margin-top: -0.25rem !important;
  }
  .mr-xxxl-n1,
  .mx-xxxl-n1 {
    margin-right: -0.25rem !important;
  }
  .mb-xxxl-n1,
  .my-xxxl-n1 {
    margin-bottom: -0.25rem !important;
  }
  .ml-xxxl-n1,
  .mx-xxxl-n1 {
    margin-left: -0.25rem !important;
  }
  .m-xxxl-n2 {
    margin: -0.5rem !important;
  }
  .mt-xxxl-n2,
  .my-xxxl-n2 {
    margin-top: -0.5rem !important;
  }
  .mr-xxxl-n2,
  .mx-xxxl-n2 {
    margin-right: -0.5rem !important;
  }
  .mb-xxxl-n2,
  .my-xxxl-n2 {
    margin-bottom: -0.5rem !important;
  }
  .ml-xxxl-n2,
  .mx-xxxl-n2 {
    margin-left: -0.5rem !important;
  }
  .m-xxxl-n3 {
    margin: -1rem !important;
  }
  .mt-xxxl-n3,
  .my-xxxl-n3 {
    margin-top: -1rem !important;
  }
  .mr-xxxl-n3,
  .mx-xxxl-n3 {
    margin-right: -1rem !important;
  }
  .mb-xxxl-n3,
  .my-xxxl-n3 {
    margin-bottom: -1rem !important;
  }
  .ml-xxxl-n3,
  .mx-xxxl-n3 {
    margin-left: -1rem !important;
  }
  .m-xxxl-n4 {
    margin: -1.5rem !important;
  }
  .mt-xxxl-n4,
  .my-xxxl-n4 {
    margin-top: -1.5rem !important;
  }
  .mr-xxxl-n4,
  .mx-xxxl-n4 {
    margin-right: -1.5rem !important;
  }
  .mb-xxxl-n4,
  .my-xxxl-n4 {
    margin-bottom: -1.5rem !important;
  }
  .ml-xxxl-n4,
  .mx-xxxl-n4 {
    margin-left: -1.5rem !important;
  }
  .m-xxxl-n5 {
    margin: -3rem !important;
  }
  .mt-xxxl-n5,
  .my-xxxl-n5 {
    margin-top: -3rem !important;
  }
  .mr-xxxl-n5,
  .mx-xxxl-n5 {
    margin-right: -3rem !important;
  }
  .mb-xxxl-n5,
  .my-xxxl-n5 {
    margin-bottom: -3rem !important;
  }
  .ml-xxxl-n5,
  .mx-xxxl-n5 {
    margin-left: -3rem !important;
  }
  .m-xxxl-auto {
    margin: auto !important;
  }
  .mt-xxxl-auto,
  .my-xxxl-auto {
    margin-top: auto !important;
  }
  .mr-xxxl-auto,
  .mx-xxxl-auto {
    margin-right: auto !important;
  }
  .mb-xxxl-auto,
  .my-xxxl-auto {
    margin-bottom: auto !important;
  }
  .ml-xxxl-auto,
  .mx-xxxl-auto {
    margin-left: auto !important;
  }
}

.stretched-link::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace !important;
}

.text-justify {
  text-align: justify !important;
}

.text-wrap {
  white-space: normal !important;
}

.text-nowrap {
  white-space: nowrap !important;
}

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-left {
  text-align: left !important;
}

.text-right {
  text-align: right !important;
}

.text-center {
  text-align: center !important;
}

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important;
  }
  .text-sm-right {
    text-align: right !important;
  }
  .text-sm-center {
    text-align: center !important;
  }
}

@media (min-width: 768px) {
  .text-md-left {
    text-align: left !important;
  }
  .text-md-right {
    text-align: right !important;
  }
  .text-md-center {
    text-align: center !important;
  }
}

@media (min-width: 1024px) {
  .text-lg-left {
    text-align: left !important;
  }
  .text-lg-right {
    text-align: right !important;
  }
  .text-lg-center {
    text-align: center !important;
  }
}

@media (min-width: 1200px) {
  .text-xl-left {
    text-align: left !important;
  }
  .text-xl-right {
    text-align: right !important;
  }
  .text-xl-center {
    text-align: center !important;
  }
}

@media (min-width: 1400px) {
  .text-xxl-left {
    text-align: left !important;
  }
  .text-xxl-right {
    text-align: right !important;
  }
  .text-xxl-center {
    text-align: center !important;
  }
}

@media (min-width: 1800px) {
  .text-xxxl-left {
    text-align: left !important;
  }
  .text-xxxl-right {
    text-align: right !important;
  }
  .text-xxxl-center {
    text-align: center !important;
  }
}

.text-lowercase {
  text-transform: lowercase !important;
}

.text-uppercase {
  text-transform: uppercase !important;
}

.text-capitalize {
  text-transform: capitalize !important;
}

.font-weight-light {
  font-weight: 300 !important;
}

.font-weight-lighter {
  font-weight: lighter !important;
}

.font-weight-normal {
  font-weight: 400 !important;
}

.font-weight-bold {
  font-weight: 700 !important;
}

.font-weight-bolder {
  font-weight: bolder !important;
}

.font-italic {
  font-style: italic !important;
}

.text-white {
  color: #fff !important;
}

.text-primary {
  color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
  color: #0056b3 !important;
}

.text-secondary {
  color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
  color: #494f54 !important;
}

.text-success {
  color: #398f14 !important;
}

a.text-success:hover, a.text-success:focus {
  color: #1e4c0b !important;
}

.text-info {
  color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
  color: #0f6674 !important;
}

.text-warning {
  color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
  color: #ba8b00 !important;
}

.text-danger {
  color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
  color: #a71d2a !important;
}

.text-light {
  color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
  color: #cbd3da !important;
}

.text-dark {
  color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
  color: #121416 !important;
}

.text-body {
  color: #212529 !important;
}

.text-muted {
  color: #6c757d !important;
}

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0;
}

.text-decoration-none {
  text-decoration: none !important;
}

.text-break {
  word-break: break-word !important;
  word-wrap: break-word !important;
}

.text-reset {
  color: inherit !important;
}

.visible {
  visibility: visible !important;
}

.invisible {
  visibility: hidden !important;
}

@media print {
  *,
  *::before,
  *::after {
    text-shadow: none !important;
    -webkit-box-shadow: none !important;
            box-shadow: none !important;
  }
  a:not(.btn) {
    text-decoration: underline;
  }
  abbr[title]::after {
    content: " (" attr(title) ")";
  }
  pre {
    white-space: pre-wrap !important;
  }
  pre,
  blockquote {
    border: 1px solid #adb5bd;
    page-break-inside: avoid;
  }
  tr,
  img {
    page-break-inside: avoid;
  }
  p,
  h2,
  h3 {
    orphans: 3;
    widows: 3;
  }
  h2,
  h3 {
    page-break-after: avoid;
  }
  @page {
    size: a3;
  }
  body {
    min-width: 1024px !important;
  }
  .container {
    min-width: 1024px !important;
  }
  .navbar {
    display: none;
  }
  .badge {
    border: 1px solid #000;
  }
  .table {
    border-collapse: collapse !important;
  }
  .table td,
  .table th {
    background-color: #fff !important;
  }
  .table-bordered th,
  .table-bordered td {
    border: 1px solid #dee2e6 !important;
  }
  .table-dark {
    color: inherit;
  }
  .table-dark th,
  .table-dark td,
  .table-dark thead th,
  .table-dark tbody + tbody {
    border-color: #dee2e6;
  }
  .table .thead-dark th {
    color: inherit;
    border-color: #dee2e6;
  }
}

/**
 * Import npm dependencies
 *
 * Prefix your imports with `~` to grab from node_modules/
 * @see https://github.com/webpack-contrib/sass-loader#imports
 */
/** Import theme styles */
/*
 * Mixins
 */
/*
 * Common
 */
html {
  font-size: 10px;
  background: #001c44;
}

body {
  /* background: white; */
  background: #fcfbf9;
  color: #636870;
  font-family: "Gotham-Book", "Arial", sans-serif;
  font-size: 1.6rem;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-text-size-adjust: 100%;
  -webkit-animation: fadein 2s;
       -o-animation: fadein 2s;
          animation: fadein 2s;
}

#app {
  max-width: 1920px;
  margin: 0 auto;
  background: #fff;
}

@-webkit-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-o-keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

img {
  width: 100%;
  height: auto;
}

ul {
  padding: 0;
}

li {
  list-style: none;
}

p {
  color: #636870;
}

a:hover {
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "raisonne-light-pro", sans-serif;
  margin-bottom: 0;
  color: #00204e;
  text-transform: uppercase;
}

h1 {
  font-size: 5.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

.horizontal-rule {
  width: 3rem;
  height: 0.1rem;
  background: rgba(99, 104, 112, 0.5);
}

.clear {
  clear: both;
}

.hidden {
  display: none;
}

.body-text-arial {
  font-family: "Arial", sans-serif;
  color: #374151;
}

.object-fit-cover {
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
}

.header-line {
  height: 1px;
  width: 100%;
  position: absolute;
  top: 0.5rem;
  /* background: rgba(255, 255, 255, 0.2); */
  background: rgba(0, 0, 0, 0.03);
  z-index: 35;
}

@media (min-width: 576px) {
  .container {
    max-width: none;
  }
}

.normal-link {
  color: #425b74;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.normal-link:hover {
  color: #a08032;
  text-decoration: underline;
}

.blue-scrollbar::-webkit-scrollbar-track {
  background-color: #fcfbf9;
  margin-right: 1rem;
}

.blue-scrollbar::-webkit-scrollbar {
  width: 0.8rem;
  background-color: #00204e;
}

.blue-scrollbar::-webkit-scrollbar-thumb {
  background-color: #00204e;
}

.page-title {
  text-align: center;
  padding: 6rem 0;
  font-size: 2.2rem;
  -webkit-transition: font-size 0.5s ease;
  -o-transition: font-size 0.5s ease;
  transition: font-size 0.5s ease;
}

@media (min-width: 768px) {
  .page-title {
    font-size: 3.3rem;
  }
}

@media (min-width: 1200px) {
  .page-title {
    font-size: 5.5rem;
  }
}

.embed-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  max-width: 100%;
}

.embed-container-fit {
  padding-bottom: 0;
  width: 100%;
  height: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.embed-container-overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.embed-container-overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

.embed-container-overlay.is-playing {
  opacity: 0;
  visibility: hidden;
}

.embed-play {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  z-index: 2;
}

.embed-play .icon {
  color: #fff;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  font-size: 100px;
}

hr.hr-blank-spacing {
  clear: both;
  border-color: transparent;
  margin: 20px 0;
}

@media (min-width: 768px) {
  hr.hr-blank-spacing {
    margin: 45px 0;
  }
}

@media (max-width: 767.98px) {
  .table-responsive::before {
    display: block;
    content: "Scroll Across \BB";
    text-align: left;
    position: sticky;
    left: 0;
    font-weight: bold;
  }
}

.table-responsive table {
  width: 100%;
  margin-bottom: 1rem;
}

.table-responsive table th,
.table-responsive table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

div.wpcf7 img.ajax-loader {
  width: auto !important;
}

/*
 * Merriweather 300 / PT Sans / Playfair Display
 stopped using font
 */
/* @font-face {
  font-family: 'atc';
  src: url('../fonts/atc.eot');
  src: url('../fonts/atc.eot') format('embedded-opentype'),
  url('../fonts/atc.ttf') format('truetype'),
  url('../fonts/atc.woff') format('woff'),
  url('../fonts/atc.svg') format('svg');
  font-weight: normal;
  font-style: normal;
} */
@font-face {
  font-family: 'raisonne-light-pro';
  src: url("../fonts/raisonne-light-pro.eot");
  src: url("../fonts/raisonne-light-pro.eot?#iefix") format("embedded-opentype"), url("../fonts/raisonne-light-pro.woff2") format("woff2"), url("../fonts/raisonne-light-pro.woff") format("woff"), url("../fonts/raisonne-light-pro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'raisonne-demibold-pro';
  src: url("../fonts/raisonne-demibold-pro.eot");
  src: url("../fonts/raisonne-demibold-pro.eot?#iefix") format("embedded-opentype"), url("../fonts/raisonne-demibold-pro.woff2") format("woff2"), url("../fonts/raisonne-demibold-pro.woff") format("woff"), url("../fonts/raisonne-demibold-pro.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'Gotham-Book';
  src: url("../fonts/Gotham-Book.eot");
  src: url("../fonts/Gotham-Book.eot?#iefix") format("embedded-opentype"), url("../fonts/Gotham-Book.woff") format("woff"), url("../fonts/Gotham-Book.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}

.background--dark {
  background: #00204e;
}

.background--grey {
  background: #f8f8f8;
}

.background--white {
  background: #FFF;
}

@font-face {
  font-family: 'atc';
  src: url("../fonts/atc.eot");
  src: url("../fonts/atc.eot") format("embedded-opentype"), url("../fonts/atc.ttf") format("truetype"), url("../fonts/atc.woff") format("woff"), url("../fonts/atc.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}

[class^="icon-"],
[class*=" icon-"] {
  font-family: 'atc' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
}

.icon-expand_more:before {
  content: "\E801";
}

.icon-tick {
  display: inline;
}

.icon-tick:before {
  content: "\E901";
}

.icon-envelope:before {
  content: "\E900";
}

.icon-google-plus:before {
  content: "\EA8B";
}

.icon-facebook2:before {
  content: "\EA91";
}

.icon-instagram:before {
  content: "\EA92";
}

.icon-whatsapp:before {
  content: "\EA93";
}

.icon-twitter:before {
  content: "\EA96";
}

.icon-youtube:before {
  content: "\EA9D";
}

.icon-linkedin:before {
  content: "\EAC9";
}

.icon-play:before {
  content: "\EA1C";
}

.icon-search:before {
  content: "\E8FE";
}

.icon-tiktok:before {
  content: "\E80C";
}

/*
 * Components
 */
button:focus {
  outline: none;
}

.btn, .comment-form input[type="submit"], .search-form .search-submit {
  padding: 1.5rem 3rem;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}

.btn:hover, .comment-form input:hover[type="submit"], .search-form .search-submit:hover {
  background-position: 91% 50%;
}

.btn--disabled {
  pointer-events: none;
  opacity: 0.2;
}

.btn--outline {
  color: #374151;
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 0.3rem;
}

.btn--outline:hover {
  background: #00204e;
  border: 1px solid #00204e;
  color: white;
}

.btn--solid {
  background-color: #00204e;
  border: 1px solid #00204e;
  color: white;
  border-radius: 0.3rem;
}

.btn--solid:hover {
  color: #00204e;
  border: 1px solid #a08032;
  background-color: transparent;
}

.btn--solid-gold {
  background-color: #a08032;
  border: 1px solid #a08032;
  color: #fff;
  border-radius: 0.3rem;
}

.btn--solid-gold:hover {
  color: #fff;
}

.btn--outline-light {
  color: white;
  border: 1px solid #a08032;
  border-radius: 0.3rem;
}

.btn--outline-light:hover {
  background-color: white;
  border: 1px solid white;
  color: #00204e;
}

.btn--outline-gold {
  color: #a08032;
  border: 1px solid #a08032;
  border-radius: 0.3rem;
}

.btn--outline-gold:hover {
  background-color: white;
  border: 1px solid #a08032;
  color: #a08032;
}

.btn--solid-light {
  background-color: white;
  border: 1px solid white;
  color: #00204e;
  border-radius: 0.3rem;
}

.btn--solid-light:hover {
  color: white;
  border: 1px solid #a08032;
  background-color: transparent;
}

.btn--forward {
  padding: 1rem 5rem 1rem 2rem;
  background-image: url(../images/arrow-right.svg) !important;
  background-repeat: no-repeat !important;
  background-size: auto 25%;
  background-position: right 3rem top 50%;
  -webkit-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  -o-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
}

.btn--forward:hover {
  background-position: right 1.5rem top 50%;
}

.btn--solid-gold.btn--forward {
  background-image: url(../images/arrowwhite.svg) !important;
}

.btn--back {
  padding: 1rem 2rem 1rem 5rem;
  background-image: url(../images/arrow-left.svg) !important;
  background-repeat: no-repeat !important;
  background-size: auto 25%;
  background-position: left 3rem top 50%;
  -webkit-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  -o-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
}

.btn--back:hover {
  background-position: left 1.5rem top 50%;
}

.btn--down {
  padding: 1rem 7rem 1rem 2rem;
  background-image: url(../images/arrow-down.svg) !important;
  background-repeat: no-repeat !important;
  background-size: auto 35%;
  background-position: right 0.5em top 48%;
  -webkit-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  -o-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
}

.btn--down:hover {
  background-position: right 0.5em top 48%;
  color: #fcfbf9 !important;
  background-size: 0;
}

.comment-list ol {
  list-style: none;
}

/** Search form */
.search-form label {
  font-weight: normal;
}

.mailchimp__subscribe {
  position: relative;
  margin-top: 1.5rem;
  margin-bottom: 3rem;
}

.mailchimp__email {
  width: 100%;
  padding: 0 1.5rem;
  height: 4.5rem;
  border: none;
}

@media (min-width: 768px) {
  .mailchimp__email {
    min-width: 32rem;
  }
}

.mailchimp__submit {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  height: 4.5rem;
  border: none;
  border-left: 1px solid #e8e9ea;
  color: #425b74;
  cursor: pointer;
  -webkit-transition: color 0.5s ease, background 0.5s ease;
  -o-transition: color 0.5s ease, background 0.5s ease;
  transition: color 0.5s ease, background 0.5s ease;
}

.mailchimp__submit:hover {
  color: #001932;
  background: #a08032;
}

.mc4wp-response p {
  color: white;
  font-weight: bold;
  margin-bottom: 6rem;
}

@media (max-width: 1023.98px) {
  .mc4wp-response p {
    margin-bottom: 3rem;
  }
}

.wpcf7-response-output {
  margin: 3rem 0 !important;
  padding: 0 !important;
}

.wpcf7-validation-errors, .wpcf7-acceptance-missing {
  border: none !important;
}

.wpcf7-mail-sent-ok {
  border: none !important;
  color: #398f14;
}

.wpcf7-list-item {
  margin-left: 0 !important;
  cursor: pointer;
}

.wpcf7-list-item label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.wpcf7-list-item-label {
  margin-top: -1.5rem !important;
  margin-left: 3rem !important;
  cursor: pointer;
}

/**
 * WordPress Generated Classes
 * @see http://codex.wordpress.org/CSS#WordPress_Generated_Classes
 */
/** Media alignment */
.alignnone {
  margin-left: 0;
  margin-right: 0;
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0.5rem auto;
  height: auto;
}

.alignleft,
.alignright {
  margin-bottom: 0.5rem;
  height: auto;
}

@media (min-width: 576px) {
  .alignleft {
    float: left;
    margin-right: 0.5rem;
  }
  .alignright {
    float: right;
    margin-left: 0.5rem;
  }
}

/** Captions */
/** Text meant only for screen readers */
.burger {
  display: inline-block;
  cursor: pointer;
  background-color: transparent;
  border: 0;
  /* padding: 15px;  */
  padding: 13px;
  line-height: 1;
}

.burger-box {
  width: 25px;
  height: 20px;
  display: inline-block;
  position: relative;
}

.burger-inner {
  display: block;
  top: 50%;
}

.burger-inner,
.burger-inner::before,
.burger-inner::after {
  width: 25px;
  height: 2px;
  background-color: #fff;
  border-radius: 2px;
  position: absolute;
  -webkit-transition: -webkit-transform 0.15s ease;
  transition: -webkit-transform 0.15s ease;
  -o-transition: -o-transform 0.15s ease;
  transition: transform 0.15s ease;
  transition: transform 0.15s ease, -webkit-transform 0.15s ease, -o-transform 0.15s ease;
}

.burger-inner::before,
.burger-inner::after {
  content: "";
  display: block;
}

.burger--slider .burger-inner {
  top: 0px;
}

.burger--slider .burger-inner::before {
  top: 8px;
  -webkit-transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
  transition: opacity 0.15s ease, -webkit-transform 0.15s ease;
  -o-transition: opacity 0.15s ease, -o-transform 0.15s ease;
  transition: transform 0.15s ease, opacity 0.15s ease;
  transition: transform 0.15s ease, opacity 0.15s ease, -webkit-transform 0.15s ease, -o-transform 0.15s ease;
}

.burger--slider .burger-inner::after {
  top: 16px;
}

.burger--slider.is-active .burger-inner {
  -webkit-transform: translate3d(0, 8px, 0) rotate(45deg);
          transform: translate3d(0, 8px, 0) rotate(45deg);
}

.burger--slider.is-active .burger-inner::before {
  -webkit-transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
          transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
  opacity: 0;
}

.burger--slider.is-active .burger-inner::after {
  -webkit-transform: translate3d(0, -16px, 0) rotate(-90deg);
          transform: translate3d(0, -16px, 0) rotate(-90deg);
}

.dm_widget {
  margin: 1.5rem 0 6rem 0;
}

.dm_widget h3 {
  display: none;
}

.dm_widget p {
  display: none;
}

.dm_widget br {
  display: none;
}

.dm_widget label {
  display: none;
}

.dm_widget form {
  position: relative;
}

.dm_widget input {
  height: 4.5rem;
  border: none;
}

.dm_widget input[type="text"] {
  width: 100%;
  padding: 0 1.5rem;
}

.dm_widget input[type="submit"] {
  position: absolute;
  top: 0;
  right: 0;
  margin: 0 !important;
  padding: 0 1.5rem;
  font-size: 1.6rem;
  border-left: 1px solid #e8e9ea;
  color: #425b74;
  cursor: pointer;
  -webkit-transition: color 0.5s ease, background 0.5s ease;
  -o-transition: color 0.5s ease, background 0.5s ease;
  transition: color 0.5s ease, background 0.5s ease;
}

.dm_widget input[type="submit"]:hover {
  color: #001932;
  background: #a08032;
}

@media (max-width: 767.98px) {
  .dm_widget {
    margin: 1.5rem 0 3rem 0;
  }
}

.horloge {
  width: 120px;
  height: 120px;
  overflow: hidden;
  margin-top: 3rem;
  float: right;
  background-image: url("/app/themes/e3creative/dist/images/dial.png");
  background-size: cover;
}

@media (max-width: 1023.98px) {
  .horloge {
    margin-top: 0;
  }
}

@media (max-width: 767.98px) {
  .horloge {
    position: absolute;
    right: -5px;
  }
}

@media (min-width: 300px) {
  #loginesBox {
    margin: 30px auto 0 auto;
  }
}

.module__mobile-title {
  position: relative;
  padding: 1.5rem 80px 1.5rem 3rem;
  background: #f9f6f2;
  border-bottom: 1px solid #f2ede5;
  -webkit-transition: border-bottom 0.5s ease;
  -o-transition: border-bottom 0.5s ease;
  transition: border-bottom 0.5s ease;
  cursor: pointer;
}

.module__mobile-title h3 {
  font-size: 24px;
}

@media (min-width: 768px) {
  .module__mobile-title h3 {
    font-size: 24px;
  }
}

.module__mobile-arrow {
  position: absolute;
  height: 4rem;
  width: 4rem;
  right: 3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  border: 1px solid #cdcfd2;
  border-radius: 0.3rem;
}

.module__mobile-arrow--down {
  width: 50%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -40%);
       -o-transform: translate(-50%, -40%);
          transform: translate(-50%, -40%);
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

.module {
  overflow: hidden;
}

@media (min-width: 1024px) {
  .module {
    display: block !important;
  }
}

.module.accordion {
  display: none;
}

.module-wrapper {
  z-index: 20;
}

.module-wrapper.open .module__mobile-arrow--down {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
       -o-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}

.module-wrapper.open .module__mobile-title {
  border-bottom: 1px solid #f9f6f2;
}

.background--grey + .background--transparent {
  padding-top: 3rem;
}

/* hide fb pixel padding in module */
#pixel.module {
  padding: 0;
}

.slick-slider {
  height: 100%;
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  height: 100%;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  height: 100%;
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-slide:focus {
  outline: none;
}

.slick-arrow.slick-hidden {
  display: none;
}

.slick-dots {
  position: absolute;
  bottom: 2.8rem;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 1rem;
  width: 1rem;
  margin: 0 1rem;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 1rem;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 1rem;
  width: 1rem;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  cursor: pointer;
}

.slick-dots li.slick-active {
  background: white;
}

.reveal-more__item {
  -webkit-transition: opacity 0.25s linear, max-height 0.25s linear;
  -o-transition: opacity 0.25s linear, max-height 0.25s linear;
  transition: opacity 0.25s linear, max-height 0.25s linear;
  will-change: max-height;
}

.reveal-more__item--hidden {
  opacity: 0;
  overflow: hidden;
  max-height: 0;
  margin: 0 !important;
}

.reveal-more__button-container {
  margin: auto;
  width: 100%;
  text-align: center;
  padding-top: 3rem;
}

.add-to-calendar .icon-yahoo,
.add-to-calendar .icon-ical,
.add-to-calendar .icon-outlook,
.add-to-calendar .icon-google {
  color: #fff;
  font-family: "Gotham-Book", "Arial", sans-serif !important;
  padding-bottom: 0.375rem;
}

.add-to-calendar .icon-yahoo:before,
.add-to-calendar .icon-ical:before,
.add-to-calendar .icon-outlook:before,
.add-to-calendar .icon-google:before {
  content: none;
}

.add-to-calendar-checkbox {
  padding-bottom: 0.375rem;
}

/* 
 * Layout
 */
.header-fixed {
  position: fixed;
  position: sticky;
  top: 0;
  right: 0;
  left: 0;
  height: 8.5rem;
  -webkit-transition: height ease 0.5s;
  -o-transition: height ease 0.5s;
  transition: height ease 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00204e;
  padding: 1.5rem 0;
  z-index: 100;
}

@media (max-width: 1023.98px) {
  .header-fixed {
    height: 5.8rem;
  }
}

.header-fixed__logo {
  width: 100%;
  max-width: 300px;
  margin: 0 0 0 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all ease 0.5s;
  -o-transition: all ease 0.5s;
  transition: all ease 0.5s;
}

@media (max-width: 1399.98px) {
  .header-fixed__logo {
    margin: 0 0 0 1.5rem;
  }
}

@media (max-width: 1023.98px) {
  .header-fixed__logo {
    max-width: 200px;
    margin: 0 0 0 1.5rem;
  }
}

.header-fixed__logo .logo-link {
  width: 100%;
}

.header-fixed__navigation {
  text-align: right;
  padding: 0 3rem 0 0;
}

@media (max-width: 1399.98px) {
  .header-fixed__navigation {
    padding: 0 1.5rem 0 0;
  }
}

@media (max-width: 1199.98px) {
  .header-fixed__navigation {
    padding: 0 1.5rem 0 0;
  }
}

@media (max-width: 1199.98px) {
  .header-fixed__navigation {
    display: none;
  }
}

.nav-primary {
  display: inline-block;
  margin-right: 3rem;
}

.primary-navigation .menu-item {
  display: inline;
  margin-right: 2.1rem;
  /* @include media-breakpoint-down(xl) { */
}

@media (max-width: 1600px) {
  .primary-navigation .menu-item {
    margin-right: 1.5rem;
    font-size: 13px;
  }
}

.primary-navigation .menu-item a {
  opacity: 0.7;
  color: white;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.primary-navigation .menu-item a:hover {
  opacity: 1;
}

.primary-navigation .menu-item.active a {
  opacity: 1;
  color: white;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mobile-menu__button {
  /* position: absolute;
  right: 0.6rem;
  top: 5px; */
}

@media (min-width: 1200px) {
  .mobile-menu__button {
    display: none;
  }
}

.mobile-menu__buy-tickets {
  /* position: absolute;
  right: 5.5rem;
  top: 3px; */
  margin-left: auto;
}

.mobile-menu__buy-tickets img {
  width: 50px;
  height: 50px;
}

@media (min-width: 1200px) {
  .mobile-menu__buy-tickets {
    display: none;
  }
}

.header__member-icon {
  margin-right: 0 !important;
}

.header__member-icon img {
  min-width: 40px !important;
  max-width: 40px !important;
  height: auto;
}

.header__racecourses {
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 40;
  background: #00204e;
  padding-top: 8.5rem;
  top: -100%;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  text-align: center;
}

.header__racecourses.open {
  top: 0;
}

.header__racecourses .racecourses__image {
  padding-bottom: 64vh;
}

.header__racecourses .btn, .header__racecourses .comment-form input[type="submit"], .comment-form .header__racecourses input[type="submit"], .header__racecourses .search-form .search-submit, .search-form .header__racecourses .search-submit {
  margin-bottom: 3rem;
}

.hospitality-dropdown {
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 40;
  background: #00204e;
  padding-top: 8.5rem;
  top: -100%;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  text-align: center;
}

.hospitality-dropdown__inner {
  position: relative;
}

.hospitality-dropdown.open {
  top: 0;
}

.hospitality-dropdown .racecourses__image {
  padding-bottom: 0;
  height: 64vh;
}

.hospitality-dropdown .btn, .hospitality-dropdown .comment-form input[type="submit"], .comment-form .hospitality-dropdown input[type="submit"], .hospitality-dropdown .search-form .search-submit, .search-form .hospitality-dropdown .search-submit {
  margin-bottom: 3rem;
}

.racing-dropdown {
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 40;
  background: #00204e;
  padding-top: 8.5rem;
  top: -100%;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  text-align: center;
}

.racing-dropdown__inner {
  position: relative;
}

.racing-dropdown.open {
  top: 0;
}

.racing-dropdown .racecourses__image {
  padding-bottom: 0;
  height: 64vh;
}

.racing-dropdown .btn, .racing-dropdown .comment-form input[type="submit"], .comment-form .racing-dropdown input[type="submit"], .racing-dropdown .search-form .search-submit, .search-form .racing-dropdown .search-submit {
  margin-bottom: 3rem;
}

.membership-dropdown {
  opacity: 0;
  position: fixed;
  width: 100%;
  z-index: 40;
  background: #00204e;
  padding-top: 8.5rem;
  top: -100%;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  text-align: center;
}

.membership-dropdown__inner {
  position: relative;
}

.membership-dropdown.open {
  top: 0;
}

.membership-dropdown .racecourses__image {
  padding-bottom: 0;
  height: 64vh;
}

.membership-dropdown .btn, .membership-dropdown .comment-form input[type="submit"], .comment-form .membership-dropdown input[type="submit"], .membership-dropdown .search-form .search-submit, .search-form .membership-dropdown .search-submit {
  margin-bottom: 3rem;
}

.hospitality-dropdown.visible,
.racing-dropdown.visible,
.membership-dropdown.visible,
.header__racecourses.visible {
  opacity: 1;
  max-width: 1920px;
}

.nav-dropdown {
  max-width: 1920px;
}

#dropdownMemberButton {
  background: none;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.dropdown-menu__member-img {
  width: 40px;
  height: 40px;
  background: no-repeat center center;
  background-size: cover;
  border: 100%;
  overflow: hidden;
  border-radius: 100%;
  -webkit-box-shadow: 0 0 0 2px #fff;
          box-shadow: 0 0 0 2px #fff;
}

.dropdown-menu__member-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

#dropdownMemberMenu {
  padding: 10px 15px;
  margin-top: 25px;
  min-width: 180px;
}

#dropdownMemberMenu::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content: "";
  position: absolute;
  right: 13px;
  top: -9px;
}

#dropdownMemberMenu a {
  display: block;
  color: #00204e;
  padding: 5px 0px;
}

#dropdownMemberMenu a:hover, #dropdownMemberMenu a:focus {
  color: #a08032;
}

#dropdownMemberMenu .dropdownMemberMenu__member-name {
  color: #00204e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  padding-bottom: 6px;
  margin-bottom: 5px;
  font-size: 16px;
}

.header__member-icon--mobile a {
  display: inline-block;
}

.header__member-icon--mobile .header__member__logout {
  border-left: 1px solid #fff;
  padding-left: 14px;
  margin-left: 8px;
}

.mobile-menu {
  position: fixed;
  top: -100vh;
  width: 100%;
  height: 100vh;
  overflow: scroll;
  padding: 3rem;
  text-align: center;
  padding-top: 100px;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  z-index: 90;
}

.mobile-menu__overlay {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: #001a3f;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  z-index: 90;
}

.mobile-menu .btn, .mobile-menu .comment-form input[type="submit"], .comment-form .mobile-menu input[type="submit"], .mobile-menu .search-form .search-submit, .search-form .mobile-menu .search-submit {
  display: block;
  padding: 1.5rem;
}

.mobile-navigation .menu-item {
  padding: 1.5rem 0;
  width: 100%;
}

.mobile-navigation .menu-item:first-child {
  margin-top: 1.5rem;
}

.mobile-navigation .menu-item a {
  color: white;
  opacity: 0.7;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.mobile-navigation .menu-item a:hover {
  opacity: 1;
}

@media (max-width: 1199.98px) {
  .menu-open .mobile-menu {
    top: 0;
  }
  .menu-open .mobile-menu__overlay {
    opacity: 1;
  }
}

.mega-nav-bg {
  visibility: hidden;
  display: none;
}

@media (min-width: 1200px) {
  .mega-nav-bg {
    position: fixed;
    left: 50%;
    width: 100%;
    max-width: 1920px;
    bottom: 0;
    top: 0;
    z-index: 2;
    background-color: #00204e;
    background: rgba(0, 32, 78, 0.65);
    top: 42px;
    -webkit-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .mega-nav-open .mega-nav-bg {
    visibility: visible;
    display: block;
  }
}

@media (max-width: 1199px) {
  .mega-menu-wrap-main_navigation__logo {
    display: block;
    padding: 5px 10px;
  }
}

#mega-menu-wrap-main_navigation.mega-menu-wrap {
  z-index: 3;
  background-color: #fff;
}

.mega-sticky-wrapper {
  height: 0 !important;
}

@media (min-width: 1200px) and (max-width: 1700px) {
  .transparent-nav #mega-nav-container #mega-menu-wrap-main_navigation {
    margin-bottom: -107px;
  }
}

@media (min-width: 1701px) {
  .transparent-nav #mega-nav-container #mega-menu-wrap-main_navigation {
    margin-bottom: -70px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle.mega-menu-open:after {
  background-color: #00204e;
}

#mega-nav-container #mega-menu-wrap-main_navigation {
  -webkit-box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
          box-shadow: 0 1px 8px rgba(0, 0, 0, 0.18);
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-blocks-left {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

@media (max-width: 639px) {
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-blocks-left .mega-toggle-block {
    margin: 0;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-blocks-right {
  -ms-flex-preferred-size: 25%;
      flex-basis: 25%;
}

@media (max-width: 639px) {
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-blocks-right .mega-toggle-block {
    margin: 0;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-blocks-center {
  -ms-flex-preferred-size: 50%;
      flex-basis: 50%;
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-blocks-center > div {
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#mega-nav-container #mega-menu-wrap-main_navigation .mobile-buy-icon {
  color: #a08032;
  font-size: 52px;
}

#mega-nav-container #mega-menu-wrap-main_navigation.mega-sticky #mega-menu-main_navigation {
  background-color: #fff;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border-bottom: 1px solid #e3e3e3;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li {
  background-color: transparent;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:not(:last-child) {
    border-bottom: 1px solid #e3e3e3;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:hover > a {
  background-color: transparent;
  color: #a08032;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-item-has-children > a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li > a {
  background-color: transparent;
  color: #00204e;
  font-family: "raisonne-light-pro";
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li > a {
    padding-left: 0;
    padding-right: 0;
    height: auto;
    line-height: 1.4;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li > a {
    padding-top: 8px;
    padding-bottom: 8px;
    height: auto;
  }
}

@media (min-width: 1701px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li > a {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-current-menu-item > a {
  background-color: transparent;
  color: #a08032;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:first-child {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:first-child {
    margin-right: auto;
    padding-left: 30px;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:first-child {
    width: 50%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    border-bottom: 1px solid #e3e3e3;
    padding-top: 5px;
    padding-bottom: 5px;
    height: 50px;
  }
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:first-child img {
    max-width: 260px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:last-child {
  margin-left: auto;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:last-child #btn-nav-cta {
    width: 100%;
  }
}

@media (min-width: 1200px) and (max-width: 1700px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li:last-child {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: 50%;
    text-align: right;
    border-bottom: 1px solid #e3e3e3;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu {
  background-color: #fff;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu {
    -webkit-box-shadow: none;
            box-shadow: none;
    padding: 0px 0px 10px;
    border-bottom: 1px solid #e3e3e3;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu {
    background: #ffffff;
    padding: 10px 20px 20px;
    width: 210px;
  }
}

@media (min-width: 1701px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu {
    padding: 20px 60px 30px;
    width: 360px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu > li > a {
  background-color: #fff;
  padding: 8px 0;
  line-height: 1.4;
  color: #636870;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu > li > a {
    padding: 8px 0;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation > li.mega-menu-flyout ul.mega-sub-menu > li:hover > a {
  color: #a08032;
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle {
  height: auto;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle {
    padding: 10px;
    border-bottom: 1px solid #e3e3e3;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle + #mega-menu-main_navigation {
  background-color: #fff;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle + #mega-menu-main_navigation {
    padding: 15px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-animated-inner,
#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-animated-inner::before,
#mega-nav-container #mega-menu-wrap-main_navigation .mega-toggle-animated-inner::after {
  background-color: #00204e !important;
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-wrap-main_navigation__logo-mobile img {
    max-width: 220px;
  }
}

#btn-nav-cta {
  border-radius: 0 !important;
  background-image: url(../images/arrowwhite.svg) !important;
  color: #fff !important;
  background-color: #a08032 !important;
}

@media (min-width: 1200px) {
  #btn-nav-cta {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    padding-right: 6rem !important;
    background-size: 18px;
    margin-right: -1px;
  }
}

@media (min-width: 1701px) {
  #btn-nav-cta {
    line-height: 1;
    padding-top: 25px !important;
    padding-bottom: 25px !important;
  }
}

#btn-nav-cta:hover {
  background-color: transparent !important;
  background-image: url(../images/arrow-right.svg) !important;
  color: #a08032 !important;
}

.menu-navigation-heading {
  font-family: "raisonne-demibold-pro";
  font-size: 18px;
  letter-spacing: 2.67px;
  text-align: left;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.menu-navigation-heading a {
  font-family: inherit;
  font-size: inherit !important;
  letter-spacing: inherit !important;
  text-transform: uppercase !important;
  padding: 0 !important;
  color: inherit !important;
  line-height: inherit !important;
}

@media (min-width: 1200px) {
  .menu-navigation-heading {
    font-size: 20px;
  }
  .menu-navigation-heading a {
    font-size: 20px !important;
  }
}

.menu-navigation-heading::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 1px;
  background-color: #00204e;
  bottom: 0;
  left: 0;
}

@media (min-width: 1200px) {
  .menu-navigation-heading-large {
    font-size: 26px;
  }
  .menu-navigation-heading-large a {
    font-size: inherit !important;
    line-height: inherit !important;
  }
}

.mega-nav__top-bar {
  background-color: #001932;
  color: #fff;
  font-size: 16px;
  padding: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}

.mega-nav__top-bar > a,
.mega-nav__top-bar button {
  font-family: "raisonne-light-pro";
  font-size: 16px;
  letter-spacing: 2.1px;
  text-transform: uppercase;
  color: #fff;
}

@media (min-width: 640px) {
  .mega-nav__top-bar > div {
    width: 50%;
  }
}

@media (min-width: 768px) {
  .mega-nav__top-bar > div {
    width: auto;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .mega-nav__top-bar > div.mega-nav__top-bar-center {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
    text-align: center;
    width: 70%;
  }
  .mega-nav__top-bar > div.mega-nav__top-bar-right {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 100px;
            flex: 0 0 100px;
  }
}

@media (min-width: 1024px) {
  .mega-nav__top-bar {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 1200px) {
  .mega-nav__top-bar {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.mega-nav__top-bar-center {
  font-size: 15px;
  /*  a:not(.btn) {
    color: $white;
  }
  a:not(.topbar__upcoming-title):not(.btn) {
    // text-decoration: underline;
    display: inline-block;
    margin: 0 2px;
    transition: color 0.2s ease;

    &:hover {
      color: $gold;
    }
  } */
}

.mega-nav__top-bar-center .topbar__upcoming-title {
  display: block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: 90%;
  font-family: "Gotham-Book", "Arial", sans-serif;
  text-transform: none;
  letter-spacing: 0;
}

@media (min-width: 1200px) {
  .mega-nav__top-bar-center .topbar__upcoming-title {
    max-width: 99%;
  }
}

@media (max-width: 767px) {
  .mega-nav__top-bar-center {
    display: none;
  }
}

.topbar__upcoming-span {
  font-family: "raisonne-demibold-pro";
  font-size: 16px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.topbar__upcoming {
  display: none;
  /* @media (min-width: 1024px) {
    display: block;
  } */
}

.topbar__upcoming-date {
  display: none;
}

@media (min-width: 1024px) {
  .topbar__upcoming-date {
    display: inline;
  }
}

.top-bar-center__dropdown {
  /* @media (min-width: 1024px) {
    display: none;
  } */
}

.top-bar-center__dropdown button {
  background: none;
  border: none;
  display: block;
  width: 90%;
  margin: auto;
  max-width: 800px;
}

.top-bar-center__dropdown .dropdown-toggle::after {
  content: unset;
  content: none;
}

.top-bar-center__dropdown .btn, .top-bar-center__dropdown .comment-form input[type="submit"], .comment-form .top-bar-center__dropdown input[type="submit"], .top-bar-center__dropdown .search-form .search-submit, .search-form .top-bar-center__dropdown .search-submit {
  margin: 5px 5px 5px 0;
}

.top-bar-center__dropdown .dropdown-menu {
  padding: 10px 15px;
  min-width: 450px;
  margin-top: 8px;
  max-width: 600px;
  border-radius: 0 0 0.3rem 0.3rem;
  -webkit-transform: translate3d(-50%, 27px, 0px) !important;
          transform: translate3d(-50%, 27px, 0px) !important;
  left: 50% !important;
  text-align: center;
}

@media (min-width: 1024px) {
  .top-bar-center__dropdown .dropdown-menu {
    padding: 20px 30px;
    max-width: 800px;
  }
}

.top-bar-center__dropdown .dropdown-menu::after {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  margin-left: -10px;
}

.top-bar-center__dropdown .dropdown-menu h4 {
  font-size: 20px;
  color: #00204e;
  letter-spacing: 2px;
}

@media (min-width: 1024px) {
  .top-bar-center__dropdown .dropdown-menu h4 {
    font-size: 24px;
  }
}

.top-bar-center__dropdown .dropdown-menu h4 + p {
  margin-bottom: 5px;
}

.top-bar-center__dropdown .dropdown-menu h4 a {
  color: #00204e;
  text-decoration: none;
}

.top-bar-center__dropdown .dropdown-menu h4 a:hover {
  color: #a08032;
}

.top-bar-center__dropdown .dropdown-menu p {
  margin-bottom: 0;
}

.top-bar-center__dropdown .dropdown-menu p a:not(.btn) {
  text-decoration: none;
  color: #fff;
  background-image: url(../images/arrowwhite.svg) !important;
}

.top-bar-center__dropdown .dropdown-menu p a:not(.btn):hover {
  background-color: transparent !important;
  background-image: url(../images/arrow-right.svg) !important;
  color: #a08032 !important;
}

.top-bar-center__dropdown .dropdown-menu a {
  text-decoration: none;
}

@media (max-width: 639px) {
  .mega-nav__top-bar-left {
    width: 70%;
  }
}

.mega-nav__top-bar-left .header__member-icon {
  position: relative;
  max-width: 100%;
  padding-right: 10px;
}

.mega-nav__top-bar-left .dropdown-menu__member-img {
  display: inline-block;
  height: 24px;
  margin-right: 10px;
  vertical-align: middle;
  width: 24px;
  -webkit-box-shadow: 0 0 0 1px #fff;
          box-shadow: 0 0 0 1px #fff;
}

.mega-nav__top-bar-left .dropdown-menu__member-img img {
  min-width: 26px !important;
  min-height: 28px !important;
}

.mega-nav__top-bar-left #dropdownMemberButton {
  min-width: 100px;
  text-align: left;
  display: inline-block;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  max-width: calc(100%);
}

.mega-nav__top-bar-left #dropdownMemberMenu {
  color: #636870;
  font-family: "Gotham-Book", "Arial", sans-serif;
  font-size: 14px;
  margin-top: 9px;
  text-transform: none;
}

.mega-nav__top-bar-left #dropdownMemberMenu::after {
  top: -6px;
  right: auto;
  left: 10px;
}

.mega-nav__top-bar-left #dropdownMemberMenu a {
  font-family: "Gotham-Book", "Arial", sans-serif;
  color: #636870;
}

.mega-nav__top-bar-left #dropdownMemberMenu a:hover {
  color: #a08032;
}

.mega-nav__top-bar-right {
  position: relative;
  text-align: right;
}

@media (max-width: 639px) {
  .mega-nav__top-bar-right {
    width: 30%;
  }
}

.mega-nav__top-bar-right .search-input-container {
  position: absolute;
  right: 0;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.mega-nav__top-bar-right .search-input-container button {
  background: none;
  color: #001932;
  border: none;
  visibility: hidden;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  z-index: 3;
  -webkit-transition: visibility 0s ease 50ms;
  -o-transition: visibility 0s ease 50ms;
  transition: visibility 0s ease 50ms;
}

.mega-nav__top-bar-right .search-input-container button:hover {
  visibility: visible;
}

.mega-nav__top-bar-right .search-input-container input[type="text"] {
  width: 100px;
  -webkit-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
  background-color: transparent;
  border: none;
  color: transparent;
  padding-left: 5px;
  padding-right: 30px;
  font-family: "Gotham-Book", "Arial", sans-serif;
  border-radius: 2px;
  height: 30px;
  cursor: pointer;
}

.mega-nav__top-bar-right input[type="text"]:focus {
  width: 200px;
  background: #fff;
  color: #001932;
  outline: none;
  cursor: auto;
}

.mega-nav__top-bar-right input[type="text"]:focus + button {
  visibility: visible;
}

.mega-nav__top-bar-right-search-text {
  position: relative;
  z-index: 1;
  font-family: "raisonne-light-pro";
  font-size: 16px;
  letter-spacing: 2.1px;
  text-transform: uppercase;
}

/* #mega-nav-container #mega-menu-wrap-main_navigation {
  .mega-menu-open {
    .mega-menu-toggle-animated-block {
      position: absolute;
      left: 300px;
      top: -33px;
      height: auto;
      .mega-toggle-animated-inner,
      .mega-toggle-animated-inner::after,
      .mega-toggle-animated-inner::before {
        background-color: $white !important;
      }
    }
  }
} */
.mega-search.mega-search-open input[type="text"] {
  padding-left: 0 !important;
}

.main-navigation-enabled .event-sticky-nav__inner:last-child {
  margin-top: 0;
}

.main-navigation-enabled .events-filters,
.main-navigation-enabled .module-47-tabbed-content {
  top: 0;
  -webkit-transition: -webkit-transform 0.25s ease-in-out;
  transition: -webkit-transform 0.25s ease-in-out;
  -o-transition: -o-transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out;
  transition: transform 0.25s ease-in-out, -webkit-transform 0.25s ease-in-out, -o-transform 0.25s ease-in-out;
  z-index: 2;
}

@media (min-width: 1024px) {
  .main-navigation-enabled.mega-menu-main_navigation-mega-sticky .events-filters.js-is-sticky-mega-hide,
  .main-navigation-enabled.mega-menu-main_navigation-mega-sticky .module-47-tabbed-content.js-is-sticky-mega-hide {
    -webkit-transform: translateY(84px);
         -o-transform: translateY(84px);
            transform: translateY(84px);
  }
}

@media (min-width: 1200px) {
  .main-navigation-enabled.mega-menu-main_navigation-mega-sticky .events-filters.js-is-sticky-mega-hide,
  .main-navigation-enabled.mega-menu-main_navigation-mega-sticky .module-47-tabbed-content.js-is-sticky-mega-hide {
    -webkit-transform: translateY(107px);
         -o-transform: translateY(107px);
            transform: translateY(107px);
  }
}

@media (min-width: 1701px) {
  .main-navigation-enabled.mega-menu-main_navigation-mega-sticky .events-filters.js-is-sticky-mega-hide,
  .main-navigation-enabled.mega-menu-main_navigation-mega-sticky .module-47-tabbed-content.js-is-sticky-mega-hide {
    -webkit-transform: translateY(70px);
         -o-transform: translateY(70px);
            transform: translateY(70px);
  }
}

@media (min-width: 1024px) {
  .main-navigation-enabled.mega-menu-main_navigation-mega-hide .events-filters.js-is-sticky-mega-hide,
  .main-navigation-enabled.mega-menu-main_navigation-mega-hide .module-47-tabbed-content.js-is-sticky-mega-hide {
    -webkit-transform: translateY(0px);
         -o-transform: translateY(0px);
            transform: translateY(0px);
  }
}

.main-navigation-enabled .events-filter__date {
  background-color: #00204e;
}

.main-navigation-enabled .events-filter__date-link {
  color: #fff;
  padding: 15px;
}

.main-navigation-enabled .events-filter__date-link:hover {
  color: #fff;
  background: rgba(0, 0, 0, 0.2);
}

.main-navigation-enabled .module-47-tabbed-content__inner {
  background-color: #00204e;
  border-bottom: none;
}

.main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link {
  color: #fff;
  position: relative;
  padding: 2.25rem 1.6rem;
}

@media (min-width: 1200px) {
  .main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link {
    font-size: 16px;
  }
}

.main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link::after {
  font-family: "Font Awesome 6 Pro";
  content: "\F078";
  font-weight: 900;
  position: absolute;
  bottom: 2px;
  left: 50%;
  -webkit-transform: translate(-50%, -5px);
       -o-transform: translate(-50%, -5px);
          transform: translate(-50%, -5px);
  opacity: 0;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link:hover, .main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link.active-tab {
  background: rgba(0, 0, 0, 0.2);
}

.main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link.active-tab {
  background: rgba(0, 0, 0, 0.3);
}

.main-navigation-enabled .module-47-tabbed-content__inner .module-47-tabbed-content__link.active-tab::after {
  opacity: 1;
  -webkit-transform: translate(-50%, 0px);
       -o-transform: translate(-50%, 0px);
          transform: translate(-50%, 0px);
}

.main-navigation-enabled .module__mobile-title {
  background: #00204e;
}

.main-navigation-enabled .module__mobile-title h3 {
  color: #fff;
}

@media (min-width: 1024px) {
  .main-navigation-enabled .module__mobile-title h3 {
    margin: 0;
    font-size: 26px;
  }
}

.main-navigation-enabled .hospitality__main,
.main-navigation-enabled .hospitality__sidebar {
  z-index: 1;
}

.main-navigation-enabled.single-hospitality .module-43-event-sticky-nav {
  z-index: 2;
}

.main-navigation-enabled .hospitality .hospitality__sidebar {
  top: 0;
  height: 100%;
}

.main-navigation-enabled .hospitality .toggle-hospitality-sidebar.toggle-hospitality-close {
  top: 1rem;
  border: none;
}

.main-navigation-enabled.active-sidebar #mega-nav-container {
  display: none !important;
}

.main-navigation-enabled .module-43-event-sticky-nav.scrolled {
  top: 0;
  -webkit-transform: translateY(85px);
       -o-transform: translateY(85px);
          transform: translateY(85px);
  background-color: #00204e;
  color: #fff;
}

.main-navigation-enabled .module-43-event-sticky-nav.scrolled .event-sticky-nav__details-title,
.main-navigation-enabled .module-43-event-sticky-nav.scrolled .event-sticky-nav__details-date-location {
  color: #fff;
}

@media (min-width: 1200px) {
  .main-navigation-enabled .module-43-event-sticky-nav.scrolled .event-sticky-nav__details-title {
    font-size: 2.6rem;
    margin-top: 0;
  }
}

@media (min-width: 1024px) {
  .main-navigation-enabled .module-43-event-sticky-nav.scrolled {
    -webkit-transform: translateY(84px);
         -o-transform: translateY(84px);
            transform: translateY(84px);
  }
}

@media (min-width: 1200px) {
  .main-navigation-enabled .module-43-event-sticky-nav.scrolled {
    -webkit-transform: translateY(107px);
         -o-transform: translateY(107px);
            transform: translateY(107px);
  }
}

@media (min-width: 1701px) {
  .main-navigation-enabled .module-43-event-sticky-nav.scrolled {
    -webkit-transform: translateY(70px);
         -o-transform: translateY(70px);
            transform: translateY(70px);
  }
}

.main-navigation-enabled.mega-menu-main_navigation-mega-hide .module-43-event-sticky-nav.scrolled {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
}

@media (max-width: 1199px) {
  #mega-menu-wrap-main_navigation #mega-menu-main_navigation li .mega-search.mega-search-open input[type="text"] {
    font-size: 16px !important;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle + #mega-menu-main_navigation {
    width: 480px;
  }
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle + #mega-menu-main_navigation {
    right: -480px;
  }
  #mega-nav-container #mega-menu-wrap-main_navigation .mega-menu-toggle.mega-menu-open + #mega-menu-main_navigation {
    right: 0;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu {
  background-color: #fff !important;
  /* 
        //testing
        opacity: 1 !important;
        transform: translate(0, 0) !important;
        visibility: visible !important; */
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu {
    padding: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row {
  background-color: transparent;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column {
  border-bottom: 1px solid #e3e3e3;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column:last-child {
  margin-bottom: 0px;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column {
    border-right: 1px solid #e3e3e3;
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column:last-child {
    border-right: none;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu {
  padding: 0px;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu {
    padding: 20px 20px 30px;
  }
}

@media (min-width: 1400px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu {
    padding: 20px 60px 30px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li {
  padding: 0;
  float: none;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li a {
  background-color: #fff;
  color: #636870;
  font-weight: normal;
  line-height: 1.4;
  padding: 8px 0;
  text-transform: none;
  font-size: 14px;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li a {
    padding: 8px 0;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li a:hover {
  color: #a08032;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li h4 {
  font-family: "raisonne-demibold-pro";
  font-size: 14px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li h4 a {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  letter-spacing: inherit;
  margin-bottom: inherit;
  text-transform: uppercase;
  display: block;
  padding: 0 !important;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li h4 {
    font-size: 16px;
  }
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li h4 a {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li .row .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 1199px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li .row .col {
    padding-bottom: 0;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li .row .col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li .row.mega-nav-widget--2 .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li .row.mega-nav-widget--3 .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 calc(100% / 3);
            flex: 0 0 calc(100% / 3);
    max-width: calc(100% / 3);
  }
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column .mega-sub-menu li .row.mega-nav-widget--4 .col {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 25%;
            flex: 0 0 25%;
    max-width: 25%;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block {
  background-color: #001932;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 20px;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block:hover {
  background-color: #001428;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block:hover .mega-nav__feature-block h4 {
  color: #a08032;
  background-image: url(../images/arrow-right.svg) !important;
  background-position: right 0 top 50%;
  background-size: auto 30%;
}

@media (min-width: 768px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block:hover .mega-nav__feature-block h4 {
    background-size: auto 50%;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block:hover .mega-nav__feature-block-subheading {
  color: #a08032;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block:hover .mega-nav-widget__img {
  -webkit-transform: scale(1.1, 1.1);
       -o-transform: scale(1.1, 1.1);
          transform: scale(1.1, 1.1);
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block .mega-nav__feature-block {
  display: block;
  padding: 0;
  background-color: transparent;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block .mega-nav__feature-block > a {
  background-color: transparent;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 18px !important;
  background-image: url(../images/arrowwhite.svg) !important;
  background-repeat: no-repeat !important;
  background-size: auto 30%;
  background-position: right 5px top 50%;
  -webkit-transition: color 0.2s ease, background-position 0.2s ease;
  -o-transition: color 0.2s ease, background-position 0.2s ease;
  transition: color 0.2s ease, background-position 0.2s ease;
  padding: 0 40px 0 0 !important;
}

@media (min-width: 768px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block h4 {
    background-size: auto 45%;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block h4 a.mega-nav__feature-block-link {
  background-color: transparent;
  color: #fff;
  display: block;
  font-size: 18px !important;
  text-transform: uppercase;
}

@media (min-width: 1400px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block {
    padding: 20px 60px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block .mega-sub-menu {
  padding: 0;
  background-color: transparent !important;
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block .mega-nav-widget__img-container {
  overflow: hidden;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  #mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block .mega-nav-widget__img-container {
    margin-bottom: 15px;
  }
}

#mega-nav-container #mega-menu-wrap-main_navigation #mega-menu-main_navigation .mega-menu-grid .mega-sub-menu .mega-menu-row .mega-menu-column.contains-feature-block .mega-nav__feature-block-subheading {
  color: #fff;
  font-family: "raisonne-demibold-pro";
  text-transform: uppercase;
  letter-spacing: 1.7px;
  font-size: 13px;
  margin-bottom: 5px;
  -webkit-transition: color 0.2s ease;
  -o-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.mega-nav-widget__img {
  padding-top: 0 !important;
  padding-bottom: 60% !important;
  background: no-repeat center center;
  background-size: cover;
  display: block;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: -o-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -o-transform 0.2s ease;
  -webkit-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
  margin-bottom: 10px;
}

@media (min-width: 1200px) {
  .mega-nav-widget__img {
    margin-bottom: 15px;
  }
}

.mega-nav-widget__img--2 {
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: -o-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -o-transform 0.2s ease;
  -webkit-transform-origin: center center;
       -o-transform-origin: center center;
          transform-origin: center center;
  margin-bottom: 0;
}

.mega-nav-widget__links a {
  display: block;
}

.footer-fixed {
  width: 100%;
  padding: 6rem;
  background: #00204e;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  color: white;
  z-index: 0;
}

@media (max-width: 767.98px) {
  .footer-fixed {
    padding: 4.5rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.footer__socials {
  padding: 1.5rem 6rem 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
  color: #bbb;
  max-width: 380px;
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .footer__socials {
    max-width: 52%;
  }
}

@media (max-width: 1199.98px) {
  .footer__socials {
    -webkit-box-flex: 3;
        -ms-flex: 3;
            flex: 3;
  }
}

@media (max-width: 1023.98px) {
  .footer__socials {
    width: 100%;
    padding: 1.5rem 3rem 0 0;
  }
}

@media (max-width: 767.98px) {
  .footer__socials {
    border-right: none;
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    padding: 0;
  }
}

.footer__menu {
  -webkit-box-flex: 1;
      -ms-flex: auto;
          flex: auto;
  padding: 1.5rem 1.5rem 0 1.5rem;
}

@media (max-width: 1023.98px) {
  .footer__menu {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 1.5rem 0 0 3rem;
  }
}

@media (max-width: 767.98px) {
  .footer__menu {
    padding: 0;
    width: 100%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.footer__longines {
  position: relative;
  padding: 1.5rem 0 0 0;
}

@media (max-width: 1023.98px) {
  .footer__longines {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.social-icons {
  position: relative;
  margin-top: 3rem;
  width: 600px;
  text-align: center;
  bottom: 0;
  left: 0;
}

@media (min-width: 768px) {
  .social-icons {
    /* position: absolute; */
    text-align: left;
  }
}

.social-icon {
  font-size: 2rem;
  color: white;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  display: inline-block;
  width: 15%;
}

.social-icon:hover {
  color: white;
  opacity: 0.7;
}

@media (min-width: 768px) {
  .social-icon {
    margin: 0 1.5rem;
    width: auto;
  }
}

@media (min-width: 1024px) {
  .social-icon {
    margin-right: 1.5rem;
  }
}

.icon-instagram {
  margin-left: 0;
}

.icon-youtube {
  font-size: 2.6rem;
  position: relative;
  top: 0.3rem;
}

.china-flag {
  position: relative;
  width: 5.5%;
  top: -0.4rem;
  margin-left: 1.5rem;
}

@media (max-width: 767.98px) {
  .china-flag {
    margin-left: 0.75rem;
    width: 10%;
    top: -0.5rem;
  }
}

.socials_h2 {
  color: white;
  margin: 0.5rem 0 1rem 0;
}

.footer-navigation {
  -webkit-columns: 3;
     -moz-columns: 3;
          columns: 3;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .footer-navigation {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
  }
}

@media (min-width: 1400px) {
  .footer-navigation {
    -webkit-columns: 4;
       -moz-columns: 4;
            columns: 4;
  }
}

@media (max-width: 1023.98px) {
  .footer-navigation {
    -webkit-columns: 1;
       -moz-columns: 1;
            columns: 1;
    height: auto;
    margin-bottom: 0;
    width: auto;
  }
}

.footer-navigation .menu-item {
  margin: 0 0 1.5rem 1.5rem;
  /*   white-space: nowrap; */
}

@media (max-width: 1399.98px) {
  .footer-navigation .menu-item {
    margin: 0 0 1.5rem 0;
  }
}

.footer-navigation .menu-item:last-child {
  margin-bottom: 0;
}

.footer__menu a {
  color: white;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.footer__menu a:hover {
  color: white;
  opacity: 0.7;
}

.footer-logo {
  width: 25rem;
}

@media (max-width: 767.98px) {
  .footer-logo {
    width: 20rem;
    margin: 3rem auto 0 auto;
  }
}

.copyright {
  position: absolute;
  width: 100%;
  bottom: 0;
  font-size: 1.2rem;
  opacity: 0.5;
  text-align: right;
  right: 0;
  min-width: 25rem;
}

.copyright a {
  color: #fff;
}

@media (max-width: 1023.98px) {
  .copyright {
    display: none;
  }
}

.footer-signup {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .footer-signup {
    margin-bottom: 1.5rem;
  }
}

.footer-signup h2,
.footer-signup h3,
.footer-signup h4,
.footer-signup h5,
.footer-signup h6 {
  color: white;
  margin: 0;
}

.footer-signup p {
  color: #bbb;
  font-size: 1.4rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .footer-signup .btn, .footer-signup .comment-form input[type="submit"], .comment-form .footer-signup input[type="submit"], .footer-signup .search-form .search-submit, .search-form .footer-signup .search-submit {
    width: 100%;
  }
}

#subscribeForm {
  display: block;
  visibility: hidden;
}

#subscribeForm .modal-dialog {
  max-width: 94%;
}

@media (min-width: 1024px) {
  #subscribeForm .modal-dialog {
    max-width: 800px;
  }
}

#subscribeForm.show {
  visibility: visible;
}

#subscribeForm label {
  display: none !important;
}

.subscribe-form__image-container {
  background: no-repeat center center;
  background-size: cover;
}

.subscribe-form__close {
  position: absolute;
  right: -10px;
  top: -10px;
  background: #fff !important;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  z-index: 9;
  opacity: 1 !important;
  -webkit-box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
          box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.2);
  color: #00204e;
}

.subscribe-form__content {
  max-width: 360px;
  margin: 0 auto;
  padding: 0 15px;
}

.subscribe-form__content h2 {
  margin-bottom: 1rem;
}

.subscribe-form__content p {
  font-size: 1.4rem;
}

.subscribe-form__content-container {
  padding-top: 20px;
  padding-bottom: 20px;
}

.modal-backdrop.show {
  opacity: 0.3;
}

.logines__iframe {
  margin-top: 0;
  position: absolute;
  right: -5px;
}

@media (min-width: 1024px) {
  .logines__iframe {
    position: static;
    display: block;
    right: 0;
    margin-left: auto;
  }
}

.footer__primary-logo {
  width: 100%;
}

.footer__primary-logo img {
  margin: 40px auto 0px;
  width: 80%;
  max-width: 260px;
  display: block;
}

@media (min-width: 1024px) {
  .footer__primary-logo img {
    margin-left: 0;
  }
}

@media (min-width: 1200px) {
  .footer__primary-logo img {
    margin-left: auto;
    margin-top: 60px;
    -webkit-transform: translateX(-50%);
         -o-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.footer__primary-logo img.footer__primary-logo-img {
  margin: 40px 0 0;
}

.footer__rsa {
  font-size: 12px;
  text-align: center;
  margin-top: 20px;
}

@media (min-width: 1200px) {
  .footer__rsa {
    width: 80%;
  }
}

.news-page {
  padding: 0 3rem;
}

.news-page__left {
  width: 100%;
  border-top: 0.1rem solid rgba(0, 0, 0, 0.1);
  border-bottom: 0.1rem solid rgba(0, 0, 0, 0.1);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .news-page__left {
    width: calc(65% - 6rem);
    float: left;
  }
}

.news-page__right {
  width: 100%;
}

@media (min-width: 768px) {
  .news-page__right {
    width: 35%;
    float: right;
  }
}

.similar-stories__title {
  margin-top: 3rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .similar-stories__title {
    margin-top: -1.5rem;
  }
}

.news-page__content .alignleft {
  width: 100%;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .news-page__content .alignleft {
    width: 45%;
    margin: 1.5rem 3rem 1.5rem 0;
  }
}

.news-page__content .alignright {
  width: 100%;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .news-page__content .alignright {
    width: 45%;
    margin: 1.5rem 0 1.5rem 3rem;
  }
}

.news-page__content .aligncenter {
  width: 100%;
  margin: 1.5rem 0;
}

.news-page__content .alignnone {
  width: 100%;
  margin: 1.5rem 0;
}

.news-page__content .wp-caption-text {
  font-family: "raisonne-light-pro";
  color: #425b74;
  margin-top: 1rem;
  font-size: 1.6rem;
}

#single-article-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

#single-article-container h1,
#single-article-container h2,
#single-article-container h3,
#single-article-container h4,
#single-article-container h5,
#single-article-container h6 {
  font-family: "raisonne-light-pro";
  letter-spacing: 2.1px;
  color: #00204e;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
}

#single-article-container h1 {
  font-size: 40px;
}

@media (min-width: 768px) {
  #single-article-container h1 {
    font-size: 70px;
  }
}

#single-article-container h2 {
  font-size: 35px;
}

@media (min-width: 768px) {
  #single-article-container h2 {
    font-size: 60px;
  }
}

#single-article-container h3 {
  font-size: 30px;
}

@media (min-width: 768px) {
  #single-article-container h3 {
    font-size: 50px;
  }
}

#single-article-container h4 {
  font-size: 25px;
}

@media (min-width: 768px) {
  #single-article-container h4 {
    font-size: 40px;
  }
}

#single-article-container h5 {
  font-size: 20px;
}

@media (min-width: 768px) {
  #single-article-container h5 {
    font-size: 35px;
  }
}

#single-article-container h6 {
  font-size: 18px;
}

@media (min-width: 768px) {
  #single-article-container h6 {
    font-size: 30px;
  }
}

#single-article-container blockquote {
  font-size: 20px;
  margin: 40px auto;
  color: #00204e;
  padding: 1.2em 30px 1.2em 75px;
  border-left: 8px solid #00204e;
  line-height: 1.6;
  position: relative;
  background: #f8f8f8;
}

#single-article-container blockquote p {
  color: #00204e;
}

#single-article-container blockquote::before {
  font-family: Arial;
  content: "\201C";
  color: #00204e;
  font-size: 4em;
  position: absolute;
  left: 10px;
  top: -10px;
}

#single-article-container blockquote::after {
  content: "";
}

#single-article-container .module-wrapper {
  padding-top: 15px;
  padding-bottom: 15px;
}

#single-article-container .module {
  padding: 0;
}

#single-article-container .module-60-grid {
  padding: 0;
}

#single-article-container .module-60-grid__cols {
  margin-bottom: 30px;
}

#single-article-container .module-60-grid__main-title > *:last-child {
  margin-bottom: 0;
}

#single-article-container .module-53-video-embed .container {
  max-width: 100%;
}

#single-article-container .module-53-video-embed .col-md-10 {
  margin-left: 0;
  width: 100%;
  max-width: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 100%;
          flex: 0 0 100%;
}

#single-article-container .module-72-gallery__gallery .container {
  padding-left: 15px;
  padding-right: 15px;
}

#single-article-container .module-32b {
  padding-top: 20px;
  padding-bottom: 30px;
}

#single-article-container .module-32b hr {
  margin-bottom: 30px;
}

#single-article-container .single__similar-stories {
  font-size: 30px;
}

@media (min-width: 768px) {
  #single-article-container .single__similar-stories {
    font-size: 40px;
  }
}

#single-article-container .single-news__title {
  font-size: 25px;
  letter-spacing: 0;
}

@media (min-width: 768px) {
  #single-article-container .single-news__text {
    padding: 3rem;
  }
}

#single-article-container .single-news__image {
  display: block;
}

#single-article-container .module-33-share-social-icons {
  padding-left: 15px;
  padding-right: 15px;
}

#single-article-container .module-33-share-social-icons h3 {
  font-size: 24px;
}

@media (min-width: 768px) {
  .module-32b__articles {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .module-32b__articles .single-news__card {
    padding: 0;
  }
}

body#tinymce {
  background: white;
  padding: 12px !important;
}

body#tinymce ul, body#tinymce ol {
  padding-left: 0;
  margin-left: 3rem;
}

body#tinymce ul li, body#tinymce ol li {
  list-style: disc;
}

body#tinymce ol li {
  list-style: decimal;
}

body#tinymce hr.hr-blank-spacing {
  border-color: #00204e;
}

body.wp-admin {
  background: #f1f1f1;
}

.news-listing {
  position: relative;
  background: #fcfbf9;
  padding: 1.5rem 0;
}

.news-listing .latest-news__inner {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.news-listing .latest-news__inner.central {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-listing .single-news__card-inner {
  margin-bottom: 0;
}

.news-listing__overlay {
  position: absolute;
  bottom: 1.5rem;
  height: 40rem;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(242, 244, 245, 0)), to(#f2f4f5));
  background: -webkit-linear-gradient(top, rgba(242, 244, 245, 0) 0%, #f2f4f5 100%);
  background: -o-linear-gradient(top, rgba(242, 244, 245, 0) 0%, #f2f4f5 100%);
  background: linear-gradient(to bottom, rgba(242, 244, 245, 0) 0%, #f2f4f5 100%);
}

.events-listing__month {
  position: relative;
  padding: 3rem 0;
  width: 100%;
}

@media (min-width: 576px) {
  .events-listing__month {
    padding: 3rem;
  }
}

.events-listing__month .header-line {
  background: rgba(0, 0, 0, 0.2);
  width: 100%;
  position: absolute;
  top: 55%;
  z-index: 1;
}

@media (min-width: 576px) {
  .events-listing__month .header-line {
    width: calc(100% - 6rem);
  }
}

.events-listing__month-title {
  position: relative;
  display: inline-block;
  background: white;
  padding: 0 3rem;
  z-index: 1;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .events-listing__month-title {
    font-size: 40px;
  }
}

.events-listing__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1.5rem;
}

@media (min-width: 576px) {
  .events-listing__wrap {
    padding: 3rem;
  }
}

.events-listing__wrap .single-event-module {
  -ms-flex-preferred-size: 33%;
      flex-basis: 33%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding: 0.75rem 1.5rem;
}

.events-listing__wrap .single-event-module {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  padding: 0.75rem 1.5rem;
}

@media (min-width: 1024px) {
  .events-listing__wrap .single-event-module {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 1200px) {
  .events-listing__wrap .single-event-module {
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
}

.events-listing__header {
  width: 100%;
  text-align: center;
  margin: 3rem 0;
}

.events-listing__header--carnival {
  max-width: 50em;
  margin: 0 auto;
}

.events-listing__header--carnival h2 {
  margin-bottom: 1.2rem;
  margin-bottom: 0;
  font-size: 30px;
}

@media (min-width: 1024px) {
  .events-listing__header--carnival h2 {
    font-size: 40px;
  }
}

.events-filter__date {
  width: 100%;
}

.events-filter__date .accordion-content {
  padding: 0 3rem;
}

@media (min-width: 1024px) {
  .events-filter__date .accordion-content {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1200px) {
  .events-filter__date .accordion-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 1024px) {
  .events-filter__date {
    text-align: center;
    background: #f9f6f2;
    padding: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
  }
}

.events-filter__date-link {
  display: block;
  margin-bottom: 0.5rem;
  /* color: $textgrey; */
  color: #374151;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  border: none;
  background: transparent;
  color: #00204e;
  font-size: 20px;
  font-family: "raisonne-light-pro";
  letter-spacing: 1px;
  text-transform: uppercase;
}

.events-filter__date-link:hover {
  color: #00204e;
}

.events-filter__date-link.active {
  color: #fff;
  background-color: #00204e;
}

@media (min-width: 1024px) {
  .events-filter__date-link {
    display: inline-block;
    padding: 10px;
    -webkit-transition: background 0.3s ease;
    -o-transition: background 0.3s ease;
    transition: background 0.3s ease;
    margin-bottom: 0;
  }
  .events-filter__date-link:hover {
    background: #f4f0e8;
    color: #00204e;
  }
}

@media (min-width: 1200px) {
  .events-filter__date-link {
    padding: 15px 3rem;
  }
}

.events-filters {
  background: white;
}

@media (min-width: 1024px) {
  .events-filters {
    position: sticky;
    top: 8.3rem;
    z-index: 35;
  }
}

.events-filter__location-type {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.events-filter__location-type .accordion-content {
  padding: 0 3rem 3rem;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.events-filter__location-type .accordion-content .custom-dropdown {
  width: 100%;
  margin: 0;
}

@media (min-width: 1024px) {
  .events-filter__location-type .accordion-content .custom-dropdown {
    width: 24rem;
  }
}

@media (min-width: 1024px) {
  .events-filter__location-type .accordion-content {
    padding: 0;
    width: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media (min-width: 1024px) {
  .events-filter__location-type {
    padding: 2.25rem 3rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.events-filter__title {
  display: block;
  width: 100%;
  margin: 0;
  text-align: left;
  background: #f7f4ef;
  padding: 1.5rem;
}

.events-filter__title.accordion-title {
  position: relative;
  font-size: 24px;
}

@media (min-width: 768px) {
  .events-filter__title.accordion-title {
    font-size: 30px;
  }
}

.events-filter__title.accordion-title:after {
  content: "\E801";
  font-family: "atc";
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: 1.125rem;
  right: 1.125rem;
  border: 2px solid #ebe4d7;
  border-radius: 2px;
  width: 3rem;
  height: 3rem;
}

@media (min-width: 1024px) {
  .events-filter__title.accordion-title:after {
    display: none;
  }
}

.events-filter__title.accordion-title.open:after {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .events-filter__title {
    margin: 0;
    width: auto;
    display: inline-block;
    padding: 0;
    text-align: initial;
    background-color: transparent;
    margin-right: 3rem;
  }
}

.events-filter__label {
  display: block;
  margin: 1.5rem 0;
}

@media (min-width: 1024px) {
  .events-filter__label {
    display: inline-block;
    margin: 0 3rem;
  }
}

.filter-clear-btn {
  display: block;
  text-align: center;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
  background: none;
  border: none;
  text-decoration: none;
  color: #636870;
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .filter-clear-btn {
    display: inline-block;
    text-align: left;
    width: auto;
    margin-left: 3rem;
    margin-bottom: 0;
  }
}

.custom-dropdown {
  position: relative;
  display: inline-block;
  /* border: 1px solid $lightgrey; */
  border: 1px solid #e8e4dd;
  width: 100%;
  color: #636870;
  text-align: left;
  cursor: pointer;
}

.custom-dropdown.custom-input {
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .custom-dropdown {
    width: 24rem;
    margin: 0 1.5rem;
  }
}

.custom-dropdown .dropdown-main {
  padding: 1.5rem 6rem 1.5rem 1.5rem;
}

.custom-dropdown .dropdown-main:after {
  content: url("../images/chevron.svg");
  position: absolute;
  right: 1.5rem;
  will-change: transform;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  -o-transition: -o-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out, -o-transform 0.3s ease-in-out;
}

.custom-dropdown .dropdown-main.active:after {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.dropdown-inner {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  padding: 1.5rem;
  background: white;
  -webkit-box-shadow: 0 0 5px 0 #b4b4b4;
          box-shadow: 0 0 5px 0 #b4b4b4;
  font-size: 1.76rem;
  z-index: 5;
}

.dropdown-inner .filter-list {
  margin-bottom: 0;
}

.dropdown-inner .filter-item {
  margin-bottom: 1rem;
}

.dropdown-inner .filter-item:last-child {
  margin-bottom: 0;
}

.dropdown-inner .filter-btn {
  background-color: transparent;
  border: none;
  border-radius: 0;
}

.dropdown-inner .filter-btn:before {
  position: relative;
  display: inline-block;
  margin-right: 1.5rem;
  opacity: 0.2;
}

.dropdown-inner .filter-btn.selected:before {
  opacity: 1;
  color: #00204e;
  -webkit-animation: bounce 0.3s ease-in-out both;
       -o-animation: bounce 0.3s ease-in-out both;
          animation: bounce 0.3s ease-in-out both;
}

@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 0.2;
  }
  80% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@-o-keyframes bounce {
  0% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 0.2;
  }
  80% {
    -o-transform: scale(1.1);
       transform: scale(1.1);
  }
  100% {
    -o-transform: scale(1);
       transform: scale(1);
    opacity: 1;
  }
}

@keyframes bounce {
  0% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 0.2;
  }
  80% {
    -webkit-transform: scale(1.1);
         -o-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
         -o-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

.single-event__view-event {
  margin-top: 4px;
  display: block;
  text-decoration: underline !important;
  cursor: pointer;
  color: #636870 !important;
}

.single-event__link {
  margin-bottom: 0;
}

.single-event__link.single-event__link-buy {
  background: #a08032;
  color: #fff;
  text-decoration: none;
  padding: 5px 10px;
}

.single-event__link.single-event__link-buy:hover, .single-event__link.single-event__link-buy:focus {
  color: #fff !important;
  text-decoration: none;
}

.events-listing__wrap--new .single-event-b-module {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  margin-bottom: 1.5rem;
  padding-top: 0;
}

@media (min-width: 576px) {
  .events-listing__wrap--new .single-event-b-module {
    -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
  }
}

@media (min-width: 1024px) {
  .events-listing__wrap--new .single-event-b-module {
    margin-bottom: 3rem;
    -ms-flex-preferred-size: 33%;
        flex-basis: 33%;
  }
}

@media (min-width: 1200px) {
  .events-listing__wrap--new .single-event-b-module {
    -ms-flex-preferred-size: 25%;
        flex-basis: 25%;
  }
}

@media (min-width: 1400px) {
  .events-listing__wrap--new .single-event-b-module {
    -ms-flex-preferred-size: calc(100% / 5);
        flex-basis: calc(100% / 5);
  }
}

.events-listing__wrap--new .single-event-b__card {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media (min-width: 576px) {
  .events-listing__wrap--new .single-event-b__card {
    height: 100%;
  }
}

@media (min-width: 576px) and (max-width: 1023.98px) {
  .events-listing__wrap--new .single-event-b__image {
    padding-bottom: 70%;
  }
}

.dropdown-inner .filter-btn {
  font-family: "Gotham-Book", "Arial", sans-serif !important;
  font-size: 15px;
}

.dropdown-inner .filter-btn::before {
  font-family: 'atc' !important;
}

@media (min-width: 1200px) {
  .hospitality {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.hospitality__sidebar {
  display: none;
  /* background: $lightgrey;
  border-right: 1px solid $border-line; */
  background: #fcfbf9;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
}

@media (min-width: 1200px) {
  .hospitality__sidebar {
    display: block;
    width: 30%;
    z-index: 20;
    border-top: 1px solid rgba(0, 0, 0, 0.03);
  }
}

@media (min-width: 1200px) {
  .hospitality__main {
    width: 70%;
    margin-left: auto;
    position: relative;
    z-index: 10;
  }
}

.hospitality .toggle-hospitality-sidebar {
  display: none;
  background: #a08032;
  border-color: #a08032;
}

@media (max-width: 1199.98px) {
  .hospitality {
    position: relative;
  }
  .hospitality .hospitality__sidebar {
    display: block;
    position: fixed;
    left: 0;
    -webkit-transform: translateX(-100%);
         -o-transform: translateX(-100%);
            transform: translateX(-100%);
    max-width: 500px;
    background: #fff;
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    -o-transition: -o-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease, -o-transform 0.4s ease;
    z-index: 30;
    overflow-y: scroll;
    top: 8.5rem;
    height: calc(100vh - 8.5rem);
  }
  .hospitality .module-26-package-name {
    border-bottom: 1px solid #ccc;
  }
  .hospitality .toggle-hospitality-sidebar {
    margin: 20px auto;
    display: block;
    width: 90%;
  }
  .hospitality .toggle-hospitality-sidebar small {
    display: block;
  }
  .hospitality .toggle-hospitality-sidebar.toggle-hospitality-close {
    display: none;
    position: fixed;
    top: 9rem;
    right: 24px;
    z-index: 30;
    border-radius: 100%;
    color: #a08032;
    padding: 0;
    font-weight: bold;
    width: 40px;
    height: 40px;
    background: #fff;
    margin: 0;
    font-size: 20px;
  }
  .hospitality .toggle-hospitality-sidebar.toggle-hospitality-fixed {
    position: sticky;
    bottom: 0;
    width: 100%;
    border-radius: 0;
  }
  .hospitality .toggle-hospitality-sidebar.toggle-hospitality-fixed:hover {
    background: #00204e;
    color: #fff;
  }
}

@media (max-width: 1023.98px) {
  .hospitality .toggle-hospitality-sidebar.toggle-hospitality-close {
    top: 7rem;
  }
  .hospitality .hospitality__sidebar {
    height: calc(100vh - 5.8rem);
    top: 5.8rem;
  }
}

@media (max-width: 767.98px) {
  .hospitality .toggle-hospitality-sidebar.toggle-hospitality-close {
    right: 26px;
    width: 30px;
    height: 30px;
    font-size: 16px;
  }
  .hospitality .package-name__details {
    margin-left: 0;
  }
  .hospitality .hospitality__sidebar {
    max-width: 260px;
  }
  .hospitality .package-name__details-body {
    display: none;
  }
  .hospitality .package-name__image {
    display: none;
  }
  .hospitality .toggle-hospitality-sidebar.toggle-hospitality-fixed {
    /* width: 100%;
      border-radius: 0; */
  }
}

@media (max-width: 767.98px) {
  .event-sticky-nav__inner .btn, .event-sticky-nav__inner .comment-form input[type="submit"], .comment-form .event-sticky-nav__inner input[type="submit"], .event-sticky-nav__inner .search-form .search-submit, .search-form .event-sticky-nav__inner .search-submit {
    padding: 10px 5px;
    background-image: none !important;
    font-size: 13px;
  }
}

@media (max-width: 1199.98px) {
  .active-sidebar {
    overflow: hidden;
  }
  .active-sidebar .hospitality::before {
    content: "";
    background: rgba(0, 32, 78, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 30;
  }
  .active-sidebar .hospitality .toggle-hospitality-close {
    display: block;
  }
  .active-sidebar .hospitality__sidebar {
    -webkit-transform: translateX(0%);
         -o-transform: translateX(0%);
            transform: translateX(0%);
  }
}

.carnival-colour .package-name__details-title {
  color: #a08032;
}

.hospitality-landing-intro {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .hospitality-landing-intro {
    padding: 3rem 6rem 6rem;
  }
}

.hospitality-landing-intro__text {
  padding: 3rem 0 0;
  width: 100%;
}

.hospitality-landing-intro__text h1,
.hospitality-landing-intro__text h2,
.hospitality-landing-intro__text h3,
.hospitality-landing-intro__text h4,
.hospitality-landing-intro__text h5,
.hospitality-landing-intro__text h6 {
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hospitality-landing-intro__text {
    padding: 3rem 3rem 0;
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .hospitality-landing-intro__text {
    max-width: 800px;
  }
}

#module-hospitality-enquiry-form {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

#module-hospitality-enquiry-form .wpcf7-response-output {
  text-align: center;
}

#module-hospitality-enquiry-form .container {
  max-width: 800px;
}

#module-hospitality-enquiry-form input:not(.btn),
#module-hospitality-enquiry-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #e4e2df;
}

#module-hospitality-enquiry-form .btn, #module-hospitality-enquiry-form .comment-form input[type="submit"], .comment-form #module-hospitality-enquiry-form input[type="submit"], #module-hospitality-enquiry-form .search-form .search-submit, .search-form #module-hospitality-enquiry-form .search-submit {
  width: 100%;
  margin: 0 auto;
  max-width: 230px;
  padding: 12px;
}

#module-hospitality-enquiry-form h2,
#module-hospitality-enquiry-form h3,
#module-hospitality-enquiry-form h4,
#module-hospitality-enquiry-form h5,
#module-hospitality-enquiry-form h6 {
  margin-bottom: 0.5rem;
}

#module-hospitality-enquiry-form form {
  margin-top: 3rem;
}

#hospitality-filters {
  /* display: flex;
  flex-flow: row wrap; */
  padding: 1.5rem;
  margin: 0;
}

#hospitality-filters h5 {
  margin-bottom: 0.75rem;
}

#hospitality-filters li {
  cursor: pointer;
  font-size: 13px;
  color: #00204e;
  padding-right: 12px;
  padding-left: 3rem;
  margin-bottom: 0.5rem;
  min-height: auto;
}

#hospitality-filters li:hover label {
  color: #a08032;
}

#hospitality-filters li label {
  margin-bottom: 0;
  margin-left: 2px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#hospitality-filters .custom-control-label::before, #hospitality-filters .custom-control-label::after {
  width: 2rem;
  height: 2rem;
  left: -3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

#hospitality-filters .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #a08032;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
}

#hospitality-filters .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
}

#hospitality-filters .custom-control-input:checked ~ .custom-control-label {
  color: #a08032;
}

#hospitality-filters .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #a08032;
  background: #a08032;
}

.inner-page {
  padding: 6rem;
}

.inner-page__left {
  width: 100%;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .inner-page__left {
    width: calc(65% - 6rem);
    float: left;
  }
}

.inner-page__right {
  width: 100%;
}

@media (min-width: 768px) {
  .inner-page__right {
    width: 35%;
    float: right;
  }
}

.inner-page__content .alignleft,
.news-page__content .alignleft {
  width: 100% !important;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .inner-page__content .alignleft,
  .news-page__content .alignleft {
    width: 45% !important;
    margin: 1.5rem 3rem 1.5rem 0;
  }
}

.inner-page__content .alignright,
.news-page__content .alignright {
  width: 100% !important;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .inner-page__content .alignright,
  .news-page__content .alignright {
    width: 45% !important;
    margin: 1.5rem 0 1.5rem 3rem;
  }
}

.inner-page__content .aligncenter,
.news-page__content .aligncenter {
  width: 100% !important;
  margin: 1.5rem 0;
}

.inner-page__content .alignnone,
.news-page__content .alignnone {
  width: 100% !important;
  margin: 1.5rem 0;
}

.inner-page__content .wp-caption-text,
.news-page__content .wp-caption-text {
  font-family: "raisonne-light-pro";
  color: #425b74;
  margin-top: 1rem;
  font-size: 1.6rem;
}

.inner-page__content ul > li,
.news-page__content ul > li {
  list-style: inherit;
}

.inner-page__content ol,
.news-page__content ol {
  padding: 0;
}

.inner-page__content ol > li,
.news-page__content ol > li {
  list-style: decimal;
}

.inner-page__content ul, .inner-page__content ol,
.news-page__content ul,
.news-page__content ol {
  margin-left: 3rem;
  margin-bottom: 1.2rem;
}

.inner-page__content ul li, .inner-page__content ol li,
.news-page__content ul li,
.news-page__content ol li {
  margin-bottom: 0.3rem;
  list-style: inherit;
}

/* The Board */
.board-members {
  padding: 1.5rem 0;
}

@media (min-width: 1024px) {
  .board-members {
    padding: 6rem;
  }
}

.board-members .three-column-card__image--board-members {
  padding-bottom: 80%;
}

.board-members .three-column-card__title {
  margin-top: 1.5rem;
}

.board-members .three-column-card__body {
  margin: 1rem 0 1.5rem;
}

.board-members__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.board-members__main-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

/* History Form */
.history-form {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .history-form {
    padding: 6rem;
  }
}

.history-form__inner {
  position: relative;
  max-width: 90rem;
}

.history-form__text {
  width: 100%;
  border-bottom: 0;
  padding: 0 0 3rem;
}

@media (min-width: 768px) {
  .history-form__text {
    width: 65%;
    padding: 3rem 6rem;
    min-height: 35rem;
    margin-left: 35%;
  }
}

.history-form__image {
  position: relative;
  top: 0;
  left: 0;
  height: 100%;
  overflow: hidden;
  padding-bottom: 60%;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .history-form__image {
    width: 35%;
    position: absolute;
    padding-bottom: 0;
  }
}

.history-form__title {
  margin-bottom: 3rem;
}

.history-form__body {
  color: #374151;
  margin-bottom: 3rem;
}

.history-form__name {
  width: 100%;
}

@media (min-width: 768px) {
  .history-form__name {
    width: 50%;
    float: left;
  }
}

.history-form__email {
  width: 100%;
}

@media (min-width: 768px) {
  .history-form__email {
    width: 50%;
    float: right;
  }
}

.history-form__input {
  width: 100%;
  height: 4.5rem;
  padding: 1rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .history-form__input {
    width: calc(100% - 1.5rem);
  }
}

.careers__top {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .careers__top {
    padding: 3rem 6rem 6rem;
  }
}

@media (min-width: 1024px) {
  .careers__top-left {
    max-width: 35%;
    float: left;
  }
}

@media (min-width: 1024px) {
  .careers__top-right {
    max-width: 65%;
    float: right;
  }
}

.careers__title {
  margin-top: 3rem;
  font-size: 3.2rem;
}

@media (min-width: 1024px) {
  .careers__title {
    font-size: 5.5rem;
  }
}

.careers__info {
  padding: 1.5rem 3rem 1.5rem 0;
  font-size: 1.8rem;
  font-family: "raisonne-light-pro";
}

.careers__divider {
  width: 100%;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.2);
}

.careers__button {
  margin: 3rem 0;
}

.careers__skills, .careers__responsibilities {
  padding: 3rem;
  margin-bottom: 3rem;
  background: #fcfbf9;
}

@media (min-width: 1024px) {
  .careers__skills, .careers__responsibilities {
    padding: 3rem 6rem 6rem;
  }
}

.careers__skills-inner, .careers__responsibilities-inner {
  max-width: 120rem;
}

.careers__subtitle {
  font-size: 2.2rem;
  margin: 3rem 0;
}

.careers__terms {
  margin: 6rem 0;
}

.careers__terms--checkbox {
  -webkit-transform: scale(2);
       -o-transform: scale(2);
          transform: scale(2);
  cursor: pointer;
  margin-left: 0.75rem;
}

.careers__application-form {
  padding: 3rem;
  max-width: 80rem;
}

@media (min-width: 1024px) {
  .careers__application-form {
    padding: 1.5rem 6rem 6rem;
  }
}

@media (min-width: 576px) {
  .careers__application-upload {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.careers__application-upload--original {
  display: none;
}

.careers__application-upload--customised {
  border: none;
  color: inherit;
  cursor: default;
}

@media (max-width: 1023.98px) {
  .careers__application-upload--customised {
    margin-top: 1.5rem;
  }
}

.careers__application-upload--customised:focus {
  outline: none;
}

/* Enquiry Form */
.enquiry-form {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .enquiry-form {
    padding: 6rem;
  }
}

.enquiry-form__inner {
  position: relative;
  max-width: 70rem;
}

.enquiry-form__title {
  margin-bottom: 3rem;
  text-align: center;
}

.enquiry-form__left {
  width: 100%;
}

@media (min-width: 768px) {
  .enquiry-form__left {
    width: 50%;
    float: left;
  }
}

.enquiry-form__right {
  width: 100%;
}

@media (min-width: 768px) {
  .enquiry-form__right {
    width: 50%;
    float: right;
  }
}

.enquiry-form__input {
  width: 100%;
  height: 4.5rem;
  padding: 1rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .enquiry-form__input {
    width: calc(100% - 1.5rem);
  }
}

.enquiry-form__label {
  width: 100%;
}

.enquiry-form__textarea {
  width: 100%;
  height: 25rem;
  padding: 1rem;
  border-radius: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  margin: 1.5rem 0;
  resize: none;
}

@media (min-width: 768px) {
  .enquiry-form__textarea {
    width: calc(100% - 1.5rem);
  }
}

.enquiry-form__submit {
  text-align: center;
}

.enquiry-form__submit .btn, .enquiry-form__submit .comment-form input[type="submit"], .comment-form .enquiry-form__submit input[type="submit"], .enquiry-form__submit .search-form .search-submit, .search-form .enquiry-form__submit .search-submit {
  display: inline-block;
}

.search-results-template {
  padding: 3rem 1.5rem;
  background: #f2f4f5;
}

.search-results-template .searchform-custom {
  margin-bottom: 1.5rem;
}

@media (min-width: 1024px) {
  .search-results-template {
    padding: 6rem;
  }
}

.search-results-template h1 {
  margin-bottom: 1.5rem;
}

.search-results-template h2,
.search-results-template h3,
.search-results-template h4,
.search-results-template h5,
.search-results-template h6 {
  margin-bottom: 0.75rem;
}

.search-results-template ul {
  list-style: disc;
  margin-left: 1.5rem;
}

.search-results-template ul li {
  list-style: disc;
  margin-bottom: 1rem;
}

.search-results-template article {
  margin-bottom: 0.15rem;
  background: #fff;
  padding: 20px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  overflow: hidden;
}

.search-results-template article:hover {
  background: #00204e;
}

.search-results-template article:hover a {
  color: #fff;
  display: block;
}

.search-results-template article:hover p {
  color: #fff;
}

.search-results-template article:hover .search-results__highlight {
  color: #a08032;
}

.search-results-template article p {
  margin-bottom: 0;
}

.search-results-template article a {
  color: #00204e;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (max-width: 767.98px) {
  .search-results-template article a {
    word-wrap: break-word;
  }
}

.search-results-template article a:hover {
  color: #a08032;
}

@media (min-width: 768px) {
  .search-results-template article {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.search-results-template .navigation {
  margin-top: 1.5rem;
}

.search-results-template .navigation a {
  color: #00204e;
}

.search-results-template .navigation a:hover, .search-results-template .navigation a:focus {
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .module-35-text-image-hero.module-35-text-image-hero--default-page {
    height: calc(70vh - 8.4rem);
    min-height: 56rem;
  }
}

.search-navigation {
  margin-top: 40px;
  text-align: center;
}

.search-navigation ul {
  margin: 0;
}

.search-navigation li a,
.search-navigation li a:hover,
.search-navigation li.search-navigation__active a,
.search-navigation li.disabled {
  color: #00204e;
  text-decoration: none;
}

.search-navigation li {
  display: inline;
}

.search-navigation li a,
.search-navigation li a:hover,
.search-navigation li.search-navigation__active a,
.search-navigation li.disabled {
  background-color: #fff;
  cursor: pointer;
  padding: 0.75rem;
}

.search-navigation li a:hover,
.search-navigation li.search-navigation__active a {
  background-color: #00204e;
  color: #fff;
}

.search-results__thumbnail {
  float: left;
  margin-bottom: 15px;
  margin-right: 15px;
  max-width: 70px;
}

@media (min-width: 576px) {
  .search-results__thumbnail {
    max-width: 100px;
  }
}

.search-results__highlight {
  color: #a08032;
  font-weight: bold;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .search-results__content {
    margin-right: 15px;
  }
}

.search-results__view {
  text-transform: uppercase;
  font-size: 14px;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .search-results__view {
    margin-left: auto;
    width: 100px;
    text-align: right;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
}

.not-found-404-template {
  padding: 3rem 1.5rem;
  background: #f2f4f5;
}

@media (min-width: 1024px) {
  .not-found-404-template {
    padding: 6rem;
  }
}

.not-found-404-template h1 {
  margin-bottom: 1.5rem;
}

.not-found-404-template h2,
.not-found-404-template h3,
.not-found-404-template h4,
.not-found-404-template h5,
.not-found-404-template h6 {
  margin-bottom: 0.75rem;
}

.not-found-404-template article {
  margin-bottom: 0.75rem;
  background: #fff;
  padding: 20px;
  -webkit-transition: all .3s ease;
  -o-transition: all .3s ease;
  transition: all .3s ease;
}

.not-found-404-template article:hover {
  background: #00204e;
}

.not-found-404-template article:hover a {
  color: #fff;
  display: block;
}

.not-found-404-template article p {
  margin-bottom: 0;
}

.not-found-404-template article a {
  color: #00204e;
}

.not-found-404-template .searchform-custom {
  margin-top: 1.5rem;
  margin-bottom: 0;
}

/*
 * Modules
 */
/* Careers */
.careers {
  position: relative;
  padding: 3rem;
}

@media (min-width: 1024px) {
  .careers {
    padding: 3rem 6rem;
  }
}

.career {
  position: relative;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.11);
          box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.11);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  background: white;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  cursor: pointer;
}

.career:hover {
  background: #00204e;
}

.career:hover .career__name {
  color: white;
}

.career__name {
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
  color: #00204e;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
  width: calc(100% - 4rem);
}

.career__arrow {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  right: 1.5rem;
  top: 2rem;
}

.dress-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.dress-table__list {
  display: none;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  background: #fcfbf9;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
}

@media (min-width: 1024px) {
  .dress-table__list {
    display: block;
    -webkit-box-flex: 45%;
        -ms-flex: 45%;
            flex: 45%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .dress-table__list {
    -webkit-box-flex: 35%;
        -ms-flex: 35%;
            flex: 35%;
  }
}

.dress-table__list-header {
  font-size: 2.2rem;
  font-family: "raisonne-light-pro";
  padding: 3rem 1.5rem 1.5rem;
}

.dress-table__content {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}

@media (min-width: 1024px) {
  .dress-table__content {
    -webkit-box-flex: 55%;
        -ms-flex: 55%;
            flex: 55%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .dress-table__content {
    -webkit-box-flex: 65%;
        -ms-flex: 65%;
            flex: 65%;
  }
}

.dress-list__item {
  width: 100%;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  cursor: pointer;
}

.dress-list__item.active, .dress-list__item:hover {
  background: white;
}

.dress-list__image {
  position: relative;
  height: 20rem;
  min-width: 16rem;
  background-size: cover;
  background-position: center;
  display: none;
}

@media (min-width: 768px) {
  .dress-list__image {
    height: 38rem;
  }
}

@media (min-width: 1024px) {
  .dress-list__image {
    height: 12rem;
    display: block;
  }
}

.dress-list__details {
  margin-left: 1.5rem;
  position: relative;
  width: 100%;
  padding: 1.5rem;
}

.dress-list__details-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.dress-list__details-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #00204e;
}

.dress-list__details-type {
  display: block;
  margin-bottom: 1rem;
  color: #636870;
}

.dress-content.active {
  display: block;
}

@media (min-width: 1024px) {
  .dress-content {
    display: none;
  }
}

.dress-content__inner {
  padding: 3rem;
}

@media (min-width: 768px) {
  .dress-content__inner {
    padding: 3rem 6rem 9rem;
  }
}

.dress-content__title {
  padding: 3rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 2.2rem;
  display: none;
}

@media (min-width: 768px) {
  .dress-content__title {
    font-size: 3.2rem;
    display: block;
  }
}

@media (min-width: 1024px) {
  .dress-content__title {
    font-size: 5.5rem;
    padding: 3rem 6rem;
  }
}

.dress-content__location {
  font-size: 1.8rem;
  font-family: "raisonne-light-pro";
  margin-bottom: 3rem;
  display: none;
}

@media (min-width: 768px) {
  .dress-content__location {
    display: block;
  }
}

.dress-content__body {
  margin-bottom: 3rem;
}

.dress-content__body h2,
.dress-content__body h3,
.dress-content__body h4,
.dress-content__body h5,
.dress-content__body h6 {
  margin-bottom: 1.2rem;
}

.dress-content__body ul {
  list-style: initial;
  padding-left: 2rem;
}

.dress-content__body ul li {
  list-style: initial;
  margin-bottom: 0.75rem;
}

@media (max-width: 1023.98px) {
  .dress-content__dropdown {
    text-transform: none;
    font-size: 2rem;
    padding: 1.5rem 3rem;
    padding-left: 0;
    padding-right: 5rem;
  }
}

@media (max-width: 1023.98px) {
  .dress-content__dropdown-location {
    font-size: 1.6rem;
    display: block;
    color: #636870;
  }
}

.accreditation-form {
  max-width: 600px;
}

.accreditation-form h3 {
  margin-bottom: 3rem;
}

.accreditation-form br {
  display: none;
}

.accreditation-form label {
  color: #636870;
}

.accreditation-form .form-group, .accreditation-form .comment-form p, .comment-form .accreditation-form p, .accreditation-form .search-form label, .search-form .accreditation-form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 768px) {
  .accreditation-form .form-group, .accreditation-form .comment-form p, .comment-form .accreditation-form p, .accreditation-form .search-form label, .search-form .accreditation-form label {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.accreditation-form .form-field {
  width: auto;
  margin-right: 3rem;
}

.accreditation-form .wpcf7-form-control-wrap.radio, .accreditation-form .wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  display: block;
}

.accreditation-form .wpcf7-form-control-wrap.radio .wpcf7-list-item, .accreditation-form .wpcf7-form-control .wpcf7-list-item {
  width: 100%;
  max-width: 100%;
}

.accreditation-form .wpcf7-form-control {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 100%;
}

@media (min-width: 768px) {
  .accreditation-form .wpcf7-form-control {
    max-width: 200px;
  }
}

.accreditation-form .wpcf7-acceptance, .accreditation-form .custom-checkbox .wpcf7-form-control {
  max-width: 100%;
}

.accreditation-form .custom-radio .wpcf7-form-control {
  width: auto;
}

.accreditation-form .wpcf7-list-item-label {
  margin-left: 0 !important;
  padding-left: 1.5rem;
  color: #636870;
}

.accreditation-form .enquiry-form__textarea {
  margin: 0;
  max-width: 100%;
  margin-bottom: 3rem;
  height: 150px;
}

.accreditation-form .custom-checkbox {
  margin: 1.5rem 0 3rem;
}

.accreditation-form .custom-checkbox input {
  -webkit-appearance: checkbox;
     -moz-appearance: checkbox;
          appearance: checkbox;
}

.accreditation-form .terms {
  margin: 1.5rem 0;
}

.accreditation-form .terms .wpcf7-list-item-label {
  margin-top: -.5rem !important;
}

.media-accreditation-wrapper {
  padding: 3rem;
}

@media (min-width: 768px) {
  .media-accreditation-wrapper {
    padding: 9rem;
  }
}

.membership-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.membership-table__list {
  display: none;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  background: #fcfbf9;
  border-right: 1px solid rgba(0, 0, 0, 0.03);
}

@media (min-width: 1024px) {
  .membership-table__list {
    display: block;
    -webkit-box-flex: 45%;
        -ms-flex: 45%;
            flex: 45%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .membership-table__list {
    -webkit-box-flex: 35%;
        -ms-flex: 35%;
            flex: 35%;
  }
}

.membership-table__content {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}

@media (min-width: 1024px) {
  .membership-table__content {
    -webkit-box-flex: 55%;
        -ms-flex: 55%;
            flex: 55%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .membership-table__content {
    -webkit-box-flex: 65%;
        -ms-flex: 65%;
            flex: 65%;
  }
}

.membership-list__item {
  width: 100%;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  cursor: pointer;
}

.membership-list__item.active, .membership-list__item:hover {
  background: white;
}

.membership-list__image {
  position: relative;
  height: 12rem;
  min-width: 16rem;
  background-size: cover;
  background-position: center;
}

.membership-content {
  padding: 3rem;
}

.membership-content.active {
  display: block;
}

@media (min-width: 768px) {
  .membership-content {
    padding: 6rem 6rem 9rem;
  }
}

@media (min-width: 1024px) {
  .membership-content {
    display: none;
  }
}

.membership-list__details {
  margin-left: 1.5rem;
  position: relative;
  width: 100%;
  padding: 1.5rem;
}

.membership-list__details-inner {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.membership-list__details-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #00204e;
}

.membership-list__details-body {
  font-size: 1.2rem;
  color: #636870;
}

.membership-content__title {
  margin-bottom: 3rem;
  font-size: 2.2rem;
}

@media (min-width: 768px) {
  .membership-content__title {
    font-size: 5.5rem;
  }
}

.membership-content__body {
  margin-bottom: 3rem;
}

.membership-content__body ul {
  margin-left: 3rem;
}

.membership-content__body ul li {
  list-style: disc;
}

.searchform-custom #s {
  width: 100%;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
  border-radius: 0.3rem 0 0 0.3rem;
}

.searchform-custom input,
.searchform-custom .btn,
.searchform-custom .comment-form input[type="submit"],
.comment-form .searchform-custom input[type="submit"],
.searchform-custom .search-form .search-submit,
.search-form .searchform-custom .search-submit {
  line-height: 1;
  padding: 10px;
}

@media (min-width: 768px) {
  .searchform-custom input,
  .searchform-custom .btn,
  .searchform-custom .comment-form input[type="submit"],
  .comment-form .searchform-custom input[type="submit"],
  .searchform-custom .search-form .search-submit,
  .search-form .searchform-custom .search-submit {
    padding: 20px;
  }
}


.searchform-custom .btn,
.searchform-custom .comment-form input[type="submit"],
.comment-form .searchform-custom input[type="submit"],
.searchform-custom .search-form .search-submit,
.search-form .searchform-custom .search-submit {
  background: #00204e;
  color: #fff;
  width: 100%;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border: none;
}

.searchform-custom .btn i, .searchform-custom .comment-form input[type="submit"] i, .comment-form .searchform-custom input[type="submit"] i, .searchform-custom .search-form .search-submit i, .search-form .searchform-custom .search-submit i {
  font-size: 20px;
}

#searchform-footer, #searchform-mobile-nav {
  margin-bottom: 3rem;
}

#searchform-footer input,
#searchform-footer .btn,
#searchform-footer .comment-form input[type="submit"],
.comment-form #searchform-footer input[type="submit"],
#searchform-footer .search-form .search-submit,
.search-form #searchform-footer .search-submit, #searchform-mobile-nav input,
#searchform-mobile-nav .btn,
#searchform-mobile-nav .comment-form input[type="submit"],
.comment-form #searchform-mobile-nav input[type="submit"],
#searchform-mobile-nav .search-form .search-submit,
.search-form #searchform-mobile-nav .search-submit {
  border: none !important;
  line-height: 1;
  padding: 0px 10px;
  height: 46px;
}


#searchform-footer .btn,
#searchform-footer .comment-form input[type="submit"],
.comment-form #searchform-footer input[type="submit"],
#searchform-footer .search-form .search-submit,
.search-form #searchform-footer .search-submit,
#searchform-mobile-nav .btn,
#searchform-mobile-nav .comment-form input[type="submit"],
.comment-form #searchform-mobile-nav input[type="submit"],
#searchform-mobile-nav .search-form .search-submit,
.search-form #searchform-mobile-nav .search-submit {
  background: #fff;
  color: #00204e;
}

#searchform-footer .btn i, #searchform-footer .comment-form input[type="submit"] i, .comment-form #searchform-footer input[type="submit"] i, #searchform-footer .search-form .search-submit i, .search-form #searchform-footer .search-submit i, #searchform-mobile-nav .btn i, #searchform-mobile-nav .comment-form input[type="submit"] i, .comment-form #searchform-mobile-nav input[type="submit"] i, #searchform-mobile-nav .search-form .search-submit i, .search-form #searchform-mobile-nav .search-submit i {
  font-size: 15px;
}

#searchform-mobile-nav {
  margin-bottom: 0;
  margin-top: 3rem;
}

/* MODULE 1 - Hero Main */
.module-1-hero-main {
  position: relative;
  padding-bottom: 7.5rem;
  min-height: 450px;
  background: #00204e url("../images/stripe.png");
  background-size: 100% auto;
  border-top: 1px solid #1c3849;
}

@media (min-width: 1024px) {
  .module-1-hero-main {
    height: calc(100vh - 8.3rem);
    border-top: none;
    min-height: 660px;
  }
}

@media (max-width: 1023.98px) {
  .module-1-hero-main .slick-dots {
    bottom: -5.1rem;
  }
}

.btn-hero-main {
  display: block;
  text-align: left;
}

@media (min-width: 1024px) {
  .btn-hero-main {
    display: inline-block;
  }
}

.grass-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 45%;
  background: url("../images/grass.png");
  background-size: 100% auto;
}

.hero-main__slide {
  position: relative;
  height: 100%;
}

.hero-main__imagewrap {
  height: 400px;
  padding: 0;
  opacity: 0.5;
  -webkit-transform: translateY(3rem);
       -o-transform: translateY(3rem);
          transform: translateY(3rem);
  will-change: transform;
  -webkit-transition: opacity 0.8s ease, margin 0.8s ease, -webkit-transform 0.8s ease;
  transition: opacity 0.8s ease, margin 0.8s ease, -webkit-transform 0.8s ease;
  -o-transition: opacity 0.8s ease, margin 0.8s ease, -o-transform 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease, margin 0.8s ease;
  transition: transform 0.8s ease, opacity 0.8s ease, margin 0.8s ease, -webkit-transform 0.8s ease, -o-transform 0.8s ease;
  position: relative;
}

@media (min-width: 1024px) {
  .hero-main__imagewrap {
    width: 60%;
    -webkit-transform: translate(-4rem, 19rem);
         -o-transform: translate(-4rem, 19rem);
            transform: translate(-4rem, 19rem);
    padding: 0;
    height: calc(100% - 6rem);
  }
}

.hero-main__image {
  width: 100%;
  height: 100%;
}

.hero-main__text {
  opacity: 0;
  margin-top: 3rem;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

@media (min-width: 1024px) {
  .hero-main__text {
    position: absolute;
    right: 9rem;
    top: 0;
    height: calc(100% - 6rem);
    z-index: 100;
    width: 40%;
    padding: 8rem;
    margin-top: 0;
  }
}

.hero-main__text-title {
  color: white;
  font-size: 2.7rem;
  line-height: 3.2rem;
}

@media (min-width: 1024px) {
  .hero-main__text-title {
    font-size: 4rem;
    line-height: 5rem;
  }
}

@media (min-width: 1200px) {
  .hero-main__text-title {
    font-size: 5.5rem;
    line-height: 6.6rem;
  }
}

.hero-main__text-body {
  display: inline-block;
  color: white;
  font-size: 1.2rem;
  /* border-bottom: 1px solid $gold; */
  margin: 1.5rem 0 3rem 0;
}

@media (min-width: 1024px) {
  .hero-main__text-body {
    display: block;
    font-size: 1.4rem;
    line-height: 2.4rem;
    /* border-bottom: none; */
    margin: 1.5rem 0 6rem 0;
  }
}

.hero-main__text-date {
  margin: 2.1rem 0 0.5rem;
  border-bottom: 1px solid #a08032;
  display: inline-block;
  color: #a08032;
  min-width: 8rem;
  line-height: 2;
  font-size: 12px;
}

@media (min-width: 1024px) {
  .hero-main__text-date {
    font-size: 16px;
    margin-left: -2rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-main__text-inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.slick-center .hero-main__text {
  opacity: 1;
}

.slick-center .hero-main__imagewrap {
  opacity: 1;
  -webkit-transform: translate(0rem, 0rem);
       -o-transform: translate(0rem, 0rem);
          transform: translate(0rem, 0rem);
}

@media (min-width: 1024px) {
  .slick-center .hero-main__imagewrap {
    -webkit-transform: translate(-9rem, 0rem);
         -o-transform: translate(-9rem, 0rem);
            transform: translate(-9rem, 0rem);
  }
}

.hero-main__prev,
.hero-main__next {
  position: absolute;
  width: 1.5rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hero-main__prev:hover,
.hero-main__next:hover {
  opacity: 1;
}

.hero-main__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .hero-main__next {
    right: 7rem;
    left: auto;
    top: 12rem;
    bottom: auto;
  }
}

.hero-main__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .hero-main__prev {
    right: 7rem;
    left: auto;
    top: 6rem;
    bottom: auto;
  }
}

.hero-main__prev.slick-disabled,
.hero-main__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.hero-main__prev.slick-disabled:hover,
.hero-main__next.slick-disabled:hover {
  opacity: 0;
}

.module-1-hero-main__modal .close {
  text-align: right;
  color: #fff;
  font-family: "raisonne-light-pro";
  font-weight: normal;
  font-size: 50px;
}

.module-1-hero-main__modal .modal-content {
  background: none;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: none;
}

@media (min-width: 768px) {
  .module-1-hero-main__modal .modal-dialog {
    max-width: 90%;
  }
}

@media (min-width: 1024px) {
  .module-1-hero-main__modal .modal-dialog {
    width: 70%;
    max-width: 1200px;
  }
}

.btn-hero-main__popup {
  cursor: pointer;
}

.hero-main__play-icon {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  cursor: pointer;
}

.hero-main__play-icon::before {
  content: "";
  background: #a08032 url("../images/play-icon.svg") no-repeat center center;
  background-size: 30px;
  background-position: right 45% top 50%;
  width: 100px;
  height: 100px;
  display: block;
  background-color: rgba(160, 128, 50, 0.7);
  border-radius: 100%;
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
}

.hero-main__play-icon:hover::before {
  background-color: rgba(160, 128, 50, 0.8);
}

/* MODULE 2 - Event Hero 1 */
.module-2-event-hero-1 {
  position: relative;
  background: #00204e;
}

@media (min-width: 1024px) {
  .module-2-event-hero-1 {
    margin-bottom: 4vh;
    min-height: 56rem;
  }
}

.module-2-event-hero-1 .btn, .module-2-event-hero-1 .comment-form input[type="submit"], .comment-form .module-2-event-hero-1 input[type="submit"], .module-2-event-hero-1 .search-form .search-submit, .search-form .module-2-event-hero-1 .search-submit {
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .module-2-event-hero-1 .btn, .module-2-event-hero-1 .comment-form input[type="submit"], .comment-form .module-2-event-hero-1 input[type="submit"], .module-2-event-hero-1 .search-form .search-submit, .search-form .module-2-event-hero-1 .search-submit {
    margin-top: 3rem;
    width: auto;
  }
}

.event-hero-1__image,
.event-hero-1__video {
  position: relative;
  background-size: cover;
  background-position: center;
}

@media (max-width: 1023.98px) {
  .event-hero-1__image:not(.event-hero-1__image--carousel),
  .event-hero-1__video:not(.event-hero-1__image--carousel) {
    padding-bottom: 68%;
  }
}

@media (min-width: 1024px) {
  .event-hero-1__image,
  .event-hero-1__video {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    margin-bottom: -6vh;
  }
}

@media (min-width: 1200px) {
  .event-hero-1__image,
  .event-hero-1__video {
    width: 52%;
    right: 5%;
  }
}

.event-hero-1__video {
  height: auto;
}

@media (min-width: 1024px) {
  .event-hero-1__video {
    height: 100%;
  }
}

.event-hero-1__text {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .event-hero-1__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48%;
  }
}

@media (min-width: 1200px) {
  .event-hero-1__text {
    width: 38%;
    left: 4%;
    padding: 6rem 1rem;
  }
}

.event-hero-1__text-title {
  color: white;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .event-hero-1__text-title {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (min-width: 1200px) {
  .event-hero-1__text-title {
    font-size: 5.3rem;
    line-height: 6rem;
  }
}

.event-hero-1__location {
  color: white;
  font-family: "raisonne-demibold-pro";
  font-size: 1.8rem;
}

.event-hero-1__date {
  color: #a08032;
  font-family: "raisonne-demibold-pro";
  font-size: 1.8rem;
}

.event-hero-1__icon {
  width: 20px;
  height: auto;
  margin-right: 0.5rem;
  position: relative;
  top: -0.3rem;
}

.venue-colours .event-hero-1__location,
.venue-colours .event-hero-1__text-title,
.venue-colours .event-hero-1__date,
.venue-colours .event-hero-1__date {
  color: #00204e;
}

.venue-colours .event-hero-1__text .btn, .venue-colours .event-hero-1__text .comment-form input[type="submit"], .comment-form .venue-colours .event-hero-1__text input[type="submit"], .venue-colours .event-hero-1__text .search-form .search-submit, .search-form .venue-colours .event-hero-1__text .search-submit {
  color: #00204e;
  background-color: #fff;
  border: none;
}

.royal-randwick-colour .module-2-event-hero-1 {
  background: #F58226;
}

.royal-randwick-colour .event-hero-1__text .btn, .royal-randwick-colour .event-hero-1__text .comment-form input[type="submit"], .comment-form .royal-randwick-colour .event-hero-1__text input[type="submit"], .royal-randwick-colour .event-hero-1__text .search-form .search-submit, .search-form .royal-randwick-colour .event-hero-1__text .search-submit {
  background-image: url(../images/arrow-right-rr.svg) !important;
}

.rosehill-gardens-colour .module-2-event-hero-1 {
  background: #80d5b6;
}

.rosehill-gardens-colour .event-hero-1__text .btn, .rosehill-gardens-colour .event-hero-1__text .comment-form input[type="submit"], .comment-form .rosehill-gardens-colour .event-hero-1__text input[type="submit"], .rosehill-gardens-colour .event-hero-1__text .search-form .search-submit, .search-form .rosehill-gardens-colour .event-hero-1__text .search-submit {
  background-image: url(../images/arrow-right-rg.svg) !important;
}

.canterbury-park-colour .module-2-event-hero-1 {
  background: #627fdd;
}

.canterbury-park-colour .event-hero-1__text .btn, .canterbury-park-colour .event-hero-1__text .comment-form input[type="submit"], .comment-form .canterbury-park-colour .event-hero-1__text input[type="submit"], .canterbury-park-colour .event-hero-1__text .search-form .search-submit, .search-form .canterbury-park-colour .event-hero-1__text .search-submit {
  background-image: url(../images/arrow-right-cp.svg) !important;
}

.warwick-farm-colour .module-2-event-hero-1 {
  background: #80ad6c;
}

.warwick-farm-colour .event-hero-1__text .btn, .warwick-farm-colour .event-hero-1__text .comment-form input[type="submit"], .comment-form .warwick-farm-colour .event-hero-1__text input[type="submit"], .warwick-farm-colour .event-hero-1__text .search-form .search-submit, .search-form .warwick-farm-colour .event-hero-1__text .search-submit {
  background-image: url(../images/arrow-right-wf.svg) !important;
}

.carnival-colour .module-2-event-hero-1 {
  background: #ece7dc;
}

.carnival-colour .event-hero-1__text-title {
  color: #a08032;
}

@media (min-width: 1024px) {
  .event-hero-1__image .hero-main__prev,
  .event-hero-1__image .hero-main__next {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    opacity: 1;
  }
  .event-hero-1__image .hero-main__prev img,
  .event-hero-1__image .hero-main__next img {
    max-width: 15px;
    opacity: 0.7;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .event-hero-1__image .hero-main__prev:hover img,
  .event-hero-1__image .hero-main__next:hover img {
    opacity: 1;
  }
  .event-hero-1__image .hero-main__prev {
    top: 52px;
    right: 0px;
  }
  .event-hero-1__image .hero-main__next {
    right: 0px;
    top: 0px;
  }
}

.module-2-event-hero-1--b {
  min-height: 0;
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .module-2-event-hero-1--b {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .module-2-event-hero-1--b .event-hero-1 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 3rem 0 6rem;
  }
}

@media (min-width: 1024px) {
  .module-2-event-hero-1--b .event-hero-1 {
    padding: 3rem 0;
  }
}

@media (min-width: 1200px) {
  .module-2-event-hero-1--b .event-hero-1 {
    padding: 3rem;
  }
}

.module-2-event-hero-1--b .event-hero-1 .event-hero-1__image--carousel, .module-2-event-hero-1--b .event-hero-1 .event-hero-1__video {
  position: relative;
  right: auto;
  bottom: auto;
  top: auto;
  left: auto;
  height: auto;
  padding-bottom: 0;
}

@media (min-width: 768px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__image--carousel, .module-2-event-hero-1--b .event-hero-1 .event-hero-1__video {
    width: 58%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    margin-bottom: 0;
  }
}

@media (min-width: 1024px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__image--carousel, .module-2-event-hero-1--b .event-hero-1 .event-hero-1__video {
    margin-left: 4.4%;
    width: 52%;
    padding-left: 4vw;
    margin-bottom: -10vh;
  }
}

@media (min-width: 1200px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__image--carousel, .module-2-event-hero-1--b .event-hero-1 .event-hero-1__video {
    padding-left: 0;
    margin-bottom: -10vh;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__image--carousel, .module-2-event-hero-1--b .event-hero-1 .event-hero-1__video {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text {
    position: static;
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    top: auto;
    left: auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 42%;
  }
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text .btn, .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text .comment-form input[type="submit"], .comment-form .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text input[type="submit"], .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text .search-form .search-submit, .search-form .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text .search-submit {
    margin-top: 0.5rem;
  }
}

@media (min-width: 1024px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text {
    width: 38%;
  }
}

@media (min-width: 1700px) {
  .module-2-event-hero-1--b .event-hero-1 .event-hero-1__text {
    padding-left: 20px;
  }
}

/* MODULE 2A - Events Hero 2 */
.module-2A-events-hero-2 {
  position: relative;
  background: #fcfbf9;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .module-2A-events-hero-2 {
    height: calc(60vh - 8.4rem);
    min-height: 60rem;
  }
}

.module-2A-events-hero-2 .btn, .module-2A-events-hero-2 .comment-form input[type="submit"], .comment-form .module-2A-events-hero-2 input[type="submit"], .module-2A-events-hero-2 .search-form .search-submit, .search-form .module-2A-events-hero-2 .search-submit {
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .module-2A-events-hero-2 .btn, .module-2A-events-hero-2 .comment-form input[type="submit"], .comment-form .module-2A-events-hero-2 input[type="submit"], .module-2A-events-hero-2 .search-form .search-submit, .search-form .module-2A-events-hero-2 .search-submit {
    margin-top: 6rem;
    width: auto;
  }
}

.events-hero-2__images-main {
  position: relative;
  height: calc(30vh - 3rem);
  background: #00204e;
}

@media (min-width: 768px) {
  .events-hero-2__images-main {
    height: calc(45vh - 3rem);
  }
}

@media (min-width: 1024px) {
  .events-hero-2__images-main {
    position: absolute;
    bottom: 5rem;
    left: 8%;
    width: 40%;
    height: calc(100% - 10rem);
  }
}

.events-hero-2__slide-main,
.events-hero-2__slide-secondary {
  height: 100%;
  background-size: cover;
  background-position: center;
}

.events-hero-2__images-secondary {
  display: none;
}

@media (min-width: 1024px) {
  .events-hero-2__images-secondary {
    display: block;
    position: absolute;
    bottom: 8rem;
    right: 0;
    -webkit-transform: translateX(calc(100% - 12rem));
         -o-transform: translateX(calc(100% - 12rem));
            transform: translateX(calc(100% - 12rem));
    width: 40%;
    height: calc(100% - 16rem);
    -webkit-box-shadow: 0 2px 14px 0 rgba(152, 152, 152, 0.5);
            box-shadow: 0 2px 14px 0 rgba(152, 152, 152, 0.5);
  }
}

.events-hero-2__text {
  padding: 6rem 3rem 3rem;
}

@media (min-width: 1024px) {
  .events-hero-2__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 40%;
    padding: 6rem 3rem;
    left: 50%;
  }
}

@media (min-width: 1200px) {
  .events-hero-2__text {
    padding: 6rem;
  }
}

.events-hero-2__text-title {
  color: #00204e;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .events-hero-2__text-title {
    font-size: 5rem;
    line-height: 5.5rem;
  }
}

@media (min-width: 1200px) {
  .events-hero-2__text-title {
    font-size: 5.3rem;
    line-height: 6rem;
  }
}

.events-hero-2__text-subtitle {
  font-size: 2.2rem;
  margin-bottom: 3rem;
  display: none;
}

@media (min-width: 1024px) {
  .events-hero-2__text-subtitle {
    display: block;
  }
}

.events-hero-2__location,
.events-hero-2__date {
  color: #636870;
}

.events-hero-2__icon {
  width: 1.7rem;
  height: auto;
  margin-right: 1rem;
  position: relative;
  top: -0.1rem;
  display: inline-block !important;
}

.events-hero-2__arrows {
  display: none;
}

@media (min-width: 1024px) {
  .events-hero-2__arrows {
    display: block;
  }
}

.events-hero-2__arrows-mobile {
  display: block;
}

@media (min-width: 1024px) {
  .events-hero-2__arrows-mobile {
    display: none;
  }
}

.events-hero-2__prev,
.events-hero-2__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: -3.7rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 10;
}

@media (min-width: 1024px) {
  .events-hero-2__prev,
  .events-hero-2__next {
    bottom: auto;
    top: 50%;
  }
}

.events-hero-2__prev:hover,
.events-hero-2__next:hover {
  opacity: 1;
}

.events-hero-2__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .events-hero-2__next {
    right: 14rem;
  }
}

.events-hero-2__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .events-hero-2__prev {
    left: 2rem;
  }
}

.events-hero-2__prev.slick-disabled,
.events-hero-2__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.events-hero-2__prev.slick-disabled:hover,
.events-hero-2__next.slick-disabled:hover {
  opacity: 0;
}

.module-2A-events-hero-2 .slick-dots {
  bottom: -3.3rem;
}

.module-2A-events-hero-2 .slick-dots li {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.module-2A-events-hero-2 .slick-dots li.slick-active {
  background: black;
}

.module-2A-events-hero-2--dark {
  background: #00204e;
}

@media (min-width: 1024px) {
  .module-2A-events-hero-2--dark .events-hero-2__images-main {
    height: 100%;
    left: 0;
    width: 49%;
    margin-bottom: -50px;
  }
}

.module-2A-events-hero-2--dark .events-hero-2__text-title,
.module-2A-events-hero-2--dark .events-hero-2__text-subtitle,
.module-2A-events-hero-2--dark .events-hero-2__location,
.module-2A-events-hero-2--dark .events-hero-2__date {
  color: #fff;
}

.module-2A-events-hero-2--dark .btn, .module-2A-events-hero-2--dark .comment-form input[type="submit"], .comment-form .module-2A-events-hero-2--dark input[type="submit"], .module-2A-events-hero-2--dark .search-form .search-submit, .search-form .module-2A-events-hero-2--dark .search-submit {
  border-color: #a08032;
  color: #fff;
  margin-top: 2rem;
}

.module-2A-events-hero-2--dark .btn:hover, .module-2A-events-hero-2--dark .comment-form input:hover[type="submit"], .comment-form .module-2A-events-hero-2--dark input:hover[type="submit"], .module-2A-events-hero-2--dark .search-form .search-submit:hover, .search-form .module-2A-events-hero-2--dark .search-submit:hover {
  color: #fff;
}

.module-2A-events-hero-2--dark .slick-dots li {
  border-color: #fff;
}

.module-2A-events-hero-2--dark .slick-dots li.slick-active {
  background: #fff;
}

.events-hero-2__images-secondary--dark {
  -webkit-box-shadow: none;
          box-shadow: none;
  bottom: 0;
  height: 100%;
}

.module-2-event-hero-3__carousel__image {
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 1024px) {
  .module-2-event-hero-3__carousel__image {
    border-top: none;
  }
}

/* MODULE 3 - Carnival Hero */
.module-3-carnival-hero {
  position: relative;
  background: #00204e;
}

@media (min-width: 1024px) {
  .module-3-carnival-hero {
    height: calc(94vh - 8.4rem);
    margin-bottom: 6vh;
    min-height: 56rem;
  }
}

.module-3-carnival-hero .btn, .module-3-carnival-hero .comment-form input[type="submit"], .comment-form .module-3-carnival-hero input[type="submit"], .module-3-carnival-hero .search-form .search-submit, .search-form .module-3-carnival-hero .search-submit {
  margin-top: 1.5rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .module-3-carnival-hero .btn, .module-3-carnival-hero .comment-form input[type="submit"], .comment-form .module-3-carnival-hero input[type="submit"], .module-3-carnival-hero .search-form .search-submit, .search-form .module-3-carnival-hero .search-submit {
    margin-top: 6rem;
    width: auto;
  }
}

.carnival-hero__images {
  position: relative;
  height: calc(60vh - 3rem);
  margin-bottom: 3rem;
  background: #00204e;
}

@media (min-width: 576px) and (max-width: 1023.98px) {
  .carnival-hero__images {
    height: calc(60vh - 10rem);
  }
}

@media (min-width: 1024px) {
  .carnival-hero__images {
    position: absolute;
    bottom: 0;
    right: 6rem;
    width: 46%;
    height: 100%;
    margin-bottom: -6vh;
  }
}

@media (min-width: 1200px) {
  .carnival-hero__images {
    width: 50%;
  }
}

.carnival-hero__slide {
  height: 100%;
  background-size: cover !important;
  background-position: center !important;
}

.carnival-hero__text {
  padding: 3rem;
}

.carnival-hero__text.carnival-hero__text--hospitality {
  color: #fff;
}

.carnival-hero__text.carnival-hero__text--hospitality p,
.carnival-hero__text.carnival-hero__text--hospitality li {
  color: #fff;
}

@media (min-width: 1024px) {
  .carnival-hero__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48%;
    padding: 6rem;
  }
}

@media (min-width: 1200px) {
  .carnival-hero__text {
    width: 42%;
  }
}

.carnival-hero__text-title {
  color: white;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .carnival-hero__text-title {
    font-size: 5rem;
    line-height: 3.2rem;
    margin-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .carnival-hero__text-title {
    font-size: 5.3rem;
    line-height: 6rem;
  }
}

.carnival-hero__location {
  color: white;
  font-family: "raisonne-demibold-pro";
  font-size: 1.8rem;
}

@media (min-width: 1024px) {
  .carnival-hero__location {
    font-size: 2.2rem;
  }
}

.carnival-hero__date {
  color: #a08032;
  font-family: "raisonne-demibold-pro";
  font-size: 1.8rem;
}

@media (min-width: 1024px) {
  .carnival-hero__date {
    font-size: 2.2rem;
  }
}

.carnival-hero__icon {
  width: 20px;
  height: auto;
  margin-right: 0.5rem;
  position: relative;
  top: -0.3rem;
}

.carnival-hero__arrows .gallery__prev,
.carnival-hero__arrows .gallery__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: -3.7rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 10;
}

@media (min-width: 1024px) {
  .carnival-hero__arrows .gallery__prev,
  .carnival-hero__arrows .gallery__next {
    bottom: auto;
    top: 50%;
  }
}

.carnival-hero__arrows .gallery__prev:hover,
.carnival-hero__arrows .gallery__next:hover {
  opacity: 1;
}

.carnival-hero__arrows .gallery__next {
  right: 1.5rem;
}

@media (min-width: 1024px) {
  .carnival-hero__arrows .gallery__next {
    left: auto;
    right: -4rem;
  }
}

.carnival-hero__arrows .gallery__prev {
  left: 1.5rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .carnival-hero__arrows .gallery__prev {
    left: -4rem;
  }
}

.carnival-hero__arrows .gallery__prev.slick-disabled,
.carnival-hero__arrows .gallery__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.carnival-hero__arrows .gallery__prev.slick-disabled:hover,
.carnival-hero__arrows .gallery__next.slick-disabled:hover {
  opacity: 0;
}

.module-3-carnival-hero .slick-dots {
  bottom: -3.3rem;
}

.venue-colours .carnival-hero__text-title,
.venue-colours .carnival-hero__text.carnival-hero__text--hospitality p,
.venue-colours .carnival-hero__text.carnival-hero__text--hospitality li {
  color: #00204e;
}

.venue-colours .carnival-hero__text .btn, .venue-colours .carnival-hero__text .comment-form input[type="submit"], .comment-form .venue-colours .carnival-hero__text input[type="submit"], .venue-colours .carnival-hero__text .search-form .search-submit, .search-form .venue-colours .carnival-hero__text .search-submit {
  color: #00204e;
  background-color: #fff;
  border: none;
}

.royal-randwick-colour .module-3-carnival-hero {
  background: #F58226;
}

.royal-randwick-colour .carnival-hero__text .btn, .royal-randwick-colour .carnival-hero__text .comment-form input[type="submit"], .comment-form .royal-randwick-colour .carnival-hero__text input[type="submit"], .royal-randwick-colour .carnival-hero__text .search-form .search-submit, .search-form .royal-randwick-colour .carnival-hero__text .search-submit {
  background-image: url(../images/arrow-right-rr.svg) !important;
}

.rosehill-gardens-colour .module-3-carnival-hero {
  background: #80d5b6;
}

.rosehill-gardens-colour .carnival-hero__text .btn, .rosehill-gardens-colour .carnival-hero__text .comment-form input[type="submit"], .comment-form .rosehill-gardens-colour .carnival-hero__text input[type="submit"], .rosehill-gardens-colour .carnival-hero__text .search-form .search-submit, .search-form .rosehill-gardens-colour .carnival-hero__text .search-submit {
  background-image: url(../images/arrow-right-rg.svg) !important;
}

.canterbury-park-colour .module-3-carnival-hero {
  background: #627fdd;
}

.canterbury-park-colour .carnival-hero__text .btn, .canterbury-park-colour .carnival-hero__text .comment-form input[type="submit"], .comment-form .canterbury-park-colour .carnival-hero__text input[type="submit"], .canterbury-park-colour .carnival-hero__text .search-form .search-submit, .search-form .canterbury-park-colour .carnival-hero__text .search-submit {
  background-image: url(../images/arrow-right-cp.svg) !important;
}

.warwick-farm-colour .module-3-carnival-hero {
  background: #80ad6c;
}

.warwick-farm-colour .carnival-hero__text .btn, .warwick-farm-colour .carnival-hero__text .comment-form input[type="submit"], .comment-form .warwick-farm-colour .carnival-hero__text input[type="submit"], .warwick-farm-colour .carnival-hero__text .search-form .search-submit, .search-form .warwick-farm-colour .carnival-hero__text .search-submit {
  background-image: url(../images/arrow-right-wf.svg) !important;
}

/* MODULE 4 - Racecourse Gallery */
.module-4-racecourse-gallery {
  position: relative;
  height: auto;
  background: #00204e;
  border-top: 1px solid #1c3849;
  padding: 1.5rem 0 6rem 0;
}

@media (min-width: 1024px) {
  .module-4-racecourse-gallery {
    height: calc(100vh - 8.3rem);
    padding: 0 0 3rem 0;
    border-top: none;
  }
}

.module-4-racecourse-gallery .header-line {
  top: 0.1rem;
}

.racecourse-gallery__slide {
  position: relative;
  height: 100%;
}

.racecourse-gallery__imagewrap {
  margin: 0 0 0 1.5rem;
  width: calc(100% - 3rem);
  height: 60vw;
  position: relative;
}

@media (min-width: 1024px) {
  .racecourse-gallery__imagewrap {
    margin: 0 0 0 8rem;
    width: calc(100% - 16rem);
    height: calc(100% - 6rem);
  }
}

.racecourse-gallery__overlay {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.95)), color-stop(50%, rgba(0, 0, 0, 0)));
  background: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 50%);
  background: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 50%);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0) 50%);
  display: none;
}

@media (min-width: 768px) {
  .racecourse-gallery__overlay {
    display: block;
  }
}

.racecourse-gallery__image {
  width: 100%;
  height: 100%;
}

.slick-current .hero-main__imagewrap {
  opacity: 1;
}

.racecourse-gallery__prev,
.racecourse-gallery__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

@media (min-width: 1024px) {
  .racecourse-gallery__prev,
  .racecourse-gallery__next {
    bottom: auto;
    top: 50%;
    margin-top: -6rem;
  }
}

.racecourse-gallery__prev:hover,
.racecourse-gallery__next:hover {
  opacity: 1;
}

.racecourse-gallery__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .racecourse-gallery__next {
    left: auto;
  }
}

.racecourse-gallery__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.racecourse-gallery__prev.slick-disabled,
.racecourse-gallery__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.racecourse-gallery__prev.slick-disabled:hover,
.racecourse-gallery__next.slick-disabled:hover {
  opacity: 0;
}

.module-4-racecourse-gallery .slick-dots {
  bottom: -3.5rem;
}

.racecourse-gallery__logo {
  display: none;
  position: absolute;
  left: 50%;
  bottom: 10rem;
  width: 20rem;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

@media (min-width: 768px) {
  .racecourse-gallery__logo {
    display: block;
  }
}

@media (min-width: 1024px) {
  .racecourse-gallery__logo {
    bottom: 15rem;
  }
}

.royal-randwick-colour .module-4-racecourse-gallery {
  background: #F58226;
}

.rosehill-gardens-colour .module-4-racecourse-gallery {
  background: #80d5b6;
}

.canterbury-park-colour .module-4-racecourse-gallery {
  background: #627fdd;
}

.warwick-farm-colour .module-4-racecourse-gallery {
  background: #80ad6c;
}

/* MODULE 7 - Our Partners */
.module-7-our-partners {
  position: relative;
  background: #fcfbf9;
  width: 100%;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

@media (min-width: 1024px) {
  .module-7-our-partners {
    padding: 1.5rem 3rem;
  }
}

.our-partners__title {
  display: block;
  width: 100%;
  text-align: center;
  padding: 0 0 1rem;
}

.our-partners__logo {
  text-align: center;
  min-width: 14%;
  max-width: 20%;
}

@media (min-width: 576px) {
  .our-partners__logo {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .our-partners__logo {
    min-width: 14%;
  }
}

.our-partners__image {
  width: 75%;
  opacity: 1;
}

/* MODULE 8 - Community & Social */
.module-8-community-social {
  padding: 3rem 1.5rem;
}

@media (min-width: 576px) {
  .module-8-community-social {
    padding: 3rem;
  }
}

.community-social__header {
  text-align: center;
  padding: 3rem;
}

.community-socials__header {
  color: #00204e;
  font-family: "raisonne-light-pro";
  position: relative;
  padding: 0 2rem;
}

.community-socials__header .title {
  font-size: 1.6rem;
}

@media (min-width: 576px) {
  .community-socials__header .title {
    font-size: 2.2rem;
  }
}

.community-socials__follow {
  color: #00204e;
  position: absolute;
  display: inline-block;
  right: 1.5rem;
  top: 0.5rem;
  font-family: "Gotham-Book", "Arial", sans-serif;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  opacity: 0.5;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.community-socials__follow:hover {
  color: #00204e;
  opacity: 1;
}

@media (min-width: 1024px) {
  .community-socials__follow {
    right: 6rem;
  }
}

.instagram-feed {
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .instagram-feed {
    width: 65%;
    float: left;
  }
}

.twitter-feed {
  position: relative;
  width: 100%;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .twitter-feed {
    width: 35%;
    float: right;
  }
}

.social-feed-icon {
  display: inline-block;
  font-size: 2rem;
  position: relative;
  top: 0.3rem;
  margin-right: 0.5rem;
}

@media (min-width: 576px) {
  .social-feed-icon {
    top: 0.7rem;
    font-size: 3rem;
    margin-right: 1rem;
  }
}

.twitter-feed__embed {
  overflow: scroll;
  width: calc(100% - 1.5rem);
  position: relative;
  top: 2rem;
}

.twitter-feed__embed--mobile {
  margin-top: 20px;
  overflow: hidden;
  height: auto;
}

.twitter-feed__embed iframe,
.twitter-feed__embed--mobile iframe {
  margin-top: -50px !important;
  margin-bottom: -55px !important;
}

@media screen and (max-width: 1290px) {
  .twitter-feed__embed iframe,
  .twitter-feed__embed--mobile iframe {
    margin-top: -50px !important;
  }
}

#sb_instagram {
  padding-bottom: 0 !important;
}

#sb_instagram .sbi_photo {
  height: auto !important;
  padding-bottom: 100% !important;
}

@media (max-width: 480px) {
  #sb_instagram.sbi_col_3 #sbi_images .sbi_item {
    width: 50%;
  }
}

/* MODULE 9 - Racecourses */
.module-9-racecourses {
  position: relative;
}

.racecourses__title {
  padding: 3rem 0 0 0;
  text-align: center;
}

.racecourses__title .title {
  font-size: 1.8rem;
}

@media (min-width: 1024px) {
  .racecourses__title .title {
    margin-bottom: 3rem;
    font-size: 2.2rem;
  }
}

.racecourses__slide {
  position: relative;
  margin: 3rem 0 7rem 0;
  border-bottom: 1px solid #fcfbf9;
}

.racecourses__slide:hover .racecourses__logo {
  height: 4.5rem;
}

@media (min-width: 1024px) {
  .racecourses__slide {
    margin: 3rem 0;
    border-bottom: none;
  }
  .racecourses__slide:hover .racecourses__logo {
    height: 7rem;
  }
}

@media (min-width: 1200px) {
  .racecourses__slide:hover .racecourses__logo {
    height: 9rem;
  }
}

.racecourses__image {
  position: relative;
  margin: 0 1rem 3rem 1rem;
  padding-bottom: 140%;
  -webkit-transition: padding 0.8s ease, opacity 0.8s ease;
  -o-transition: padding 0.8s ease, opacity 0.8s ease;
  transition: padding 0.8s ease, opacity 0.8s ease;
  background-position: center;
  background-size: cover;
}

.racecourses__image img {
  width: 100%;
  height: 100%;
  max-height: 37rem;
}

@media (min-width: 1024px) {
  .racecourses__image {
    margin: 0 1rem;
  }
}

.racecourses__gradient {
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.95)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  top: 0;
  left: 1rem;
  bottom: 3rem;
  right: 1rem;
  -webkit-transition: top 0.5s ease, background 0.5s ease;
  -o-transition: top 0.5s ease, background 0.5s ease;
  transition: top 0.5s ease, background 0.5s ease;
}

@media (min-width: 1024px) {
  .racecourses__gradient {
    bottom: 0;
  }
}

.racecourses__slide--current-racecourse .racecourses__gradient {
  background: rgba(0, 0, 0, 0.7);
}

.racecourses__slide--current-racecourse .racecourses__gradient::after {
  content: "Currently Viewing";
  font-size: 2rem;
  color: #fff;
  bottom: 4.5rem;
  left: 0;
  position: absolute;
  right: 0;
  text-align: center;
  font-family: "raisonne-light-pro";
}

@media (min-width: 1024px) {
  .racecourses__slide--current-racecourse .racecourses__gradient::after {
    font-size: 3rem;
  }
}

.racecourses__slide--current-racecourse .racecourses__logo {
  bottom: 50%;
  -webkit-transform: translateY(50%);
       -o-transform: translateY(50%);
          transform: translateY(50%);
}

.racecourses__logo {
  width: 100%;
  height: 4rem;
  position: absolute;
  bottom: 3rem;
  -webkit-transition: height 0.5s ease;
  -o-transition: height 0.5s ease;
  transition: height 0.5s ease;
}

@media (min-width: 1024px) {
  .racecourses__logo {
    bottom: 4.5rem;
    height: 6rem;
  }
}

@media (min-width: 1200px) {
  .racecourses__logo {
    height: 8rem;
  }
}

.racecourses__prev,
.racecourses__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.racecourses__prev:hover,
.racecourses__next:hover {
  opacity: 1;
}

.racecourses__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .racecourses__next {
    right: 7rem;
    left: auto;
    top: 6rem;
    bottom: auto;
  }
}

.racecourses__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .racecourses__prev {
    right: 7rem;
    left: auto;
    top: 13rem;
    bottom: auto;
  }
}

.racecourses__prev.slick-disabled,
.racecourses__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.racecourses__prev.slick-disabled:hover,
.racecourses__next.slick-disabled:hover {
  opacity: 0;
}

.racecourses .slick-dots li {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.racecourses .slick-dots li.slick-active {
  background: black;
}

/* nav-dropdown */
.nav-dropdown__page-title {
  font-family: "raisonne-light-pro";
  color: #fff;
  font-size: 35px;
  line-height: 1;
  width: 90%;
  display: block;
  margin: 0 auto;
  text-transform: uppercase;
  position: absolute;
  bottom: 8%;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
       -o-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  -o-transition: -o-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease, -o-transform 0.4s ease;
}

@media (min-width: 1200px) {
  .nav-dropdown__page-title {
    font-size: 42px;
    max-width: 260px;
  }
}

.nav-dropdown .racecourses__slide:hover .nav-dropdown__page-title {
  -webkit-transform: translate(-50%, -8px);
       -o-transform: translate(-50%, -8px);
          transform: translate(-50%, -8px);
}

.nav-dropdown .racecourses__slide:hover .racecourses__gradient {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(black));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, black 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, black 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, black 100%);
}

/* MODULE 10 - FAQs */
.module-10-faqs {
  position: relative;
  padding: 3rem;
}

@media (min-width: 1024px) {
  .module-10-faqs {
    padding: 3rem 6rem;
    max-width: 1024px;
    margin: 0 auto;
  }
}

.faqs__all-button {
  position: relative;
  right: 3rem;
  left: 0;
  /* margin-bottom: $spacing; */
  /* @include media-breakpoint-up(sm) {
    left: auto;
    position: absolute; 
    top: $spacing-half; 
  }

  @include media-breakpoint-up(lg) {
    right: $spacing-double; 
  } */
}

.faqs__header {
  margin-bottom: 1.2rem;
}

@media (min-width: 576px) {
  .faqs__header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 3rem;
  }
}

.faqs__title {
  margin-bottom: 1.2rem;
}

@media (min-width: 576px) {
  .faqs__title {
    margin-bottom: 0;
  }
}

.faq {
  position: relative;
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.05);
  margin-bottom: 1.5rem;
  background: white;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
  /* cursor: pointer; */
}

.faq__question {
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
  color: #00204e;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
  width: calc(100% - 4rem);
  padding: 1.5rem;
  cursor: pointer;
  text-transform: none;
}

.faq__arrow {
  position: absolute;
  width: 1.8rem;
  height: 1.8rem;
  right: 1.5rem;
  top: 2rem;
  -webkit-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease, -o-transform 0.5s ease;
}

.faq__answer {
  display: none;
  color: white;
  opacity: 0;
  -webkit-transition: opacity 0.5s ease;
  -o-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  padding-top: 1.5rem;
  padding: 1.5rem;
}

.faq.open {
  background: #00204e;
}

.faq.open .faq__question {
  color: white;
}

.faq.open .faq__arrow {
  -webkit-transform: rotate(270deg);
       -o-transform: rotate(270deg);
          transform: rotate(270deg);
}

.faq.open .faq__answer {
  opacity: 0.7;
}

.faq.open .faq__answer * {
  color: white;
}

.faq.open .faq__answer a {
  text-decoration: underline;
}

.faq.open .faq__answer a:hover {
  color: #a08032;
}

.module-69 .faq__question {
  background-color: #00204e;
  color: #fff;
  width: 100%;
  padding-right: 4rem;
}

.module-69 .faq .faq__answer {
  background-color: #fff;
  opacity: 1;
}

.module-69 .faq .faq__answer *:not(.button) {
  color: #374151;
}

/* MODULE 11 - Latest News */
.module-11-latest-news {
  position: relative;
  padding: 1.5rem 0;
  background: #fcfbf9;
}

@media (min-width: 1024px) {
  .module-11-latest-news {
    padding: 6rem;
  }
}

.module-11-latest-news .slick-list {
  overflow: visible;
}

.latest-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.latest-news__header {
  position: relative;
}

.latest-news__header .btn, .latest-news__header .comment-form input[type="submit"], .comment-form .latest-news__header input[type="submit"], .latest-news__header .search-form .search-submit, .search-form .latest-news__header .search-submit {
  position: absolute;
  right: 4.5rem;
  top: -0.75rem;
}

.latest-news__title {
  margin: 3rem 0;
  padding-left: 3rem;
}

@media (min-width: 768px) {
  .latest-news__title {
    margin-bottom: 6rem;
    text-align: center;
  }
}

.latest-news__inner__prev,
.latest-news__inner__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.latest-news__inner__prev:hover,
.latest-news__inner__next:hover {
  opacity: 1;
}

.latest-news__inner__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .latest-news__inner__next {
    right: 7rem;
    left: auto;
    top: 6rem;
    bottom: auto;
  }
}

.latest-news__inner__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .latest-news__inner__prev {
    right: 7rem;
    left: auto;
    top: 13rem;
    bottom: auto;
  }
}

.latest-news__inner__prev.slick-disabled,
.latest-news__inner__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.latest-news__inner__prev.slick-disabled:hover,
.latest-news__inner__next.slick-disabled:hover {
  opacity: 0;
}

.module-11-latest-news .slick-dots {
  position: static;
}

.module-11-latest-news .slick-dots li {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.module-11-latest-news .slick-dots li.slick-active {
  background: black;
}

.latest-news-slider-nav {
  position: relative;
}

/* MODULE 11a - Single News Block */
.single-news__card {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  padding: 1.5rem;
}

@media (min-width: 576px) {
  .single-news__card {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .single-news__card {
    -webkit-box-flex: 33.33%;
        -ms-flex: 33.33%;
            flex: 33.33%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .single-news__card:nth-child(3) {
    display: block;
  }
}

.single-news__card-inner {
  -webkit-box-shadow: 0 2px 40px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 40px 0px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 1.5rem;
  background: white;
  height: 100%;
}

.single-news__image {
  position: relative;
  width: 100%;
  padding-bottom: 65%;
  min-height: 24rem;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  display: block;
}

.single-news__text {
  width: 100%;
  padding: 1.5rem 1.5rem 3rem;
}

@media (min-width: 768px) {
  .single-news__text {
    padding: 3rem 3rem 6rem;
  }
}

.single-news__title {
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
}

.single-news__title > .link {
  color: #636870;
}

.single-news__body {
  margin: 1rem 0;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .single-news__body {
    margin: 1.5rem 0;
  }
}

.single-news__link {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: #425b74;
  text-decoration: underline;
  font-size: 1.2rem;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .single-news__link {
    font-size: 1.6rem;
    bottom: 3rem;
    right: 3rem;
  }
}

.single-news__link:hover {
  color: #a08032;
  text-decoration: underline;
}

/* MODULE 12 - Highlights Block */
.highlights-container {
  padding: 4.5rem 1.5rem;
}

@media (min-width: 1024px) {
  .highlights-container {
    padding: 4.5rem 7.5rem;
  }
}

.module-12-highlights-block {
  padding: 3rem;
}

.highlight-block {
  width: 100%;
  display: block;
  height: 100%;
}

.highlight-block__main-title {
  font-family: "raisonne-light-pro";
  text-align: center;
}

.highlight-block__image {
  padding-bottom: 60%;
  background-position: center;
  background-size: cover;
}

.highlight-block__title {
  font-family: "raisonne-light-pro";
  margin: 1.5rem 0 1.2rem;
}

.highlight-block__body {
  font-size: 1.5rem;
}

.highlight-block__body p {
  margin-bottom: 1.2rem;
}

@media (min-width: 1200px) {
  .highlight-block__body {
    font-size: 1.6rem;
  }
}

.highlights-grid {
  width: 100%;
}

.highlights-grid .highlights-grid-item {
  margin-bottom: 3rem;
}

.highlights-grid .highlights-grid-item h5 {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .highlights-grid .highlights-grid-item h5 {
    font-size: 1.8rem;
  }
}

@media (min-width: 1024px) {
  .highlights-grid .highlights-grid-item h5 {
    font-size: 2rem;
  }
}

@media (min-width: 768px) {
  .highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
  }
  .highlights-grid .highlights-grid-item {
    margin-bottom: 0;
  }
  .highlights-grid .highlights-grid-item:first-child {
    grid-row: span 2;
    grid-column: span 2;
    margin-bottom: 3rem;
  }
  .highlights-grid .highlights-grid-item:first-child .highlight-block__image {
    height: calc( 100% - 8rem) !important;
  }
  .highlights-grid .highlights-grid-item:nth-child(7), .highlights-grid .highlights-grid-item:nth-child(6) {
    grid-row: span 1;
    grid-column: span 2;
  }
  .highlights-grid .highlights-grid-item:nth-child(7) .highlight-block, .highlights-grid .highlights-grid-item:nth-child(6) .highlight-block {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .highlights-grid .highlights-grid-item:nth-child(7) .highlight-block__text, .highlights-grid .highlights-grid-item:nth-child(6) .highlight-block__text {
    width: 50%;
    padding: 0 3rem;
  }
  .highlights-grid .highlights-grid-item:nth-child(7) .highlight-block__image, .highlights-grid .highlights-grid-item:nth-child(6) .highlight-block__image {
    width: 50%;
    padding-bottom: 30%;
  }
}

@media (min-width: 1024px) {
  .highlights-grid .highlights-grid-item:first-child .highlight-block__image {
    height: calc( 100% - 10rem) !important;
  }
}

/* MODULE 13 - Hospitality Packages */
.module-13-hospitality-packages {
  padding: 1.5rem 0;
  position: relative;
}

@media (min-width: 1024px) {
  .module-13-hospitality-packages {
    padding: 6rem;
  }
}

.hospitality-packages__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.hospitality-packages__inner--spaces {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.col {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  padding: 1.5rem;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
}

@media (min-width: 576px) {
  .col {
    -webkit-box-flex: calc(100% / 2);
        -ms-flex: calc(100% / 2);
            flex: calc(100% / 2);
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1024px) {
  .col {
    -webkit-box-flex: calc(100% / 3);
        -ms-flex: calc(100% / 3);
            flex: calc(100% / 3);
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .col {
    -webkit-box-flex: calc(100% / 4);
        -ms-flex: calc(100% / 4);
            flex: calc(100% / 4);
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.hospitality-package {
  -webkit-box-shadow: 0 0 6px 0 rgba(180, 180, 180, 0.3);
          box-shadow: 0 0 6px 0 rgba(180, 180, 180, 0.3);
  position: relative;
  height: 100%;
}

.hospitality-package.sold-out .hospitality-package__image {
  background-color: rgba(0, 0, 0, 0.7);
}

.hospitality-package.sold-out .hospitality-package__image,
.hospitality-package.sold-out .hospitality-package__top,
.hospitality-package.sold-out .hospitality-package__body,
.hospitality-package.sold-out .hospitality-package__link {
  opacity: 0.5;
}

.hospitality-package.sold-out .read-more,
.hospitality-package.sold-out .hospitality-package__link {
  pointer-events: none;
}

.hospitality-package__title {
  margin-bottom: 1.5rem;
  font-size: 2rem;
}

.hospitality-packages__intro {
  max-width: 50em;
  margin: 1.2rem auto 0;
}

.hospitality-packages__intro > *:last-child {
  margin-bottom: 0;
}

.hospitality-package__image {
  display: block;
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  background-size: cover;
  background-position: center;
}

.hospitality-package__top {
  padding: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.hospitality-package__top p {
  margin-bottom: 0.6rem;
  font-size: 1.4rem;
}

.hospitality-package__body {
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  font-size: 1.4rem;
}

.hospitality-package__body .read-more {
  text-decoration: underline;
  color: #00204e;
  line-height: 2;
}

.hospitality-package__link {
  /* position: absolute;
  bottom: $spacing-half;
  right: $spacing-half; */
  margin: 0 1.5rem 1.5rem;
}

.hospitality-package__top-enquire-now {
  font-size: 1.4rem;
  text-decoration: underline;
  color: #00204e;
  line-height: 2;
}

.hospitality-package__top-enquire-now:hover, .hospitality-package__top-enquire-now:focus {
  color: #a08032;
  text-decoration: underline;
}

.single-event-b__caption.hospitality-package__caption {
  background: #00204e;
}

#spaces-filters {
  /* display: flex;
  flex-flow: row wrap; */
  padding: 1.5rem;
  margin: 0;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

#spaces-filters h5 {
  margin: 0.6rem;
}

@media (min-width: 768px) {
  #spaces-filters h5 {
    margin-right: 1.5rem;
  }
}

#spaces-filters li {
  cursor: pointer;
  font-size: 13px;
  color: #00204e;
  padding-right: 12px;
  padding-left: 3rem;
  margin-bottom: 0.5rem;
  min-height: auto;
}

#spaces-filters li:hover label {
  color: #a08032;
}

#spaces-filters li label {
  margin-bottom: 0;
  margin-left: 2px;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#spaces-filters .custom-control-label::before, #spaces-filters .custom-control-label::after {
  width: 2rem;
  height: 2rem;
  left: -3rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

#spaces-filters .custom-control-input:focus:not(:checked) ~ .custom-control-label::before {
  border-color: #a08032;
  -webkit-box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
}

#spaces-filters .custom-control-input:focus ~ .custom-control-label::before {
  -webkit-box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
          box-shadow: 0 0 0 0.2rem rgba(160, 128, 50, 0.25);
}

#spaces-filters .custom-control-input:checked ~ .custom-control-label {
  color: #a08032;
}

#spaces-filters .custom-control-input:checked ~ .custom-control-label::before {
  border-color: #a08032;
  background: #a08032;
}

#space-filters {
  padding: 0 30px 0 10px;
  height: 40px;
  border-radius: 0.3rem;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  background-image: url(../images/arrow-down.svg);
  background-repeat: no-repeat !important;
  background-size: auto 35%;
  background-position: right 1rem top 50%;
}

#space-filters:focus, #space-filters:active {
  border-color: #a08032;
}

/* MODULE 14 - Text & Image Block */
.module-14-text-image-block {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .module-14-text-image-block {
    padding: 6rem;
  }
}

.module-14-text-image-block__inner {
  position: relative;
}

.module-14-text-image-block__text {
  width: 100%;
  border-bottom: 0;
  padding: 0 0 3rem;
}

@media (min-width: 768px) {
  .module-14-text-image-block__text {
    width: 50%;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-right: 0;
    padding: 6rem;
    min-height: 35rem;
  }
}

.module-14-text-image-block__image {
  position: relative;
  top: 0;
  right: 0;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .module-14-text-image-block__image {
    width: 50%;
    position: absolute;
  }
}

.module-14-text-image-block__image .object-fit-cover {
  height: 100%;
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.15);
  border-left: none;
}

@media (min-width: 768px) {
  .module-14-text-image-block__image .object-fit-cover {
    width: calc(100% - 15px);
  }
}

.module-14-text-image-block__title {
  margin-bottom: 3rem;
}

.module-14-text-image-block__body {
  color: #374151;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .module-14__image-left .module-14-text-image-block__text {
    margin-left: auto;
  }
  .module-14__image-left .module-14-text-image-block__image {
    right: auto;
    left: 0;
  }
  .module-14__image-left .module-14-text-image-block__image img {
    width: 100%;
  }
}

/* MODULE 15 - Single Event Block */
.single-event-module {
  padding-top: 3rem;
}

.single-event__card {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  /* box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05); */
  position: relative;
  margin-bottom: 1.5rem;
  background: white;
}

@media (min-width: 576px) {
  .single-event__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.single-event__image {
  position: relative;
  width: 100%;
  padding-bottom: 50%;
  background-size: cover;
  background-position: center;
  display: block;
}

@media (min-width: 576px) {
  .single-event__image {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-height: 290px;
    min-width: 0;
    padding-bottom: 0;
  }
}

.single-event__image--with-placeholder {
  background-color: white;
  border-right: 1px solid #f4f0e8;
}

.event-block-group__caption {
  position: absolute;
  top: 1.5rem;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
}

.single-event__text {
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 1.5rem;
}

@media (min-width: 576px) {
  .single-event__text {
    /* position: absolute;
    width: 48%;
    height: 100%; */
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-height: 0;
    min-width: 0;
  }
}

@media (min-width: 768px) {
  .single-event__text {
    padding: 3rem;
  }
}

@media (min-width: 1200px) {
  .single-event__text {
    padding: 3rem 2rem;
  }
}

@media (min-width: 1400px) {
  .single-event__text {
    padding: 3rem;
  }
}

@media (min-width: 768px) {
  .races .single-event__text {
    padding-bottom: 50px;
  }
}

.single-event__text-inner {
  position: relative;
}

@media (min-width: 768px) {
  .single-event__text-inner {
    /* position: absolute; */
    /* padding-right: $spacing-half; */
    /* top: 44%;
    transform: translateY(-50%); */
  }
}

.single-event__title {
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
}

@media (min-width: 1024px) {
  .single-event__title {
    font-size: 1.53rem;
  }
}

@media (min-width: 1400px) {
  .single-event__title {
    font-size: 1.8rem;
  }
}

.single-event__body {
  margin: 1rem 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .single-event__body {
    margin: 1rem 0;
    font-size: 1.4rem;
  }
}

.single-event__link {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: #425b74;
  text-decoration: underline;
  font-size: 1.2rem;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .single-event__link {
    font-size: 1.6rem;
  }
}

.single-event__link:hover {
  color: #a08032;
  text-decoration: underline;
}

.single-event__caption {
  position: absolute;
  top: 1.5rem;
  padding: 0.5rem 0.5rem;
  background: black;
  color: white;
}

.single-event__caption--carnival {
  background: #EA75AB;
}

.single-event__card--carnival {
  border-bottom: #ebebeb solid 1px;
}

.single-event__card--carnival:before, .single-event__card--carnival:after {
  content: '';
  position: absolute;
  background-color: #f8f8f8;
  border: #ebebeb solid 1px;
  border-top: 0;
}

.single-event__card--carnival:before {
  bottom: calc( -1.5rem - 2px);
  left: 1.5rem;
  width: calc(100% - 3rem);
  height: 1.5rem;
}

.single-event__card--carnival:after {
  bottom: calc( -0.75rem - 2px);
  left: 0.75rem;
  width: calc(100% - 1.5rem);
  height: 0.75rem;
}

/* MODULE 15 - Single Event Block */
.single-event-b-module {
  padding-top: 3rem;
}

.single-event-b__card {
  -webkit-box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
          box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.05);
  /* box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.05); */
  position: relative;
  margin-bottom: 1.5rem;
  background: white;
  /* border-left: 1px solid $lightgrey;
  border-right: 1px solid $lightgrey; */
  margin-left: 1px;
  margin-right: 1px;
}

@media (min-width: 576px) {
  .single-event-b__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-left: 8px;
    margin-right: 8px;
  }
}

.single-event-b__card .racecourse-badge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
}

.single-event-b__image {
  position: relative;
  width: 100%;
  padding-bottom: 70%;
  background-size: cover;
  background-position: center;
  display: block;
}

.single-event-b__image::after {
  content: "";
  height: 40%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0.89;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#000000), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(bottom, #000000 0%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0) 100%);
}

@media (min-width: 576px) {
  .single-event-b__image {
    padding-bottom: 50%;
  }
}

@media (min-width: 1024px) {
  .single-event-b__image {
    padding-bottom: 68%;
  }
}

.single-event-b__image--with-placeholder {
  background-color: white;
  border-right: 1px solid #f4f0e8;
}

.event-block-group__caption {
  position: absolute;
  top: 1.5rem;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
}

.single-event-b__text {
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 15px 15px 30px;
  border-right: 1px solid #e8e4dd;
  border-left: 1px solid #e8e4dd;
}

@media (min-width: 768px) {
  .single-event-b__text {
    padding: 20px 20px 40px;
  }
}

@media (min-width: 1200px) {
  .single-event-b__text {
    padding: 20px 20px 40px;
  }
}

.single-event-b__text-inner {
  position: relative;
  padding: 15px;
  /* display: flex;
  flex-flow: column;
  height: 100%; */
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

@media (min-width: 768px) {
  .single-event-b__text-inner {
    padding: 20px;
    /* position: absolute; */
    /* padding-right: $spacing-half; */
    /* top: 44%;
    transform: translateY(-50%); */
  }
}

.single-event-b__title {
  font-family: "raisonne-light-pro";
  font-size: 24px;
}

@media (min-width: 768px) {
  .single-event-b__title {
    font-size: 24px;
  }
}

@media (min-width: 1024px) {
  .single-event-b__title {
    font-size: 20px;
  }
}

@media (min-width: 1400px) {
  .single-event-b__title {
    font-size: 26px;
  }
}

.single-event-b__title--carnival {
  color: #a08032;
}

.single-event-b__body {
  margin: 1rem 0 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .single-event-b__body {
    margin: 1rem 0 0;
    font-size: 1.4rem;
  }
}

.single-event-b__premium-exp {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 1px solid #a08032;
  color: #a08032;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "raisonne-demibold-pro";
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 1.8px;
  line-height: 1.2;
  -ms-flex-item-align: center;
      align-self: center;
  margin-bottom: 16px;
  padding: 12px 12px;
  text-align: center;
  text-transform: uppercase;
  width: calc(100% - 30px);
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .single-event-b__premium-exp {
    width: calc(100% - 36px);
  }
}

@media (min-width: 1200px) {
  .single-event-b__premium-exp {
    font-size: 16px;
  }
}

@media (min-width: 1900px) {
  .single-event-b__premium-exp {
    font-size: 18px;
  }
}

.single-event-b__premium-exp:hover {
  color: #fff;
  background-color: #a08032;
}

.single-event-b__link {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00204e;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: "raisonne-demibold-pro";
  font-size: 14px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  letter-spacing: 1.8px;
  line-height: 1.2;
  padding: 14px;
  text-align: center;
  text-transform: uppercase;
  -webkit-transition: background 0.4s ease;
  -o-transition: background 0.4s ease;
  transition: background 0.4s ease;
  width: 100%;
}

.single-event-b__link img {
  width: 16px;
  margin-left: 10px;
  display: inline-block;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  -o-transition: -o-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
}

@media (min-width: 768px) {
  .single-event-b__link {
    font-size: 18px;
  }
  .single-event-b__link img {
    width: 19px;
  }
}

.single-event-b__link:hover {
  color: #fff;
  background-color: #001635;
}

.single-event-b__link:hover img {
  -webkit-transform: translateX(5px);
       -o-transform: translateX(5px);
          transform: translateX(5px);
}

.single-event-b__link--buy-ticket {
  background-color: #a08032;
}

.single-event-b__link--buy-ticket:hover {
  background-color: #8d702c;
}

.single-event-b__caption {
  position: absolute;
  top: 0;
  left: 0;
  padding: 9px 18px;
  background: #00204e;
  color: white;
  font-family: "raisonne-demibold-pro";
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 2px;
  line-height: 1;
}

.single-event-b__caption--carnival {
  background: #a08032;
}

.single-event-b__card--carnival {
  border-bottom: #ebebeb solid 1px;
}

.single-event-b__card--carnival:before, .single-event-b__card--carnival:after {
  content: "";
  position: absolute;
  background-color: #f8f8f8;
  border: #ebebeb solid 1px;
  border-top: 0;
}

.single-event-b__card--carnival:before {
  bottom: calc(-1.5rem - 2px);
  left: 1.5rem;
  width: calc(100% - 3rem);
  height: 1.5rem;
}

.single-event-b__card--carnival:after {
  bottom: calc(-0.75rem - 2px);
  left: 0.75rem;
  width: calc(100% - 1.5rem);
  height: 0.75rem;
}

@media (min-width: 768px) {
  .module-20b-upcoming-events .upcoming-events__inner {
    padding-bottom: 10rem;
  }
}

.module-20b-upcoming-events .events-cards__prev,
.module-20b-upcoming-events .events-cards__next {
  width: 30px;
}

@media (min-width: 1024px) {
  .module-20b-upcoming-events .events-cards__prev,
  .module-20b-upcoming-events .events-cards__next {
    bottom: 50px;
  }
}

.module-20b-upcoming-events .slick-dots {
  position: relative;
  margin-top: 15px;
}

.module-20b-upcoming-events .slick-dots li {
  border-color: #a08032;
}

.module-20b-upcoming-events .slick-dots li.slick-active {
  background: #a08032;
}

.single-event-b__text {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 100%;
}

.single-event__view-event--more-info {
  color: #00204e;
  text-decoration: underline;
  margin-top: 4px;
  display: block;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.single-event__view-event--more-info:hover {
  color: #a08032;
  text-decoration: underline;
}

.horizontal-rule--b {
  margin: 10px 0 0;
}

.events-cards__button-box.events-cards__button-box--b .events-cards__button {
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-family: "raisonne-light-pro";
}

@media (min-width: 768px) {
  .events-cards__button-box.events-cards__button-box--b .events-cards__button {
    padding-right: 3.6rem;
    background-position: right 1.6rem top 50%;
  }
}

@media (min-width: 1024px) {
  .events-cards__button-box.events-cards__button-box--b {
    position: absolute;
    right: 20px;
    top: 6rem;
    padding-right: 0;
  }
}

/* MODULE 16 - Benefit Block */
.module-16-benefit-block {
  padding: 1.5rem 0;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .module-16-benefit-block {
    padding: 6rem;
  }
}

.benefit-block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.benefit-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  padding: 0.5rem 1.5rem 1.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
}

@media (min-width: 768px) {
  .benefit-block {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1200px) {
  .benefit-block {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-flex: 33.33%;
        -ms-flex: 33.33%;
            flex: 33.33%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.benefit-block__image {
  position: relative;
  width: 100%;
  min-height: 110px;
  background-size: cover;
  background-position: center;
  margin-bottom: 1.5rem;
  padding-bottom: 50%;
}

@media (min-width: 576px) {
  .benefit-block__image {
    left: 0;
    top: 0;
  }
}

@media (min-width: 768px) {
  .benefit-block__image {
    min-height: 85px;
  }
}

@media (min-width: 1024px) {
  .benefit-block__image {
    padding-bottom: 0;
    margin-bottom: 0;
    width: 35%;
    min-height: 130px;
  }
}

.benefit-block__text {
  position: relative;
  /* width: 65%; */
  /* padding: $spacing-half $spacing-half 0; */
}

@media (min-width: 1024px) {
  .benefit-block__text {
    padding: 0 1.5rem;
    float: right;
    width: 65%;
  }
}

.benefit-block__text a {
  color: #425b74;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.benefit-block__text a:hover {
  color: #00204e;
  text-decoration: underline;
}

.benefit-block__title {
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .benefit-block__title {
    font-size: 2.2rem;
  }
}

.benefit-block__body {
  margin: 1.5rem 0;
}

.module-16-benefit-block__intro {
  margin-bottom: 3rem;
}

.benefit-block__cta {
  text-align: center;
  margin-top: 3rem;
}

/* MODULE 16 - Event Block Group */
.event-block-group {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  padding: 1rem 1.5rem 1.5rem;
  position: relative;
}

@media (min-width: 768px) {
  .event-block-group {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .event-block-group {
    -webkit-box-flex: 33.33%;
        -ms-flex: 33.33%;
            flex: 33.33%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.event-block-group:hover .event-block-group__card-stack-1 {
  -webkit-box-shadow: 0 0 6px 0 rgba(180, 180, 180, 0.3);
          box-shadow: 0 0 6px 0 rgba(180, 180, 180, 0.3);
  top: 35px;
}

.event-block-group:hover .event-block-group__card-stack-2 {
  -webkit-box-shadow: 0 0 6px 0 rgba(180, 180, 180, 0.3);
          box-shadow: 0 0 6px 0 rgba(180, 180, 180, 0.3);
  top: 50px;
}

.event-block-group__card {
  -webkit-box-shadow: 0 0 5px 0 rgba(180, 180, 180, 0.9);
          box-shadow: 0 0 5px 0 rgba(180, 180, 180, 0.9);
  background: white;
  position: relative;
  margin-bottom: 1.5rem;
  z-index: 3;
}

.event-block-group__card-stack-1 {
  -webkit-box-shadow: 0 0 5px 0 rgba(180, 180, 180, 0.5);
          box-shadow: 0 0 5px 0 rgba(180, 180, 180, 0.5);
  background: #fcfbf9;
  position: absolute;
  height: calc(100% - 50px);
  top: 3rem;
  width: calc(100% - 50px);
  left: 25px;
  margin-bottom: 1.5rem;
  z-index: 2;
  -webkit-transition: top 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: top 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: top 0.3s ease, box-shadow 0.3s ease;
  transition: top 0.3s ease, box-shadow 0.3s ease;
  transition: top 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.event-block-group__card-stack-2 {
  -webkit-box-shadow: 0 0 5px 0 rgba(180, 180, 180, 0.5);
          box-shadow: 0 0 5px 0 rgba(180, 180, 180, 0.5);
  background: #fcfbf9;
  position: absolute;
  height: calc(100% - 50px);
  top: 40px;
  width: calc(100% - 75px);
  left: 37px;
  margin-bottom: 1.5rem;
  z-index: 1;
  -webkit-transition: top 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: top 0.3s ease, -webkit-box-shadow 0.3s ease;
  -o-transition: top 0.3s ease, box-shadow 0.3s ease;
  transition: top 0.3s ease, box-shadow 0.3s ease;
  transition: top 0.3s ease, box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
}

.event-block-group__image {
  position: relative;
  width: 45%;
  padding-bottom: 65%;
  min-height: 24rem;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .event-block-group__image {
    min-height: 28rem;
  }
}

.event-block-group__caption {
  position: absolute;
  top: 1.5rem;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
}

.event-block-group__text {
  position: absolute;
  right: 0;
  top: 0;
  width: 55%;
  height: 100%;
  padding: 3rem;
}

.event-block-group__text-inner {
  position: absolute;
  padding-right: 1.5rem;
}

.event-block-group__title {
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
}

.event-block-group__body {
  margin: 1rem 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .event-block-group__body {
    margin: 1.5rem 0;
    font-size: 1.6rem;
  }
}

.event-block-group__link {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  color: #425b74;
  text-decoration: underline;
  font-size: 1.2rem;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

@media (min-width: 768px) {
  .event-block-group__link {
    font-size: 1.6rem;
  }
}

.event-block-group__link:hover {
  color: #a08032;
  text-decoration: underline;
}

/* MODULE 17 - Hospitality Experience */
.module-17-hospitality-experience {
  position: relative;
  background: #fcfbf9;
}

@media (min-width: 1024px) {
  .module-17-hospitality-experience {
    height: calc(100vh - 13rem);
    min-height: 76rem;
  }
}

.hospitality-text {
  padding: 3rem 3rem 0 3rem;
}

@media (min-width: 1024px) {
  .hospitality-text {
    position: absolute;
    padding: 6rem 1rem 6rem 6rem;
    z-index: 20;
    background: rgba(252, 251, 249, 0.95);
    height: 100%;
    width: 480px;
  }
}

.hospitality-text__title {
  font-size: 2.2rem;
  line-height: 3rem;
  padding: 0 1.5rem;
}

@media (min-width: 1024px) {
  .hospitality-text__title {
    padding: 0;
    font-size: 5.5rem;
    line-height: 6.6rem;
    margin-bottom: 3rem;
  }
}

.hospitality-text__body {
  padding: 1.5rem;
  color: #00204e;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hospitality-text__body {
    padding: 0;
    line-height: 2.4rem;
  }
}

@media (min-width: 1200px) {
  .hospitality-text__body {
    padding: 0;
  }
}

.btn-hospitality {
  display: block;
  text-align: left;
}

@media (min-width: 1024px) {
  .btn-hospitality {
    display: inline-block;
    text-align: center;
  }
}

.hospitality-list {
  margin: 3rem 0;
}

.hospitality-list__link {
  font-family: "raisonne-light-pro";
  padding: 1.5rem;
  color: #636870;
  font-size: 1.8rem;
  margin: 0 0 0 calc(20% + 1rem);
  width: 80%;
  display: block;
  -webkit-transition: background 0.5s ease, color 0.5s ease, padding 0.5s ease;
  -o-transition: background 0.5s ease, color 0.5s ease, padding 0.5s ease;
  transition: background 0.5s ease, color 0.5s ease, padding 0.5s ease;
}

.hospitality-list__link:hover {
  color: #a08032;
}

.hospitality-list__link.active {
  background: white;
  color: #00204e;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
}

.hospitality-slider__slide {
  position: relative;
  height: 100%;
}

.hospitality-slider__imagewrap {
  margin: 1.5rem 0;
  min-height: 16rem;
  padding: 5% 3%;
  opacity: 1;
}

@media (min-width: 1024px) {
  .hospitality-slider__imagewrap {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: 0;
    padding: 0;
  }
}

.hospitality-slider__image {
  width: 100%;
  height: 100%;
}

.hospitality-slider__caption {
  margin-top: 1.5rem;
}

.hospitality-slider__nav {
  height: 6rem;
  width: 100%;
  background: rgba(0, 0, 0, 0.04);
}

.hospitality-slider__prev,
.hospitality-slider__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hospitality-slider__prev:hover,
.hospitality-slider__next:hover {
  opacity: 1;
}

.hospitality-slider__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .hospitality-slider__next {
    display: none;
  }
}

.hospitality-slider__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .hospitality-slider__prev {
    display: none;
  }
}

.hospitality-slider__prev.slick-disabled,
.hospitality-slider__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.hospitality-slider__prev.slick-disabled:hover,
.hospitality-slider__next.slick-disabled:hover {
  opacity: 0;
}

.module-17-hospitality-experience .slick-dots {
  bottom: -3.5rem;
}

.module-17-hospitality-experience .slick-dots li {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.module-17-hospitality-experience .slick-dots li.slick-active {
  background: black;
}

/* MODULE 19 - Central Text & CTA */
.module-19-central-text-cta {
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .module-19-central-text-cta {
    padding: 6rem;
  }
}

.module-19-central-text-cta__title {
  margin-bottom: 3rem;
}

.module-19-central-text-cta__body p {
  color: #374151;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .module-19-central-text-cta__body {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.module-19-central-text-cta__body ul > li::before {
  content: "\2022";
  color: #00204e;
  display: inline-block;
  margin-right: 3px;
}

.module-19-central-text-cta__body ol {
  list-style: none;
  counter-reset: ol-counter;
  padding: 0;
}

.module-19-central-text-cta__body ol > li {
  counter-increment: ol-counter;
}

.module-19-central-text-cta__body ol > li::before {
  content: counter(ol-counter) ". ";
  display: inline-block;
  margin-right: 3px;
  color: #00204e;
}

/* MODULE 20 - Upcoming Events */
.module-20-upcoming-events {
  position: relative;
}

.upcoming-events__inner {
  position: relative;
  padding: 3rem 0 10rem 0;
  background: #fcfbf9;
}

@media (min-width: 1024px) {
  .upcoming-events__inner {
    padding: 6rem 0;
  }
}

.events-cards__title {
  text-align: center;
  margin-bottom: 3rem;
}

.events-cards__title.events-cards__title-b {
  margin-bottom: 0px;
}

.events-cards__title.events-cards__title-b h2 {
  font-size: 30px;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .events-cards__title.events-cards__title-b {
    margin-bottom: 10px;
  }
  .events-cards__title.events-cards__title-b h2 {
    font-size: 40px;
  }
}

.module-20-upcoming-events .single-event {
  padding: 1.5rem;
}

.events-cards .single-event__card {
  width: calc(100vw - 6rem);
  -webkit-transform: scale(0.8);
       -o-transform: scale(0.8);
          transform: scale(0.8);
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  -o-transition: -o-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease, -o-transform 0.5s ease;
}

@media (min-width: 1024px) {
  .events-cards .single-event__card {
    width: 600px;
  }
}

.events-cards .slick-active .single-event__card {
  -webkit-transform: scale(0.95);
       -o-transform: scale(0.95);
          transform: scale(0.95);
}

.events-cards__button-box {
  text-align: center;
  padding: 0 3rem;
}

@media (min-width: 768px) {
  .events-cards__button-box {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .events-cards__button-box {
    text-align: right;
    padding-right: 6rem;
    min-height: 46px;
  }
}

.events-cards__button {
  width: 100%;
}

@media (min-width: 1024px) {
  .events-cards__button {
    width: auto;
  }
}

.events-gallery__button-box {
  text-align: center;
  padding: 0 3rem;
}

@media (min-width: 768px) {
  .events-gallery__button-box {
    text-align: right;
  }
}

@media (min-width: 1024px) {
  .events-gallery__button-box {
    text-align: right;
    padding-right: 6rem;
  }
}

.events-cards__button {
  width: 100%;
}

@media (min-width: 1024px) {
  .events-cards__button {
    width: auto;
  }
}

.events-cards__prev,
.events-cards__next {
  position: absolute;
  width: 2rem;
  opacity: 0.7;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 2;
}

@media (min-width: 1024px) {
  .events-cards__prev,
  .events-cards__next {
    bottom: 7.5rem;
  }
}

.events-cards__prev:hover,
.events-cards__next:hover {
  opacity: 1;
}

.events-cards__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .events-cards__next {
    right: auto;
    left: 50%;
    -webkit-transform: translateX(calc(-50% + 4rem));
         -o-transform: translateX(calc(-50% + 4rem));
            transform: translateX(calc(-50% + 4rem));
  }
}

.events-cards__prev {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
  left: 3rem;
}

@media (min-width: 1024px) {
  .events-cards__prev {
    left: 50%;
    -webkit-transform: translateX(calc(-50% - 4rem)) rotate(180deg);
         -o-transform: translateX(calc(-50% - 4rem)) rotate(180deg);
            transform: translateX(calc(-50% - 4rem)) rotate(180deg);
  }
}

.events-cards__prev.slick-disabled,
.events-cards__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.events-cards__prev.slick-disabled:hover,
.events-cards__next.slick-disabled:hover {
  opacity: 0;
}

.module-20-upcoming-events .slick-dots {
  bottom: -12.7rem;
  z-index: 1;
}

.module-20-upcoming-events .slick-dots li {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.module-20-upcoming-events .slick-dots li.slick-active {
  background: black;
}

.events-cards__overlay {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 6.5rem;
  background: rgba(0, 0, 0, 0.1);
  z-index: 0;
}

@media (min-width: 1024px) {
  .events-cards__overlay {
    display: none;
  }
}

/* MODULE 21 - Left & Title Text */
.module-21-left-title-text {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .module-21-left-title-text {
    padding: 6rem;
  }
}

.module-21-left-title-text .title {
  color: #00204e;
  font-size: 3.2rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .module-21-left-title-text .title {
    font-size: 5.5rem;
  }
}

.module-21-left-title-text .subtitle {
  color: #00204e;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.module-21-left-title-text .body-text {
  max-width: 50em;
}

.module-21-left-title-text ul > li {
  list-style: inherit;
}

.module-21-left-title-text ol {
  padding: 0;
}

.module-21-left-title-text ol > li {
  list-style: decimal;
}

.module-21-left-title-text ul, .module-21-left-title-text ol {
  margin-left: 3rem;
  margin-bottom: 1.2rem;
}

.module-21-left-title-text ul li, .module-21-left-title-text ol li {
  margin-bottom: 0.3rem;
  list-style: inherit;
}

/* MODULE 22 - 3 Column Card */
.module-22-three-column-card {
  padding: 1.5rem 0;
}

@media (min-width: 1024px) {
  .module-22-three-column-card {
    padding: 6rem 6rem;
  }
}

.three-column-card__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.three-column-card__main-title {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 3rem;
}

.three-column-card {
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  padding: 1.5rem;
}

@media (min-width: 576px) {
  .three-column-card {
    -webkit-box-flex: calc(100% / 2);
        -ms-flex: calc(100% / 2);
            flex: calc(100% / 2);
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

@media (min-width: 1200px) {
  .three-column-card {
    -webkit-box-flex: calc(100% / 3);
        -ms-flex: calc(100% / 3);
            flex: calc(100% / 3);
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.three-column-card__image {
  position: relative;
  width: 100%;
  padding-bottom: 62%;
  background-size: cover;
  background-position: center;
}

.three-column-card__image--tall {
  padding-bottom: 80%;
}

.three-column-card__title {
  margin-top: 3rem;
  font-family: "raisonne-light-pro";
}

.three-column-card__body {
  margin: 1.5rem 0;
}

.three-column-card__link {
  color: #425b74;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.three-column-card__link:hover {
  color: #00204e;
  text-decoration: underline;
}

/* MODULE 23 - Gallery, text & labels */
.module-23-gallery-text-labels {
  padding: 0 1.5rem 3rem;
}

.background--grey .module-23-gallery-text-labels {
  padding-top: 3rem;
}

.module-23-gallery-text-labels__inner {
  position: relative;
}

.module-23-gallery-text-labels__text {
  width: 100%;
  padding: 3rem 0 0;
}

@media (min-width: 768px) {
  .module-23-gallery-text-labels__text {
    width: 50%;
    margin-left: 50%;
    border-right: 0;
    padding: 3rem 3rem 0;
    /* min-height: 45rem; */
  }
}

@media (min-width: 1024px) {
  .module-23-gallery-text-labels__text {
    width: 40%;
  }
}

.module-23-gallery-text-labels__text {
  display: none;
}

.module-23-gallery-text-labels__text.active {
  display: block;
}

.module-23-gallery-text-labels__caption {
  position: absolute;
  background: #a08032;
  top: 3rem;
  color: white;
  padding: 1rem;
}

.module-23-gallery-text-labels__image {
  position: relative;
  top: 0;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .module-23-gallery-text-labels__image {
    width: 50%;
    position: absolute;
  }
}

.module-23-gallery-text-labels__image .object-fit-cover {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .module-23-gallery-text-labels__image .object-fit-cover {
    width: calc(100% - 15px);
  }
}

.module-23-gallery-text-labels__title {
  margin-bottom: 1.5rem;
}

.module-23-gallery-text-labels__body {
  color: #374151;
}

@media (min-width: 768px) {
  .module-23-gallery-text-labels__body {
    margin-bottom: 3rem;
  }
}

.module-23-gallery-text-labels__links {
  padding: 0;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .module-23-gallery-text-labels__links {
    /* position: absolute; 
    right: 0; 
    bottom: 0; */
    margin-left: auto;
    margin-top: 0;
    width: 50%;
    padding: 0 3rem 3rem;
  }
}

.module-23-gallery-text-labels__link {
  color: #425b74;
  text-decoration: underline;
  margin-top: 0.5rem;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.module-23-gallery-text-labels__link:hover {
  color: #a08032;
  text-decoration: underline;
}

/* MODULE 24 - Explore Hospitality */
.module-24-explore-hospitality {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .module-24-explore-hospitality {
    padding: 3rem 1.5rem 0 1.5rem;
  }
}

.module-24-explore-hospitality .btn, .module-24-explore-hospitality .comment-form input[type="submit"], .comment-form .module-24-explore-hospitality input[type="submit"], .module-24-explore-hospitality .search-form .search-submit, .search-form .module-24-explore-hospitality .search-submit {
  padding: 1.5rem 6rem 1.5rem 1.5rem;
}

.explore-hospitality__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.explore-hospitality {
  position: relative;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

@media (min-width: 768px) {
  .explore-hospitality {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    margin-bottom: 3rem;
    min-height: 40rem;
  }
}

@media (min-width: 1024px) {
  .explore-hospitality {
    -webkit-box-flex: 25%;
        -ms-flex: 25%;
            flex: 25%;
  }
}

.explore-hospitality__image {
  padding-bottom: 65%;
  position: relative;
  background-size: cover;
  background-position: center bottom;
}

@media (min-width: 768px) {
  .explore-hospitality__image {
    padding-bottom: 130%;
    min-height: 40rem;
  }
}

.explore-hospitality__logo {
  position: absolute;
  height: 5rem;
  bottom: 4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

@media (min-width: 1024px) {
  .explore-hospitality__logo {
    height: 7rem;
  }
}

.explore-hospitality__logo-image {
  height: 100%;
  width: auto;
}

.explore-hospitality__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.95)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
}

.explore-hospitality__text {
  padding: 3rem 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .explore-hospitality__text {
    padding: 1.5rem 1.5rem 0;
  }
}

.explore-hospitality__title {
  font-size: 2.2rem;
  color: #00204e;
  margin: 1.5rem 0 3rem;
}

.explore-hospitality__subtitle {
  font-size: 1.8rem;
  color: #00204e;
  font-family: "raisonne-light-pro";
}

.explore-hospitality__body {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}

@media (min-width: 1024px) {
  .explore-hospitality__body {
    font-size: 1.2rem;
  }
}

@media (min-width: 1200px) {
  .explore-hospitality__body {
    font-size: 1.6rem;
  }
}

.explore-hospitality__info {
  position: relative;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .explore-hospitality__info {
    /* position: absolute;
    bottom: 6.8rem; */
  }
}

.explore-hospitality__events {
  position: relative;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .explore-hospitality__events {
    position: absolute;
    bottom: 0;
  }
}

/* MODULE 26 - Package Name */
.module-26-package-name {
  width: 100%;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  background: transparent;
  -webkit-transition: background 0.5s ease;
  -o-transition: background 0.5s ease;
  transition: background 0.5s ease;
}

.module-26-package-name--active, .module-26-package-name:hover {
  background: white;
}

.package-name__image {
  position: relative;
  height: 12rem;
  min-width: 16rem;
  background-size: cover;
  background-position: center;
}

.package-name__sold-out {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  display: none;
}

.package-name__sold-out-text {
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
       -o-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  white-space: nowrap;
  text-transform: uppercase;
}

.package-name__details {
  margin-left: 1.5rem;
}

.package-name__details-title {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
  color: #00204e;
}

.package-name__details-subtitle {
  font-size: 1.2rem;
  color: #636870;
  opacity: 0.6;
}

.package-name__details-body {
  font-size: 1.2rem;
  color: #636870;
}

.package-name__caption {
  position: absolute;
  top: 0.5rem;
  font-size: 0.9rem;
  background: black;
  color: white;
  padding: 0.3rem 0.5rem;
}

.sold-out .package-name__sold-out {
  display: block;
}

.sold-out .package-name__details {
  opacity: 0.5;
}

/* MODULE 27 - Event Hospitality Banner */
.module-27-event-hospitality-banner {
  position: relative;
  background: #00204e;
  padding: 1.5rem 0 0;
}

@media (min-width: 1024px) {
  .module-27-event-hospitality-banner {
    padding: 3rem 3rem 0;
  }
}

.module-27-event-hospitality-banner .slick-dots li {
  border: 2px solid #a08032;
  height: 1.5rem;
  width: 1.5rem;
  margin: 0 0.6rem;
}

.module-27-event-hospitality-banner .slick-dots li.slick-active {
  background: #a08032;
}

.hospitality-banner__text {
  width: 100%;
  position: relative;
}

.hospitality-banner__title {
  position: relative;
  color: white;
  margin: 1rem 0 0 1.5rem;
  font-size: 3.2rem;
}

@media (min-width: 768px) {
  .hospitality-banner__title {
    width: 75%;
  }
  .hospitality-banner__title.hospitality-banner__title--full {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .hospitality-banner__title {
    font-size: 5.5rem;
    margin: 0 0 0 1.5rem;
  }
}

.hospitality-banner__event-details {
  margin: 0 0 0 1.5rem;
  display: inline-block;
  font-family: "raisonne-light-pro";
  color: #00204e;
  font-size: 18px;
}

.hospitality-banner__prices {
  position: relative;
  padding-left: 1.5rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .hospitality-banner__prices {
    padding-left: 0;
    position: absolute;
    left: auto;
    margin-top: 0;
    right: 3rem;
    top: 0;
  }
}

.prices {
  color: white;
  font-size: 1.6rem;
  line-height: 0.9rem;
  opacity: 0.7;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .prices {
    font-size: 1.6rem;
    line-height: 1.4rem;
  }
}

.hospitality-banner__image {
  width: 100%;
  padding-bottom: 55%;
  background-size: cover;
  background-position: center;
  margin-top: 3rem;
}

.module-27-event-hospitality-banner__carousel {
  width: 100%;
}

.module-27-event-hospitality-banner__carousel-image-container {
  position: relative;
  padding-bottom: 55%;
}

.module-27-event-hospitality-banner__carousel-image-container .module-27-event-hospitality-banner__carousel-image {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.module-27-event-hospitality-banner__carousel-container {
  font-size: 0;
  position: relative;
  margin-top: 3rem;
  /* @include media-breakpoint-up(xl) {
    .hero-main__prev {
      right: 4rem;
      top: 4rem;
    }
    .hero-main__next {
      right: 4rem;
      top: 7rem;
    }
  } */
}

@media (min-width: 1024px) {
  .module-27-event-hospitality-banner__carousel-container .hero-main__prev,
  .module-27-event-hospitality-banner__carousel-container .hero-main__next {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    opacity: 1;
  }
  .module-27-event-hospitality-banner__carousel-container .hero-main__prev img,
  .module-27-event-hospitality-banner__carousel-container .hero-main__next img {
    max-width: 15px;
    opacity: 0.7;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .module-27-event-hospitality-banner__carousel-container .hero-main__prev:hover img,
  .module-27-event-hospitality-banner__carousel-container .hero-main__next:hover img {
    opacity: 1;
  }
  .module-27-event-hospitality-banner__carousel-container .hero-main__prev {
    top: 52px;
    right: 0px;
  }
  .module-27-event-hospitality-banner__carousel-container .hero-main__next {
    right: 0px;
    top: 0px;
  }
}

.venue-colours:not(.archive) .hospitality-banner__title,
.venue-colours:not(.archive) .prices {
  color: #00204e;
}

.royal-randwick-colour:not(.archive) .module-27-event-hospitality-banner {
  background: #F58226;
}

.rosehill-gardens-colour:not(.archive) .module-27-event-hospitality-banner {
  background: #80d5b6;
}

.canterbury-park-colour:not(.archive) .module-27-event-hospitality-banner {
  background: #627fdd;
}

.warwick-farm-colour:not(.archive) .module-27-event-hospitality-banner {
  background: #80ad6c;
}

.carnival-colour:not(.archive) .module-27-event-hospitality-banner {
  background: #ece7dc;
}

.hospitality-banner__make-enquiry {
  font-size: 14px;
  padding-right: 40px;
  background-position: 90% center;
}

.spaces-banner__make-enquiry {
  color: #fff;
  border-color: #fff;
}

.spaces-banner__make-enquiry:hover, .spaces-banner__make-enquiry:focus {
  border-color: #a08032;
}

/* MODULE 28 - Event, Hospitality Text & price CTA */
.module-28-hospitality-text-price {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .module-28-hospitality-text-price {
    padding: 6rem;
  }
}

.hospitality-text-price__text {
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hospitality-text-price__text {
    width: 90%;
  }
}

.hospitality-text-price__title {
  margin-bottom: 3rem;
}

.hospitality-text-price__list {
  width: 100%;
}

.hospitality-text-price__list ul {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .hospitality-text-price__list {
    float: left;
    width: 44%;
  }
}

@media (min-width: 1024px) {
  .hospitality-text-price__list {
    float: left;
    width: 57%;
  }
}

.hospitality-text-price__list-item {
  color: #636870;
  margin: 0 0 0.5rem 1.5rem;
  position: relative;
}

.hospitality-text-price__list-item::before {
  content: "\2022";
  color: #00204e;
  position: absolute;
  left: -1.5rem;
  line-height: 0;
  top: 1rem;
}

@media (min-width: 768px) {
  .hospitality-text-price__lower {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row;
            flex-flow: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.hospitality-text-price__prices {
  width: 100%;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .hospitality-text-price__prices {
    margin-top: 0;
    float: right;
    width: 50%;
  }
}

@media (min-width: 1024px) {
  .hospitality-text-price__prices {
    float: right;
    width: 40%;
  }
}

.hospitality-text-price__divider {
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0.1;
  margin: 1.5rem 0;
}

.members-pricing::after {
  content: "";
  width: 100%;
  height: 1px;
  background: black;
  opacity: 0.1;
  margin: 1.5rem 0;
}

.members-pricing:last-child::after {
  content: none;
}

@media (min-width: 768px) {
  .members-pricing,
  .non-members-pricing {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media (min-width: 768px) {
  .members-pricing__inner,
  .non-members-pricing__inner {
    /* max-width: 14vw; */
    -webkit-box-flex: 1;
        -ms-flex: 1 0 14vw;
            flex: 1 0 14vw;
    padding-right: 10px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 50%;
            flex: 0 0 50%;
  }
}

@media (min-width: 1024px) {
  .members-pricing__inner,
  .non-members-pricing__inner {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 60%;
            flex: 0 0 60%;
  }
}

.members-pricing,
.non-members-pricing {
  position: relative;
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
}

.members-pricing .per-person,
.non-members-pricing .per-person {
  font-size: 10px;
  font-family: "Gotham-Book", "Arial", sans-serif;
  color: #636870;
}

.members-pricing .sold-out,
.non-members-pricing .sold-out {
  font-size: 1.6rem;
  font-family: "Gotham-Book", "Arial", sans-serif;
  color: #636870;
}

.members-pricing .btn, .members-pricing .comment-form input[type="submit"], .comment-form .members-pricing input[type="submit"], .members-pricing .search-form .search-submit, .search-form .members-pricing .search-submit,
.non-members-pricing .btn,
.non-members-pricing .comment-form input[type="submit"],
.comment-form .non-members-pricing input[type="submit"],
.non-members-pricing .search-form .search-submit,
.search-form .non-members-pricing .search-submit {
  position: relative;
  width: 100%;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .members-pricing .btn, .members-pricing .comment-form input[type="submit"], .comment-form .members-pricing input[type="submit"], .members-pricing .search-form .search-submit, .search-form .members-pricing .search-submit,
  .non-members-pricing .btn,
  .non-members-pricing .comment-form input[type="submit"],
  .comment-form .non-members-pricing input[type="submit"],
  .non-members-pricing .search-form .search-submit,
  .search-form .non-members-pricing .search-submit {
    /* position: absolute;
      right: $spacing-half; 
      top: 0; */
    margin-top: 0;
    width: auto;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    padding-left: 0;
    padding-right: 0;
  }
}

.hospitality-text-price__disclaimer {
  margin-top: 1.5rem;
}

/* Dropdown Button */
/* .hospitality-dropdown-btn {
  background-color: #4CAF50;
  color: white;
  padding: 16px;
  font-size: 16px;
  border: none;
  cursor: pointer;
} */
/* Dropdown button on hover & focus */
.hospitality-dropdown-btn:hover,
.hospitality-dropdown-btn:focus {
  /* background-color: #3e8e41; */
}

/* The search field */
.hospitality-search-input {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  /* background-image: url('searchicon.png');
  background-position: 14px 12px;
  background-repeat: no-repeat; */
  font-size: 16px;
  padding: 14px 20px 12px;
  border: none;
  border-bottom: 1px solid #ddd;
  display: block;
  width: 100%;
}

/* The search field when it gets focus/clicked on */
.hospitality-search-input:focus {
  outline: 3px solid #ddd;
}

/* The container <div> - needed to position the dropdown content */
.hospitality-list-dropdown {
  position: relative;
  /* display: inline-block; */
}

@media (min-width: 768px) {
  .hospitality-list-dropdown {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 50%;
            flex: 0 1 50%;
  }
  .hospitality-list-dropdown .btn, .hospitality-list-dropdown .comment-form input[type="submit"], .comment-form .hospitality-list-dropdown input[type="submit"], .hospitality-list-dropdown .search-form .search-submit, .search-form .hospitality-list-dropdown .search-submit {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .hospitality-list-dropdown {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 40%;
            flex: 0 1 40%;
  }
}

/* hospitality-dropdown Content (Hidden by Default) */
.hospitality-dropdown-content {
  display: none;
  position: absolute;
  background: #fcfbf9;
  min-width: 300px;
  border: 1px solid #ddd;
  z-index: 1;
}

@media (min-width: 768px) {
  .hospitality-dropdown-content {
    right: 0;
  }
}

/* Links inside the hospitality-dropdown */
.hospitality-dropdown-content a {
  color: #00204e;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

/* Change color of hospitality-dropdown links on hover */
.hospitality-dropdown-content a:hover {
  background-color: #f4f0e8;
}

/* Show the hospitality-dropdown menu (use JS to add this class to the .hospitality-dropdown-content container when the user clicks on the dropdown button) */
.show-hospitality-option {
  display: block;
}

.hospitality-dropdown-content-container {
  max-height: 260px;
  overflow-y: scroll;
}

.hospitality-dropdown-content-container small {
  color: #374151;
}

.hospitality-dropdown-content-container span {
  color: #a08032;
}

.hospitality-dropdown-content-container a {
  font-size: 16px;
  padding: 1rem 4rem 1rem 2rem;
  background-image: url(../images/arrow-right.svg) !important;
  background-repeat: no-repeat !important;
  background-size: 15px 12px;
  background-position: right 1rem top 50%;
}

.module--module-28-hospitality-text-price {
  overflow: visible;
}

.module--module-28b-spaces h2,
.module--module-28b-spaces h3,
.module--module-28b-spaces h4,
.module--module-28b-spaces h5,
.module--module-28b-spaces h6 {
  margin-bottom: 1.5rem;
}

.module--module-28b-spaces p:last-child {
  margin-bottom: 0;
}

.module--module-28b-spaces li {
  color: #636870;
  margin: 0 0 0.5rem 1.5rem;
  position: relative;
}

.module--module-28b-spaces li::before {
  content: "\2022";
  color: #00204e;
  position: absolute;
  left: -1.5rem;
  line-height: 0;
  top: 1rem;
}

.module-28__config-unavailable {
  border: 1px solid #e3e3e3;
  padding: 18px;
  background: #f4f4f4;
}

.module-28__config-unavailable > *:last-child {
  margin-bottom: 0;
}

.module-28__config-unavailable p {
  margin-bottom: 10px;
}

.module-28__config-unavailable a:not(.btn) {
  color: #a08032;
}

/* MODULE 29 - Menu Text & Image */
.menu-text-image__top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-text-image__title {
  margin-bottom: 3rem;
}

.menu-text-image__menu {
  width: 1;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .menu-text-image__menu {
    width: 50%;
  }
}

.menu-text-image__menu-title {
  font-family: "raisonne-light-pro";
  color: #425b74;
}

.menu-text-image__menu-image {
  width: 1;
  padding-bottom: 50%;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .menu-text-image__menu-image {
    width: 50%;
  }
}

.menu-text-image__bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.menu-text-image__prices {
  width: 1;
}

@media (min-width: 768px) {
  .menu-text-image__prices {
    width: 50%;
  }
}

.menu-text-image__prices-image {
  width: 1;
  padding-bottom: 50%;
  background-size: cover;
  background-position: center;
}

@media (min-width: 768px) {
  .menu-text-image__prices-image {
    width: 50%;
  }
}

.menu-text-image__menu,
.menu-text-image__prices {
  padding: 3rem 6rem 3rem 3rem;
  overflow-y: scroll;
}

.menu-text-image__prices-block {
  margin: 3rem 0;
}

.menu-text-image__prices-block-text {
  color: #425b74;
}

.module-55b-spaces-additional-blocks h2,
.module-55b-spaces-additional-blocks h3,
.module-55b-spaces-additional-blocks h4,
.module-55b-spaces-additional-blocks h5,
.module-55b-spaces-additional-blocks h6 {
  margin-bottom: 1.5rem;
}

/* MODULE 30 - Latest News Hero */
.module-30-latest-news-hero {
  position: relative;
  height: calc(100vh - 5.6rem);
  min-height: 45rem;
  background: #00204e url("../images/stripe.png");
  background-size: 100% auto;
  border-top: 1px solid #1c3849;
}

@media (min-width: 1024px) {
  .module-30-latest-news-hero {
    height: calc(100vh - 8.3rem);
    border-top: none;
    min-height: 66rem;
  }
}

.btn-hero-news {
  display: block;
  text-align: left;
}

@media (min-width: 1024px) {
  .btn-hero-news {
    display: inline-block;
  }
}

.grass-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 45%;
  background: url("../images/grass.png");
  background-size: 100% auto;
}

.hero-news__slide {
  position: relative;
  height: 100%;
}

.hero-news__imagewrap {
  margin: 1.5rem 0;
  min-height: 16rem;
  padding: 5% 3%;
  opacity: 0.5;
  -webkit-transition: padding 0.8s ease, opacity 0.8s ease;
  -o-transition: padding 0.8s ease, opacity 0.8s ease;
  transition: padding 0.8s ease, opacity 0.8s ease;
}

@media (min-width: 1024px) {
  .hero-news__imagewrap {
    margin: 6rem 0 0 -9rem;
    width: 54%;
    padding: 20rem 0 0 0;
    height: calc(100% - 12rem);
  }
}

@media (min-width: 1024px) {
  .hero-news__videowrap {
    margin: 6rem 0 0 -5rem;
    width: calc(54% - 4rem);
  }
}

.hero-news__videowrap .embed-container {
  min-height: 48rem;
}

.hero-news__image {
  width: 100%;
  height: 100%;
}

.hero-news__text {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

@media (min-width: 1024px) {
  .hero-news__text {
    position: absolute;
    right: 9rem;
    top: 0;
    height: calc(100% - 6rem);
    z-index: 100;
    width: 46%;
    padding: 6rem;
  }
}

.hero-news__text-title {
  color: white;
  font-size: 2.7rem;
  line-height: 3.2rem;
}

@media (min-width: 1024px) {
  .hero-news__text-title {
    font-size: 4.0rem;
    line-height: 5.0rem;
  }
}

@media (min-width: 1200px) {
  .hero-news__text-title {
    font-size: 5.5rem;
    line-height: 6.6rem;
  }
}

.hero-news__text-date {
  display: inline-block;
  color: white;
  font-size: 1.2rem;
  margin: 1.5rem 0 3rem 0;
}

@media (min-width: 1024px) {
  .hero-news__text-date {
    display: block;
    font-size: 1.4rem;
    line-height: 2.4rem;
    border-bottom: none;
    margin: 1.5rem 0 6rem 0;
  }
}

.hero-news__text-body {
  margin: 3rem 0 1.5rem 0;
  display: inline-block;
  min-width: 8rem;
}

.hero-news__text-body p {
  color: #a08032;
}

@media (min-width: 1024px) {
  .hero-news__text-inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.slick-center .hero-news__text {
  opacity: 1;
}

.slick-center .hero-news__imagewrap {
  padding: 0;
  opacity: 1;
}

.hero-news__prev,
.hero-news__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.hero-news__prev:hover,
.hero-news__next:hover {
  opacity: 1;
}

.hero-news__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .hero-news__next {
    right: 7rem;
    left: auto;
    top: 6rem;
    bottom: auto;
  }
}

.hero-news__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .hero-news__prev {
    right: 7rem;
    left: auto;
    top: 13rem;
    bottom: auto;
  }
}

.hero-news__prev.slick-disabled,
.hero-news__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.hero-news__prev.slick-disabled:hover,
.hero-news__next.slick-disabled:hover {
  opacity: 0;
}

/* MODULE 30b - Content Slider */
.module-30b-content-slider {
  position: relative;
  height: calc(80vh - 5.6rem);
  min-height: 450px;
  background: #00204e url("../images/stripe.png");
  background-size: 100% auto;
  border-top: 1px solid #1c3849;
}

@media (min-width: 1024px) {
  .module-30b-content-slider {
    height: calc(80vh - 8.3rem);
    border-top: none;
    min-height: 660px;
  }
}

.btn-content-slider {
  display: block;
  text-align: left;
}

@media (min-width: 1024px) {
  .btn-content-slider {
    display: inline-block;
  }
}

.grass-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 40%;
  height: 45%;
  background: url("../images/grass.png");
  background-size: 100% auto;
}

.content-slider__slide {
  position: relative;
  height: 100%;
}

.content-slider__imagewrap {
  margin: 1.5rem 0;
  min-height: 160px;
  padding: 5% 3%;
  opacity: 0.5;
  -webkit-transition: padding 0.8s ease, opacity 0.8s ease;
  -o-transition: padding 0.8s ease, opacity 0.8s ease;
  transition: padding 0.8s ease, opacity 0.8s ease;
}

@media (min-width: 1024px) {
  .content-slider__imagewrap {
    margin: 6rem 0 0 -9rem;
    width: 54%;
    padding: 20rem 0 0 0;
    height: calc(100% - 12rem);
  }
}

.content-slider__image {
  width: 100%;
  height: 100%;
}

.content-slider__text {
  opacity: 0;
  -webkit-transition: opacity 0.8s ease;
  -o-transition: opacity 0.8s ease;
  transition: opacity 0.8s ease;
}

@media (min-width: 1024px) {
  .content-slider__text {
    position: absolute;
    right: 9rem;
    top: 0;
    height: calc(100% - 6rem);
    z-index: 100;
    width: 46%;
    padding: 6rem;
  }
}

.content-slider__text-title {
  color: white;
  font-size: 2.7rem;
  line-height: 3.2rem;
}

@media (min-width: 1024px) {
  .content-slider__text-title {
    font-size: 4.0rem;
    line-height: 5.0rem;
  }
}

@media (min-width: 1200px) {
  .content-slider__text-title {
    font-size: 5.5rem;
    line-height: 6.6rem;
  }
}

.content-slider__text-body {
  display: inline-block;
  color: white;
  font-size: 1.2rem;
  margin: 1.5rem 0 3rem 0;
}

@media (min-width: 1024px) {
  .content-slider__text-body {
    display: block;
    font-size: 1.4rem;
    line-height: 2.4rem;
    border-bottom: none;
    margin: 1.5rem 0 6rem 0;
  }
}

.content-slider__text-subtitle {
  margin: 3rem 0 1.5rem 0;
  display: inline-block;
  color: #a08032;
  min-width: 8rem;
}

@media (min-width: 1024px) {
  .content-slider__text-inner {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.slick-center .content-slider__text {
  opacity: 1;
}

.slick-center .content-slider__imagewrap {
  padding: 0;
  opacity: 1;
}

.content-slider__prev,
.content-slider__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.content-slider__prev:hover,
.content-slider__next:hover {
  opacity: 1;
}

.content-slider__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .content-slider__next {
    right: 7rem;
    left: auto;
    top: 6rem;
    bottom: auto;
  }
}

.content-slider__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .content-slider__prev {
    right: 7rem;
    left: auto;
    top: 13rem;
    bottom: auto;
  }
}

.content-slider__prev.slick-disabled,
.content-slider__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.content-slider__prev.slick-disabled:hover,
.content-slider__next.slick-disabled:hover {
  opacity: 0;
}

/* MODULE 31 - Latest News */
.module-31-news-3-article-card {
  padding: 1.5rem 0;
}

@media (min-width: 1024px) {
  .module-31-news-3-article-card {
    padding: 6rem;
  }
}

.article-cards__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* MODULE 32 - Right Hand News Block */
.module-32-right-hand-news-block .single-news__card {
  padding: 0;
}

.module-32-right-hand-news-block .single-news__card-inner {
  -webkit-box-shadow: none;
          box-shadow: none;
  position: relative;
  margin-bottom: 3rem;
  background: white;
}

.module-32-right-hand-news-block .single-news__text {
  width: 100%;
  padding: 3rem 0 0;
}

.module-32-right-hand-news-block .single-news__link {
  position: relative;
  bottom: auto;
  right: auto;
}

/* MODULE 33 - Share Social Icons */
.module-33-share-social-icons {
  padding: 3rem;
}

.module-33-share-social-icons .social-icon {
  color: #00204e;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.module-33-share-social-icons .social-icon:hover {
  color: #a08032;
}

@media (min-width: 576px) {
  .module-33-share-social-icons .social-icon {
    margin: 0 1.5rem 0 0;
  }
}

.share-social-icons__title {
  margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
  .share-social-icons__title {
    display: inline-block;
    margin: 0 1.5rem 0 0;
  }
}

/* MODULE 35 - Text & image Hero */
.module-35-text-image-hero {
  position: relative;
  background: #00204e;
}

@media (min-width: 1024px) {
  .module-35-text-image-hero {
    min-height: 56rem;
  }
}

.text-image-hero__image {
  position: relative;
  background-size: cover;
  background-position: left;
  height: 40vh;
}

@media (min-width: 1024px) {
  .text-image-hero__image {
    position: absolute;
    bottom: 0;
    right: 3rem;
    width: 46%;
    height: 96%;
  }
}

.text-image-hero__text {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .text-image-hero__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48%;
    padding: 6rem;
  }
}

@media (min-width: 1200px) {
  .text-image-hero__text {
    width: 42%;
  }
}

.text-image-hero__text-title {
  color: white;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .text-image-hero__text-title {
    font-size: 5.0rem;
    line-height: 5.5rem;
    margin-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .text-image-hero__text-title {
    font-size: 5.5rem;
    line-height: 6.0rem;
  }
}

.text-image-hero__body {
  color: white;
  opacity: 0.9;
  /* line-height: $font-size-h2; */
}

.module-35b-text-image-hero__image {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 40vh;
}

@media (min-width: 1024px) {
  .module-35b-text-image-hero__image {
    border-top: none;
    min-height: 660px;
  }
}

@media (min-width: 1024px) {
  .module-35b-text-image-hero .hero-main__prev,
  .module-35b-text-image-hero .hero-main__next {
    background: rgba(255, 255, 255, 0.9);
    width: 50px;
    height: 50px;
    line-height: 50px;
    text-align: center;
    opacity: 1;
  }
  .module-35b-text-image-hero .hero-main__prev img,
  .module-35b-text-image-hero .hero-main__next img {
    max-width: 15px;
    opacity: 0.7;
    -webkit-transition: opacity 0.4s ease;
    -o-transition: opacity 0.4s ease;
    transition: opacity 0.4s ease;
  }
  .module-35b-text-image-hero .hero-main__prev:hover img,
  .module-35b-text-image-hero .hero-main__next:hover img {
    opacity: 1;
  }
  .module-35b-text-image-hero .hero-main__prev {
    top: 52px;
    right: 0px;
  }
  .module-35b-text-image-hero .hero-main__next {
    right: 0px;
    top: 0px;
  }
}

/* MODULE 36 - Text & Sponsor */
.module-36-text-sponsor {
  position: relative;
  width: 100%;
  padding: 3rem 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  /* justify-content: space-around; */
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .module-36-text-sponsor {
    padding: 6rem 3rem;
    margin-bottom: 0;
  }
}

.text-sponsor__text {
  width: 100%;
  text-align: center;
  max-width: 80rem;
  margin: auto;
}

.text-sponsor__title {
  margin-bottom: 1.5rem;
  text-align: center;
}

.text-sponsor__body {
  margin-bottom: 1.5rem;
  display: inline-block;
  padding: 0 1.5rem;
}

.text-sponsor__logo {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 1.5rem 3rem;
  width: 100px;
  height: 100px;
}

@media (min-width: 768px) {
  .text-sponsor__logo {
    margin: 1.5rem 4.5rem;
    width: 100px;
    height: 100px;
  }
}

@media (min-width: 1024px) {
  .text-sponsor__logo {
    margin: 1.5rem 5.25rem;
    width: 180px;
    height: 180px;
  }
}

/* MODULE 37/38 - Timeline Image */
.module-378-timeline-image {
  background: #fcfbf9;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .module-378-timeline-image {
    padding: 3rem;
  }
}

.timeline-image__card {
  -webkit-box-shadow: 0 2px 40px 0px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 40px 0px rgba(0, 0, 0, 0.15);
  position: relative;
  background: white;
}

@media (min-width: 1024px) {
  .timeline-image__card {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1200px) {
  .timeline-image__card {
    margin: 0 auto;
    max-width: 90%;
  }
}

.timeline-image__card.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.timeline-image__image {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  padding-bottom: 60%;
}

@media (min-width: 1024px) {
  .timeline-image__image {
    width: 55%;
    padding-bottom: 0;
    min-height: 600px;
  }
}

.timeline-slider__container {
  position: relative;
}

.timeline-slider__container .timeline-image__image {
  width: 100%;
}

@media (min-width: 1024px) {
  .timeline-slider__container {
    width: 55%;
  }
  .timeline-slider__container .timeline-slider__image {
    min-height: 600px;
  }
  .timeline-slider__container .timeline-image__image {
    height: 100%;
  }
}

.timeline-slider__container .slick-arrow {
  width: 40px;
  height: 40px;
  line-height: 40px;
}

@media (min-width: 1024px) {
  .timeline-slider__container .slick-arrow {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }
}

.timeline-slider__container .slick-dots li {
  border: 2px solid #fff;
  border-radius: 100%;
}

@media (min-width: 1024px) {
  .timeline-slider__container .slick-dots li {
    width: 1.1rem;
    height: 1.1rem;
    margin: 0 0.6rem;
  }
}

.timeline-slider__prev,
.timeline-slider__next {
  position: absolute;
  width: 1.5rem;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.timeline-slider__prev img,
.timeline-slider__next img {
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  max-width: 15px;
  opacity: 0.7;
}

.timeline-slider__prev:hover img,
.timeline-slider__next:hover img {
  opacity: 1;
}

.timeline-slider__prev {
  top: 42px;
  right: 0px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .timeline-slider__prev {
    top: 52px;
  }
}

.timeline-slider__next {
  right: 0px;
  top: 0px;
}

.timeline-slider__prev.slick-disabled,
.timeline-slider__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.timeline-slider__prev.slick-disabled:hover,
.timeline-slider__next.slick-disabled:hover {
  opacity: 0;
}

.event-block-group__caption {
  position: absolute;
  top: 1.5rem;
  background: black;
  color: white;
  padding: 0.5rem 1rem;
}

.timeline-image__text {
  right: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding: 1.5rem;
}

@media (min-width: 1024px) {
  .timeline-image__text {
    width: 45%;
    height: 100%;
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .timeline-image__text {
    padding: 6rem;
  }
}

.timeline-image__text-inner {
  position: relative;
  padding-right: 1.5rem;
}

.timeline-image__title {
  font-family: "raisonne-light-pro";
  font-size: 3.2rem;
}

@media (min-width: 768px) {
  .timeline-image__title {
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .timeline-image__title {
    font-size: 5.5rem;
  }
}

.timeline-image__subtitle {
  font-family: "raisonne-light-pro";
  font-size: 2rem;
}

.timeline-image__body {
  margin: 1rem 0;
  font-size: 1.2rem;
}

@media (min-width: 768px) {
  .timeline-image__body {
    margin: 1.5rem 0;
    font-size: 1.6rem;
  }
}

.timeline-image__body ul {
  list-style: initial;
  padding-left: 2rem;
}

.timeline-image__body ul li {
  list-style: initial;
  margin-bottom: 0.75rem;
}

/* MODULE 39 - Values */
.module-39-values {
  position: relative;
}

.values__title {
  padding: 3rem 0 0 0;
  text-align: center;
}

.values__title .title {
  font-size: 2.2rem;
}

.values__slide {
  position: relative;
  margin: 3rem 0 7rem 0;
  border-bottom: 1px solid #fcfbf9;
}

@media (min-width: 1024px) {
  .values__slide {
    margin: 3rem 0;
    border-bottom: none;
  }
  .values__slide:hover .values__logo {
    height: 6rem;
  }
}

.values__image {
  position: relative;
  margin: 0 0 6rem 0;
  padding: 0 6%;
  width: 100%;
  height: 250px;
  overflow: hidden;
  -webkit-transition: padding 0.8s ease, opacity 0.8s ease;
  -o-transition: padding 0.8s ease, opacity 0.8s ease;
  transition: padding 0.8s ease, opacity 0.8s ease;
  display: block;
}

.values__image img {
  width: 100%;
  height: 100%;
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 768px) {
  .values__image {
    height: 32rem;
  }
}

@media (min-width: 1024px) {
  .values__image {
    margin: 0;
    height: 52rem;
  }
}

.values__gradient {
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.95)));
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.95) 100%);
  top: 0;
  left: 6%;
  bottom: 3rem;
  right: 0;
  -webkit-transition: top 0.5s ease, background 0.5s ease;
  -o-transition: top 0.5s ease, background 0.5s ease;
  transition: top 0.5s ease, background 0.5s ease;
}

@media (min-width: 1024px) {
  .values__gradient {
    bottom: 0;
  }
}

.values__text {
  width: 100%;
  position: absolute;
  bottom: 3rem;
  text-align: center;
  color: white;
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
}

.values__prev,
.values__next {
  position: absolute;
  width: 2rem;
  opacity: 0.5;
  bottom: 2.2rem;
  cursor: pointer;
  -webkit-transition: opacity 0.3s ease;
  -o-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.values__prev:hover,
.values__next:hover {
  opacity: 1;
}

.values__next {
  right: 3rem;
}

@media (min-width: 1024px) {
  .values__next {
    right: 7rem;
    left: auto;
    top: 6rem;
    bottom: auto;
  }
}

.values__prev {
  left: 3rem;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

@media (min-width: 1024px) {
  .values__prev {
    right: 7rem;
    left: auto;
    top: 13rem;
    bottom: auto;
  }
}

.values__prev.slick-disabled,
.values__next.slick-disabled {
  opacity: 0;
  pointer-events: none;
}

.values__prev.slick-disabled:hover,
.values__next.slick-disabled:hover {
  opacity: 0;
}

.values .slick-dots li {
  border: 1px solid rgba(0, 0, 0, 0.3);
}

.values .slick-dots li.slick-active {
  background: black;
}

/* MODULE 40 - Intro Schedule */
.module-40-intro-schedule {
  padding: 3rem;
}

@media (min-width: 768px) {
  .module-40-intro-schedule {
    padding: 6rem 3rem;
  }
}

@media (min-width: 1024px) {
  .module-40-intro-schedule {
    padding: 6rem 3rem;
  }
}

.module-40-intro-schedule .title {
  margin-bottom: 1.4rem;
  font-size: 36px;
}

.intro-schedule__text {
  width: 100%;
}

@media (min-width: 1024px) and (max-width: 1199.98px) {
  .intro-schedule__text {
    padding-left: 4vw;
  }
}

.intro-schedule__timings {
  width: 100%;
  float: none;
  margin-bottom: 3rem;
  padding-top: 40px;
  padding-bottom: 40px;
  padding-bottom: 40px;
  border: 1px solid rgba(0, 32, 78, 0.3);
  padding-left: 3rem;
  padding-right: 3rem;
  background-color: #fff;
}

@media (min-width: 576px) {
  .intro-schedule__timings {
    margin-top: 0;
  }
}

@media (min-width: 768px) {
  .intro-schedule__timings {
    margin-top: -10vh;
  }
}

@media (min-width: 1024px) {
  .intro-schedule__timings {
    margin-bottom: 0;
    margin-top: -12vh;
  }
}

@media (min-width: 1200px) {
  .intro-schedule__timings {
    margin-top: -14vh;
    margin-bottom: 0;
    padding-left: 5rem;
    padding-right: 5rem;
    max-width: 600px;
  }
}

@media (min-width: 1024px) and (max-width: 1400px) {
  .intro-schedule__timings {
    margin-top: -9vh;
  }
}

@media (min-width: 1600px) {
  .intro-schedule__timings {
    margin-top: -18vh;
    padding: 5rem 7rem;
    margin-left: 2rem;
    width: calc(100% - 3rem);
  }
}

.intro-schedule__table {
  width: 100%;
  color: #636870;
  margin-bottom: 3rem;
}

.intro-schedule__table tr {
  -webkit-transition: background-color .3s ease;
  -o-transition: background-color .3s ease;
  transition: background-color .3s ease;
  border-bottom: 1px solid rgba(0, 32, 78, 0.3);
}

.intro-schedule__table tr td {
  padding-top: 8px;
  padding-bottom: 8px;
  color: #00204e;
}

.intro-schedule__table tr td + td {
  padding-left: 8px;
}

.intro-schedule__table tr td a {
  color: #00204e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: underline;
  -webkit-transition: color .3s linear;
  -o-transition: color .3s linear;
  transition: color .3s linear;
}

.intro-schedule__table tr td a:hover {
  color: #a08032;
  text-decoration: underline;
}

.intro-schedule__table tr:nth-child(even) {
  background: rgba(0, 0, 0, 0.03);
}

.intro-schedule__table tr:nth-child(1) {
  border-top: 1px solid rgba(0, 32, 78, 0.3);
}

.events-calendar {
  display: inline-block;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 1.5rem 2.55rem 1.5rem 1.5rem;
  border-radius: 0.3rem;
  color: #fff;
  background-color: #00204e;
}

.events-calendar .add-to-calendar-checkbox {
  position: relative;
  margin-bottom: 0;
  cursor: pointer;
}

.events-calendar .add-to-calendar-checkbox:after {
  content: "";
  display: inline-block;
  width: 2rem;
  height: 2rem;
  background: url("../images/calendar-gold.svg") no-repeat;
  background-size: 2rem 2rem;
  -webkit-transform: translate(15px, 3px);
       -o-transform: translate(15px, 3px);
          transform: translate(15px, 3px);
}

.events-calendar .add-to-calendar-checkbox:checked {
  margin-bottom: 1.5rem;
}

.events-calendar .add-to-calendar-checkbox:checked ~ a {
  margin-left: 0;
  margin-top: 0.75rem;
  width: auto;
}

.events-calendar .add-to-calendar-checkbox + .add-to-calendar-checkbox {
  display: none;
}

.intro-schedule__additional-content {
  margin-top: 20px;
}

.intro-schedule__icon-container {
  display: inline-block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  font-size: 24px;
  text-align: center;
}

/* MODULE 41 - Intro Carnival */
.module-41-intro-carnival {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .module-41-intro-carnival {
    padding: 6rem;
  }
}

.intro-carnival__countdown {
  padding: 0 0 3rem;
  width: 100%;
}

@media (min-width: 768px) {
  .intro-carnival__countdown {
    padding: 0 3rem 6rem;
  }
}

.intro-carnival__divider {
  width: 100%;
  height: 0.1rem;
  background: black;
  opacity: 0.1;
}

.intro-carnival__text {
  padding: 3rem 0 0;
  width: 100%;
}

@media (min-width: 768px) {
  .intro-carnival__text {
    padding: 3rem 3rem 0;
    max-width: 90%;
  }
}

@media (min-width: 1200px) {
  .intro-carnival__text {
    max-width: 50%;
  }
}

.intro-carnival__title {
  margin-bottom: 1.5rem;
}

.intro-carnival__title--countdown {
  display: block;
}

@media (min-width: 768px) {
  .intro-carnival__title--countdown {
    display: inline;
  }
}

.intro-carnival__countdown-inner {
  float: none;
}

@media (min-width: 1024px) {
  .intro-carnival__countdown-inner {
    float: left;
  }
}

.intro-carnival__remaining {
  margin-left: 3rem;
  font-size: 4.2rem;
  font-family: "raisonne-light-pro";
  position: relative;
  color: #425b74;
}

@media (min-width: 768px) {
  .intro-carnival__remaining {
    margin-left: 6rem;
    font-size: 5.2rem;
  }
}

.intro-carnival__remaining--days {
  margin-left: 0;
}

@media (min-width: 768px) {
  .intro-carnival__remaining--days {
    margin-left: 3rem;
  }
}

@media (min-width: 1024px) {
  .intro-carnival__remaining--days {
    margin-left: 6rem;
  }
}

.intro-carnival__remaining--days::after,
.intro-carnival__remaining--hours::after,
.intro-carnival__remaining--minutes::after {
  font-family: "Gotham-Book", "Arial", sans-serif;
  position: absolute;
  font-size: 1.6rem;
  bottom: -3rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
}

.intro-carnival__remaining--minutes::after {
  content: 'Minutes';
}

.intro-carnival__remaining--hours::after {
  content: 'Hours';
}

.intro-carnival__remaining--days::after {
  content: 'Days';
}

.intro-carnival__logo {
  float: none;
  width: 20rem;
  text-align: left;
  height: auto;
  margin: 6rem 0 0 0;
}

@media (min-width: 1024px) {
  .intro-carnival__logo {
    float: right;
    text-align: right;
    margin: 3rem 3rem 0;
  }
}

/* MODULE 42 - Pricing Table */
.module-42-pricing-table {
  background: #fcfbf9;
  padding: 3rem;
  text-align: center;
}

@media (min-width: 768px) {
  .module-42-pricing-table {
    padding: 6rem;
  }
}

.module-42-pricing-table .btn, .module-42-pricing-table .comment-form input[type="submit"], .comment-form .module-42-pricing-table input[type="submit"], .module-42-pricing-table .search-form .search-submit, .search-form .module-42-pricing-table .search-submit {
  width: 100%;
}

@media (min-width: 768px) {
  .module-42-pricing-table .btn, .module-42-pricing-table .comment-form input[type="submit"], .comment-form .module-42-pricing-table input[type="submit"], .module-42-pricing-table .search-form .search-submit, .search-form .module-42-pricing-table .search-submit {
    width: auto;
  }
}

.pricing-table__titles {
  line-height: 5rem;
  margin-bottom: 2rem;
}

.pricing-table__table {
  border-collapse: collapse;
  border-spacing: 0;
  margin: 0 auto;
  max-width: 80rem;
  text-align: left;
  margin-bottom: 3rem;
  width: 100%;
  background: #fff;
}

.pricing-table__table a {
  color: #425b74;
  text-decoration: underline;
  -webkit-transition: color 0.5s ease;
  -o-transition: color 0.5s ease;
  transition: color 0.5s ease;
}

.pricing-table__table a:hover {
  color: #a08032;
  text-decoration: underline;
}

.pricing-table__cell {
  border-bottom: 5px solid #fcfbf9;
}

.pricing-table__cell > *:last-child {
  margin-bottom: 0;
}

.pricing-table__cell,
.pricing-table__cell--heading {
  padding: 15px 10px 5px;
  vertical-align: top;
  color: #636870;
}

@media (min-width: 768px) {
  .pricing-table__cell,
  .pricing-table__cell--heading {
    padding: 20px;
  }
}

.pricing-table__cell--heading {
  padding: 10px 20px 5px;
  background: #fcfbf9;
  color: #00204e;
}

.pricing-table__cell--heading:first-child {
  padding: 10px 0;
}

.pricing-table__cell:first-child {
  white-space: nowrap;
  position: relative;
}

@media (max-width: 767.98px) {
  .pricing-table__cell:first-child {
    width: 75%;
    white-space: normal;
  }
}

.pricing-table__cell:first-child + .pricing-table__cell + .pricing-table__cell {
  white-space: normal;
  position: relative;
}

@media (min-width: 768px) {
  .pricing-table__cell:first-child + .pricing-table__cell + .pricing-table__cell {
    white-space: nowrap;
  }
}

.pricing-table__cell:first-child + .pricing-table__cell + .pricing-table__cell {
  text-align: right;
}

@media (min-width: 768px) {
  .pricing-table__cell:first-child + .pricing-table__cell + .pricing-table__cell {
    text-align: left;
  }
}

/* .pricing-table__cell:first-child:after,
.pricing-table__cell:first-child  + .pricing-table__cell + .pricing-table__cell:after {
  content: ''; 
  width: 1px; 
  height: 80%; 
  background: rgba(black, 0.07); 
  position: absolute; 
  bottom: 10%;
}
 */
.pricing-table__cell:first-child:after {
  right: 0;
}

.pricing-table__cell:first-child + .pricing-table__cell + .pricing-table__cell:after {
  left: 0;
}

.pricing-table__cell--heading:first-child + .pricing-table__cell--heading,
.pricing-table__cell:first-child + .pricing-table__cell {
  display: none;
}

@media (min-width: 768px) {
  .pricing-table__cell--heading:first-child + .pricing-table__cell--heading,
  .pricing-table__cell:first-child + .pricing-table__cell {
    display: table-cell;
    border-left: 4px solid #fcfbf9;
    border-right: 4px solid #fcfbf9;
  }
}

.pricing-table__details {
  position: absolute;
  width: 80vw;
  white-space: normal;
  z-index: 1;
  padding: 1.8rem 1.8rem 0.5rem;
  background: white;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.2);
  top: -2.3rem;
  display: none;
}

.pricing-table__details-inner {
  overflow: scroll;
  max-height: 120px;
}

.pricing-table__details-inner-close {
  position: absolute;
  top: 0;
  right: 0;
}

.info-icon {
  width: 2rem;
  margin-left: 0.6rem;
  position: relative;
  top: -0.3rem;
  cursor: pointer;
}

@media (min-width: 768px) {
  .info-icon {
    display: none;
  }
}

.pricing-table__conditions-link {
  margin-top: 1.5rem;
}

.pricing-table__conditions-link a {
  text-decoration: underline;
  color: #00204e;
  font-size: 1.4rem;
}

.pricing-table__conditions-link a:hover, .pricing-table__conditions-link a:focus {
  text-decoration: underline;
}

/* MODULE 43 - Event Sticky Navigation */
.module-43-event-sticky-nav {
  position: sticky;
  top: 5.8rem;
  z-index: 10;
  background: white;
  width: 100%;
  padding: 1.5rem;
  -webkit-transform: translateY(-100%);
       -o-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.3s ease;
  -o-transition: opacity 0.5s ease, -o-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.5s ease;
  transition: transform 0.3s ease, opacity 0.5s ease, -webkit-transform 0.3s ease, -o-transform 0.3s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  opacity: 0;
}

.single-hospitality .module-43-event-sticky-nav {
  z-index: 22;
}

.post-type-archive-hospitality .module-43-event-sticky-nav {
  display: none !important;
}

.module-43-event-sticky-nav.scrolled {
  -webkit-transform: translateY(0);
       -o-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

@media (min-width: 1024px) {
  .module-43-event-sticky-nav {
    top: 8.4rem;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 1.5rem 3rem;
  }
}

.event-sticky-nav__inner:last-child {
  margin-left: auto;
}

.event-sticky-nav__image {
  height: 6rem;
  width: 8rem;
  margin-left: 1.5rem;
  background-size: cover !important;
  background-position: center !important;
}

@media (max-width: 767.98px) {
  .event-sticky-nav__image {
    display: none;
  }
}

.event-sticky-nav__details {
  margin-left: 1.5rem;
}

.event-sticky-nav__details-title {
  font-size: 1.8rem;
}

@media (min-width: 1024px) {
  .event-sticky-nav__details-title {
    margin-top: 1.2rem;
  }
}

.event-sticky-nav__details-date-location {
  font-size: 1.2rem;
  color: #425b74;
}

.event-sticky-nav__contact {
  text-align: right;
  margin-top: 1.2rem;
  font-family: "raisonne-light-pro";
  font-size: 1.8rem;
  line-height: 2.2rem;
  display: none;
}

@media (min-width: 1024px) {
  .event-sticky-nav__contact {
    display: block;
  }
}

/* MODULE 45 - Hero Address & Image */
.module-45-hero-address-image {
  position: relative;
  background: #00204e;
}

@media (min-width: 1024px) {
  .module-45-hero-address-image {
    height: calc(100vh - 8.4rem);
    min-height: 56rem;
  }
}

.hero-address-image__image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 60vh;
}

@media (min-width: 1024px) {
  .hero-address-image__image {
    position: absolute;
    bottom: 0;
    right: 3rem;
    width: 50%;
    height: 96%;
  }
}

@media (min-width: 1200px) {
  .hero-address-image__image {
    width: 56%;
  }
}

.hero-address-image__text {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .hero-address-image__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48%;
    padding: 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-address-image__text {
    width: 42%;
  }
}

.hero-address-image__text-title {
  color: white;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hero-address-image__text-title {
    font-size: 5.0rem;
    line-height: 5.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1200px) {
  .hero-address-image__text-title {
    font-size: 5.5rem;
    line-height: 6.0rem;
  }
}

.hero-address-image__body {
  color: white;
  opacity: 0.9;
  line-height: 2.2rem;
  margin-bottom: 3rem;
}

.hero-address-image__location {
  color: #a08032;
  margin-bottom: 3rem;
}

/* MODULE 45 - Hero Address & Image */
.module-46-hero-cta-image {
  position: relative;
  background: #00204e;
}

@media (min-width: 1024px) {
  .module-46-hero-cta-image {
    height: calc(100vh - 8.4rem);
    min-height: 56rem;
  }
}

.hero-cta-image__image {
  position: relative;
  background-size: cover;
  background-position: center;
  height: 60vh;
}

@media (min-width: 1024px) {
  .hero-cta-image__image {
    position: absolute;
    bottom: 0;
    right: 3rem;
    width: 50%;
    height: 96%;
  }
}

@media (min-width: 1200px) {
  .hero-cta-image__image {
    width: 56%;
  }
}

.hero-cta-image__text {
  padding: 3rem;
}

@media (min-width: 1024px) {
  .hero-cta-image__text {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 48%;
    padding: 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-cta-image__text {
    width: 42%;
  }
}

.hero-cta-image__text-title {
  color: white;
  font-size: 3rem;
  line-height: 3.4rem;
  margin-bottom: 3rem;
}

@media (min-width: 1024px) {
  .hero-cta-image__text-title {
    font-size: 5.0rem;
    line-height: 5.5rem;
    margin-bottom: 6rem;
  }
}

@media (min-width: 1200px) {
  .hero-cta-image__text-title {
    font-size: 5.5rem;
    line-height: 6.0rem;
  }
}

.hero-cta-image__body {
  color: white;
  opacity: 0.9;
  line-height: 2.2rem;
  margin-bottom: 6rem;
}

/* MODULE 47 - Tabbed Content */
.module-47-tabbed-content {
  text-align: center;
  position: sticky;
  top: 8.5rem;
  display: none;
  -webkit-transition: top 0.5s ease;
  -o-transition: top 0.5s ease;
  transition: top 0.5s ease;
  z-index: 30;
  font-size: 0;
}

@media (min-width: 1024px) {
  .module-47-tabbed-content {
    /* box-shadow: 0 3px 5px rgba($black, .05); */
    display: block !important;
  }
}

.module-47-tabbed-content__inner {
  background: #f9f6f2;
  border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.module-47-tabbed-content__link {
  display: inline-block;
  padding: 2.25rem 3rem;
  color: #374151;
  font-size: 1.5rem;
  -webkit-transition: background 0.3s ease;
  -o-transition: background 0.3s ease;
  transition: background 0.3s ease;
}

.module-47-tabbed-content__link:hover, .module-47-tabbed-content__link.active-tab {
  background: #00204e;
  color: #fff;
}

.module-47-tabbed-content__link.active {
  background: #00204e;
  color: white;
}

.module-47-tabbed-content.fixed .module-47-tabbed-content__inner {
  position: fixed;
  top: 8.5rem;
  width: 100%;
  z-index: 30;
}

/* MODULE 48 - Careers Content & CTA */
.module-48-careers-content-cta {
  padding: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media (min-width: 1024px) {
  .module-48-careers-content-cta {
    padding: 6rem;
  }
}

.careers-content-cta__text {
  width: 100%;
}

@media (min-width: 1024px) {
  .careers-content-cta__text {
    width: 60%;
  }
}

.careers-content-cta__title {
  margin-bottom: 3rem;
}

.careers-content-cta__body {
  color: #374151;
  margin-bottom: 3rem;
}

.careers-content-cta__button {
  width: 100%;
  position: relative;
  text-align: center;
}

@media (min-width: 1024px) {
  .careers-content-cta__button {
    width: 40%;
  }
}

.careers-content-cta__button .btn, .careers-content-cta__button .comment-form input[type="submit"], .comment-form .careers-content-cta__button input[type="submit"], .careers-content-cta__button .search-form .search-submit, .search-form .careers-content-cta__button .search-submit {
  position: relative;
  width: 100%;
}

@media (min-width: 1024px) {
  .careers-content-cta__button .btn, .careers-content-cta__button .comment-form input[type="submit"], .comment-form .careers-content-cta__button input[type="submit"], .careers-content-cta__button .search-form .search-submit, .search-form .careers-content-cta__button .search-submit {
    width: auto;
    position: absolute;
    top: 50%;
    display: inline-block;
    -webkit-transform: translate(-50%, -50%);
         -o-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

/* MODULE 49 - Central Content */
.module-49-central-content {
  padding: 3rem 1.5rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .module-49-central-content {
    padding: 6rem 6rem 0;
  }
}

@media (min-width: 768px) {
  .module-49-central-content__inner {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
  }
}

.module-49-central-content ul > li::before {
  content: "\2022";
  color: #00204e;
  display: inline-block;
  margin-right: 3px;
}

.module-49-central-content ol {
  list-style: none;
  counter-reset: ol-counter;
  padding: 0;
}

.module-49-central-content ol > li {
  counter-increment: ol-counter;
}

.module-49-central-content ol > li::before {
  content: counter(ol-counter) ". ";
  display: inline-block;
  margin-right: 3px;
  color: #00204e;
}

.module-49-central-content__h2 {
  margin-bottom: 3rem;
}

/* MODULE 50 - PDF Download */
.module-50-pdf-download {
  padding: 1.5rem 0;
  max-width: 120rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .module-50-pdf-download {
    padding: 6rem;
  }
}

.pdf-download__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.pdf-download {
  position: relative;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
  -webkit-box-flex: initial;
      -ms-flex-positive: initial;
          flex-grow: initial;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .pdf-download {
    -webkit-box-flex: 50%;
        -ms-flex: 50%;
            flex: 50%;
    -webkit-box-flex: initial;
        -ms-flex-positive: initial;
            flex-grow: initial;
  }
}

.pdf-download__inner {
  -webkit-box-shadow: 0 0 16px 0 rgba(222, 222, 222, 0.5);
          box-shadow: 0 0 16px 0 rgba(222, 222, 222, 0.5);
}

.pdf-download__image {
  position: relative;
  width: 50%;
  padding-bottom: 70%;
  background-size: cover;
  background-position: center;
}

.pdf-download__text {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  left: 50%;
  height: 100%;
  padding: 1.5rem;
}

.pdf-download__content {
  margin-top: 1.2rem;
  font-size: 1.2rem;
}

@media (min-width: 576px) {
  .pdf-download__content {
    font-size: 1.6rem;
  }
}

.pdf-download__text-inner {
  position: absolute;
  top: 30%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 80%;
}

.pdf-download__title {
  font-family: "raisonne-light-pro";
  margin-top: 3rem;
  font-size: 1.8rem;
}

@media (min-width: 576px) {
  .pdf-download__title {
    font-size: 2.2rem;
  }
}

.pdf-download__body {
  margin: 1.5rem 0;
}

.pdf-download__link {
  position: absolute;
  bottom: 3rem;
  right: 3rem;
}

.module-50b-spaces-download {
  background: #fcfbf9;
}

/* Test Change */
/* MODULE 51 - Image & Text */
.module-51-image-text {
  padding: 0 1.5rem 3rem;
  margin-top: 3rem;
}

.module-51__inner {
  position: relative;
}

.module-51__text {
  width: 100%;
  padding: 3rem 0 0;
}

@media (min-width: 768px) {
  .module-51__text {
    width: 50%;
    margin-left: 50%;
    border-right: 0;
    padding: 3rem;
    min-height: 45rem;
  }
}

@media (min-width: 1024px) {
  .module-51__text {
    width: 40%;
  }
}

.module-51__image {
  position: relative;
  top: 0;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  .module-51__image {
    width: 50%;
    position: absolute;
  }
}

.module-51__image .object-fit-cover {
  height: 100%;
  width: 100%;
}

@media (min-width: 768px) {
  .module-51__image .object-fit-cover {
    width: calc(100% - 15px);
  }
}

.module-51__title {
  margin-bottom: 1.5rem;
}

.module-51__body {
  color: #374151;
}

@media (min-width: 768px) {
  .module-51__body {
    margin-bottom: 3rem;
  }
}

@media (min-width: 768px) {
  .module-51__image-right .module-51__image {
    right: 0;
  }
  .module-51__image-right .module-51__text {
    margin-left: 10%;
  }
}

/* MODULE 52 - Explore Racecourses */
.module-52-explore-racecourses {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .module-52-explore-racecourses {
    padding: 3rem;
    padding-top: 0;
  }
}

@media (min-width: 1200px) {
  .module-52-explore-racecourses {
    padding: 6rem;
    padding-top: 0;
  }
}

.module-52-explore-racecourses .page-title {
  padding: 6rem 0;
}

@media (max-width: 767.98px) {
  .module-52-explore-racecourses .page-title {
    padding: 0 0 3rem 0;
  }
}

.module-52-explore-racecourses .btn, .module-52-explore-racecourses .comment-form input[type="submit"], .comment-form .module-52-explore-racecourses input[type="submit"], .module-52-explore-racecourses .search-form .search-submit, .search-form .module-52-explore-racecourses .search-submit {
  padding: 1.5rem 6rem 1.5rem 1.5rem;
}

.explore-racecourses__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.explore-racecourse {
  position: relative;
  -webkit-box-flex: 100%;
      -ms-flex: 100%;
          flex: 100%;
}

@media (min-width: 768px) {
  .explore-racecourse {
    -webkit-box-flex: calc(100% / 2);
        -ms-flex: calc(100% / 2);
            flex: calc(100% / 2);
    margin-bottom: 3rem;
    min-height: 400px;
  }
}

@media (min-width: 1024px) {
  .explore-racecourse {
    -webkit-box-flex: calc(100% / 2);
        -ms-flex: calc(100% / 2);
            flex: calc(100% / 2);
    width: calc(100% / 2);
  }
}

@media (min-width: 1200px) {
  .explore-racecourse {
    -webkit-box-flex: calc(100% / 4);
        -ms-flex: calc(100% / 4);
            flex: calc(100% / 4);
    width: calc(100% / 4);
    margin-bottom: 6rem;
  }
}

.explore-racecourse__image {
  padding-bottom: 65%;
  position: relative;
  background-size: cover !important;
  background-position: center bottom !important;
}

@media (min-width: 768px) {
  .explore-racecourse__image {
    padding-bottom: 130%;
    min-height: 40rem;
  }
}

.explore-racecourse__logo {
  position: absolute;
  height: 5rem;
  bottom: 4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  text-align: center;
}

@media (min-width: 1024px) {
  .explore-racecourse__logo {
    height: 7rem;
  }
}

.explore-racecourse__logo-image {
  height: 100%;
  width: auto;
}

.explore-racecourse__overlay {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, rgba(0, 32, 78, 0)), to(rgba(0, 32, 78, 0.95)));
  background: -webkit-linear-gradient(top, rgba(0, 32, 78, 0) 50%, rgba(0, 32, 78, 0.95) 100%);
  background: -o-linear-gradient(top, rgba(0, 32, 78, 0) 50%, rgba(0, 32, 78, 0.95) 100%);
  background: linear-gradient(to bottom, rgba(0, 32, 78, 0) 50%, rgba(0, 32, 78, 0.95) 100%);
}

.explore-racecourse__text {
  padding: 1.5rem 0;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .explore-racecourse__text {
    padding: 1.5rem 3rem 0;
  }
}

@media (min-width: 1200px) {
  .explore-racecourse__text {
    margin-bottom: 6rem;
  }
}

.explore-racecourse__title {
  font-size: 2.2rem;
  color: #00204e;
  margin: 0.75rem 0 3rem;
}

.explore-racecourse__subtitle {
  font-size: 1.8rem;
  color: #00204e;
  font-family: "raisonne-light-pro";
}

.explore-racecourse__body {
  margin-top: 1.5rem;
  font-size: 1.6rem;
}

@media (min-width: 1024px) {
  .explore-racecourse__body {
    font-size: 1.4rem;
  }
}

.explore-racecourse__info {
  position: relative;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .explore-racecourse__info {
    /* position: absolute;
    bottom: 6.8rem; */
  }
}

.explore-racecourse__events {
  position: relative;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .explore-racecourse__events {
    /* position: absolute;
    bottom: 0; */
  }
}

.module-53-video-embed {
  padding: 40px 20px;
}

@media (min-width: 1024px) {
  .module-53-video-embed {
    padding: 55px 20px;
  }
}

@media (min-width: 1024px) {
  .module-53-video-embed .container {
    max-width: 1140px;
  }
}

.module-53-video-embed h2, .module-53-video-embed h3, .module-53-video-embed h4, .module-53-video-embed h5, .module-53-video-embed h6 {
  margin-bottom: 1.5rem;
}

.module-53-video-embed .row {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.module-53-video-embed h2 {
  font-size: 3rem;
}

.module-53-video-embed h3 {
  font-size: 2.6rem;
}

.module-53-video-embed h4 {
  font-size: 2.4rem;
}

@media (min-width: 768px) {
  .module-53-video-embed h2 {
    font-size: 3.6rem;
  }
  .module-53-video-embed h3 {
    font-size: 3.2rem;
  }
  .module-53-video-embed h4 {
    font-size: 2.8rem;
  }
}

.module-53-video-embed .wp-video,
.module-53-video-embed video.wp-video-shortcode,
.module-53-video-embed .mejs-container,
.module-53-video-embed .mejs-overlay.load {
  width: 100% !important;
  height: 100% !important;
}

.module-53-video-embed .mejs-container {
  padding-top: 56.25%;
}

.module-53-video-embed .wp-video,
.module-53-video-embed video.wp-video-shortcode {
  max-width: 100% !important;
}

.module-53-video-embed video.wp-video-shortcode {
  position: relative;
}

.module-53-video-embed .mejs-mediaelement {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.module-53-video-embed .mejs-controls {
  /* display: none; */
}

.module-53-video-embed .mejs-overlay-play {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: auto !important;
  height: auto !important;
}

.module-53-video-embed__video {
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .module-53-video-embed__video {
    margin-bottom: 20px;
  }
}

.module-54-hospitality-list {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .module-54-hospitality-list {
    padding: 6rem;
  }
}

.module-54-hospitality-list h2, .module-54-hospitality-list h3, .module-54-hospitality-list h4, .module-54-hospitality-list h5, .module-54-hospitality-list h6 {
  margin-bottom: 1.5rem;
}

.module-55-hospitality-additional-blocks {
  background: inherit;
}

.module-55-hospitality-additional-blocks .menu-text-image__top {
  display: block;
}

@media (min-width: 768px) {
  .module-55-hospitality-additional-blocks .menu-text-image__top {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media (min-width: 768px) {
  .module-55-hospitality-additional-blocks.ab-image-right .menu-text-image__menu {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .module-55-hospitality-additional-blocks.ab-image-right .menu-text-image__menu-image {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

.module-55-hospitality-additional-blocks ul > li {
  list-style: inherit;
}

.module-55-hospitality-additional-blocks ol {
  padding: 0;
}

.module-55-hospitality-additional-blocks ol > li {
  list-style: decimal;
}

.module-55-hospitality-additional-blocks ul,
.module-55-hospitality-additional-blocks ol {
  margin-left: 3rem;
  margin-bottom: 1.2rem;
}

.module-55-hospitality-additional-blocks ul li,
.module-55-hospitality-additional-blocks ol li {
  margin-bottom: 0.3rem;
  list-style: inherit;
}

.module-56 {
  padding: 1.5rem 0;
  text-align: center;
}

@media (min-width: 768px) {
  .module-56 {
    padding: 1.5rem;
  }
}

.module-56 #loginesBox {
  margin: 0 auto;
}

.module-56 #loginesBox .time img {
  width: auto;
}

#loginesBox {
  max-width: 988px;
  min-width: 250px;
  height: 120px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

#loginesBox .logo {
  width: 100%;
  background: url(../images/logoS.png);
  background-repeat: repeat-x;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

#loginesBox .horloge {
  margin: 0;
}

@media (max-width: 767.98px) {
  #loginesBox .horloge {
    display: none !important;
  }
}

@media only screen and (min-width: 250px) and (max-width: 340px) {
  #loginesBox .longines {
    background: url(../images/longines.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 45%;
    height: 45%;
    left: 26%;
    top: 8%;
  }
  #loginesBox .site {
    background: url(../images/site.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 60%;
    height: 60%;
    top: 83px;
    left: 20%;
  }
  #loginesBox .conteur {
    background: url(../images/conteurs-mobile.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 100%;
    height: 60px;
    left: 20%;
    top: 60px;
  }
  #loginesBox .time {
    width: 95%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 50%;
    left: 0%;
    z-index: 18;
    display: none;
  }
  #loginesBox .time div {
    float: left;
    display: block;
    margin-top: 20px;
  }
  #loginesBox .time div span {
    float: left;
    display: block;
    overflow: hidden;
    line-height: 30px;
    height: 30px;
    width: 13px;
  }
  #loginesBox .time .day span {
    float: left;
    line-height: 35px;
    height: 35px;
    overflow: hidden;
    width: 17px;
    display: block;
  }
  #loginesBox .time .day {
    margin-left: 10px;
  }
  #loginesBox .time .hour {
    margin-left: 22%;
    margin-top: 27px;
  }
  #loginesBox .time .minute {
    margin-left: 7%;
    margin-top: 27px;
  }
  #loginesBox .time .second {
    margin-left: 10%;
    margin-top: 27px;
  }
}

@media only screen and (min-width: 340px) and (max-width: 420px) {
  #loginesBox .longines {
    background: url(../images/longines.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 38%;
    height: 38%;
    left: 5%;
    top: 30%;
  }
  #loginesBox .site {
    background: url(../images/site.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 39%;
    height: 39%;
    top: 53px;
    left: 56%;
  }
  #loginesBox .conteur {
    background: url(../images/conteurs.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 59%;
    height: 59%;
    left: 50%;
    top: 24%;
  }
  #loginesBox .time {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 22%;
    left: 42%;
    z-index: 18;
    display: none;
  }
  #loginesBox .time div {
    float: left;
    display: block;
    margin-top: 20px;
  }
  #loginesBox .time div span {
    float: left;
    display: block;
    overflow: hidden;
    line-height: 30px;
    height: 30px;
    width: 13px;
  }
  #loginesBox .time .day span {
    float: left;
    line-height: 35px;
    height: 35px;
    overflow: hidden;
    width: 17px;
    display: block;
  }
  #loginesBox .time .day {
    margin-left: 20px;
  }
  #loginesBox .time .hour {
    margin-left: 16px;
    margin-top: 27px;
  }
  #loginesBox .time .minute {
    margin-left: 14px;
    margin-top: 27px;
  }
  #loginesBox .time .second {
    margin-left: 19px;
    margin-top: 27px;
  }
}

@media only screen and (min-width: 421px) and (max-width: 599px) {
  #loginesBox .longines {
    background: url(../images/longines.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 31%;
    height: 31%;
    left: 2%;
    top: 32%;
  }
  #loginesBox .site {
    background: url(../images/site.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 34%;
    height: 34%;
    top: 53px;
    left: 62%;
  }
  #loginesBox .horloge {
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 2px;
    left: 31%;
    display: none;
  }
  #loginesBox .conteur {
    background: url(../images/conteurs.png) no-repeat;
    background-size: contain;
    position: absolute;
    width: 59%;
    height: 59%;
    left: 62%;
    top: 24%;
  }
  #loginesBox .time {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 22%;
    left: 56%;
    z-index: 18;
    display: none;
  }
  #loginesBox .time div {
    float: left;
    display: block;
    margin-top: 20px;
  }
  #loginesBox .time div span {
    float: left;
    display: block;
    overflow: hidden;
    line-height: 30px;
    height: 30px;
    width: 13px;
  }
  #loginesBox .time .day span {
    float: left;
    line-height: 35px;
    height: 35px;
    overflow: hidden;
    width: 17px;
    display: block;
  }
  #loginesBox .time .day {
    margin-left: 20px;
  }
  #loginesBox .time .hour {
    margin-left: 16px;
    margin-top: 27px;
  }
  #loginesBox .time .minute {
    margin-left: 14px;
    margin-top: 27px;
  }
  #loginesBox .time .second {
    margin-left: 19px;
    margin-top: 27px;
  }
}

@media only screen and (min-width: 600px) and (max-width: 730px) {
  #loginesBox .longines {
    background: url(../images/longines.png) no-repeat;
    position: absolute;
    width: 90%;
    height: 90%;
    left: 3%;
    top: 25%;
  }
  #loginesBox .site {
    background: url(../images/site.png) no-repeat;
    position: absolute;
    width: 90%;
    height: 90%;
    top: 40%;
    left: 65%;
  }
  #loginesBox .horloge {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 2px;
    left: 39%;
    display: none;
  }
  #loginesBox .conteur {
    background: url(../images/conteurs.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 65%;
    top: 20%;
  }
  #loginesBox .time {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 22%;
    left: 61%;
    z-index: 18;
    display: none;
  }
  #loginesBox .time div {
    float: left;
    display: block;
    margin-top: 20px;
  }
  #loginesBox .time div span {
    float: left;
    display: block;
    overflow: hidden;
    line-height: 34px;
    height: 34px;
    width: 15px;
  }
  #loginesBox .time .day span {
    float: left;
    line-height: 38px;
    height: 38px;
    overflow: hidden;
    width: 19px;
    display: block;
  }
  #loginesBox .time .day {
    margin-left: 30px;
  }
  #loginesBox .time .hour {
    margin-left: 16px;
    margin-top: 27px;
  }
  #loginesBox .time .minute {
    margin-left: 14px;
    margin-top: 27px;
  }
  #loginesBox .time .second {
    margin-left: 19px;
    margin-top: 27px;
  }
}

@media only screen and (min-width: 731px) and (max-width: 800px) {
  #loginesBox .longines {
    background: url(../images/longines.png) no-repeat;
    position: absolute;
    width: 90%;
    height: 90%;
    left: 3%;
    top: 25%;
  }
  #loginesBox .site {
    background: url(../images/site.png) no-repeat;
    position: absolute;
    width: 90%;
    height: 90%;
    top: 40%;
    left: 65%;
  }
  #loginesBox .horloge {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 2px;
    left: 39%;
    display: none;
  }
  #loginesBox .conteur {
    background: url(../images/conteurs.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 71%;
    top: 20%;
  }
  #loginesBox .time {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 22%;
    left: 68%;
    z-index: 18;
    display: none;
  }
  #loginesBox .time div {
    float: left;
    display: block;
    margin-top: 20px;
  }
  #loginesBox .time div span {
    float: left;
    display: block;
    overflow: hidden;
    line-height: 34px;
    height: 34px;
    width: 15px;
  }
  #loginesBox .time .day span {
    float: left;
    line-height: 38px;
    height: 38px;
    overflow: hidden;
    width: 19px;
    display: block;
  }
  #loginesBox .time .day {
    margin-left: 30px;
  }
  #loginesBox .time .hour {
    margin-left: 16px;
    margin-top: 27px;
  }
  #loginesBox .time .minute {
    margin-left: 14px;
    margin-top: 27px;
  }
  #loginesBox .time .second {
    margin-left: 19px;
    margin-top: 27px;
  }
}

@media only screen and (min-width: 801px) {
  #loginesBox .longines {
    background: url(../images/longines.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 6%;
    top: 24%;
  }
  #loginesBox .site {
    background: url(../images/site.png) no-repeat;
    position: absolute;
    width: 90%;
    height: 90%;
    top: 40%;
    left: 73%;
  }
  #loginesBox .horloge {
    width: 120px;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 2px;
    left: 43%;
    display: none;
  }
  #loginesBox .conteur {
    background: url(../images/conteurs.png) no-repeat;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 72%;
    top: 17%;
  }
  #loginesBox .time {
    width: 100%;
    height: 120px;
    overflow: hidden;
    position: absolute;
    top: 18%;
    left: 69%;
    z-index: 18;
    display: none;
  }
  #loginesBox .time div {
    float: left;
    display: block;
    margin-top: 20px;
  }
  #loginesBox .time div span {
    float: left;
    display: block;
    overflow: hidden;
    line-height: 34px;
    height: 34px;
    width: 15px;
  }
  #loginesBox .time .day span {
    float: left;
    line-height: 38px;
    height: 38px;
    overflow: hidden;
    width: 19px;
    display: block;
  }
  #loginesBox .time .day {
    margin-left: 30px;
  }
  #loginesBox .time .hour {
    margin-left: 16px;
    margin-top: 27px;
  }
  #loginesBox .time .minute {
    margin-left: 14px;
    margin-top: 27px;
  }
  #loginesBox .time .second {
    margin-left: 19px;
    margin-top: 27px;
  }
}

#loginesBox .logoEnd {
  width: 100%;
  background: url(../images/logoS.png);
  background-repeat: repeat-x;
  height: 120px;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  display: none;
}

.module-56__inner-title {
  background: #003150;
  max-width: 988px;
  margin: 0 auto;
  padding: 2px 10px 0;
  color: #fff;
  font-family: "raisonne-light-pro";
  font-size: 22px;
  text-align: center;
  text-transform: uppercase;
}

#search-spaces {
  margin-top: 1.5rem;
}

.search-spaces-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media (max-width: 767.98px) {
  .search-spaces-cta {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.search-spaces-cta button {
  padding: 0 12px;
}

.search-spaces-cta .search-spaces {
  background: #00204e;
  border-color: #00204e;
  color: #fff;
  margin-right: 6px;
}

.search-spaces-cta .search-spaces:hover, .search-spaces-cta .search-spaces:focus {
  background: #a08032;
  border-color: #a08032;
}

.spaces-embed {
  border-top: 1px solid rgba(0, 0, 0, 0.03);
}

.spaces-embed iframe {
  width: 100%;
  margin-top: 1.5rem;
}

.background--grey .module-60-grid__image {
  margin-bottom: 0;
}

.background--grey .module-60-grid__body {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .background--grey .module-60-grid__body {
    padding: 2rem;
  }
}

.background--grey .module-60-grid__col-container {
  background: #fff;
  height: 100%;
}

.module-60-grid {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .module-60-grid {
    padding: 6rem;
  }
}

.module-60-grid h2,
.module-60-grid h3,
.module-60-grid h4,
.module-60-grid h5,
.module-60-grid h6 {
  margin-bottom: 0.3em;
}

.module-60-grid__main-title {
  margin-bottom: 1.5rem;
}

.module-60-grid__main-title h2 {
  font-size: 2.4rem;
}

.module-60-grid__body a {
  color: #425b74;
  text-decoration: underline;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.module-60-grid__body a:hover {
  color: #00204e;
  text-decoration: underline;
}

.module-60-grid__body p {
  margin-bottom: 1rem;
}

.module-60-grid__cols {
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .module-60-grid__cols {
    margin-bottom: 6rem;
  }
}

.module-60-grid__image {
  padding-bottom: 60%;
  margin-bottom: 1.5rem;
  display: block;
}

.trainer-filter {
  padding: 3rem 1.5rem;
}

@media (min-width: 1024px) {
  .trainer-filter {
    padding: 6rem;
  }
}

#trainer-filter__list {
  list-style: none;
}

#trainer-filter__list a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  color: #00204e;
  font-family: "raisonne-light-pro";
  font-size: 18px;
  text-transform: uppercase;
  border: 1px solid rgba(66, 91, 116, 0.15);
  line-height: 1;
  padding-right: 10px;
  -webkit-transition: background 0.3s ease, color 0.3s ease;
  -o-transition: background 0.3s ease, color 0.3s ease;
  transition: background 0.3s ease, color 0.3s ease;
}

@media (min-width: 768px) {
  #trainer-filter__list a {
    font-size: 20px;
  }
}

#trainer-filter__list a:hover, #trainer-filter__list a:focus {
  color: #a08032;
  background: #fcfbf9;
}

#trainer-filter__list a:hover span, #trainer-filter__list a:focus span {
  color: #00204e;
}

#trainer-filter__list a img {
  width: 80px;
  margin-right: 10px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

#trainer-filter__list a span {
  display: block;
  color: #425b74;
  font-size: 14px;
  font-family: "Gotham-Book", "Arial", sans-serif;
  text-transform: none;
  margin-top: 4px;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

#trainer-filter__form {
  margin-bottom: 15px;
  position: relative;
}

#trainer-filter__form .icon-search {
  position: absolute;
  left: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

#trainer-filter__form input {
  min-width: 100%;
  height: 50px;
  padding-left: 32px;
  padding-right: 15px;
  border: 1px solid #bac8d2;
}

#trainer-filter__form input:focus {
  border-radius: 0;
  outline: none;
  border-color: #00204e;
}

@media (min-width: 768px) {
  #trainer-filter__form input {
    min-width: 300px;
  }
}

.trainer-filter__heading {
  margin-bottom: 15px;
}

.module-62 {
  padding: 3rem 1.5rem;
  background: no-repeat center center;
  background-size: cover;
}

@media (min-width: 1024px) {
  .module-62 {
    padding: 6rem;
  }
}

.widget-slider-thumbnail .slick-slide {
  cursor: pointer;
  padding: 0 10px;
}

.widget-slider__next,
.widget-slider__prev {
  width: 25px;
  height: auto;
  cursor: pointer;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  background: #fff;
  padding: 1px 3px;
}

.widget-slider__next {
  right: -25px;
}

.widget-slider__prev {
  left: -25px;
  -webkit-transform: translateY(-50%) rotate(180deg);
       -o-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}

.widget-slider__prev {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.widget-slider-thumbnail-container {
  position: relative;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .widget-slider-thumbnail-container {
    padding-left: 30px;
    padding-right: 30px;
  }
  .widget-slider-thumbnail-container .widget-slider__next {
    right: 0;
  }
  .widget-slider-thumbnail-container .widget-slider__prev {
    left: 0;
  }
}

.widget-slider-thumbnail-container p {
  font-size: 14px;
}

.module-62__carousel-header h2 {
  font-size: 35px;
}

@media (min-width: 768px) {
  .module-62__carousel-header h2 {
    font-size: 50px;
  }
}

.module-62__widget {
  margin-bottom: 20px;
}

.widget-countdowm-popup {
  padding: 0 !important;
  z-index: 9999999;
}

.widget-countdowm-popup .modal-dialog {
  width: 100%;
  max-width: none;
  height: 100%;
  margin: 0;
}

.widget-countdowm-popup .modal-content {
  height: 100%;
  border: 0;
  border-radius: 0;
}

.widget-countdowm-popup .modal-body {
  padding: 0;
}

.widget-countdowm-popup .close {
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 100;
  background: #fff;
  opacity: 1;
  width: 50px;
  height: 50px;
  color: #a08032;
}

.faq__answer-menu .faq__question {
  font-size: 21px;
}

.faq__answer-menu > p {
  border-top: 1px solid #fff;
  padding: 8px 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.faq__answer-menu > p span {
  padding-left: 5px;
  font-weight: bold;
  margin-left: auto;
}

@media (min-width: 576px) {
  .faq__answer-menu {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .faq__answer-menu > p {
    width: 50%;
    padding: 8px 20px;
    border-bottom: 1px solid #fff;
    margin-bottom: -1px;
  }
  .faq__answer-menu > p:nth-child(even) {
    padding-right: 0;
  }
  .faq__answer-menu > p:nth-child(odd) {
    border-right: 1px solid #fff;
    padding-left: 0;
  }
}

.transparent-nav .header-fixed {
  background: none;
  margin-bottom: -5.8rem;
  -webkit-transition: background-color 0.2s ease;
  -o-transition: background-color 0.2s ease;
  transition: background-color 0.2s ease;
  top: -1px;
}

@media (min-width: 1024px) {
  .transparent-nav .header-fixed {
    margin-bottom: -85px;
  }
}

.transparent-nav .header-fixed.isSticky {
  background: #00204e;
}

.module-64-full-video {
  position: relative;
  overflow: hidden;
  /* @include media-breakpoint-up(md) {
    margin-left: calc(50% - 50vw); 
    margin-right: calc(50% - 50vw);
  } */
}

.module-64-full-video__wrapper {
  height: 100vh;
  height: calc(var(--vh, 1vh) * 100);
  max-height: -webkit-fill-available;
  position: relative;
  width: 100%;
}

.module-64-full-video__wrapper video {
  display: inline-block;
  vertical-align: baseline;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}

.module-64-full-video__img .video_bg {
  height: 100vh;
  left: 0;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  width: 100vw;
  z-index: 1;
}

.module-64-full-video__content {
  position: absolute;
  z-index: 2;
  padding: 0 1.5rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.module-64-full-video__content h1,
.module-64-full-video__content p {
  color: #fff;
  text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.6);
}

.module-64-full-video__content h1 {
  font-size: 65px;
  line-height: 1;
  margin-bottom: 10px;
}

.module-64-full-video__content p {
  font-size: 18px;
}

@media (min-width: 768px) {
  .module-64-full-video__content {
    -webkit-transform: none;
         -o-transform: none;
            transform: none;
    top: auto;
    bottom: 20%;
    max-width: 900px;
  }
  .module-64-full-video__content h1 {
    font-size: 100px;
  }
  .module-64-full-video__content p {
    font-size: 20px;
    max-width: 680px;
  }
  .module-64-full-video__content .btn, .module-64-full-video__content .comment-form input[type="submit"], .comment-form .module-64-full-video__content input[type="submit"], .module-64-full-video__content .search-form .search-submit, .search-form .module-64-full-video__content .search-submit {
    font-size: 20px;
    text-shadow: 2px 2px 7px rgba(0, 0, 0, 0.6);
  }
  .module-64-full-video__content .btn:hover, .module-64-full-video__content .comment-form input:hover[type="submit"], .comment-form .module-64-full-video__content input:hover[type="submit"], .module-64-full-video__content .search-form .search-submit:hover, .search-form .module-64-full-video__content .search-submit:hover {
    text-shadow: none;
  }
}

@media (min-width: 1024px) {
  .module-64-full-video__content h1 {
    font-size: 114px;
  }
}

@-webkit-keyframes animateArrow {
  0%,
  25%,
  55%,
  80%,
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(6px);
            transform: translateY(6px);
  }
  60% {
    -webkit-transform: translateY(3px);
            transform: translateY(3px);
  }
}

@-o-keyframes animateArrow {
  0%,
  25%,
  55%,
  80%,
  to {
    -o-transform: translateY(0);
       transform: translateY(0);
  }
  40% {
    -o-transform: translateY(6px);
       transform: translateY(6px);
  }
  60% {
    -o-transform: translateY(3px);
       transform: translateY(3px);
  }
}

@keyframes animateArrow {
  0%,
  25%,
  55%,
  80%,
  to {
    -webkit-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(6px);
         -o-transform: translateY(6px);
            transform: translateY(6px);
  }
  60% {
    -webkit-transform: translateY(3px);
         -o-transform: translateY(3px);
            transform: translateY(3px);
  }
}

.module-64__arrow {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
       -o-transform: translateX(-50%);
          transform: translateX(-50%);
  bottom: 20px;
  z-index: 2;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  cursor: pointer;
}

.module-64__arrow img {
  width: 30px;
  -webkit-animation: animateArrow 2s infinite;
       -o-animation: animateArrow 2s infinite;
          animation: animateArrow 2s infinite;
}

@media (min-width: 768px) {
  .module-64__arrow {
    bottom: 50px;
  }
  .module-64__arrow img {
    width: 30px;
  }
}

.module-65 {
  position: relative;
}

.module-65 .slick-dots li {
  width: 20px;
  height: 20px;
  margin: 0 5px 5px;
}

.module-65 .slick-dots li:not(.slick-active) {
  border: 2px solid #fff;
}

.module-65 .slick-dots li button {
  width: 20px;
  height: 20px;
}

@media (min-width: 768px) {
  .module-65 h1 {
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.79);
  }
  .module-65 p {
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.79);
  }
}

.module-65-carousel-image {
  height: calc(100vh - 58px);
  position: relative;
}

.module-65-carousel-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

@media (min-width: 576px) {
  .module-65-carousel-image {
    height: calc(100vh - 85px);
    position: relative;
  }
  .module-65-carousel-image::after {
    background: -webkit-linear-gradient(218deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    background: -o-linear-gradient(218deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
    background: linear-gradient(232deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.6) 100%);
  }
}

.module-65-carousel-image picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.module-65-full-image__wrapper {
  position: relative;
}

.module-65__prev,
.module-65__next {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  opacity: 1;
  cursor: pointer;
}

.module-65__prev img,
.module-65__next img {
  max-width: 20px;
}

.module-65__prev {
  top: 52px;
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

:root {
  --color-blue: #51a8d4;
  --color-dark-blue: $navy;
  --color-yellow: #ecbd46;
  --color-red: #dd6245;
  --color-muted: #e1e2e4;
  --color-gold: #a08032;
  --color-dark-muted: #4f708e;
  --color-green: #599c36;
  --color-dark-green: #257f25;
  --gap: 15px;
}

.module-66 {
  position: relative;
  color: #00204e;
  padding: 3rem 0;
  /* Dark toggle */
  /* 
  *
  *
  *
  Kensington
  *
  *
  *
  */
  /* 
  *
  *
  *
  Randwick 
  *
  *
  *
  */
  /*
  *
  *
  * 
  Rosehill 
  *
  *
  *
  */
  /* @include media-breakpoint-up(md) {
    .north-compass-container {
      position: absolute;
      top: 50px;
      right: 30px;
      margin-top: 0;
    }
    .north-compass-container h3 {
      font-size: 25px;
    }
  }

  @include media-breakpoint-up(lg) {
    .north-compass-container {
      top: 0;
      right: 0;
      // top: auto;
      // right: auto;
      // bottom: 0;
      // right: 0;
    }
  } */
}

@media (min-width: 1024px) {
  .module-66 {
    padding: 6rem 0;
  }
}

.module-66 .arrow-up {
  height: 32px;
}

.module-66 .container {
  margin: 0 auto;
  width: 100%;
  height: 100%;
  max-width: 1500px;
}

.module-66 .hidden {
  opacity: 0;
}

.module-66 .display-none {
  display: none !important;
}

.module-66 .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

.module-66.dark {
  color: #fff;
  background-color: #021328;
}

.module-66.dark h3,
.module-66.dark h4,
.module-66.dark h5,
.module-66.dark h6,
.module-66.dark p {
  color: #fff;
}

.module-66 .active {
  background-color: var(--color-dark-blue) !important;
  color: #fff !important;
  font-weight: normal !important;
}

.module-66 .conditions-wind__map-img {
  max-height: 1024px;
  height: 100%;
}

.module-66 .map-container {
  position: relative;
  background-repeat: no-repeat;
  background-position: center;
}

.module-66 .map-container .object {
  width: 100%;
  height: 100%;
  position: absolute;
}

.module-66 .conditions-wind__stations {
  position: absolute;
  width: 100%;
  height: 100%;
}

.module-66 .north-compass-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 28px;
  gap: var(--gap);
}

.module-66 .north-compass-container object {
  width: 50px;
  height: 50px;
}

.module-66 .north-compass-container h3 {
  margin: 0;
}

.module-66 .conditions-wind__station {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-weight: bold;
  gap: 10px;
}

.module-66 .conditions-wind__station-speed {
  font-size: 20px;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
}

.module-66 .wt-main-content {
  max-width: 1024px;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}

.module-66 .wt-tabs {
  width: 100%;
  -ms-flex-item-align: center;
      align-self: center;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

.module-66 .wt-tabs__content-tab {
  font-size: 21px;
}

.module-66 .wt-tabs__header-tabs {
  display: grid;
  width: 100%;
  grid-template-columns: auto;
  font-size: 24px;
  margin-bottom: 20px;
  display: none;
}

.module-66 .wt-tabs__header-tabs .wt-tabs__header-tab {
  padding: 15px;
  color: var(--color-dark-blue);
  background-color: var(--color-muted);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: var(--gap);
  font-weight: bold;
  cursor: pointer;
}

.module-66.dark .wt-tabs__header-tabs .wt-tabs__header-tab {
  color: #4f708e;
  background-color: var(--color-dark-blue);
}

.module-66.dark .wt-tabs__header-tabs .wt-tabs__header-tab.active {
  background-color: var(--color-gold) !important;
}

.module-66 .wt-tabs__header-tab object {
  width: 40px;
}

.module-66 .wt-tabs__header-tab span {
  font-size: 28px;
}

.module-66 .wt-tabs__header-tabs .wt-tabs__header-tab:first-child {
  border-top-left-radius: var(--gap);
  border-bottom-left-radius: var(--gap);
  border-top-right-radius: var(--gap);
  border-bottom-right-radius: var(--gap);
}

.module-66 .wt-tabs__header-tabs .wt-tabs__header-tab:last-child {
  border-top-right-radius: var(--gap);
  border-bottom-right-radius: var(--gap);
}

.module-66 .wt-tabs__content h4 {
  margin-top: 0;
  font-family: "Gotham-Book", "Arial", sans-serif;
  font-size: 16px;
  color: #636870;
  margin-bottom: 10px;
}

.module-66 .legends ul {
  padding: 0;
  list-style: none;
}

.module-66 .legends ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: 18px;
}

.module-66 .legends ul li:before {
  content: " ";
  margin-right: 10px;
  height: 20px;
  width: 20px;
  display: inline-block;
  border-radius: 50%;
}

.module-66 div[data-tab="going"] .legends ul li:before {
  height: 21px;
  width: 36px;
  border-radius: 5px;
}

.module-66 .blue:before {
  background-color: var(--color-blue);
}

.module-66 .blue-green:before {
  background-color: #10b9c6;
}

.module-66 .violet:before {
  background-color: #a72be0;
}

.module-66 .orange:before {
  background-color: #ea4800;
}

.module-66 .green:before {
  background-color: #06c638;
}

.module-66 .yellow:before {
  background-color: var(--color-yellow);
}

.module-66 .red:before {
  background-color: var(--color-red);
}

@media (max-width: 1366px) {
  .module-66 .flex {
    padding: 50px 30px;
    height: auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module-66 .wt-tabs {
    margin-top: 0;
  }
}

@media (max-width: 1024px) {
  .module-66 .wt-main-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .module-66 .conditions-wind__station-speed {
    font-size: 18px;
  }
  .module-66 .arrow-up {
    height: 24px;
  }
}

@media (max-width: 768px) {
  .module-66 .container {
    max-width: 100%;
  }
  .module-66 .wt-tabs__header-tab span {
    font-size: 21px;
  }
  .module-66 .wt-tabs__header-tab object {
    width: 24px;
  }
  .module-66 .wt-tabs__content h4 {
    font-size: 18px;
  }
  .module-66 .wt-tabs__content-tab {
    font-size: 16px;
  }
  .module-66 .north-compass-container h3 {
    font-size: 24px;
  }
  .module-66 .north-compass-container object {
    width: 40px;
    height: 40px;
  }
  .module-66 .conditions-wind__station {
    /* gap: 0;
      flex-direction: column; */
  }
}

@media (max-width: 640px) {
  .module-66 .arrow-up {
    height: 18px;
  }
  .module-66 .conditions-wind__station-speed {
    font-size: 12px;
  }
  .module-66 .wt-tabs__header-tab span {
    font-size: 18px;
  }
  .module-66 .wt-tabs__header-tab object {
    width: 20px;
  }
  .module-66 .wt-tabs__content-tab {
    font-size: 12px;
  }
  .module-66 .legends ul li:before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .module-66 .arrow-up {
    height: 18px;
  }
  .module-66 .conditions-wind__station-speed {
    font-size: 12px;
  }
  .module-66 .wt-tabs__header-tab span {
    font-size: 18px;
  }
  .module-66 .wt-tabs__header-tab object {
    width: 20px;
  }
  .module-66 .wt-tabs__content-tab {
    font-size: 12px;
  }
  .module-66 .legends ul li:before {
    width: 20px;
    height: 20px;
  }
}

.module-66 .style-fab {
  position: absolute;
  bottom: 50px;
  right: 50px;
}

.module-66 .style-fab .fa {
  width: 18px;
  height: 18px;
  display: inline-block;
  background: no-repeat center center;
  background-size: 16px;
}

.module-66 .style-fab .fa-moon-o {
  background-image: url(../images/wind-tracker/moon-solid.svg);
}

.module-66 .style-fab .fa-sun-o {
  background-image: url(../images/wind-tracker/sun-solid.svg);
}

.module-66 .checkbox {
  opacity: 0;
  position: absolute;
}

.module-66 .checkbox-label {
  background-color: #111;
  width: 50px;
  height: 26px;
  border-radius: 50px;
  position: relative;
  padding: 5px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.module-66 .fa-moon-o {
  color: #f1c40f;
}

.module-66 .fa-sun-o {
  color: #f39c12;
}

.module-66 .checkbox-label .ball {
  background-color: #fff;
  width: 22px;
  height: 22px;
  position: absolute;
  left: 2px;
  top: 2px;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: -o-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear, -o-transform 0.2s linear;
}

.module-66 .checkbox:checked + .checkbox-label .ball {
  -webkit-transform: translateX(24px);
       -o-transform: translateX(24px);
          transform: translateX(24px);
}

.module-66--kensington .map-container {
  height: 667px;
}

.module-66--kensington .station1 {
  right: 16%;
  bottom: 4.5%;
}

.module-66--kensington .station2 {
  left: -3%;
  bottom: 35%;
}

.module-66--kensington .station3 {
  top: 3%;
  left: 16%;
}

.module-66--kensington .station4 {
  top: -1%;
  right: 3%;
}

.module-66--kensington .station5 {
  bottom: 45.5%;
  right: -2%;
}

@media (max-width: 1024px) {
  .module-66--kensington .map-container {
    height: 450px;
    width: 700px;
  }
  .module-66--kensington .station3 {
    top: 1%;
    left: 15%;
  }
  .module-66--kensington .station4 {
    right: 5.2%;
    top: -3%;
  }
  .module-66--kensington .station5 {
    right: -2%;
  }
}

@media (max-width: 768px) {
  .module-66--kensington .map-container {
    height: 380px;
    width: 600px;
  }
  .module-66--kensington .conditions-wind__station {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
  .module-66--kensington .station1 {
    right: 19%;
    bottom: 3%;
  }
  .module-66--kensington .station2 {
    bottom: 35%;
    left: 0.5%;
  }
  .module-66--kensington .station3 {
    top: -4.5%;
    left: 18%;
  }
  .module-66--kensington .station4 {
    right: 5.5%;
    top: -9%;
  }
  .module-66--kensington .station5 {
    bottom: 45%;
    right: 0;
  }
}

@media (max-width: 640px) {
  .module-66--kensington .arrow-up {
    display: block;
  }
  .module-66--kensington .map-container {
    height: 270px;
    width: 450px;
  }
  .module-66--kensington .station1 {
    right: 19%;
    bottom: 0.5%;
  }
  .module-66--kensington .station2 {
    bottom: 33%;
    left: -1%;
  }
  .module-66--kensington .station3 {
    top: -10.5%;
    left: 19%;
  }
  .module-66--kensington .station4 {
    right: 6%;
    top: -15.5%;
  }
  .module-66--kensington .station5 {
    right: 1%;
  }
}

@media (max-width: 480px) {
  .module-66--kensington .map-container {
    height: 200px;
    width: 290px;
  }
  .module-66--kensington .station1 {
    bottom: 7.5%;
    right: 14%;
  }
  .module-66--kensington .station2 {
    bottom: 36%;
    left: -5%;
  }
  .module-66--kensington .station3 {
    top: -10%;
    left: 15%;
  }
  .module-66--kensington .station4 {
    right: 0;
    top: -13%;
  }
  .module-66--kensington .station5 {
    bottom: 47%;
    right: -2%;
  }
}

.module-66--randwick .map-container {
  height: 667px;
}

.module-66--randwick .station1 {
  left: 67.5%;
  bottom: 0.5%;
}

.module-66--randwick .station2 {
  bottom: 31%;
  left: -1%;
}

.module-66--randwick .station3 {
  top: 7.5%;
  left: 18%;
}

.module-66--randwick .station4 {
  top: -5%;
  right: 30.9%;
}

.module-66--randwick .station5 {
  top: 3%;
  right: 5.5%;
}

.module-66--randwick .station6 {
  bottom: 41.5%;
  right: 0;
}

@media (max-width: 1024px) {
  .module-66--randwick .map-container {
    height: 450px;
    width: 700px;
  }
  .module-66--randwick .wt-main-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .module-66--randwick .conditions-wind__station-speed {
    font-size: 18px;
  }
  .module-66--randwick .arrow-up {
    height: 24px;
  }
  .module-66--randwick .station2 {
    bottom: 31%;
    left: -3%;
  }
  .module-66--randwick .station3 {
    top: 6.5%;
    left: 16%;
  }
  .module-66--randwick .station4 {
    top: -6%;
    right: 28%;
  }
  .module-66--randwick .station5 {
    right: 3%;
  }
  .module-66--randwick .station6 {
    right: -1%;
  }
}

@media (max-width: 768px) {
  .module-66--randwick .container {
    max-width: 100%;
  }
  .module-66--randwick .map-container {
    height: 320px;
    width: 480px;
  }
  .module-66--randwick .conditions-wind__station-speed {
    font-size: 16px;
  }
  .module-66--randwick .station1 {
    right: 9%;
    bottom: 1.5%;
  }
  .module-66--randwick .station2 {
    bottom: 31%;
    left: -8%;
  }
  .module-66--randwick .station3 {
    top: 6.5%;
    left: auto;
    right: 68%;
  }
  .module-66--randwick .station4 {
    right: 23%;
    top: -6.5%;
  }
  .module-66--randwick .station5 {
    top: 1%;
    right: -3%;
  }
  .module-66--randwick .station6 {
    right: -8%;
  }
  .module-66--randwick .wt-tabs__header-tab span {
    font-size: 21px;
  }
  .module-66--randwick .wt-tabs__header-tab object {
    width: 24px;
  }
  .module-66--randwick .wt-tabs__content h4 {
    font-size: 18px;
  }
  .module-66--randwick .wt-tabs__content-tab {
    font-size: 16px;
  }
  .module-66--randwick .north-compass-container h3 {
    font-size: 24px;
  }
  .module-66--randwick .north-compass-container object {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .module-66--randwick .conditions-wind__station {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module-66--randwick .arrow-up {
    height: 18px;
    display: block;
  }
  .module-66--randwick .conditions-wind__station-speed {
    font-size: 12px;
  }
  .module-66--randwick .station1 {
    bottom: 1.5%;
    right: 20%;
  }
  .module-66--randwick .station2 {
    bottom: 31%;
    left: 0;
  }
  .module-66--randwick .station3 {
    top: -1%;
    left: 18%;
    min-width: 70px;
  }
  .module-66--randwick .station4 {
    right: 32%;
    top: -13.5%;
  }
  .module-66--randwick .station5 {
    top: -5%;
    right: 6%;
  }
  .module-66--randwick .station6 {
    right: 0;
  }
  .module-66--randwick .wt-tabs__header-tab span {
    font-size: 18px;
  }
  .module-66--randwick .wt-tabs__header-tab object {
    width: 20px;
  }
  .module-66--randwick .wt-tabs__content h4 {
    font-size: 16px;
  }
  .module-66--randwick .wt-tabs__content-tab {
    font-size: 12px;
  }
  .module-66--randwick .legends ul li:before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .module-66--randwick .map-container {
    height: 230px;
    width: 340px;
  }
  .module-66--randwick .conditions-wind__station {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module-66--randwick .arrow-up {
    height: 18px;
  }
  .module-66--randwick .conditions-wind__station-speed {
    font-size: 12px;
  }
  .module-66--randwick .station1 {
    bottom: 2.5%;
    right: 14%;
  }
  .module-66--randwick .station2 {
    bottom: 31%;
    left: -2.5%;
  }
  .module-66--randwick .station3 {
    top: -6%;
    left: 14%;
    min-width: 70px;
  }
  .module-66--randwick .station4 {
    right: 27%;
    top: -17.5%;
  }
  .module-66--randwick .station5 {
    top: -9.5%;
    right: 4%;
  }
  .module-66--randwick .station6 {
    right: -3%;
  }
}

@media (max-width: 350px) {
  .module-66--randwick .map-container {
    height: 200px;
    width: 290px;
  }
  .module-66--randwick .conditions-wind__station {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module-66--randwick .arrow-up {
    height: 18px;
  }
  .module-66--randwick .conditions-wind__station-speed {
    font-size: 10px;
  }
  .module-66--randwick .station1 {
    bottom: 2.5%;
    right: 10%;
  }
  .module-66--randwick .station2 {
    bottom: 31%;
    left: -4%;
  }
  .module-66--randwick .station3 {
    top: -6%;
    left: 12%;
  }
  .module-66--randwick .station4 {
    right: 29%;
    top: -17.5%;
  }
  .module-66--randwick .station5 {
    top: -10%;
    right: 3%;
  }
  .module-66--randwick .station6 {
    right: -2%;
  }
}

.module-66--rosehill .map-container {
  height: 667px;
}

.module-66--rosehill .station1 {
  left: 48.3%;
  bottom: 1.5%;
}

.module-66--rosehill .station2 {
  left: -0.5%;
  top: 44%;
}

.module-66--rosehill .station3 {
  top: 11%;
  left: 5%;
}

.module-66--rosehill .station4 {
  top: 25%;
  right: 3%;
}

.module-66--rosehill .station5 {
  bottom: 33%;
  right: 0;
}

@media (max-width: 1024px) {
  .module-66--rosehill .map-container {
    height: 450px;
    width: 700px;
  }
  .module-66--rosehill .wt-main-content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .module-66--rosehill .conditions-wind__station-speed {
    font-size: 18px;
  }
  .module-66--rosehill .arrow-up {
    height: 24px;
  }
  .module-66--rosehill .station1 {
    bottom: 1%;
  }
  .module-66--rosehill .station2 {
    left: -1%;
  }
  .module-66--rosehill .station3 {
    top: 10%;
    left: 4.8%;
  }
  .module-66--rosehill .station4 {
    top: 24%;
  }
}

@media (max-width: 768px) {
  .module-66--rosehill .container {
    max-width: 100%;
  }
  .module-66--rosehill .map-container {
    height: 320px;
    width: 480px;
  }
  .module-66--rosehill .station1 {
    right: 27%;
    bottom: 3%;
  }
  .module-66--rosehill .station2 {
    left: -8.5%;
    top: 42%;
  }
  .module-66--rosehill .station3 {
    top: 9.5%;
    left: -2%;
  }
  .module-66--rosehill .station4 {
    right: -5.5%;
    top: 22.5%;
  }
  .module-66--rosehill .station5 {
    bottom: 34%;
    right: -8%;
  }
  .module-66--rosehill .wt-tabs__header-tab span {
    font-size: 21px;
  }
  .module-66--rosehill .wt-tabs__header-tab object {
    width: 24px;
  }
  .module-66--rosehill .wt-tabs__content h4 {
    font-size: 18px;
  }
  .module-66--rosehill .wt-tabs__content-tab {
    font-size: 16px;
  }
  .module-66--rosehill .north-compass-container h3 {
    font-size: 24px;
  }
  .module-66--rosehill .north-compass-container object {
    width: 40px;
    height: 40px;
  }
}

@media (max-width: 640px) {
  .module-66--rosehill .map-container {
    height: 260px;
    width: 400px;
  }
  .module-66--rosehill .conditions-wind__station {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module-66--rosehill .arrow-up {
    height: 18px;
    display: block;
  }
  .module-66--rosehill .conditions-wind__station-speed {
    font-size: 12px;
  }
  .module-66--rosehill .station1 {
    bottom: 1%;
    left: 49%;
    right: auto;
  }
  .module-66--rosehill .station2 {
    top: 34%;
    left: 4%;
  }
  .module-66--rosehill .station3 {
    top: 1%;
    left: 7%;
  }
  .module-66--rosehill .station4 {
    right: 6%;
    top: 14%;
  }
  .module-66--rosehill .station5 {
    right: 4%;
    bottom: 34%;
  }
  .module-66--rosehill .wt-tabs__header-tab span {
    font-size: 18px;
  }
  .module-66--rosehill .wt-tabs__header-tab object {
    width: 20px;
  }
  .module-66--rosehill .wt-tabs__content h4 {
    font-size: 16px;
  }
  .module-66--rosehill .wt-tabs__content-tab {
    font-size: 12px;
  }
  .module-66--rosehill .legends ul li:before {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 350px) {
  .module-66--rosehill .map-container {
    height: 200px;
    width: 290px;
  }
  .module-66--rosehill .conditions-wind__station {
    gap: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .module-66--rosehill .arrow-up {
    height: 18px;
    display: block;
  }
  .module-66--rosehill .conditions-wind__station-speed {
    font-size: 12px;
  }
  .module-66--rosehill .station1 {
    bottom: -15.5%;
    right: 32%;
  }
  .module-66--rosehill .station2 {
    top: 27%;
  }
  .module-66--rosehill .station3 {
    top: -4%;
    left: 9%;
  }
  .module-66--rosehill .station4 {
    right: 0;
    top: 10.5%;
  }
  .module-66--rosehill .station5 {
    right: -2%;
    bottom: 34%;
  }
}

@media (min-width: 768px) {
  .module-66 .north-compass-container h3 {
    font-size: 22px;
  }
}

.module-66__content {
  margin-bottom: 20px;
}

.module-66__content h3 {
  font-family: "Gotham-Book", "Arial", sans-serif;
  font-size: 16px;
  color: #636870;
}

.module-66__content h2 {
  font-size: 40px;
  margin-bottom: 0.5em;
}

@media (min-width: 768px) {
  .module-66__content {
    margin-bottom: 40px;
  }
}

@media (min-width: 992px) and (max-width: 1366px) {
  .module-66 .wt-tabs {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .module-66 .module-66__content {
    width: 50%;
    margin-bottom: 10px;
    /* margin-right: 60px;
    float :left; */
  }
  .module-66 .wt-tabs__content,
  .module-66 .north-compass-container {
    padding-left: 20px;
    margin-left: auto;
    margin-top: 20px;
  }
}

.modal-backdrop.show {
  opacity: 0.6;
}

.modal-backdrop {
  background: #00204e;
  opacity: 0.7;
}

#pg-pu .modal-dialog {
  margin: 20px;
}

@media (min-width: 576px) {
  #pg-pu .modal-dialog {
    max-width: 700px;
    margin: 40px auto 20px;
  }
}

@media (min-width: 1024px) {
  #pg-pu .modal-dialog {
    max-width: 1200px;
  }
}

#pg-pu .modal-content {
  background: #00204e;
  border: none;
  -webkit-box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
          box-shadow: 0 0 80px rgba(0, 0, 0, 0.5);
  padding: 20px;
}

@media (min-width: 576px) {
  #pg-pu .modal-content {
    padding: 50px 80px;
  }
}

#pg-pu .modal-content h1,
#pg-pu .modal-content h2,
#pg-pu .modal-content h3,
#pg-pu .modal-content h4,
#pg-pu .modal-content h5,
#pg-pu .modal-content h6 {
  margin-bottom: 10px;
  font-size: 30px;
}

@media (min-width: 576px) {
  #pg-pu .modal-content h1,
  #pg-pu .modal-content h2,
  #pg-pu .modal-content h3,
  #pg-pu .modal-content h4,
  #pg-pu .modal-content h5,
  #pg-pu .modal-content h6 {
    font-size: 40px;
  }
}

#pg-pu .modal-content p,
#pg-pu .modal-content li,
#pg-pu .modal-content h1,
#pg-pu .modal-content h2,
#pg-pu .modal-content h3,
#pg-pu .modal-content h4,
#pg-pu .modal-content h5,
#pg-pu .modal-content h6,
#pg-pu .modal-content a {
  color: #fff;
}

#pg-pu .modal-content .close {
  color: #fff;
  font-weight: normal;
  font-size: 40px;
  position: absolute;
  right: 2px;
  text-shadow: none;
  top: 2px;
}

@media (min-width: 576px) {
  #pg-pu .modal-content .close {
    font-size: 50px;
    right: 20px;
    top: 10px;
  }
}

#pg-pu .modal-content .btn, #pg-pu .modal-content .comment-form input[type="submit"], .comment-form #pg-pu .modal-content input[type="submit"], #pg-pu .modal-content .search-form .search-submit, .search-form #pg-pu .modal-content .search-submit {
  background-color: white;
  border: 1px solid white;
  color: #00204e;
  border-radius: 0.3rem;
}

#pg-pu .modal-content .btn:hover, #pg-pu .modal-content .comment-form input:hover[type="submit"], .comment-form #pg-pu .modal-content input:hover[type="submit"], #pg-pu .modal-content .search-form .search-submit:hover, .search-form #pg-pu .modal-content .search-submit:hover {
  color: white;
  border: 1px solid #a08032;
  background-color: transparent;
}

.pg-pu__image {
  display: block;
  margin-bottom: 20px;
}

.module-70 {
  padding: 45px 0px;
  position: relative;
}

@media (min-width: 768px) {
  .module-70 {
    padding: 45px 20px;
  }
}

@media (min-width: 1024px) {
  .module-70 {
    padding: 90px;
  }
}

.module-70__bg-color {
  height: 60%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}

.module-70__heading,
.module-70__content-carousel,
.module-70__footer {
  position: relative;
}

.module-70__heading {
  margin-bottom: 25px;
  text-align: center;
  padding-left: 20px;
  padding-right: 20px;
}

.module-70__heading h1 {
  font-size: 40px;
}

.module-70__heading h2 {
  font-size: 36px;
}

.module-70__heading h3 {
  font-size: 32px;
}

.module-70__heading h4 {
  font-size: 28px;
}

.module-70__heading h5 {
  font-size: 26px;
}

.module-70__heading h6 {
  font-size: 22px;
}

@media (min-width: 768px) {
  .module-70__heading {
    padding-left: 0;
    padding-right: 0;
  }
}

.module-70__footer {
  text-align: center;
}

.module-70__content-carousel-container {
  position: relative;
}

.module-70__content-single {
  -webkit-box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
          box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.1);
  margin: 0 10px 40px;
}

.module-70__link {
  display: block;
}

.module-70__content-carousel-img {
  display: block;
  width: 100%;
}

.module-70__content-body {
  background-color: #fff;
  padding: 22px 18px;
}

.module-70__content-body h3 {
  font-size: 24px;
  margin-bottom: 6px;
}

.module-70__content-body p {
  font-size: 14px;
  margin-bottom: 22px;
}

.module-70__nav {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #00204e;
  -webkit-box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
          box-shadow: 0 2px 4px 0 rgba(0, 0, 0, 0.13);
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  height: 50px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  padding: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 50px;
  z-index: 2;
}

.module-70__content-carousel__prev {
  left: 0;
}

@media (min-width: 1024px) {
  .module-70__content-carousel__prev {
    left: -10px;
  }
}

.module-70__content-carousel__prev img {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.module-70__content-carousel__next {
  right: 0;
}

@media (min-width: 1024px) {
  .module-70__content-carousel__next {
    right: -10px;
  }
}

.module-72-gallery {
  padding-left: 5px;
  padding-right: 5px;
}

.module-72-gallery .module-60-grid__main-title {
  margin-top: 1.5rem;
}

.module-72-gallery .module-60-grid__main-title h2 {
  font-size: 40px;
}

.module-72-gallery .module-60-grid__main-title > *:last-child {
  margin-bottom: 0;
}

.module-72-gallery__gallery .container {
  padding-left: 5px;
  padding-right: 5px;
}

.module-72-gallery__gallery .container .row {
  margin-left: -5px;
  margin-right: -5px;
}

.module-72-gallery__gallery a {
  display: block;
  margin-bottom: 10px;
  position: relative;
  background-color: #00204e;
}

.module-72-gallery__gallery a:hover .module-72-gallery__gallery-image {
  opacity: 0.6;
}

.module-72-gallery__gallery-image {
  background: no-repeat center center;
  background-size: cover;
  padding-bottom: 65%;
  -webkit-transition: opacity .3s ease;
  -o-transition: opacity .3s ease;
  transition: opacity .3s ease;
}

.module-72-gallery__gallery--portrait .module-72-gallery__gallery-image {
  padding-bottom: 120%;
}

.slbElement {
  position: relative;
  z-index: 999999;
}

.slbElement .slbCaption {
  color: #fff;
}

.slbElement .slbOverlay {
  background: #00204e;
}

.module-72-grid__cols {
  padding-left: 5px;
  padding-right: 5px;
}

/*
 * New Page Modules
 */
.news-module-01__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-module-01__arrows > div {
  cursor: pointer;
  margin: 0 15px;
  text-align: center;
}

@media (min-width: 768px) {
  .news-module-01__arrows > div {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
  }
}

.news-module-01__arrows > div:hover i {
  color: #a08032;
}

.news-module-01__arrows img {
  max-width: 30px;
}

.news-module-01__arrows i {
  color: #00204e;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-module-01__prev img {
  -webkit-transform: rotate(180deg);
       -o-transform: rotate(180deg);
          transform: rotate(180deg);
}

.news-module-01 {
  padding: 20px 0;
  margin-bottom: -1px;
  border-bottom: 1px solid #e3e3e3;
}

@media (min-width: 768px) {
  .news-module-01 {
    padding: 40px 0;
  }
}

.news-module-01 .single-news__card {
  padding-left: 5px;
  padding-right: 5px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: -o-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -o-transform 0.2s ease;
}

.news-module-01 .single-news__card:hover {
  -webkit-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (min-width: 576px) {
  .news-module-01 .single-news__card {
    padding-left: 10px;
    padding-right: 10px;
  }
}

.news-module-01 .news-module-01__heading {
  padding-left: 25px;
  padding-right: 25px;
}

@media (min-width: 576px) {
  .news-module-01 .news-module-01__heading {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 768px) {
  .news-module-01 .news-module-01__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1200px) {
  .news-module-01 .news-module-01__heading {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.news-module-01 .new-module-01__cat-link {
  margin-bottom: 10px;
  color: #636870;
  text-transform: uppercase;
  font-size: 80%;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.news-module-01 .new-module-01__cat-link:hover {
  color: #00204e;
}

@media (min-width: 768px) {
  .news-module-01 .new-module-01__cat-link {
    margin-bottom: 0;
    margin-left: 30px;
    padding-left: 15px;
    margin-top: 4px;
    border-left: 1px solid #636870;
  }
}

.news-module-01 h2 {
  font-size: 3rem;
}

@media (min-width: 768px) {
  .news-module-01 h2 {
    font-size: 4rem;
  }
}

.news-module-01 h2 a {
  color: #00204e;
}

.news-module-01 h4 {
  margin-bottom: 10px;
}

.news-module-01 h4 a {
  color: #00204e;
}

.news-module-01 h4 a:hover {
  text-decoration: underline;
}

.news-module-01 time {
  display: block;
  text-transform: uppercase;
  font-size: 85%;
}

.news-module-01 .single-news__image {
  margin-bottom: 15px;
  min-height: 0;
}

.news-module-02 {
  padding: 20px;
  margin-bottom: -1px;
  border-bottom: 1px solid #e3e3e3;
  border-top: 1px solid #e3e3e3;
}

@media (min-width: 768px) {
  .news-module-02 {
    padding: 40px;
  }
}

.news-module-02 h2 {
  font-size: 3rem;
  margin-bottom: 15px;
}

@media (min-width: 768px) {
  .news-module-02 h2 {
    font-size: 5rem;
  }
}

.news-module-02__article {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  -webkit-transition: background .2s ease;
  -o-transition: background .2s ease;
  transition: background .2s ease;
}

.news-module-02__article time {
  display: block;
  text-transform: uppercase;
  font-size: 85%;
}

.news-module-02__article h4 {
  margin-bottom: 10px;
}

.news-module-02__article h4 a {
  color: #00204e;
}

.news-module-02__article h4 a:hover {
  text-decoration: underline;
}

.news-module-02__image {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 25%;
          flex: 0 0 25%;
  max-width: 400px;
  margin-right: 20px;
  overflow: hidden;
}

.news-module-02__image img {
  display: block;
  -webkit-transition: -webkit-transform .2s ease;
  transition: -webkit-transform .2s ease;
  -o-transition: -o-transform .2s ease;
  transition: transform .2s ease;
  transition: transform .2s ease, -webkit-transform .2s ease, -o-transform .2s ease;
}

.news-module-02__image:hover img {
  -webkit-transform: scale(1.1);
       -o-transform: scale(1.1);
          transform: scale(1.1);
}

.news-module-02__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.news-module-02__content > * {
  max-width: 800px;
}

@media (min-width: 768px) {
  .news-module-02__container--2-col {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    gap: 20px;
  }
  .news-module-02__container--2-col > article {
    width: calc(50% - 10px);
  }
  .news-module-02__container--2-col > article p {
    display: none;
  }
}

.news-module-02__link {
  color: #636870;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
  text-decoration: underline;
}

.news-module-02__link:hover {
  color: #00204e;
  text-decoration: underline;
}

.news-module-02__container:not(.news-module-02__container--2-col) .news-module-02__article {
  padding-bottom: 20px;
  border-bottom: 1px solid #e3e3e3;
  /* &:nth-child(even){
      @include media-breakpoint-up(md) {
        .news-module-02__image{
          order: 2;
          margin-right: 0;
          margin-left: 50px;
        }
        .news-module-02__content{
          order: 1;
          >*{
            margin-left: auto;
          }
        }
      }
    } */
}

.news-module-02__container:not(.news-module-02__container--2-col) .news-module-02__article:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .news-module-02__container:not(.news-module-02__container--2-col) .news-module-02__article h4 {
    font-size: 3.6rem;
  }
}

@media (min-width: 768px) {
  .news-module-02__container:not(.news-module-02__container--2-col) .news-module-02__image {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 35%;
            flex: 0 0 35%;
    max-width: 100%;
    margin-right: 50px;
  }
}

.news-load-more {
  display: block;
  margin: 30px auto 0;
}

.news-module-03__arrows {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.news-module-03__arrows > div {
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  width: 30px;
  height: 40px;
  line-height: 40px;
  background-color: #fff;
  color: #00204e;
}

@media (min-width: 768px) {
  .news-module-03__arrows > div {
    position: absolute;
    top: 30%;
  }
}

.news-module-03__arrows > div:hover i {
  color: #a08032;
}

@media (min-width: 768px) {
  .news-module-03__arrows > div {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 30px;
  }
}

.news-module-03__arrows i {
  color: #00204e;
  -webkit-transition: color 0.3s ease;
  -o-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.news-module-03__next {
  right: 0;
}

.news-module-03__prev {
  left: 0;
}

.news-module-03 {
  padding: 20px 0;
  position: relative;
}

@media (min-width: 768px) {
  .news-module-03 {
    padding: 40px 0px;
  }
}

@media (min-width: 1024px) {
  .news-module-03 {
    padding: 40px;
  }
}

.news-module-03 .single-news__card {
  padding-left: 10px;
  padding-right: 10px;
  -webkit-transition: -webkit-transform 0.2s ease;
  transition: -webkit-transform 0.2s ease;
  -o-transition: -o-transform 0.2s ease;
  transition: transform 0.2s ease;
  transition: transform 0.2s ease, -webkit-transform 0.2s ease, -o-transform 0.2s ease;
}

.news-module-03 .single-news__card:hover {
  -webkit-transform: translateY(-5px);
       -o-transform: translateY(-5px);
          transform: translateY(-5px);
}

@media (min-width: 576px) {
  .news-module-03 .single-news__card {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.news-module-03 .news-module-03__heading {
  padding-left: 25px;
  padding-right: 25px;
}

@media (min-width: 576px) {
  .news-module-03 .news-module-03__heading {
    padding-left: 50px;
    padding-right: 50px;
  }
}

@media (min-width: 768px) {
  .news-module-03 .news-module-03__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1200px) {
  .news-module-03 .news-module-03__heading {
    padding-left: 30px;
    padding-right: 30px;
  }
}

.news-module-03 h4 {
  margin-bottom: 10px;
}

.news-module-03 h4 a {
  color: #00204e;
}

.news-module-03 h4 a:hover {
  text-decoration: underline;
}

.news-module-03 time {
  display: block;
  text-transform: uppercase;
  font-size: 85%;
}

.news-module-03 .single-news__image {
  margin-bottom: 15px;
  min-height: 0;
}

.news-module-03__content h4 {
  font-size: 3rem;
}

@media (min-width: 1200px) {
  .news-module-03__content h4 {
    font-size: 4rem;
  }
}

@media (min-width: 768px) {
  .news-module-03__content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 20px;
  }
  .news-module-03__content h4 {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .news-module-03__content p {
    max-width: 40%;
  }
}

.news-module-03__main-heading {
  padding: 0 30px;
}

.news-module-03__main-heading h1,
.news-module-03__main-heading h2,
.news-module-03__main-heading h3,
.news-module-03__main-heading h4,
.news-module-03__main-heading h5,
.news-module-03__main-heading h6 {
  font-family: "raisonne-light-pro", sans-serif;
  line-height: 1.2;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  color: #00204e;
}

.news-module-03__main-heading h2 {
  font-size: 5rem;
}

.news-module-03__main-heading h3 {
  font-size: 4.2rem;
}

.news-module-03__main-heading h4 {
  font-size: 3.8rem;
}

.news-module-03__main-heading h5 {
  font-size: 3.2rem;
}

.news-module-03__main-heading h6 {
  font-size: 2.8rem;
}

@media (min-width: 768px) {
  .news-module-03__main-heading h2 {
    font-size: 5rem;
  }
  .news-module-03__main-heading h3 {
    font-size: 4.2rem;
  }
  .news-module-03__main-heading h4 {
    font-size: 3.8rem;
  }
  .news-module-03__main-heading h5 {
    font-size: 3.2rem;
  }
  .news-module-03__main-heading h6 {
    font-size: 2.8rem;
  }
}

.news-module-03-slider-container {
  position: relative;
}

/*
 * WooCommerce
 */
/**
 * woocommerce.scss
 * Governs the general look and feel of WooCommerce sections of stores using themes that do not
 * integrate with WooCommerce specifically.
 */
/**
 * Imports
 */
/**
 * Deprecated
 * Fallback for bourbon equivalent
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Vendor prefix no longer required.
 */
/**
 * Deprecated
 * Use bourbon mixin instead `@include transform(scale(1.5));`
 */
/**
 * Deprecated
 * Use bourbon mixin instead `@include box-sizing(border-box);`
 */
/**
 * Objects
 */
/**
 * WooCommerce CSS Variables
 */
:root {
  --woocommerce: #00204e;
  --wc-green: #28a745;
  --wc-red: #dc3545;
  --wc-orange: #fd7e14;
  --wc-blue: #007bff;
  --wc-primary: #007bff;
  --wc-primary-text: white;
  --wc-secondary: #6c757d;
  --wc-secondary-text: black;
  --wc-highlight: #ff0500;
  --wc-highligh-text: white;
  --wc-content-bg: #fff;
  --wc-subtext: #767676;
}

/**
 * _animation.scss
 * Custom WooCommerce Animations.
 */
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-o-keyframes spin {
  100% {
    -o-transform: rotate(360deg);
       transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
         -o-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/**
 * _fonts.scss
 * Custom WooCommerce fonts.
 */
@font-face {
  font-family: 'star';
  src: url("../fonts/star.eot");
  src: url("../fonts/star.eot?#iefix") format("embedded-opentype"), url("../fonts/star.woff") format("woff"), url("../fonts/star.ttf") format("truetype"), url("../fonts/star.svg#star") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'WooCommerce';
  src: url("../fonts/WooCommerce.eot");
  src: url("../fonts/WooCommerce.eot?#iefix") format("embedded-opentype"), url("../fonts/WooCommerce.woff") format("woff"), url("../fonts/WooCommerce.ttf") format("truetype"), url("../fonts/WooCommerce.svg#WooCommerce") format("svg");
  font-weight: normal;
  font-style: normal;
}

/**
 * Styling begins
 */
.woocommerce #document img,
.woocommerce-page #document img {
  height: auto;
  max-width: 100%;
}

.woocommerce,
.woocommerce-page {
  /**
    * General layout styles
    */
  /**
    * Product page
    */
  /**
    * Product loops
    */
  /**
    * Cart page
    */
  /**
    * Cart sidebar
    */
  /**
    * Forms
    */
  /**
    * oEmbeds
    */
}

.woocommerce .woocommerce-message .button,
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-info .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-info .button {
  float: right;
}

.woocommerce #order_review_heading,
.woocommerce-page #order_review_heading {
  margin-bottom: 10px;
}

@media (min-width: 576px) {
  .woocommerce #order_review_heading,
  .woocommerce #order_review,
  .woocommerce-page #order_review_heading,
  .woocommerce-page #order_review {
    width: 50%;
    float: right;
    padding-left: 30px;
  }
}

.woocommerce .col2-set,
.woocommerce-page .col2-set {
  *zoom: 1;
  /* width: 100%; */
}

.woocommerce .col2-set::before, .woocommerce .col2-set::after,
.woocommerce-page .col2-set::before,
.woocommerce-page .col2-set::after {
  content: " ";
  display: table;
}

.woocommerce .col2-set::after,
.woocommerce-page .col2-set::after {
  clear: both;
}

@media (min-width: 576px) {
  .woocommerce .col2-set,
  .woocommerce-page .col2-set {
    float: left;
    width: 50%;
  }
}

.woocommerce .col2-set .col-1,
.woocommerce-page .col2-set .col-1 {
  /* float: left;
      width: 48%; */
  max-width: 100%;
}

.woocommerce .col2-set .col-2,
.woocommerce-page .col2-set .col-2 {
  /* float: right;
      width: 48%; */
  max-width: 100%;
  width: 100%;
}

.woocommerce div.product div.images,
.woocommerce #content div.product div.images,
.woocommerce-page div.product div.images,
.woocommerce-page #content div.product div.images {
  float: left;
  width: 48%;
}

.woocommerce div.product div.thumbnails,
.woocommerce #content div.product div.thumbnails,
.woocommerce-page div.product div.thumbnails,
.woocommerce-page #content div.product div.thumbnails {
  *zoom: 1;
}

.woocommerce div.product div.thumbnails::before, .woocommerce div.product div.thumbnails::after,
.woocommerce #content div.product div.thumbnails::before,
.woocommerce #content div.product div.thumbnails::after,
.woocommerce-page div.product div.thumbnails::before,
.woocommerce-page div.product div.thumbnails::after,
.woocommerce-page #content div.product div.thumbnails::before,
.woocommerce-page #content div.product div.thumbnails::after {
  content: " ";
  display: table;
}

.woocommerce div.product div.thumbnails::after,
.woocommerce #content div.product div.thumbnails::after,
.woocommerce-page div.product div.thumbnails::after,
.woocommerce-page #content div.product div.thumbnails::after {
  clear: both;
}

.woocommerce div.product div.thumbnails a,
.woocommerce #content div.product div.thumbnails a,
.woocommerce-page div.product div.thumbnails a,
.woocommerce-page #content div.product div.thumbnails a {
  float: left;
  width: 30.75%;
  margin-right: 3.8%;
  margin-bottom: 1em;
}

.woocommerce div.product div.thumbnails a.last,
.woocommerce #content div.product div.thumbnails a.last,
.woocommerce-page div.product div.thumbnails a.last,
.woocommerce-page #content div.product div.thumbnails a.last {
  margin-right: 0;
}

.woocommerce div.product div.thumbnails a.first,
.woocommerce #content div.product div.thumbnails a.first,
.woocommerce-page div.product div.thumbnails a.first,
.woocommerce-page #content div.product div.thumbnails a.first {
  clear: both;
}

.woocommerce div.product div.thumbnails.columns-1 a,
.woocommerce #content div.product div.thumbnails.columns-1 a,
.woocommerce-page div.product div.thumbnails.columns-1 a,
.woocommerce-page #content div.product div.thumbnails.columns-1 a {
  width: 100%;
  margin-right: 0;
  float: none;
}

.woocommerce div.product div.thumbnails.columns-2 a,
.woocommerce #content div.product div.thumbnails.columns-2 a,
.woocommerce-page div.product div.thumbnails.columns-2 a,
.woocommerce-page #content div.product div.thumbnails.columns-2 a {
  width: 48%;
}

.woocommerce div.product div.thumbnails.columns-4 a,
.woocommerce #content div.product div.thumbnails.columns-4 a,
.woocommerce-page div.product div.thumbnails.columns-4 a,
.woocommerce-page #content div.product div.thumbnails.columns-4 a {
  width: 22.05%;
}

.woocommerce div.product div.thumbnails.columns-5 a,
.woocommerce #content div.product div.thumbnails.columns-5 a,
.woocommerce-page div.product div.thumbnails.columns-5 a,
.woocommerce-page #content div.product div.thumbnails.columns-5 a {
  width: 16.9%;
}

.woocommerce div.product div.summary,
.woocommerce #content div.product div.summary,
.woocommerce-page div.product div.summary,
.woocommerce-page #content div.product div.summary {
  float: right;
  width: 48%;
  clear: none;
}

.woocommerce div.product .woocommerce-tabs,
.woocommerce #content div.product .woocommerce-tabs,
.woocommerce-page div.product .woocommerce-tabs,
.woocommerce-page #content div.product .woocommerce-tabs {
  clear: both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs,
.woocommerce #content div.product .woocommerce-tabs ul.tabs,
.woocommerce-page div.product .woocommerce-tabs ul.tabs,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs {
  *zoom: 1;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before, .woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs::before,
.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::before,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after {
  content: " ";
  display: table;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::after,
.woocommerce #content div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page div.product .woocommerce-tabs ul.tabs::after,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs::after {
  clear: both;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li,
.woocommerce #content div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page div.product .woocommerce-tabs ul.tabs li,
.woocommerce-page #content div.product .woocommerce-tabs ul.tabs li {
  display: inline-block;
}

.woocommerce div.product #reviews .comment,
.woocommerce #content div.product #reviews .comment,
.woocommerce-page div.product #reviews .comment,
.woocommerce-page #content div.product #reviews .comment {
  *zoom: 1;
}

.woocommerce div.product #reviews .comment::before, .woocommerce div.product #reviews .comment::after,
.woocommerce #content div.product #reviews .comment::before,
.woocommerce #content div.product #reviews .comment::after,
.woocommerce-page div.product #reviews .comment::before,
.woocommerce-page div.product #reviews .comment::after,
.woocommerce-page #content div.product #reviews .comment::before,
.woocommerce-page #content div.product #reviews .comment::after {
  content: " ";
  display: table;
}

.woocommerce div.product #reviews .comment::after,
.woocommerce #content div.product #reviews .comment::after,
.woocommerce-page div.product #reviews .comment::after,
.woocommerce-page #content div.product #reviews .comment::after {
  clear: both;
}

.woocommerce div.product #reviews .comment img,
.woocommerce #content div.product #reviews .comment img,
.woocommerce-page div.product #reviews .comment img,
.woocommerce-page #content div.product #reviews .comment img {
  float: right;
  height: auto;
}

.woocommerce ul.products,
.woocommerce-page ul.products {
  clear: both;
  *zoom: 1;
}

.woocommerce ul.products::before, .woocommerce ul.products::after,
.woocommerce-page ul.products::before,
.woocommerce-page ul.products::after {
  content: " ";
  display: table;
}

.woocommerce ul.products::after,
.woocommerce-page ul.products::after {
  clear: both;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  float: left;
  margin: 0 3.8% 2.992em 0;
  padding: 0;
  position: relative;
  width: 22.05%;
  margin-left: 0;
}

.woocommerce ul.products li.first,
.woocommerce-page ul.products li.first {
  clear: both;
}

.woocommerce ul.products li.last,
.woocommerce-page ul.products li.last {
  margin-right: 0;
}

.woocommerce ul.products.columns-1 li.product,
.woocommerce-page ul.products.columns-1 li.product {
  width: 100%;
  margin-right: 0;
}

.woocommerce ul.products.columns-2 li.product,
.woocommerce-page ul.products.columns-2 li.product {
  width: 48%;
}

.woocommerce ul.products.columns-3 li.product,
.woocommerce-page ul.products.columns-3 li.product {
  width: 30.75%;
}

.woocommerce ul.products.columns-5 li.product,
.woocommerce-page ul.products.columns-5 li.product {
  width: 16.95%;
}

.woocommerce ul.products.columns-6 li.product,
.woocommerce-page ul.products.columns-6 li.product {
  width: 13.5%;
}

.woocommerce.columns-1 ul.products li.product,
.woocommerce-page.columns-1 ul.products li.product {
  width: 100%;
  margin-right: 0;
}

.woocommerce.columns-2 ul.products li.product,
.woocommerce-page.columns-2 ul.products li.product {
  width: 48%;
}

.woocommerce.columns-3 ul.products li.product,
.woocommerce-page.columns-3 ul.products li.product {
  width: 30.75%;
}

.woocommerce.columns-5 ul.products li.product,
.woocommerce-page.columns-5 ul.products li.product {
  width: 16.95%;
}

.woocommerce.columns-6 ul.products li.product,
.woocommerce-page.columns-6 ul.products li.product {
  width: 13.5%;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
  float: left;
}

.woocommerce .woocommerce-ordering,
.woocommerce-page .woocommerce-ordering {
  float: right;
}

.woocommerce .woocommerce-pagination ul.page-numbers,
.woocommerce-page .woocommerce-pagination ul.page-numbers {
  *zoom: 1;
}

.woocommerce .woocommerce-pagination ul.page-numbers::before, .woocommerce .woocommerce-pagination ul.page-numbers::after,
.woocommerce-page .woocommerce-pagination ul.page-numbers::before,
.woocommerce-page .woocommerce-pagination ul.page-numbers::after {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-pagination ul.page-numbers::after,
.woocommerce-page .woocommerce-pagination ul.page-numbers::after {
  clear: both;
}

.woocommerce .woocommerce-pagination ul.page-numbers li,
.woocommerce-page .woocommerce-pagination ul.page-numbers li {
  display: inline-block;
}

.woocommerce table.cart img,
.woocommerce #content table.cart img,
.woocommerce-page table.cart img,
.woocommerce-page #content table.cart img {
  height: auto;
}

.woocommerce table.cart td.actions,
.woocommerce #content table.cart td.actions,
.woocommerce-page table.cart td.actions,
.woocommerce-page #content table.cart td.actions {
  text-align: right;
}

.woocommerce table.cart td.actions .input-text,
.woocommerce #content table.cart td.actions .input-text,
.woocommerce-page table.cart td.actions .input-text,
.woocommerce-page #content table.cart td.actions .input-text {
  width: 80px;
}

.woocommerce table.cart td.actions .coupon,
.woocommerce #content table.cart td.actions .coupon,
.woocommerce-page table.cart td.actions .coupon,
.woocommerce-page #content table.cart td.actions .coupon {
  float: left;
}

.woocommerce table.cart td.actions .coupon label,
.woocommerce #content table.cart td.actions .coupon label,
.woocommerce-page table.cart td.actions .coupon label,
.woocommerce-page #content table.cart td.actions .coupon label {
  display: none;
}

.woocommerce .showcoupon,
.woocommerce-page .showcoupon {
  color: #a08032;
}

.woocommerce .checkout_coupon.woocommerce-form-coupon input,
.woocommerce-page .checkout_coupon.woocommerce-form-coupon input {
  padding: 1.5rem 1rem;
}

.woocommerce .cart-collaterals,
.woocommerce-page .cart-collaterals {
  *zoom: 1;
  width: 100%;
}

.woocommerce .cart-collaterals::before, .woocommerce .cart-collaterals::after,
.woocommerce-page .cart-collaterals::before,
.woocommerce-page .cart-collaterals::after {
  content: " ";
  display: table;
}

.woocommerce .cart-collaterals::after,
.woocommerce-page .cart-collaterals::after {
  clear: both;
}

.woocommerce .cart-collaterals .related,
.woocommerce-page .cart-collaterals .related {
  width: 30.75%;
  float: left;
}

.woocommerce .cart-collaterals .cross-sells,
.woocommerce-page .cart-collaterals .cross-sells {
  width: 48%;
  float: left;
}

.woocommerce .cart-collaterals .cross-sells ul.products,
.woocommerce-page .cart-collaterals .cross-sells ul.products {
  float: none;
}

.woocommerce .cart-collaterals .cross-sells ul.products li,
.woocommerce-page .cart-collaterals .cross-sells ul.products li {
  width: 48%;
}

.woocommerce .cart-collaterals .shipping_calculator,
.woocommerce-page .cart-collaterals .shipping_calculator {
  width: 48%;
  *zoom: 1;
  clear: right;
  float: right;
}

.woocommerce .cart-collaterals .shipping_calculator::before, .woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce-page .cart-collaterals .shipping_calculator::before,
.woocommerce-page .cart-collaterals .shipping_calculator::after {
  content: " ";
  display: table;
}

.woocommerce .cart-collaterals .shipping_calculator::after,
.woocommerce-page .cart-collaterals .shipping_calculator::after {
  clear: both;
}

.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-1,
.woocommerce .cart-collaterals .shipping_calculator .col2-set .col-2,
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-1,
.woocommerce-page .cart-collaterals .shipping_calculator .col2-set .col-2 {
  width: 47%;
}

.woocommerce .cart-collaterals .cart_totals,
.woocommerce-page .cart-collaterals .cart_totals {
  float: right;
  width: 48%;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li,
.woocommerce-page ul.cart_list li,
.woocommerce-page ul.product_list_widget li {
  *zoom: 1;
}

.woocommerce ul.cart_list li::before, .woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::before,
.woocommerce ul.product_list_widget li::after,
.woocommerce-page ul.cart_list li::before,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.product_list_widget li::before,
.woocommerce-page ul.product_list_widget li::after {
  content: " ";
  display: table;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after,
.woocommerce-page ul.cart_list li::after,
.woocommerce-page ul.product_list_widget li::after {
  clear: both;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img,
.woocommerce-page ul.cart_list li img,
.woocommerce-page ul.product_list_widget li img {
  float: right;
  height: auto;
}

.woocommerce form .form-row,
.woocommerce-page form .form-row {
  *zoom: 1;
}

.woocommerce form .form-row::before, .woocommerce form .form-row::after,
.woocommerce-page form .form-row::before,
.woocommerce-page form .form-row::after {
  content: " ";
  display: table;
}

.woocommerce form .form-row::after,
.woocommerce-page form .form-row::after {
  clear: both;
}

.woocommerce form .form-row label,
.woocommerce-page form .form-row label {
  display: block;
}

.woocommerce form .form-row label.checkbox,
.woocommerce-page form .form-row label.checkbox {
  display: inline;
}

.woocommerce form .form-row select,
.woocommerce-page form .form-row select {
  width: 100%;
}

.woocommerce form .form-row .input-text,
.woocommerce-page form .form-row .input-text {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.woocommerce form .form-row-first,
.woocommerce form .form-row-last,
.woocommerce-page form .form-row-first,
.woocommerce-page form .form-row-last {
  width: 47%;
  overflow: visible;
}

.woocommerce form .form-row-first,
.woocommerce-page form .form-row-first {
  float: left;
  /*rtl:raw:
       float: right;
       */
}

.woocommerce form .form-row-last,
.woocommerce-page form .form-row-last {
  float: right;
}

.woocommerce form .form-row-wide,
.woocommerce-page form .form-row-wide {
  clear: both;
}

.woocommerce form .password-input,
.woocommerce-page form .password-input {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  /* Hide the Edge "reveal password" native button */
}

.woocommerce form .password-input input[type="password"],
.woocommerce-page form .password-input input[type="password"] {
  padding-right: 2.5rem;
}

.woocommerce form .password-input input::-ms-reveal,
.woocommerce-page form .password-input input::-ms-reveal {
  display: none;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
  position: absolute;
  right: 0.7em;
  top: 0.7em;
  cursor: pointer;
}

.woocommerce form .show-password-input::after,
.woocommerce-page form .show-password-input::after {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: 0.618em;
  content: "\E010";
  text-decoration: none;
}

.woocommerce form .show-password-input.display-password::after,
.woocommerce-page form .show-password-input.display-password::after {
  color: #585858;
}

.woocommerce #payment .form-row select,
.woocommerce-page #payment .form-row select {
  width: auto;
}

.woocommerce #payment .wc-terms-and-conditions,
.woocommerce #payment .terms,
.woocommerce-page #payment .wc-terms-and-conditions,
.woocommerce-page #payment .terms {
  text-align: left;
  padding: 0 1em 0 0;
  float: left;
}

.woocommerce #payment #place_order,
.woocommerce-page #payment #place_order {
  float: right;
}

.woocommerce .woocommerce-billing-fields,
.woocommerce .woocommerce-shipping-fields,
.woocommerce-page .woocommerce-billing-fields,
.woocommerce-page .woocommerce-shipping-fields {
  *zoom: 1;
}

.woocommerce .woocommerce-billing-fields::before, .woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-shipping-fields::before,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-billing-fields::before,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-shipping-fields::before,
.woocommerce-page .woocommerce-shipping-fields::after {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-billing-fields::after,
.woocommerce .woocommerce-shipping-fields::after,
.woocommerce-page .woocommerce-billing-fields::after,
.woocommerce-page .woocommerce-shipping-fields::after {
  clear: both;
}

.woocommerce .woocommerce-terms-and-conditions,
.woocommerce-page .woocommerce-terms-and-conditions {
  margin-bottom: 1.618em;
  padding: 1.618em;
}

.woocommerce .woocommerce-oembed,
.woocommerce-page .woocommerce-oembed {
  position: relative;
}

.woocommerce-account .woocommerce-MyAccount-navigation {
  float: left;
  width: 30%;
}

.woocommerce-account .woocommerce-MyAccount-content {
  float: right;
  width: 68%;
}

/**
  * RTL styles.
  */
.rtl .woocommerce .col2-set .col-1,
.rtl .woocommerce-page .col2-set .col-1 {
  float: right;
}

.rtl .woocommerce .col2-set .col-2,
.rtl .woocommerce-page .col2-set .col-2 {
  float: left;
}

/* 
.atc_form ul li input {
  margin-left: 10px;
  margin-right: 10px;
}

.atc_form ul li h2 {
  display: inline;
  margin-left: 20px !important;
}

.atc_form ul li .price {
  display: inline !important;
  float: right;
  margin-right: 20px;
  margin-top: 20px;
}

.atc_form ul li .atc_select {
  margin-left: 10px;
  margin-right: 10px;
}

.atc_form ul li .onsale {
  float: right;
  margin-right: 20px !important;
} */
.atc-upload-photo {
  width: 200px !important;
  height: 250px !important;
}

.atc_member_confirmation_link {
  margin-bottom: 20px !important;
}

.atc_form {
  max-width: 900px;
  margin: 0 auto;
}

.atc_form .atc-subcategory {
  width: 100%;
  background: #00204e;
  color: #fff;
  margin-bottom: 5px;
  padding: 10px;
}

.atc_form .atc-empty-category {
  margin-bottom: 5px;
  padding: 10px;
}

@media (min-width: 768px) {
  .atc_form ul li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    /* justify-content: center; */
    padding: 2px 0 !important;
    margin-bottom: 0 !important;
    /* border-bottom: 1px solid rgba(0, 0, 0, 0.1); */
  }
  .atc_form ul li > *:not(div) {
    margin-right: 10px !important;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
  }
  .atc_form ul li > *:not(div):last-child {
    margin-right: 0 !important;
  }
}

@media (min-width: 768px) {
  .atc_form ul li .woocommerce-loop-product__title {
    /*           margin: 0 20px !important; */
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

.atc_form ul li .price {
  margin-bottom: 0 !important;
}

.atc_form ul li .atc_select {
  color: #00204e;
  padding: 1rem 5rem 1rem 2rem;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  color: #374151;
  border: 1px solid rgba(55, 65, 81, 0.5);
  border-radius: 0.3rem;
  background-image: url(../images/arrow-right.svg) !important;
  background-repeat: no-repeat !important;
  background-size: auto 25%;
  background-position: right 3rem top 50%;
  -webkit-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  -o-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
}

.atc_form ul li .atc_select .price {
  float: none;
}

.atc_form ul li .atc_select:hover {
  background-color: #00204e;
  background-position: right 1.5rem top 50%;
  border: 1px solid #00204e;
  color: white;
}

.atc_form ul li img {
  display: none;
}

.atc_form .onsale {
  display: none;
}

button[form="atc_shop_form"] {
  display: inline-block;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  background-color: #00204e;
  border: 1px solid #00204e;
  color: white;
  border-radius: 0.3rem;
  padding: 1rem 5rem 1rem 2rem;
  background-image: url(../images/arrow-right.svg) !important;
  background-repeat: no-repeat !important;
  background-size: auto 25%;
  background-position: right 3rem top 50%;
  -webkit-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  -o-transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
  transition: background-color 0.5s ease, background-position 0.3s ease, color 0.5s ease, border 0.5s ease;
}

button[form="atc_shop_form"]:hover {
  background-position: right 1.5rem top 50%;
  color: #00204e;
  border: 1px solid #a08032;
  background-color: transparent;
}

.atc-landing-membership-info {
  margin-top: 10px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
}

.atc-landing-membership-info > div {
  color: #00204e;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
}

.atc-landing-membership-info > div:last-child {
  border-bottom: 0;
}

@media (min-width: 768px) {
  .atc-landing-membership-info {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .atc-landing-membership-info > div {
    width: 48%;
    font-size: 18px;
    border: none;
  }
}

.atc-field-value {
  font-weight: bold;
  color: #a08032;
}

.atc-addon-membership-section {
  /* margin-top: 10px;
  margin-bottom: 30px; */
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  max-width: 900px;
  margin: 0px auto 30px;
}

@media (min-width: 768px) {
  .atc-addon-membership-section {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    padding-right: 10px;
  }
}

@media (min-width: 768px) {
  .atc-addon-membership-section {
    padding-right: 10px;
  }
}

.atc-addon-membership-section > div {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
  width: auto;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 10px;
  /* @include media-breakpoint-up(md) {
      display: flex;
    } */
}

@media (max-width: 767.98px) {
  .atc-addon-membership-section > div {
    padding-bottom: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .atc-addon-membership-section > div > div:last-child {
    padding-left: 10px;
    margin-left: auto;
  }
}

.atc-addon-membership-section > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .atc-addon-membership-section > div {
    border-bottom: 0;
    margin-bottom: 0;
  }
}

.atc-addon-membership-section > div > div:first-child {
  color: #00204e;
}

.atc-addon-membership-section > div > div:last-child {
  color: #a08032;
  font-weight: bold;
}

/* .atc-add-on-membership-full-label {
  color: $navy;
}
.atc-add-on-membership-full {
  color: $gold;
  font-weight: bold;
}
 */
.gpfup__select-files,
.gform_button.button {
  padding: 0.75rem;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  background-color: #00204e;
  border: 1px solid #00204e;
  color: white;
  border-radius: 0.3rem;
}

.gpfup__select-files:hover,
.gform_button.button:hover {
  color: #00204e;
  border: 1px solid #a08032;
  background-position: 91% 50%;
  background-color: transparent;
}

.cropper__lightbox button.gpfup__crop {
  background: #00204e;
}

.wc-content-container {
  max-width: 900px;
  margin: 0 auto;
}

.confirmation-order-items {
  margin-bottom: 20px;
}

.benefit-block__wrap--member-confirmation {
  margin-top: 40px;
}

.atc-error {
  margin-bottom: 20px;
  color: #ff1d1d;
  font-weight: bold;
}

@media (min-width: 1200px) {
  .benefit-block__wrap--member {
    max-width: 1200px;
    -webkit-box-pack: start !important;
        -ms-flex-pack: start !important;
            justify-content: flex-start !important;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .benefit-block__wrap--member .benefit-block {
    width: 50%;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.members-container {
  max-width: 1315px;
}

.members-header {
  background: #f8f7f7;
  padding: 24px 10px;
}

@media (min-width: 768px) {
  .members-header {
    padding: 48px 20px;
  }
}

.members-header--non-member .members-header__info:not(.members-header__info--not-current) a {
  color: #00204e;
  font-family: "raisonne-light-pro";
  font-size: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  width: 100%;
  text-transform: uppercase;
}

@media (min-width: 576px) {
  .members-header--non-member .members-header__info:not(.members-header__info--not-current) a {
    font-size: 28px;
  }
}

.members-header--non-member .members-header__info:not(.members-header__info--not-current) a:hover, .members-header--non-member .members-header__info:not(.members-header__info--not-current) a:focus {
  color: #a08032;
  text-decoration: none;
}

.members-header--non-member .members-header__info:not(.members-header__info--not-current) img {
  margin-right: 14px;
  width: 30px;
}

@media (min-width: 576px) {
  .members-header--non-member .members-header__info:not(.members-header__info--not-current) img {
    width: 50px;
    margin-right: 24px;
  }
}

.members-header__info {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .members-header__info {
    padding: 40px 45px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media (min-width: 1024px) {
  .members-header__info {
    margin-bottom: 0;
  }
}

.members-header__info--not-current {
  display: block;
}

.members-header__info--not-current a {
  color: #a08032;
}

.members-header__info-image {
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
}

.members-header__info-image img {
  border-radius: 10px;
  width: 136px;
  height: 170px;
}

@media (min-width: 768px) {
  .members-header__info-image {
    margin-bottom: 0;
    margin-right: 30px;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 136px;
    min-width: 0px;
  }
}

.members-header__info-image-no-image {
  display: block;
  width: 136px;
  height: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 20px;
  font-family: "raisonne-light-pro";
  text-align: center;
  color: #636870;
  background: #f8f7f7;
  border-radius: 10px;
  padding: 10px;
  position: relative;
}

.members-header__info-image-no-image:hover {
  color: #a08032;
}

.image-pending img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  opacity: 0.1;
}

.members-header__info-content .welcome {
  font-size: 14px;
}

.members-header__info-content h1 {
  font-size: 28px;
  margin-bottom: 20px;
  line-height: 1;
}

@media (min-width: 768px) {
  .members-header__info-content {
    width: auto;
    min-width: 0px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
  }
}

@media (min-width: 768px) {
  .member-header__info-block-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

.member-header__number {
  color: #00204e;
  font-size: 15px;
}

.member-header__number span {
  color: #a08032;
}

.member-header__info-block {
  margin-bottom: 16px;
  font-size: 15px;
}

.member-header__info-block p {
  color: #00204e;
  margin-bottom: 0;
}

.member-header__info-block span {
  color: #a08032;
  display: block;
}

@media (min-width: 768px) {
  .member-header__info-block {
    width: 50%;
    padding-right: 24px;
  }
}

.members-header__quick-links {
  background: #00204e;
  padding: 30px;
  border-radius: 10px;
}

.members-header__quick-links h2 {
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .members-header__quick-links h2 {
    font-size: 28px;
  }
}

@media (min-width: 768px) {
  .members-header__quick-links {
    padding: 40px 45px;
    height: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023.98px) {
  .members-header__quick-links ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
  .members-header__quick-links ul li {
    width: 50%;
    padding-right: 24px;
  }
}

.members-header__quick-links ul li {
  font-size: 15px;
}

.members-header__quick-links ul li a {
  color: #fff;
  display: block;
  -webkit-transition: -webkit-transform 0.2s linear;
  transition: -webkit-transform 0.2s linear;
  -o-transition: -o-transform 0.2s linear;
  transition: transform 0.2s linear;
  transition: transform 0.2s linear, -webkit-transform 0.2s linear, -o-transform 0.2s linear;
  padding-top: 7px;
  padding-bottom: 7px;
}

.members-header__quick-links ul li a:hover {
  -webkit-transform: translateX(5px);
       -o-transform: translateX(5px);
          transform: translateX(5px);
}

.members-header__quick-links ul img {
  width: 24px;
  height: auto;
  margin-right: 24px;
}

.members-body {
  padding: 24px 10px;
}

@media (min-width: 768px) {
  .members-body {
    padding: 48px 20px;
  }
}

.members-body h2 {
  font-size: 28px;
  text-transform: uppercase;
}

.member-body__content-block {
  border-bottom: 1px solid #f4f3f1;
  padding-bottom: 48px;
  margin-bottom: 48px;
}

@media (min-width: 1024px) {
  .member-body__content-block:last-child {
    border-bottom: 0;
  }
}

.underline-link {
  display: inline-block;
  padding-right: 30px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 5px top 50%;
  -webkit-transition: background-color 0.2s ease, background-position 0.3s ease, color 0.2s ease;
  -o-transition: background-color 0.2s ease, background-position 0.3s ease, color 0.2s ease;
  transition: background-color 0.2s ease, background-position 0.3s ease, color 0.2s ease;
  text-decoration: underline;
  font-size: 14px;
}

.underline-link:hover {
  background-position: right 0 top 50%;
  text-decoration: underline;
}

.member-body__content-block-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #f4f3f1;
  margin-bottom: 9px;
}

@media (min-width: 768px) {
  .member-body__content-block-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.member-body__content-block-header a {
  text-transform: uppercase;
  color: #636870;
}

@media (min-width: 768px) {
  .member-body__content-block-header a {
    padding-right: 42px;
  }
}

.member-body__single-event {
  padding: 9px 0;
  border-bottom: 1px solid #f4f3f1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.member-body__single-event:last-child {
  border-bottom: 0;
}

.member-body__single-event .underline-link {
  color: #00204e;
  text-align: right;
}

.member-body__single-event .underline-link:focus, .member-body__single-event .underline-link:hover {
  color: #00204e;
}

.member-body__single-event h3 {
  font-size: 20px;
}

@media (min-width: 768px) {
  .member-body__single-event h3 {
    margin-right: 24px;
    -webkit-box-flex: 1;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
  }
}

.member-body__single-event h3 a {
  color: #00204e;
  -webkit-transition: color 0.2s linear;
  -o-transition: color 0.2s linear;
  transition: color 0.2s linear;
}

.member-body__single-event h3 a:focus, .member-body__single-event h3 a:hover {
  color: #a08032;
}

.member-body__events-date {
  background: #f8f7f7;
  width: 55px;
  height: 55px;
  text-align: center;
  font-size: 24px;
  line-height: 1;
  margin-right: 24px;
  color: #a08032;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-family: "raisonne-light-pro";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.member-body__events-date span {
  letter-spacing: -0.19px;
  font-size: 14px;
  text-transform: uppercase;
}

.member-body__events-title {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0px;
}

@media (min-width: 768px) {
  .member-body__events-title {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.member-body__cta {
  margin-bottom: 0;
  margin-top: 24px;
}

@media (max-width: 767.98px) {
  .member-body__cta a {
    width: 100%;
  }
}

@media (min-width: 768px) {
  .member-body__cta {
    text-align: right;
  }
}

.member-body__faq-container {
  padding: 0;
}

.members-sidebar__block {
  border-bottom: 1px solid #f4f3f1;
  padding-bottom: 48px;
  margin-bottom: 48px;
}

.members-sidebar__block:last-child {
  border-bottom: 0;
}

.members-sidebar__block ul {
  list-style: none;
  margin-bottom: 0;
}

.members-sidebar__block ul li:last-child a {
  border-bottom: none;
}

.members-sidebar__block ul a {
  color: #636870;
  display: block;
  line-height: 1;
  padding: 9px 0;
  padding-right: 30px;
  background-image: url(../images/arrow-right.svg);
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 5px top 50%;
  -webkit-transition: background-color 0.2s ease, background-position 0.3s ease, color 0.2s ease;
  -o-transition: background-color 0.2s ease, background-position 0.3s ease, color 0.2s ease;
  transition: background-color 0.2s ease, background-position 0.3s ease, color 0.2s ease;
  border-bottom: 1px solid #f4f3f1;
}

.members-sidebar__block ul a:hover {
  background-position: right 0 top 50%;
  color: #00204e;
}

.members-sidebar__block--promos {
  padding-bottom: 0;
  border-bottom: 0;
}

.members-sidebar__block-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #f4f3f1;
  margin-bottom: 9px;
}

.members-sidebar__block-header img {
  margin-right: 14px;
  display: inline-block;
  vertical-align: middle;
  width: 35px;
  height: 35px;
}

.members-sidebar__block-body li,
.members-sidebar__block-body p {
  font-size: 14px;
}

.members-sidebar--feedback input:not([type="submit"]),
.members-sidebar--feedback textarea {
  width: 100%;
  border-radius: 2px;
  border: 1px solid #e4e4e4;
  font-size: 16px;
}

.members-sidebar--feedback input:not([type="submit"]):focus,
.members-sidebar--feedback textarea:focus {
  border-color: #00204e;
  outline: none;
}

.members-sidebar--feedback ::-webkit-input-placeholder {
  font-size: 14px;
}

.members-sidebar--feedback ::-moz-placeholder {
  font-size: 14px;
}

.members-sidebar--feedback :-ms-input-placeholder {
  font-size: 14px;
}

.members-sidebar--feedback ::-ms-input-placeholder {
  font-size: 14px;
}

.members-sidebar--feedback ::placeholder {
  font-size: 14px;
}

.members-sidebar--feedback input:not([type="submit"]) {
  padding: 8px 18px;
}

.members-sidebar--feedback textarea {
  padding: 18px;
  height: 166px;
  resize: none;
}

.member-feedback-submit {
  text-align: center;
}

.members-sidebar__promo {
  margin-bottom: 24px;
}

.members-sidebar__promo > *:last-child {
  margin-bottom: 0;
}

.members-sidebar__promo:last-child {
  margin-bottom: 0;
}

.woocommerce-checkout .wc-item-meta {
  display: none;
}

.gform_ajax_spinner {
  width: auto !important;
}

.member-news__navigation a {
  display: inline-block;
  position: relative;
  margin: 0 5px 10px;
  color: #636870;
}

.member-news__navigation a::after {
  content: "";
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 5px top 50%;
  background-image: url(../images/arrow-right.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
}

.member-news__navigation .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.member-news__navigation .nav-previous a {
  padding-left: 30px;
}

.member-news__navigation .nav-previous a::after {
  -webkit-transform: rotate(180deg) translateY(50%);
       -o-transform: rotate(180deg) translateY(50%);
          transform: rotate(180deg) translateY(50%);
  left: 0;
}

.member-news__navigation .nav-next a {
  padding-right: 30px;
}

.member-news__navigation .nav-next a::after {
  right: 0;
}

.latest-news__inner-member .single-news__link {
  font-size: 14px;
  color: #00204e;
  padding-right: 30px;
}

.latest-news__inner-member .single-news__link::after {
  content: "";
  background-repeat: no-repeat;
  background-size: 16px;
  background-position: right 5px top 50%;
  background-image: url(../images/arrow-right.svg);
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
  display: inline-block;
  width: 16px;
  height: 16px;
  right: 0;
}

@media (min-width: 1200px) {
  .latest-news__inner-member .single-news__card {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: calc(100% / 3);
    padding: 1rem;
  }
  .latest-news__inner-member .single-news__image {
    min-height: 0;
    padding-bottom: 50%;
  }
}

@media (min-width: 1200px) and (min-width: 768px) {
  .latest-news__inner-member .single-news__text {
    padding: 2rem 2rem 6rem;
  }
}

.member-news-carousel {
  position: relative;
  padding-bottom: 50px;
}

@media (min-width: 768px) {
  .member-news-carousel {
    overflow: hidden;
    padding-right: 100px;
    position: relative;
    padding-bottom: 0;
  }
  .member-news-carousel .single-news__image {
    min-height: 0;
  }
  .member-news-carousel .events-cards__prev {
    display: none !important;
  }
  .member-news-carousel .events-cards__next {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
         -o-transform: translateY(-50%);
            transform: translateY(-50%);
    bottom: auto;
    left: auto;
    opacity: 1;
    background: #fff;
    padding: 10px;
    width: 52px;
    height: 52px;
  }
}

.member-news-carousel__container .single-news__card-inner {
  -webkit-box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.05);
          box-shadow: 0 2px 10px 0px rgba(0, 0, 0, 0.05);
}

@media (min-width: 768px) {
  .member-news-carousel__container .slick-list {
    overflow: visible;
  }
}

.member-news-carousel__container .slick-slide {
  opacity: 0.5;
}

.member-news-carousel__container .slick-active {
  opacity: 1;
}

.gform_legacy_markup_wrapper h1,
.gform_legacy_markup_wrapper h2,
.gform_legacy_markup_wrapper h3,
.gform_legacy_markup_wrapper h4,
.gform_legacy_markup_wrapper h5,
.gform_legacy_markup_wrapper h6 {
  font-weight: normal !important;
}

.gform_legacy_markup_wrapper .gform_footer input.button,
.gform_legacy_markup_wrapper .gform_footer input[type="submit"],
.gform_legacy_markup_wrapper .gform_page_footer input.button,
.gform_legacy_markup_wrapper .gform_page_footer input[type="submit"] {
  padding: 1.5rem 3rem;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  background-color: #00204e;
  border: 1px solid #00204e;
  color: white;
  border-radius: 0.3rem;
}

.gform_legacy_markup_wrapper .gform_footer input.button:hover,
.gform_legacy_markup_wrapper .gform_footer input[type="submit"]:hover,
.gform_legacy_markup_wrapper .gform_page_footer input.button:hover,
.gform_legacy_markup_wrapper .gform_page_footer input[type="submit"]:hover {
  color: #00204e;
  border: 1px solid #a08032;
  background-color: transparent;
}

.gform_wrapper .gform_body.gform-body input,
.gform_wrapper .gform_body.gform-body textarea,
.gform_wrapper .gform_body.gform-body select {
  padding: 10px;
  border: 1px solid #aaa;
}

.gform_legacy_markup_wrapper div.charleft {
  display: none !important;
}

.gform_legacy_markup_wrapper ul.gform_fields li.gfield.gsection {
  border-bottom: 0;
  padding-right: 0;
}

.gform_legacy_markup_wrapper ul.gform_fields li.gfield.gsection h2 {
  background: #00204e;
  color: #fff;
  padding: 10px !important;
}

.gform_legacy_markup_wrapper a {
  color: #a08032;
}

.gform_legacy_markup_wrapper .top_label .gfield_label,
.gform_legacy_markup_wrapper legend.gfield_label {
  color: #00204e;
}

/**
  * Global styles
  */
p.demo_store,
.woocommerce-store-notice {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0;
  width: 100%;
  font-size: 1em;
  padding: 1em 0;
  text-align: center;
  background-color: #007bff;
  color: white;
  z-index: 99998;
  -webkit-box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
          box-shadow: 0 1px 1em rgba(0, 0, 0, 0.2);
  display: none;
}

p.demo_store a,
.woocommerce-store-notice a {
  color: white;
  text-decoration: underline;
}

.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  overflow: hidden;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.admin-bar p.demo_store {
  top: 32px;
}

/**
  * Utility classes
  */
.clear {
  clear: both;
}

/**
  * Main WooCommerce styles
  */
.woocommerce {
  /**
    * Product Page
    */
  /**
    * Product loops
    */
  /**
    * Buttons
    */
  /**
    * Reviews
    */
  /**
    * Star ratings
    */
  /**
    * Tables
    */
  /**
    * Cart sidebar
    */
  /**
    * Forms
    */
  /**
    * Order page
    */
  /**
    * Layered nav widget
    */
  /**
    * Price filter widget
    */
  /**
    * Rating Filter Widget
    */
}

.woocommerce .blockUI.blockOverlay {
  position: relative;
}

.woocommerce .blockUI.blockOverlay::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  content: "";
  -webkit-animation: spin 1s ease-in-out infinite;
       -o-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
  background: url("../images/icons/loader.svg") center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

.woocommerce .loader::before {
  height: 1em;
  width: 1em;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -0.5em;
  margin-top: -0.5em;
  content: "";
  -webkit-animation: spin 1s ease-in-out infinite;
       -o-animation: spin 1s ease-in-out infinite;
          animation: spin 1s ease-in-out infinite;
  background: url("../images/icons/loader.svg") center center;
  background-size: cover;
  line-height: 1;
  text-align: center;
  font-size: 2em;
  color: rgba(0, 0, 0, 0.75);
}

.woocommerce a.remove {
  display: block;
  font-size: 1.5em;
  height: 1em;
  width: 1em;
  text-align: center;
  line-height: 1;
  border-radius: 100%;
  color: red !important;
  text-decoration: none;
  font-weight: 700;
  border: 0;
}

.woocommerce a.remove:hover {
  color: #fff !important;
  background: red;
}

.woocommerce small.note {
  display: block;
  color: #767676;
  font-size: 0.857em;
  margin-top: 10px;
}

.woocommerce .woocommerce-breadcrumb {
  *zoom: 1;
  margin: 0 0 1em;
  padding: 0;
  font-size: 0.92em;
  color: #767676;
}

.woocommerce .woocommerce-breadcrumb::before, .woocommerce .woocommerce-breadcrumb::after {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-breadcrumb::after {
  clear: both;
}

.woocommerce .woocommerce-breadcrumb a {
  color: #767676;
}

.woocommerce .quantity .qty {
  width: 3.631em;
  text-align: center;
}

.woocommerce div.product {
  margin-bottom: 0;
  position: relative;
}

.woocommerce div.product .product_title {
  clear: none;
  margin-top: 0;
  padding: 0;
}

.woocommerce div.product span.price,
.woocommerce div.product p.price {
  color: #a08032;
  font-size: 1.25em;
}

.woocommerce div.product span.price ins,
.woocommerce div.product p.price ins {
  background: inherit;
  font-weight: 700;
  display: inline-block;
}

.woocommerce div.product span.price del,
.woocommerce div.product p.price del {
  opacity: 0.5;
  display: inline-block;
}

.woocommerce div.product p.stock {
  font-size: 0.92em;
}

.woocommerce div.product .stock {
  color: #a08032;
}

.woocommerce div.product .out-of-stock {
  color: red;
}

.woocommerce div.product .woocommerce-product-rating {
  margin-bottom: 1.618em;
}

.woocommerce div.product div.images {
  margin-bottom: 2em;
}

.woocommerce div.product div.images img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce div.product div.images div.thumbnails {
  padding-top: 1em;
}

.woocommerce div.product div.images.woocommerce-product-gallery {
  position: relative;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper {
  -webkit-transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  -o-transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  transition: all cubic-bezier(0.795, -0.035, 0, 1) 0.5s;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
  background-color: #fff;
  opacity: 0;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image--placeholder {
  border: 1px solid #f2f2f2;
}

.woocommerce div.product div.images .woocommerce-product-gallery__image:nth-child(n + 2) {
  width: 25%;
  display: inline-block;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 0.5em;
  right: 0.5em;
  font-size: 2em;
  z-index: 9;
  width: 36px;
  height: 36px;
  background: #fff;
  text-indent: -9999px;
  border-radius: 100%;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  border: 2px solid #000;
  border-radius: 100%;
  position: absolute;
  top: 9px;
  left: 9px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.woocommerce div.product div.images .woocommerce-product-gallery__trigger::after {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: #000;
  border-radius: 6px;
  position: absolute;
  top: 19px;
  left: 22px;
  -webkit-transform: rotate(-45deg);
       -o-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

.woocommerce div.product div.images .flex-control-thumbs {
  overflow: hidden;
  zoom: 1;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li {
  width: 25%;
  float: left;
  margin: 0;
  list-style: none;
}

.woocommerce div.product div.images .flex-control-thumbs li img {
  cursor: pointer;
  opacity: 0.5;
  margin: 0;
}

.woocommerce div.product div.images .flex-control-thumbs li img.flex-active, .woocommerce div.product div.images .flex-control-thumbs li img:hover {
  opacity: 1;
}

.woocommerce div.product .woocommerce-product-gallery--columns-3 .flex-control-thumbs li:nth-child(3n + 1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-4 .flex-control-thumbs li:nth-child(4n + 1) {
  clear: left;
}

.woocommerce div.product .woocommerce-product-gallery--columns-5 .flex-control-thumbs li:nth-child(5n + 1) {
  clear: left;
}

.woocommerce div.product div.summary {
  margin-bottom: 2em;
}

.woocommerce div.product div.social {
  text-align: right;
  margin: 0 0 1em;
}

.woocommerce div.product div.social span {
  margin: 0 0 0 2px;
}

.woocommerce div.product div.social span span {
  margin: 0;
}

.woocommerce div.product div.social span .stButton .chicklets {
  padding-left: 16px;
  width: 0;
}

.woocommerce div.product div.social iframe {
  float: left;
  margin-top: 3px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  list-style: none;
  padding: 0 0 0 1em;
  margin: 0 0 1.618em;
  overflow: hidden;
  position: relative;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  border: 1px solid #545b62;
  background-color: #6c757d;
  display: inline-block;
  position: relative;
  z-index: 0;
  border-radius: 4px 4px 0 0;
  margin: 0 -5px;
  padding: 0 1em;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  display: inline-block;
  padding: 0.5em 0;
  font-weight: 700;
  color: black;
  text-decoration: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a:hover {
  text-decoration: none;
  color: #1a1919;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  background: #fff;
  z-index: 2;
  border-bottom-color: #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  color: inherit;
  text-shadow: inherit;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  -webkit-box-shadow: 2px 2px 0 #fff;
          box-shadow: 2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li.active::after {
  -webkit-box-shadow: -2px 2px 0 #fff;
          box-shadow: -2px 2px 0 #fff;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before, .woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  border: 1px solid #545b62;
  position: absolute;
  bottom: -1px;
  width: 5px;
  height: 5px;
  content: " ";
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  left: -5px;
  border-bottom-right-radius: 4px;
  border-width: 0 1px 1px 0;
  -webkit-box-shadow: 2px 2px 0 #6c757d;
          box-shadow: 2px 2px 0 #6c757d;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  right: -5px;
  border-bottom-left-radius: 4px;
  border-width: 0 0 1px 1px;
  -webkit-box-shadow: -2px 2px 0 #6c757d;
          box-shadow: -2px 2px 0 #6c757d;
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  position: absolute;
  content: " ";
  width: 100%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid #545b62;
  z-index: 1;
}

.woocommerce div.product .woocommerce-tabs .panel {
  margin: 0 0 2em;
  padding: 0;
}

.woocommerce div.product p.cart {
  margin-bottom: 2em;
  *zoom: 1;
}

.woocommerce div.product p.cart::before, .woocommerce div.product p.cart::after {
  content: " ";
  display: table;
}

.woocommerce div.product p.cart::after {
  clear: both;
}

.woocommerce div.product form.cart {
  margin-bottom: 2em;
  *zoom: 1;
}

.woocommerce div.product form.cart::before, .woocommerce div.product form.cart::after {
  content: " ";
  display: table;
}

.woocommerce div.product form.cart::after {
  clear: both;
}

.woocommerce div.product form.cart div.quantity {
  float: left;
  margin: 0 4px 0 0;
}

.woocommerce div.product form.cart table {
  border-width: 0 0 1px;
}

.woocommerce div.product form.cart table td {
  padding-left: 0;
}

.woocommerce div.product form.cart table div.quantity {
  float: none;
  margin: 0;
}

.woocommerce div.product form.cart table small.stock {
  display: block;
  float: none;
}

.woocommerce div.product form.cart .variations {
  margin-bottom: 1em;
  border: 0;
  width: 100%;
}

.woocommerce div.product form.cart .variations td,
.woocommerce div.product form.cart .variations th {
  border: 0;
  vertical-align: top;
  line-height: 2em;
}

.woocommerce div.product form.cart .variations label {
  font-weight: 700;
}

.woocommerce div.product form.cart .variations select {
  max-width: 100%;
  min-width: 75%;
  display: inline-block;
  margin-right: 1em;
}

.woocommerce div.product form.cart .variations td.label {
  padding-right: 1em;
}

.woocommerce div.product form.cart .woocommerce-variation-description p {
  margin-bottom: 1em;
}

.woocommerce div.product form.cart .reset_variations {
  visibility: hidden;
  font-size: 0.83em;
}

.woocommerce div.product form.cart .wc-no-matching-variations {
  display: none;
}

.woocommerce div.product form.cart .button {
  vertical-align: middle;
  float: left;
}

.woocommerce div.product form.cart .group_table td.woocommerce-grouped-product-list-item__label {
  padding-right: 1em;
  padding-left: 1em;
}

.woocommerce div.product form.cart .group_table td {
  vertical-align: top;
  padding-bottom: 0.5em;
  border: 0;
}

.woocommerce div.product form.cart .group_table td:first-child {
  width: 4em;
  text-align: center;
}

.woocommerce div.product form.cart .group_table .wc-grouped-product-add-to-cart-checkbox {
  display: inline-block;
  width: auto;
  margin: 0 auto;
  -webkit-transform: scale(1.5, 1.5);
       -o-transform: scale(1.5, 1.5);
          transform: scale(1.5, 1.5);
}

.woocommerce span.onsale {
  min-height: 3.236em;
  min-width: 3.236em;
  padding: 0.202em;
  font-size: 1em;
  font-weight: 700;
  position: absolute;
  text-align: center;
  line-height: 3.236;
  top: -0.5em;
  left: -0.5em;
  margin: 0;
  border-radius: 100%;
  background-color: #a08032;
  color: white;
  font-size: 0.857em;
  z-index: 9;
}

.woocommerce .products ul,
.woocommerce ul.products {
  margin: 0 0 1em;
  padding: 0;
  list-style: none outside;
  clear: both;
  *zoom: 1;
}

.woocommerce .products ul::before, .woocommerce .products ul::after,
.woocommerce ul.products::before,
.woocommerce ul.products::after {
  content: " ";
  display: table;
}

.woocommerce .products ul::after,
.woocommerce ul.products::after {
  clear: both;
}

.woocommerce .products ul li,
.woocommerce ul.products li {
  list-style: none outside;
}

.woocommerce ul.products li.product .onsale {
  top: 0;
  right: 0;
  left: auto;
  margin: -0.5em -0.5em 0 0;
}

.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
  padding: 0.5em 0;
  margin: 0;
  font-size: 18px;
}

@media (min-width: 1024px) {
  .woocommerce ul.products li.product h3,
  .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .woocommerce ul.products li.product .woocommerce-loop-category__title {
    font-size: 22px;
  }
}

.woocommerce ul.products li.product a {
  text-decoration: none;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 1em;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce ul.products li.product strong {
  display: block;
}

.woocommerce ul.products li.product .woocommerce-placeholder {
  border: 1px solid #f2f2f2;
}

.woocommerce ul.products li.product .star-rating {
  font-size: 0.857em;
}

.woocommerce ul.products li.product .button {
  margin-top: 1em;
}

.woocommerce ul.products li.product .price {
  color: #a08032;
  display: block;
  font-weight: normal;
  margin-bottom: 0.5em;
  font-size: 1em;
}

.woocommerce ul.products li.product .price del {
  color: inherit;
  opacity: 0.5;
  display: inline-block;
}

.woocommerce ul.products li.product .price ins {
  background: none;
  font-weight: 700;
  display: inline-block;
}

.woocommerce ul.products li.product .price .from {
  font-size: 0.67em;
  margin: -2px 0 0 0;
  text-transform: uppercase;
  color: rgba(159, 97, 96, 0.5);
}

.woocommerce .woocommerce-result-count {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering {
  margin: 0 0 1em;
}

.woocommerce .woocommerce-ordering select {
  vertical-align: top;
  padding: 10px;
}

.woocommerce nav.woocommerce-pagination {
  text-align: center;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-block;
  white-space: nowrap;
  padding: 0;
  clear: both;
  border: 1px solid #545b62;
  border-right: 0;
  margin: 1px;
}

.woocommerce nav.woocommerce-pagination ul li {
  border-right: 1px solid #545b62;
  padding: 0;
  margin: 0;
  float: left;
  display: inline;
  overflow: hidden;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  margin: 0;
  text-decoration: none;
  padding: 0;
  line-height: 1;
  font-size: 1em;
  font-weight: normal;
  padding: 0.5em;
  min-width: 1em;
  display: block;
}

.woocommerce nav.woocommerce-pagination ul li span.current,
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li a:focus {
  background: #6c757d;
  color: #0d0f10;
}

.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  margin: 0;
  cursor: pointer;
  position: relative;
  overflow: visible;
  padding: 1rem 2rem;
  display: inline-block;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  -o-transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
  background-color: #00204e;
  border: 1px solid #00204e;
  color: white;
  border-radius: 0.3rem;
  /* 
    font-size: 100%;
    line-height: 1;
    text-decoration: none;
    padding: 0.618em 1em;
    font-weight: 700;
    border-radius: 3px;
    color: $secondarytext;
    background-color: $secondary;
    border: 0;
    background-image: none;
    box-shadow: none;
    text-shadow: none; */
  display: inline-block;
  left: auto;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  color: #00204e;
  border: 1px solid #a08032;
  background-color: transparent;
}

.woocommerce a.button.loading,
.woocommerce button.button.loading,
.woocommerce input.button.loading,
.woocommerce #respond input#submit.loading {
  opacity: 0.25;
  padding-right: 2.618em;
}

.woocommerce a.button.loading::after,
.woocommerce button.button.loading::after,
.woocommerce input.button.loading::after,
.woocommerce #respond input#submit.loading::after {
  font-family: "WooCommerce";
  content: "\E01C";
  vertical-align: top;
  font-weight: 400;
  position: absolute;
  top: 0.618em;
  right: 1em;
  -webkit-animation: spin 2s linear infinite;
       -o-animation: spin 2s linear infinite;
          animation: spin 2s linear infinite;
}

.woocommerce a.button.added::after,
.woocommerce button.button.added::after,
.woocommerce input.button.added::after,
.woocommerce #respond input#submit.added::after {
  font-family: "WooCommerce";
  content: "\E017";
  margin-left: 0.53em;
  vertical-align: bottom;
}

.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #respond input#submit:hover {
  /* background-color: darken($secondary, 5%);
      text-decoration: none;
      background-image: none;
      color: $secondarytext; */
}

.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce #respond input#submit.alt {
  /* background-color: $primary;
      color: $primarytext;
      &:hover {
        background-color: darken($primary, 5%);
        color: $primarytext;
      } */
}

.woocommerce a.button.alt.disabled, .woocommerce a.button.alt:disabled, .woocommerce a.button.alt:disabled[disabled], .woocommerce a.button.alt.disabled:hover, .woocommerce a.button.alt:disabled:hover, .woocommerce a.button.alt:disabled[disabled]:hover,
.woocommerce button.button.alt.disabled,
.woocommerce button.button.alt:disabled,
.woocommerce button.button.alt:disabled[disabled],
.woocommerce button.button.alt.disabled:hover,
.woocommerce button.button.alt:disabled:hover,
.woocommerce button.button.alt:disabled[disabled]:hover,
.woocommerce input.button.alt.disabled,
.woocommerce input.button.alt:disabled,
.woocommerce input.button.alt:disabled[disabled],
.woocommerce input.button.alt.disabled:hover,
.woocommerce input.button.alt:disabled:hover,
.woocommerce input.button.alt:disabled[disabled]:hover,
.woocommerce #respond input#submit.alt.disabled,
.woocommerce #respond input#submit.alt:disabled,
.woocommerce #respond input#submit.alt:disabled[disabled],
.woocommerce #respond input#submit.alt.disabled:hover,
.woocommerce #respond input#submit.alt:disabled:hover,
.woocommerce #respond input#submit.alt:disabled[disabled]:hover {
  background-color: #007bff;
  color: white;
}

.woocommerce a.button:disabled, .woocommerce a.button.disabled, .woocommerce a.button:disabled[disabled],
.woocommerce button.button:disabled,
.woocommerce button.button.disabled,
.woocommerce button.button:disabled[disabled],
.woocommerce input.button:disabled,
.woocommerce input.button.disabled,
.woocommerce input.button:disabled[disabled],
.woocommerce #respond input#submit:disabled,
.woocommerce #respond input#submit.disabled,
.woocommerce #respond input#submit:disabled[disabled] {
  color: inherit;
  cursor: not-allowed;
  opacity: 0.5;
  padding: 0.618em 1em;
}

.woocommerce a.button:disabled:hover, .woocommerce a.button.disabled:hover, .woocommerce a.button:disabled[disabled]:hover,
.woocommerce button.button:disabled:hover,
.woocommerce button.button.disabled:hover,
.woocommerce button.button:disabled[disabled]:hover,
.woocommerce input.button:disabled:hover,
.woocommerce input.button.disabled:hover,
.woocommerce input.button:disabled[disabled]:hover,
.woocommerce #respond input#submit:disabled:hover,
.woocommerce #respond input#submit.disabled:hover,
.woocommerce #respond input#submit:disabled[disabled]:hover {
  color: inherit;
  background-color: #6c757d;
}

.woocommerce .cart .button,
.woocommerce .cart input.button {
  float: none;
}

.woocommerce a.added_to_cart {
  padding-top: 0.5em;
  display: inline-block;
}

.woocommerce #reviews h2 small {
  float: right;
  color: #767676;
  font-size: 15px;
  margin: 10px 0 0;
}

.woocommerce #reviews h2 small a {
  text-decoration: none;
  color: #767676;
}

.woocommerce #reviews h3 {
  margin: 0;
}

.woocommerce #reviews #respond {
  margin: 0;
  border: 0;
  padding: 0;
}

.woocommerce #reviews #comment {
  height: 75px;
}

.woocommerce #reviews #comments .add_review {
  *zoom: 1;
}

.woocommerce #reviews #comments .add_review::before, .woocommerce #reviews #comments .add_review::after {
  content: " ";
  display: table;
}

.woocommerce #reviews #comments .add_review::after {
  clear: both;
}

.woocommerce #reviews #comments h2 {
  clear: none;
}

.woocommerce #reviews #comments ol.commentlist {
  *zoom: 1;
  margin: 0;
  width: 100%;
  background: none;
  list-style: none;
}

.woocommerce #reviews #comments ol.commentlist::before, .woocommerce #reviews #comments ol.commentlist::after {
  content: " ";
  display: table;
}

.woocommerce #reviews #comments ol.commentlist::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li {
  padding: 0;
  margin: 0 0 20px;
  border: 0;
  position: relative;
  background: 0;
  border: 0;
}

.woocommerce #reviews #comments ol.commentlist li .meta {
  color: #767676;
  font-size: 0.75em;
}

.woocommerce #reviews #comments ol.commentlist li img.avatar {
  float: left;
  position: absolute;
  top: 0;
  left: 0;
  padding: 3px;
  width: 32px;
  height: auto;
  background: #6c757d;
  border: 1px solid #656d75;
  margin: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text {
  margin: 0 0 0 50px;
  border: 1px solid #656d75;
  border-radius: 4px;
  padding: 1em 1em 0;
  *zoom: 1;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::before, .woocommerce #reviews #comments ol.commentlist li .comment-text::after {
  content: " ";
  display: table;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text::after {
  clear: both;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p {
  margin: 0 0 1em;
}

.woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  font-size: 0.83em;
}

.woocommerce #reviews #comments ol.commentlist ul.children {
  list-style: none outside;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments ol.commentlist ul.children .star-rating {
  display: none;
}

.woocommerce #reviews #comments ol.commentlist #respond {
  border: 1px solid #656d75;
  border-radius: 4px;
  padding: 1em 1em 0;
  margin: 20px 0 0 50px;
}

.woocommerce #reviews #comments .commentlist > li::before {
  content: "";
}

.woocommerce .star-rating {
  float: right;
  overflow: hidden;
  position: relative;
  height: 1em;
  line-height: 1;
  font-size: 1em;
  width: 5.4em;
  font-family: "star";
}

.woocommerce .star-rating::before {
  content: "sssss";
  color: #545b62;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}

.woocommerce .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}

.woocommerce .star-rating span::before {
  content: "SSSSS";
  top: 0;
  position: absolute;
  left: 0;
}

.woocommerce .woocommerce-product-rating {
  *zoom: 1;
  line-height: 2;
  display: block;
}

.woocommerce .woocommerce-product-rating::before, .woocommerce .woocommerce-product-rating::after {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-product-rating::after {
  clear: both;
}

.woocommerce .woocommerce-product-rating .star-rating {
  margin: 0.5em 4px 0 0;
  float: left;
}

.woocommerce .products .star-rating {
  display: block;
  margin: 0 0 0.5em;
  float: none;
}

.woocommerce .hreview-aggregate .star-rating {
  margin: 10px 0 0;
}

.woocommerce #review_form #respond {
  *zoom: 1;
  position: static;
  margin: 0;
  width: auto;
  padding: 0;
  background: transparent none;
  border: 0;
}

.woocommerce #review_form #respond::before, .woocommerce #review_form #respond::after {
  content: " ";
  display: table;
}

.woocommerce #review_form #respond::after {
  clear: both;
}

.woocommerce #review_form #respond p {
  margin: 0 0 10px;
}

.woocommerce #review_form #respond .form-submit input {
  left: auto;
}

.woocommerce #review_form #respond textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
}

.woocommerce p.stars a {
  position: relative;
  height: 1em;
  width: 1em;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
}

.woocommerce p.stars a::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 1em;
  height: 1em;
  line-height: 1;
  font-family: "WooCommerce";
  content: "\E021";
  text-indent: 0;
}

.woocommerce p.stars a:hover ~ a::before {
  content: "\E021";
}

.woocommerce p.stars:hover a::before {
  content: "\E020";
}

.woocommerce p.stars.selected a.active::before {
  content: "\E020";
}

.woocommerce p.stars.selected a.active ~ a::before {
  content: "\E021";
}

.woocommerce p.stars.selected a:not(.active)::before {
  content: "\E020";
}

.woocommerce table.shop_attributes {
  border: 0;
  border-top: 1px dotted rgba(0, 0, 0, 0.1);
  margin-bottom: 1.618em;
  width: 100%;
}

.woocommerce table.shop_attributes th {
  width: 150px;
  font-weight: 700;
  padding: 8px;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td {
  font-style: italic;
  padding: 0;
  border-top: 0;
  border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
  margin: 0;
  line-height: 1.5;
}

.woocommerce table.shop_attributes td p {
  margin: 0;
  padding: 8px 0;
}

.woocommerce table.shop_attributes tr:nth-child(even) td,
.woocommerce table.shop_attributes tr:nth-child(even) th {
  background: rgba(0, 0, 0, 0.025);
}

.woocommerce table.shop_table {
  border: 1px solid rgba(0, 0, 0, 0.1);
  margin: 0 -1px 24px 0;
  text-align: left;
  width: 100%;
  border-collapse: separate;
  border-radius: 5px;
}

.woocommerce table.shop_table th {
  font-weight: 700;
  padding: 9px 12px;
  line-height: 1.5em;
}

.woocommerce table.shop_table td {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding: 9px 12px;
  vertical-align: middle;
  line-height: 1.5em;
}

.woocommerce table.shop_table td small {
  font-weight: normal;
}

.woocommerce table.shop_table td del {
  font-weight: normal;
}

.woocommerce table.shop_table tbody:first-child tr:first-child th,
.woocommerce table.shop_table tbody:first-child tr:first-child td {
  border-top: 0;
}

.woocommerce table.shop_table tfoot td,
.woocommerce table.shop_table tfoot th,
.woocommerce table.shop_table tbody th {
  font-weight: 700;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.woocommerce table.my_account_orders {
  font-size: 0.85em;
}

.woocommerce table.my_account_orders th,
.woocommerce table.my_account_orders td {
  padding: 4px 8px;
  vertical-align: middle;
}

.woocommerce table.my_account_orders .button {
  white-space: nowrap;
}

.woocommerce table.woocommerce-MyAccount-downloads td,
.woocommerce table.woocommerce-MyAccount-downloads th {
  vertical-align: top;
  text-align: center;
}

.woocommerce table.woocommerce-MyAccount-downloads td:first-child,
.woocommerce table.woocommerce-MyAccount-downloads th:first-child {
  text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td:last-child,
.woocommerce table.woocommerce-MyAccount-downloads th:last-child {
  text-align: left;
}

.woocommerce table.woocommerce-MyAccount-downloads td .woocommerce-MyAccount-downloads-file::before,
.woocommerce table.woocommerce-MyAccount-downloads th .woocommerce-MyAccount-downloads-file::before {
  content: "\2193";
  display: inline-block;
}

.woocommerce td.product-name dl.variation,
.woocommerce td.product-name .wc-item-meta {
  list-style: none outside;
}

.woocommerce td.product-name dl.variation dt,
.woocommerce td.product-name dl.variation .wc-item-meta-label,
.woocommerce td.product-name .wc-item-meta dt,
.woocommerce td.product-name .wc-item-meta .wc-item-meta-label {
  float: left;
  clear: both;
  margin-right: 0.25em;
  display: inline-block;
  list-style: none outside;
}

.woocommerce td.product-name dl.variation dd,
.woocommerce td.product-name .wc-item-meta dd {
  margin: 0;
}

.woocommerce td.product-name dl.variation p, .woocommerce td.product-name dl.variation:last-child,
.woocommerce td.product-name .wc-item-meta p,
.woocommerce td.product-name .wc-item-meta:last-child {
  margin-bottom: 0;
}

.woocommerce td.product-name p.backorder_notification {
  font-size: 0.83em;
}

.woocommerce td.product-quantity {
  min-width: 80px;
}

.woocommerce ul.cart_list,
.woocommerce ul.product_list_widget {
  list-style: none outside;
  padding: 0;
  margin: 0;
}

.woocommerce ul.cart_list li,
.woocommerce ul.product_list_widget li {
  padding: 4px 0;
  margin: 0;
  *zoom: 1;
  list-style: none;
}

.woocommerce ul.cart_list li::before, .woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::before,
.woocommerce ul.product_list_widget li::after {
  content: " ";
  display: table;
}

.woocommerce ul.cart_list li::after,
.woocommerce ul.product_list_widget li::after {
  clear: both;
}

.woocommerce ul.cart_list li a,
.woocommerce ul.product_list_widget li a {
  display: block;
  font-weight: 700;
}

.woocommerce ul.cart_list li img,
.woocommerce ul.product_list_widget li img {
  float: right;
  margin-left: 4px;
  width: 32px;
  height: auto;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce ul.cart_list li dl,
.woocommerce ul.product_list_widget li dl {
  margin: 0;
  padding-left: 1em;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  *zoom: 1;
}

.woocommerce ul.cart_list li dl::before, .woocommerce ul.cart_list li dl::after,
.woocommerce ul.product_list_widget li dl::before,
.woocommerce ul.product_list_widget li dl::after {
  content: " ";
  display: table;
}

.woocommerce ul.cart_list li dl::after,
.woocommerce ul.product_list_widget li dl::after {
  clear: both;
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dt,
.woocommerce ul.product_list_widget li dl dd {
  display: inline-block;
  float: left;
  margin-bottom: 1em;
}

.woocommerce ul.cart_list li dl dt,
.woocommerce ul.product_list_widget li dl dt {
  font-weight: 700;
  padding: 0 0 0.25em;
  margin: 0 4px 0 0;
  clear: left;
}

.woocommerce ul.cart_list li dl dd,
.woocommerce ul.product_list_widget li dl dd {
  padding: 0 0 0.25em;
}

.woocommerce ul.cart_list li dl dd p:last-child,
.woocommerce ul.product_list_widget li dl dd p:last-child {
  margin-bottom: 0;
}

.woocommerce ul.cart_list li .star-rating,
.woocommerce ul.product_list_widget li .star-rating {
  float: none;
}

.woocommerce.widget_shopping_cart .total,
.woocommerce .widget_shopping_cart .total {
  border-top: 3px double #6c757d;
  padding: 4px 0 0;
}

.woocommerce.widget_shopping_cart .total strong,
.woocommerce .widget_shopping_cart .total strong {
  min-width: 40px;
  display: inline-block;
}

.woocommerce.widget_shopping_cart .cart_list li,
.woocommerce .widget_shopping_cart .cart_list li {
  padding-left: 2em;
  position: relative;
  padding-top: 0;
}

.woocommerce.widget_shopping_cart .cart_list li a.remove,
.woocommerce .widget_shopping_cart .cart_list li a.remove {
  position: absolute;
  top: 0;
  left: 0;
}

.woocommerce.widget_shopping_cart .buttons,
.woocommerce .widget_shopping_cart .buttons {
  *zoom: 1;
}

.woocommerce.widget_shopping_cart .buttons::before, .woocommerce.widget_shopping_cart .buttons::after,
.woocommerce .widget_shopping_cart .buttons::before,
.woocommerce .widget_shopping_cart .buttons::after {
  content: " ";
  display: table;
}

.woocommerce.widget_shopping_cart .buttons::after,
.woocommerce .widget_shopping_cart .buttons::after {
  clear: both;
}

.woocommerce.widget_shopping_cart .buttons a,
.woocommerce .widget_shopping_cart .buttons a {
  margin-right: 5px;
  margin-bottom: 5px;
}

.woocommerce form .form-row {
  padding: 3px;
  margin: 0 0 6px;
  display: block;
  /* overwrite maincss */
}

.woocommerce form .form-row [placeholder]:focus::-webkit-input-placeholder {
  -webkit-transition: opacity 0.5s 0.5s ease;
  transition: opacity 0.5s 0.5s ease;
  opacity: 0;
}

.woocommerce form .form-row label {
  line-height: 2;
}

.woocommerce form .form-row label.hidden {
  visibility: hidden;
}

.woocommerce form .form-row label.inline {
  display: inline;
}

.woocommerce form .form-row .select2-container--default .select2-selection--single {
  padding-top: 10px;
  padding-bottom: 10px;
  height: auto;
  border-radius: 0;
}

.woocommerce form .form-row .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
       -o-transform: translateY(-50%);
          transform: translateY(-50%);
}

.woocommerce form .form-row .woocommerce-input-wrapper .description {
  background: #1e85be;
  color: #fff;
  border-radius: 3px;
  padding: 1em;
  margin: 0.5em 0 0;
  clear: both;
  display: none;
  position: relative;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description a {
  color: #fff;
  text-decoration: underline;
  border: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce form .form-row .woocommerce-input-wrapper .description::before {
  left: 50%;
  top: 0%;
  margin-top: -4px;
  -webkit-transform: translateX(-50%) rotate(180deg);
       -o-transform: translateX(-50%) rotate(180deg);
          transform: translateX(-50%) rotate(180deg);
  content: "";
  position: absolute;
  border-width: 4px 6px 0 6px;
  border-style: solid;
  border-color: #1e85be transparent transparent transparent;
  z-index: 100;
  display: block;
}

.woocommerce form .form-row select {
  cursor: pointer;
  margin: 0;
}

.woocommerce form .form-row .required {
  color: red;
  font-weight: 700;
  border: 0 !important;
  text-decoration: none;
  visibility: hidden;
}

.woocommerce form .form-row .optional {
  visibility: visible;
}

.woocommerce form .form-row .input-checkbox {
  display: inline;
  margin: -2px 8px 0 0;
  text-align: center;
  vertical-align: middle;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  margin: 0;
  outline: 0;
  line-height: normal;
  padding: 10px;
  border: 1px solid #aaa;
}

.woocommerce form .form-row select {
  padding: 10px;
  border: 1px solid #aaa;
}

.woocommerce form .form-row textarea {
  height: 4em;
  line-height: 1.5;
  display: block;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce form .form-row .select2-container {
  width: 100%;
  line-height: 2em;
}

.woocommerce form .form-row.woocommerce-invalid label {
  color: #dc3545;
}

.woocommerce form .form-row.woocommerce-invalid .select2-container,
.woocommerce form .form-row.woocommerce-invalid input.input-text,
.woocommerce form .form-row.woocommerce-invalid select {
  border-color: #dc3545;
}

.woocommerce form .form-row.woocommerce-validated .select2-container,
.woocommerce form .form-row.woocommerce-validated input.input-text,
.woocommerce form .form-row.woocommerce-validated select {
  border-color: #23923d;
}

.woocommerce form .form-row ::-webkit-input-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-moz-placeholder {
  line-height: normal;
}

.woocommerce form .form-row :-ms-input-placeholder {
  line-height: normal;
}

.woocommerce form.login,
.woocommerce form.checkout_coupon,
.woocommerce form.register {
  border: 1px solid #545b62;
  padding: 20px;
  margin: 2em 0;
  text-align: left;
  border-radius: 5px;
}

.woocommerce ul#shipping_method {
  list-style: none outside;
  margin: 0;
  padding: 0;
}

.woocommerce ul#shipping_method li {
  margin: 0 0 0.5em;
  line-height: 1.5em;
  list-style: none outside;
}

.woocommerce ul#shipping_method li input {
  margin: 3px 0.4375em 0 0;
  vertical-align: top;
}

.woocommerce ul#shipping_method li label {
  display: inline;
}

.woocommerce ul#shipping_method .amount {
  font-weight: 700;
}

.woocommerce p.woocommerce-shipping-contents {
  margin: 0;
}

.woocommerce ul.order_details {
  *zoom: 1;
  margin: 0 0 3em;
  list-style: none;
}

.woocommerce ul.order_details::before, .woocommerce ul.order_details::after {
  content: " ";
  display: table;
}

.woocommerce ul.order_details::after {
  clear: both;
}

.woocommerce ul.order_details li {
  float: left;
  margin-right: 2em;
  text-transform: uppercase;
  font-size: 0.715em;
  line-height: 1;
  border-right: 1px dashed #545b62;
  padding-right: 2em;
  margin-left: 0;
  padding-left: 0;
  list-style-type: none;
  margin-bottom: 10px;
}

.woocommerce ul.order_details li strong {
  display: block;
  font-size: 1.4em;
  text-transform: none;
  line-height: 1.5;
}

.woocommerce ul.order_details li:last-of-type {
  border: none;
}

.woocommerce .wc-bacs-bank-details-account-name {
  font-weight: bold;
}

.woocommerce .woocommerce-order-downloads,
.woocommerce .woocommerce-customer-details,
.woocommerce .woocommerce-order-details {
  margin-bottom: 2em;
}

.woocommerce .woocommerce-order-downloads *:last-child,
.woocommerce .woocommerce-customer-details *:last-child,
.woocommerce .woocommerce-order-details *:last-child {
  margin-bottom: 0;
}

.woocommerce .woocommerce-order-details, .woocommerce .woocommerce-customer-details {
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .woocommerce .woocommerce-order-details, .woocommerce .woocommerce-customer-details {
    width: 50%;
    float: left;
  }
}

.woocommerce .woocommerce-columns--addresses {
  width: 100%;
}

@media (min-width: 768px) {
  .woocommerce .woocommerce-columns--addresses {
    width: 50%;
  }
}

.woocommerce .woocommerce-column--billing-address {
  margin-bottom: 20px;
}

.woocommerce .woocommerce-customer-details address {
  font-style: normal;
  margin-bottom: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-width: 2px;
  border-right-width: 2px;
  text-align: left;
  width: 100%;
  border-radius: 5px;
  padding: 6px 12px;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone,
.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email {
  margin-bottom: 0;
  padding-left: 1.5em;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--phone::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\E037";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-customer-details .woocommerce-customer-details--email::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\E02D";
  text-decoration: none;
  margin-left: -1.5em;
  line-height: 1.75;
  position: absolute;
}

.woocommerce .woocommerce-widget-layered-nav-list {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item {
  *zoom: 1;
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::before, .woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after {
  content: " ";
  display: table;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item::after {
  clear: both;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item a,
.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item span {
  padding: 1px 0;
}

.woocommerce .woocommerce-widget-layered-nav-list .woocommerce-widget-layered-nav-list__item--chosen a::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\E013";
  text-decoration: none;
  color: #dc3545;
}

.woocommerce .woocommerce-widget-layered-nav-dropdown__submit {
  margin-top: 1em;
}

.woocommerce .widget_layered_nav_filters ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
  overflow: hidden;
  zoom: 1;
}

.woocommerce .widget_layered_nav_filters ul li {
  float: left;
  padding: 0 1em 1px 1px;
  list-style: none;
}

.woocommerce .widget_layered_nav_filters ul li a {
  text-decoration: none;
}

.woocommerce .widget_layered_nav_filters ul li a::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\E013";
  text-decoration: none;
  color: #dc3545;
  vertical-align: inherit;
  margin-right: 0.5em;
}

.woocommerce .widget_price_filter .price_slider {
  margin-bottom: 1em;
}

.woocommerce .widget_price_filter .price_slider_amount {
  text-align: right;
  line-height: 2.4;
  font-size: 0.8751em;
}

.woocommerce .widget_price_filter .price_slider_amount .button {
  font-size: 1.15em;
  float: left;
}

.woocommerce .widget_price_filter .ui-slider {
  position: relative;
  text-align: left;
  margin-left: 0.5em;
  margin-right: 0.5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-handle {
  position: absolute;
  z-index: 2;
  width: 1em;
  height: 1em;
  background-color: #007bff;
  border-radius: 1em;
  cursor: ew-resize;
  outline: none;
  top: -0.3em;
  /* rtl:ignore */
  margin-left: -0.5em;
}

.woocommerce .widget_price_filter .ui-slider .ui-slider-range {
  position: absolute;
  z-index: 1;
  font-size: 0.7em;
  display: block;
  border: 0;
  border-radius: 1em;
  background-color: #007bff;
}

.woocommerce .widget_price_filter .price_slider_wrapper .ui-widget-content {
  border-radius: 1em;
  background-color: #003166;
  border: 0;
}

.woocommerce .widget_price_filter .ui-slider-horizontal {
  height: 0.5em;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range {
  top: 0;
  height: 100%;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-min {
  left: -1px;
}

.woocommerce .widget_price_filter .ui-slider-horizontal .ui-slider-range-max {
  right: -1px;
}

.woocommerce .widget_rating_filter ul {
  margin: 0;
  padding: 0;
  border: 0;
  list-style: none outside;
}

.woocommerce .widget_rating_filter ul li {
  *zoom: 1;
  padding: 0 0 1px;
  list-style: none;
}

.woocommerce .widget_rating_filter ul li::before, .woocommerce .widget_rating_filter ul li::after {
  content: " ";
  display: table;
}

.woocommerce .widget_rating_filter ul li::after {
  clear: both;
}

.woocommerce .widget_rating_filter ul li a {
  padding: 1px 0;
  text-decoration: none;
}

.woocommerce .widget_rating_filter ul li .star-rating {
  float: none;
  display: inline-block;
}

.woocommerce .widget_rating_filter ul li.chosen a::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\E013";
  text-decoration: none;
  color: #dc3545;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: left;
  margin-right: 1em;
}

.woocommerce .woocommerce-form-login .woocommerce-form-login__rememberme {
  display: inline-block;
}

.woocommerce-no-js form.woocommerce-form-login,
.woocommerce-no-js form.woocommerce-form-coupon {
  display: block !important;
}

.woocommerce-no-js .woocommerce-form-login-toggle,
.woocommerce-no-js .woocommerce-form-coupon-toggle,
.woocommerce-no-js .showcoupon {
  display: none !important;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 1em 2em 1em 3.5em;
  margin: 0 0 2em;
  position: relative;
  background-color: #fcfbf9;
  color: black;
  border-top: 3px solid #007bff;
  list-style: none outside;
  *zoom: 1;
  width: auto;
  word-wrap: break-word;
}

.woocommerce-message::before, .woocommerce-message::after,
.woocommerce-error::before,
.woocommerce-error::after,
.woocommerce-info::before,
.woocommerce-info::after {
  content: " ";
  display: table;
}

.woocommerce-message::after,
.woocommerce-error::after,
.woocommerce-info::after {
  clear: both;
}

.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  font-family: "WooCommerce";
  content: "\E028";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: 1.5em;
}

.woocommerce-message .button,
.woocommerce-error .button,
.woocommerce-info .button {
  float: right;
}

.woocommerce-message li,
.woocommerce-error li,
.woocommerce-info li {
  list-style: none outside !important;
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/**
  * Right to left styles
  */
.rtl.woocommerce .price_label,
.rtl.woocommerce .price_label span {
  /* rtl:ignore */
  direction: ltr;
  unicode-bidi: embed;
}

.woocommerce-message {
  border-top-color: #a08032;
}

.woocommerce-message::before {
  content: "\E015";
  color: #a08032;
}

.woocommerce-info {
  border-top-color: #00204e;
}

.woocommerce-info::before {
  color: #00204e;
}

.woocommerce-error {
  border-top-color: #b81c23;
}

.woocommerce-error::before {
  content: "\E016";
  color: #b81c23;
}

/**
  * Account page
  */
.woocommerce-account .woocommerce {
  *zoom: 1;
}

.woocommerce-account .woocommerce::before, .woocommerce-account .woocommerce::after {
  content: " ";
  display: table;
}

.woocommerce-account .woocommerce::after {
  clear: both;
}

.woocommerce-account .addresses .title {
  *zoom: 1;
}

.woocommerce-account .addresses .title::before, .woocommerce-account .addresses .title::after {
  content: " ";
  display: table;
}

.woocommerce-account .addresses .title::after {
  clear: both;
}

.woocommerce-account .addresses .title h3 {
  float: left;
}

.woocommerce-account .addresses .title .edit {
  float: right;
}

.woocommerce-account ol.commentlist.notes li.note p.meta {
  font-weight: 700;
  margin-bottom: 0;
}

.woocommerce-account ol.commentlist.notes li.note .description p:last-child {
  margin-bottom: 0;
}

.woocommerce-account ul.digital-downloads {
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.woocommerce-account ul.digital-downloads li::before {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-right: 0.618em;
  content: "\E00A";
  text-decoration: none;
}

.woocommerce-account ul.digital-downloads li .count {
  float: right;
}

/**
  * Cart/checkout page
  */
.woocommerce-cart table.cart .product-thumbnail,
.woocommerce-checkout table.cart .product-thumbnail,
#add_payment_method table.cart .product-thumbnail {
  min-width: 32px;
}

.woocommerce-cart table.cart .product-name a,
.woocommerce-checkout table.cart .product-name a,
#add_payment_method table.cart .product-name a {
  color: #00204e;
}

.woocommerce-cart table.cart img,
.woocommerce-checkout table.cart img,
#add_payment_method table.cart img {
  width: 32px;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce-cart table.cart th,
.woocommerce-cart table.cart td,
.woocommerce-checkout table.cart th,
.woocommerce-checkout table.cart td,
#add_payment_method table.cart th,
#add_payment_method table.cart td {
  vertical-align: middle;
}

.woocommerce-cart table.cart td.actions .coupon .input-text,
.woocommerce-checkout table.cart td.actions .coupon .input-text,
#add_payment_method table.cart td.actions .coupon .input-text {
  float: left;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px solid #545b62;
  padding: 1rem;
  margin: 0 4px 0 0;
  outline: 0;
  width: 150px;
}

.woocommerce-cart table.cart input,
.woocommerce-checkout table.cart input,
#add_payment_method table.cart input {
  margin: 0;
  vertical-align: middle;
}

.woocommerce-cart .wc-proceed-to-checkout,
.woocommerce-checkout .wc-proceed-to-checkout,
#add_payment_method .wc-proceed-to-checkout {
  *zoom: 1;
  padding: 1em 0;
}

.woocommerce-cart .wc-proceed-to-checkout::before, .woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::before,
.woocommerce-checkout .wc-proceed-to-checkout::after,
#add_payment_method .wc-proceed-to-checkout::before,
#add_payment_method .wc-proceed-to-checkout::after {
  content: " ";
  display: table;
}

.woocommerce-cart .wc-proceed-to-checkout::after,
.woocommerce-checkout .wc-proceed-to-checkout::after,
#add_payment_method .wc-proceed-to-checkout::after {
  clear: both;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-checkout .wc-proceed-to-checkout a.checkout-button,
#add_payment_method .wc-proceed-to-checkout a.checkout-button {
  display: block;
  text-align: center;
  margin-bottom: 1em;
  font-size: 1.25em;
  padding: 1em;
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button,
#add_payment_method .cart-collaterals .shipping-calculator-button {
  float: none;
  margin-top: 0.5em;
  display: inline-block;
}

.woocommerce-cart .cart-collaterals .shipping-calculator-button::after,
.woocommerce-checkout .cart-collaterals .shipping-calculator-button::after,
#add_payment_method .cart-collaterals .shipping-calculator-button::after {
  font-family: "WooCommerce";
  speak: never;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  margin-left: 0.618em;
  content: "\E019";
  text-decoration: none;
}

.woocommerce-cart .cart-collaterals .shipping-calculator-form,
.woocommerce-checkout .cart-collaterals .shipping-calculator-form,
#add_payment_method .cart-collaterals .shipping-calculator-form {
  margin: 1em 0 0 0;
}

.woocommerce-cart .cart-collaterals .cart_totals p small,
.woocommerce-checkout .cart-collaterals .cart_totals p small,
#add_payment_method .cart-collaterals .cart_totals p small {
  color: #767676;
  font-size: 0.83em;
}

.woocommerce-cart .cart-collaterals .cart_totals table,
.woocommerce-checkout .cart-collaterals .cart_totals table,
#add_payment_method .cart-collaterals .cart_totals table {
  border-collapse: separate;
  margin: 0 0 6px;
  padding: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-cart .cart-collaterals .cart_totals table tr:first-child td,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child th,
.woocommerce-checkout .cart-collaterals .cart_totals table tr:first-child td,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child th,
#add_payment_method .cart-collaterals .cart_totals table tr:first-child td {
  border-top: 0;
}

.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table th,
#add_payment_method .cart-collaterals .cart_totals table th {
  width: 35%;
}

.woocommerce-cart .cart-collaterals .cart_totals table td,
.woocommerce-cart .cart-collaterals .cart_totals table th,
.woocommerce-checkout .cart-collaterals .cart_totals table td,
.woocommerce-checkout .cart-collaterals .cart_totals table th,
#add_payment_method .cart-collaterals .cart_totals table td,
#add_payment_method .cart-collaterals .cart_totals table th {
  vertical-align: top;
  border-left: 0;
  border-right: 0;
  line-height: 1.5em;
}

.woocommerce-cart .cart-collaterals .cart_totals table small,
.woocommerce-checkout .cart-collaterals .cart_totals table small,
#add_payment_method .cart-collaterals .cart_totals table small {
  color: #767676;
}

.woocommerce-cart .cart-collaterals .cart_totals table select,
.woocommerce-checkout .cart-collaterals .cart_totals table select,
#add_payment_method .cart-collaterals .cart_totals table select {
  width: 100%;
}

.woocommerce-cart .cart-collaterals .cart_totals .discount td,
.woocommerce-checkout .cart-collaterals .cart_totals .discount td,
#add_payment_method .cart-collaterals .cart_totals .discount td {
  color: #a08032;
}

.woocommerce-cart .cart-collaterals .cart_totals tr td,
.woocommerce-cart .cart-collaterals .cart_totals tr th,
.woocommerce-checkout .cart-collaterals .cart_totals tr td,
.woocommerce-checkout .cart-collaterals .cart_totals tr th,
#add_payment_method .cart-collaterals .cart_totals tr td,
#add_payment_method .cart-collaterals .cart_totals tr th {
  border-top: 1px solid #6c757d;
}

.woocommerce-cart .cart-collaterals .cart_totals .woocommerce-shipping-destination,
.woocommerce-checkout .cart-collaterals .cart_totals .woocommerce-shipping-destination,
#add_payment_method .cart-collaterals .cart_totals .woocommerce-shipping-destination {
  margin-bottom: 0;
}

.woocommerce-cart .cart-collaterals .cross-sells ul.products li.product,
.woocommerce-checkout .cart-collaterals .cross-sells ul.products li.product,
#add_payment_method .cart-collaterals .cross-sells ul.products li.product {
  margin-top: 0;
}

.woocommerce-cart .checkout .col-2 h3#ship-to-different-address,
.woocommerce-checkout .checkout .col-2 h3#ship-to-different-address,
#add_payment_method .checkout .col-2 h3#ship-to-different-address {
  float: left;
  clear: none;
}

.woocommerce-cart .checkout .col-2 .notes,
.woocommerce-checkout .checkout .col-2 .notes,
#add_payment_method .checkout .col-2 .notes {
  clear: left;
}

.woocommerce-cart .checkout .col-2 .form-row-first,
.woocommerce-checkout .checkout .col-2 .form-row-first,
#add_payment_method .checkout .col-2 .form-row-first {
  clear: left;
}

.woocommerce-cart .checkout .create-account small,
.woocommerce-checkout .checkout .create-account small,
#add_payment_method .checkout .create-account small {
  font-size: 11px;
  color: #767676;
  font-weight: normal;
}

.woocommerce-cart .checkout div.shipping-address,
.woocommerce-checkout .checkout div.shipping-address,
#add_payment_method .checkout div.shipping-address {
  padding: 0;
  clear: left;
  width: 100%;
}

.woocommerce-cart .checkout .shipping_address,
.woocommerce-checkout .checkout .shipping_address,
#add_payment_method .checkout .shipping_address {
  clear: both;
}

.woocommerce-cart #payment,
.woocommerce-checkout #payment,
#add_payment_method #payment {
  background: #fcfbf9;
  border-radius: 5px;
}

.woocommerce-cart #payment ul.payment_methods,
.woocommerce-checkout #payment ul.payment_methods,
#add_payment_method #payment ul.payment_methods {
  *zoom: 1;
  text-align: left;
  padding: 1em;
  border-bottom: 1px solid #545b62;
  margin: 0;
  list-style: none outside;
}

.woocommerce-cart #payment ul.payment_methods::before, .woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::before,
.woocommerce-checkout #payment ul.payment_methods::after,
#add_payment_method #payment ul.payment_methods::before,
#add_payment_method #payment ul.payment_methods::after {
  content: " ";
  display: table;
}

.woocommerce-cart #payment ul.payment_methods::after,
.woocommerce-checkout #payment ul.payment_methods::after,
#add_payment_method #payment ul.payment_methods::after {
  clear: both;
}

.woocommerce-cart #payment ul.payment_methods li,
.woocommerce-checkout #payment ul.payment_methods li,
#add_payment_method #payment ul.payment_methods li {
  line-height: 2;
  text-align: left;
  margin: 0;
  font-weight: normal;
}

.woocommerce-cart #payment ul.payment_methods li input,
.woocommerce-checkout #payment ul.payment_methods li input,
#add_payment_method #payment ul.payment_methods li input {
  margin: 0 1em 0 0;
}

.woocommerce-cart #payment ul.payment_methods li img,
.woocommerce-checkout #payment ul.payment_methods li img,
#add_payment_method #payment ul.payment_methods li img {
  vertical-align: middle;
  margin: -2px 0 0 0.5em;
  padding: 0;
  position: relative;
  -webkit-box-shadow: none;
          box-shadow: none;
}

.woocommerce-cart #payment ul.payment_methods li img + img,
.woocommerce-checkout #payment ul.payment_methods li img + img,
#add_payment_method #payment ul.payment_methods li img + img {
  margin-left: 2px;
}

.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice),
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice),
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice) {
  *zoom: 1;
}

.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::before, .woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::before,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::before,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after {
  content: " ";
  display: table;
}

.woocommerce-cart #payment ul.payment_methods li:not(.woocommerce-notice)::after,
.woocommerce-checkout #payment ul.payment_methods li:not(.woocommerce-notice)::after,
#add_payment_method #payment ul.payment_methods li:not(.woocommerce-notice)::after {
  clear: both;
}

.woocommerce-cart #payment div.form-row,
.woocommerce-checkout #payment div.form-row,
#add_payment_method #payment div.form-row {
  padding: 1em;
}

.woocommerce-cart #payment div.payment_box,
.woocommerce-checkout #payment div.payment_box,
#add_payment_method #payment div.payment_box {
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: 1em;
  margin: 1em 0;
  font-size: 0.92em;
  border-radius: 2px;
  line-height: 1.5;
  background-color: #f4f0e8;
  color: #00204e;
}

.woocommerce-cart #payment div.payment_box input.input-text,
.woocommerce-cart #payment div.payment_box textarea,
.woocommerce-checkout #payment div.payment_box input.input-text,
.woocommerce-checkout #payment div.payment_box textarea,
#add_payment_method #payment div.payment_box input.input-text,
#add_payment_method #payment div.payment_box textarea {
  border-color: #e3d9c6;
  border-top-color: #daceb5;
}

.woocommerce-cart #payment div.payment_box ::-webkit-input-placeholder,
.woocommerce-checkout #payment div.payment_box ::-webkit-input-placeholder,
#add_payment_method #payment div.payment_box ::-webkit-input-placeholder {
  color: #3d4246;
}

.woocommerce-cart #payment div.payment_box :-moz-placeholder,
.woocommerce-checkout #payment div.payment_box :-moz-placeholder,
#add_payment_method #payment div.payment_box :-moz-placeholder {
  color: #3d4246;
}

.woocommerce-cart #payment div.payment_box :-ms-input-placeholder,
.woocommerce-checkout #payment div.payment_box :-ms-input-placeholder,
#add_payment_method #payment div.payment_box :-ms-input-placeholder {
  color: #3d4246;
}

.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods {
  list-style: none outside;
  margin: 0;
}

.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new {
  margin: 0 0 0.5em;
}

.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-token label,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-new label {
  cursor: pointer;
}

.woocommerce-cart #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
.woocommerce-checkout #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput,
#add_payment_method #payment div.payment_box .woocommerce-SavedPaymentMethods .woocommerce-SavedPaymentMethods-tokenInput {
  vertical-align: middle;
  margin: -3px 1em 0 0;
  position: relative;
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form,
#add_payment_method #payment div.payment_box .wc-credit-card-form {
  border: 0;
  padding: 0;
  margin: 1em 0 0;
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc {
  font-size: 1.5em;
  padding: 8px;
  background-repeat: no-repeat;
  background-position: right 0.618em center;
  background-size: 32px 20px;
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.visa,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.visa {
  background-image: url("../images/icons/credit-cards/visa.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.mastercard,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.mastercard {
  background-image: url("../images/icons/credit-cards/mastercard.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.laser,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.laser {
  background-image: url("../images/icons/credit-cards/laser.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.dinersclub,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.dinersclub {
  background-image: url("../images/icons/credit-cards/diners.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.maestro,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.maestro {
  background-image: url("../images/icons/credit-cards/maestro.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.jcb,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.jcb {
  background-image: url("../images/icons/credit-cards/jcb.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.amex,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.amex {
  background-image: url("../images/icons/credit-cards/amex.svg");
}

.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-cart #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-number.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
.woocommerce-checkout #payment div.payment_box .wc-credit-card-form-card-cvc.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-number.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-expiry.discover,
#add_payment_method #payment div.payment_box .wc-credit-card-form-card-cvc.discover {
  background-image: url("../images/icons/credit-cards/discover.svg");
}

.woocommerce-cart #payment div.payment_box span.help,
.woocommerce-checkout #payment div.payment_box span.help,
#add_payment_method #payment div.payment_box span.help {
  font-size: 0.857em;
  color: #767676;
  font-weight: normal;
}

.woocommerce-cart #payment div.payment_box .form-row,
.woocommerce-checkout #payment div.payment_box .form-row,
#add_payment_method #payment div.payment_box .form-row {
  margin: 0 0 1em;
}

.woocommerce-cart #payment div.payment_box p:last-child,
.woocommerce-checkout #payment div.payment_box p:last-child,
#add_payment_method #payment div.payment_box p:last-child {
  margin-bottom: 0;
}

.woocommerce-cart #payment div.payment_box::before,
.woocommerce-checkout #payment div.payment_box::before,
#add_payment_method #payment div.payment_box::before {
  content: "";
  display: block;
  border: 1em solid #f4f0e8;
  /* arrow size / color */
  border-right-color: transparent;
  border-left-color: transparent;
  border-top-color: transparent;
  position: absolute;
  top: -0.75em;
  left: 0;
  margin: -1em 0 0 2em;
}

.woocommerce-cart #payment .payment_method_paypal .about_paypal,
.woocommerce-checkout #payment .payment_method_paypal .about_paypal,
#add_payment_method #payment .payment_method_paypal .about_paypal {
  float: right;
  line-height: 52px;
  font-size: 0.83em;
}

.woocommerce-cart #payment .payment_method_paypal img,
.woocommerce-checkout #payment .payment_method_paypal img,
#add_payment_method #payment .payment_method_paypal img {
  max-height: 52px;
  vertical-align: middle;
}

.woocommerce-terms-and-conditions {
  border: 1px solid rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
          box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  background: rgba(0, 0, 0, 0.05);
}

.woocommerce-invalid #terms {
  outline: 2px solid red;
  outline-offset: 2px;
}

/**
  * Password strength meter
  */
.woocommerce-password-strength {
  text-align: center;
  font-weight: 600;
  padding: 3px 0.5em;
  font-size: 1em;
}

.woocommerce-password-strength.strong {
  background-color: #c1e1b9;
  border-color: #83c373;
}

.woocommerce-password-strength.short {
  background-color: #f1adad;
  border-color: #e35b5b;
}

.woocommerce-password-strength.bad {
  background-color: #fbc5a9;
  border-color: #f78b53;
}

.woocommerce-password-strength.good {
  background-color: #ffe399;
  border-color: #ffc733;
}

.woocommerce-password-hint {
  margin: 0.5em 0 0;
  display: block;
}

.woocommerce-wrapper {
  padding: 4.5rem 1.5rem;
}

@media (min-width: 1024px) {
  .woocommerce-wrapper {
    padding: 4.5rem 7.5rem;
  }
}

/**
 * Style begins
 */
@media (max-width: 767.98px) {
  .woocommerce,
  .woocommerce-page {
    /**
    * General layout
    */
    /**
    * Products
    */
    /**
    * Product Details
    */
    /**
    * Cart
    */
    /**
    * Checkout
    */
    /**
    * Account
    */
  }
  .woocommerce table.shop_table_responsive thead,
  .woocommerce-page table.shop_table_responsive thead {
    display: none;
  }
  .woocommerce table.shop_table_responsive tbody tr:first-child td:first-child,
  .woocommerce-page table.shop_table_responsive tbody tr:first-child td:first-child {
    border-top: 0;
  }
  .woocommerce table.shop_table_responsive tbody th,
  .woocommerce-page table.shop_table_responsive tbody th {
    display: none;
  }
  .woocommerce table.shop_table_responsive tr,
  .woocommerce-page table.shop_table_responsive tr {
    display: block;
  }
  .woocommerce table.shop_table_responsive tr td,
  .woocommerce-page table.shop_table_responsive tr td {
    display: block;
    text-align: right !important;
  }
  .woocommerce table.shop_table_responsive tr td.order-actions,
  .woocommerce-page table.shop_table_responsive tr td.order-actions {
    text-align: left !important;
  }
  .woocommerce table.shop_table_responsive tr td::before,
  .woocommerce-page table.shop_table_responsive tr td::before {
    content: attr(data-title) ": ";
    font-weight: 700;
    float: left;
  }
  .woocommerce table.shop_table_responsive tr td.product-remove::before, .woocommerce table.shop_table_responsive tr td.actions::before,
  .woocommerce-page table.shop_table_responsive tr td.product-remove::before,
  .woocommerce-page table.shop_table_responsive tr td.actions::before {
    display: none;
  }
  .woocommerce table.shop_table_responsive tr:nth-child(2n) td,
  .woocommerce-page table.shop_table_responsive tr:nth-child(2n) td {
    background-color: rgba(0, 0, 0, 0.025);
  }
  .woocommerce table.my_account_orders tr td.order-actions,
  .woocommerce-page table.my_account_orders tr td.order-actions {
    text-align: left;
  }
  .woocommerce table.my_account_orders tr td.order-actions::before,
  .woocommerce-page table.my_account_orders tr td.order-actions::before {
    display: none;
  }
  .woocommerce table.my_account_orders tr td.order-actions .button,
  .woocommerce-page table.my_account_orders tr td.order-actions .button {
    float: none;
    margin: 0.125em 0.25em 0.125em 0;
  }
  .woocommerce .col2-set .col-1,
  .woocommerce .col2-set .col-2,
  .woocommerce-page .col2-set .col-1,
  .woocommerce-page .col2-set .col-2 {
    float: none;
    width: 100%;
  }
  .woocommerce ul.products[class*="columns-"] li.product,
  .woocommerce-page ul.products[class*="columns-"] li.product {
    width: 48%;
    float: left;
    clear: both;
    margin: 0 0 1.5em;
  }
  .woocommerce div.product div.images,
  .woocommerce div.product div.summary,
  .woocommerce #content div.product div.images,
  .woocommerce #content div.product div.summary,
  .woocommerce-page div.product div.images,
  .woocommerce-page div.product div.summary,
  .woocommerce-page #content div.product div.images,
  .woocommerce-page #content div.product div.summary {
    float: none;
    width: 100%;
  }
  .woocommerce table.cart .product-thumbnail,
  .woocommerce #content table.cart .product-thumbnail,
  .woocommerce-page table.cart .product-thumbnail,
  .woocommerce-page #content table.cart .product-thumbnail {
    display: none;
  }
  .woocommerce table.cart td.actions,
  .woocommerce #content table.cart td.actions,
  .woocommerce-page table.cart td.actions,
  .woocommerce-page #content table.cart td.actions {
    text-align: left;
  }
  .woocommerce table.cart td.actions .coupon,
  .woocommerce #content table.cart td.actions .coupon,
  .woocommerce-page table.cart td.actions .coupon,
  .woocommerce-page #content table.cart td.actions .coupon {
    float: none;
    *zoom: 1;
    padding-bottom: 0.5em;
  }
  .woocommerce table.cart td.actions .coupon::before, .woocommerce table.cart td.actions .coupon::after,
  .woocommerce #content table.cart td.actions .coupon::before,
  .woocommerce #content table.cart td.actions .coupon::after,
  .woocommerce-page table.cart td.actions .coupon::before,
  .woocommerce-page table.cart td.actions .coupon::after,
  .woocommerce-page #content table.cart td.actions .coupon::before,
  .woocommerce-page #content table.cart td.actions .coupon::after {
    content: " ";
    display: table;
  }
  .woocommerce table.cart td.actions .coupon::after,
  .woocommerce #content table.cart td.actions .coupon::after,
  .woocommerce-page table.cart td.actions .coupon::after,
  .woocommerce-page #content table.cart td.actions .coupon::after {
    clear: both;
  }
  .woocommerce table.cart td.actions .coupon input,
  .woocommerce table.cart td.actions .coupon .button,
  .woocommerce table.cart td.actions .coupon .input-text,
  .woocommerce #content table.cart td.actions .coupon input,
  .woocommerce #content table.cart td.actions .coupon .button,
  .woocommerce #content table.cart td.actions .coupon .input-text,
  .woocommerce-page table.cart td.actions .coupon input,
  .woocommerce-page table.cart td.actions .coupon .button,
  .woocommerce-page table.cart td.actions .coupon .input-text,
  .woocommerce-page #content table.cart td.actions .coupon input,
  .woocommerce-page #content table.cart td.actions .coupon .button,
  .woocommerce-page #content table.cart td.actions .coupon .input-text {
    width: 48%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  .woocommerce table.cart td.actions .coupon .input-text + .button,
  .woocommerce table.cart td.actions .coupon .button.alt,
  .woocommerce #content table.cart td.actions .coupon .input-text + .button,
  .woocommerce #content table.cart td.actions .coupon .button.alt,
  .woocommerce-page table.cart td.actions .coupon .input-text + .button,
  .woocommerce-page table.cart td.actions .coupon .button.alt,
  .woocommerce-page #content table.cart td.actions .coupon .input-text + .button,
  .woocommerce-page #content table.cart td.actions .coupon .button.alt {
    float: right;
  }
  .woocommerce table.cart td.actions .button,
  .woocommerce #content table.cart td.actions .button,
  .woocommerce-page table.cart td.actions .button,
  .woocommerce-page #content table.cart td.actions .button {
    display: block;
    width: 100%;
  }
  .woocommerce .cart-collaterals .cart_totals,
  .woocommerce .cart-collaterals .shipping_calculator,
  .woocommerce .cart-collaterals .cross-sells,
  .woocommerce-page .cart-collaterals .cart_totals,
  .woocommerce-page .cart-collaterals .shipping_calculator,
  .woocommerce-page .cart-collaterals .cross-sells {
    width: 100%;
    float: none;
    text-align: left;
  }
  .woocommerce.woocommerce-checkout form.login .form-row,
  .woocommerce-page.woocommerce-checkout form.login .form-row {
    width: 100%;
    float: none;
  }
  .woocommerce #payment .terms,
  .woocommerce-page #payment .terms {
    text-align: left;
    padding: 0;
  }
  .woocommerce #payment #place_order,
  .woocommerce-page #payment #place_order {
    float: none;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin-bottom: 1em;
  }
  .woocommerce .lost_reset_password .form-row-first,
  .woocommerce .lost_reset_password .form-row-last,
  .woocommerce-page .lost_reset_password .form-row-first,
  .woocommerce-page .lost_reset_password .form-row-last {
    width: 100%;
    float: none;
    margin-right: 0;
  }
  .woocommerce-account .woocommerce-MyAccount-navigation,
  .woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
  }
  .tax-product_cat ul.products[class*="columns-"] li.product:nth-child(2n),
  .tax-product_cat ul.products[class*="columns-"] li.product:nth-child(2n) {
    float: right;
    clear: none !important;
  }
  :not(.tax-product_cat) ul.products[class*="columns-"] {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

/* Temporary remove */
html {
  background: #fff !important;
}

/*
 * Members Portal
 */
.member-sidebar__newsletter, .member-sidebar__digital-card {
  background: #f8f7f7;
  padding: 20px;
  border-radius: 10px;
}

@media (min-width: 768px) {
  .member-sidebar__newsletter, .member-sidebar__digital-card {
    padding: 40px 28px;
  }
}

.member-sidebar__newsletter .members-sidebar__block-header, .member-sidebar__digital-card .members-sidebar__block-header {
  border-bottom: 0;
  margin-bottom: 0;
}

.member-sidebar__newsletter .member-sidebar__newsletter-body p, .member-sidebar__digital-card .member-sidebar__newsletter-body p {
  font-size: 14px;
}

.member-sidebar__newsletter .wpcf7-response-output, .member-sidebar__digital-card .wpcf7-response-output {
  padding: 15px !important;
  border-radius: 5px;
  margin: 10px 0px 0px !important;
}

.member-sidebar__newsletter .wpcf7 form p, .member-sidebar__digital-card .wpcf7 form p {
  margin-bottom: 0;
}

.member-sidebar__newsletter .wpcf7 form.sent .wpcf7-response-output, .member-sidebar__digital-card .wpcf7 form.sent .wpcf7-response-output {
  background: #46b450;
  color: #fff;
}

.member-sidebar__newsletter .ajax-loader, .member-sidebar__digital-card .ajax-loader {
  position: absolute;
  top: 10px;
  right: 10px;
}

.member-sidebar__newsletter .btn--solid, .member-sidebar__digital-card .btn--solid {
  background-color: #a08032;
  background-image: url(../images/arrowwhite.svg) !important;
  border: none;
  width: 100%;
}

.member-sidebar__newsletter .btn--solid:hover, .member-sidebar__digital-card .btn--solid:hover {
  color: #fff;
}

.member-header--notification {
  padding-bottom: 0;
  padding-top: 0px;
  background: #a08032;
}

.member-header--notification .members-header__info {
  padding: 15px 10px;
  margin-bottom: 0;
  background: none;
  text-align: center;
  display: block;
}

.member-header--notification .members-header__info p {
  color: #fff;
  margin-bottom: 2px;
}

.member-header--notification .members-header__info p a {
  text-decoration: underline;
  color: #fff;
}

.products .has-post-thumbnail.product_cat-merchandise {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  margin-right: 2% !important;
}

.products .has-post-thumbnail.product_cat-merchandise > input,
.products .has-post-thumbnail.product_cat-merchandise > p.member-prod-out-of-stock {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  min-width: 40px;
  margin-top: 6px;
}

.products .has-post-thumbnail.product_cat-merchandise > p.member-prod-out-of-stock {
  background-color: #00204e;
  font-weight: bold;
  background: #011f4e;
  color: #fff;
  padding: 6px;
  display: block;
  width: 100%;
  text-align: center;
}

.products .has-post-thumbnail.product_cat-merchandise img {
  display: block;
  width: auto;
  height: auto;
}

.products .has-post-thumbnail.product_cat-merchandise h2 {
  padding-bottom: 4px;
}

@media (min-width: 768px) {
  .products .has-post-thumbnail.product_cat-merchandise {
    width: calc(94% / 3) !important;
    float: left !important;
    clear: none !important;
    margin-bottom: 15px !important;
  }
}

@media (max-width: 767.98px) {
  .atc-subcategory__container.product {
    width: 100% !important;
    margin-bottom: 10px !important;
  }
}

.woocommerce:not(.tax-product_cat) .product_cat-membership {
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px 0 !important;
}

.woocommerce-shop .atc_form .products {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
}

.member-sidebar__digital-card .wpcf7-spinner {
  position: absolute;
  top: 10px;
  right: 25px;
  margin: 0;
}

@-webkit-keyframes swipe-rotate {
  0% {
    -webkit-transform: translateX(0) rotate(-5deg);
            transform: translateX(0) rotate(-5deg);
  }
  100% {
    -webkit-transform: translateX(5px) rotate(15deg);
            transform: translateX(5px) rotate(15deg);
  }
}

@-o-keyframes swipe-rotate {
  0% {
    -o-transform: translateX(0) rotate(-5deg);
       transform: translateX(0) rotate(-5deg);
  }
  100% {
    -o-transform: translateX(5px) rotate(15deg);
       transform: translateX(5px) rotate(15deg);
  }
}

@keyframes swipe-rotate {
  0% {
    -webkit-transform: translateX(0) rotate(-5deg);
         -o-transform: translateX(0) rotate(-5deg);
            transform: translateX(0) rotate(-5deg);
  }
  100% {
    -webkit-transform: translateX(5px) rotate(15deg);
         -o-transform: translateX(5px) rotate(15deg);
            transform: translateX(5px) rotate(15deg);
  }
}

#member-order-history {
  margin: 10px auto;
}

.member-order-history__message {
  display: none;
}

@media (max-width: 600px) {
  .member-order-history__message {
    display: block;
    margin-bottom: 5px;
  }
  .member-order-history__message i {
    -webkit-animation: swipe-rotate 0.6s ease-in-out infinite alternate;
         -o-animation: swipe-rotate 0.6s ease-in-out infinite alternate;
            animation: swipe-rotate 0.6s ease-in-out infinite alternate;
    font-size: 20px;
    margin-left: 5px;
    color: #00204e;
  }
  #member-order-history::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar for better UX on mobile */
  }
}

#member-order-history-table::before {
  content: none;
}

#member-order-history-table thead th {
  background: #00204e;
  color: #fff;
  white-space: nowrap;
}

#member-order-history-table .btn--order-history {
  padding-top: 5px;
  padding-bottom: 5px;
  white-space: nowrap;
}

#member-order-history-table tbody tr td {
  color: #00204e;
  vertical-align: middle;
}

#member-order-history-table tbody tr:nth-child(even) {
  background: #e5e7eb;
}

.receipt-sent {
  border-color: #32dc49;
  background-color: #32dc49;
  color: #00204e;
}

.receipt-sent:hover, .receipt-sent:focus {
  border-color: #32dc49;
  background-color: #32dc49;
  color: #00204e;
}

.wpcf7-spinner.member-order-history__spinner {
  margin: 4px;
  vertical-align: middle;
}

.receipt-button {
  white-space: nowrap;
}
